/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --Montserrat-font: "Montserrat",  sans-serif;
  --HelveticaNeue: "Helvetica Neue", sans-serif;
  --nav-font: "Poppins",  sans-serif;
  --HalyardDisplayRegular: "halyard_displayregular",  sans-serif;
  --HalyardDisplayBold: "halyard_displaybold",  sans-serif;
  --HalyardDisplaySemiBold: "halyard_displaysemibold",  sans-serif;
  --HalyardDisplayLight: "halyard_displaylight",  sans-serif;
  --HalyardDisplayBlack: "halyard_displayblack",  sans-serif;
  --HalyardDisplayMedium: "halyard_displaymedium",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: rgba(243, 244, 246, 1);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #CF152D;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #CF152D;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 35px 0;
  transition: all 0.5s;
  z-index: 997;
}

.inner-page .header {
  background: linear-gradient(360deg, rgba(198, 20, 42, 0) 45.08%, rgba(198, 20, 42, 0.648) 59.89%, rgba(198, 20, 42, 0.8) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding: 30px 1rem 1rem;
}

.ty-page.inner-page .header {
  background-color: #CF152D;
  background-image: url(../img/ty-bg.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ty-page .main {
  padding-top: 113px;
}

.header .logo {
  line-height: 1;
}

.inner-page.scrolled .header {
  background: rgba(198, 20, 42, 0.9);
  padding: 15px 0;
  transition: all .4s ease-in-out;
}

.inner-page.scrolled .header .logo img,
.index-page.scrolled .header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  background: rgba(17, 17, 17, 1);
  padding: 17px 23px;
  margin: 0 0 0 30px;
  border-radius: 10px;
  transition: 0.3s;
  font-family: var(--Montserrat-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;

}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: rgba(17, 17, 17, 1);
  background: rgba(221, 211, 249, 1);
}

.section .container-xxl,
.header .container-xxl {
  max-width: 1640px;
}

.top-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}


@media (max-width: 1600px) {
  .section .container-xxl,
  .header .container-xxl {
    max-width: 1340px;
  }

  .hero .reg-form-box {
    padding: 20px 25px;
  }

  .hero .reg-form-box .form-inner h4 {
    font-size: 30px;
  }

  .top-banner-img img {
    max-height: 180px;
  }

  .hero .reg-form-box .reg-form label {
    font-size: 1rem;
  }

  .speaker-section .similer-agenda-card .card-body h5 {
    font-size: 20px;
  }

  .team.speaker-section .team-member.agenda-card h3 {
    font-size: 36px;
    line-height: 1.3;
  }

}

@media (max-width: 1400px) {
  .hero .reg-form-box {
    padding: 20px 25px;
  }

  .team.speaker-section .team-member.agenda-card h3 {
    font-size: 32px;
  }

  /*.team.speaker-section .team-card .overlay-content {
    max-width: 200px;
  }*/

  .team.speaker-section .team-card .overlay-content p {
    font-size: 18px;
  }

  .team.speaker-section .team-member.agenda-card p,
  .team .team-card.exhibitors-card p {
    font-size: 1rem! important;
  }

  .hero .reg-form-box .form-inner h4 {
    font-size: 30px;
  }

  .top-banner-img img {
    max-height: 180px;
  }

  .hero .reg-form-box .reg-form label {
    font-size: 1rem;
  }
  
  .hero-body {
    padding-top: 80px;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo img {
    margin-right: 0;
    max-height: 40px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
  }
  
  .hero .bottom-img img {
    top: 81%;
  }

  .hero .banner-logo {
    max-width: 400px;
  }

  .hero .hero-section h3 {
    font-size: 24px;
  }

  .hero .reg-form-box .reg-form .form-group {
    margin-bottom: 10px;
  }

  .header .navmenu {
    order: 3;
  }

  .counting-box .counting-card img {
    max-width: 100px;
    width: 100%;
    height: 100%;
  }

  .counting-box .counting-card .counter-box p {
    font-size: 18px;
    line-height: 1.1;
  }

  .counting-box .counting-card .counter {
    font-size: 50px;
  }

  .team .team-member .member-info h4 {
    font-size: 18px;
  }

  .team .team-member > .pic {
    width: 100%! important;
  }

  .section .section-title h3 {
    font-size: 50px;
  }

  .download-section .download-content h4 {
    font-size: 32px;
    line-height: 1.2;
  }
}

@media (max-width: 991px) {
  .hero .bottom-img img {
    position: static;
  }

  /* .section-title h3 {
    font-size: 40px;
  } */

  .hero.hero-section {
    padding-bottom: 0;
  }

  .hero-body > .row {
    flex-direction: column-reverse;
  }

  .reg-form-box {
    max-width: 100%! important;
    background-size: contain! important;
  }

  .deadline {
    margin-bottom: 20px! important;
  }

  .clients .section-title h3 {
    text-align: center! important;
    margin-bottom: 25px;
  }

  .client-img-box {
    justify-content: center! important;
  }

  .bni-section .section-title h4 {
    font-size: 24px! important;
  }

  .footer-section.section .credits p a,
  .footer-section.section .copyright p {
    font-size: 12px;
    line-height: 1;
  }

  .credits p .ry-logo {
    max-width: 60px;
    width: 100%;
  }

  .credits p .ep-logo {
    max-width: 100px;
    width: 100%;
  }

  .download-section .download-content h4 {
    font-size: 24px;
  }

  .download-section .download-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(207, 21, 45, .9);
  padding: 15px 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 5px! important;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
    border-bottom-color: #fff;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--HalyardDisplayMedium);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-section.section {
  color: var(--default-color);
  background-color: rgba(26, 26, 26, 1);
  position: relative;
  padding: 34px 1rem;
}

.copyright p {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.sitename {
  font-weight: 600;
}

.credits p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 0;
}

    .credits p a {
        font-family: 'Montserrat';
        font-weight: 400;
        font-size: 14px;
        line-height: 28px;
        text-align: right;
        color: #fff;
    }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: -20px;
  z-index: 99999;
  background-color: rgba(207, 21, 45, 1);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .top-banner-img {
    display: none;
  }

  .hero-body {
    padding-top: 0;
  }

  .hero .reg-form-box .reg-form .form-group .reg-btn {
    margin: 20px auto;
  }

  .counting-box {
    margin-top: 50px! important;
  }

  .exhibitors-section .section-title, 
  .team .section-title {
    flex-direction: column! important;
    gap: 20px;
  }

  .view-btn {
    position: static! important;
  }

  .bni-section .container {
    max-width: 100%;
  }

  section, .section {
    padding-top: 60px! important;
    padding-bottom: 60px! important;
  }

  .inner-page .header {
    padding: 1rem;
  }

  .section.page-title {
    padding: 120px 1rem 40px! important;
  }

  .bni-album.section {
    padding: 0! important;
  }

  .download-section {
    padding-top: 40px! important;
    padding-bottom: 0! important;
  }

  .download-section .download-content h4 {
    font-size: 40px;
  }

  .footer-section.section .credits p a, .footer-section.section .copyright p {
    font-size: 14px;
    justify-content: center;
  }

  .footer-section.section .credits.text-end {
    text-align: center! important;
  }

  .footer-section.section {
    padding: 30px 1rem! important;
  }

  .hero.hero-section {
    padding: 120px 0 0! important;
  }
}



/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.section.page-title {
  --background-color: #CF152D;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 1rem 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}

.breadcrumbs-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.page-title h1 {
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
  color: #fff;
  font-family: var(--HalyardDisplayRegular);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0px;
}

.page-title .breadcrumbs ol li a {
  color: #fff;
  font-family: var(--HalyardDisplayRegular);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0px;
}

.page-title .breadcrumbs ol li a:hover {
  color: #202020;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #fff;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background-image: url(../img/hero-img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-family: var(--HalyardDisplayBold);
  font-weight: 600;
  font-size: 95px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.hero h1 span {
  color: rgba(22, 22, 22, 1);
  display: block;
}

.hero-section h3 {
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 30px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.hero p {
  color: var(--default-color);
  margin: 10px 0 30px;
  font-family: var(--Montserrat-font);
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
/* deadline */
.deadline {
    display: flex;
    gap: 8px;
    margin-bottom: 60px;
}

.deadline-format {
    background-color: transparent;
    color: #FFF;
    border: 2px solid #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100px;
    height: 100px;
}

.deadline-format h3 {
    color: #FFF;
    margin-bottom: 0;
    font-family: var(--Montserrat-font);
    font-weight: 600;
    font-size: 46.83px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

.deadline-format span {
  font-family: var(--Montserrat-font);
  font-weight: 400;
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}

.bottom-img img {
  position: absolute;
  top: 73%;
  left: 0;
  width: 100%;
}

.reg-form-box {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  background-image: url(../img/icon/form-border-img.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto;
}

.form-inner h4 {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
  margin: 0;
}

.form-inner p {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
  margin: 0;
  display: block;
}

.reg-form .form-group {
  margin-bottom: 1rem;
}

.reg-form label {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 20px;
  color: rgba(32, 32, 32, 1);
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.reg-form .form-control:focus,
.reg-form .form-control {
  border: 1px solid rgba(195, 195, 195, 1);
  border-radius: 10px;
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  color: rgba(102, 102, 102, 1);
  padding: 10px 20px;
  outline: 0;
  box-shadow: none;
}

.reg-form .form-control.form-select {
  padding: 10px 30px 10px 15px;
}

.reg-btn:focus,
.reg-btn {
  background-color: rgba(207, 21, 45, 1);
  border-radius: 10px;
  padding: 14px 20px;
  width: 100%;
  font-family: var(--HalyardDisplaySemiBold);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  transition: all .4s ease-in-out;
}

.btn.reg-btn:active,
.reg-btn:hover {
  background-color: rgba(17, 17, 17, 1);
  color: #fff;
  transition: all .4s ease-in-out;
}

.apply-btn:focus,
.apply-btn {
  background-color: rgba(17, 17, 17, 1);
  color: #fff;
  font-family: var(--HalyardDisplaySemiBold);
  /* font-weight: 600; */
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: all .4s ease-in-out;
}

.btn.apply-btn:active,
.apply-btn:hover {
  background-color: rgba(207, 21, 45, 1);
  transition: all .4s ease-in-out;
}

.reg-modal .modal-dialog {
  max-width: 630px;
}

.reg-modal .modal-content {
  border-radius: 25px;
}

.reg-modal .modal-header {
  background-color: rgba(245, 245, 245, 1);
  border-bottom: 1px solid rgba(228, 228, 228, 1);
  border-radius: 25px 25px 0 0;
  padding: 22px 40px;
}

.reg-modal .modal-title {
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 32px;
  line-height: 100%;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
}

.form-card-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border: 1px solid rgba(195, 195, 195, 1);
  border-radius: 15px;
  padding: 12px;
  flex-direction: row;
}

.form-card-box .card-img {
  max-width: 180px;
  width: 100%;
  height: 116px;
}

.form-card-box .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.form-card-box .card-body h4 {
  font-family: var(--HalyardDisplayMedium);
  font-size: 24px;
  text-align: left;
  font-weight: 500;
  line-height: 32px;
  color: rgba(17, 26, 41, 1);
  margin-bottom: 3px;
}

.form-card-box .card-body span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(100, 100, 100, 1);
  margin-bottom: 3px;
}

.reg-modal .reg-form-box {
  background-image: url(../img/icon/form-border-img.png);
}

.banner-logo {
  max-width: 512px;
  width: 100%;
  margin: 10px 0 0;
}

  .hide-on-575 {
    display: block! important;
  }

  .show-on-575 {
    display: none! important;
  }

/* 
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
} */

@media (max-width: 575px) {

  .hide-on-575 {
    display: none! important;
  }

  .show-on-575 {
    display: block! important;
  }

  .header {
    padding: 20px 0;
  }

  .hero.hero-section {
    padding: 100px 0 0! important;
  }

  .section .section-title h3 {
    font-size: 40px;
  }

  .call-box .contact-btn:focus, 
  .call-box .contact-btn {
    font-size: 32px;
  }

  .about .right-box h4 {
    font-size: 22px;
  }

  .about .about-list-items ul li,
  .about .right-box p {
    font-size: 1rem;
  }

  .about .about-list-items {
    flex-direction: column;
    gap: 10px! important;
  }

  .about .location-info a span {
    font-size: 1rem;
  }

  .bni-section .section-title {
    padding-bottom: 20px! important;
  }

  .footer-section.section .credits p {
    flex-wrap: wrap;
    justify-content: center;
  }
  
}

@media (max-width: 480px) {
  .bni-section .section-title h4 {
    font-size: 18px! important;
  }

  .team .team-member.exhibitors-card .pic img {
    object-fit: contain;
  }

  .team .team-member.exhibitors-card .com-logo {
    position: static;
    margin: 10px auto 0;
  }

  #exhibitors .team-member.exhibitors-card {
    padding: 20px;
    gap: 10px;
  }

  .breadcrumbs-title {
    flex-direction: column;
    gap: 10px;
  }

  .page-title h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero .banner-logo {
    max-width: 320px;
  }

  .hero-section h3 {
    font-size: 24px! important;
  }

  .hero p {
    font-size: 18px;
  }

  .join-section .section-title h3 {
    font-size: 26px;
  }

  .bni-section .bni-right-content .key-features-list ul li,
  .bni-section .bni-left-content p {
    font-size: 1rem;
  }

  .download-section .download-content h4 {
    font-size: 26px;
  }

    .footer-section.section .copyright p {
        display: block;
    }

    .section .section-title h3 {
        font-size: 36px;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 100px 0;
}

.client-img-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.client-img-box .client-img {
  max-width: 340px; 
  width: 100%;
  height: 140px;
  border-radius: 25px;
  background-color: rgba(251, 251, 251, 1);
  border: 1px solid rgba(210, 211, 213, 1);
  overflow: hidden;
}

.client-img-box .client-img img {
  height: 100%;
  object-fit: cover;
}

.clients .section-title h3 {
  text-align: left;
}

.section-title h3 {
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 60px;
  line-height: 100%;
  color: rgba(32, 32, 32, 1);
  text-align: center;
}

.section-title h3 span {
  color: rgba(207, 21, 45, 1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: rgba(243, 244, 246, 1);
  padding: 70px 1rem;
}

.about .section-title {
  margin-bottom: 30px;
}

.about .section-title h3 {
  text-align: center;
}

.left-box img {
  border-radius: 35px;
  width: 100%;
  height: auto;
}

.right-box h4 {
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 36px;
  line-height: 120%;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
  margin-bottom: 10px;
}

.right-box p {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(102, 102, 102, 1);
  margin-bottom: 20px;
}

.about-list-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.about ul {
  margin: 0;
  padding-left: 20px;
}

.about ul li {
  margin-bottom: 10px;
  /* display: flex;
  align-items: center; */
  list-style-type: disc;
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(102, 102, 102, 1);
}

.about-list-items {
  margin-bottom: 25px;
}

.about ul li:last-child {
  margin-bottom: 0;
}

.counting-box {
  margin-top: 100px;
}

.counting-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.counting-card img {
  max-width: 140px;
  height: 140px;
  width: 100%;
}

.counter-box {
  display: block;
  text-align: left;
}

.counter-box p {
  margin: 5px 0 0;
  font-family: var(--HalyardDisplayRegular);
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: rgba(102, 102, 102, 1);
}

.counter {
  display: block;
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 1);
}

.location-info h4 {
  font-family: var(--HalyardDisplayMedium);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
  margin-bottom: 10px;
}

.location-info a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: auto;
}

.location-info a span {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: rgba(100, 100, 100, 1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.team {
  padding: 100px 0;
}

.speaker-section {
  padding: 80px 20px 100px;
}

.view-btn {
  position: absolute;
  right: 0;
  top: 20px;
}

.view-btn a {
  font-family: var(--HalyardDisplayMedium);
  font-size: 18px;
  line-height: 100%;
  text-align: right;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 1);
}

.exhibitors-section .section-title,
.team .section-title {
  padding-bottom: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exhibitors-section .section-title h3,
.team .section-title h3 {
  margin-bottom: 0;
}

.team .team-member {
  background-color: var(--surface-color);
  border: 1px solid rgba(195, 195, 195, 1);
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  position: relative;
  border-radius: 35px;
  transition: 0.5s;
  padding: 30px 30px 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.team .team-member .pic {
  overflow: hidden;
  width: 270px;
  height: auto;
  border-radius: 0;
  margin: 0 auto;
  text-align: center;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  margin-bottom: 10px;
}

.team .team-member h4 {
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: rgba(32, 32, 32, 1);
  margin-bottom: 5px;
}

.team .team-member span {
  display: block;
  font-family: var(--HalyardDisplayRegular);
  font-size: 16px;
  line-height: 100%;
  color: rgba(102, 102, 102, 1);
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-card p {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: rgba(100, 100, 100, 1);
  margin-bottom: 20px;
}

.team .team-card .team-footer h4 {
  font-family: var(--HalyardDisplayMedium);
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 1.5;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
  margin-bottom: 10px;
}

.team .team-member.team-card {
  display: flex;
  padding: 20px 20px 0;
  margin-bottom: 30px;
  backdrop-filter: blur(74px);
  background-image: url(../img/sp-bg.png);
  background-position: right bottom;
  background-size: auto;
  background-repeat: no-repeat; 
  flex-direction: row;
}

.team .team-member.team-card:hover {
  transform: none;
}

.team .team-member.team-card:last-child {
  margin-bottom: 0;
}

.team .team-details-box >.team-card:nth-of-type(even) {
  flex-direction: row-reverse;
}

.team .team-details-box > .team-card.speaker-card {
    padding: 20px;
}

.team .team-details-box > .team-card.speaker-card .pic {
    border-radius: 25px;
}

.team .team-card .pic {
    margin: 0;
    max-width: 324px;
    width: 100%;
}

.team .team-member.exhibitors-card {
  gap: 20px;
  background: #fff;
  border-color: rgba(195, 195, 195, 1);
  padding: 30px;
  margin: 0;
  flex-direction: row;
}

.team .team-member.exhibitors-card .team-header {
  position: relative;
}

.com-logo {
  position: absolute;
  right: 0;
  top: 0;
}

.com-logo img {
  max-width: 132px;
  height: 100%;
  object-fit: cover;
}

.team .team-card.exhibitors-card p {
  margin-bottom: 0;
}

.team .exhibitors-card .pic {
  max-width: 170px;
  width: 100%;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
}

.team .exhibitors-card .pic img {
  height: 100%;
  object-fit: cover;
}

.team .team-card .team-footer span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
  font-family: var(--HalyardDisplayRegular);
  font-size: 20px;
  line-height: 100%;
  color: rgba(100, 100, 100, 1);
  margin-bottom: 10px;
}

.team .team-card .team-footer span:last-child {
  margin-bottom: 0;
}

.join-section {
  padding: 100px 1rem;
}

.join-section .section-title h3 {
  margin-bottom: 20px;
}

.join-section .section-title p {
  max-width: 745px;
  width: 100%;
  margin: 0 auto;
}

.contact-btn:focus,
.contact-btn {
  max-width: 490px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid rgba(17, 17, 17, 1);
  background-color: #fff;
  padding: 25px 30px;
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 45px;
  line-height: 1;
  text-align: center;
  color: rgba(32, 32, 32, 1);
  border-radius: 25px;
}

.contact-btn:hover {
  border-color: rgba(207, 21, 45, 1);
  color: rgba(207, 21, 45, 1);
}

.team .team-member.agenda-card {
  padding: 30px;
  gap: 20px;
  background-image: none;
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
}

.team .team-member.agenda-card .pic {
  max-width: 361px;
  width: 100%;
  height: 255px;
  position: relative;
}
    .team .team-member.agenda-card .member-info.full-member-info {
        max-width: 100%;
    }
.team .team-member.agenda-card .pic > img {
    height: 100%;
    object-fit: cover;
}

    .team .team-card .overlay-content {
        background-color: rgba(198, 20, 42, .9);
        padding: 12px 10px;
        border-radius: 0 10px 10px 0px;
        max-width: 132px;
        width: auto;
        margin: 20px 0 0;
    }

.team .team-card .overlay-content p {
  font-family: var(--HalyardDisplayMedium);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: rgba(255, 255, 255, 1);
  margin: 0;
}

.team .team-member.agenda-card h3 {
  font-family: var(--HalyardDisplayMedium);
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  text-transform: capitalize;
  color: rgba(17, 26, 41, 1);
}

.team .team-member.agenda-card .team-header span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.team .team-member.agenda-card .member-info {
  max-width: 700px;
  width: 100%;
}

.similer-agenda-box {
  max-width: 500px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px 0;
  flex-wrap: wrap;
}

.similer-agenda-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 65%;
}

.similer-agenda-card .card-img {
  max-width: 118px;
  width: 100%;
  height: 118px;
  overflow: hidden;
  border-radius: 15px;
}

.similer-agenda-card .card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.similer-agenda-card .card-body h5 {
  font-family: var(--HalyardDisplayMedium);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: rgba(0, 0, 0, 1);
}

.similer-agenda-card .card-body span {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(100, 100, 100, 1);
}

.multi-agenda-box {
  gap: 20px 30px;
  justify-content: flex-start;
  max-height: 180px;
  height: 100%;
}

.multi-agenda-box .similer-agenda-card {
  width: 47%;
}

.multi-agenda-box .similer-agenda-card .card-img {
  max-width: 75px;
  height: 75px;
}

.multi-agenda-box .similer-agenda-card .card-body h5 {
  font-size: 24px;
}

/*--------------------------------------------------------------
# exhibitors Section
--------------------------------------------------------------*/
.exhibitors-section {
  padding: 100px 0;
}

.exhibitors-section .client-img {
  max-width: 340px; 
  width: 100%;
  height: 120px;
  overflow: hidden;
  padding: 10px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(210, 211, 213, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .4s ease-in-out;
}

/*--------------------------------------------------------------
# bni-section Section
--------------------------------------------------------------*/
.bni-section {
  padding: 100px 1rem;
}

.bni-section .section-title {
  padding-bottom: 40px;
}

.bni-section .section-title h3 {
  margin-bottom: 12px;
}

.bni-section .section-title h4 {
  margin-bottom: 0;
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 36px;
  line-height: 120%;
  text-align: center;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
}

.bni-section .bni-img {
  margin-bottom: 20px;
}

.bni-left-content p {
  font-family: var(--HalyardDisplayRegular);
  font-size: 20px;
  line-height: 140%;
  color: rgba(102, 102, 102, 1);
  margin-bottom: 0;
}

.bni-right-content h5 {
  font-family: var(--HalyardDisplayMedium);
  font-size: 24px;
  line-height: 140%;
  color: rgba(102, 102, 102, 1);
  margin-bottom: 10px;
}

.bni-right-content .key-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bni-right-content .key-features-list ul li {
  font-family: var(--HalyardDisplayRegular);
  font-size: 20px;
  line-height: 1.4;
  color: rgba(102, 102, 102, 1);
  margin-bottom: 10px;
}

.bni-right-content .key-features-list ul li span {
  font-family: var(--HalyardDisplayMedium);
}

.bni-right-content .key-features-list ul li:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# goldsponsor Section
--------------------------------------------------------------*/
.silversponsor-section,
.goldsponsor-section {
  padding: 100px 1rem;
}

.silversponsor-section .client-img {
  border: 1px solid rgba(102, 102, 102, 1);
  background-color: rgba(243, 244, 246, 1);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  max-width: 100%; 
  width: 100%;
  height: 125px;
  transition: all .4s ease-in-out;
  overflow: hidden;
}

.silversponsor-section .client-img:hover {
  border-color: rgba(245, 180, 0, 1);
  transition: all .4s ease-in-out;
}

.exhibitors-section .client-img:hover,
.goldsponsor-section .client-img:hover {
  border-color: rgba(207, 21, 45, 1);
  transition: all .4s ease-in-out;
}

.goldsponsor-section .client-img {
  background-color: rgba(254, 251, 242, 1);
  border: 1px solid rgba(245, 180, 0, 1);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  max-width: 100%; 
  width: 100%;
  height: 125px;
  overflow: hidden;
  transition: all .4s ease-in-out;
}

/*--------------------------------------------------------------
# download Section
--------------------------------------------------------------*/
.download-section {
  padding: 40px 1rem 0;
  background-color: rgba(245, 245, 245, 1);
}

.download-content h4 {
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 45px;
  line-height: 1.4;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
}

.download-content h4 span {
  color: rgba(207, 21, 45, 1);
}

.download-content p {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(102, 102, 102, 1);
  margin-bottom: 30px;
  max-width: 650px;
  width: 100%;
}

.action-btn,
.download-content .action-btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.thank-you-section {
  padding: 60px 1rem;
}

.thank-you-section .section-title {
  flex-direction: column;
  gap: 10px;
}

.thank-you-section .section-title h3 {
  text-transform: capitalize;
}

.thank-you-section .section-title p {
  font-family: var(--HalyardDisplayMedium);
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  text-align: center;
  text-transform: capitalize;
  color: rgba(102, 102, 102, 1);
}

.thank-you-section .container {
  max-width: 620px;
}

.thank-you-details-box {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

.thank-you-details-box p {
  font-family: var(--HalyardDisplayRegular);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: rgba(102, 102, 102, 1);
  margin-bottom: 24px;
}

.ticket-details {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}

.ticket-details-box {
  border: 1px solid rgba(195, 195, 195, 1);
  background-color: rgba(245, 245, 245, 1);
  padding: 20px;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.ticket-details h4 {
  font-family: var(--HalyardDisplaySemiBold);
  font-size: 24px;
  line-height: 1.2;
  text-transform: capitalize;
  color: rgba(32, 32, 32, 1);
  margin-bottom: 10px;
}

.ticket-info p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(32, 32, 32, 1);
  margin-bottom: 1rem;
}

.ticket-info p:last-child {
  margin-bottom: 0;
}

.ticket-info p span {
  font-weight: 600;
}

.action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.action-btn a {
  max-width: 265px;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  font-family: var(--HalyardDisplayMedium);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  transition: all .4s ease-in-out;
}

.action-btn a.btn-outline {
  border: 1px solid rgba(15, 15, 15, 1);
  border-radius: 8px;
  color: rgba(32, 32, 32, 1);
}

.action-btn a.btn-outline:hover {
  border-color: rgba(207, 21, 45, 1);
  color: rgba(207, 21, 45, 1);
  transition: all .4s ease-in-out;
}

.action-btn a.back-btn {
  border: 1px solid transparent;
  background-color: rgba(207, 21, 45, 1);
  border-radius: 8px;
  color: #fff;
}

.action-btn a.back-btn:hover {
  background-color: rgba(15, 15, 15, 1);
  color: #fff;
  transition: all .4s ease-in-out;
}

.exhibitors-img {
    border: 1px solid rgba(195, 195, 195, 1);
    border-radius: 20px;
    padding: 1rem 1rem 0;
    height: 305px;
    overflow: hidden;
}

    .exhibitors-img img {
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .exhibitors-card-body {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        border: 1px solid rgba(195, 195, 195, 1);
        padding: 1rem;
        height: auto;
        border-radius: 20px;
        width: 100%;
    }

    .exhibitors-card-body .details-info p {
        font-family: var(--HalyardDisplayRegular);
        font-weight: 400;
        font-size: 1rem;
        line-height: 100%;
        color: rgba(102, 102, 102, 1);
    }

        .exhibitors-card-body .details-info p:last-child {
            margin-bottom: 0;
        }

        .exhibitors-card-body .details-info p span {
            display: block;
            color: rgba(0, 0, 0, 1);
            font-family: var(--HalyardDisplayMedium);
            font-weight: 500;
            font-size: 20px;
            line-height: 100%;
            margin-top: 5px;
        }

.exhibitors-company-box h4 {
    font-family: var(--HalyardDisplayMedium);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    text-transform: capitalize;
    color: rgba(32, 32, 32, 1);
}

.exhibitors-company-info {
    border: 1px solid rgba(195, 195, 195, 1);
    padding: 1rem;
    border-radius: 20px;
    background-color: rgba(247, 247, 247, 1);
}


    .exhibitors-company-info h5 {
        font-family: var(--HalyardDisplayMedium);
        font-weight: 500;
        font-size: 18px;
        line-height: 1.2;
        text-transform: capitalize;
        color: rgba(32, 32, 32, 1);
    }


    .exhibitors-company-info p {
        font-family: var(--HalyardDisplayRegular);
        font-weight: 400;
        font-size: 18px;
        line-height: 1.5;
        color: rgba(0, 0, 0, 1);
        margin-bottom: 0;
    }

    .exhibitors-company-info ul {
        padding: 0 0 0 20px;
        margin-bottom: 0;
    }

        .exhibitors-company-info ul li {
            font-family: var(--HalyardDisplayRegular);
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.3;
            color: rgba(102, 102, 102, 1);
            margin-bottom: 5px;
        }

            .exhibitors-company-info ul li:last-child {
                margin-bottom: 0;
            }


.privacy-policy-section {
    padding: 50px 1rem;
}

    .privacy-policy-section .section-title h5 {
        font-size: 20px;
        font-family: var(--HalyardDisplayMedium);
        font-weight: 500;
        line-height: 100%;
        color: rgba(32, 32, 32, 1);
        text-align: left;
    }

.privacy-rules-list p {
    font-family: var(--HalyardDisplayRegular);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: left;
    color: rgba(102, 102, 102, 1);
    margin-bottom: 1rem;
}

    .privacy-rules-list p a {
        font-weight: 500;
        color: rgba(32, 32, 32, 1);
        font-family: var(--HalyardDisplayMedium);
    }

    .privacy-rules-list p span {
        font-weight: 500;
        color: rgba(32, 32, 32, 1);
        font-family: var(--HalyardDisplayMedium);
        display: block;
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

.privacy-rules-list ul li {
    font-family: var(--HalyardDisplayRegular);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: left;
    color: rgba(32, 32, 32, 1);
    margin-bottom: 10px;
}

.privacy-rules-list p:last-child {
    margin-bottom: 0;
}

.footer-menu {
    font-weight: 500;
    font-family: var(--HalyardDisplayMedium);
    color: #fff;
    font-size: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}