@import "editor-fonts.css";
/*!
Theme Name: AME 2025
Author: Nathan Palaganas
*/
.site-header {
  padding: 20px 0;
  background-color: #081524;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.site-header .site-branding img {
  max-height: 70px;
  max-width: 100%;
}
.site-header .main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .main-navigation ul li {
  position: relative;
  display: inline-block;
  padding: 0 15px;
}
.site-header .main-navigation ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: 'Europa-Bold';
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -moz-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -ms-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.site-header .main-navigation ul li a:hover {
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -moz-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -ms-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  color: #4BB4FF;
}
.site-header .main-navigation ul li ul {
  gap: 15px;
  text-align: left;
  display: none;
  position: absolute;
  padding: 1rem 0;
  top: 100%;
  left: 0;
  background-color: #081524;
  min-width: 155px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.site-header .main-navigation ul li ul li {
  display: block;
}
.site-header .main-navigation ul li:hover > ul {
  display: grid;
}
.site-header .main-navigation ul li.menu-item-has-children > a::after {
  content: "▼";
  font-size: 0.9em;
  margin-left: 7px;
}
.site-header .main-navigation ul li.blue-btn {
  padding: 14px 16px;
}
.site-header .main-navigation ul li.current-menu-item:not(.blue-btn) > a,
.site-header .main-navigation ul li.current_page_parent:not(.blue-btn) > a {
  color: #4BB4FF;
}
.site-header .main-navigation ul li.blue-btn:hover a {
  color: #fff;
}
/*--------------------------------------------------------------
## Mobile Menu
--------------------------------------------------------------*/
.menu-toggle {
  display: none;
  position: absolute;
  right: 30px;
  z-index: 11;
  width: 30px;
  cursor: pointer;
}
.menu-toggle span.bar {
  display: block;
  margin-top: 7px;
  height: 2px;
  margin-bottom: 7px;
  z-index: 2;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu-toggle span.bar.top-bar {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.menu-toggle span.bar.middle-bar {
  opacity: 1;
}
.menu-toggle span.bar.bottom-bar {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.menu-toggle.toggled span.bar.top-bar {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 0% 200%;
  -moz-transform-origin: 0% 200%;
  -ms-transform-origin: 0% 200%;
  -o-transform-origin: 0% 200%;
  transform-origin: 0% 200%;
}
.menu-toggle.toggled span.bar.middle-bar {
  opacity: 0;
}
.menu-toggle.toggled span.bar.bottom-bar {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 10%;
  -moz-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  -o-transform-origin: 10% 10%;
  transform-origin: 20% 10%;
}
.overlay {
  position: fixed;
  margin-top: 0 !important;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(0, 0, 0, 0.34);
  z-index: 10002;
  cursor: pointer;
}
nav.mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  z-index: 999;
  background-color: #081524;
}
nav.mobile-navigation .nav-container {
  padding: 0 15px;
  position: fixed;
  width: 80%;
  overflow-y: scroll;
  height: 100%;
  font-size: 15px;
  text-transform: uppercase;
}
nav.mobile-navigation .nav-container ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}
nav.mobile-navigation .nav-container ul li {
  padding: 10px;
}
nav.mobile-navigation .nav-container ul li.current_page_item a {
  font-weight: 700;
}
nav.mobile-navigation .nav-container ul li.blue-btn {
  margin-top: 1rem;
}
nav.mobile-navigation .nav-container ul a {
  display: inline-block;
  padding: 5px 0;
  color: #fff;
  text-decoration: none;
  font-family: 'Manrope-Regular';
}
@media screen and (max-width: 991px) {
  html #wpadminbar {
    position: fixed;
  }
  body {
    position: relative;
    right: 0;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  body.menu-visible {
    right: 80%;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  body.menu-visible #masthead {
    left: -80%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .overlay {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .overlay.toggled {
    width: 20%;
  }
  nav.mobile-navigation {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  nav.mobile-navigation.toggled {
    width: 80%;
  }
  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block;
    top: 0;
    bottom: 0;
    align-self: center;
  }
  .main-navigation ul {
    display: none;
  }
  .site-header {
    left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .site-header.toggled {
    left: -80%;
  }
}
.pre-footer {
  padding: 8rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.pre-footer p {
  color: #fff;
}
.site-footer {
  padding: 4rem 0;
  background-color: #081524;
}
.site-footer .footer-menu {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.site-footer .footer-menu li {
  list-style: none;
}
.site-footer .footer-menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: 'Europa-Bold';
}
.site-footer .footer-menu li .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 10px;
}
.site-footer .footer-menu li .sub-menu a {
  padding: .25rem 0;
}
.site-footer hr {
  border-top: 1px solid #7d7d7d;
}
.site-footer .copyright p {
  font-size: 14px;
  font-family: 'Europa-Regular';
  color: #fff;
}
@media screen and (max-width: 991px) {
  .site-footer {
    padding: 2rem 0;
  }
  .site-footer .footer-menu {
    display: block;
    text-align: center;
  }
  .site-footer .footer-menu li .sub-menu {
    margin-top: -10px;
  }
}
html,
body {
  margin: 0;
  height: 100%;
  width: 100%;
  background-color: #081524;
}
hr {
  opacity: 1;
}
h1,
h2,
h3,
h4 {
  margin-bottom: 1rem !important;
}
p.no-padding-bottom {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
a {
  text-decoration: none;
  color: #4BB4FF;
  font-weight: 700;
}
p {
  font-family: 'Europa-Regular';
  font-size: 16px;
  line-height: 24px;
}
.primary-font {
  font-family: 'Manrope-Regular';
}
.secondary-font {
  font-family: 'Europa-Regular';
}
.secondary-font-bold {
  font-family: 'Europa-Bold';
}
.secondary-font-light {
  font-family: 'Europa-Light';
}
.tertiary-font-regular {
  font-family: 'Calluna-Regular';
}
.tertiary-font-light {
  font-family: 'Calluna-Light';
}
.primary-font-color {
  color: #4BB4FF;
}
.primary-bgcolor {
  background-color: #081524;
}
.dirty-white-bgcolor {
  background-color: #F7F2E8;
}
.white-bgcolor {
  background-color: #FFFCF6;
}
.last-paragraph-mb-0 p:last-of-type {
  margin-bottom: 0 !important;
}
.blue-btn {
  background-color: #3793D4;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  max-width: 200px;
  font-family: 'Europa-Bold';
}
.blue-btn-round {
  background-color: #3793D4;
  text-transform: uppercase;
  border-radius: 25px;
  padding: 14px 50px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Europa-Bold';
}
.schedule-table {
  padding: 6rem 0px;
  background-color: #081524;
}
.schedule-table .sf-copy h2 {
  line-height: 140%;
}
.schedule-table .sf-schedule {
  margin: 0;
}
.schedule-table .sf-schedule__item {
  padding: 2rem 14px 1.5rem;
  border-bottom: 0.5px solid #fff;
}
.schedule-table .sf-schedule__item:first-child {
  border-top: none;
}
.schedule-table .sf-schedule__item .sf-schedule__title {
  color: #fff;
  font-size: 14px;
  font-family: 'Manrope-Regular';
  font-weight: 700;
}
.schedule-table .sf-schedule__item .sf-schedule__date {
  color: #fff;
  font-size: 12px;
  font-family: 'Manrope-Regular';
}
.font-size-24 {
  font-size: 24px;
}
.font-size-28 {
  font-size: 28px;
}
.font-size-32 {
  font-size: 32px;
}
.font-size-36 {
  font-size: 36px;
}
.section-pad {
  padding: 4rem 0;
}
.site-main {
  padding-top: 110px;
}
.title-page {
  padding: 0 0 4rem 0;
}
.title-page h1 {
  color: #fff;
  font-size: 48px;
}
@media (max-width: 768px) {
  .title-page {
    padding: 0;
  }
  .title-page h1 {
    font-size: 36px;
  }
}
.line-height-24 {
  line-height: 24px;
}
/*--------------------------------------------------------------
## Animations/Transitions
--------------------------------------------------------------*/
.default-transition {
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -moz-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -ms-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: all 200ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.slow-transition {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.csp-hero {
  padding: 8rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.csp-hero h1 {
  font-family: 'Manrope-Regular';
  font-weight: 800 !important;
}
.csp-hero p {
  color: #fff;
  font-size: 16px;
  font-family: 'Calluna-Light';
}
.call-for-proposal .hero-ame {
  min-height: 85vh;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.call-for-proposal .hero-ame__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  filter: grayscale(10%);
}
.call-for-proposal .hero-ame__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 400px at 20% 100%, rgba(0, 41, 89, 0.35) 0%, rgba(0, 41, 89, 0) 70%), linear-gradient(90deg, rgba(4, 32, 66, 0.95) 0%, rgba(5, 54, 108, 0.75) 45%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}
.call-for-proposal .hero-ame .container {
  position: relative;
  z-index: 2;
}
.call-for-proposal .hero-ame h1 {
  line-height: 1.15;
}
.call-for-proposal .hero-ame__rule {
  border: 0;
  height: 2px;
  width: 75%;
  background: rgba(255, 255, 255, 0.25);
}
.call-for-proposal .hero-ame__detail {
  color: #dbe6f6;
}
.call-for-proposal .section-one .so-card {
  position: relative;
  border-radius: 20px;
  min-height: 280px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.call-for-proposal .section-one .so-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.call-for-proposal .section-one .so-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(46, 110, 180, 0.8), rgba(15, 97, 186, 0.8));
  z-index: 1;
}
.call-for-proposal .section-one .so-card__content {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem;
}
.call-for-proposal .section-one .so-card__text {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  margin: 0 auto;
}
.call-for-proposal .section-one .so-card:hover .so-card__bg {
  transform: scale(1.05);
}
.call-for-proposal .section-two {
  background-color: #081524;
}
.call-for-proposal .section-two h2 {
  margin-bottom: 1.25rem;
}
.call-for-proposal .section-two .st2-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.call-for-proposal .section-two .st2-copy {
  line-height: 1.7;
  color: #e6edf6;
}
.call-for-proposal .section-two .st2-col {
  color: #d9e3ef;
  line-height: 1.7;
}
.call-for-proposal .section-five {
  background: #2E5FA8;
}
.call-for-proposal .section-five .sf-copy {
  color: #fff;
}
.call-for-proposal .section-five .sf-copy h2,
.call-for-proposal .section-five .sf-copy h3,
.call-for-proposal .section-five .sf-copy h4 {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Manrope-Regular';
}
.call-for-proposal .section-five .accordion {
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-color: #fff;
  --bs-accordion-btn-color: #fff;
  --bs-accordion-border-color: rgba(255, 255, 255, 0.25);
}
.call-for-proposal .section-five .accordion .accordion-button {
  padding: 1.5rem 1rem;
  border-bottom: none;
  color: #fff;
}
.call-for-proposal .section-five .accordion .accordion-button:focus {
  box-shadow: none;
}
.call-for-proposal .section-five .accordion .accordion-button:after {
  filter: brightness(0) invert(1);
}
.call-for-proposal .section-five .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.call-for-proposal .section-five .accordion .accordion-item .accordion-header {
  margin-bottom: 0 !important;
}
.call-for-proposal .section-five .accordion .accordion-item:last-child .accordion-button {
  border-bottom: none;
}
.call-for-proposal .section-five .accordion .accordion-body {
  color: #e8f0ff;
  padding-left: 0;
  padding-right: 0;
}
.call-for-proposal .section-five .accordion hr {
  margin: 0;
}
.programme-page-container {
  background: linear-gradient(180deg, #081524 0%, #163874 35%, #001b4b 100%);
  color: #fff;
}
.programme-page-container .sticky-sidebar {
  top: 150px;
  z-index: 10;
}
.programme-page-container .sticky-sidebar .nav .nav-link {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
}
.programme-page-container .sticky-sidebar .nav .nav-link.active span {
  color: #4BB4FF !important;
}
.programme-page-container .programme-day-block .day-header {
  height: 110px;
  background-color: #333;
  background-size: cover;
  background-position: center;
}
.programme-page-container .programme-day-block .schedule-list .schedule-item {
  background-color: #FFFFFF1A;
  border: 1px solid #FFFFFF33;
  border-radius: 8px;
  font-size: 14px;
}
.programme-page-container .programme-day-block .schedule-list .schedule-item .time-col {
  min-width: 140px;
}
@media (max-width: 768px) {
  .programme-page-container .programme-day-block .day-header {
    height: 150px;
  }
  .programme-page-container .programme-day-block .day-header .day-header-content .day-span {
    font-size: 12px;
  }
  .programme-page-container .programme-day-block .day-header .day-header-content h3 {
    font-size: 16px;
  }
  .programme-page-container .programme-day-block .day-header .day-header-content .right-column {
    display: inline-block;
  }
}
.registration-fee-container {
  background-color: #081524;
  color: #fff;
}
.registration-fee-container .sidebar-title {
  font-family: 'Manrope-Regular';
  font-weight: 700 !important;
  font-size: 36px;
  line-height: 52px;
}
@media (max-width: 768px) {
  .registration-fee-container .sidebar-title {
    font-size: 26px;
  }
}
.registration-fee-container .description h1,
.registration-fee-container .description h2,
.registration-fee-container .description h3,
.registration-fee-container .description h4,
.registration-fee-container .description h5,
.registration-fee-container .description h6 {
  line-height: 30px;
  margin-bottom: 1.5rem !important;
  font-family: 'Manrope-Regular';
}
.registration-fee-container .description p,
.registration-fee-container .description ul {
  margin: 0 1.5rem 1.5rem;
  font-family: 'Manrope-Regular';
  font-size: 14px;
  line-height: 24px;
}
.registration-fee-container .description li {
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .registration-fee-container .description p,
  .registration-fee-container .description ul {
    margin: 0 1rem 1rem;
  }
}
.registration-fee-container .description.outer-content {
  background-color: #FFFFFF1A;
}
.registration-fee-container .section-two .table thead th {
  font-family: 'Manrope-Regular';
  font-size: 14px;
}
.registration-fee-container .section-two .table thead th h1,
.registration-fee-container .section-two .table thead th h2,
.registration-fee-container .section-two .table thead th h3,
.registration-fee-container .section-two .table thead th h4,
.registration-fee-container .section-two .table thead th h5,
.registration-fee-container .section-two .table thead th h6,
.registration-fee-container .section-two .table thead th p {
  margin-bottom: 0 !important;
}
.registration-fee-container .section-two .table thead th h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
.registration-fee-container .section-two .table th,
.registration-fee-container .section-two .table td {
  color: #fff;
  background-color: transparent;
  border-bottom: 1px solid #fff;
}
.registration-fee-container .section-two .table .highlight-col {
  background-color: rgba(255, 255, 255, 0.08) !important;
}
.registration-fee-container .section-one .masonry-grid {
  column-count: 1;
  column-gap: 1rem;
}
.registration-fee-container .section-one .masonry-grid .masonry-item {
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
}
.registration-fee-container .section-one .masonry-grid .masonry-item .card {
  background-color: #FFFFFF1A;
}
.registration-fee-container .section-one .masonry-grid .masonry-item .card p {
  margin: 0 0 0.5rem 0;
}
.registration-fee-container .section-one .masonry-grid .masonry-item .card ul {
  margin: 0 !important;
}
@media (min-width: 768px) {
  .registration-fee-container .section-one .masonry-grid {
    column-count: 2;
  }
}
.registration-fee-container .registration-info {
  background: linear-gradient(180deg, #081524 0%, #163874 35%, #001b4b 100%);
}
.registration-fee-container .registration-info .sticky-sidebar {
  top: 150px;
  z-index: 10;
}
.registration-fee-container .registration-info .sticky-sidebar .nav .nav-link {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
}
.registration-fee-container .registration-info .sticky-sidebar .nav .nav-link.active span {
  color: #4BB4FF !important;
}
.registration-fee-container .registration-info .programme-day-block {
  font-family: 'Manrope-Regular';
}
.registration-fee-container .registration-info .programme-day-block .day-header {
  height: 200px;
  background-color: #333;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .registration-fee-container .registration-info .sticky-sidebar .sidebar-title {
    font-size: 30px;
  }
  .registration-fee-container .registration-info .programme-day-block .day-header {
    height: 150px;
  }
}
.contact-page-container .contact-form {
  background-color: #FFFFFF1A;
  padding: 2.5rem;
  border-radius: 12px;
}
.contact-page-container .contact-form label {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Europa-Bold';
  font-size: 12px;
  margin-bottom: 0.5rem;
}
.contact-page-container .contact-form .wpcf7-text,
.contact-page-container .contact-form .wpcf7-textarea {
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  font-family: 'Manrope-Regular';
  font-size: 14px;
  width: 100%;
}
.contact-page-container .contact-form .wpcf7-text::placeholder,
.contact-page-container .contact-form .wpcf7-textarea::placeholder {
  color: #667085;
}
.contact-page-container .contact-form .wpcf7-text::-moz-placeholder,
.contact-page-container .contact-form .wpcf7-textarea::-moz-placeholder {
  color: #667085;
}
.contact-page-container .contact-form .wpcf7-textarea {
  height: 150px;
}
.contact-page-container .contact-form .blue-btn {
  border: none;
  letter-spacing: 2px;
  min-width: 230px;
}
.contact-page-container .contact-form .wpcf7-spinner {
  background-color: #3793D4;
  position: absolute;
  right: 75px;
  bottom: -30px;
}
@media (max-width: 768px) {
  .contact-page-container .contact-form {
    padding: 1.5rem;
  }
  .contact-page-container .contact-form .blue-btn {
    margin-top: 1rem;
    width: 100%;
    max-width: unset;
  }
}
.contact-page-container .section-faq {
  /* Accordion Item */
}
.contact-page-container .section-faq .accordion-button {
  /* 2. Closed State (Collapsed) */
  /* 3. Open State (Active) */
  /* Focus State */
}
.contact-page-container .section-faq .accordion-button::after {
  filter: invert(1);
  transition: transform 0.3s ease;
  background-size: 1rem;
}
.contact-page-container .section-faq .accordion-button.collapsed::after {
  transform: rotate(0deg) scale(0.8);
}
.contact-page-container .section-faq .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.contact-page-container .section-faq .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg) scale(0.8);
}
.contact-page-container .section-faq .accordion-button:focus {
  box-shadow: none;
}
.contact-page-container .section-faq .accordion-item .accordion-header {
  margin-top: 0.5rem;
}
.contact-page-container .section-faq .accordion-item .accordion-body {
  line-height: 24px;
}
.contact-page-container .section-faq .accordion-item:first-child .accordion-header {
  margin-top: 0;
}
.travel-info-container p {
  font-size: 14px;
  font-family: 'Manrope-Regular';
}
.travel-info-container .hero-ame {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}
.travel-info-container .hero-ame__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
}
.travel-info-container .hero-ame__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #081524 2%, rgba(8, 21, 36, 0) 22%, rgba(8, 21, 36, 0) 78%, #081524 98%);
  z-index: 1;
}
.travel-info-container .section-one .content-with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}
.travel-info-container .section-one .content-with-bg .content {
  z-index: 2;
  width: 40%;
  line-height: 24px;
}
.travel-info-container .section-one .content-with-bg .content p:last-of-type {
  margin-bottom: 0;
}
.travel-info-container .section-one .content-with-bg.overlay-right .overlay {
  z-index: 1;
  background: linear-gradient(270deg, #081524 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 60%);
}
.travel-info-container .section-one .content-with-bg.overlay-right .content {
  right: 4rem;
}
.travel-info-container .section-one .content-with-bg.overlay-left .overlay {
  z-index: 1;
  background: linear-gradient(90deg, #081524 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 60%);
}
.travel-info-container .section-one .content-with-bg.overlay-left .content {
  left: 4rem;
}
@media (max-width: 768px) {
  .travel-info-container .section-one .content-with-bg .content {
    width: 100%;
  }
}
.travel-info-container .section-two {
  background: linear-gradient(to bottom, #081524 5%, rgba(8, 21, 36, 0) 40%), /* Bottom gradient */ linear-gradient(to top, #081524 0%, rgba(8, 21, 36, 0) 40%), /* Middle solid color */ #163874;
}
.travel-info-container .section-two #cardCarouselTwo {
  /* Custom Nav Positioning */
}
.travel-info-container .section-two #cardCarouselTwo .card {
  background-color: #FFFFFF1A;
}
.travel-info-container .section-two #cardCarouselTwo .card .card-img-top {
  height: 250px;
  overflow: hidden;
}
.travel-info-container .section-two #cardCarouselTwo .card .card-body .card-text {
  line-height: 24px;
}
.travel-info-container .section-two #cardCarouselTwo .card .card-body .blue-btn {
  letter-spacing: 1px;
  border-radius: 8px;
}
.travel-info-container .section-two #cardCarouselTwo .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.travel-info-container .section-two #cardCarouselTwo .owl-prev,
.travel-info-container .section-two #cardCarouselTwo .owl-next {
  pointer-events: auto;
  background: none !important;
}
.travel-info-container .section-two #cardCarouselTwo .owl-prev {
  margin-left: -60px;
}
.travel-info-container .section-two #cardCarouselTwo .owl-next {
  margin-right: -60px;
}
@media (max-width: 768px) {
  .travel-info-container .section-two #cardCarouselTwo .owl-nav {
    display: none;
  }
}
.travel-info-container .section-four {
  background: linear-gradient(0deg, #163874 0%, #081524 100%);
}
.travel-info-container .section-four .card {
  background-color: transparent;
}
.travel-info-container .section-four .card .card-body .card-text {
  line-height: 24px;
}
.travel-info-container .section-five {
  background: linear-gradient(180deg, #163874 0%, #081524 100%);
}
.speakers-page .section-speakers {
  background: linear-gradient(to bottom, #081524 0%, rgba(8, 21, 36, 0) 40%), /* Bottom gradient */ linear-gradient(to top, #081524 0%, rgba(8, 21, 36, 0) 40%), /* Middle solid color */ #163874;
}
.speakers-page .section-speakers .speaker-card .image-container {
  box-shadow: 1px 2px 15px 5px #2E6EB499;
}
.speakers-page .section-speakers .speaker-card .image-container .speaker-img {
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
  -webkit-filter: grayscale(100%);
}
.speakers-page .section-speakers .speaker-card:hover .speaker-img {
  filter: grayscale(0%);
  /* Hover: True Color */
  -webkit-filter: grayscale(0%);
  transform: scale(1.03);
}
.speakers-page .section-policy .sidebar-title {
  font-family: 'Manrope-Regular';
  font-weight: 700 !important;
  font-size: 36px;
  line-height: 52px;
}
.speakers-page .section-policy .intro-content p,
.speakers-page .section-policy .outro-content p {
  font-family: 'Manrope-Regular';
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .speakers-page .section-policy .speakers-list .speaker-item {
    flex-direction: unset !important;
  }
}
.single-speaker-container {
  background: linear-gradient(0deg, #081524 0%, #163874 35%, #001b4b 100%);
}
.single-speaker-container .speaker-image-wrapper {
  max-width: 450px;
}
.single-speaker-container .speaker-bio p {
  font-family: 'Calluna-Regular';
}
@media (max-width: 768px) {
  .single-speaker-container .blue-btn-round {
    width: 100%;
  }
}
.home-page .hero-section .video-container video {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.home-page .hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 38, 89, 0.85) 0%, rgba(0, 61, 139, 0.55) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.home-page .hero-section .hero-content-section {
  position: absolute;
  width: 100%;
}
.home-page .hero-section .hero-content-section p {
  color: #fff;
  font-size: 20px;
  font-family: 'Europa-Light';
}
.home-page .hero-section .hero-content-section p strong {
  font-weight: 400 !important;
  font-family: 'Europa-Bold';
}
.home-page .hero-section .hero-content-section h2 {
  font-family: 'Manrope-Regular';
  font-weight: 700;
}
.home-page .hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.home-page .section-one .heading h3 {
  font-size: 24px;
  color: #4BB4FF;
  font-family: 'Europa-Bold';
}
.home-page .section-one .heading hr {
  border-top: 1px solid #A1A1A1;
}
.home-page .section-one .content h2,
.home-page .section-one .content h3 {
  font-family: 'Manrope-Regular';
}
.home-page .section-one .content p {
  font-family: 'Europa-Regular';
}
.home-page .section-two .video-container video {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.home-page .section-two .section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.home-page .section-two .content-section {
  position: absolute;
  width: 100%;
}
.home-page .section-two .content-section .section-content {
  position: relative;
  z-index: 2;
}
.home-page .section-three {
  min-height: 60vh;
  overflow: hidden;
  position: relative;
  color: #fff;
}
.home-page .section-three .carousel,
.home-page .section-three .carousel-inner,
.home-page .section-three .carousel-item {
  height: 100%;
}
.home-page .section-three .carousel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.home-page .section-three .section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}
.home-page .section-three .section-content {
  position: relative;
  z-index: 2;
}
.home-page .section-four .sf-card {
  min-height: 600px;
  background: #000;
  /* rounded corners for bg/overlay too */
}
.home-page .section-four .sf-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  /* subtle crop */
}
.home-page .section-four .sf-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0) 100%);
  /* soft vignette on sides */
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.home-page .section-four .sf-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
}
.home-page .section-four .sf-card__intro {
  font-family: 'Calluna-Regular';
  font-style: italic;
}
.home-page .section-four .sf-card__title {
  font-family: 'Manrope-Regular';
  font-weight: 700;
  line-height: 1.2;
}
.home-page .section-four .sf-card__text {
  font-family: 'Calluna-Light';
  font-size: 14px;
}
.home-page .section-four .sf-card,
.home-page .section-four .sf-card__bg,
.home-page .section-four .sf-card__overlay {
  border-radius: 1rem;
}
@media (max-width: 575.98px) {
  .home-page .section-four .sf-card {
    min-height: 520px;
  }
}
