@import url("https://use.typekit.net/uig0ett.css");
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --white: #f9f8f5;
  --black: #09100f;
  --dark-grey: #aeaeae;
  --coral: #ac40ff;
  --royal-blue: #363fef;
  --coral-gradient: linear-gradient(90deg, #2e60f5, #ac7ce8 50%, #ff9647);
  --green-2: #22DAAE;
}

.site-logo {
  height: 41px;
}

/* --- Buttons used in header/footer CTAs --- */
.btn {
  font-family: Poppins !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  border-radius: 5px;
  padding: 12px 18px;
  cursor: pointer;
  text-align: center;
}
.btn.btn-secondary {
  background: var(--black);
  color: var(--white);
}
.btn.btn-secondary:hover {
  background: var(--coral-gradient);
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
}
.btn.btn-outline {
  background: none;
  border: 1px solid var(--black);
  color: var(--black);
}
.btn.btn-outline:hover {
  color: var(--coral) !important;
  background: none !important;
  border: 1px solid var(--coral);
  cursor: pointer;
  text-decoration: none;
}

/* --- Top navigation wrapper & menu --- */
.nav-wrapper {
  max-width: 1192px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.custom-modular-navigation-main {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.custom-modular-navigation {
  display: flex;
  gap: 40px;
}
.site-nav {
  display: flex;
  align-items: center;
}
.custom-modular-navigation-main:hover, .modular-navigation-wrapper:hover {
  text-decoration: none !important;
}

/* --- Mobile nav toggles & containers --- */
.site-nav-widget-mobile {
  display: none;
}
.w-nav-mobile {
  display: none;
  position: absolute;
  width: 100%;
  top: 72px;
  background-color: var(--white);
  padding: 16px 32px;
  padding-bottom: 100%;
}
.w-nav-mobile.is-open {
  display: block;
}
.main-nav-menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
}
.main-nav-ctas-mobile a {
  display: inline-block;
}
.main-nav-menu-mobile a {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none !important;
}

/* --- Footer --- */
footer.alliance-footer {
  background-color: var(--black);
  background-image: url("/assets/img/footer-gradient-background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
}
.footer-container {
  padding: 80px 0;
  max-width: 1192px;
  margin: auto;
}
.footer-content-wrapper {
  position: relative;
}
.footer-content-wrapper.with-decor:before {
  content: url("/assets/img/footer-decor.svg");
  width: 137px;
  height: 137px;
  position: absolute;
  z-index: 0;
  top: -82px;
  left: -90px;
}
.footer-content-wrapper.header {
  padding-bottom: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--white);
}
.footer-content-wrapper.body {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white);
}
.footer-content-wrapper.bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
}
.footer-content-wrapper.bottom p, .footer-content-wrapper.bottom a {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  color: var(--white);
}
.footer-content-wrapper.bottom a:hover {
  text-decoration: none;
}
.footer-content-wrapper.body .links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 72px;
}
.footer-content-wrapper.body .links a {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.footer-content-wrapper.header .btn {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 14px;
}
.footer-content-wrapper.header .btn:hover {
  background-color: var(--white);
  color: var(--black);
  text-decoration: none;
}
.logo-and-social-links {
  display: flex;
  justify-content: space-between;
}
.logo-and-social-links .footer-social-links img {
  width: 32px;
}
.logo-and-social-links .footer-social-links a:hover {
  opacity: .59;
}
.logo-and-social-links .site-logo {
  margin-left: -24px;
}
.logo-and-social-links .footer-social-links {
  display: flex;
  gap: 1rem;
}

/* --- Responsive rules affecting this header/footer --- */
@media (min-width: 601px) and (max-width: 1200px) {
  .footer-container {
    padding: 80px 5%;
  }
  .footer-content-wrapper.with-decor:before {
    left: -45px;
  }
  .main-nav-ctas-mobile a.btn-outline {
    margin-left: 8px;
  }
}

@media (max-width: 1200px) {
  .menu-icon_line-top, .menu-icon_line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    transition: all 0.3s ease-in-out;
  }
  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }
  .menu-icon_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    transition: all 0.3s ease-in-out;
  }
  #w-node-_6d67a29c-7439-6877-ee6b-9dd2ddd46d1f-03687326 {
    justify-self: end;
    margin-right: 16px;
    margin-top: 16px;
  }
  .site-nav {
    display: none;
  }
  .site-nav-widget-mobile {
    display: block;
  }
  .site-nav-widget {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-container {
    padding: 80px 5%;
  }
  .footer-content-wrapper.with-decor:before {
    left: -45px;
  }
  .nav-wrapper .site-title {
    width: unset;
  }
  .site-nav {
    display: none;
  }
  .site-nav-widget-mobile {
    display: block;
  }
  .site-nav-widget {
    display: none;
  }
  .footer-content-wrapper.header {
    padding-bottom: 48px;
  }
  .footer-content-wrapper.body .links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
  }
  .footer-content-wrapper.body .links a {
    font-size: 18px;
    padding: 12px 0;
    font-weight: 400;
    display: flex;
    align-items: center;
  }
  .footer-content-wrapper.body .links a:after {
    content: url("/assets/img/arrow-right.svg");
    margin-left: 16px;
  }
  .logo-and-social-links {
    flex-direction: column;
  }
  .logo-and-social-links > a {
    margin-bottom: 24px;
  }
  .logo-and-social-links .footer-social-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 16px;
  }
  .footer-content-wrapper.bottom {
    flex-direction: column;
  }
  .footer-content-wrapper.with-decor:before {
    width: 100px;
    height: unset;
  }
  .footer-content-wrapper.with-decor:before {
    left: -17px;
  }
  .main-nav-ctas-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
