@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap");
.button {
  padding: 14px 20px;
  min-width: 210px;
  font-weight: 500;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  cursor: pointer;
}
.button--cta {
  background: #101010;
  color: #FCFDFC;
}
.button--cta:hover {
  background: #232323;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.0549019608);
  text-decoration: none;
}
.button--secondary {
  background: #FCFDFC;
  color: #000;
}
.button--secondary:hover {
  background: #fafafa;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.0549019608);
}

.chevron-down {
  margin: 0 auto;
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: Inter;
  font-weight: 300;
  padding-top: 70px;
  color: #000;
}

a {
  text-decoration: none;
  color: #000;
}

h1 {
  margin: 0;
  font-size: 4.5rem;
  font-family: Raleway;
  font-weight: 600;
  line-height: 110%;
}

h2 {
  font-size: 2.625rem;
  font-weight: 600;
  margin: 0;
  font-family: Raleway, Helvetica, sans-serif;
}

form {
  margin: 0;
}

section {
  padding-block: 90px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #101010;
  color: #FCFDFC;
}

ul {
  padding: 0;
  list-style: none;
}

button {
  border: none;
}

html {
  scroll-padding-top: 20px;
}

body {
  overflow-x: hidden;
}

.grey-background {
  background: #F4F4F4;
}

.brown-background {
  background: #E9DFD3;
}

.hpot-wrap {
  height: 0;
  color: transparent;
  font-size: 0;
}
.hpot-wrap input {
  visibility: hidden;
}

.modal-wrap {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 10;
  background: rgba(13, 13, 13, 0.52);
  display: flex;
  justify-content: center;
  padding-top: 90px;
  top: 0;
}
.modal-wrap.hidden {
  display: none;
}
.modal-wrap .modal {
  border-radius: 7px;
  max-width: 1200px;
  background: #FCFDFC;
  padding: 0 110px 25px;
  height: calc(100vh - 180px);
  overflow-y: scroll;
  position: relative;
  margin-inline: 28px;
}
.modal-wrap .modal article {
  color: #000;
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 2rem */
  padding-bottom: 150px;
}
.modal-wrap .modal article h2 {
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.modal-wrap .modal article h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.modal-wrap .modal article p {
  margin-top: 0;
  font-size: 1.2rem;
}
.modal-wrap .modal article a {
  color: #828839;
  font-weight: 400;
}
.modal-wrap .modal article a:hover {
  text-decoration: underline;
}
.modal-wrap .modal .x-icon-container {
  position: sticky;
  top: 0;
  right: 0;
  padding: 0;
  width: 100%;
  height: 70px;
}
.modal-wrap .modal .x-icon-container .icon {
  background: url("/assets/images/x_icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 40px;
  right: -60px;
  cursor: pointer;
}

.nav-bar {
  padding-inline: calc((100% - 1500px) / 2);
  height: 70px;
  width: 100vw;
  z-index: 1000;
  position: fixed;
  top: 0;
  background: #FCFDFC;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-bar__wrap {
  margin-inline: 75px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-bar__wrap > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 50px;
  height: 100%;
}
.nav-bar__wrap > ul li {
  font-family: Raleway, Helvetica, sans-serif;
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-bar__wrap > ul li a {
  display: flex;
  align-items: center;
}
.nav-bar__wrap > ul li a:not(.button) {
  height: 100%;
  width: 100%;
}
.nav-bar__wrap > ul li a:not(.button):hover {
  text-decoration: underline;
}
.nav-bar__wrap > ul li a.active {
  font-weight: 600;
}
.nav-bar__wrap > ul li a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: #000;
  position: absolute;
  width: calc(100% + 50px);
  left: -25px;
  bottom: -1px;
}
.nav-bar__wrap > ul li.language-switcher {
  position: relative;
}
.nav-bar__wrap > ul li.language-switcher p:not(#langCode) {
  display: none;
}
.nav-bar__wrap > ul li.language-switcher:hover {
  text-decoration: none;
}
.nav-bar__wrap > ul li.language-switcher div {
  display: flex;
  flex-direction: row;
  gap: 12px;
  cursor: poInter, Helvetica, sans-serif;
}
.nav-bar__wrap > ul li.language-switcher ul {
  list-style: none;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  position: absolute;
  background: #FCFDFC;
  padding: 24px;
  border-radius: 10px;
  visibility: hidden;
  top: 70px;
}
.nav-bar__wrap > ul li.language-switcher ul.toggled {
  visibility: visible;
}
.nav-bar__wrap > ul li.language-switcher ul::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FCFDFC;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(-10px);
}
.nav-bar__wrap > ul li.language-switcher ul li {
  cursor: poInter, Helvetica, sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.nav-bar__wrap > ul li.language-switcher ul li:hover {
  text-decoration: none;
}
.nav-bar__wrap > ul li.language-switcher ul li:not(:last-child) {
  margin-bottom: 20px;
}
.nav-bar__wrap > ul li.language-switcher ul li::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
}
.nav-bar__wrap > ul li.language-switcher ul li.en::before {
  background: url("/assets/images/en_flag.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-bar__wrap > ul li.language-switcher ul li.sk::before {
  background: url("/assets/images/sk_flag.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-bar__wrap > ul li.language-switcher ul li.dk::before {
  background: url("/assets/images/dk_flag.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-bar__wrap > ul li.language-switcher ul li:hover {
  text-decoration: underline;
}
.nav-bar__wrap > ul .button {
  font-size: 1rem;
  padding: 12px 50px;
  font-family: Inter, Helvetica, sans-serif;
  transition: 0.075s ease-in;
}
.nav-bar__wrap h2 {
  font-size: 1.5rem;
  font-weight: 600;
  transition: 0.075s ease-in;
}
.nav-bar__wrap .hamburger-btn {
  background: url("/assets/images/hamburger_icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 25px;
  height: 19px;
  cursor: pointer;
  display: none;
}
.nav-bar__wrap .hamburger-btn.toggled {
  background: url("/assets/images/x_icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.banner {
  background: url("../assets/images/banner.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  width: 100%;
  max-height: 860px;
  height: calc(100vh - 120px);
  padding: 50px 50px 0;
  position: relative;
  overflow-x: hidden;
}
.banner h1 {
  width: 100%;
  font-size: 3.8rem;
}
.banner__wrap {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.banner__wrap__text {
  width: 720px;
  width: 80vw;
  padding-bottom: 50px;
}
.banner__wrap__text > p {
  max-width: 550px;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-block: 35px 35px;
}
.banner__wrap .hero-image {
  height: 100%;
  width: 50%;
  position: relative;
  display: block;
}
.banner__wrap .hero-image img {
  display: block;
  height: 100%;
  width: 150%;
  object-fit: contain;
  object-position: bottom left;
  bottom: 0;
  position: absolute;
}
.banner__wrap .buttons-wrap {
  display: flex;
  gap: 25px;
}
.banner__wrap .chevron-down img {
  transition: transform 0.3s ease;
}
.banner__wrap .chevron-down:hover img {
  animation: bounce 0.4s;
}
.banner .registered-tag {
  position: absolute;
  right: 0;
  bottom: 75px;
  background: rgba(252, 253, 252, 0.7);
  padding: 18px 50px 18px 25px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  display: flex;
  justify-content: flex-start;
  max-height: 90px;
  gap: 28px;
  align-items: center;
}
.banner .registered-tag img {
  object-fit: contain;
  width: 59px;
  height: 55px;
}
.banner .registered-tag p {
  width: 200px;
}
.banner .registered-tag p b {
  font-weight: 600;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Adjust the bounce height as needed */
  }
}
.about {
  display: flex;
  flex-direction: row;
}
.about div {
  width: 50%;
}
.about div.text-container {
  padding-left: 45px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about div p {
  max-width: 490px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
}
.about div img {
  max-width: 300px;
}
.about div.image-container {
  display: flex;
  justify-content: flex-end;
  padding-right: 45px;
}
.about div.image-container > img {
  max-width: 500px;
  width: 100%;
  object-fit: contain;
}

.services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.services .button.hidden {
  display: none;
}
.services ul {
  padding-top: 20px;
  width: 1120px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0;
  list-style-type: none;
}
.services ul li {
  width: calc(33.3333333333% - 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.services ul li.desktop-hidden {
  display: none;
}
.services ul li img {
  width: 100%;
}
.services ul li p {
  font-size: 1.125rem;
  margin-top: 0;
}
.services ul li .see-more-button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
  color: #828839;
  padding: 0;
}
.services ul li .see-more-button:hover {
  text-decoration: underline;
}
.services ul div.hidden-services {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  visibility: hidden;
  height: 0;
  transition: 0.5s ease-out;
  overflow: hidden;
}
.services ul div.hidden-services.expanded {
  visibility: visible;
  height: max-content;
  max-height: unset;
  margin-bottom: 40px;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 28px;
  padding-bottom: 60px;
}
.contact .caption {
  margin-bottom: 0;
}
.contact form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}
.contact form .consent-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  cursor: pointer;
}
.contact form .consent-wrap input[type=checkbox] {
  width: 30px;
  height: 30px;
  margin: 0 15px 0 0;
}
.contact form .consent-wrap label {
  cursor: pointer;
  user-select: none;
  font-size: 1.2fr;
  font-weight: 400;
}
.contact form label {
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
  font-weight: 400;
}
.contact form input {
  margin-bottom: 20px;
  font-size: 1rem;
}
.contact form textarea {
  font-size: 1rem;
}
.contact form button {
  font-size: 1rem;
  font-weight: 500;
  font-family: Inter, Helvetica, sans-serif;
}
.contact form #my-form-status {
  visibility: hidden;
  transition: 0.2s ease-in-out;
  color: #828839;
  font-size: 1rem;
  font-weight: 500;
  margin: 20px auto 0;
  position: relative;
}
.contact form #my-form-status::before {
  position: absolute;
  left: -20px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("/assets/images/checkmark_green.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  color: #828839;
}

section > .caption {
  max-width: 750px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 50px;
}

form {
  max-width: 700px;
  width: 100%;
}
form input {
  width: 100%;
  height: 50px;
  border: none;
  margin-block: 12px 10px;
  font-size: 1.375rem;
  padding-inline: 12px;
  border-radius: 4px;
}
form textarea {
  width: 100%;
  height: 150px;
  border-radius: 4px;
  border: none;
  font-size: 1.375rem;
  padding: 12px;
  margin-block: 12px 25px;
  font-family: Inter, Helvetica, sans-serif, Helvetica, sans-serif;
  resize: vertical;
}
form .button {
  width: 100%;
}

footer {
  padding-top: 70px;
}
footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 100px;
  width: 100%;
  padding-inline: 50px;
}
footer .footer-wrap h3 {
  font-size: 1.6rem;
}
footer .footer-wrap .contact-column {
  font-size: 1rem;
}
footer .footer-wrap .contact-column li {
  display: flex;
  margin-bottom: 14px;
  gap: 24px;
  align-items: center;
}
footer .footer-wrap .contact-column li.phone::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
}
footer .footer-wrap .contact-column li.phone.sk::before {
  background: url("/assets/images/sk_flag.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer-wrap .contact-column li.phone.dk::before {
  background: url("/assets/images/dk_flag.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer-wrap .contact-column li p {
  margin: 0;
  font-size: 21px;
}
footer .footer-wrap .contact-column li p:first-child {
  font-weight: 600;
}
footer .footer-wrap .contact-column li a {
  color: #FCFDFC;
  line-height: 1.6;
}
footer .footer-wrap .contact-column li a:hover {
  text-decoration: underline;
}
footer .footer-wrap .bank-column .info-wrap {
  display: flex;
  margin-bottom: 12px;
  gap: 24px;
}
footer .footer-wrap .bank-column .info-wrap p {
  margin: 0;
  font-size: 1rem;
}
footer .footer-wrap .bank-column .info-wrap p:first-child {
  font-weight: 600;
  min-width: 150px;
}
footer .footer-wrap .bank-column .info-wrap p:last-child {
  cursor: pointer;
  position: relative;
}
footer .footer-wrap .bank-column .info-wrap p .copy-button {
  visibility: hidden;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  translate: calc(100% + 10px);
  cursor: pointer;
  margin-left: 10px;
  background: none;
  border: none;
  outline: none;
  font-size: 0.7rem;
  height: 1rem;
  color: inherit;
  color: #9D9D9D;
  padding: 0;
  text-transform: uppercase;
  align-items: flex-end;
}
footer .footer-wrap .bank-column .info-wrap p .copy-button::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: var(--copy-bcg-image);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 5px;
}
footer .footer-wrap .resources {
  font-size: 1.2rem;
}
footer .footer-wrap .resources ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
footer .footer-wrap .resources ul li {
  width: 300px;
  max-width: 300px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
footer .footer-wrap .resources ul li:hover {
  text-decoration: underline;
}
footer .footer-wrap .resources ul li i.arrow {
  background: url("/assets/images/arrow_right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 24px;
  height: 27px;
}
footer .copyright {
  width: 100%;
  background: #000;
  padding-inline: calc((100% - 1500px) / 2);
}
footer .copyright .copyright-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FCFDFC;
  font-size: 1rem;
  line-height: 1.2;
  height: 90px;
  font-family: Raleway, Helvetica, sans-serif;
  margin-inline: 50px;
}
footer .copyright .copyright-wrap h6 {
  font-weight: 300;
  font-size: 0.8rem;
  color: #9D9D9D;
}
footer .copyright .copyright-wrap a {
  color: #FCFDFC;
  text-decoration: underline;
}

@media (max-width: 1350px) {
  .about {
    max-width: 1100px;
    margin: 0 auto;
    padding-inline: 50px;
  }
  .about div.image-container {
    padding-right: 35px;
  }
  .about div.text-container {
    padding-right: 0;
    padding-left: 35px;
  }
  .services > ul {
    max-width: 850px;
    margin: 0 auto;
    justify-content: center;
    padding-block: 28px;
  }
  .services > ul div.hidden-services {
    width: calc(100% - 50px);
    max-width: 850px;
    justify-content: flex-start;
    gap: 50px;
    margin: 0 auto;
  }
  .services > ul div.hidden-services > li {
    width: calc(50% - 25px);
  }
  .services > ul li {
    width: calc(50% - 50px);
    max-width: 400px;
  }
  .services > ul li.tablet-hidden {
    display: none;
  }
  .services > ul li.desktop-hidden {
    display: flex;
  }
  .nav-bar__wrap > ul {
    gap: 24px;
  }
  .nav-bar__wrap > ul li a.active::after {
    width: calc(100% + 24px);
    left: -12px;
  }
  .nav-bar__wrap > ul li .button {
    font-size: 1rem;
    padding: 12px 50px;
    min-width: 190px;
  }
  .nav-bar__wrap h2 {
    font-size: 1.3rem;
    font-weight: 600;
  }
  footer .footer-wrap {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 900px;
  }
}
@media (max-width: 1100px) {
  .about {
    flex-direction: column-reverse;
  }
  .about div.text-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: flex-start;
    margin: 0 auto 50px;
    padding: 0;
  }
  .about div.text-container p {
    width: 100%;
    max-width: unset;
  }
  .about div.image-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    padding: 0;
    justify-content: flex-start;
  }
  .about div.image-container img {
    min-width: 100%;
  }
  .nav-bar__wrap > ul {
    z-index: 1;
    position: absolute;
    display: block;
    background: #fff;
    height: 100vh;
    top: 0;
    width: 350px;
    right: 0;
    z-index: 1;
    padding-top: 100px;
    padding-left: 35px;
    transition: 0.5s ease-in-out;
  }
  .nav-bar__wrap > ul.hidden {
    right: -350px;
  }
  .nav-bar__wrap > ul > li {
    height: 55px;
  }
  .nav-bar__wrap > ul > li a.active {
    text-decoration: underline;
  }
  .nav-bar__wrap > ul > li a.active::after {
    display: none;
  }
  .nav-bar__wrap > ul > li a.button--cta.button {
    color: #000;
    background: none;
    padding: 0;
    margin: 0;
    display: block;
    box-shadow: none;
    font-family: Raleway, Helvetica, sans-serif;
    font-size: 1.125rem;
  }
  .nav-bar__wrap > ul > li a.button--cta.button:hover {
    text-decoration: underline;
  }
  .nav-bar__wrap > ul li.language-switcher {
    margin-top: 50px;
    display: block;
  }
  .nav-bar__wrap > ul li.language-switcher p:not(#langCode) {
    font-size: 1.5rem;
    padding: 0;
    margin: 0 0 20px;
    display: block;
  }
  .nav-bar__wrap > ul li.language-switcher > div {
    display: none;
  }
  .nav-bar__wrap > ul li.language-switcher ul {
    top: 0;
  }
  .nav-bar__wrap > ul li.language-switcher #languageToggler {
    visibility: visible;
    padding: 0;
    position: relative;
  }
  .nav-bar__wrap > ul li.language-switcher #languageToggler li {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
  }
  .nav-bar__wrap .hamburger-btn {
    display: block;
    z-index: 2;
  }
  footer {
    padding-top: 30px;
  }
  footer .footer-wrap {
    max-width: 700px;
    gap: 30px;
  }
}
@media (max-width: 850px) {
  .banner {
    max-width: 100vw;
    min-height: 700px;
    padding: 28px 50px;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
  }
  .banner h1 {
    font-size: 3.2rem;
    font-weight: 600;
    max-width: 80%;
  }
  .banner__wrap p {
    font-size: 1.2rem;
    max-width: 70%;
  }
  .banner__wrap .buttons-wrap {
    flex-direction: column;
    width: 300px;
    bottom: 40px;
    left: 0;
    z-index: 3;
    gap: 10px;
  }
  .banner__wrap .buttons-wrap a {
    width: 100%;
  }
  .banner__wrap .hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .banner__wrap .chevron-down {
    display: none;
  }
  .banner .registered-tag {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0;
    height: 42px;
    background: rgba(28, 28, 28, 0.8);
    color: #FCFDFC;
    padding: 0 28px;
    gap: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .banner .registered-tag p {
    margin: 0;
    font-size: 1rem;
    width: fit-content;
  }
  .banner .registered-tag img {
    height: 32px;
    width: 34px;
  }
  .services > ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
  }
  .services > ul div.hidden-services {
    width: auto;
    flex-direction: column;
    align-items: center;
  }
  .services > ul div.hidden-services > li {
    width: 100%;
    max-width: unset;
  }
  .services > ul div.hidden-services > li.desktop-hidden {
    display: none;
  }
  .services > ul > li {
    width: 100%;
    max-width: 500px;
  }
  .services > ul > li.tablet-hidden {
    display: flex;
  }
  .modal-wrap .modal {
    height: calc(100vh - 90px);
    padding-inline: 90px;
  }
  .modal-wrap .modal article h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  .modal-wrap .modal article h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .modal-wrap .modal article p {
    margin-top: 0;
    font-size: 1rem;
  }
  .modal-wrap .modal article a {
    color: #828839;
    font-weight: 400;
  }
  .modal-wrap .modal article a:hover {
    text-decoration: underline;
  }
  .modal-wrap .modal .x-icon-container .icon {
    top: 30px;
  }
}
@media (max-width: 570px) {
  html {
    scroll-padding-top: 60px;
  }
  .banner {
    max-width: 100vw;
    min-height: 700px;
    padding: 28px;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
  }
  .banner h1 {
    font-size: 3rem;
    font-weight: 600;
    min-width: 90%;
  }
  .banner .banner__wrap {
    justify-content: flex-start;
    flex-direction: column;
  }
  .banner__wrap p {
    font-size: 1.125rem;
    min-width: 90%;
  }
  .banner__wrap .buttons-wrap {
    flex-direction: column;
    position: absolute;
    width: 100%;
    bottom: 40px;
    left: 0;
    z-index: 2;
    gap: 10px;
  }
  .banner__wrap .buttons-wrap a {
    width: 100%;
  }
  .banner__wrap .hero-image {
    width: 80%;
    max-height: 400px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .banner__wrap .chevron-down {
    display: none;
  }
  .banner .registered-tag {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0;
    height: 42px;
    background: rgba(28, 28, 28, 0.8);
    color: #FCFDFC;
    padding: 0 28px;
    gap: 12px;
    z-index: 2;
  }
  .banner .registered-tag p {
    margin: 0;
    font-size: 0.875rem;
    width: 100%;
  }
  .banner .registered-tag img {
    height: 32px;
    width: 34px;
  }
  .banner::after {
    content: "";
    width: 100%;
    height: 235px;
    background: linear-gradient(180deg, rgba(196, 199, 164, 0) 0%, #C4C7A4 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .about {
    display: flex;
    flex-direction: column-reverse;
    padding-inline: 28px;
  }
  .about div {
    width: 100%;
  }
  .about div.text-container {
    padding-left: 0;
  }
  .about div p {
    max-width: 490px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
  }
  .about div > img {
    max-width: 200px;
  }
  .about div.image-container > img {
    max-width: 100%;
    width: 100%;
    border-radius: 100px 40px 140px 30px;
  }
  .nav-bar__wrap {
    margin: 0 22px;
  }
  .nav-bar__wrap h2 {
    font-size: 1rem;
    z-index: 2;
  }
  .nav-bar__wrap > ul {
    z-index: 1;
    position: absolute;
    display: block;
    background: #fff;
    height: 100vh;
    top: 0;
    width: 250px;
    right: 0;
    z-index: 1;
    padding-top: 100px;
    padding-left: 35px;
    transition: 0.5s ease-in-out;
  }
  .nav-bar__wrap > ul.hidden {
    right: -250px;
  }
  .nav-bar__wrap > ul > li {
    height: 55px;
  }
  .nav-bar__wrap > ul > li a.active {
    text-decoration: underline;
  }
  .nav-bar__wrap > ul > li a.active::after {
    display: none;
  }
  .nav-bar__wrap > ul li.language-switcher {
    display: block;
  }
  .nav-bar__wrap > ul li.language-switcher > div {
    display: none;
  }
  .nav-bar__wrap > ul li.language-switcher #languageToggler {
    visibility: visible;
    padding: 0;
    position: relative;
  }
  .nav-bar__wrap > ul li.language-switcher #languageToggler a {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
  }
  .nav-bar__wrap .hamburger-btn {
    display: block;
    z-index: 2;
  }
  footer .footer-wrap {
    flex-direction: column;
    padding: 0 25px 50px;
  }
  footer .footer-wrap .bank-column .info-wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  footer .footer-wrap .bank-column .info-wrap p {
    font-size: 1rem;
  }
  footer .copyright .copyright-wrap {
    text-align: center;
    flex-direction: column;
    height: 100%;
    padding-bottom: 35px;
  }
  footer .copyright .copyright-wrap h6 {
    margin-bottom: 5px;
  }
  footer .copyright .copyright-wrap p {
    font-size: 1rem;
  }
  section {
    padding: 40px 28px;
  }
  section h2 {
    font-size: 2rem;
  }
  section p.caption {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .services ul {
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
    padding: 0;
  }
  .services ul div.hidden-services {
    width: 100%;
  }
  .services ul li {
    width: 100%;
  }
  .services ul li h3 {
    text-align: left;
    width: 100%;
    font-size: 1.2rem;
    margin-block: 15px 10px;
  }
  .services ul li p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
  }
  .modal-wrap .modal {
    height: calc(100vh - 90px);
    padding-inline: 20px;
  }
  .modal-wrap .modal article h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  .modal-wrap .modal article h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .modal-wrap .modal article p {
    margin-top: 0;
    font-size: 1rem;
  }
  .modal-wrap .modal article a {
    color: #828839;
    font-weight: 400;
  }
  .modal-wrap .modal article a:hover {
    text-decoration: underline;
  }
  .modal-wrap .modal .x-icon-container {
    background: linear-gradient(180deg, #FCFDFC 59.9%, rgba(252, 253, 252, 0) 100%);
  }
  .modal-wrap .modal .x-icon-container .icon {
    right: 0;
    top: 20px;
  }
}
@media (max-width: 530px) {
  .banner h1 {
    font-size: 2.25rem;
  }
}

/*# sourceMappingURL=main.css.map */
