/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Source Sans 3",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Source Sans 3",  sans-serif;
  --nav-font: "Source Sans 3",  sans-serif;

  --body-font-size:18px;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  /*--default-color: #444444;*/ /* Default color used for the majority of the text content across the entire website */
  --default-color: #1d1d1f;
  --heading-color: #0b2341; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2cb4d7; /* 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. */

  --color-white: #ffffff;
  --color-blue: #063e97;
  --color-dark-blue: #26336a;
  --color-cyan: #2cb4d7;
  --color-black: #000000;
  --color-green: #6bbfa3;
  --color-sky-blue: #a3c4e9;
  --color-red: #ea504c;
  --color-light-grey: #e5e5e5;
  --color-yellow: #ffdd4e;
  --color-green-alt: #90ba1e;
}

/* 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: #26336a;  /* The default color of the main navmenu links */
  --nav-hover-color: #2cb4d7; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ed502e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


/*button colors*/
.btn-primary {
  background-color: var(--color-blue);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--color-cyan)!important;
}
.btn-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.btn-blue:hover {
  background-color: var(--color-cyan);
}
.btn-medium-blue {
  background-color: var(--color-cyan);
  color: var(--color-white);
}
.btn-medium-blue:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.btn-cyan {
  color:var(--color-dark-blue);
  background-color: var(--color-cyan);
}
.btn-cyan:hover, .btn-primary.cyan-background:hover {
  color:var(--color-white)!important;
  background-color: var(--color-dark-blue)!important;
}
.btn-red {
  background-color: var(--color-red);
  color: var(--color-white);
}
.btn-red:hover {
  color:var(--color-white);
  background-color: var(--color-cyan);
}
.btn-white {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.btn-white:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}




/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.white-background {
  background-color: #ffffff;
}

.light-background {
  background-color: #f7f9fd;
}

.light-grey-background {
  background-color: #e5e5e5;
}

.yellow-background {
  background-color: #ffdd4e;
}

.red-background {
  background-color: #ea504c;
}

.green-background {
  background-color: #90ba1e;
}

.sage-green-background {
  background-color: #6bbfa3;
}

.sky-blue-background {
  background-color: #a3c4e9;
}

.cyan-background {
  background-color: #2cb4d7;
}

.blue-background {
  background-color: #063e97;
  color:var(--color-white)!important;
}

.dark-blue-background {
  background-color: #26336a;
  color:var(--color-white)!important;
}

.dark-background {
  background-color: #060606;
  color:var(--color-white)!important;
}

.black-background {
  background-color: #000000;
  color:var(--color-white)!important;
}

.text-inverse,
.text-inverse h1, .text-inverse h1 a, .text-inverse h2, .text-inverse h2 a, .text-inverse h3, .text-inverse h3 a, .text-inverse h4, .text-inverse h4 a, .text-inverse h5, .text-inverse h5 a,
.text-inverse .text-component,
.blue-background .text-component, .dark-blue-background .text-component, .dark-background .text-component, .black-background .text-component {
  color:var(--color-white)!important;
}

.text-blue {
  color:var(--color-blue);
}
.text-white {
  color:var(--color-white);
}

.border-sky-blue {
  border-color:var(--color-sky-blue);
}

.border-thin {
  border-size:1px;
  border-style:solid;
}


/* Carousel Controls Color */
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
  color: var(--color-dark-blue);
}
.text-white i.bi::before {
  color: var(--background-color);
}
.text-red .bi::before {
  color: var(--color-red);
}

/* 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);
  font-size:var(--body-font-size);
}

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 {
  font-family: var(--heading-font);
}

h1, h1 a, h5, h5 a, h6, h6 a {
  color: var(--color-blue);
}
h2, h2 a, h3, h3 a, h4, h4 a {
  color: var(--color-black);
}

h1, h2, h4, h5 {
  font-weight:700;
}
h3 {
  font-weight:300;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom:1rem;
}

.img-12 {
    width:100%;
    max-width:100%;
}
.img-6 {
    width:50%;
    max-width:50%;
}
.img-3 {
    width:25%;
    max-width:25%;
}

.object-cover {
  object-fit:cover;
}
.img-cover img {
  width:100%;
  height:100%;
}

.text-p-big .text-component, .text-p-big.text-component {
  padding:48px;
}
.text-flex-p-big {
  padding-left:48px!important;
  padding-right:48px!important;
}

.section-title .link-more {
  text-transform: none;
  line-height: 1;
  position:absolute;
  top:24px;
  right:12px;
}
.section-title .link-more a span {
  padding-bottom:2px;
  border:1px solid #fff;
  transition: 0.3s;
}
.section-title .link-more a {
  color:var(--heading-color);
}
.section-title .link-more a:hover span {
  border-bottom:1px solid #0b2341;
  transition: 0.3s;
}
.section-title .link-more i {
  color:var(--heading-color);
  padding-left:6px;
}

.border-red {
  border-color:var(--color-red);
}
.bw-2 {
  border-width: 2px;
  border-style: solid;
}
.blw-0 {
  border-left-width: 0;
}
.brw-0 {
  border-right-width: 0;
}

.btw-0 {
  border-top-width: 0!important;
}
.brw-0 {
  border-right-width: 0!important;
}
.bbw-0 {
  border-bottom-width: 0!important;
}
.blw-0 {
  border-left-width: 0!important;
}
.btlr-1, .btlr-2, .btrr-1, .btrr-2,
.bblr-1, .bblr-2, .bbrr-1, .bbrr-2 {
  border-style: solid;
}
.btlr-1 {
  border-top-left-radius:6px;
}
.btrr-1 {
  border-top-right-radius:6px;
}
.bblr-1 {
  border-bottom-left-radius:6px;
}
.bbrr-1 {
  border-bottom-right-radius:6px;
}

.btlr-2 {
  border-top-left-radius:12px;
}
.btrr-2 {
  border-top-right-radius:12px;
}
.bblr-2 {
  border-bottom-left-radius:12px;
}
.bbrr-2 {
  border-bottom-right-radius:12px;
}

.btlr-3 {
  border-top-left-radius:24px;
}
.btrr-3 {
  border-top-right-radius:24px;
}
.bblr-3 {
  border-bottom-left-radius:24px;
}
.bbrr-3 {
  border-bottom-right-radius:24px;
}


.text-red {
  color: var(--color-red);
}

.col-center-item-50, .col-center-item-35, .col-center-item-25 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.col-center-item-50 {
  width: 50%;
}

.col-center-item-35 {
  width: 35%;
}

.col-center-item-25 {
  width: 25%;
}

.teaser-image {

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.w-33 {
  width: calc(100% / 3) !important;
}

a[href=""] {
  pointer-events: none;
}

.ftco-button::before {
  content: none !important;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 16px 0 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height:36px;
  max-height: 36px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .header .logo img {
    max-width:200px;
    max-height: 32px;
    margin-right: 6px;
  }
}

.header .logo h1 {
  font-size: 26px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}
.header .btn-custom,
.header .btn-custom:focus {
  color: var(--contrast-color);
  background: transparent;
  font-size: 14px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}
.header .btn-custom span,
.header .btn-custom:focus span {
  display:inline-block;
  padding: 8px 25px;
}

.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: 1199px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */

@media (min-width: 1200px) {
  .logo {
    transition: 0.3s ease;
  }
  .secondary-navmenu {
    margin-left:auto;
    justify-content: flex-end;
  }
  .navmenu {
    padding: 0;
    width:100%;
    display: flex;
    flex-direction:row;
  }

  .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);
    padding: 18px 16px;
    font-size: 16px;
    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 li:hover {
    cursor: pointer; /* temp fix */
  }
  .navmenu .nav-submenu:hover {
    cursor: default; /* temp fix */
  }

  .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;
  }
}

/* scrolled: reduce header height */
.nav-small {
  padding-top:0;
  transition:padding .2s;
}
.nav-small .navmenu ul {
  padding-top:0;
  padding-bottom:0;
  transition:padding .2s;
}
.navmenu ul {
  transition:padding .2s;
}

/* Submenu */

.navmenu {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #d4d2d3;
  position: relative;
  background: white;
  z-index: 1;
}

.navmenu > ul {
  list-style: none;
  display: flex;
  /*gap: 2rem;*/
  margin: 0;
  padding: 1rem;
}

.navmenu > ul > li {
  position: static;
}
.nav-submenu {
  visibility:hidden;
  opacity:0;
  transition:.3s;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: none;
  border-bottom: 2px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  z-index: 2;
}

.submenu-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  /*gap: 2rem;*/
  padding: 0 1rem;
}
.submenu-intro {
    width:348px;
    padding-top:12px;
    padding-right:64px;
}
.submenu-intro-description {
    font-size:16px;
    margin-top:16px;
}
.submenu-sublinks {
    display:flex;
    gap:32px;
    flex:auto;
}
.submenu-column {
    flex:1;
}
.submenu-column .submenu {
    display:block;
    -moz-columns: 1;
    columns:1;
    -moz-column-width:200px;
    column-width:200px;
}
.submenu-sublinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu-sublinks li {
  margin-bottom: 0.5rem;
}
.submenu-column .submenu a {
    padding:12px 16px;
}
.navmenu li:focus-within .nav-submenu {
/*  display: block;*/ /* temp: disabled*/
}
.navmenu .submenu li:last-child a {
    padding-right: 16px;
}

/* 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: 14px;
    margin-right: 0;
    z-index: 999;
  }

  .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;
  }
}

/* Masonry Menu */
.masonry-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 100%;
  margin: auto;
  height: 300px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.menu-item {
  display: flex;
  align-items: flex-end;
  /*justify-content: flex-start;*/
  justify-content: space-between;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.menu-item .item-title {
  color: var(--color-black);
  background-color: var(--color-white);
  padding:8px 16px;
  border-radius:4px;
}

.menu-item .item-content {
  position:relative;
  z-index:1;
}
.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover!important;
  background-position: center!important;
  transition: transform .4s ease;
  z-index: 0;
}
.menu-item:hover::before {
  transform: scale(1.05);
}

.full { flex: 1; }
.one-third { flex: 1; }
.two-thirds { flex: 2; }

/* Mobile: stack with equal height */
@media (max-width: 768px) {
  .masonry-menu {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .column {
    height: auto;
  }

  .menu-item {
    height: 150px !important;
    flex: none !important;
  }
}

/* Hide desktop masonry on mobile */
@media (max-width: 768px) {
  .masonry-menu {
    /*display: none;*/
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    background-color: var(--color-blue);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
    background-color: #f8f9fa;
  }

  .mobile-menu li {
    padding: 1rem;
    border-top: 1px solid #ddd;
  }

  .mobile-menu li:hover {
    background-color: #e9ecef;
  }
}

/* Desktop: hide mobile dropdown */
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* masonry frontpager */
.item-annual-meeting::before {
  background:url('/assets/img/menues/tmp_registration.jpg');
}
.item-career-development::before {
  background:url('/assets/img/menues/tmp_programme.jpg');
}
.item-education::before {
  background:url('/assets/img/menues/tmp_venue-travel.jpg');
}
.item-membership::before {
  background:url('/assets/img/menues/tmp_media-resources.jpg');
}
.item-media-centre::before {
  background:url('/assets/img/menues/tmp_industry.jpg');
}
.item-awards::before {
  background:url('/assets/img/menues/tmp_abstract-submission.jpg');
}
.item-guidelines-statements::before {
  background:url('/assets/img/menues/tmp_certification.jpg');
}

/* masonry annual meeting */
.item-registration::before {
  background:url('/assets/img/menues/tmp_registration.jpg');
}
.item-programme::before {
  background:url('/assets/img/menues/tmp_programme.jpg');
}
.item-venue-travel::before {
  background:url('/assets/img/menues/tmp_venue-travel.jpg');
}
.item-media-resources::before {
  background:url('/assets/img/menues/tmp_media-resources.jpg');
}
.item-industry::before {
  background:url('/assets/img/menues/tmp_industry.jpg');
}
.item-abstract-submission::before {
  background:url('/assets/img/menues/tmp_abstract-submission.jpg');
}
.item-certification::before {
  background:url('/assets/img/menues/tmp_certification.jpg');
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--color-dark-blue);
  font-size: 14px;
  position: relative;
}
.footer.dark-background {
  color: var(--background-color);;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.footer.dark-background .footer-about .logo span {
  /*color: var(--accent-color);*/
  color:#fff;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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(--color-white), transparent 50%);
  font-size: 16px;
  /*color: color-mix(in srgb, var(--default-color), transparent 30%);*/
  color:var(--color-white);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links .bluesky svg {
  fill:var(--color-white);
  height:20px;
}

.footer .bi::before, .footer [class^="bi-"]::before, .footer [class*=" bi-"]::before {
  color:#fff;
  line-height:0.8;
  padding-top:6px;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color:#fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer.dark-background .footer-links ul a {
  color: color-mix(in srgb, var(--background-color), transparent 30%);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--color-light-grey);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--color-light-grey);
  color: var(--background-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 5px;
  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 .bi::before, .scroll-top [class^="bi-"]::before, .scroll-top [class*=" bi-"]::before {
  color: var(--contrast-color);
}

.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;
}

/*--------------------------------------------------------------
# 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;
}

.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 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.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%);
}

.nav-breadcrumb {
  /*margin-bottom: -4em;*/
  font-size: 14px;
  padding: 12px;
  border-bottom: 1px solid #d4d2d3;
}
@media (max-width: 1199px) {
  .nav-breadcrumb {
    border-top: 1px solid #d4d2d3;
  }
}
.nav-breadcrumb a {
  color: var(--color-cyan);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /*background-color: var(--background-color);*/
  padding: 60px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

section section,
section .section
{
  padding: 10px 0;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 63px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  /*padding-bottom: 60px;*/
  padding-bottom: 24px;
  position: relative;
}
.section-title > div {
  display: inline-block
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Background
--------------------------------------------------------------*/
.page-19 {
  /*background-color:#f5f5f5!important;
  background:url('../img/easd-logo-icon-50_v6.png');
  background-attachment:fixed;
  background-repeat:no-repeat;*/
}
.page-49 {
  /*background-color:#f5f5f5!important;*/
}
.easd-sustainability-background {
  background:url('../img/easd-sustainability-full_web.jpg');
  background-attachment:fixed;
  background-repeat:no-repeat;
}
.easd-sustainability-background .text-component {
  background-color:var(--color-white);
  padding:30px 60px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  max-width:1320px;
  min-height: 40vh;
  /*min-height: 36vh;*/
  padding: 0;
  margin: 0 auto;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}
.hero .carousel-item.no-bg::before {
  background-color: transparent;
}

.hero .carousel-container {
  position: absolute;
  inset: 10% 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 5;
}

.hero .carousel-spacer {
  display:inline-block;
  margin-left:100px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
  /*.hero h2,
  .hero p {
    max-width: 70%;
  }*/
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--color-dark-blue);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}
.hero .btn-custom span,
.hero .btn-custom:focus span {
  display:inline-block;
  padding: 8px 25px;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--color-blue), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
  background-color: rgba(240,240,255,0.95);
  border-radius: 30px;
  height: 48px;
  width: 48px;
  margin: 5px;
  top:43%;
}
.hero .carousel-control-prev {
  left:12px;
}
.hero .carousel-control-next {
  right:12px;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}*/

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

.hero .carousel-indicators [data-bs-target] {
  background-color: var(--color-blue);
}

.hero .carousel-control-prev-icon.bi-chevron-left::before {
  margin-left: -3px;
}
.hero .carousel-control-next-icon.bi-chevron-right::before {
  margin-left: 3px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Announcement Section
--------------------------------------------------------------*/
.announcement.section {
  padding:0;
  margin-bottom:60px;
}
.announcement .container {
  position:absolute;
  height:60px;
  z-index:2;
  left:0;
  right:0;
  margin-top:-30px;
}
.announcement .bg-white {
  background-color: var(--background-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

.annual-meeting {
  background:url(../img/about/annual-meeting.jpg);
  background-position: bottom center;
}
.career-development {
  background:url(../img/about/career-development.jpg);
  background-position: bottom center;
}
.education {
  background:url(../img/about/education.jpg);
  background-position: bottom center;
}
.membership {
  background:url(../img/about/membership.jpg);
  background-position: bottom center;
}
.media-centre {
  background:url(../img/about/media-centre.jpg);
  background-position: bottom center;
}
.awards {
  background:url(../img/about/awards.jpg);
  background-position: bottom center;
}
.guidelines-statements {
  background:url(../img/about/guidelines.jpg);
  background-position: bottom center;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features h3 {
  font-size: 20px;
  font-weight: 700;
}

.features p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.news .news-item {
  /*background-color: var(--surface-color);*/
  background-color:#e5e5e5;
  /*text-align: center;*/
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.news .news-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.news .news-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.news .news-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.news .news-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.news .news-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.news .news-item:hover {
  /*background: var(--surface-color);*/
  border-color: var(--surface-color);
}

.news .news-item:hover .icon {
  background: var(--surface-color);
}

.news .news-item:hover .icon i {
  color: var(--accent-color);
}

.news .news-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.news .news-item:hover h3,
.news .news-item:hover p {
  /*color: var(--contrast-color);*/
}

.news-category {
  color:var(--color-blue);
}

.news-item {
  overflow:hidden;
}
.news-image {
  height:240px;
  max-height:240px;
  overflow:hidden;
}
@media (max-width: 1080px) {
  .news-image {
    height:auto;
  }
}

.news-image img {
  vertical-align: middle;
  transition: 0.3s;
  max-width: 115%;
}
.news-item:hover .news-image img {
  transform:scale(1.1);
  transition: 0.3s;
}
.img-v1 {
  background:url(../img/about/annual-meeting.jpg);
  background-position: bottom center;
}
.img-v2 {
  background:url(../img/about/career-development.jpg);
  background-position: bottom center;
}
.img-v3 {
  background:url(../img/about/education.jpg);
  background-position: bottom center;
}
.img-v4 {
  background:url(../img/misc/EASD_Teaser_Images_Foundation_800x450.jpg);
  background-position: center center;
}

/*--------------------------------------------------------------
# Custom Module Section
--------------------------------------------------------------*/
.custom .custom-module-wrap {
  /*padding-left: 50px;*/
}

.custom .custom-carousel,
.custom .custom-slider {
  overflow: hidden;
}

.custom .custom-module-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  /*margin: 30px 15px;*/
  min-height: 200px;
  position: relative;
}

.custom-module-item img {
  max-width:100%;
}

.custom .custom-module-item .custom-module-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  /*position: absolute;
  left: -45px;*/
}

.custom .custom-module-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.custom .custom-module-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.custom .custom-module-item .stars {
  margin: 10px 0;
}

.custom .custom-module-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.custom .custom-module-item .quote-icon-left,
.custom .custom-module-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.custom .custom-module-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.custom .custom-module-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.custom .custom-module-item p {

  margin: 15px auto 15px auto;
}

.custom .swiper-wrapper {
  height: auto;
}

.custom .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.custom .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--color-cyan);
}

.custom .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-cyan);
}

.swiper-nav-wrapper, .swiper-nav {
  display:inline-block;
}
.swiper-nav-wrapper {
  position:absolute;
  right:0;
  top:16px;
}
.swiper-nav {
  padding:6px;
}

@media (max-width: 767px) {
  .custom .custom-module-wrap {
    padding-left: 0;
  }

  .custom .custom-carousel,
  .custom .custom-slider {
    overflow: hidden;
  }

  .custom .custom-module-item {
    padding: 30px;
    margin: 15px;
  }

  .custom .custom-module-item .custom-module-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  /*padding: 0px 0;*/
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  /*position: fixed;*/
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  /*content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;*/
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-blue);

}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
  min-width: 100%;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 22px;
  font-weight: 600;
  /*padding-right: 50px;*/
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  /*color: color-mix(in srgb, var(--default-color), transparent 30%);*/
  font-size: 16px;
  margin-bottom: 0;
  /*padding-right: 50px;*/
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.05);
}

.portfolio .portfolio-category {
  font-size: 17px;
  color: var(--default-color);
  display: inline-block;
  margin-bottom: 4px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  --default-color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: var(--default-color);
  margin-top: 15px;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# News Details Section
--------------------------------------------------------------*/
/*.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .share-box {
  margin-top: 30px;
  padding: 30px 15px;
}
.share-box .bi::before, .share-box [class^="bi-"]::before, .share-box [class*=" bi-"]::before {
  color:#000;
}
.share-box h5 {
  font-size:16px;
  color:#000;
  font-weight:400;
}
.share-box .social-links a {
  margin:0 8px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}*/

.news-heading {
  padding: 80px 0 40px;
}

.news-details .services-img {
  margin-bottom: 20px;
}

.news-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.news-details p {
  font-size: 16px;
}

.news-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.news-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.news-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  width: 25%;
  background-size: 100% 100% !important;
  border:1px #ddd solid;
  position: relative;
}
.gallery:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: rgba( 6, 62, 151, 0.15);
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .gallery {
    width: 100%; }
  }
  .gallery.img {
    display: block;
    height: 220px;
  }
  .gallery .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .gallery .icon span {
    color: #063e97; }
  .gallery:hover .icon {
    opacity: 1;
  }
  .gallery:hover:after {
    opacity: 0;
  }

/*--------------------------------------------------------------
# Custom Styles
--------------------------------------------------------------*/
.p-6 {
  padding: 4rem!important;
}
.pb-6 {
  padding-bottom: 4rem!important;
}
.mt-6 {
  margin-top: 4rem!important;
}
.mb-6 {
  margin-bottom: 4rem!important;
}
.my-6 {
  margin: 4rem 0!important;
}

.br-1 {
  border-radius: 4px;
}
.br-2 {
  border-radius: 8px;
}
.br-3,
.mission-box.br-3 .text-component {
  border-radius: 12px;
}
.br-4 {
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .w-lg-75 {
    width:75%!important;
  }
}

@media (max-width: 1199px) {
  #header .container-fluid {
    display:flex;
  }

  #header .secondary{
    order:2;
  }
  #header .secondary .btn {
    width:90px;
  }

}

main > section:first-child
{
  padding-top: 0px;
}


/* PCEs */

.text-box p {
  margin-bottom:0;
}

.ftco-text-image img {
  max-width:100%;
}

.membership-box {
  padding:60px 72px!important;
  line-height:2;
  border-radius:8px;
}
.membership-box h3 {
  font-size:2rem;
  line-height:1.3;
}

/* Details Disclosure */
.details_disclosure {
  font-size:20px;
}

.details_disc{
  display: none;
  padding: 1em;
  background-color: #f6f7f8;
}

.pce_dd_style_2{
  width: 100%;
  border-radius: 2px;
  padding:0.5rem !important;
}

/* Person */
.ftco-person {
  font-size:16px;
  min-height:225px;
}
.ftco-person .person-image,
.custom-modal .person-image {
    width:120px;
    height:120px;
    border:4px solid #26336a;
    border-radius:50%;
    background-position:center center;
    background-size:125%;
}
.ftco-person.person-management .person-image {
    width:140px;
    height:140px;
    background-size: 123%;
}

.person-image-zoom-out {
  background-size: 100% !important;
}

@media (min-width: 768px) {
  .ftco-person.ms-person-custom-l.person-management {
    margin-left:16%;
  }
  .ftco-person.ms-person-custom-r.person-management {
    margin-left:-16%;
  }
}

/* floating sidebar */
.floating-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  border-radius: 8px 0 0 8px;
  opacity: 0.7;
  transition: background 0.3s, opacity 0.3s;
}

.floating-sidebar .share-btn {
  text-decoration: none;
  font-size: 20px;
  padding: 8px;
}

.floating-sidebar:hover {
  opacity:1;
  transition: background 0.3s, opacity 0.3s;
}

.floating-sidebar .share-btn.bluesky svg {
  fill:var(--color-dark-blue);
}
/* hide on mobile */
@media (max-width: 991px) {
  .floating-sidebar {
    display:none;
  }
}

/* mobile floating bar */
/* hide on desktop */
@media (min-width: 992px) {
  .mobile-floating-bar {
    display:none;
  }
}
@media (max-width: 991px) {
  .mobile-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid #ddd;
    z-index: 999;
    font-family: sans-serif;
  }

  .follow-toggle {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: white;
    border: none;
    border-top: 1px solid #eee;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .open .follow-toggle {
    transform:translateX(-40%);
    transition: transform 0.3s ease;
  }
  .follow-toggle .icon.bi-arrow-up-right-circle, .open .follow-toggle .bi-x-circle {
    padding-left: 12px;
  }
  .open .follow-toggle .icon.bi-arrow-up-right-circle {
    display: none;
  }
  .follow-toggle .bi-x-circle {
    display:none;
  }
  .open .follow-toggle .bi-x-circle {
    display: inline-block;
  }

  .follow-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
  }

  .mobile-floating-bar.open .follow-panel {
    max-height: 500px;
    border-top: 1px solid #ddd;
  }

  .follow-link {
    padding: 12px;
    padding-left: 36px;
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .follow-link:hover {
    background: #f9f9f9;
  }

  .follow-link.bluesky svg {
    fill:var(--color-dark-blue);
    height:20px;
  }

  .follow-icon {
    display: inline-block;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .open .follow-toggle {
    transform:translateX(-36%);
  }
}


/* sticky sidebar */
.sticky-sidebar-container {
  position: relative;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

.sticky-object {
  width: 1px;
  float: right;
  transform: translateX(-50px);
  position: sticky;
  top: 140px;
  z-index: 78;
  margin-top: 0;
  padding-right: 0;
}
.share-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.share-bar-outer, .share-icons-icon-container {
  margin-bottom:8px;
}
.share-bar-panel {
  flex: none;
  overflow: hidden;
  padding: 3px;
}
.share-bar-share-icons {
  display: flex;
  visibility: visible;
  transform: translate(0, 0);
  align-items: center;
  flex-direction: column;
}

/* Vertical timeline */
:root {
    --cd-color-1:#303f4a;
    --cd-color-2:#d8e5ee;
    --cd-color-3:#818d98;
    --cd-color-4:#75cd65;
    --cd-color-5:#bf3b44;
    --cd-color-6:#f0cb47;
}

.cd-timeline {
    overflow: hidden;
    padding: 2em 0;
    color: var(--color-black);
    background-color:#e5e5e5;
}

.cd-timeline__container {
    position: relative;
    padding: 1.25em 0;
}
.cd-timeline__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background:#a3c4e9;;
}

@media (min-width: 64rem) {
    .cd-timeline__container::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.cd-timeline__block {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
    margin-bottom: 2em;
    margin-bottom: 50px
}
.cd-timeline__block:last-child {
    margin-bottom: 0
}

@media (min-width: 64rem) {
    .cd-timeline__block:nth-child(even) {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

.cd-timeline__img {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--color-white), inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}

.cd-timeline__img img {
    width: 24px;
    height: 24px;
}

@media (min-width: 64rem) {
    .cd-timeline__img {
        width: 60px;
        height: 60px;
        -ms-flex-order: 1;
        order: 1;
        margin-left: calc(7% - 30px);
        will-change: transform;
    }

    .cd-timeline__block:nth-child(even) .cd-timeline__img {
        margin-right: calc(7% - 30px);
    }
}

.cd-timeline__img--picture {
    background-color:#75cd65;
}

.cd-timeline__img--movie {
    background-color:#6bbfa3;
}

.cd-timeline__img--location {
    background-color:#26336a;
}

.cd-timeline__content {
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
    margin-left: 1.25em;
    background: var(--color-white);
    border-radius: 0.25em;
    padding: 1.25em;
    box-shadow: 0 3px 0 var(--cd-color-2);
}

.cd-timeline__content::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 100%;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-right-color: var(--color-white);
}

@media (min-width: 64rem) {
    .cd-timeline__content {
        width: 45%;
        -ms-flex-positive: 0;
        flex-grow: 0;
        will-change: transform;
        margin: 0;
        font-size: 1em;
        --line-height-multiplier: 1.2;
    }

    .cd-timeline__content::before {
        top: 24px;
    }
    .cd-timeline__block:nth-child(odd) .cd-timeline__content::before {
        right: auto;
        left: 100%;
        width: 0;
        height: 0;
        border: 7px solid transparent;
        border-left-color: var(--color-white);
    }
}


@media (min-width: 64rem) {
    .cd-timeline__date {
        position: absolute;
        width: 100%;
        left: 120%;
        top: 20px;
    }
    .cd-timeline__block:nth-child(even) .cd-timeline__date {
        left: auto;
        right: 120%;
        text-align: right;
    }
}

@media (min-width: 64rem) {
    .cd-timeline__img--hidden,
    .cd-timeline__content--hidden {
        visibility: hidden
    }
    .cd-timeline__img--bounce-in {
        -webkit-animation: cd-bounce-1 0.6s;
        animation: cd-bounce-1 0.6s
    }
    .cd-timeline__content--bounce-in {
        -webkit-animation: cd-bounce-2 0.6s;
        animation: cd-bounce-2 0.6s
    }
    .cd-timeline__block:nth-child(even) .cd-timeline__content--bounce-in {
        -webkit-animation-name: cd-bounce-2-inverse;
        animation-name: cd-bounce-2-inverse
    }
}

@-webkit-keyframes cd-bounce-1 {
    0% {opacity: 0; -webkit-transform: scale(0.5); transform: scale(0.5) }
    60% {opacity: 1; -webkit-transform: scale(1.2); transform: scale(1.2) }
    100% {-webkit-transform: scale(1); transform: scale(1) }
}
@keyframes cd-bounce-1 {
    0% {opacity: 0; -webkit-transform: scale(0.5); transform: scale(0.5) }
    60% {opacity: 1; -webkit-transform: scale(1.2); transform: scale(1.2) }
    100% {-webkit-transform: scale(1); transform: scale(1) }
}
@-webkit-keyframes cd-bounce-2 {
    0% {opacity: 0; -webkit-transform: translateX(-100px); transform: translateX(-100px) }
    60% {opacity: 1; -webkit-transform: translateX(20px); transform: translateX(20px) }
    100% {-webkit-transform: translateX(0); transform: translateX(0) }
}
@keyframes cd-bounce-2 {
    0% {opacity: 0; -webkit-transform: translateX(-100px); transform: translateX(-100px) }
    60% {opacity: 1; -webkit-transform: translateX(20px); transform: translateX(20px) }
    100% {-webkit-transform: translateX(0); transform: translateX(0) }
}
@-webkit-keyframes cd-bounce-2-inverse {
    0% {opacity: 0; -webkit-transform: translateX(100px); transform: translateX(100px) }
    60% {opacity: 1; -webkit-transform: translateX(-20px); transform: translateX(-20px) }
    100% {-webkit-transform: translateX(0); transform: translateX(0) }
}
@keyframes cd-bounce-2-inverse {
    0% {opacity: 0; -webkit-transform: translateX(100px); transform: translateX(100px) }
    60% {opacity: 1; -webkit-transform: translateX(-20px); transform: translateX(-20px) }
    100% {-webkit-transform: translateX(0); transform: translateX(0) }
}

section.cd-timeline {
  padding-top:1rem;
}
.cd-timeline .container {
    max-width: 800px;
}
.cd-timeline__date {
    color:#222;
    font-weight:700;
}
.cd-timeline__img--movie {
    background:#6bbfa3;
}
.text-component, .boxed-text-component {
    color:#000;
    max-width:800px;
    /*padding:16px 24px;*/
    margin:0 auto;
}
.text-component a {
  font-weight:700!important;
}

@media (min-width: 64rem) {
    .cd-timeline__content {
        width:43%;
    }
    .cd-timeline__content p {
        margin-bottom:0;
    }
    /*.cd-timeline__img {
        margin-left:calc(7% - 30px);
    }
    .cd-timeline__block:nth-child(2n) .cd-timeline__img {
        margin-right:calc(7% - 30px);
    }*/
    .cd-timeline__date {
        margin:0 10%;
    }
}

/*--------------------------------------------------------------
# temp
--------------------------------------------------------------*/
.equal-h .row,
.equal-h .layout-column {
  display:flex!important;
}
.equal-h .row {
  align-items:stretch!important;
}

.content-h-100, .content-h-100 > .row {
  height:100%!important;
}

.ftco-section.box--box-shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: .2s;
}
.ftco-section.box--box-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    transition: .2s;
}
.membership-boxes .text-component {
  padding:1.5rem;
}
.img-250 img {
    max-width:250px;
}

.img-center .pce_img {
  margin:0 auto;
}

/* remove overlay on slider */
.hero.slider-no-over .carousel-item::before {
  background:none;
}
/* overlay for each slide */
.item-overlay {
  position:absolute;
  top:0; right:0; bottom:0; left:0;
  z-index:5;
}

.full_text_width .text-component,
.text-w-100 .text-component {
  max-width:100%;
}

.ftco-section.hero-box {
  padding-top:60px;
}

.header-box {
  padding:0!important;
  border-radius:4px;
}
.header-box h4 {
  color:var(--color-blue);
}
.header-box a {
  font-weight:400!important;
}
.header-box .list-group {
  font-size:17px;
}

/* sustainability */
.card-layout {
  padding:0 !important;
}
.card-layout h4 {
  font-size:22px;
  color:var(--color-blue);
  margin-bottom:.75rem;
}
.card-layout .row {
  --bs-gutter-x:0;
}
.card-layout .layout-column:nth-child(-n+3) {
  border-bottom: 1px solid #dedede;
}
@media (min-width: 768px) {
  .card-layout .layout-column {
    border-right: 1px solid #dedede;
  }
  .card-layout .layout-column:nth-child(3),
  .card-layout .layout-column:nth-child(6) {
    border-right: 0;
  }
  .card-layout.no-border-bottom .layout-column {
    border-bottom: 0;
  }
}
.card-layout .card-header {
  background-color:var(--color-white);
  padding: 40px 40px 0 40px;
}
.card-layout .card-body {
  padding: 0 40px 40px 40px;
}
.card-layout .ftco-text.p-4 {
  padding:0!important;
}

.portfolio-container.equal-h .portfolio > .row,
.portfolio-container.equal-h .portfolio > .row > .portfolio-item {
  height:100%;
}

.w-max-800 {
  max-width:800px;
}

.text-no-pad .ftco-text,
.text-no-pad .text-component {
  padding:0!important;
}
.text-no-pad-x .text-component {
  padding-left:0;
  padding-right:0;
}


.about-box-images .row .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

section:not(.hero-box):first-of-type h1:first-of-type {
  padding-top:24px;
  /*padding-bottom:12px;*/
}

.membership-slider .hero .carousel-item::before {
  background:none;
}
.membership-slider .carousel-control-prev {
  left:8px;
}
.membership-slider .carousel-control-next {
  right:8px;
}
.membership-slider .bi-chevron-left::before,
.membership-slider .bi-chevron-right::before {
  font-size:24px;
  background:#ffffff;
  padding:2px;
  border-radius:30px;
}

.btn-w-60 .btn {
  width:60%;
  max-width:60%;
}
.mh-388 {
  min-height:388px;
}
@media (min-width: 1200px) {
  .mh-388 .carousel {
    min-height:388px;
  }
}

.h-p-0 h1, .h-p-0 h2, .h-p-0 h3, .h-p-0 h4, .h-p-0 h5 {
  padding:0!important;
}
.h-m-0 h1, .h-m-0 h2, .h-m-0 h3, .h-m-0 h4, .h-m-0 h5 {
  margin:0!important;
}

/* custom modal */
.custom-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1050;
}
.custom-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.custom-modal-content {
  background: white;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.custom-modal.show .custom-modal-content {
  transform: scale(1);
}
.modal-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.countdown-container {
  display: flex;
  justify-content: center;
}
.countdown{
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  color: #2cb4d7;
}

#countdown{
  display: block;
  overflow: hidden;
  padding: 0px;

}

#countdown i{
  overflow: hidden;
  padding: 0px;
  background-image: url( "/assets/img/countdown.png" );

  background-size: cover;
  padding-left: 12px;
  padding-right: 11px;
  border-right: 2px transparent solid;
  margin-right: 2px;
}

.countdown #days{
  font-size: 1rem;
  color: #000;
  font-weight: normal;
  padding-right: 6px;
}

/* countdown - updated version */
.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
}

@media (max-width: 1200px) {
   .countdown-box {
    padding: 8px;
   }
}

.countdown-box-red {
  color: var(--color-white);
  background-color: var(--color-red);
}
.countdown-box-grey {
  color: var(--default-color);
  background-color: var(--color-light-grey);
}
.countdown-box-blue {
  color: var(--color-white);
  background-color: var(--color-blue);
}
.countdown-number {
  font-size: 72px;
  font-weight: bold;
  letter-spacing: .05em;
}
.countdown-label {
  font-size:18px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.countdown-info-box, .countdown-info-box .ftco-section, .countdown-info-box .text-component {
  height: 100%;
}
.countdown-info-box .text-component {
  display: flex;
}
.countdown-info-box .countdown-info-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between !important;
}
.countdown-info-content {
  background-color: var(--color-red);
}
.am-buttons {
  display: flex;
  justify-content: space-evenly;
}
.btn-countdown, .countdown-btn .btn {
  min-width: 180px;
}
.countdown-btn .btn {
  padding: 12px 24px;
}

@media (max-width: 1200px) {
  .countdown-btn .btn {
  padding: 12px 12px;
  }  
  .btn-countdown, .countdown-btn .btn {
    min-width: 150px;
  }
}

@media (max-width: 992px) {
  .countdown-btn .btn {
  padding: 14px 0px;
  }  
  .btn-countdown, .countdown-btn .btn {
    min-width: 98px;
    font-size: 0.7rem;
  }
}

@media (max-width: 767px) {
  .btn-countdown, .countdown-btn .btn {
    width: 100%;
  }
  .countdown-box {
    height: 160px;
  }
  .countdown-number {
    font-size: 52px;
  }
  .btn-countdown, .countdown-btn .btn {

    font-size: 1rem;
  } 

  .layout-column{
    margin-top: 2px;
    margin-bottom: 2px;
  }

}

.pce_img img, .portfolio-content {
  border-radius:8px;
}
.btn {
  border-radius:4px!important;
}

.box-text-bg-blue .text-component {
  background: var(--color-blue);
}

/* fix: carousel-links not clickable */
.carousel-item a {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 4;
}
.carousel-item img {
  pointer-events: none;
}

.ext-media-centre .container {
  max-width:1400px;
}
.ext-media-centre .ftco-text {
  padding:0!important;
}

.ftco-section:not(.hero-box):first-of-type {
  padding-top:0;
}

.is-hidden {
  display: none !important;
}

#mobileNav .dropdown-menu {
  position: static!important;
  float: none;
  width: 100%;
  margin-top: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding-left: 1rem;
  transform: none !important;
}

.mobile-nav .nav-item {
  padding: 6px 0;
}

.mobile-nav .dropdown-item.active, .mobile-nav .dropdown-item:active {
  color: var(--color-black);
  background-color: var(--color-light-grey);
}

/* details disclosure */
.details_disclosure, .details_disclosure:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
  position: relative;
  text-align: center;
}

/* Arrows when closed */
.details_disclosure::before,
.details_disclosure::after {
  content: "▼";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: var(--color-white);
}

.details_disclosure::before {
  left: 1rem;
}

.details_disclosure::after {
  right: 1rem;
}

/* Arrows when open */
.details_disclosure.open::before,
.details_disclosure.open::after {
  content: "▲";
}

.search-field .form-control {
  font-size: 1.6rem;
  background-color: #f4f2f3;
}
.search-button .btn {
  padding: 12px 40px;
}

@media (max-width: 767px) {
.cky-revisit-bottom-left {
  bottom: 2px !important; 
  left: 15px;
}
}

.helpdesk-confirm {
  width: 0 !important;
  height: 0 !important;
  overflow: hidden;
}

.grid-border-right {
  border-right: 2px #dedede solid;
}

.grid-border-bottom {
  position: relative;
}

.grid-border-bottom::after {
  content: '';
  position: absolute;
  left: calc(var(--bs-gutter-x) * -0.5);
  right: calc(var(--bs-gutter-x) * -0.5);
  bottom: 0;
  height: 2px;
  background-color: #dedede;
}

.left-right-combo {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.left-right-combo > :nth-child(1) {
	align-self: flex-start;
}

.left-right-combo > :nth-child(2) {
	align-self: flex-end;
}

.password-container {
  display: flex;
  width: 100%;
}

.password-container input {
  flex: 9;
  box-sizing: border-box;
}

.password-container button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  margin-left: 10px;
}

div:has(> .standalone-pw-toggle) {
  overflow: visible;
}

.standalone-pw-toggle {
  max-width: max-content;
  min-width: fit-content;
}

.scroll-top-event {
  bottom: 100px !important;
}