@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --default-font: "Inter", sans-serif, system-ui, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Urbanist", sans-serif;
  --nav-font: "Inter", 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: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #8E8535;
  /* 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: #E2E2E2;
  /* The default color of the main navmenu links */
  --nav-hover-color: #8E8535;
  /* 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: #3a3939;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #8E8535;
  /* 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: #f4f4f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(2, 15, 22, 1);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 5%;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #434141;
}

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

.header .logo img {
  max-height: 62px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(2, 15, 22, 1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu a,
.navmenu a:focus {
  padding: 18px 15px;
  font-size: 18px;
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-family: var(--nav-font);
    font-weight: 500;
    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;
    transition: 0.3s;
  }

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

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

  .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 - Mobile */
@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(--nav-font);
    font-size: 17px;
    font-weight: 500;
    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 {
  color: #ffffff;
  background-color: #072131;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 70px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 64px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 16px;
  font-weight: 400;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 26px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  color: #ffffff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .addredss li p {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  font-size: 16px;
  font-weight: 400;
}


.footer .footer-links ul i {
  padding-right: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer a {
  color: #ffffff;
  display: inline-block;
  line-height: 1;
}

.footer a:hover {
  color: #ffffff;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  font-size: 13px;
}

.footer .credits a {
  color: #ffffff;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader img {
  max-width: 30px;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 3px 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: 15px;
  bottom: 40px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.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;
}

/*--------------------------------------------------------------
# Register Top Button
--------------------------------------------------------------*/
.register_modal .modal-header {
  background-color: #F4F3F7;
  border-bottom: 0;
  align-items: flex-start;
  color: #595C5C;
  font-size: 14px;
}

.register_modal .modal-header .modal-title {
  color: #131517;
  font-weight: 600;
  font-size: 18px;
}

.ticket-option {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.register_modal .modal-body .form-check {
  font-weight: 600;
  font-size: 16px;
  color: #333333;
}

.register_modal .modal-body .bg-body-tertiary {
  background-color: #F4F3F7 !important;
  border-color: #F4F3F7 !important;
}

.register_modal .modal-body .ticket-option.border-dark {
  border-color: #333333 !important;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 160px;
  position: relative;
  overflow: hidden;
  background-color: rgba(2, 15, 22, 1);
  background:#000000 url("../img/banner-bg.jpg") no-repeat center center;
  background-size: 100% 100%;
  padding-bottom: 80px;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  height: 25%;
  background-color: #ffffff;
  z-index: -1;
}

.hero .badge-wrapper .d-inline-flex {
  padding: 0.5rem 0.75rem;
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .badge-wrapper .d-inline-flex .icon-circle {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .badge-wrapper .d-inline-flex .icon-circle i {
  font-size: 0.875rem;
  color: var(--heading-color);
}

.hero .badge-wrapper .d-inline-flex .badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

@media (max-width: 767.98px) {
  .hero .badge-wrapper .d-inline-flex .badge-text {
    font-size: 0.75rem;
  }
}

.hero .hero-title {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: #020F16;
  text-shadow:
    -1px -1px 0 rgb(255, 255, 255),
    1px -1px 0 rgb(255, 255, 255),
    -1px 1px 0 rgb(255, 255, 255),
    1px 1px 0 rgb(255, 255, 255);
}

@media (max-width: 991.98px) {
  .hero .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero .hero-title {
    font-size: 1.75rem;
  }
}

.hero .hero-description {
  font-size: 24px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .hero .hero-description {
    font-size: 1rem;
  }
}

.hero .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero .cta-wrapper .btn-primary {
  padding: 0.7rem 2.0rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
}

.hero .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  /* transform: translateY(-3px); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .cta-wrapper .btn-rounded {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
  border-color: 0;
  color: #fff;
  font-size: 18px;
  border-radius: 100%;
  background: -webkit-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: -moz-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: -o-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
}


.hero .feature-boxes {
  margin-top: 3rem;
}

.hero .feature-boxes .feature-box {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero .feature-boxes .feature-box .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background-color: #000;
  overflow: hidden;
  border-radius: 23px;
}

.hero .feature-boxes .feature-box .video-thumbnail,
.hero .feature-boxes .feature-box .video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .feature-boxes .feature-box .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.hero .feature-boxes .feature-box .play-button::after {
  content: "";
  position: absolute;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 100%;
}

.hero .feature-boxes .feature-box .play-button .play-icon {
  padding-left: 10px;
}

.hero .feature-boxes .feature-box .video-player {
  display: none;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-title {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 40px;
}

.about-title .heding-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  text-align: center;
  color: rgba(57, 105, 134, 0.06);
  font-size: 142px;
  line-height: 1;
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-weight: 800;
}

.about-title h2 {
  font-size: 56px;
  font-weight: 700;
  color: #000;
  padding: 2vw 0 2vw 0;
  margin: 0;
}

.about-title p {
  font-size: 20px;
  font-weight: 400;
  color: #2F383E;
}

.ab_th_set {
  max-height: 360px;
  overflow-y: auto;
}

.ab_th_set .mCSB_dragger_bar {
  background-color: rgb(42 39 39 / 75%) !important;
}


.about .content h3 {
  font-size: 48px;
  font-weight: 700;
  color: #396986;
}

.about .content p {
  font-size: 18px;
  font-weight: 400;
  color: #2F383E;
  text-align: justify;
}

.about .about-images {
  padding-left: 80px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# agenda Section
--------------------------------------------------------------*/
.agenda {
  background: #72742F;
  /* Fallback solid color */
  background: -webkit-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: -moz-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: -o-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  position: relative;
  z-index: 1;
}

.agenda::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("../img/leaf.png") no-repeat top right;
  background-size: 228px;
}

.agenda .section-title h2 {
  color: #fff;
  font-weight: 700;
  font-size: 56px;
}

.agenda .agenda-tabs .nav-tabs {
  border: none;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 5px;
}


.agenda .agenda-tabs .nav-tabs .nav-link {
  border: none;
  padding: 14px 50px;
  border-radius: 50px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  font-size: 26px;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.agenda .agenda-tabs .nav-tabs .nav-link.active {
  background: rgba(255, 255, 255, 1.0);
  color: #396986;
}

.agenda-container {
  max-width: 100%;
  margin: auto;
  color: #ffffff;
  margin: 50px 0;
  height: 500px;
  /* or use height: 80vh; */
  overflow-y: auto;
  scroll-behavior: smooth;
}

.tab-content {
  position: relative;
}

.tab-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% + 10px);
  bottom: 0;
  z-index: -1;
  background: url("../img/agenda-bg.png") no-repeat 0px 0px;
  background-size: 90%;
  width: 148px;
}

.agenda-item {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

.agenda-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.agenda-time {
  flex: 0 0 12%;
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agenda-content {
  flex: 1;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agenda-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 30px;
}

.agenda-description {
  font-size: 0.95rem;
}

.agenda-speakers {
  flex: 0 0 34%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-agenda {
  background-color: #ffffff;
  border: 0;
  color: #396986;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-agenda:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Glimpse To Action 2 Section
--------------------------------------------------------------*/
.glimpses {
  position: relative;
  z-index: 1;
}

.glimpses .container-fluid {
  max-width: 1540px;
}

.glimpses::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  width: 100%;
  height: 700px;
  background: url("../img/green-round.png") no-repeat top center;
  background-size: contain;
  margin: auto;
  z-index: -1;
}

.glimpses-heading {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 30px;
}

.glimpses-heading h2 {
  font-size: 56px;
  font-weight: 700;
  color: #396986;
}

.glimpses-heading p {
  font-size: 18px;
  font-weight: 400;
  color: #2F383E;
}

.glimpses_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 20px; */
  padding: 30px 15px;
  margin: 0;
  list-style: none;
  background-color: var(--nav-mobile-background-color);
  border-radius: 44px;
  margin-top: 20px;
  overflow: hidden;
}

.glimpses-light-orange {
  background: #e6ea7c url("../img/glimpses-moon.png") no-repeat top right;
  background-size: 25%;
}

.glimpses-light-pink {
  background-color: #a0c3e7;
  position: relative;
  z-index: 1;
}

.glimpses-light-pink::before {
  content: "";
  position: absolute;
  top: -60px;
  left: auto;
  right: 15px;
  width: 86px;
  height: 86px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  margin: auto;
  z-index: -1;
}

.glimpses-light-pink::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 15px;
  width: 86px;
  height: 86px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  margin: auto;
  z-index: -1;
}

.glimpses-light-blue {
  background: #ffdc99 url("../img/glimpses-angle.png") no-repeat center right;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.glimpses-light-yellow {
  background: #b0e6c1 url("../img/glimpses-moon.png") no-repeat top right;
  background-size: 25%;
}


.glimpses_list h4 {
  font-size: 36px;
  font-weight: 900;
  font-family: var(--heading-font);
  line-height: 1.2;
  margin-bottom: 0;
}

.glimpses_list p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0;
}

.glimpses .nav {
  gap: 15px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.glimpses .nav .nav-link {
  position: relative;
  font-size: 18px;
  text-align: center;
  display: inline-block;
  padding: 10px 30px;
  font-weight: bold;
  border-radius: 30px;
  background: -webkit-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid #72742F;
  z-index: 1;
}

.glimpses .nav .nav-link.active {
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: #ffffff;
}



/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners .bg-light {
  background-color: rgba(0, 0, 0, 0.05) !important;
  padding: 6px;
  border-radius: 40px;
}

.partners .partner_left {
  background-color: #396986;
  padding: 40px;
  border-radius: 38px;
  height: 100%;
}

.partners .partner_left h2 {
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  margin: 50px 0;
}

.partners .partner_left h2 strong {
  font-weight: 700;
}

.partner_right {
  height: 620px;
  overflow-y: auto;
  padding: 20px 0 0;
}

.partner_right h5 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.partner_right .table tr td {
  background-color: transparent;
  vertical-align: middle;
  height: 110px;
}

.partner_right .table td {
  border: 1px solid #dee2e6;
  /* or whatever your inner border color is */
}

.partner_right .table tr:first-child td {
  border-top: none;
}

.partner_right .table tr:last-child td {
  border-bottom: none;
}

.partner_right .table tr td:first-child {
  border-left: none;
}

.partner_right .table tr td:last-child {
  border-right: none;
}

/* Slider */
.swiper-container-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.speakersSwiper {
  padding-left: calc((100% - 1300px) / 2);
  /* Matches .container max-width for large screen */
}

.speaker-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 40px;
  overflow: hidden;
}

.swiper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.swiper-header .swiper-header-left h2 {
  font-size: 56px;
  font-weight: 700;
  color: #396986;
}

.swiper-header .swiper-header-left p {
  font-size: 18px;
  font-weight: 400;
  color: #2F383E;
}

.swiper-header-right {
  position: relative;
  min-width: 130px;
}

.swiper-header-right .swiper-button-next::after,
.swiper-header-right .swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  opacity: 0;
  display: none;
}

.speaker-card img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  transition: all 0.3s ease;
  mix-blend-mode: luminosity;
  filter: grayscale(100%);
}

.speaker-card:hover img {
  mix-blend-mode: inherit;
  filter: inherit;
}

.speaker-card .speaker-card-title {
  padding: 30px 20px;
}

.speaker-card .speaker-card-title h4 {
  font-size: 37px;
  font-family: var(--heading-font);
  font-weight: 300;
  color: #000;
}

.speaker-card .speaker-card-title h4 strong {
  font-weight: 600;
}

.speaker-card .speaker-card-title p {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-top: 10px;
}

.bg-orange {
  background-color: #F6D4BB !important;
}

.bg-yellow {
  background-color: #F5ECC7 !important;
}

.bg-pink {
  background-color: #FFDCDC !important;
}

.bg-blue {
  background-color: #BFDBE8 !important;
}



.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

@media (max-width: 1599px) {
  .speakersSwiper {
    padding-left: calc((100% - 1180px) / 2);
    /* container-lg */
  }
}

@media (max-width: 1399px) {
  .speakersSwiper {
    padding-left: calc((100% - 1120px) / 2);
    /* container-md */
  }
}

@media (max-width: 1199px) {
  .speakersSwiper {
    padding-left: calc((100% - 940px) / 2);
    /* container-md */
  }
}

@media (max-width: 992px) {
  .speakersSwiper {
    padding-left: 15px;
    /* container-sm */
  }
}

@media (max-width: 768px) {
  .speakersSwiper {
    padding-left: 15px;
    /* fallback small screens */
  }
}

@media (min-width: 576px) and (max-width: 767px) {

  .container,
  .container-sm {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Archive Section
--------------------------------------------------------------*/
.archive {
  background: #020F16 url(../img/archives.jpg) no-repeat center center;
  background-size: cover;
  color: #ffffff;
}

.archive-image-wrapper img {
  max-width: 80%;
}

.archive_heading h2 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
}

.archive_heading p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}

.archive-features .feature-item {
  max-height: 435px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 4px 0;
}

.archive-features .table {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.archive-features .table> :not(caption)>*>* {
  padding: 1.0rem 1rem;
}

.archive-features .table td {
  background-color: transparent;
  color: #ffffff;
  vertical-align: middle;
}

.archive-features .table td:last-child {
  text-align: right;
}

.archive-features .table tr:last-child td {
  border-bottom: none;
}

.view_data {
  padding: 6px 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view_data:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-accordion {
  padding-bottom: 70px;
}

.faq .faq-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5.78px 18.5px 0px rgba(8, 15, 52, 0.06);
  border: 1.16px solid rgba(235, 235, 235, 1);
  border-radius: 18px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
}

.faq .faq-item .faq-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #170F49;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle {
  font-size: 30px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  background: rgba(247, 247, 255, 1);
  border-radius: 5px;
  color: rgba(111, 108, 144, 1);
  line-height: 1;
  padding: 3px;
}

.faq .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq .faq-item .faq-content p {
  padding: 0 30px 20px;
  margin: 0;
  line-height: 1.4;
  color: #2F383E;
  font-size: 20px;
  font-weight: 400;
}

.faq .faq-item.faq-active .faq-header h3 {
  color: #170F49;
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  transform: rotate(180deg);
  background: linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  color: #ffffff;
}

.faq .faq-item.faq-active .faq-content {
  max-height: 300px;
  overflow: auto;
}

.faq .faq-contact-card {
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq .faq-contact-card .card-icon {
  margin-bottom: 20px;
}

.faq .faq-contact-card .card-icon i {
  font-size: 48px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.faq .faq-contact-card .card-content h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq .faq-contact-card .card-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.faq .faq-contact-card .contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: auto;
}

.faq .faq-contact-card .contact-options .contact-option {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.faq .faq-contact-card .contact-options .contact-option:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

.faq .faq-contact-card .contact-options .contact-option i {
  font-size: 20px;
  margin-right: 12px;
}

.faq .faq-contact-card .contact-options .contact-option span {
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 991px) {
  .faq .row {
    flex-direction: column-reverse;
  }

  .faq .faq-contact-card {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .faq .faq-item .faq-header {
    padding: 15px 20px;
  }

  .faq .faq-item .faq-header h3 {
    font-size: 16px;
  }

  .faq .faq-item .faq-content p {
    padding: 0 20px 15px;
    font-size: 14px;
  }

  .faq .faq-contact-card {
    padding: 30px 20px;
  }

  .faq .faq-contact-card .card-icon i {
    font-size: 40px;
  }

  .faq .faq-contact-card .card-content h3 {
    font-size: 24px;
  }

  .faq .faq-contact-card .card-content p {
    font-size: 15px;
  }

  .faq .faq-contact-card .contact-options .contact-option {
    padding: 12px 15px;
  }

  .faq .faq-contact-card .contact-options .contact-option i {
    font-size: 18px;
  }

  .faq .faq-contact-card .contact-options .contact-option span {
    font-size: 15px;
  }
}

/* ------- Resposnive Design CSS ------- */
@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}

@media (min-width: 1600px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}



@media (max-width: 1700px) {
  .tab-content::after {
    right: calc(100% + -10px);
    background-size: 86%;
    width: 148px;
  }
}

@media (max-width: 1599px) {

  section,
  .section {
    padding: 44px 0;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 12px;
    font-size: 16px;
  }

  .header .logo img {
    max-height: 55px;
    margin-right: 8px;
  }

  .hero .hero-title {
    font-size: 60px;
  }

  .hero .hero-description {
    font-size: 22px;
  }

  .hero .feature-boxes .feature-box .play-button {
    width: 70px;
    height: 70px;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .about-title .heding-bg {
    font-size: 8.2vw;
  }

  .about-title h2 {
    font-size: 50px;
    padding: 2.6vw 0 2vw 0;
  }

  .about-title p {
    font-size: 17px;
  }

  .about .content h3 {
    font-size: 44px;
  }

  .about .content p {
    font-size: 16px;
  }

  .agenda .section-title h2 {
    font-size: 46px;
  }

  .agenda .agenda-tabs .nav-tabs .nav-link {
    padding: 12px 40px;
    font-size: 22px;
  }

  .agenda-time {
    font-size: 24px;
  }

  .agenda-title {
    font-size: 24px;
  }

  .agenda-description {
    font-size: 13px;
  }

  .tab-content::after {
    right: calc(100% + 0px);
    background-size: 86%;
    width: 102px;
    background-position: left 22%;
  }

  .agenda-container {
    margin-bottom: 0;
  }

  .agenda::after {
    background-size: 14%;
  }

  .btn-agenda {
    font-size: 16px;
  }

  .glimpses-heading {
    padding-top: 20px;
    padding-bottom: 11px;
  }

  .glimpses-heading h2 {
    font-size: 50px;
  }

  .glimpses-heading p {
    font-size: 16px;
  }

  .glimpses .nav .nav-link {
    font-size: 15px;
  }

  .glimpses_list h4 {
    font-size: 30px;
  }

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

  .partners .partner_left h2 {
    font-size: 42px;
    margin: 44px 0;
  }

  .partner_right h5 {
    font-size: 19px;
  }

  .swiper-header .swiper-header-left h2 {
    font-size: 48px;
  }

  .swiper-header .swiper-header-left p {
    font-size: 16px;
  }

  .swiper-header-right {
    min-width: 110px;
  }

  .swiper-header-right .swiper-arrow {
    width: 38px;
  }

  .speaker-card .speaker-card-title h4 {
    font-size: 32px;
  }

  .speaker-card .speaker-card-title p {
    font-size: 14px;
  }

  .speaker-card .speaker-card-title {
    padding: 20px 20px;
  }

  .archive_heading h2 {
    font-size: 48px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .archive_heading p {
    font-size: 16px;
  }

  .faq .faq-item .faq-header h3 {
    font-size: 20px;
  }

  .faq .faq-item .faq-content p {
    font-size: 18px;
  }

  .footer .footer-about .logo img {
    max-height: 58px;
  }


  .footer .footer-about .logo {
    margin-bottom: 15px;
  }

  .footer .footer-about p {
    font-size: 14px;
  }

  .footer .footer-top {
    padding-top: 60px;
  }

  .footer h4 {
    font-size: 22px;
  }

  .footer .addredss li p {
    font-size: 14px;
  }

  .footer .footer-links {
    margin-bottom: 20px;
  }

  .footer .copyright {
    padding: 20px 0;
    font-size: 12px;
  }

  .footer .credits {
    font-size: 12px;
  }

}

@media (max-width: 1399px) {

  section,
  .section {
    padding: 38px 0;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 10px;
    font-size: 14px;
  }

  .header .logo img {
    max-height: 50px;
    margin-right: 4px;
  }

  .hero .hero-title {
    font-size: 50px;
  }

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

  .hero .feature-boxes .feature-box .play-button {
    width: 60px;
    height: 60px;
  }

  .hero .feature-boxes .feature-box .play-button img {
    width: 30px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .about-title .heding-bg {
    font-size: 9.0vw;
  }

  .about-title h2 {
    font-size: 42px;
    padding: 2.6vw 0 2vw 0;
  }

  .about-title p {
    font-size: 15px;
  }

  .about .content h3 {
    font-size: 40px;
  }

  .about .content p {
    font-size: 14px;
  }

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

  .agenda .agenda-tabs .nav-tabs .nav-link {
    padding: 10px 30px;
    font-size: 20px;
  }

  .agenda-time {
    font-size: 22px;
  }

  .agenda-title {
    font-size: 22px;
  }

  .agenda-description {
    font-size: 12px;
  }

  .tab-content::after {
    right: calc(100% + 0px);
    background-size: 86%;
    width: 102px;
    background-position: left 22%;
  }

  .agenda-tabs {
    max-width: calc(100% - 140px);
    margin: 0 auto;
  }

  .agenda-container {
    margin: 15px auto
  }

  .agenda::after {
    background-size: 14%;
  }

  .btn-agenda {
    font-size: 14px;
  }

  .glimpses-heading {
    padding-top: 20px;
    padding-bottom: 11px;
  }

  .glimpses-heading h2 {
    font-size: 42px;
  }

  .glimpses-heading p {
    font-size: 14px;
  }

  .glimpses .nav .nav-link {
    font-size: 13px;
  }

  .glimpses_list h4 {
    font-size: 28px;
  }

  .glimpses_list p {
    font-size: 16px;
  }

  .partners .partner_left h2 {
    font-size: 38px;
    margin: 38px 0;
  }

  .partner_right h5 {
    font-size: 16px;
  }

  .swiper-header .swiper-header-left h2 {
    font-size: 42px;
  }

  .swiper-header .swiper-header-left p {
    font-size: 14px;
  }

  .swiper-header-right .swiper-arrow {
    width: 34px;
  }

  .speaker-card .speaker-card-title h4 {
    font-size: 28px;
  }

  .speaker-card .speaker-card-title p {
    font-size: 13px;
  }

  .speaker-card .speaker-card-title {
    padding: 20px 20px;
  }

  .archive_heading h2 {
    font-size: 42px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .archive_heading p {
    font-size: 14px;
  }

  .faq .faq-item .faq-header h3 {
    font-size: 18px;
  }

  .faq .faq-item .faq-content p {
    font-size: 16px;
  }

  .footer .footer-about .logo img {
    max-height: 50px;
  }


  .footer .footer-about .logo {
    margin-bottom: 15px;
  }

  .footer .footer-about p {
    font-size: 13px;
  }

  .footer .footer-top {
    padding-top: 50px;
  }

  .footer h4 {
    font-size: 20px;
  }

  .footer .addredss li p {
    font-size: 13px;
  }

  .footer .footer-links {
    margin-bottom: 20px;
  }

  .footer .copyright {
    padding: 20px 0;
    font-size: 11px;
  }

  .footer .credits {
    font-size: 11px;
  }

  .partner_right {
    height: 600px;
  }

  .register_modal .modal-header {
    font-size: 13px;
  }

  .register_modal .modal-header .modal-title {
    font-size: 16px;
  }

  .register_modal .modal-body .form-check {
    font-size: 14px;
  }
}


@media (max-width: 1199px) {

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 20px;
    font-size: 16px;
  }

  .hero .hero-title {
    font-size: 40px;
  }

  .hero .cta-wrapper .btn-primary {
    font-size: 14px;
  }

  .hero .cta-wrapper .btn-rounded {
    width: 44px;
    height: 44px;
  }

  .hero .cta-wrapper .btn-rounded img {
    width: 22px;
  }

  .hero .hero-description {
    font-size: 16px;
  }

  .hero .feature-boxes .feature-box .play-button {
    width: 50px;
    height: 50px;
  }

  .hero .feature-boxes .feature-box .play-button img {
    width: 30px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 10px;
  }

  .about-title .heding-bg {
    font-size: 8.7vw;
  }

  .about-title h2 {
    font-size: 36px;
    padding: 2.6vw 0 2vw 0;
  }

  .about-title p {
    font-size: 14px;
  }

  .about .content h3 {
    font-size: 34px;
  }

  .about .content p {
    font-size: 12px;
  }

  .agenda .section-title h2 {
    font-size: 34px;
  }

  .agenda .agenda-tabs .nav-tabs .nav-link {
    padding: 10px 30px;
    font-size: 17px;
  }

  .agenda-time {
    font-size: 20px;
  }

  .agenda-title {
    font-size: 20px;
  }

  .agenda-description {
    font-size: 12px;
  }

  .tab-content::after {
    display: none;
  }

  .agenda-tabs {
    max-width: calc(100% - 0px);
    margin: 0 auto;
  }

  .agenda-container {
    margin: 15px auto
  }

  .agenda::after {
    background-size: 14%;
  }

  .btn-agenda {
    font-size: 13px;
  }

  .glimpses-heading {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .glimpses-heading h2 {
    font-size: 36px;
  }

  .glimpses-heading p {
    font-size: 13px;
  }

  .glimpses .nav .nav-link {
    font-size: 12px;
  }

  .glimpses_list h4 {
    font-size: 24px;
  }

  .glimpses_list p {
    font-size: 14px;
  }

  .partners .partner_left h2 {
    font-size: 30px;
    margin: 30px 0;
  }

  .partner_right h5 {
    font-size: 14px;
  }

  .swiper-header .swiper-header-left h2 {
    font-size: 34px;
  }

  .swiper-header .swiper-header-left p {
    font-size: 13px;
  }

  .swiper-header-right .swiper-arrow {
    width: 34px;
  }

  .speaker-card .speaker-card-title h4 {
    font-size: 24px;
  }

  .speaker-card .speaker-card-title p {
    font-size: 12px;
  }

  .speaker-card .speaker-card-title {
    padding: 20px 20px;
  }

  .archive_heading h2 {
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .archive_heading p {
    font-size: 13px;
  }

  .faq .faq-item .faq-header h3 {
    font-size: 16px;
  }

  .faq .faq-item .faq-content p {
    font-size: 14px;
  }

  .footer .footer-about .logo img {
    max-height: 50px;
  }


  .footer .footer-about .logo {
    margin-bottom: 15px;
  }

  .footer .footer-about p {
    font-size: 12px;
  }

  .footer .footer-top {
    padding-top: 30px;
  }

  .footer h4 {
    font-size: 18px;
  }

  .footer .addredss li p {
    font-size: 12px;
  }

  .footer a {
    color: #ffffff;
  }

  .footer .footer-links {
    margin-bottom: 20px;
  }

  .footer .copyright {
    padding: 20px 0;
    font-size: 10px;
  }

  .footer .credits {
    font-size: 10px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
}

@media (min-width: 0px) and (max-width: 991px) {
  .header {
    padding: 15px 0;
  }

  .about .about-images {
    padding-left: 15px;
  }

  .hero .feature-boxes {
    margin-top: 1rem;
  }

  .hero .hero-title {
    font-size: 36px;
  }

  .hero .hero-description {
    font-size: 14px;
  }

  .about-title h2 {
    font-size: 34px;
    padding: 2.6vw 0 2vw 0;
  }

  .about-title p {
    font-size: 13px;
  }

  .about .content h3 {
    font-size: 30px;
  }

  .agenda .section-title h2 {
    font-size: 30px;
  }

  .agenda-time {
    font-size: 18px;
  }

  .glimpses-heading h2 {
    font-size: 32px;
  }

  .glimpses-heading p {
    font-size: 12px;
  }

  .partner_right .table tr td {
    height: 90px;
  }

  .partner_right {
    height: 500px;
  }

  .swiper-header .swiper-header-left h2 {
    font-size: 30px;
  }

  .archive-image-wrapper {
    text-align: center;
  }

  .archive-image-wrapper img {
    max-width: 50%;
  }

  .archive_heading h2 {
    font-size: 30px;
  }

  .archive-features .table {
    font-size: 13px;
  }

  .archive-features .table> :not(caption)>*>* {
    padding: 0.8rem 1rem;
  }

  /* .ab_th_set {
    max-height: 600px;
    overflow-y: auto;
} */
}


@media (min-width: 0px) and (max-width: 767px) {
  .custome_sm {
    flex-direction: column;
    align-items: center;
  }

  .custome_sm .col {
    width: 100%;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 10px;
  }

  .hero .hero-title {
    font-size: 34px;
  }

  section,
  .section {
    padding: 20px 0;
  }

  .hero {
    padding-top: 100px;
  }

  .about-title h2 {
    font-size: 5.4vw;
    padding: 1.5vw 0 2vw 0;
  }

  .about-title p {
    font-size: 12px;
  }

  .about-title {
    padding-bottom: 10px;
  }

  .about .content h3 {
    font-size: 26px;
  }

  .agenda .section-title h2 {
    font-size: 26px;
    padding-bottom: 0;
    padding-top: 15px;
  }

  .agenda .agenda-tabs .nav-tabs .nav-link {
    padding: 10px 30px;
    font-size: 14px;
  }

  .agenda-time {
    font-size: 14px;
  }

  .agenda-title {
    font-size: 14px;
  }

  .agenda-description {
    font-size: 11px;
  }

  .agenda-item {
    padding: 10px 0;
  }

  .btn-agenda {
    font-size: 12px;
  }

  .glimpses-heading h2 {
    font-size: 26px;
  }

  .glimpses_list h4 {
    font-size: 20px;
  }

  .glimpses_list p {
    font-size: 12px;
  }

  .partners .partner_left {
    padding: 20px;
    text-align: center;
  }

  .swiper-header .swiper-header-left h2 {
    font-size: 26px;
  }

  .swiper-header .swiper-header-left p {
    font-size: 12px;
  }

  .archive_heading h2 {
    font-size: 26px;
  }

  .archive_heading p {
    font-size: 12px;
  }

  .archive-features .table td:first-child img {
    max-width: 30px;
  }

  .archive-features .table td:last-child img {
    max-width: 20px;
  }

}

@media (min-width: 0px) and (max-width: 575px) {
  .hero .hero-title {
    font-size: 26px;
  }

  .hero .hero-description {
    font-size: 12px;
  }

  .hero .cta-wrapper .btn-primary {
    font-size: 12px;
  }

  .about-title p br {
    display: none;
  }

  .about .content h3 {
    font-size: 20px;
  }

  .about .content p {
    font-size: 11px;
  }

  .agenda .section-title h2 {
    font-size: 22px;
    padding-top: 10px;
  }

  .agenda .agenda-tabs .nav-tabs .nav-link {
    padding: 8px 20px;
    font-size: 13px;
  }

  .agenda-item {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }

  .agenda-time br {
    display: none;
  }

  .agenda-content,
  .agenda-speakers {
    padding: 0;
    border-left: 0;
  }

  .btn-agenda {
    padding: 12px 20px;
  }

  .glimpses-heading h2 {
    font-size: 20px;
  }

  .glimpses-heading p {
    font-size: 11px;
  }

  .glimpses .nav {
    gap: 10px;
    position: relative;
  }

  .glimpses .nav .nav-link {
    padding: 10px 20px;
  }

  .sadhani_glimpse {
    text-align: center;
    justify-content: center;
    padding-top: 30px;
  }

  .sadhani_glimpse .col {
    flex: inherit;
    width: 100%;
    max-width: 80%;
  }

  .swiper-header .swiper-header-left h2 {
    font-size: 22px;
  }

  .swiper-header-right {
    min-width: 80px;
  }

  .faq .faq-item .faq-header h3 {
    font-size: 14px;
  }

  .swiper-header-right .swiper-arrow {
    width: 28px;
  }

  .archive_heading h2 {
    font-size: 22px;
  }

  .partners .partner_left h2 {
    font-size: 24px;
  }

  .archive_heading p {
    font-size: 11px;
  }

  .archive-features .table> :not(caption)>*>* {
    padding: 0.6rem 0.6rem;
  }

  .archive-features .table {
    font-size: 12px;
  }

  .faq .faq-item .faq-content p,
  .faq .faq-item .faq-content ul {
    font-size: 12px;
  }

  .faq .faq-item .faq-content ul {
    padding-left: 15px;
  }

  .faq-accordion {
    padding-bottom: 30px;
  }

  .footer .footer-about .logo {
    margin-bottom: 0;
  }
}