@font-face {
  font-family: "halyard-display-book";
  src: url("fonts/halyard-display-book.ttf") format("truetype"), url("fonts/halyard-display-book.woff") format("woff"), url("fonts/halyard-display-book.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "halyard-display-medium";
  src: url("fonts/halyard-display-medium.ttf") format("truetype"), url("fonts/halyard-display-medium.woff") format("woff"), url("fonts/halyard-display-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "halyard-display-regular";
  src: url("fonts/halyard-display-regular.ttf") format("truetype"), url("fonts/halyard-display-regular.woff") format("woff"), url("fonts/halyard-display-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "halyard-display-semibold";
  src: url("fonts/halyard-display-semibold.ttf") format("truetype"), url("fonts/halyard-display-semibold.woff") format("woff"), url("fonts/halyard-display-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "halyard-text-regular";
  src: url("fonts/halyard-text-regular.ttf") format("truetype"), url("fonts/halyard-text-regular.woff") format("woff"), url("fonts/halyard-text-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "halyard-text-semibold";
  src: url("fonts/halyard-text-semibold.ttf") format("truetype"), url("fonts/halyard-text-semibold.woff") format("woff"), url("fonts/halyard-text-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "halyard-text-medium";
  src: url("fonts/halyard-text-medium.ttf") format("truetype"), url("fonts/halyard-text-medium.woff") format("woff"), url("fonts/halyard-text-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Halyard-display-regular", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body * {
  box-sizing: border-box;
}

body {
  font-size: 17px;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1375px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

.container-small {
  max-width: 764px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

.header {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #113a4c;
  }
}
.header__logo img {
  width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 120px;
    filter: invert(1);
  }
}
.header__listing {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .header__listing {
    gap: 20px;
  }
}
.header__lang {
  position: relative;
  display: flex;
  gap: 16px;
}
.header__lang:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 18px;
  background-color: #113a4c;
}
@media (max-width: 768px) {
  .header__lang:before {
    background-color: #fd733c;
  }
}
.header__lang a {
  color: rgba(17, 58, 76, 0.5);
  transition: color 0.3s ease-in-out;
  font-size: 1rem;
}
.header__lang a:hover {
  color: #fd733c;
}
@media (max-width: 768px) {
  .header__lang a {
    font-size: 16px;
    color: white;
  }
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .header__socials {
    gap: 15px;
  }
}
.header__socials a {
  color: #113a4c;
}
.header__socials a svg {
  fill: #113a4c;
  height: 16px;
  width: auto;
  transition: fill 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header__socials a svg {
    fill: #ffffff;
  }
}
.header__socials a:hover svg {
  fill: #fd733c;
}
.header .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header .container {
    align-items: center;
  }
}
.header .current-lang {
  color: #113a4c;
}
@media (max-width: 768px) {
  .header .current-lang {
    color: #fd733c;
  }
}
.header .current-lang:hover {
  color: #113a4c;
}
@media (max-width: 768px) {
  .header .current-lang:hover {
    color: #fd733c;
  }
}

.hero {
  overflow: hidden;
  width: 100%;
}
.hero__container {
  position: relative;
  width: 100%;
  height: calc(100vh - 300px);
  max-height: 700px;
}
@media (max-height: 850px) {
  .hero__container {
    height: calc(100vh - 157px);
  }
}
@media (max-width: 768px) {
  .hero__container {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: -11%;
  width: 77%;
  height: calc(100% - 60px);
  max-height: 600px;
  background-color: #113a4c;
  z-index: -1;
}
@media (max-width: 1024px) {
  .hero__background {
    width: 100%;
    left: 0;
  }
}
.hero__title {
  padding-left: 70px;
  padding-right: 80px;
  width: calc(66% - 24px);
  height: calc(100% - 60px);
  max-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .hero__title {
    width: calc(60% - 24px);
  }
}
@media (max-width: 768px) {
  .hero__title {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.hero__title h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 500;
  font-family: "Halyard-display-medium", sans-serif;
  margin: 0;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .hero__title h1 {
    font-size: 48px;
  }
}
.hero__image {
  position: absolute;
  right: -11%;
  top: 80px;
  width: 77%;
  height: calc(100% - 60px);
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 58, 76, 0.7), transparent), url("/assets/hero-img-alt.jpg");
  background-size: cover;
  background-position: left;
}
@media (max-width: 768px) {
  .hero__image {
    width: 100vw;
    height: auto;
    left: -25px;
    aspect-ratio: 16/10;
    position: inherit;
  }
}

.hero--alt .container {
  position: relative;
}
.hero--alt .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: -11%;
  height: 100%;
  width: calc(111% - 25px);
  background-color: #113a4c;
  z-index: -1;
}
@media (max-width: 768px) {
  .hero--alt .container:before {
    left: 0;
    width: 100%;
  }
}
.hero--alt__content {
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
  padding-left: 70px;
}
@media (max-width: 768px) {
  .hero--alt__content {
    padding-left: 0px;
  }
}
.hero--alt__title {
  font-size: 82px;
  margin: 0;
  line-height: 1.06;
  color: #ffffff;
  font-family: "halyard-display-medium", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 768px) {
  .hero--alt__title {
    font-size: 48px;
  }
}
.hero--alt__description {
  font-size: 24px;
  max-width: 500px;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.06;
  font-family: "halyard-display-regular", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 768px) {
  .hero--alt__description {
    font-size: 20px;
  }
}

.messageAlert {
  margin-top: 120px;
  background-color: #9de2e7;
}
@media (max-width: 768px) {
  .messageAlert {
    margin-top: 80px;
  }
}
.messageAlert__title h2 {
  margin: 0;
  font-family: "Halyard-display-medium", sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 106%;
  color: #113a4c;
}
@media (max-width: 768px) {
  .messageAlert__title h2 {
    font-size: 24px;
  }
}
.messageAlert .container {
  max-width: 1100px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.mainText {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .mainText {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.mainText__container {
  position: relative;
}
.mainText__container:before {
  content: "";
  position: absolute;
  top: -60px;
  left: -70px;
  width: 45%;
  height: calc(100% + 150px);
  background-color: #f8f2f3;
  z-index: -1;
}
.mainText__title h2 {
  font-family: "Halyard-display-medium", sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 106%;
  margin-left: 70px;
}
@media (max-width: 768px) {
  .mainText__title h2 {
    margin-left: 0;
  }
}
.mainText__text {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.mainText__text p {
  font-family: "halyard-display-medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.125rem;
  line-height: 1.1764705882;
}
@media (max-width: 768px) {
  .mainText__text p {
    font-size: 32px;
  }
}

.homeSlider__container {
  position: relative;
}
.homeSlider__container:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 80%;
  background-color: #f8f2f3;
}
.homeSlider .swiper-wrapper {
  display: flex;
  align-items: center; /* Center slides vertically */
}
.homeSlider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60% !important;
}
.homeSlider .swiper-slide img {
  width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .homeSlider .swiper-slide {
    width: 90% !important;
  }
}
.homeSlider .swiper-button-next,
.homeSlider .swiper-button-prev {
  width: 65px;
  height: 65px;
  background-color: #fff;
  border: 1px solid #000;
  pointer-events: all;
  outline: none;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out;
}
.homeSlider .swiper-button-next:after,
.homeSlider .swiper-button-prev:after {
  height: 0;
  width: 0;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #000;
  border-top: 5px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background-color: #000;
}
.homeSlider .swiper-button-next:hover:after,
.homeSlider .swiper-button-prev:hover:after {
  border-left: 5px solid #fff;
}
@media (max-width: 768px) {
  .homeSlider .swiper-button-next,
  .homeSlider .swiper-button-prev {
    display: none;
  }
}
.homeSlider .swiper-button-prev {
  transform: rotate(180deg);
  transform-origin: center;
}
.homeSlider .swiper-pagination {
  display: none;
}
@media (max-width: 768px) {
  .homeSlider .swiper-pagination {
    display: block;
    bottom: -20px !important;
  }
}
.homeSlider .swiper-pagination-bullet-active {
  background-color: #000 !important;
}

.footer {
  background-color: #000000;
  padding-top: 110px;
  padding-bottom: 70px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.footer * {
  color: #ffffff;
}
.footer a {
  transition: opacity 0.3s ease-in-out;
}
.footer a:hover {
  opacity: 0.7;
}
.footer svg {
  height: 20px;
  width: auto;
  fill: #ffffff;
}
.footer__top {
  display: flex;
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }
}
.footer__logo {
  filter: invert(1);
  width: 25%;
}
.footer__logo img {
  width: 140px;
  height: auto;
}
@media (max-width: 768px) {
  .footer__logo {
    width: 100%;
    margin-bottom: 40px;
  }
}
.footer__contactInfo ul {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 768px) {
  .footer__contactInfo ul {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.footer__contactInfo ul li {
  font-size: 1.25rem;
  line-height: 150%;
  margin-bottom: 20px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  margin-top: 100px;
  border-top: 1px solid #2d2d2d;
}
@media (max-width: 768px) {
  .footer__bottom {
    margin-top: 30px;
  }
}
.footer__legal {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer__legal {
    flex-wrap: wrap;
  }
}
.footer__legal p {
  font-size: 14px;
  margin: 0;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.section-content {
  padding-top: 100px;
  padding-bottom: 20px;
}

.editor p {
  margin-bottom: 25px;
  line-height: 1.5;
  font-family: "Halyard-text-regular", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}
.editor h3 {
  margin-bottom: 25px;
  padding-top: 25px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-family: "halyard-display-medium", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.editor h4 {
  margin-bottom: 25px;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "halyard-display-medium", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.editor h5 {
  margin-bottom: 25px;
  font-family: "halyard-text-medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.4;
}
.editor a {
  font-weight: 500;
  font-style: normal;
}
.editor a:hover {
  color: #fd733c;
}
.editor ul {
  margin-top: 50px;
  list-style: none;
}
.editor ul li + li {
  margin-top: 15px;
}
.editor ul li {
  padding-left: 37px;
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  font-family: "Halyard-text-regular", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.editor ul li:before {
  position: absolute;
  top: 12px;
  left: 0;
  height: 6px;
  width: 6px;
  content: "";
  background-color: #000;
}
.editor ul li:last-child {
  margin-bottom: 50px;
}

.content-divider {
  margin-right: auto;
  margin-left: auto;
  height: 1px;
  width: calc(100% - 48px);
  max-width: 1100px;
  background-color: rgba(0, 0, 0, 0.2);
}

.content-divider:not(:first-child) {
  margin-top: 80px;
}/*# sourceMappingURL=style.css.map */