/*!*************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./client/src/scss/app.scss ***!
  \*************************************************************************************************************************************************************/
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--color-hero-bg);
}

.main {
  min-height: 100vh;
}

*::-webkit-scrollbar {
  width: 3px;
  background: transparent;
}
*::-webkit-scrollbar-track {
  background: transparent !important;
}
*::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 4px;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #fff transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .header-wrapper {
  padding: 12px 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
}

.header .header-wrapper .header-left img {
  max-width: 200px;
}

.header .header-wrapper .header-right .header-links {
  display: none;
}

.header .header-wrapper .header-right .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .header-wrapper .header-right .icon-wrapper .user-circle {
  color: #fff;
  cursor: pointer;
}

.header .header-wrapper .header-right .icon-wrapper .hamburger {
  display: block;
  color: #fff;
  cursor: pointer;
}

.header .header--mobile {
  padding: 16px 0;
  background: var(--color-primary-700);
  position: absolute;
  top: 99px;
  right: 0;
  left: 0;
  bottom: 0;
  height: calc(100vh - 99px);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  max-height: calc(100vh - 99px);
  overflow-y: auto;
}

.header .header--mobile::-webkit-scrollbar {
  width: 6px;
}

.header .header--mobile::-webkit-scrollbar-thumb {
  background: var(--color-primary-300);
  border-radius: 3px;
}

.header .header--mobile::-webkit-scrollbar-track {
  background: var(--color-primary-800);
}

.header .header--mobile .mobile-link--section {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-title);
  padding: 40px 16px;
}

.header .header--mobile .mobile-link--section .header-mobile--link {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-title);
  cursor: pointer;
}

.header .header--mobile .mobile-link--section .header-mobile--link .link-parent--section {
  display: flex;
  align-items: center;
}

.header .header--mobile .mobile-link--section .header-mobile--link .link-parent--section .header-link-parent--mobile {
  margin-right: 8px;
}

.header .header--mobile .mobile-link--section .mega-navigation-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.header .header--mobile .mobile-link--section .mega-navigation-wrapper.open {
  max-height: 1000px;
  opacity: 1;
}

.header .header--mobile.open {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 992px) {
  .header .header-wrapper .header-right {
    display: flex;
    align-items: center;
  }
  .header .header-wrapper .header-right .header-links {
    display: flex;
    gap: 48px;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    cursor: pointer;
  }
  .header .header-wrapper .header-right .header-links .header-link-parent {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }
  .header .header-wrapper .header-right .header-links .header-link-parent .link-parent--section {
    display: flex;
    align-items: center;
  }
  .header .header-wrapper .header-right .header-links .header-link-parent .link-parent--section .header-link-parent {
    margin-right: 8px;
  }
  .header .header-wrapper .header-right .header-links .header-link-parent .mega-navigation-wrapper {
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    width: 100%;
    transform: translateY(-10%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
  .header .header-wrapper .header-right .header-links .header-link-parent .mega-navigation {
    margin-top: 50px;
    background-color: var(--color-primary-800);
  }
  .header .header-wrapper .header-right .header-links .header-link-parent:hover .mega-navigation-wrapper {
    transform: translateY(0%);
    opacity: 1;
    pointer-events: auto;
  }
  .header .header-wrapper .header-right .icon-wrapper .user-circle {
    margin-left: 48px;
  }
  .header .header-wrapper .header-right .icon-wrapper .hamburger {
    display: none;
  }
  .header .header--mobile {
    display: none;
  }
}
.mega-nav {
  margin-top: 50px;
  background-color: var(--color-primary-800);
}

.mega-nav__wrapper {
  display: block;
}

.mega-nav__right {
  display: none;
}

.mega-nav__link-section li {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

@media screen and (min-width: 992px) {
  .mega-nav {
    min-height: 593px;
  }
  .mega-nav__wrapper {
    display: flex;
    align-items: center;
  }
  .mega-nav__left {
    width: 50%;
  }
  .mega-nav__link-section {
    padding: 0;
    padding-top: 54px;
    max-height: 580px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .mega-nav__link-section li {
    list-style: none;
    padding: 0;
  }
  .mega-nav__right {
    width: 50%;
    display: block;
  }
  .mega-nav__right img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
.footer__top {
  background-color: var(--color-primary-500);
}

.footer__top-wrapper {
  padding: 10px 0;
}

.footer__middle {
  background-color: var(--color-primary-700);
  padding: 72px 0;
  position: relative;
}

.footer__bg-design {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__section {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.45;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}

.footer__section-one {
  height: 224px;
}

.footer__section-two {
  height: 192px;
}

.footer__section-three {
  height: 160px;
  margin-bottom: 50px;
}

.footer__title {
  color: var(--color-primary-50);
  margin: 0;
}

.footer__text {
  color: var(--color-primary-600);
  text-decoration: none;
  margin: 0;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li a {
  color: var(--color-primary-600);
  text-decoration: none;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer__button {
  margin: 20px 0;
}

.footer__bottom {
  background-color: var(--color-primary-50);
}

.footer__bottom p {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  margin: 0;
  color: var(--color-secondary-700);
}

.footer__bottom-wrapper {
  text-align: center;
  padding: 12px 0;
}

.footer__copyright-text {
  margin-bottom: 10px !important;
}

@media screen and (min-width: 768px) {
  .footer__top-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer__button {
    margin: 0 10px;
  }
  .footer__middle-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .footer__bottom-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.container {
  max-width: 1792px;
  padding: 0px 16px;
  margin: 0 auto;
}

:root {
  --color-title: #FFF;
  --color-hero-bg: #005B99;
  --color-btn-label: #FFF;
  --color-btn-border: #FFF;
  --color-text: #FFF;
  --color-primary-50: #F4FBFF;
  --color-primary-100: #EFFAFF;
  --color-primary-200: #E2F5FF;
  --color-primary-300: #E2F5FF;
  --color-primary-400: #D7F1FE;
  --color-primary-500: #329DD7;
  --color-primary-600: #039DD8;
  --color-primary-700: #005B99;
  --color-primary-800: #005288;
  --color-primary-900: #12212C;
  --color-secondary-50: #ECEEF0;
  --color-secondary-100: #D9DCE2;
  --color-secondary-200: #A1A8B6;
  --color-secondary-300: #7B8598;
  --color-secondary-400: #56627B;
  --color-secondary-500: #43506C;
  --color-secondary-600: #364056;
  --color-secondary-700: #2F384C;
  --color-secondary-800: #222836;
  --color-secondary-900: #1B202B;
}

body {
  font-family: "calibri", sans-serif;
}

h1,
.h1 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.33;
}

h3,
.h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

h4,
.h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.44;
}

h5,
.h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

h6,
.h6 {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.small {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.57;
}

.extra-small {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.83;
}

.big-text {
  font-family: "Lufga", sans-serif;
  font-size: 150px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.8;
}

@font-face {
  font-family: "Lufga";
  src: url(6ef28164cd0173eb2011.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url(4f0d570c75aa41c936e1.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url(8a6e8c322b3081e46655.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url(3c7b91dccc58aeffca0e.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url(0b819e404b04598770c3.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url(46261de7bc95e50bfe6f.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
}
.btn {
  display: inline-flex;
}

.btn--hollow {
  box-sizing: border-box;
  height: 48px;
  padding: 16px 32px;
  border-radius: 24px;
  border: 1px solid var(--color-btn-border);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: var(--color-btn-label);
  text-decoration: none;
}

.btn--hollow-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--hollow-with-icon svg {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  margin-left: 16px;
}

.intro-block {
  margin-top: 100px;
}

.intro-block__wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
  min-height: 810px;
}

.intro-block__content {
  background-color: var(--color-primary-500);
  position: relative;
  overflow: clip;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-block__content-wrapper {
  padding: 32px 16px;
  margin-top: 10px;
}

.intro-block__content p {
  text-align: center;
  font-family: Calibri;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
  color: var(--color-text);
  max-width: 643px;
  margin: 0 auto;
  padding-bottom: 32px;
}

.intro-block__bg-pattern {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.intro-block__image-wrapper {
  width: 100%;
  position: relative;
}

.intro-block__image-wrapper:before {
  content: "";
  display: block;
  padding-top: 84%;
}

.intro-block__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro-block__btn-wrapper {
  display: flex;
  justify-content: center;
}

.intro-block__btn {
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 992px) {
  .intro-block__image-wrapper {
    width: 50%;
  }
  .intro-block__content-wrapper {
    padding-left: 16px;
  }
  .intro-block__content {
    width: 50%;
  }
  .intro-block__content p {
    font-size: 32px;
    line-height: 1.25;
  }
}
