html {
  scroll-behavior: smooth;
}

body {
  font-family: "Texgyreadventor", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: #2A334A;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (max-width: 1023px) {
  body::-webkit-scrollbar {
    width: 6px;
    height: 3px;
  }
}
@media screen and (max-width: 1023px) {
  body::-webkit-scrollbar-button {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  body::-webkit-scrollbar-track {
    background-color: transparent;
  }
}
@media screen and (max-width: 1023px) {
  body::-webkit-scrollbar-track-piece {
    background-color: transparent;
  }
}
@media screen and (max-width: 1023px) {
  body::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #EBBD79;
    border-radius: 3px;
  }
}
body.no-scroll {
  overflow: hidden;
}

.font-title {
  font-family: "Texgyreadventor", sans-serif;
  font-weight: 400;
}

.btn {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  padding: 17px 34px;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 17px 46px;
  }
}
.btn svg {
  margin-left: 10px;
}
.btn.btn__primary {
  color: #03132C;
  background: #EBBD79;
}
.btn.btn__primary:hover {
  background: #F4D6A9;
}
.btn.btn__primary {
  color: #03132C;
  background: #EBBD79;
}
.btn.btn__primary:hover {
  background: #F4D6A9;
}
.btn.btn__secondary {
  color: #03132C;
  background: #E8F1F9;
}
.btn.btn__secondary:hover {
  background: #EBBD79;
}
.btn.btn__borderDefault {
  color: #1B3356;
  background: #fff;
  border: 1px solid #D9DCDF;
}
.btn.btn__borderDefault:hover {
  border: 1px solid #1B3356;
  color: #03132C;
}
.btn.btn__borderPrimary {
  color: #EDC180;
  background: transparent;
  border: 1px solid #EBBD79;
}
.btn.btn__borderPrimary:hover {
  background: #EBBD79;
  color: #03132C;
}
.btn.btn__borderInfo {
  color: #03132C;
  background: #E8F1F9;
}
.btn.btn__borderInfo:hover {
  background: #EBBD79;
}

.link__social {
  width: 56px;
  height: 56px;
  border: 1px solid #183562;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.link__social svg {
  max-width: 24px;
  max-height: 24px;
}
.link__social svg path {
  transition: all 0.3s ease;
}
.link__social:hover {
  background: #FFFFFF;
}
.link__social:hover svg path {
  fill: #03132C;
}

.container {
  max-width: 1322px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1439px) {
  .container {
    max-width: 1024px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media screen and (max-width: 1023px) {
  .container {
    max-width: 750px;
  }
}
.container__min {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1023px) {
  .container__min {
    max-width: 750px;
  }
}

.mobMenu {
  background: #05142A;
  position: fixed;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(-100%);
  z-index: 10;
  padding-top: 66px;
  background-image: url(../image/mobMenu-bg.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .mobMenu {
    display: none !important;
  }
}
.mobMenu.active {
  transform: translateX(0);
}
.mobMenu__menu {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobMenu__menu a {
  text-align: center;
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-decoration: none;
}
.mobMenu__menu a:last-child {
  margin-bottom: 0;
}
.mobMenu__buttons {
  margin-bottom: 64px;
  display: flex;
  justify-content: center;
}
.mobMenu__language {
  display: flex;
  justify-content: center;
  position: relative;
}
.mobMenu__language.open a {
  opacity: 1;
  position: relative;
}
.mobMenu__language a {
  position: absolute;
  margin: 0 4px;
  width: 48px;
  height: 48px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  opacity: 0;
}
.mobMenu__language a.active {
  position: relative;
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.35);
}

.header {
  position: fixed;
  z-index: 11;
  left: 0;
  right: 0;
  top: 0;
  padding: 24px 0;
  transition: all 0.6s ease;
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 1023px) {
  .header {
    padding: 10px 0;
    transition: all 0.4s ease;
  }
}
@media screen and (max-width: 1023px) {
  .header.active {
    background: #05142A !important;
    border-bottom: 1px solid #2A334A !important;
  }
}
.header.active .btnOpen {
  display: none;
}
.header.active .btnClose {
  display: block;
}
.header .header__menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header.scroll {
  padding: 15px 0;
  background-color: #fff;
  border-bottom: 1px solid #E8EEF9;
}
.header.scroll .header__menu a {
  color: #03132C;
}
.header.scroll .header__language a {
  color: #03132C;
}
.header.scroll .header__language a.active {
  border: 1px solid rgba(3, 19, 44, 0.15);
  color: rgba(3, 19, 44, 0.75);
}
@media screen and (max-width: 1023px) {
  .header.scroll {
    padding: 10px 0;
  }
}
.header__logo {
  flex: 1 0;
}
@media screen and (max-width: 1023px) {
  .header__logo svg {
    width: 90px;
    height: auto;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 75px;
}
@media screen and (max-width: 1439px) {
  .header__container {
    padding: 0 15px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 0;
}
@media screen and (max-width: 1023px) {
  .header__nav {
    display: none;
  }
}
.header__btnMob {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__btnMob {
    display: block;
  }
}
.header__btnMob .btnOpen {
  display: block;
}
.header__btnMob .btnClose {
  display: none;
}
.header__menu {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .header__menu {
    display: none;
  }
}
.header__menu .item {
  padding: 0 16px;
}
.header__menu a {
  transition: all 0.3s ease;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  margin: 0px 14px;
}
.header__menu a:after {
  position: absolute;
  content: "";
  left: 50%;
  height: 1px;
  transform: translateX(-50%);
  width: 0;
  bottom: -5px;
  background: #EBBD79;
  transition: all 0.3s ease;
}
.header__menu a:hover:after {
  width: 100%;
}
.header__language {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
  margin-right: 4px;
}
.header__language.open a {
  opacity: 1;
  position: relative;
}
.header__language a {
  position: absolute;
  margin: 0 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  opacity: 0;
}
.header__language a:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  bottom: -5px;
  height: 1px;
  background-color: #EBBD79;
  width: 0;
}
.header__language a:hover:after {
  width: 100%;
}
.header__language a.active {
  position: relative;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.85);
}
.header__language a.active:after {
  display: none;
}

.footer {
  background: #03132C;
  z-index: 4;
  position: absolute;
  width: 100%;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 54px;
  }
}
.footer__logo {
  margin-bottom: 30px;
  display: block;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo svg {
    width: 90px;
    height: auto;
  }
}
.footer__desc {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  opacity: 0.8;
  max-width: 157px;
}
@media screen and (max-width: 767px) {
  .footer__desc {
    max-width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }
}
.footer__desc-btn {
  display: none;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__desc-btn {
    display: flex;
    margin-bottom: 32px;
  }
}
.footer__title {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .footer__title {
    text-align: center;
    margin-bottom: 12px;
  }
}
.footer__address, .footer__email {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .footer__address, .footer__email {
    text-align: center;
  }
}
.footer__address a, .footer__email a {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-decoration: none;
}
.footer__bookNow {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .footer__bookNow {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__menu {
    text-align: center;
    margin-bottom: 32px;
  }
}
.footer__menu a {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer__menu a:last-child {
  margin-bottom: 0;
}
.footer__menu a:hover {
  color: #EBBD79;
}
.footer__social {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .footer__social {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .footer__social {
    text-align: center;
    justify-content: center;
  }
}
.footer__social a {
  margin-bottom: 16px;
}
@media screen and (max-width: 1023px) {
  .footer__social a {
    margin: 16px 16px 16px 0;
  }
}
@media screen and (max-width: 1023px) {
  .footer__social a:last-child {
    margin: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact {
    margin-bottom: 32px;
  }
}
.footer__content {
  padding: 0 0 32px;
  min-height: 350px;
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding-bottom: 0;
  }
}
.footer__content .footer__row-contact {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .footer__content .footer__row-contact {
    flex-direction: column;
  }
}
.footer__copyright {
  padding: 32px 0 16px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding: 16px 0 22px;
  }
}
.footer__copyright p {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #59739C;
  opacity: 0.8;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright p {
    font-size: 12px;
    line-height: 24px;
  }
}
.footer__copyright p a {
  color: #59739C;
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer__copyright p a:hover {
  opacity: 1;
  color: #fff;
}
.footer__copyright p svg {
  margin-left: 8px;
  display: block;
}
.footer__copyright .scrollTop {
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 767px) {
  .footer__copyright .scrollTop {
    position: absolute;
    top: 47px;
    right: 15px;
  }
}
.footer__copyright .footer__row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright .footer__row {
    margin: 0;
  }
}
.footer__copyright .footer__row-contact {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__copyright .footer__row-contact {
    padding: 0;
    justify-content: center;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright .footer__row-desc {
    width: 33.3333%;
    padding: 0;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright .footer__row-desc p {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright .footer__row-menu {
    width: 33.3333%;
    padding: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright .footer__row-menu p {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright .footer__row-category {
    width: 33.3333%;
    padding: 0;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright .footer__row-category p {
    justify-content: flex-end;
  }
}
.footer__row {
  display: flex;
  margin: 0 -15px;
}
@media screen and (max-width: 767px) {
  .footer__row {
    flex-wrap: wrap;
  }
}
.footer__row-desc {
  padding: 0 15px;
  width: 33.5%;
}
@media screen and (max-width: 1023px) {
  .footer__row-desc {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .footer__row-desc {
    width: 100%;
  }
}
.footer__row-menu {
  padding: 0 15px;
  width: 15.9%;
}
@media screen and (max-width: 1023px) {
  .footer__row-menu {
    width: 19.4%;
  }
}
@media screen and (max-width: 767px) {
  .footer__row-menu {
    width: 100%;
  }
}
.footer__row-category {
  padding: 0 15px;
  width: 19.9%;
}
@media screen and (max-width: 767px) {
  .footer__row-category {
    width: 100%;
  }
}
.footer__row-contact {
  padding: 0 15px;
  width: 30.7%;
}
@media screen and (max-width: 767px) {
  .footer__row-contact {
    width: 100%;
  }
}

.pagination {
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.pagination-arrow {
  margin: 0 8px;
}
.pagination-arrow a, .pagination-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-decoration: none;
}
.pagination-arrow a svg {
  fill: #1B3356;
}
.pagination-arrow span svg {
  fill: #BECBDC;
}
.pagination-item {
  margin: 0 4px;
}
.pagination-item > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}
.pagination-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #1B3356;
  text-decoration: none;
}
.pagination-item a:hover span:after {
  opacity: 1;
}
.pagination-item a span {
  position: relative;
}
.pagination-item a span:after {
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1B3356;
}
.pagination-item.active a {
  background: #1B3356;
  color: #FFFFFF;
}

.step-section {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .step-section {
    margin-bottom: 22px;
  }
}
.step-section .number {
  font-family: "Texgyreadventor", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.05em;
  color: #626C7B;
}
.step-section .number.active {
  color: #EBBD79;
}
.step-section .line {
  margin: 0 12px;
  height: 1px;
  width: 30px;
  background: #E8EEF9;
}

.section-firstPage {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.section-firstPage.scroll {
  z-index: -1;
}
.section-firstPage__bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.section-firstPage__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-firstPage .container {
  position: relative;
  z-index: 2;
}
.section-firstPage__container {
  width: 100%;
  max-width: 742px;
  padding: 0 24px 94px;
}
@media screen and (max-width: 767px) {
  .section-firstPage__container {
    padding: 0 5px 50px;
  }
}
.section-firstPage__container .subTitle {
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 32px;
  color: #EBBD79;
}
@media screen and (max-width: 767px) {
  .section-firstPage__container .subTitle {
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }
}
.section-firstPage__container h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .section-firstPage__container h1 {
    font-size: 54px;
    line-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-firstPage__container h1 {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }
}
.section-firstPage__container h1 span {
  color: #EBBD79;
}
.section-firstPage__container h1 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-firstPage__container h1 br {
    display: block;
  }
}
.section-firstPage__container p.desc {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: #FFFFFF;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .section-firstPage__container p.desc br {
    display: none;
  }
}
.section-firstPage__box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .section-firstPage__box {
    flex-direction: column;
  }
}
.section-firstPage__box .line {
  margin: 0 24px;
  height: 48px;
  width: 1px;
  background: rgba(235, 189, 121, 0.3);
}
@media screen and (max-width: 767px) {
  .section-firstPage__box .line {
    width: 48px;
    height: 1px;
    margin: 21px 0;
  }
}

.section-about {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 4;
  background-color: #fff;
}
.section-about__image {
  position: sticky;
  top: 84px;
  width: 43.2%;
}
@media screen and (max-width: 1023px) {
  .section-about__image {
    top: 66px;
  }
}
@media screen and (max-width: 767px) {
  .section-about__image {
    display: none;
  }
}
.section-about__image img {
  top: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  display: none;
  height: calc(100vh - 84.4px);
  -o-object-fit: cover;
     object-fit: cover;
}
.section-about__image img.active {
  opacity: 1;
  display: block;
}
.section-about .container {
  display: flex;
  justify-content: flex-end;
}
.section-about__container {
  padding: 72px 0;
  width: 56.8%;
}
@media screen and (max-width: 767px) {
  .section-about__container {
    width: 100%;
    padding: 72px 0 0;
  }
}
.section-about__content {
  width: 100%;
  max-width: 743px;
  padding-left: 110px;
}
@media screen and (max-width: 1439px) {
  .section-about__content {
    padding: 0 70px;
  }
}
@media screen and (max-width: 1023px) {
  .section-about__content {
    padding: 0 35px;
  }
}
@media screen and (max-width: 767px) {
  .section-about__content {
    padding: 0 15px;
  }
}
.section-about__title {
  color: #2A334A;
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1023px) {
  .section-about__title {
    font-size: 54px;
    line-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-about__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 22px;
  }
}
.section-about__title span {
  color: #EBBD79;
}
.section-about__description {
  margin-bottom: 96px;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  opacity: 0.8;
  max-width: 414px;
}
@media screen and (max-width: 1023px) {
  .section-about__description {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .section-about__description {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 22px;
  }
}
.section-about__list {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .section-about__list {
    padding: 0;
  }
}
.section-about__list-item {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .section-about__list-item {
    margin-bottom: 22px;
  }
}
.section-about__list-item:last-child {
  margin-bottom: 0;
}
.section-about__list-item .title {
  font-family: "Texgyreadventor", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  color: #03132C;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .section-about__list-item .title {
    font-size: 22px;
    line-height: 140%;
    padding-left: 56px;
  }
}
.section-about__list-item .title:after {
  content: "";
  background: #626C7B;
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 24px;
  height: 1px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .section-about__list-item .title:after {
    left: 16px;
    transform: translate(0, -50%);
  }
}
.section-about__list-item .title:hover:after {
  width: 48px;
}
@media screen and (max-width: 767px) {
  .section-about__list-item .title:hover:after {
    width: 40px;
    left: 0;
  }
}
.section-about__list-item .desc {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: rgba(42, 51, 74, 0.6);
  max-height: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .section-about__list-item .desc {
    font-size: 14px;
    line-height: 22px;
  }
}
.section-about__list-item .desc .image {
  display: none;
  margin: 22px -15px 4px;
}
@media screen and (max-width: 767px) {
  .section-about__list-item .desc .image {
    display: block;
  }
}
.section-about__list-item .desc .image img {
  width: 100%;
}
.section-about__list-item.active .title:after {
  width: 48px;
  background: #EBBD79;
}
@media screen and (max-width: 767px) {
  .section-about__list-item.active .title:after {
    width: 40px;
    left: 0;
  }
}
.section-about__list-item.active .desc {
  max-height: -moz-max-content;
  max-height: max-content;
  animation-name: example;
  animation-duration: 4s;
  padding: 12px 0 8px;
  overflow: visible;
}

.section-allLuxury {
  padding: 108px 0 116px;
  background-color: #fff;
  z-index: 4;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-allLuxury {
    padding: 72px 0;
  }
}
.section-allLuxury .container {
  max-width: 1152px;
}
@media screen and (max-width: 1439px) {
  .section-allLuxury .container {
    max-width: 1024px;
  }
}
@media screen and (max-width: 1199px) {
  .section-allLuxury .container {
    max-width: 990px;
  }
}
@media screen and (max-width: 1023px) {
  .section-allLuxury .container {
    max-width: 750px;
  }
}
.section-allLuxury hr {
  margin: 24px 0 80px;
  color: #E8EEF9;
  border: 0;
  border-top: 1px solid #E8EEF9;
}
@media screen and (max-width: 767px) {
  .section-allLuxury hr {
    display: none;
  }
}
.section-allLuxury__header {
  margin: 0 -60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .section-allLuxury__header {
    margin: 0 -15px;
  }
}
@media screen and (max-width: 767px) {
  .section-allLuxury__header {
    flex-direction: column;
    margin: 0;
  }
}
.section-allLuxury__title {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: -0.01em;
  color: #03132C;
  width: 50%;
  padding: 0 60px;
}
.section-allLuxury__title span {
  color: #EDC180;
}
.section-allLuxury__title span.padding-left {
  padding-left: 63px;
}
@media screen and (max-width: 767px) {
  .section-allLuxury__title span.padding-left {
    padding-left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .section-allLuxury__title {
    padding: 0 15px;
    font-size: 54px;
    line-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-allLuxury__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 22px;
    padding: 0;
    width: 100%;
  }
}
.section-allLuxury__desc {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  opacity: 0.8;
  width: 50%;
  padding: 0 60px;
}
@media screen and (max-width: 1023px) {
  .section-allLuxury__desc {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .section-allLuxury__desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 28px;
    padding: 0;
    width: 100%;
  }
}
.section-allLuxury__list {
  margin: 0 -60px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .section-allLuxury__list {
    margin: 0 -15px;
  }
}
@media screen and (max-width: 767px) {
  .section-allLuxury__list {
    flex-direction: column;
  }
}
.section-allLuxury__list-item {
  width: 50%;
  padding: 0 60px;
  margin-bottom: 72px;
}
@media screen and (max-width: 1023px) {
  .section-allLuxury__list-item {
    padding: 0 15px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .section-allLuxury__list-item {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .section-allLuxury__list-item:last-child {
    margin-bottom: 0;
  }
}
.section-allLuxury__list-item .item {
  display: flex;
}
.section-allLuxury__list-item .item__icon {
  width: 48px;
  margin-right: 23px;
}
@media screen and (max-width: 767px) {
  .section-allLuxury__list-item .item__icon {
    width: 45px;
  }
}
.section-allLuxury__list-item .item__icon svg {
  width: 100%;
  height: auto;
}
.section-allLuxury__list-item .item__box {
  flex: 1 0;
}
.section-allLuxury__list-item .item__box ul {
  padding: 0;
  margin: 0;
}
.section-allLuxury__list-item .item__box ul li {
  padding-left: 11px;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  opacity: 0.8;
  position: relative;
}
.section-allLuxury__list-item .item__box ul li:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #2A334A;
  left: 0;
  top: 10px;
}
.section-allLuxury__list-item .item__name {
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 24px;
  color: #03132C;
}
@media screen and (max-width: 767px) {
  .section-allLuxury__list-item .item__name {
    font-size: 22px;
    line-height: 31px;
    margin-bottom: 8px;
  }
}

.section-bookYour {
  height: 700px;
  display: flex;
  align-items: flex-end;
  z-index: 4;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-bookYour {
    height: 579px;
  }
}
.section-bookYour__bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.section-bookYour__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-bookYour .container {
  position: relative;
  z-index: 2;
}
.section-bookYour__container {
  width: 100%;
  max-width: 742px;
  padding: 0 0 94px;
}
@media screen and (max-width: 767px) {
  .section-bookYour__container {
    padding: 0 5px 50px;
  }
}
.section-bookYour__container h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .section-bookYour__container h2 {
    font-size: 54px;
    line-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-bookYour__container h2 {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 36px;
  }
}
.section-bookYour__container h2 span {
  color: #EBBD79;
}
.section-bookYour__container h2 br {
  display: block;
}
.section-bookYour__container p.desc {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: #FFFFFF;
  opacity: 0.8;
}
.section-bookYour__box {
  display: flex;
  align-items: center;
}
.section-bookYour__box .line {
  margin: 0 24px;
  height: 48px;
  width: 1px;
  background: rgba(235, 189, 121, 0.3);
}
@media screen and (max-width: 767px) {
  .section-bookYour__box .line {
    margin: 0 16px;
  }
}

.section-safestTravel {
  background-color: #fff;
  position: relative;
  z-index: 4;
  padding: 112px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-safestTravel {
    padding: 72px 0 0;
  }
}
.section-safestTravel__top {
  margin-bottom: 112px;
}
.section-safestTravel__top .container {
  max-width: 1152px;
}
@media screen and (max-width: 1023px) {
  .section-safestTravel__top {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-safestTravel__top {
    margin-bottom: 32px;
  }
}
.section-safestTravel__header {
  margin: 0 -60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .section-safestTravel__header {
    margin: 0 -15px;
  }
}
@media screen and (max-width: 767px) {
  .section-safestTravel__header {
    margin: 0;
    flex-direction: column;
  }
}
.section-safestTravel__title {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #03132C;
  width: 50%;
  padding: 0 60px;
}
@media screen and (max-width: 1023px) {
  .section-safestTravel__title {
    font-size: 54px;
    line-height: 54px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .section-safestTravel__title {
    padding: 0;
    margin-bottom: 22px;
    font-size: 32px;
    line-height: 36px;
    width: 100%;
  }
}
.section-safestTravel__desc {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  opacity: 0.8;
  width: 50%;
  padding: 0 60px;
}
@media screen and (max-width: 1023px) {
  .section-safestTravel__desc {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .section-safestTravel__desc {
    padding: 0;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
}
.section-safestTravel__list-item {
  position: relative;
  margin-bottom: 112px;
  counter-increment: step-counter;
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item {
    margin-bottom: 44px;
    padding-bottom: 260px;
  }
}
.section-safestTravel__list-item .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item .box {
    margin-bottom: 32px;
  }
}
.section-safestTravel__list-item .image {
  position: relative;
  overflow: hidden;
}
.section-safestTravel__list-item h3 {
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  color: #03132C;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item h3 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 28px;
  }
}
.section-safestTravel__list-item h3 span {
  color: #EBBD79;
}
.section-safestTravel__list-item h3:after {
  content: counter(step-counter);
  position: absolute;
  font-family: "Texgyreadventor", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #EBBD79;
  top: 0;
  left: -12px;
  transform: translate(-100%, -100%);
}
.section-safestTravel__list-item h3:before {
  content: "";
  width: 42px;
  height: 1px;
  background-color: rgba(42, 51, 74, 0.2);
  position: absolute;
  transform: rotate(135deg);
  top: -3px;
  left: -26px;
}
.section-safestTravel__list-item p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item p {
    font-size: 14px;
    line-height: 22px;
  }
}
.section-safestTravel__list-item:nth-child(odd) .image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: calc((100vw - 1292px) / 2 + 595px);
}
@media screen and (max-width: 1439px) {
  .section-safestTravel__list-item:nth-child(odd) .image {
    width: calc((100vw - 994px) / 2 + 394px);
  }
}
@media screen and (max-width: 1023px) {
  .section-safestTravel__list-item:nth-child(odd) .image {
    width: calc((100vw - 720px) / 2 + 270px);
  }
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item:nth-child(odd) .image {
    width: 100%;
    height: 260px;
    top: inherit;
    left: 0;
  }
}
.section-safestTravel__list-item:nth-child(odd) .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-safestTravel__list-item:nth-child(odd) .box {
  min-height: 393px;
  width: 100%;
  border-top: 1px solid #E8EEF9;
  max-width: 697px;
  padding: 64px 201px 36px 85px;
}
@media screen and (max-width: 1439px) {
  .section-safestTravel__list-item:nth-child(odd) .box {
    max-width: 600px;
    padding: 64px 85px 36px 85px;
  }
}
@media screen and (max-width: 1023px) {
  .section-safestTravel__list-item:nth-child(odd) .box {
    max-width: 450px;
    padding: 64px 45px 36px 45px;
  }
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item:nth-child(odd) .box {
    max-width: 100%;
    padding: 32px 0 0 20px;
    border-top: 0;
    min-height: auto;
  }
}
.section-safestTravel__list-item:nth-child(even) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item:nth-child(even) {
    margin-bottom: 44px;
  }
}
.section-safestTravel__list-item:nth-child(even) .container {
  display: flex;
  justify-content: flex-end;
}
.section-safestTravel__list-item:nth-child(even) .image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc((100vw - 1292px) / 2 + 496px);
}
@media screen and (max-width: 1439px) {
  .section-safestTravel__list-item:nth-child(even) .image {
    width: calc((100vw - 994px) / 2 + 394px);
  }
}
@media screen and (max-width: 1023px) {
  .section-safestTravel__list-item:nth-child(even) .image {
    width: calc((100vw - 720px) / 2 + 270px);
  }
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item:nth-child(even) .image {
    width: 100%;
    height: 260px;
    top: inherit;
    right: 0;
  }
}
.section-safestTravel__list-item:nth-child(even) .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-safestTravel__list-item:nth-child(even) .box {
  min-height: 416px;
  width: 100%;
  border-top: 1px solid #E8EEF9;
  max-width: 796px;
  padding: 64px 85px 36px 201px;
}
@media screen and (max-width: 1439px) {
  .section-safestTravel__list-item:nth-child(even) .box {
    padding: 64px 85px 36px;
    max-width: 600px;
  }
}
@media screen and (max-width: 1023px) {
  .section-safestTravel__list-item:nth-child(even) .box {
    max-width: 450px;
    padding: 64px 45px 36px 45px;
  }
}
@media screen and (max-width: 767px) {
  .section-safestTravel__list-item:nth-child(even) .box {
    max-width: 100%;
    padding: 32px 0 0 20px;
    border-top: 0;
    min-height: auto;
  }
}

.section-image {
  background-color: #fff;
  z-index: 4;
  position: relative;
  height: 624px;
}
@media screen and (max-width: 1023px) {
  .section-image {
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .section-image {
    display: none;
  }
}
.section-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-map {
  position: relative;
  z-index: 4;
  background-color: #fff;
  padding: 112px 0;
}
@media screen and (max-width: 767px) {
  .section-map {
    padding: 72px 0;
  }
}
.section-map__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .section-map__container {
    flex-direction: column;
  }
}
.section-map__content {
  width: 100%;
  max-width: 465px;
}
@media screen and (max-width: 1439px) {
  .section-map__content {
    min-width: 400px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .section-map__content {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .section-map__content {
    min-width: auto;
    margin-bottom: 28px;
  }
}
.section-map__title {
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #03132C;
}
@media screen and (max-width: 1023px) {
  .section-map__title {
    font-size: 54px;
    line-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-map__title {
    font-size: 32px;
    line-height: 36px;
  }
}
.section-map__title span {
  color: #EBBD79;
}
.section-map__subTitle {
  margin-bottom: 40px;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 32px;
  color: #03132C;
}
@media screen and (max-width: 767px) {
  .section-map__subTitle {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 22px;
  }
}
.section-map__desc {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .section-map__desc {
    font-size: 14px;
    line-height: 22px;
  }
}
.section-map__map {
  position: relative;
  padding-bottom: 108px;
}
@media screen and (max-width: 767px) {
  .section-map__map {
    display: none;
  }
}
.section-map__map svg {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1439px) {
  .section-map__map svg {
    width: 100%;
  }
}
.section-map__map img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 40%;
     object-position: 0 40%;
  max-height: 150px;
  max-width: 500px;
}
.section-map__mapMob {
  display: none;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section-map__mapMob {
    display: flex;
  }
}

.section-conciergeService {
  position: relative;
  z-index: 4;
  background-color: #fff;
  padding: 112px 0;
}
@media screen and (max-width: 767px) {
  .section-conciergeService {
    padding: 72px 0;
  }
}
.section-conciergeService__title {
  margin-bottom: 80px;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #03132C;
}
@media screen and (max-width: 1023px) {
  .section-conciergeService__title {
    margin-bottom: 100px;
    font-size: 54px;
    line-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-conciergeService__title {
    font-size: 32px;
    line-height: 36px;
    padding: 0 20px;
    margin-bottom: 72px;
  }
}
.section-conciergeService__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .section-conciergeService__container {
    flex-direction: column-reverse;
  }
}
.section-conciergeService__image {
  flex: 1 0;
  padding-left: 83px;
  width: 43%;
}
@media screen and (max-width: 1439px) {
  .section-conciergeService__image {
    padding-left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .section-conciergeService__image {
    width: 100vw;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
  }
}
.section-conciergeService__image img {
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .section-conciergeService__image img {
    height: 260px;
    width: 100%;
  }
}
.section-conciergeService__image img.active {
  display: block;
  opacity: 1;
}
.section-conciergeService__content {
  border-top: 1px solid #E8EEF9;
  width: 100%;
  max-width: 595px;
  padding: 0 46px 0 109px;
}
@media screen and (max-width: 1439px) {
  .section-conciergeService__content {
    width: 50%;
    padding: 0 60px;
  }
}
@media screen and (max-width: 1023px) {
  .section-conciergeService__content {
    margin-bottom: 28px;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
.section-conciergeService__tabNav {
  display: flex;
  margin: 0 -36px 57px;
}
@media screen and (max-width: 1023px) {
  .section-conciergeService__tabNav {
    justify-content: center;
    margin: -54px 0 38px;
  }
}
@media screen and (max-width: 767px) {
  .section-conciergeService__tabNav {
    margin: -56px 0 29px;
    justify-content: space-between;
  }
}
.section-conciergeService__tabNav .item {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #374764;
  opacity: 0.8;
  cursor: pointer;
  padding: 15px 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-conciergeService__tabNav .item {
    font-size: 15px;
    line-height: 24px;
    padding: 16px;
  }
}
.section-conciergeService__tabNav .item.active {
  color: #03132C;
  opacity: 1;
}
.section-conciergeService__tabNav .item.active:after {
  background: #EDC180;
}
.section-conciergeService__tabNav .item:hover {
  opacity: 1;
}
.section-conciergeService__tabNav .item:after {
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
}
@media screen and (max-width: 1023px) {
  .section-conciergeService__tabNav .item:after {
    top: inherit;
    bottom: -1px;
  }
}
.section-conciergeService__tabNav .item:only-child {
  display: none;
}
.section-conciergeService__tabBox .item {
  display: none;
}
.section-conciergeService__tabBox .item.active {
  display: block;
}
.section-conciergeService__tabBox .item h3 {
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  color: #03132C;
}
@media screen and (max-width: 767px) {
  .section-conciergeService__tabBox .item h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.section-conciergeService__tabBox .item p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .section-conciergeService__tabBox .item p {
    font-size: 14px;
    line-height: 22px;
  }
}

.section-carList {
  position: relative;
  z-index: 4;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  .section-carList {
    padding: 112px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-carList {
    padding: 73px 0;
  }
}
.section-carList__title {
  margin-bottom: 80px;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #03132C;
}
@media screen and (max-width: 1023px) {
  .section-carList__title {
    margin-bottom: 100px;
    font-size: 54px;
    line-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-carList__title {
    font-size: 32px;
    line-height: 36px;
    padding: 0 20px;
    margin-bottom: 72px;
  }
}
.section-carList__list {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .section-carList__list {
    flex-wrap: wrap;
  }
}
.section-carList__item {
  width: 25%;
  flex: 1 0;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .section-carList__item {
    width: 50%;
    flex: 50% 0;
  }
}
@media screen and (max-width: 767px) {
  .section-carList__item {
    width: 100%;
    flex: 100% 0;
  }
}
.section-carList__item .item {
  z-index: 2;
  height: 721px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
  padding: 56px 40px 40px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section-carList__item .item {
    height: 354px;
    padding: 28px 20px;
  }
}
.section-carList__item .item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(3, 19, 44, 0) 0%, #03132C 100%);
  z-index: 2;
  transition: all 0.3s ease;
}
.section-carList__item .item:hover {
  z-index: 3;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 114%;
}
@media screen and (max-width: 767px) {
  .section-carList__item .item:hover {
    position: relative;
    width: 100%;
  }
}
.section-carList__item .item:hover .desc {
  height: -moz-max-content;
  height: max-content;
}
.section-carList__item .item:hover:after {
  opacity: 0;
}
.section-carList__item img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s ease;
}
.section-carList__item-box {
  position: relative;
  z-index: 3;
}
.section-carList__item-box .icon {
  margin-bottom: 23px;
  height: 56px;
  width: 56px;
}
@media screen and (max-width: 767px) {
  .section-carList__item-box .icon {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .section-carList__item-box .icon svg {
    height: 56px;
    width: 56px;
  }
}
.section-carList__item-box .icon img {
  width: 56px;
  height: 56px;
}
.section-carList__item-box h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  color: #EBBD79;
}
@media screen and (max-width: 767px) {
  .section-carList__item-box h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.section-carList__item-box p {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  color: #FFF;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .section-carList__item-box p {
    font-size: 24px;
    line-height: 28px;
  }
}
.section-carList__item-box .desc {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  opacity: 0.8;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 0;
}
@media screen and (max-width: 767px) {
  .section-carList__item-box .desc {
    font-size: 12px;
    line-height: 18px;
  }
}
.section-carList__item-box .desc ul li {
  padding-left: 22px;
  position: relative;
}
.section-carList__item-box .desc ul li:before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  position: absolute;
  left: 9px;
  top: 10px;
}

.section-corporateClients {
  position: relative;
  z-index: 4;
  background-color: #fff;
  padding: 124px 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .section-corporateClients {
    padding: 124px 0 0;
  }
}
.section-corporateClients__title {
  margin-bottom: 80px;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #03132C;
}
@media screen and (max-width: 1023px) {
  .section-corporateClients__title {
    margin-bottom: 48px;
    font-size: 54px;
    line-height: 54px;
  }
}
.section-corporateClients__box {
  width: 686px;
}
@media screen and (max-width: 1439px) {
  .section-corporateClients__box {
    width: 600px;
  }
}
@media screen and (max-width: 1023px) {
  .section-corporateClients__box {
    width: 100%;
  }
}
.section-corporateClients__image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc((100vw - 1292px) / 2 + 488px);
}
@media screen and (max-width: 1439px) {
  .section-corporateClients__image {
    width: calc((100vw - 994px) / 2 + 294px);
  }
}
@media screen and (max-width: 1023px) {
  .section-corporateClients__image {
    display: none;
  }
}
.section-corporateClients__image img {
  width: 100%;
  height: 562px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-corporateClients__image .desc {
  padding-top: 48px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1439px) {
  .section-corporateClients__image .desc {
    padding-top: 20px;
  }
}
.section-corporateClients__image .desc span:first-child {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #9299A4;
  opacity: 0.4;
  padding-right: 170px;
}
@media screen and (max-width: 1439px) {
  .section-corporateClients__image .desc span:first-child {
    padding-right: 70px;
    font-size: 34px;
    line-height: 40px;
  }
}
.section-corporateClients__image .desc span:last-child {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #2A334A;
  opacity: 0.4;
  padding-right: 33px;
}
@media screen and (max-width: 1439px) {
  .section-corporateClients__image .desc span:last-child {
    padding-right: 15px;
    font-size: 34px;
    line-height: 40px;
  }
}
.section-corporateClients__content {
  position: relative;
}
.section-corporateClients__content .container {
  display: flex;
  justify-content: flex-end;
}
.section-corporateClients__content .box {
  padding: 128px 110px 128px 94px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .section-corporateClients__content .box {
    padding: 60px 85px;
  }
}
@media screen and (max-width: 1023px) {
  .section-corporateClients__content .box {
    padding: 0;
    margin-bottom: 48px;
  }
}
.section-corporateClients__content .box:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100vh;
  left: 0;
  top: 0;
  background: #D9D9D9;
}
@media screen and (max-width: 1023px) {
  .section-corporateClients__content .box:before {
    display: none;
  }
}
.section-corporateClients__content .box p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  opacity: 0.8;
}
.section-corporateClients__content .image img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1023px) {
  .section-corporateClients__content .image img {
    width: 100vw;
    display: block;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.section-yourFirst {
  background: #05142A;
  padding: 78px 0;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 1023px) {
  .section-yourFirst {
    padding: 78px 0 0;
  }
}
.section-yourFirst__container {
  display: flex;
  justify-content: space-between;
  padding: 0 46px 0 83px;
}
@media screen and (max-width: 1439px) {
  .section-yourFirst__container {
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .section-yourFirst__container {
    flex-direction: column-reverse;
  }
}
.section-yourFirst__image {
  max-width: 614px;
  width: 100%;
  padding-top: 62px;
}
@media screen and (max-width: 1439px) {
  .section-yourFirst__image {
    width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  .section-yourFirst__image {
    display: none;
  }
}
.section-yourFirst__image img {
  width: 100%;
  opacity: 0;
  display: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .section-yourFirst__image img {
    width: 100%;
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.section-yourFirst__image img.active {
  opacity: 1;
  display: block;
}
.section-yourFirst__slider {
  width: 100%;
  display: none;
}
@media screen and (max-width: 1023px) {
  .section-yourFirst__slider {
    display: block;
  }
}
.section-yourFirst__slider .slider .slick-list {
  margin-bottom: 34px;
}
.section-yourFirst__slider .slider .slick-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}
.section-yourFirst__slider .slider .slick-dots li {
  margin: 0 5px;
}
.section-yourFirst__slider .slider .slick-dots li.slick-active button {
  background: #EBBD79;
}
.section-yourFirst__slider .slider .slick-dots li button {
  padding: 0;
  font-size: 0;
  border-radius: 50%;
  border: 0;
  width: 8px;
  height: 8px;
  background: #2A334A;
  display: block;
  transition: all 0.3s ease;
}
.section-yourFirst__slider .slider__item-title {
  padding-bottom: 9px;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 16px;
  position: relative;
}
.section-yourFirst__slider .slider__item-title:after {
  content: "";
  background: #EBBD79;
  width: 49px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-yourFirst__slider .slider__item-image {
  width: 100%;
  height: auto;
}
.section-yourFirst__content {
  max-width: 440px;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .section-yourFirst__content {
    width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  .section-yourFirst__content {
    width: 100%;
    max-width: 100%;
  }
}
.section-yourFirst__title {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 74px;
  color: #FFF;
  margin-bottom: 32px;
}
@media screen and (max-width: 1023px) {
  .section-yourFirst__title {
    font-size: 54px;
    line-height: 54px;
  }
}
.section-yourFirst__title span {
  color: #EBBD79;
}
.section-yourFirst__desc {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 72px;
}
@media screen and (max-width: 1023px) {
  .section-yourFirst__list {
    display: none;
  }
}
.section-yourFirst__list li {
  margin-bottom: 20px;
  padding-left: 64px;
  font-family: "Texgyreadventor", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #CDD0D4;
  opacity: 0.8;
  cursor: pointer;
  position: relative;
}
.section-yourFirst__list li.active {
  color: #FFFFFF;
}
.section-yourFirst__list li.active:before {
  left: 0;
  background: #EBBD79;
  width: 48px;
}
.section-yourFirst__list li:last-child {
  margin-bottom: 0;
}
.section-yourFirst__list li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 24px;
  height: 1px;
  width: 24px;
  background: #626C7B;
  transition: all 0.3s ease;
}

.section-blog {
  min-height: 100vh;
  padding-top: 186px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-blog {
    padding-top: 126px;
  }
}
.section-blog:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  height: 600px;
  background: #03132C;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section-blog:before {
    height: 345px;
  }
}
.section-blog .container {
  position: relative;
  z-index: 2;
}
.section-blog__title {
  text-align: center;
  margin-bottom: 80px;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .section-blog__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 48px;
  }
}
.section-blog__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.section-blog__list-item {
  width: 33.3333%;
  margin-bottom: 48px;
  padding: 0 15px;
}
@media screen and (max-width: 1023px) {
  .section-blog__list-item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .section-blog__list-item {
    width: 100%;
    margin-bottom: 38px;
  }
}
@media screen and (min-width: 768px) {
  .section-blog__list-item:first-child {
    width: 100%;
    margin-bottom: 122px;
  }
  .section-blog__list-item:first-child .item {
    background-color: #fff;
    display: flex;
  }
  .section-blog__list-item:first-child .item__content {
    padding: 48px 141px 46px 70px;
    border: 1px solid #E8EEF9;
    border-left: 0;
    flex: 1 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section-blog__list-item:first-child .item__content {
    padding: 48px 30px;
  }
}
@media screen and (min-width: 768px) {
  .section-blog__list-item:first-child .item__btn {
    margin-bottom: 18px;
    position: relative;
    top: inherit;
    left: inherit;
    transform: none;
  }
  .section-blog__list-item:first-child .item__btn a {
    width: -moz-max-content;
    width: max-content;
    color: #1B3356;
    background-color: #fff;
  }
  .section-blog__list-item:first-child .item__btn a:hover {
    color: #fff;
    background-color: #1B3356;
  }
  .section-blog__list-item:first-child .item__title {
    font-size: 32px;
    line-height: 37px;
  }
  .section-blog__list-item:first-child .item__desc {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #2A334A;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .section-blog__list-item:first-child .item__image {
    height: auto;
    width: calc((100% + 30px) / 3 - 30px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section-blog__list-item:first-child .item__image {
    width: calc((100% + 30px) / 2 - 30px);
  }
}
@media screen and (max-width: 767px) {
  .section-blog__list-item:first-child {
    margin-bottom: 54px;
  }
  .section-blog__list-item:first-child .item {
    background-color: #fff;
  }
  .section-blog__list-item:first-child .item__content {
    border: 1px solid #E8EEF9;
    border-top: 0;
    padding: 18px 18px 28px;
  }
  .section-blog__list-item:first-child .item__title {
    ont-size: 24px;
    line-height: 28px;
  }
  .section-blog__list-item:first-child .item__desc {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #2A334A;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .section-blog__list-item:first-child .item__image {
    height: 244px;
  }
}
.section-blog__list-item .item {
  display: block;
}
.section-blog__list-item .item:hover .item__title {
  color: #1B3356;
}
.section-blog__list-item .item__image {
  height: 250px;
  display: block;
}
@media screen and (max-width: 767px) {
  .section-blog__list-item .item__image {
    height: 215px;
  }
}
.section-blog__list-item .item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blog__list-item .item__content {
  padding-top: 16px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-blog__list-item .item__content {
    padding-top: 14px;
  }
}
.section-blog__list-item .item__title {
  margin-bottom: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #03132C;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-blog__list-item .item__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
.section-blog__list-item .item__desc {
  display: none;
}
.section-blog__list-item .item__date {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #637693;
}
.section-blog__list-item .item__date svg {
  margin-right: 8px;
}
.section-blog__list-item .item__btn {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
}
.section-blog__list-item .item__btn a {
  padding: 11px 18px;
  background: #1B3356;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  border: 1px solid #1B3356;
  transition: all 0.3s ease;
}
.section-blog__list-item .item__btn a:hover {
  background-color: #fff;
  color: #1B3356;
}

.section-article {
  min-height: 600px;
  padding-top: 164px;
  position: relative;
  margin-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .section-article {
    min-height: 375px;
    padding-top: 126px;
    margin-bottom: 72px;
  }
}
.section-article:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  height: 600px;
  background: #03132C;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section-article:before {
    height: 375px;
  }
}
.section-article .container__min {
  position: relative;
  z-index: 2;
}
.section-article__date {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #626C7B;
}
.section-article__date svg {
  margin-right: 8px;
}
.section-article__title {
  margin-bottom: 44px;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .section-article__title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}
.section-article__image {
  height: 434px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .section-article__image {
    height: 280px;
    margin: 0 -15px 42px;
  }
}
.section-article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-article__content {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .section-article__content {
    padding: 0;
  }
}
.section-article__content p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #2A334A;
  margin-bottom: 32px;
}
.section-article__content p a {
  color: #C7A169;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .section-article__content p {
    font-size: 14px;
    line-height: 22px;
  }
}
.section-article__content .image {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .section-article__content .image {
    margin: 0 -15px 32px;
  }
}
.section-article__content .image .author {
  padding: 8px 0;
  text-align: right;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #637693;
}
@media screen and (max-width: 767px) {
  .section-article__content .image .author {
    padding: 4px 0;
    font-size: 12px;
    line-height: 28px;
  }
}
.section-article__content ul {
  margin-bottom: 40px;
}
.section-article__content ul li {
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: rgba(42, 51, 74, 0.8);
  padding-left: 18px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-article__content ul li {
    padding-right: 18px;
    font-size: 14px;
    line-height: 22px;
  }
}
.section-article__content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EBBD79;
}
@media screen and (max-width: 767px) {
  .section-article__content ul li:before {
    top: 7px;
  }
}
.section-article__content h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  font-family: "Texgyreadventor", sans-serif;
  color: #03132C;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .section-article__content h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 22px;
  }
}
.section-article__content h2 span {
  color: #EBBD79;
}
.section-article__content h3 {
  font-family: "Texgyreadventor", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 29px;
  letter-spacing: -0.01em;
  color: #03132C;
  margin-bottom: 24px;
}
.section-article__content h3 span {
  color: #EBBD79;
}
@media screen and (max-width: 767px) {
  .section-article__content h3 {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 18px;
  }
}
.section-article__content img {
  max-width: 100%;
}
.section-article__download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: #E8EEF9;
}
@media screen and (max-width: 767px) {
  .section-article__download {
    padding: 22px 0;
  }
}
.section-article__download-name {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #03132C;
}
.section-article__download-name svg {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .section-article__download-name {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .section-article__download-link a {
    font-size: 0;
    padding: 0;
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .section-article__download-link a svg {
    margin: 0;
  }
}

.section-recommendedArticles {
  margin-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .section-recommendedArticles {
    margin-bottom: 77px;
  }
}
.section-recommendedArticles__header {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-recommendedArticles__btnAllMobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-recommendedArticles__btnAllMobile {
    display: block;
  }
}
.section-recommendedArticles__btnAllMobile a {
  width: 100%;
}
.section-recommendedArticles__btnAll {
  display: block;
}
@media screen and (max-width: 767px) {
  .section-recommendedArticles__btnAll {
    display: none;
  }
}
.section-recommendedArticles__title {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.01em;
  color: #03132C;
}
@media screen and (max-width: 767px) {
  .section-recommendedArticles__title {
    font-size: 32px;
    line-height: 36px;
  }
}
.section-recommendedArticles__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.section-recommendedArticles__list-item {
  width: 50%;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .section-recommendedArticles__list-item {
    width: 100%;
    margin-bottom: 38px;
  }
}
.section-recommendedArticles__list-item .item {
  display: block;
}
.section-recommendedArticles__list-item .item:hover .item__title {
  color: #1B3356;
}
.section-recommendedArticles__list-item .item__image {
  height: 250px;
  display: block;
}
@media screen and (max-width: 767px) {
  .section-recommendedArticles__list-item .item__image {
    height: 215px;
  }
}
.section-recommendedArticles__list-item .item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-recommendedArticles__list-item .item__content {
  padding-top: 16px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-recommendedArticles__list-item .item__content {
    padding-top: 14px;
  }
}
.section-recommendedArticles__list-item .item__title {
  margin-bottom: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #03132C;
  transition: all 0.3s ease;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-recommendedArticles__list-item .item__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
.section-recommendedArticles__list-item .item__desc {
  display: none;
}
.section-recommendedArticles__list-item .item__date {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #637693;
}
.section-recommendedArticles__list-item .item__date svg {
  margin-right: 8px;
}
.section-recommendedArticles__list-item .item__btn {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
}
.section-recommendedArticles__list-item .item__btn a {
  padding: 11px 18px;
  background: #1B3356;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  border: 1px solid #1B3356;
  transition: all 0.3s ease;
}
.section-recommendedArticles__list-item .item__btn a:hover {
  background-color: #fff;
  color: #1B3356;
}

.article-comments {
  padding: 36px 66px;
  border-width: 1px 0;
  border-style: solid;
  border-color: #E8EEF9;
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #03132C;
}
@media screen and (max-width: 767px) {
  .article-comments {
    padding: 28px 0 34px;
    font-size: 16px;
    line-height: 24px;
  }
}
.article-comments svg {
  margin-bottom: 16px;
}

.section-destinations {
  background: #05142A;
  padding: 144px 0;
}
@media screen and (max-width: 1023px) {
  .section-destinations {
    padding: 112px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-destinations {
    padding: 73px 0;
  }
}
.section-destinations__container {
  display: flex;
  padding: 0 70px;
}
@media screen and (max-width: 1439px) {
  .section-destinations__container {
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .section-destinations__container {
    flex-direction: column-reverse;
  }
}
.section-destinations__map {
  width: 544px;
  height: 544px;
}
@media screen and (max-width: 1439px) {
  .section-destinations__map {
    width: 50%;
    height: auto;
    min-height: 544px;
  }
}
@media screen and (max-width: 1023px) {
  .section-destinations__map {
    width: 100%;
    height: 400px;
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .section-destinations__map {
    display: none;
  }
}
.section-destinations__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-destinations__content {
  flex: 1 0;
  padding: 30px 0 0 93px;
}
@media screen and (max-width: 1439px) {
  .section-destinations__content {
    padding: 30px 0 0 50px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .section-destinations__content {
    padding: 0;
  }
}
.section-destinations__title {
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 74px;
  color: #FFFFFF;
  margin-bottom: 47px;
}
@media screen and (max-width: 1023px) {
  .section-destinations__title {
    font-size: 54px;
    line-height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .section-destinations__title {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 36px;
  }
}
.section-destinations__title span {
  color: #EBBD79;
}
.section-destinations__list {
  display: flex;
  flex-wrap: wrap;
}
.section-destinations__list-item {
  width: 50%;
  margin-bottom: 40px;
  padding: 0 10px 0 40px;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .section-destinations__list-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section-destinations__list-item {
    margin-bottom: 24px;
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .section-destinations__list-item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .section-destinations__list-item.active {
    padding: 0 0 0 59px;
  }
}
.section-destinations__list-item.active .name {
  opacity: 1;
  color: #EDC180;
}
.section-destinations__list-item.active .name:after {
  width: 45px;
  background-image: url(../image/arrow-max.svg);
}
@media screen and (max-width: 767px) {
  .section-destinations__list-item.active .name:after {
    top: 6px;
  }
}
@media screen and (max-width: 767px) {
  .section-destinations__list-item.active .map {
    display: block;
  }
}
.section-destinations__list-item .name {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #F6FAFF;
  opacity: 0.8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-destinations__list-item .name {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 8px;
  }
}
.section-destinations__list-item .name:after {
  position: absolute;
  content: "";
  transform: translateX(-100%);
  background-position: right center;
  background-repeat: no-repeat;
  left: -16px;
  top: 18px;
  width: 26px;
  height: 12px;
  background-image: url(../image/arrow-min.svg);
}
@media screen and (max-width: 767px) {
  .section-destinations__list-item .name:after {
    top: 6px;
  }
}
.section-destinations__list-item .desc {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: -3px;
}
@media screen and (max-width: 767px) {
  .section-destinations__list-item .desc {
    margin-top: 0;
    font-size: 16px;
    line-height: 120%;
  }
}
.section-destinations__list-item .map {
  display: none;
  margin-top: 22px;
  margin-left: -59px;
}
.section-destinations__list-item .map img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup,
.video-popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.9);
  z-index: 111;
  display: none;
}
.popup__block,
.video-popup__block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
@media (max-width: 580px) {
  .popup__block,
  .video-popup__block {
    margin-top: -50px;
  }
}
.popup__title,
.video-popup__title {
  font-size: 34px;
  line-height: 34px;
  color: #fff;
  margin-bottom: 15px;
}
.popup__description,
.video-popup__description {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 21px;
  font-weight: 300;
  width: 400px;
  text-align: center;
}
@media (max-width: 580px) {
  .popup__description,
  .video-popup__description {
    width: 100%;
  }
}
.popup form,
.video-popup form {
  display: flex;
  flex-direction: column;
  width: 400px;
}
@media (max-width: 580px) {
  .popup form,
  .video-popup form {
    width: 90%;
  }
}
.popup form label,
.video-popup form label {
  position: relative;
  margin-bottom: 10px;
}
.popup form label input,
.video-popup form label input {
  width: 100%;
  height: 46px;
  border-radius: 25px;
  border: 0;
  padding: 0px 20px;
  font-size: 15px;
}
.popup form label .error,
.video-popup form label .error {
  font-size: 10px;
  position: absolute;
  right: 15px;
  bottom: 8px;
  color: #bf1e12;
}
.popup form .btn,
.video-popup form .btn {
  width: 100%;
  height: 46px;
  border-radius: 25px;
  border: 0;
  cursor: pointer;
}
.popup .close,
.video-popup .close {
  position: absolute;
  right: 45px;
  top: 30px;
  cursor: pointer;
  transition: 0.6s all;
}
@media (max-width: 580px) {
  .popup .close,
  .video-popup .close {
    right: 20px;
    top: 25px;
  }
}
.popup .close:hover svg,
.video-popup .close:hover svg {
  transform: scale(1.3);
  transition: 0.6s all;
}
.popup .close svg,
.video-popup .close svg {
  width: 30px;
  height: 30px;
  transition: 0.6s all;
}
.popup .close path,
.video-popup .close path {
  fill: #fff;
}

.video-popup__video {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
@media (min-width: 992px) {
  .video-popup__video {
    border-radius: 16px;
    max-height: 80%;
    height: 100%;
    max-width: 80%;
  }
}
.video-popup__video img {
  transition: 0.3s ease;
}
.video-popup__iframe {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.video-popup__iframe iframe {
  width: 100%;
  height: 100%;
}

.split-parent {
  display: inline-block;
}

.split-child {
  overflow: hidden;
}

.slick-slide {
  opacity: 0;
  transition: opacity 1s ease;
}
.slick-active {
  opacity: 1;
}
.slick-active + .slick-cloned {
  opacity: 0;
}
.slick-cloned {
  opacity: 1;
  transition: opacity 1s ease;
}
.slick-cloned + .slick-cloned {
  opacity: 0;
}
.slick-cloned:has(+ .slick-active) {
  opacity: 0;
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.3019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 999px;
  border: none;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}
.btn-play svg {
  width: 11px;
  height: 10px;
}
.btn-play path {
  transition: 0.3s ease;
}
.btn-play:hover {
  background-color: #000;
}
.btn-play:hover path {
  fill: #FFF;
}
.btn-play:active {
  background-color: #FFF;
}
.btn-play:active path {
  fill: rgba(0, 0, 0, 0.3019607843);
}
@media (min-width: 992px) {
  .btn-play {
    width: 70px;
    height: 70px;
    border-radius: 999px;
  }
  .btn-play svg {
    width: auto;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */