:root {
  scroll-behavior: smooth;
  /* Fonts */
  --font-primary: system-ui, sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-regular: "Merriweather", serif;
  /*colors */
  --primary-color: #304e96;
  --secondary-color: #b8ef37;
  --dark-blue: #143481;
  --sky-blue: #dbe3f7;
  --grey-color: #737373;
  --light-gray: #e5e5e5;
  --black-color: #000000;
  --white-color: #ffffff;
  --light-orange: #efddc5;
  /* font sizes */
  --fs-xs: 0.75rem; /* 12px */
  --fs-sm: 0.875rem; /* 14px */
  --fs-md: 1rem; /* 16px */
  --fs-l: 1.125rem; /*18px */
  --fs-lg: 1.25rem; /* 20px */
  --fs-xl: 1.5rem; /* 24px */
  --fs-2xl: 1.75rem; /* 28px */
  --fs-3xl: 2rem; /* 32px */
  --fs-34: 2.125rem; /* 34px */
  --fs-36: 2.25rem; /* 36px */
  --fs-40: 2.5rem; /* 40px */
  /* font weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-bolder: 900;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--font-regular);
  box-sizing: border-box;
  font-size: var(--fs-md);
  color: #212529;
}

/** Common Classes Section **/
i[class^=ri-] {
  font-size: 20px;
  vertical-align: middle;
}

.black-color {
  color: var(--black-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.blue-color {
  color: var(--dark-blue);
}

.common-title,
.banner-title {
  font-size: var(--fs-36);
  font-weight: var(--fw-bold);
  color: var(--white-color);
  margin-bottom: 40px;
}
.common-title.black-color,
.banner-title.black-color {
  color: var(--black-color);
}
.common-title.secondary-color,
.banner-title.secondary-color {
  color: var(--secondary-color);
}
.common-title.blue-color,
.banner-title.blue-color {
  color: var(--dark-blue);
}

.banner-title {
  font-size: var(--fs-40);
  margin-bottom: 0px;
  line-height: 1.4;
}

.common-subtitle,
.banner-subtitle {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--black-color);
  margin-bottom: 20px;
}
.common-subtitle.secondary-color,
.banner-subtitle.secondary-color {
  color: var(--secondary-color);
}
.common-subtitle.blue-color,
.banner-subtitle.blue-color {
  color: var(--dark-blue);
}

.banner-subtitle {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--white-color);
  margin-bottom: 0px;
}

.common-btn {
  display: inline-block;
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: var(--black-color);
  text-decoration: none;
  padding: 8px 30px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  min-width: 130px;
  text-align: center;
  vertical-align: middle;
  transition: scale 0.3s ease-in-out;
}
.common-btn:hover {
  scale: 1.05;
  color: var(--black-color);
}
.common-btn.secondary-btn {
  background-color: transparent;
  color: var(--secondary-color);
}

.section-padding {
  padding: 60px 0px;
}

.main-padding {
  padding-top: 94px;
}

.description {
  font-size: var(--fs-l);
  color: var(--black-color);
}

.view-more-link {
  display: inline-block;
  text-decoration: none;
  font-style: italic;
  color: var(--grey-color);
  font-weight: var(--fw-bold);
}

/** End Common Classes Section **/
/** Header Section **/
header {
  padding: 10px 0px;
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
header .logo img {
  width: auto;
  height: 72px;
}
header .menu {
  display: flex;
  justify-content: end;
  gap: 24px;
  margin-bottom: 0px;
  padding-left: 0px;
}
header .menu li {
  list-style: none;
  position: relative;
}
header .menu li a {
  text-decoration: none;
  font-size: var(--fs-md);
  color: var(--white-color);
  font-weight: var(--fw-bold);
  padding: 5px 0px;
  position: relative;
}
header .menu li a::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 4px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
header .menu li a:hover::before {
  width: 100%;
}
header .menu li.current-menu-item a::before {
  width: 100%;
}
header .menu li.current-menu-item .sub-menu a::before {
  width: 0%;
}
header .menu li.current-menu-item .sub-menu a:hover::before {
  width: 100%;
}
header .menu li.menu-item-has-children::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 58%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--white-color);
  transform-origin: top;
  transition: rotate 0.3s ease-in-out;
}
header .menu li.menu-item-has-children:hover::after {
  rotate: 180deg;
}
header .menu li.menu-item-has-children .sub-menu .menu-item-has-children::after {
  border-top: 5px solid var(--black-color);
  right: 5px;
}
header .menu li.menu-item-has-children .sub-menu .menu-item-has-children:hover::after {
  rotate: 270deg !important;
}
header .menu li .sub-menu {
  background-color: var(--light-gray);
  padding: 10px 0px;
  border-left: 3px solid var(--secondary-color);
  position: absolute;
  top: calc(100% + 2.4px);
  left: -4px;
  display: none;
}
header .menu li .sub-menu li {
  display: block;
  padding: 3px 20px;
}
header .menu li .sub-menu li a {
  white-space: nowrap;
  font-size: var(--fs-sm);
  color: var(--black-color);
  font-weight: var(--fw-medium);
}
header .menu li .sub-menu li a::before {
  bottom: 0px;
  height: 2px;
}
header .menu li .sub-menu li .sub-menu {
  display: none;
  top: 4px;
  left: calc(100% + 0px);
  right: auto;
}
header .menu li .sub-menu li:hover .sub-menu {
  display: block;
}
header .menu li:hover .sub-menu {
  display: block;
}
header.hide {
  transform: translateY(-100%);
}
header.show {
  transform: translateY(0);
}
header.scrolled, header.white-header {
  background-color: var(--white-color);
  backdrop-filter: blur(8px);
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
header.scrolled .menu li a, header.white-header .menu li a {
  color: var(--black-color);
}
header.scrolled .menu li::after, header.white-header .menu li::after {
  border-top: 5px solid var(--black-color);
}
header.scrolled .toggle-menu-cont .toggle-menu i, header.white-header .toggle-menu-cont .toggle-menu i {
  background: var(--dark-blue);
}

.toggle-menu-cont {
  position: absolute;
  width: 36px;
  height: 36px;
  right: 4px;
  left: auto;
  top: 9px;
  display: none;
}
.toggle-menu-cont .toggle-menu {
  width: 36px;
  height: 36px;
  display: none;
  right: 14px;
  position: relative;
  top: 0%;
}
.toggle-menu-cont .toggle-menu i {
  position: absolute;
  display: block;
  height: 2px;
  background: var(--secondary-color);
  width: 22px;
  left: 10px;
  transition: all 0.3s;
}
.toggle-menu-cont .toggle-menu i:nth-child(1) {
  top: 8px;
}
.toggle-menu-cont .toggle-menu i:nth-child(2) {
  top: 16px;
}
.toggle-menu-cont .toggle-menu i:nth-child(3) {
  top: 24px;
}
.toggle-menu-cont .toggle-menu.open-menu i:nth-child(1) {
  top: 18px;
  transform: rotateZ(45deg);
}
.toggle-menu-cont .toggle-menu.open-menu i:nth-child(2) {
  background: transparent;
}
.toggle-menu-cont .toggle-menu.open-menu i:nth-child(3) {
  top: 18px;
  transform: rotateZ(-45deg);
}

.mob-header {
  background-color: var(--dark-blue);
  min-height: 100vh;
}
.mob-header .menu {
  gap: 0px;
}
.mob-header .menu li {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mob-header .menu li.current-menu-item {
  background-color: color-mix(in srgb, var(--secondary-color) 70%, transparent 0%);
}
.mob-header .menu li a {
  display: block;
  padding: 0px;
}
.mob-header .menu li a::before {
  display: none;
}
.mob-header .menu li.menu-item-has-children::after {
  top: 24px;
  right: 14px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--white-color);
}
.mob-header .menu li .sub-menu {
  position: relative;
  left: -10px;
  width: calc(100% + 22px);
  margin-bottom: -8px;
  margin-top: 6px;
  padding: 0px;
}
.mob-header .menu li .sub-menu li {
  padding: 6px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mob-header .menu li .sub-menu li a {
  font-size: var(--fs-md);
}
.mob-header .menu li .sub-menu li::after {
  top: 18px;
  right: 14px !important;
}
.mob-header .menu li .sub-menu li .sub-menu {
  left: calc(0% - 20px);
  top: -2px;
  width: calc(100% + 40px);
}
.mob-header .menu li .sub-menu li .sub-menu li {
  padding-left: 30px;
}
.mob-header .menu li .sub-menu li.menu-item-has-children::after {
  right: 12px;
}
.mob-header .menu li .sub-menu li.menu-item-has-children:hover::after {
  rotate: 180deg !important;
}
.mob-header nav {
  margin: 0px -12px;
}

/** End Header Section **/
/** Footer Section **/
footer {
  padding: 40px 0px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px -1px 2px 0px;
}
footer h3 {
  font-size: var(--fs-l);
  color: var(--black-color);
  font-weight: var(--fw-semibold);
  margin-bottom: 10px;
}
footer ul {
  padding-left: 0px;
}
footer ul li {
  list-style: none;
  margin: 6px 0px;
}
footer ul li a {
  text-decoration: none;
  color: var(--black-color);
  display: inline-block;
}
footer ul li a:hover {
  color: var(--primary-color);
}
footer ul.social-media {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 8px;
  margin-bottom: 0px;
}
footer ul.social-media li {
  margin: 0px;
  line-height: 1;
}
footer ul.social-media i {
  font-size: 24px;
}
footer ul.social-media svg {
  width: 40px;
  height: 40px;
  font-weight: var(--fw-bolder);
}
footer ul.social-media i,
footer ul.social-media svg {
  display: block;
  transition: all 0.3s ease-in-out;
}
footer ul.social-media i:hover,
footer ul.social-media svg:hover {
  scale: 0.95;
  color: var(--black-color);
  opacity: 0.85;
}
footer p {
  margin-bottom: 8px;
  font-weight: var(--fw-medium);
}
footer .bottom-footer-menu {
  border-top: 2px solid color-mix(in srgb, var(--dark-blue) 60%, transparent);
  margin-top: 10px;
}
footer .bottom-footer-menu .menu-bottom-footer-menu-container {
  width: 100%;
}
footer .bottom-footer-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0px;
  margin: 6px 0px 6px;
}

/** End Footer Section **/
/** Hero Section **/
.hero-section {
  height: 100vh;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom !important;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-section .banner-title {
  margin-bottom: 12px;
}
.hero-section .banner-subtitle {
  margin-bottom: 24px;
}
.hero-section .buttons {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-section .content {
  position: relative;
  z-index: 2;
}
.hero-section .counter {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: end;
}
.hero-section .counter .countdown {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 5px;
  margin-bottom: 80px;
  color: var(--white-color);
}
.hero-section .counter .countdown div {
  background: rgba(44, 74, 100, 0.4);
  color: var(--white-color);
  padding: 8px 20px;
  text-align: center;
  border-radius: 4px;
  min-width: 70px;
}
.hero-section .counter .countdown span {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-medium);
  display: block;
  line-height: 1;
}
.hero-section .counter .countdown small {
  font-size: 12px;
  opacity: 0.8;
}
.hero-section.main-banner .content {
  text-align: center;
}
.hero-section.main-banner .content .banner-title {
  margin-bottom: 0px;
  margin-top: 12px;
}
.hero-section.main-banner .content .banner-subtitle {
  margin-bottom: 0px;
}
.hero-section.inner-page-banner {
  min-height: 35vh;
  height: auto;
}
.hero-section.inner-page-banner .content {
  margin-top: 2rem;
}
.hero-section .conference-banner-content {
  display: none;
  position: relative;
  z-index: 2;
}
.hero-section.conference-banner .content {
  display: none;
}
.hero-section.conference-banner .conference-banner-content {
  display: block;
}
.hero-section.conference-banner .conference-banner-content .banner-content {
  padding: 40px 60px;
  text-align: center;
  border: 2px solid color-mix(in srgb, var(--white-color) 80%, transparent);
}
.hero-section.conference-banner .conference-banner-content .banner-content .tagline {
  color: var(--white-color);
  font-size: var(--fs-xl);
  opacity: 0.8;
  font-style: italic;
  font-weight: var(--fw-regular);
  margin-bottom: 24px;
}
.hero-section.conference-banner .conference-banner-content .banner-content .banner-subtitle {
  margin-bottom: 12px;
}
.hero-section.conference-banner .conference-banner-content .banner-content .venue-date {
  display: inline-block;
  font-size: var(--fs-xl);
  color: var(--white-color);
  padding-top: 15px;
  border-top: 2px solid color-mix(in srgb, var(--white-color) 70%, transparent);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 78, 150, 0.7);
}

/** End Hero Section **/
/** Home Definition-Section **/
.definition-section .content p {
  margin-bottom: 0px;
  font-size: var(--fs-2xl);
}
.definition-section .image img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

/** End Home Definition-Section **/
/** Conference Map Section **/
.conference-map--section {
  background-color: var(--primary-color);
}
.conference-map--section h2 {
  text-align: center;
}
.conference-map--section .world-map {
  text-align: center;
}
.conference-map--section .world-map svg {
  width: 100%;
  max-width: 100%;
  fill: rgba(87, 106, 119, 0.2);
  stroke-width: 1px;
}
.conference-map--section .world-map svg path {
  stroke: color-mix(in srgb, var(--white-color) 4%, transparent);
  transition: fill 0.3s ease;
}
.conference-map--section .world-map svg path.active {
  fill: var(--secondary-color);
}

.timeline-div {
  position: relative;
  padding: 0px 30px;
}
.timeline-div .map-timeline {
  display: flex;
  align-items: center;
  justify-content: start;
  max-width: 100%;
  width: 100%;
  gap: 20px;
  color: #fff;
  overflow: auto;
  padding-top: 20px;
  margin-top: 50px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.timeline-div .map-timeline::-webkit-scrollbar {
  display: none;
}
.timeline-div .map-timeline .years {
  display: flex;
  gap: 40px;
  position: relative;
}
.timeline-div .map-timeline .years span {
  cursor: pointer;
  opacity: 0.75;
  position: relative;
  min-width: 130px;
  font-size: var(--fs-lg);
}
.timeline-div .map-timeline .years span::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--white-color);
}
.timeline-div .map-timeline .years span.active {
  opacity: 1;
  font-weight: var(--fw-bold);
}
.timeline-div .map-timeline .years span.active::after {
  background: var(--secondary-color);
}
.timeline-div .map-timeline button {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, scale 0.3s ease-in-out;
  background: transparent;
  border: 0;
}
.timeline-div .map-timeline button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
  width: 20px;
  height: 20px;
  border: 4px solid var(--white-color);
  border-bottom: 0px solid transparent;
  border-left: 0px solid transparent;
  background-color: var(--primary-color);
  transform-origin: top;
  rotate: 45deg;
}
.timeline-div .map-timeline button#map-prev {
  left: 0px;
}
.timeline-div .map-timeline button#map-prev::after {
  rotate: 226deg;
}
.timeline-div .map-timeline button#map-next {
  right: 0;
}
.timeline-div .map-timeline button:hover {
  scale: 0.9;
}
.timeline-div .map-timeline button[style*=hidden] {
  opacity: 0;
}

/** End Conference Map Section **/
/** Our Reach Section **/
.our-reach--section .section-image {
  position: relative;
}
.our-reach--section .section-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 10/6;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-reach--section .section-image .our-reach--div {
  position: absolute;
  top: 0px;
  right: 50px;
  background-color: color-mix(in srgb, var(--light-orange) 85%, transparent 0%);
  padding: 30px;
  width: 20rem;
}
.our-reach--section .section-image .our-reach--div h3 {
  font-size: var(--fs-lg);
  color: var(--primary-color);
  font-weight: var(--fw-bold);
}
.our-reach--section .section-image .our-reach--div .reach {
  margin-top: 20px;
}
.our-reach--section .section-image .our-reach--div .reach p {
  color: var(--black-color);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
}
.our-reach--section .section-image .our-reach--div .reach p:not(:first-child) {
  opacity: 0.85;
}
.our-reach--section .section-image .our-reach--div .reach p:first-child {
  font-size: var(--fs-34);
  line-height: 1;
  font-weight: var(--fw-bold);
  margin-bottom: 2px;
  opacity: 0.95;
}

.our-speakers--section {
  background-color: var(--primary-color);
}
.our-speakers--section .common-title {
  text-align: center;
}
.our-speakers--section .speakers {
  display: flex;
  position: relative;
}
.our-speakers--section .speakers .speaker {
  background-color: transparent;
  perspective: 1000px;
  aspect-ratio: 9/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-speakers--section .speakers .speaker .inner-card {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.our-speakers--section .speakers .speaker .inner-card .card-front,
.our-speakers--section .speakers .speaker .inner-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.our-speakers--section .speakers .speaker .inner-card .card-front img {
  width: 100%;
  aspect-ratio: 9/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-speakers--section .speakers .speaker .inner-card .card-back {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.our-speakers--section .speakers .speaker .inner-card .card-back h3 {
  color: var(--secondary-color);
  margin-bottom: 0px;
}
.our-speakers--section .speakers .speaker .inner-card .card-back p {
  margin-bottom: 0px;
  color: var(--white-color);
}
.our-speakers--section .speakers .speaker .inner-card .card-back p.country {
  font-size: var(--fs-l);
  font-weight: var(--fw-regular);
  font-style: italic;
}
.our-speakers--section .speakers .speaker .inner-card .card-back p:last-child {
  margin-top: 8px;
}
.our-speakers--section .speakers .speaker:hover .inner-card {
  transform: rotateY(180deg);
}
.our-speakers--section .speakers .next-icon {
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 20px;
  transform: translate(0%, -50%);
  transition: transform 0.3s ease-in-out;
}
.our-speakers--section .speakers .next-icon img {
  width: 35px;
  height: auto;
}
.our-speakers--section .speakers .next-icon:hover {
  transform: translate(3px, -50%) scale(1.05);
}

/** End Our Reach Section **/
/** Speakers Page Section **/
.categories-menu .nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  row-gap: 10px;
}
.categories-menu .nav-items li {
  list-style: none;
  font-size: var(--fs-xl);
}
.categories-menu .nav-items li a {
  display: inline-block;
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: var(--fw-semibold);
  opacity: 0.85;
}
.categories-menu .nav-items li a:hover {
  opacity: 1;
}

.speaker-section .common-title {
  color: var(--primary-color);
}

.about-speaker {
  width: 100%;
  height: 100%;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.3s ease-in-out;
}
.about-speaker a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.about-speaker .speaker-image {
  overflow: hidden;
}
.about-speaker .speaker-image img {
  width: 100%;
  aspect-ratio: 10/7;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.about-speaker .content {
  padding: 20px;
}
.about-speaker .content h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: 0px;
}
.about-speaker .content p {
  font-size: var(--fs-md);
  margin: 6px 0px 0px;
}
.about-speaker .content p.country {
  font-size: var(--fs-lg);
  color: var(--primary-color);
  font-style: italic;
  margin: 0px !important;
}
.about-speaker .content .common-btn {
  margin-top: 20px;
  display: none;
}
.about-speaker .content.show-content p:not(.about-speaker .content.show-content p.country) {
  display: none;
}
.about-speaker .content.show-content .common-btn {
  display: inline-block;
}
.about-speaker:hover {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.about-speaker:hover .speaker-image img {
  scale: 1.05;
}

/** End Speakers Page Section **/
/** Single Speaker Section **/
.single-speaker-profile .speaker-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-speaker-profile .content .common-title {
  margin-bottom: 4px;
}
.single-speaker-profile .content .key-of-attachement {
  margin-top: 40px;
}
.single-speaker-profile .content .key-of-attachement ul li {
  font-weight: var(--fw-medium);
  margin-bottom: 4px;
}
.single-speaker-profile .content .country {
  opacity: 0.9;
  margin-bottom: 20px;
}

.about-conference--section .buttons-div {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.coordinator-desk--section {
  background-color: var(--primary-color);
}
.coordinator-desk--section .coordinator-image img {
  width: 100%;
  aspect-ratio: 10/7;
  -o-object-fit: cover;
     object-fit: cover;
}
.coordinator-desk--section .content {
  color: var(--white-color);
}
.coordinator-desk--section .content .signature {
  width: 160px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 16px;
}
.coordinator-desk--section .content .coordinator-name {
  color: var(--secondary-color);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: 2px;
}
.coordinator-desk--section .content .coordinator-designation {
  font-weight: var(--fw-regular);
  margin-bottom: 0px;
}

/** End Single Speaker Section **/
.fidel-video--section {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  position: relative;
}
.fidel-video--section .video-container {
  position: relative;
  z-index: 2;
}
.fidel-video--section .video-container .video-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
  aspect-ratio: 16/9;
}
.fidel-video--section .video-container .video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
}
.fidel-video--section .video-container .video-wrapper .custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 20px 28px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fidel-video--section .video-container .video-wrapper .custom-play-btn i {
  flex: 1;
  display: inline-block;
  font-size: 50px;
  margin-left: 10px;
}
.fidel-video--section .video-container .video-wrapper .custom-play-btn:hover {
  scale: 0.95;
}
.fidel-video--section .video-container .video-wrapper:hover .custom-play-btn {
  background: rgba(0, 0, 0, 0.8);
}
.fidel-video--section .video-container .buttons-box {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.fidel-video--section::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
}

.events-section .event {
  position: relative;
  overflow: hidden;
}
.events-section .event .event-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-in-out;
}
.events-section .event h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  margin-bottom: 0px;
  transition: 0.3s ease-in-out;
}
.events-section .event::before {
  content: "";
  position: absolute;
  inset: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 1;
}
.events-section .event:hover .event-thumbnail img {
  scale: 1.05;
}
.events-section .event:hover h2 {
  color: var(--secondary-color);
}

.event-items--section ul {
  padding-left: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0px;
  flex-wrap: wrap;
}
.event-items--section ul li {
  list-style: none;
  font-weight: var(--fw-bold);
  color: var(--dark-blue);
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  font-size: var(--fs-l);
}
.event-items--section ul li.active, .event-items--section ul li:hover {
  opacity: 1;
}
.event-items--section .mobile-menu {
  display: none;
  width: 100%;
  padding: 10px;
  font-size: 16px;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.event-content--section {
  display: none;
}
.event-content--section.active {
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-auto-rows: 8px;
  gap: 15px;
}
.gallery .gallery-item {
  overflow: hidden;
}
.gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.documents-gallery .document {
  width: 184px;
  margin: auto;
}
.documents-gallery .document img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  width: auto;
  height: 230px;
  transition: 0.3s ease-in-out;
}
.documents-gallery .document img:hover {
  scale: 0.95;
}
.documents-gallery .document .preview-links {
  margin-top: 6px;
  text-align: center;
}
.documents-gallery .document .preview-links a {
  text-decoration: none;
  color: var(--black-color);
  display: inline-block;
  transition: 0.3s ease-in-out;
  font-weight: var(--fw-bold);
}
.documents-gallery .document .preview-links a:first-of-type {
  color: var(--secondary-color);
}
.documents-gallery .document .preview-links a:hover {
  opacity: 0.85;
  scale: 0.95;
}
.documents-gallery .document .preview-links span {
  margin: 0px 4px;
  font-weight: var(--fw-bolder);
}

.youtube-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper.initiativeSwiper .swiper-wrapper {
  padding: 40px 0px;
}
.swiper.initiativeSwiper .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper.initiativeSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper.speakerSwiper .swiper-pagination {
  bottom: 0px;
}
.swiper.speakerSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--white-color) !important;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}/*# sourceMappingURL=custom.css.map */