/* ----------------------------------------- */
/* FONTS STACK */
/* ----------------------------------------- */

@font-face {
  font-family: "albertB";
  src: url("AlbertSans-Bold.ttf");
}

@font-face {
  font-family: "albertSB";
  src: url("AlbertSans-SemiBold.ttf");
}

@font-face {
  font-family: "albertM";
  src: url("AlbertSans-Medium.ttf");
}

@font-face {
  font-family: "albertR";
  src: url("AlbertSans-Regular.ttf");
}

@font-face {
  font-family: "albertL";
  src: url("AlbertSans-Light.ttf");
}

@font-face {
  font-family: "outfitB";
  src: url("Outfit-Bold.ttf");
}

@font-face {
  font-family: "outfitR";
  src: url("Outfit-Regular.ttf");
}

@font-face {
  font-family: "outfitL";
  src: url("Outfit-Light.ttf");
}

@font-face {
  font-family: "spaceSB";
  src: url("SpaceGrotesk-SemiBold.otf");
}

/* ----------------------------------------- */
/* variables */
/* ----------------------------------------- */

:root {
  /* typography */
  --albertB: albertB, "sans-serif";
  --albertSB: albertSB, "sans-serif";
  --albertM: albertM, "sans-serif";
  --albertR: albertR, "sans-serif";
  --albertL: albertL, "sans-serif";

  --outfitB: outfitB, "sans-serif";
  --outfitR: outfitR, "sans-serif";
  --outfitL: outfitL, "sans-serif";

  --spaceSB: "spaceSB", "sans-serif";
  /* colors */
  --color-primary: #d4a041;
  --color-secondary: #121212;
  --color-white: #ffffff;
  --color-black: #000;
  --color-charcol: #121212;
  --color-grey: #333333;
  --color-text: #3c4244;
  --grad-primary: linear-gradient(188.41deg,
      #d4a041 6.59%,
      #fbe67b 35.92%,
      #ffdb62 54.87%,
      #f7d14e 76.01%,
      #d4a041 96.75%);
  --grad-gray: linear-gradient(180.17deg, #e9eae9 -50.1%, #ffffff 96.11%);
  /* spacing */
  --section-spacing: 48px 50px;
  /* transitions */
  --transition-05: all 0.5s ease;
}

/* commons */
div[class*="banner"] {
  padding: 0;
}

/* ----------------------------------------- */
/* KEYHIGHLIGHTS -FRONTPAGE  */
/* ----------------------------------------- */
#section-wrapper {
  padding: 84px 42px;
}

.kh-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 24px;
}

.kh-item {
  min-height: 210px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 21px 37px;
  gap: 32px;
  background: linear-gradient(180.17deg, #e9eae9 -50.1%, #ffffff 96.11%);
  border-left: 1px solid #dedede;
  border-radius: 12px;
}

.kh-item .stats {
  font: 38px/48px var(--spaceSB);
  color: var(--color-charcol);
  margin: 0 0 14px;
}

.kh-item p {
  font: 18px/24px var(--albertR);
  color: var(--color-black);
  margin: 0;
}

.kh-item p:last-child {
  text-align: center;
}

.kh-item p:last-child span {
  display: block;
  overflow: hidden;
}

/* ----------------------------------------- */
/* INFODESK -FRONTPAGE  */
/* ----------------------------------------- */
#section-wrap {
  padding: 84px 48px;
}

.infodesk-header,
.section-header {
  margin: 0 0 48px;
}

.infodesk-wrap {
  position: relative;
}

.infodesk-wrap::after {
  content: "";
  width: 100%;
  height: 320px;
  background: url("/system/files/infodesk_bg.png") no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.infodesk-wrap>* {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font: 24px/40px var(--outfitR);
  margin: 0 0 18px;
}

.color-primary {
  color: var(--color-primary);
}

.section-title {
  font: 48px/64px var(--outfitB);
  margin: 0;
}

.color-white {
  color: var(--color-white);
}

.infodesk-items-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.infodesk-item {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 21px 37px;
  gap: 35px;
  background: var(--grad-gray);
  border: 1px solid #dedede;
  border-radius: 12px;
  transition: var(--transition-05);
}

.infodesk-item img {
  transition: var(--transition-05);
  display: block;
}

.infodesk-item:hover,
.infodesk-item:focus {
  text-decoration: none;
  background: var(--grad-primary);
  transform: translateY(-6px);
}

.infodesk-item p {
  font: 18px/24px var(--albertR);
  color: var(--color-charcol);
  margin: 0;
  transition: var(--transition-05);
}

.infodesk-item p span {
  display: block;
  overflow: hidden;
}

.infodesk-item:hover p,
.infodesk-item:focus p {
  color: var(--color-white);
}

.infodesk-item:hover img,
.infodesk-item:focus img {
  filter: brightness(0) invert(1);
}

/* ----------------------------------------- */
/* FREQUENTLY ASKED QUESTIONS -FRONTPAGE  */
/* ----------------------------------------- */
/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
  padding: 84px 48px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}

.faq-section>* {
  position: relative;
  z-index: 2;
}

.faq-section::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("/system/files/faq_bg.png") no-repeat top left / contain;
  background-attachment: fixedt;
  z-index: 0;
  opacity: 0.4;
}

/* =========================================
   LEFT SIDE
========================================= */

.faq-intro {
  padding-right: 0;
}

.faq-intro h2 {
  font: 48px/64px var(--outfitB);
  color: #080a0b;
  margin: 0 0 36px;
}

.faq-intro h4 {
  font: 22px/32px var(--albertSB);
  color: var(--color-charcol);
  margin: 0 0 8px;
}

.faq-intro p {
  font: 16px/26px var(--albertL);
  color: var(--color-charcol);
  margin: 0;
}

/* =========================================
   ACCORDION
========================================= */

.faq-accordion {
  margin: 0;
}

#faqAccordion {
  padding-left: 48px;
}

/* Remove Bootstrap panel styling */

.faq-accordion .panel {
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* Bottom separator */

.faq-accordion .panel-heading {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #ededed;
  border-radius: 0;
  background: transparent;
}

/* Question */

.faq-accordion .panel-title {
  margin: 0;
  padding: 0;
  /* font-size: 14px;
  line-height: 1.5;
  font-weight: 600; */
}

.faq-accordion .panel-title>a {
  position: relative;
  display: block;
  /* padding: 20px 45px 20px 0;
  color: #222;
  text-decoration: none; */

  font: 20px/30px var(--albertM);
  color: var(--color-charcol);
  padding: 36px 0 16px;
  transition: color 0.2s ease;
}

#faqAccordion .panel:first-child .panel-title>a {
  padding-top: 0;
}

.faq-accordion .panel-title>a:hover,
.faq-accordion .panel-title>a:focus {
  text-decoration: none;
}

/* =========================================
   PLUS / MINUS ICON
========================================= */

.faq-icon {
  position: absolute;
  top: 50%;
  right: 4px;

  width: 20px;
  height: 20px;

  margin-top: -10px;

  font-size: 18px;
  line-height: 18px;
  font-weight: 300;

  text-align: center;
  color: #222;
}

/* =========================================
   ANSWER
========================================= */

.faq-accordion .panel-body {
  font: 16px/26px var(--albertL);
  color: var(--color-charcol);
  padding: 16px 0;
}

/* =========================================
   REMOVE BOOTSTRAP COLLAPSE BORDERS
========================================= */

.faq-accordion .panel-collapse {
  border: 0;
}

.faq-accordion .panel-group .panel-heading+.panel-collapse .panel-body {
  border-top: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {
  .faq-section {
    padding: 48px 15px;
    padding-right: 24px;
  }

  #faqAccordion {
    padding-left: 0;
  }

  .faq-intro {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .faq-intro h2 {
    margin-bottom: 35px;
    font-size: 34px;
  }

  .faq-accordion .panel-title>a {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.faq-icon:before {
  content: "+";
}

.faq-accordion .panel-title>a[aria-expanded="true"] .faq-icon:before {
  content: "−";
}

/* ----------------------------------------- */
/* footer  */
/* ----------------------------------------- */
#footer-wrap {
  /* padding: 50 82px 36px; */
  background: var(--color-charcol);
  border-radius: 40px 40px 0 0;
}

.footer-cols-container {
  padding: 84px 48px 36px;
  border-bottom: 1px solid var(--color-white);
}

.contactdetails-item span:last-child {
  font: 18px/26px var(--albertB);
}

/* footer columns section */
.footer-cols-container>div {
  margin: 0;
  padding: 0;
}

.footer-title {
  font: 24px/30px var(--albertB);
  margin: 0 0 24px;
  color: var(--color-primary);
}

.footer-nav {
  color: var(--color-primary);
}

.footer-nav>li {
  margin: 0;
}

.footer-nav>li a {
  display: block;
  width: fit-content;
  color: var(--color-primary);
  transition: var(--transition-05);
  position: relative;
  font: 16px/40px var(--albertR);
}

.footer-nav>li a:hover,
.footer-nav>li a:focus {
  text-decoration: none;
}

.footer-nav>li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: var(--transition-05);
}

.footer-nav>li a:hover::after,
.footer-nav>li a:focus::after {
  opacity: 1;
  width: 36px;
}

/* .contactdetails-item {
}
.location-item {
} */
.footer-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.footer-item>span {
  overflow: hidden;
  display: block;
  color: var(--color-primary);
  font: 16px/26px var(--albertR);
}

.contactdetails-item {
  position: relative;
}

.contactdetails-item::after {
  content: "";
  width: 203px;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.5;
}

.footer-socials {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  width: 110px;
  margin: 0 auto;
}

.footer-socials>li {
  width: fit-content;
}

.footer-socials>li a {
  display: block;
  background: var(--grad-primary);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  transition: var(--transition-05);
  position: relative;
}

.footer-socials>li a::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.footer-socials>li a:hover,
.footer-socials>li a:focus {
  text-decoration: none;
}

.icon-fb::after {
  background: url("/system/files/fb_icon.svg") no-repeat center center;
}

.icon-x::after {
  background: url("/system/files/xicon.svg") no-repeat center center;
}

.icon-instagram::after {
  background: url("/system/files/instagramicon.svg") no-repeat center center;
}

.icon-webmail::after {
  background: url("/system/files/webmailicon.svg") no-repeat center center;
}

.icon-linkedIn::after {
  background: url("/system/files/linkedin%20%281%29.png") no-repeat center center;

}
.m-0 {
  margin: 0 !important;
}
/* footer bottom */
.footer-bottom {
  background: var(--color-charcol);
  padding: 24px 48px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-wrap,
.copyright-wrap>* {
  font: 16px/26px var(--albertR);
  color: var(--color-primary);
}

/* responsiveness  */
@media screen and (max-width: 992px) {
  .footer-cols-container .footer-col-wrap:first-child {
    margin: 0 0 24px;
  }

  .copyright-wrap {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-bottom .copyright-wrap:first-child {
    margin: 0 auto 12px;
  }
}