/*------------------------------ global ----------------------------------*/
html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: normal;
}
.wrap {
  width: 100%;
  overflow-x: hidden;
}
.container {
  max-width: 1740px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 1739px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 479px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 374px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1739px) {
  .container {
    width: 1160px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    width: 980px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: 708px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 560px;
  }
}
@media screen and (max-width: 575px) {
  .container {
    width: 480px;
  }
}
@media screen and (max-width: 479px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 374px) {
  .container {
    width: 100%;
  }
}
img {
  max-width: 100%;
  height: auto;
}
a,
a:focus,
button,
button:focus,
input,
input:focus {
  outline: none;
  text-decoration: none;
}
.js-tab {
  display: none;
}
.js-tab.active {
  display: block;
}
/*------------------------------ form ----------------------------------*/
.form-checkbox {
  position: relative;
}
.form-checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 37px;
  color: #686868;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.form-checkbox label a {
  color: #9ebb24;
}
.form-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #9ebb24;
  background-color: #ffffff;
}
.form-checkbox input {
  display: none;
}
.form-checkbox input:checked + label::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #9ebb24;
}
.form-group {
  width: 100%;
}
.form-group input {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(0, 8, 16, 0.3);
  border-radius: 30px;
  font-weight: 400;
  font-size: 16px;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .form-group input {
    height: 56px;
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .form-group input {
    height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }
}
.form-group input::-webkit-input-placeholder {
  opacity: 0.3;
  text-transform: uppercase;
}
.form-group input::-moz-placeholder {
  opacity: 0.3;
  text-transform: uppercase;
}
.form-group input:-moz-placeholder {
  opacity: 0.3;
  text-transform: uppercase;
}
.form-group input:-ms-input-placeholder {
  opacity: 0.3;
  text-transform: uppercase;
}
.form-group input:focus {
  border-color: #000810;
}
.form-select {
  width: calc(50% - 10px);
  height: 58px;
  padding: 0 40px 0 20px;
  border: 1px solid rgba(0, 8, 16, 0.3);
  border-radius: 30px;
  background-image: url(../img/icons/chevron.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #000810;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (max-width: 1739px) {
  .form-select {
    height: 56px;
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .form-select {
    width: 100%;
    height: 40px;
    padding: 0 24px 0 10px;
    font-size: 12px;
    background-position: right 10px center;
    background-size: 14px;
  }
}
.form-select:focus {
  outline-color: #000810;
}
/*------------------------------ header ----------------------------------*/
.header {
  position: relative;
  z-index: 100;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 1739px) {
  .header {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 18px 0;
  }
}
.header__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: center;
}
.header__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
}
@media screen and (max-width: 767px) {
  .header__left {
    width: calc(100% / 12 * 7 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .header__left {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
}
.header__center {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__center {
    width: calc(100% / 12 * 5 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .header__center {
    justify-content: flex-start;
  }
}
.header__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 70px;
  justify-content: flex-end;
}
@media screen and (max-width: 1739px) {
  .header__right {
    column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header__right {
    display: none;
  }
}
.header--dark {
  border-bottom-color: rgba(0, 8, 16, 0.1);
}
.header--dark .menu-btn > span {
  color: #000810;
}
.header--dark .menu-btn__icon span {
  background: #000810;
}
.header--dark .tel {
  color: #000810;
}
.header--dark .tel svg {
  fill: #000810;
}
.header--dark .select-link {
  color: #000810;
}
.header--dark .select-link svg {
  stroke: #000810;
}
/*------------------------------ logo ----------------------------------*/
.logo {
  display: block;
  width: 147px;
  height: 59px;
}
@media screen and (max-width: 1739px) {
  .logo {
    width: 104px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .logo {
    width: 96px;
    height: 38px;
  }
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*------------------------------ menu-btn ----------------------------------*/
.menu-btn {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .menu-btn {
    gap: 8px;
  }
}
@media screen and (max-width: 1199px) {
  .menu-btn {
    gap: 6px;
  }
}
.menu-btn > span {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .menu-btn > span {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn > span {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .menu-btn > span {
    font-size: 12px;
  }
}
.menu-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 36px;
  height: 36px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .menu-btn__icon {
    width: 25px;
    height: 25px;
  }
}
.menu-btn__icon span {
  position: relative;
  width: 26px;
  height: 2px;
  margin: 3px 0;
  background: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .menu-btn__icon span {
    width: 19px;
    height: 1px;
    margin: 2px 0;
  }
}
.menu-btn:hover {
  opacity: 0.4;
}
/*------------------------------ tel ----------------------------------*/
.tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .tel {
    gap: 5px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .tel {
    display: none;
  }
}
.tel svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
@media screen and (max-width: 1739px) {
  .tel svg {
    width: 12px;
    height: 12px;
  }
}
.tel:hover {
  opacity: 0.4;
}
/*------------------------------ select-link ----------------------------------*/
.select-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .select-link {
    gap: 6px;
    font-size: 12px;
  }
}
.select-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
}
@media screen and (max-width: 1739px) {
  .select-link svg {
    width: 16px;
    height: 16px;
  }
}
.select-link:hover {
  opacity: 0.4;
}
/*------------------------------ footer ----------------------------------*/
.footer {
  padding: 100px 0 50px;
  background: #000810;
}
@media screen and (max-width: 1739px) {
  .footer {
    padding: 80px 0 30px;
  }
}
@media screen and (max-width: 1199px) {
  .footer {
    padding: 60px 0 25px;
  }
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 30px;
}
@media screen and (max-width: 1739px) {
  .footer__row {
    row-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__row {
    row-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer__row {
    position: relative;
    row-gap: 20px;
  }
}
@media screen and (max-width: 374px) {
  .footer__row {
    row-gap: 15px;
  }
}
.footer__col {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
}
@media screen and (max-width: 991px) {
  .footer__col {
    width: calc(100% / 12 * 5 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .footer__col {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.footer__col:first-child {
  margin-bottom: 65px;
}
@media screen and (max-width: 1739px) {
  .footer__col:first-child {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__col:first-child {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 991px) {
  .footer__col:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer__col:first-child {
    width: 50%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 10px;
    margin: 0;
  }
}
.footer__col:nth-child(2) {
  align-self: center;
}
@media screen and (max-width: 991px) {
  .footer__col:nth-child(2) {
    align-self: start;
  }
}
@media screen and (max-width: 767px) {
  .footer__col:nth-child(2) {
    padding-top: 13px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 374px) {
  .footer__col:nth-child(2) {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer__col:nth-child(even) {
    width: calc(100% / 12 * 7 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .footer__col:nth-child(even) {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .footer__col:nth-child(3) {
    order: 1;
    padding-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .footer__col:last-child {
    order: 2;
  }
}
.footer .logo {
  width: 227px;
  height: 91px;
}
@media screen and (max-width: 1739px) {
  .footer .logo {
    width: 161px;
    height: 64px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .logo {
    width: 123px;
    height: 48px;
  }
}
@media screen and (max-width: 991px) {
  .footer .logo {
    width: 111px;
    height: 44px;
  }
}
.footer__text {
  max-width: 600px;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 1739px) {
  .footer__text {
    max-width: 463px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__text {
    font-size: 11px;
  }
}
@media screen and (max-width: 991px) {
  .footer__text {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .footer__text {
    font-size: 10px;
  }
}
/*------------------------------ privacy-link ----------------------------------*/
.privacy-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .privacy-link {
    font-size: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .privacy-link {
    font-size: 11px;
  }
}
@media screen and (max-width: 991px) {
  .privacy-link {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .privacy-link {
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .privacy-link {
    font-size: 10px;
  }
}
.privacy-link:hover {
  color: #FFFFFF;
}
/*------------------------------ f-menu ----------------------------------*/
.f-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  justify-items: start;
}
@media screen and (max-width: 1739px) {
  .f-menu {
    row-gap: 12px;
  }
}
@media screen and (max-width: 991px) {
  .f-menu {
    grid-template-columns: 85px 128px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .f-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
.f-menu__link {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .f-menu__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .f-menu__link {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .f-menu__link {
    font-size: 12px;
  }
}
.f-menu__link:hover {
  color: rgba(255, 255, 255, 0.6);
}
/*------------------------------ f-btns ----------------------------------*/
.f-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  justify-items: start;
}
@media screen and (max-width: 991px) {
  .f-btns {
    grid-template-columns: 87px 130px 1fr;
    column-gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .f-btns {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
.f-btns__link {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .f-btns__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .f-btns__link {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .f-btns__link {
    font-size: 12px;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) {
  .f-btns__link {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .f-btns__link {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .f-btns__link:first-child {
    grid-column-start: 2;
  }
}
.f-btns__link svg {
  position: relative;
  top: 5px;
  width: 26px;
  height: 26px;
  margin-left: 10px;
  fill: none;
  stroke: #fff;
}
@media screen and (max-width: 1739px) {
  .f-btns__link svg {
    width: 20px;
    height: 20px;
    margin-left: 6px;
  }
}
@media screen and (max-width: 1199px) {
  .f-btns__link svg {
    top: 3px;
    width: 16px;
    height: 16px;
    margin-left: 4px;
  }
}
@media screen and (max-width: 991px) {
  .f-btns__link svg {
    margin-left: 3px;
  }
}
.f-btns__link:hover {
  opacity: 0.6;
}
/*------------------------------ menu ----------------------------------*/
.menu {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100vh;
  background: #000810;
  overflow-y: auto;
  transition: all 0.3s linear;
}
.menu.open {
  left: 0;
}
.menu__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 50px;
}
@media screen and (max-width: 767px) {
  .menu__row {
    row-gap: 30px;
  }
}
@media screen and (max-width: 374px) {
  .menu__row {
    row-gap: 25px;
  }
}
.menu__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
  margin-right: calc(100% / 12 * 3 + 10px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  min-height: 100vh;
  padding: 50px 0;
}
@media screen and (max-width: 1739px) {
  .menu__left {
    width: calc(100% / 12 * 9 - 20px);
  }
}
@media screen and (max-width: 1199px) {
  .menu__left {
    width: calc(100% / 12 * 10 - 20px);
  }
}
@media screen and (max-width: 991px) {
  .menu__left {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media screen and (max-width: 1739px) {
  .menu__left {
    margin-right: calc(100% / 12 * 0 + 10px);
  }
}
@media screen and (max-width: 1199px) {
  .menu__left {
    min-height: calc(100vh - 450px);
  }
}
@media screen and (max-width: 991px) {
  .menu__left {
    padding: 30px 0;
    min-height: calc(100vh - 380px);
  }
}
@media screen and (max-width: 767px) {
  .menu__left {
    padding: 20px 0;
    min-height: calc(100vh - 250px);
  }
}
@media screen and (max-width: 374px) {
  .menu__left {
    padding: 15px 0;
    min-height: calc(100vh - 135px);
  }
}
.menu__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
}
@media screen and (max-width: 1199px) {
  .menu__right {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1199px) {
  .menu__close {
    left: auto;
    right: calc((100vw - 980px) / 2 + 10px);
    transform: none;
  }
}
@media screen and (max-width: 991px) {
  .menu__close {
    top: 52px;
    right: calc((100vw - 708px) / 2 + 15px);
  }
}
@media screen and (max-width: 767px) {
  .menu__close {
    top: 35px;
    right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .menu__close {
    right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .menu__close {
    right: 20px;
  }
}
@media screen and (max-width: 374px) {
  .menu__close {
    top: 26px;
  }
}
.menu__close span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .menu__close span {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .menu__close span {
    font-size: 12px;
  }
}
.menu__close svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
}
@media screen and (max-width: 1739px) {
  .menu__close svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .menu__close svg {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 374px) {
  .menu__close svg {
    width: 22px;
    height: 22px;
  }
}
.menu__close:hover {
  opacity: 0.6;
}
.menu .logo {
  width: 227px;
  height: 91px;
  margin-bottom: auto;
}
@media screen and (max-width: 1739px) {
  .menu .logo {
    width: 207px;
    height: 83px;
  }
}
@media screen and (max-width: 1199px) {
  .menu .logo {
    width: 196px;
    height: 79px;
  }
}
@media screen and (max-width: 991px) {
  .menu .logo {
    width: 185px;
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .menu .logo {
    width: 140px;
    height: 57px;
  }
}
@media screen and (max-width: 374px) {
  .menu .logo {
    width: 109px;
    height: 45px;
  }
}
.menu .tel {
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 80px;
  margin-top: 20px;
  font-size: 60px;
}
@media screen and (max-width: 1739px) {
  .menu .tel {
    gap: 18px;
    margin-bottom: 60px;
    font-size: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .menu .tel {
    gap: 16px;
    display: flex;
    margin-bottom: 55px;
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .menu .tel {
    gap: 14px;
    margin-bottom: 50px;
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .menu .tel {
    margin-bottom: 40px;
    font-size: 30px;
  }
}
@media screen and (max-width: 374px) {
  .menu .tel {
    margin-bottom: 30px;
    font-size: 25px;
  }
}
.menu .tel svg {
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 1739px) {
  .menu .tel svg {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .menu .tel svg {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 991px) {
  .menu .tel svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .menu .tel svg {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 374px) {
  .menu .tel svg {
    width: 20px;
    height: 20px;
  }
}
.menu .f-btns {
  margin-bottom: 40px;
}
@media screen and (max-width: 1739px) {
  .menu .f-btns {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 991px) {
  .menu .f-btns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .menu .f-btns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .menu .f-btns__link:first-child {
    grid-column-start: 1;
  }
}
@media screen and (max-width: 991px) {
  .menu .f-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .menu .f-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*------------------------------ select-menu ----------------------------------*/
.select-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  margin-right: calc(((100vw - 1740px) / 2 + 10px) * -1);
}
@media screen and (max-width: 1739px) {
  .select-menu {
    margin-right: calc(((100vw - 1160px) / 2 + 10px) * -1);
  }
}
@media screen and (max-width: 1199px) {
  .select-menu {
    flex-direction: row;
    height: 400px;
    margin-right: calc(((100vw - 980px) / 2 + 10px) * -1);
    margin-left: calc(((100vw - 980px) / 2 + 10px) * -1);
  }
}
@media screen and (max-width: 991px) {
  .select-menu {
    height: 330px;
    margin-right: calc(((100vw - 708px) / 2 + 15px) * -1);
    margin-left: calc(((100vw - 708px) / 2 + 15px) * -1);
  }
}
@media screen and (max-width: 767px) {
  .select-menu {
    height: 220px;
    margin-right: calc(((100vw - 560px) / 2 + 15px) * -1);
    margin-left: calc(((100vw - 560px) / 2 + 15px) * -1);
  }
}
@media screen and (max-width: 575px) {
  .select-menu {
    margin-right: calc(((100vw - 480px) / 2 + 20px) * -1);
    margin-left: calc(((100vw - 480px) / 2 + 20px) * -1);
  }
}
@media screen and (max-width: 479px) {
  .select-menu {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media screen and (max-width: 374px) {
  .select-menu {
    height: 110px;
  }
}
.select-menu__link {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  align-items: flex-end;
  position: relative;
  height: 50%;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1199px) {
  .select-menu__link {
    width: 50%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .select-menu__link {
    padding: 20px;
  }
}
@media screen and (max-width: 374px) {
  .select-menu__link {
    padding-bottom: 25px;
  }
}
.select-menu__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  opacity: 0;
  transition: all 0.3s linear;
}
.select-menu__link svg {
  flex: none;
  position: relative;
  z-index: 10;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .select-menu__link svg {
    width: 20px;
    height: 20px;
  }
}
.select-menu__link span {
  position: relative;
  z-index: 10;
  width: 292px;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .select-menu__link span {
    width: 194px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .select-menu__link span {
    width: 175px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .select-menu__link span {
    max-width: 115px;
    font-size: 16px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 374px) {
  .select-menu__link span {
    font-size: 12px;
  }
}
.select-menu__link:hover img {
  opacity: 1;
}
.select-menu__link:nth-child(2):hover span {
  color: #000810;
}
.select-menu__link:nth-child(2):hover svg {
  stroke: #000810;
}
/*------------------------------ fav ----------------------------------*/
.fav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1300px;
  padding: 60px;
  background: #fff;
  z-index: 9999;
}
@media screen and (max-width: 1739px) {
  .fav {
    width: 1140px;
    padding: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .fav {
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    width: auto;
    padding: 40px;
  }
}
@media screen and (max-width: 991px) {
  .fav {
    top: 30px;
    transform: none;
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .fav {
    padding: 20px;
  }
}
.fav__title {
  margin: 0 0 40px;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .fav__title {
    margin-bottom: 35px;
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .fav__title {
    margin-bottom: 30px;
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .fav__title {
    margin-bottom: 25px;
    font-size: 25px;
  }
}
.fav__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1739px) {
  .fav__row {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1199px) {
  .fav__row {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .fav__row {
    margin-bottom: 15px;
  }
}
.fav__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
  row-gap: 20px;
}
@media screen and (max-width: 991px) {
  .fav__item {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .fav__item {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.fav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 10px;
  margin: 0 auto;
  transition: all 0.3s linear;
}
@media screen and (max-width: 767px) {
  .fav__link {
    gap: 8px;
  }
}
.fav__link span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .fav__link span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .fav__link span {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .fav__link span {
    font-size: 14px;
  }
}
.fav__link svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #000810;
}
@media screen and (max-width: 1739px) {
  .fav__link svg {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .fav__link svg {
    width: 20px;
    height: 20px;
  }
}
.fav__link:hover {
  opacity: 0.4;
}
/*------------------------------ modal ----------------------------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 8, 16, 0.5);
  z-index: 9900;
  overflow-y: auto;
}
.modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 870px;
  padding: 60px;
  background: #fff;
  z-index: 9999;
}
@media screen and (max-width: 1739px) {
  .modal__inner {
    width: 850px;
    padding: 50px;
  }
}
@media screen and (max-width: 991px) {
  .modal__inner {
    width: 280px;
    padding: 50px 20px;
  }
}
.modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 1739px) {
  .modal__close {
    top: 28px;
    right: 28px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 991px) {
  .modal__close {
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
  }
}
.modal__close svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #000810;
}
.modal__title {
  margin: 0 0 40px;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .modal__title {
    margin-bottom: 35px;
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .modal__title {
    margin-bottom: 15px;
    font-size: 25px;
  }
}
.modal__subtitle {
  margin: 0 0 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .modal__subtitle {
    margin-bottom: 50px;
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .modal__subtitle {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.modal__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1739px) {
  .modal__row {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 991px) {
  .modal__row {
    gap: 14px;
    margin-bottom: 20px;
  }
}
.modal__col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: calc(50% - 10px);
}
@media screen and (max-width: 991px) {
  .modal__col {
    gap: 14px;
    width: 100%;
  }
}
.modal__btn {
  width: 100%;
  height: 64px;
  margin-bottom: 10px;
  background: #0074A0;
  border-radius: 32px;
  border: 1px solid #0074A0;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .modal__btn {
    height: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .modal__btn {
    height: 48px;
    font-size: 14px;
  }
}
.modal__btn:hover {
  background: #fff;
  color: #0074A0;
}
.modal__text {
  max-width: 375px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: rgba(0, 8, 16, 0.4);
}
@media screen and (max-width: 991px) {
  .modal__text {
    font-size: 10px;
  }
}
.modal__text a {
  color: rgba(0, 8, 16, 0.4);
  text-decoration: underline;
  transition: all 0.3s linear;
}
.modal__text a:hover {
  color: #000810;
}
.modal__thanks {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media screen and (max-width: 991px) {
  .modal__thanks {
    flex-direction: column;
    text-align: center;
  }
}
.modal__thanks .modal__subtitle {
  max-width: 400px;
  margin-bottom: 0;
}
.modal__img {
  flex: none;
  width: 197px;
  height: 197px;
}
@media screen and (max-width: 1739px) {
  .modal__img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 991px) {
  .modal__img {
    width: 96px;
    height: 96px;
  }
}
.modal__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.modal .compass {
  position: absolute;
  z-index: 100;
  top: 100px;
  right: calc((100vw - 1740px) / 2 + 10px);
}
@media screen and (max-width: 1739px) {
  .modal .compass {
    top: 90px;
    right: calc((100vw - 1160px) / 2 + 10px);
  }
}
@media screen and (max-width: 1199px) {
  .modal .compass {
    top: 60px;
    right: calc((100vw - 980px) / 2 + 10px);
    width: 45px;
    height: 46px;
  }
}
@media screen and (max-width: 991px) {
  .modal .compass {
    right: calc((100vw - 708px) / 2 + 15px);
  }
}
@media screen and (max-width: 767px) {
  .modal .compass {
    top: 20px;
    right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .modal .compass {
    right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .modal .compass {
    right: 20px;
  }
}
/*------------------------------ modal-close ----------------------------------*/
.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .modal-close {
    top: 28px;
    right: 28px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .modal-close {
    top: 24px;
    right: 24px;
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .modal-close {
    top: 20px;
    right: 20px;
    width: 22px;
    height: 22px;
  }
}
.modal-close svg {
  width: 100%;
  height: 100%;
  stroke: #000810;
}
.modal-close:hover {
  opacity: 0.4;
}
/*------------------------------ fav-card ----------------------------------*/
.fav-card {
  position: relative;
  height: 100%;
  padding: 30px;
  background: #F3F3F3;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .fav-card {
    padding: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .fav-card {
    padding: 18px;
  }
}
@media screen and (max-width: 767px) {
  .fav-card {
    padding: 14px;
  }
}
.fav-card:hover {
  background: #e6e6e6;
}
.fav-card__fav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 8, 16, 0.1);
  border-radius: 50%;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .fav-card__fav {
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .fav-card__fav {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .fav-card__fav {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }
}
.fav-card__fav svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: transparent;
  stroke: #000810;
}
@media screen and (max-width: 1739px) {
  .fav-card__fav svg {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .fav-card__fav svg {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 767px) {
  .fav-card__fav svg {
    width: 10px;
    height: 10px;
  }
}
.fav-card__fav:hover {
  border-color: #000810;
}
.fav-card__fav.active svg {
  fill: #0074A0;
  stroke: #0074A0;
}
.fav-card__wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
}
.fav-card__price {
  margin: auto 0 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .fav-card__price {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .fav-card__price {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .fav-card__price {
    font-size: 14px;
  }
}
.fav-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1739px) {
  .fav-card__img {
    height: 140px;
  }
}
@media screen and (max-width: 1199px) {
  .fav-card__img {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .fav-card__img {
    margin-bottom: 20px;
  }
}
.fav-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fav-card__header {
  margin-bottom: 30px;
  padding-right: 45px;
}
@media screen and (max-width: 1199px) {
  .fav-card__header {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  .fav-card__header {
    margin-bottom: 24px;
    padding-right: 40px;
  }
}
.fav-card__title {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .fav-card__title {
    margin-bottom: 8px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .fav-card__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .fav-card__title {
    margin-bottom: 6px;
    font-size: 14px;
  }
}
.fav-card__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .fav-card__info {
    gap: 5px;
  }
}
.fav-card__info span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 8, 16, 0.5);
}
@media screen and (max-width: 767px) {
  .fav-card__info span {
    font-size: 12px;
  }
}
.fav-card__info span::after {
  content: '\2022';
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .fav-card__info span::after {
    margin-left: 5px;
  }
}
.fav-card__info span:last-child::after {
  display: none;
}
/*------------------------------ page-header ----------------------------------*/
.page-header {
  position: relative;
  z-index: 100;
  margin-bottom: 80px;
  padding-top: 30px;
}
@media screen and (max-width: 1739px) {
  .page-header {
    margin-bottom: 60px;
    padding-top: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .page-header {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .page-header {
    margin-bottom: 35px;
    padding-top: 20px;
  }
}
/*------------------------------ breadcrumbs ----------------------------------*/
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  row-gap: 10px;
  column-gap: 10px;
}
@media screen and (max-width: 1739px) {
  .breadcrumbs {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .breadcrumbs {
    margin-bottom: 35px;
    column-gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 20px;
    column-gap: 6px;
  }
}
.breadcrumbs__item {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #000810;
}
@media screen and (max-width: 1199px) {
  .breadcrumbs__item {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs__item {
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  .breadcrumbs__item {
    font-size: 10px;
  }
}
.breadcrumbs__link {
  color: rgba(0, 8, 16, 0.4);
  transition: all 0.3s linear;
}
.breadcrumbs__link:hover {
  color: #000810;
}
.breadcrumbs__link::after {
  content: '/';
  margin-left: 10px;
  color: rgba(0, 8, 16, 0.4);
}
@media screen and (max-width: 1199px) {
  .breadcrumbs__link::after {
    margin-left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link::after {
    margin-left: 6px;
  }
}
/*------------------------------ page-title ----------------------------------*/
.page-title {
  margin: 0;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .page-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .page-title {
    font-size: 46px;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 32px;
  }
}
.page-title br {
  display: none;
}
@media screen and (max-width: 479px) {
  .page-title br {
    display: block;
  }
}
.page-title svg {
  display: inline-block;
  vertical-align: bottom;
  width: 110px;
  height: 110px;
  margin-bottom: 15px;
  margin-left: 35px;
  fill: #22262F;
}
@media screen and (max-width: 1199px) {
  .page-title svg {
    width: 75px;
    height: 75px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 991px) {
  .page-title svg {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-title svg {
    width: 34px;
    height: 34px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 374px) {
  .page-title svg {
    width: 30px;
    height: 30px;
  }
}
/*------------------------------ journal ----------------------------------*/
.journal {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .journal {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .journal {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .journal {
    margin-bottom: 70px;
  }
}
.journal__wrap {
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #D9D9D9 #0074A0;
}
@media screen and (max-width: 767px) {
  .journal__wrap {
    margin-left: calc(((100vw - 560px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 560px) / 2 + 15px) * -1);
    padding-left: calc((100vw - 560px) / 2 + 15px);
    padding-right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .journal__wrap {
    margin-left: calc(((100vw - 480px) / 2 + 20px) * -1);
    margin-right: calc(((100vw - 480px) / 2 + 20px) * -1);
    padding-left: calc((100vw - 480px) / 2 + 20px);
    padding-right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .journal__wrap {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.journal__wrap::-webkit-scrollbar {
  height: 2px;
}
.journal__wrap::-webkit-scrollbar-track {
  background: #D9D9D9;
}
.journal__wrap::-webkit-scrollbar-thumb {
  background-color: #0074A0;
  border-radius: 2px;
  border: none;
}
.journal__table {
  width: 100%;
  min-width: 630px;
}
.journal__header {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 8, 16, 0.1);
}
@media screen and (max-width: 767px) {
  .journal__header {
    padding-bottom: 15px;
  }
}
.journal__header span {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 8, 16, 0.4);
}
@media screen and (max-width: 1739px) {
  .journal__header span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .journal__header span {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .journal__header span {
    font-size: 12px;
  }
}
.journal__header span:first-child {
  width: calc(100% / 12 * 5 - 20px);
}
@media screen and (max-width: 1739px) {
  .journal__header span:first-child {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media screen and (max-width: 991px) {
  .journal__header span:first-child {
    width: calc(100% / 12 * 5 - 20px);
  }
}
.journal__header span:nth-child(2) {
  width: calc(100% / 12 * 3 - 20px);
}
@media screen and (max-width: 991px) {
  .journal__header span:nth-child(2) {
    width: calc(100% / 12 * 4 - 20px);
  }
}
.journal__header span:nth-child(3) {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 1739px) {
  .journal__header span:nth-child(3) {
    width: calc(100% / 12 * 1.5 - 20px);
  }
}
@media screen and (max-width: 991px) {
  .journal__header span:nth-child(3) {
    width: calc(100% / 12 * 2 - 20px);
  }
}
.journal__header span:nth-child(4) {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 1739px) {
  .journal__header span:nth-child(4) {
    width: calc(100% / 12 * 1.5 - 20px);
  }
}
@media screen and (max-width: 991px) {
  .journal__header span:nth-child(4) {
    width: calc(100% / 12 * 1 - 20px);
  }
}
.journal__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 8, 16, 0.1);
}
@media screen and (max-width: 1739px) {
  .journal__item {
    padding: 25px 0;
  }
}
@media screen and (max-width: 1199px) {
  .journal__item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .journal__item {
    padding: 15px 0;
  }
}
.journal__item p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .journal__item p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .journal__item p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .journal__item p {
    font-size: 12px;
  }
}
.journal__item p:first-child {
  width: calc(100% / 12 * 5 - 20px);
  padding-right: 8%;
}
@media screen and (max-width: 1739px) {
  .journal__item p:first-child {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media screen and (max-width: 991px) {
  .journal__item p:first-child {
    width: calc(100% / 12 * 5 - 20px);
  }
}
@media screen and (max-width: 1739px) {
  .journal__item p:first-child {
    padding-right: 0;
  }
}
.journal__item p:nth-child(2) {
  width: calc(100% / 12 * 3 - 20px);
}
@media screen and (max-width: 991px) {
  .journal__item p:nth-child(2) {
    width: calc(100% / 12 * 4 - 20px);
  }
}
.journal__item p:nth-child(3) {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 1739px) {
  .journal__item p:nth-child(3) {
    width: calc(100% / 12 * 1.5 - 20px);
  }
}
@media screen and (max-width: 991px) {
  .journal__item p:nth-child(3) {
    width: calc(100% / 12 * 2 - 20px);
  }
}
.journal__item p:nth-child(4) {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 1739px) {
  .journal__item p:nth-child(4) {
    width: calc(100% / 12 * 1.5 - 20px);
  }
}
@media screen and (max-width: 991px) {
  .journal__item p:nth-child(4) {
    width: calc(100% / 12 * 1 - 20px);
  }
}
.journal__item p a {
  color: #000810;
  transition: all 0.3s linear;
}
.journal__item p a:hover {
  opacity: 0.4;
}
/*------------------------------ section ----------------------------------*/
.section {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .section {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .section {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .section {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .section {
    margin-bottom: 70px;
  }
}
.section__title {
  margin: 0 0 60px;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .section__title {
    margin-bottom: 50px;
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .section__title {
    margin-bottom: 40px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .section__title {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
/*------------------------------ carousel-two ----------------------------------*/
.carousel-two {
  margin: 0 -10px;
  padding-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .carousel-two {
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 1199px) {
  .carousel-two {
    padding-bottom: 95px;
  }
}
@media screen and (max-width: 991px) {
  .carousel-two {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .carousel-two {
    margin: 0;
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 374px) {
  .carousel-two {
    padding-bottom: 80px;
  }
}
.carousel-two .slick-slide {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .carousel-two .slick-slide {
    padding: 0;
  }
}
.carousel-two .slick-slide .item {
  display: block !important;
}
.carousel-two .slick-slide a {
  display: block;
}
.carousel-two .slick-slide img {
  display: block;
  width: 100%;
  height: 545px;
  object-fit: cover;
}
@media screen and (max-width: 1739px) {
  .carousel-two .slick-slide img {
    height: 360px;
  }
}
@media screen and (max-width: 991px) {
  .carousel-two .slick-slide img {
    height: 238px;
  }
}
@media screen and (max-width: 767px) {
  .carousel-two .slick-slide img {
    aspect-ratio: 1.45;
    height: auto;
  }
}
.carousel-two .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .carousel-two .slick-arrow {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .carousel-two .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.carousel-two .slick-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #000810;
}
@media screen and (max-width: 1739px) {
  .carousel-two .slick-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .carousel-two .slick-arrow svg {
    width: 14px;
    height: 14px;
  }
}
.carousel-two .slick-arrow:hover {
  border-color: #000810;
}
.carousel-two .slick-arrow.prev {
  right: calc(50% + 15px);
}
@media screen and (max-width: 1739px) {
  .carousel-two .slick-arrow.prev {
    right: calc(50% + 10px);
  }
}
.carousel-two .slick-arrow.next {
  left: calc(50% + 15px);
}
@media screen and (max-width: 1739px) {
  .carousel-two .slick-arrow.next {
    left: calc(50% + 10px);
  }
}
/*------------------------------ carousel ----------------------------------*/
.carousel {
  padding-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .carousel {
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 1199px) {
  .carousel {
    padding-bottom: 95px;
  }
}
@media screen and (max-width: 991px) {
  .carousel {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .carousel {
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 374px) {
  .carousel {
    padding-bottom: 80px;
  }
}
.carousel .item {
  display: block !important;
}
.carousel .item a {
  display: block;
}
.carousel .item img {
  display: block;
  width: 100%;
  height: 800px;
  object-fit: cover;
}
@media screen and (max-width: 1739px) {
  .carousel .item img {
    height: 530px;
  }
}
@media screen and (max-width: 991px) {
  .carousel .item img {
    aspect-ratio: 1.45;
    height: auto;
  }
}
.carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .carousel .slick-arrow {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.carousel .slick-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #000810;
}
@media screen and (max-width: 1739px) {
  .carousel .slick-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .carousel .slick-arrow svg {
    width: 14px;
    height: 14px;
  }
}
.carousel .slick-arrow:hover {
  border-color: #000810;
}
.carousel .slick-arrow.prev {
  right: calc(50% + 15px);
}
@media screen and (max-width: 1739px) {
  .carousel .slick-arrow.prev {
    right: calc(50% + 10px);
  }
}
.carousel .slick-arrow.next {
  left: calc(50% + 15px);
}
@media screen and (max-width: 1739px) {
  .carousel .slick-arrow.next {
    left: calc(50% + 10px);
  }
}
/*------------------------------ banner ----------------------------------*/
.banner {
  margin-top: -120px;
  margin-bottom: 150px;
  background: url(../img/bg-banner.jpg) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1739px) {
  .banner {
    margin-top: -83px;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .banner {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .banner {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    margin-top: -75px;
    margin-bottom: 70px;
  }
}
.banner__wrap {
  position: relative;
  padding-top: 436px;
  padding-bottom: 176px;
}
@media screen and (max-width: 1739px) {
  .banner__wrap {
    padding-top: 292px;
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 1199px) {
  .banner__wrap {
    padding-top: 180px;
    padding-bottom: 155px;
  }
}
@media screen and (max-width: 991px) {
  .banner__wrap {
    padding-top: 225px;
    padding-bottom: 149px;
  }
}
@media screen and (max-width: 767px) {
  .banner__wrap {
    padding-bottom: 160px;
  }
}
@media screen and (max-width: 374px) {
  .banner__wrap {
    padding-bottom: 225px;
  }
}
.banner__img {
  position: absolute;
  z-index: 1;
  top: 215px;
  left: 0;
  width: 770px;
  height: 770px;
}
@media screen and (max-width: 1739px) {
  .banner__img {
    top: 153px;
    width: 548px;
    height: 548px;
  }
}
@media screen and (max-width: 1199px) {
  .banner__img {
    top: 133px;
    width: 420px;
    height: 420px;
  }
}
@media screen and (max-width: 991px) {
  .banner__img {
    width: 330px;
    height: 330px;
  }
}
@media screen and (max-width: 767px) {
  .banner__img {
    top: 125px;
    width: 222px;
    height: 222px;
  }
}
@media screen and (max-width: 374px) {
  .banner__img {
    width: 197px;
    height: 197px;
  }
}
.banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.banner__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 10;
  max-width: 1260px;
  margin-left: auto;
}
@media screen and (max-width: 1739px) {
  .banner__content {
    max-width: 840px;
  }
}
@media screen and (max-width: 1199px) {
  .banner__content {
    max-width: 660px;
  }
}
@media screen and (max-width: 991px) {
  .banner__content {
    max-width: 570px;
  }
}
@media screen and (max-width: 767px) {
  .banner__content {
    max-width: 335px;
  }
}
.banner__title {
  margin: 0 0 60px;
  font-weight: 400;
  font-size: 130px;
  line-height: 1.035;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: right;
}
@media screen and (max-width: 1739px) {
  .banner__title {
    margin-bottom: 50px;
    font-size: 90px;
  }
}
@media screen and (max-width: 1199px) {
  .banner__title {
    margin-bottom: 40px;
    font-size: 70px;
  }
}
@media screen and (max-width: 991px) {
  .banner__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .banner__title {
    margin-bottom: 36px;
    font-size: 48px;
  }
}
@media screen and (max-width: 374px) {
  .banner__title {
    margin-bottom: 32px;
    font-size: 40px;
  }
}
.banner__subtitle {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .banner__subtitle {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .banner__subtitle {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .banner__subtitle {
    margin-bottom: 12px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .banner__subtitle {
    font-size: 17px;
  }
}
@media screen and (max-width: 374px) {
  .banner__subtitle {
    margin-bottom: 10px;
    font-size: 16px;
    margin-left: -2px;
    margin-right: -2px;
    text-align: center;
  }
}
.banner__desc {
  width: 100%;
  max-width: 470px;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1739px) {
  .banner__desc {
    max-width: 410px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .banner__desc {
    max-width: 360px;
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .banner__desc {
    max-width: 332px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .banner__desc {
    max-width: 305px;
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .banner__desc {
    font-size: 12px;
  }
}
/*------------------------------ tour-link ----------------------------------*/
.tour-link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: -76px;
  right: 439px;
  width: 232px;
  height: 232px;
  padding: 95px 58px 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .tour-link {
    right: 356px;
    bottom: -50px;
    width: 165px;
    height: 165px;
    padding: 65px 20px 0 35px;
  }
}
@media screen and (max-width: 1199px) {
  .tour-link {
    gap: 8px;
    right: 309px;
    bottom: -79px;
    width: 140px;
    height: 140px;
    padding-top: 54px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .tour-link {
    right: 279px;
    bottom: -89px;
  }
}
@media screen and (max-width: 767px) {
  .tour-link {
    bottom: -95px;
    left: 0;
    right: auto;
  }
}
@media screen and (max-width: 374px) {
  .tour-link {
    bottom: -170px;
    left: calc(50% - 70px);
  }
}
.tour-link svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #fff;
}
@media screen and (max-width: 1739px) {
  .tour-link svg {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 1199px) {
  .tour-link svg {
    width: 20px;
    height: 20px;
  }
}
.tour-link span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .tour-link span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .tour-link span {
    font-size: 12px;
  }
}
.tour-link:hover {
  border-color: #fff;
}
/*------------------------------ about ----------------------------------*/
.about {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .about {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .about {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .about {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    margin-bottom: 0;
  }
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 573px;
  column-gap: 90px;
  align-items: stretch;
}
@media screen and (max-width: 1739px) {
  .about__grid {
    grid-template-columns: 1fr 366px;
    column-gap: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .about__grid {
    grid-template-columns: 1fr 288px;
    column-gap: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about__grid {
    grid-template-columns: 1fr 220px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about__grid {
    grid-template-columns: 100%;
    row-gap: 55px;
  }
}
@media screen and (max-width: 374px) {
  .about__grid {
    row-gap: 50px;
  }
}
.about__img {
  width: 100%;
  height: 731px;
}
@media screen and (max-width: 1739px) {
  .about__img {
    height: 521px;
  }
}
@media screen and (max-width: 1199px) {
  .about__img {
    height: 425px;
  }
}
@media screen and (max-width: 991px) {
  .about__img {
    height: 410px;
  }
}
@media screen and (max-width: 767px) {
  .about__img {
    width: auto;
    height: auto;
    min-height: 410px;
    aspect-ratio: 0.917;
    margin-left: calc(((100vw - 560px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 560px) / 2 + 15px) * -1);
  }
}
@media screen and (max-width: 575px) {
  .about__img {
    margin-left: calc(((100vw - 480px) / 2 + 20px) * -1);
    margin-right: calc(((100vw - 480px) / 2 + 20px) * -1);
  }
}
@media screen and (max-width: 479px) {
  .about__img {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
.about__header {
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__header {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 374px) {
  .about__header {
    margin-bottom: 50px;
  }
}
.about__header img {
  position: absolute;
  top: 0;
  right: 0;
  width: 239px;
  height: 266px;
  object-fit: cover;
}
@media screen and (max-width: 1739px) {
  .about__header img {
    width: 170px;
    height: 189px;
  }
}
@media screen and (max-width: 1199px) {
  .about__header img {
    width: 143px;
    height: 157px;
  }
}
@media screen and (max-width: 991px) {
  .about__header img {
    display: none;
  }
}
.about__title {
  margin: 0 0 80px;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .about__title {
    margin-bottom: 60px;
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .about__title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .about__title {
    margin-bottom: 40px;
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .about__title {
    margin-bottom: 35px;
    font-size: 33px;
  }
}
.about__text {
  max-width: 573px;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .about__text {
    max-width: 434px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .about__text {
    max-width: 395px;
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .about__text {
    max-width: 370px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .about__text {
    font-size: 12px;
  }
}
/*------------------------------ features ----------------------------------*/
.features {
  display: grid;
  grid-template-columns: 305px 305px 1fr;
  column-gap: 50px;
  row-gap: 65px;
}
@media screen and (max-width: 1739px) {
  .features {
    grid-template-columns: 240px 240px 1fr;
    column-gap: 30px;
    row-gap: 45px;
  }
}
@media screen and (max-width: 1199px) {
  .features {
    grid-template-columns: 225px 225px 1fr;
    column-gap: 25px;
    row-gap: 25px;
  }
}
@media screen and (max-width: 991px) {
  .features {
    grid-template-columns: 155px 130px 1fr;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 374px) {
  .features {
    column-gap: 10px;
  }
}
.features__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .features__item {
    row-gap: 4px;
  }
}
.features__item span {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .features__item span {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .features__item span {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  .features__item span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .features__item span {
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) {
  .features__item span {
    font-size: 16px;
  }
}
.features__item span:nth-child(2) {
  font-size: 18px;
  text-transform: none;
}
@media screen and (max-width: 1739px) {
  .features__item span:nth-child(2) {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .features__item span:nth-child(2) {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .features__item span:nth-child(2) {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .features__item span:nth-child(2) {
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .features__item span:nth-child(2) {
    font-size: 10px;
  }
}
/*------------------------------ advant ----------------------------------*/
.advant {
  margin-bottom: 150px;
  padding: 200px 0;
  background: #0074A0;
}
@media screen and (max-width: 1739px) {
  .advant {
    margin-bottom: 120px;
    padding: 150px 0;
  }
}
@media screen and (max-width: 1199px) {
  .advant {
    margin-bottom: 100px;
    padding: 130px 0;
  }
}
@media screen and (max-width: 991px) {
  .advant {
    margin-bottom: 80px;
    padding: 120px 0;
  }
}
@media screen and (max-width: 767px) {
  .advant {
    margin-bottom: 75px;
    padding: 90px 0;
  }
}
@media screen and (max-width: 374px) {
  .advant {
    margin-bottom: 70px;
    padding: 70px 0;
  }
}
.advant__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 200px;
}
@media screen and (max-width: 1739px) {
  .advant__header {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .advant__header {
    justify-content: space-between;
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 991px) {
  .advant__header {
    align-items: flex-end;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .advant__header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 45px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 374px) {
  .advant__header {
    row-gap: 35px;
  }
}
.advant__title {
  width: calc(100% / 12 * 8 - 20px);
  margin: 0;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .advant__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .advant__title {
    width: auto;
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .advant__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .advant__title {
    font-size: 33px;
  }
}
.advant__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: none;
  align-items: center;
  width: 320px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1739px) {
  .advant__link {
    width: 228px;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 1199px) {
  .advant__link {
    width: 168px;
    padding-bottom: 5px;
  }
}
.advant__link span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .advant__link span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .advant__link span {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .advant__link span {
    font-size: 12px;
  }
}
.advant__link svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .advant__link svg {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .advant__link svg {
    width: 16px;
    height: 16px;
  }
}
.advant__link:hover span,
.advant__link:hover svg {
  opacity: 0.4;
}
.advant__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .advant__row {
    row-gap: 40px;
  }
}
@media screen and (max-width: 374px) {
  .advant__row {
    row-gap: 35px;
  }
}
.advant__item {
  width: calc(100% / 12 * 4 - 20px);
  margin: 0;
}
@media screen and (max-width: 991px) {
  .advant__item {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .advant__item {
    width: calc(100% / 12 * 12 - 20px);
  }
}
.advant__subtitle {
  margin: 0 0 25px;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .advant__subtitle {
    margin-bottom: 20px;
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .advant__subtitle {
    margin-bottom: 18px;
    font-size: 35px;
  }
}
@media screen and (max-width: 991px) {
  .advant__subtitle {
    margin-bottom: 15px;
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .advant__subtitle {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 374px) {
  .advant__subtitle {
    margin-bottom: 10px;
    font-size: 25px;
  }
}
.advant__text {
  max-width: 435px;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .advant__text {
    padding-right: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .advant__text {
    padding-right: 0;
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .advant__text {
    padding-right: 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .advant__text {
    max-width: 350px;
    padding-right: 0;
    font-size: 13px;
  }
}
@media screen and (max-width: 479px) {
  .advant__text {
    max-width: 251px;
  }
}
@media screen and (max-width: 374px) {
  .advant__text {
    font-size: 12px;
  }
}
/*------------------------------ select-banner ----------------------------------*/
.select-banner {
  position: relative;
  height: 818px;
  margin-bottom: 150px;
  padding-top: 508px;
  background: url(../img/bg-select-banner.jpg) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1739px) {
  .select-banner {
    height: 600px;
    margin-bottom: 120px;
    padding-top: 360px;
  }
}
@media screen and (max-width: 1199px) {
  .select-banner {
    height: 532px;
    margin-bottom: 100px;
    padding-top: 332px;
  }
}
@media screen and (max-width: 991px) {
  .select-banner {
    margin-bottom: 80px;
    padding-top: 356px;
  }
}
@media screen and (max-width: 767px) {
  .select-banner {
    margin-bottom: 75px;
    padding-top: 307px;
  }
}
@media screen and (max-width: 374px) {
  .select-banner {
    margin-bottom: 70px;
    padding-top: 319px;
  }
}
.select-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 8, 16, 0.6);
}
.select-banner__content {
  position: relative;
}
.select-banner__title {
  margin: 0;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .select-banner__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .select-banner__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .select-banner__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .select-banner__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .select-banner__title {
    font-size: 33px;
  }
}
.select-banner__link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 10px;
  position: absolute;
  top: -22px;
  left: 588px;
  width: 232px;
  height: 232px;
  padding-top: 95px;
  padding-left: 88px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .select-banner__link {
    top: -13px;
    left: 469px;
    width: 165px;
    height: 165px;
    padding-top: 65px;
    padding-left: 45px;
  }
}
@media screen and (max-width: 1199px) {
  .select-banner__link {
    gap: 8px;
    top: -4px;
    left: 383px;
    width: 140px;
    height: 140px;
    padding-top: 54px;
    padding-left: 38px;
  }
}
@media screen and (max-width: 991px) {
  .select-banner__link {
    top: -24px;
    left: 345px;
  }
}
@media screen and (max-width: 767px) {
  .select-banner__link {
    top: 35px;
    left: 195px;
  }
}
@media screen and (max-width: 374px) {
  .select-banner__link {
    top: 23px;
    left: 140px;
  }
}
.select-banner__link svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #fff;
}
@media screen and (max-width: 1739px) {
  .select-banner__link svg {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 1199px) {
  .select-banner__link svg {
    width: 20px;
    height: 20px;
  }
}
.select-banner__link span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .select-banner__link span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .select-banner__link span {
    font-size: 13px;
  }
}
.select-banner__link:hover {
  border-color: #fff;
}
/*------------------------------ video-zk ----------------------------------*/
.video-zk {
  position: relative;
  display: block;
  height: 900px;
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .video-zk {
    height: 676px;
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .video-zk {
    height: 622px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .video-zk {
    height: 466px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .video-zk {
    height: 466px;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .video-zk {
    margin-bottom: 70px;
  }
}
.video-zk__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-zk__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-zk__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 8, 16, 0.2);
}
.video-zk .container {
  position: relative;
  z-index: 10;
  height: 100%;
  padding-top: 150px;
}
@media screen and (max-width: 1739px) {
  .video-zk .container {
    padding-top: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .video-zk .container {
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .video-zk .container {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .video-zk .container {
    padding-top: 75px;
  }
}
@media screen and (max-width: 374px) {
  .video-zk .container {
    padding-top: 70px;
  }
}
.video-zk__title {
  margin: 0;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .video-zk__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .video-zk__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .video-zk__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .video-zk__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .video-zk__title {
    font-size: 33px;
  }
}
.video-zk__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .video-zk__icon {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 991px) {
  .video-zk__icon {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .video-zk__icon {
    width: 70px;
    height: 70px;
  }
}
.video-zk__icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .video-zk__icon svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 991px) {
  .video-zk__icon svg {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .video-zk__icon svg {
    width: 12px;
    height: 12px;
  }
}
.video-zk:hover .video-zk__icon {
  background: #fff;
  border-color: #fff;
}
.video-zk:hover .video-zk__icon svg {
  fill: #0074A0;
}
/*------------------------------ gallery ----------------------------------*/
.gallery {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .gallery {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .gallery {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .gallery {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .gallery {
    margin-bottom: 70px;
  }
}
.gallery__title {
  margin: 0 0 80px;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .gallery__title {
    margin-bottom: 60px;
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery__title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .gallery__title {
    margin-bottom: 40px;
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .gallery__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .gallery__title {
    margin-bottom: 35px;
    font-size: 33px;
  }
}
.gallery__row {
  display: grid;
  grid-template-columns: 1015px 1fr;
  column-gap: 145px;
}
@media screen and (max-width: 1739px) {
  .gallery__row {
    grid-template-columns: 657px 1fr;
    column-gap: 80px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery__row {
    grid-template-columns: 552px 1fr;
    column-gap: 70px;
  }
}
@media screen and (max-width: 991px) {
  .gallery__row {
    grid-template-columns: 386px 1fr;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gallery__row {
    grid-template-columns: 100%;
    row-gap: 30px;
  }
}
@media screen and (max-width: 374px) {
  .gallery__row {
    row-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .gallery__tabs {
    order: 2;
  }
}
.gallery__nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 32px;
}
@media screen and (max-width: 1739px) {
  .gallery__nav {
    row-gap: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery__nav {
    row-gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .gallery__nav {
    row-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .gallery__nav {
    flex-direction: row;
    column-gap: 15px;
    row-gap: 12px;
  }
}
@media screen and (max-width: 374px) {
  .gallery__nav {
    gap: 14px;
  }
}
.gallery__link {
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 8, 16, 0.2);
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .gallery__link {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery__link {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  .gallery__link {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gallery__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) {
  .gallery__link {
    font-size: 16px;
  }
}
.gallery__link.active,
.gallery__link:hover {
  color: #000810;
}
.gallery__tab {
  display: none;
}
.gallery__tab.active {
  display: block;
}
/*------------------------------ gallery-carousel ----------------------------------*/
.gallery-carousel .item {
  display: block !important;
}
.gallery-carousel .item a {
  display: block;
}
.gallery-carousel .item img {
  display: block;
  width: 100%;
  height: 545px;
  object-fit: cover;
}
@media screen and (max-width: 1739px) {
  .gallery-carousel .item img {
    height: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery-carousel .item img {
    height: 340px;
  }
}
@media screen and (max-width: 991px) {
  .gallery-carousel .item img {
    height: 340px;
  }
}
.gallery-carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 30px;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .gallery-carousel .slick-arrow {
    bottom: 20px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery-carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .gallery-carousel .slick-arrow {
    bottom: 15px;
  }
}
.gallery-carousel .slick-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .gallery-carousel .slick-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .gallery-carousel .slick-arrow svg {
    width: 14px;
    height: 14px;
  }
}
.gallery-carousel .slick-arrow:hover {
  border-color: #FFFFFF;
  background: #fff;
}
.gallery-carousel .slick-arrow:hover svg {
  stroke: #0074A0;
}
.gallery-carousel .slick-arrow.prev {
  right: calc(50% + 15px);
}
@media screen and (max-width: 1739px) {
  .gallery-carousel .slick-arrow.prev {
    right: calc(50% + 10px);
  }
}
.gallery-carousel .slick-arrow.next {
  left: calc(50% + 15px);
}
@media screen and (max-width: 1739px) {
  .gallery-carousel .slick-arrow.next {
    left: calc(50% + 10px);
  }
}
/*------------------------------ threed ----------------------------------*/
.threed {
  position: relative;
  height: 1346px;
  margin-top: -390px;
}
@media screen and (max-width: 1440px) {
  .threed {
    height: 1200px;
    margin-top: -300px;
  }
}
@media screen and (max-width: 991px) {
  .threed {
    margin-top: -267px;
    height: 848px;
  }
}
@media screen and (max-width: 767px) {
  .threed {
    margin-top: -200px;
    height: 814px;
  }
}
@media screen and (max-width: 575px) {
  .threed {
    height: 668px;
  }
}
@media screen and (max-width: 479px) {
  .threed {
    height: auto;
    aspect-ratio: 0.52;
    margin-top: -232px;
  }
}
.threed::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(147, 181, 215, 0.93);
}
.threed__bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .threed__bg {
    top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .threed__bg {
    top: 0;
  }
}
.threed__bg img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 1502px;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .threed__bg img {
    width: 1440px;
    height: 1200px;
  }
}
@media screen and (max-width: 991px) {
  .threed__bg img {
    width: 992px;
    height: 748px;
  }
}
@media screen and (max-width: 767px) {
  .threed__bg img {
    top: -660px;
    width: 768px;
    height: 1474px;
  }
}
@media screen and (max-width: 575px) {
  .threed__bg img {
    top: -424px;
    width: 576px;
    height: 1092px;
  }
}
@media screen and (max-width: 479px) {
  .threed__bg img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
  }
}
.threed .container {
  position: relative;
  z-index: 20;
  padding-top: 230px;
}
@media screen and (max-width: 1440px) {
  .threed .container {
    padding-top: 178px;
  }
}
@media screen and (max-width: 991px) {
  .threed .container {
    padding-top: 160px;
  }
}
@media screen and (max-width: 767px) {
  .threed .container {
    padding-top: 152px;
  }
}
.threed__house {
  position: absolute;
  z-index: 10;
  top: 590px;
  left: 50%;
  transform: translateX(-50%);
  width: 1486px;
  height: 727px;
}
@media screen and (max-width: 1440px) {
  .threed__house {
    top: 468px;
    width: 1186px;
    height: 578px;
  }
}
@media screen and (max-width: 991px) {
  .threed__house {
    top: 394px;
    width: 738px;
    height: 362px;
  }
}
@media screen and (max-width: 767px) {
  .threed__house {
    top: 372px;
    width: 722px;
    height: 352px;
  }
}
@media screen and (max-width: 575px) {
  .threed__house {
    top: 342px;
    width: 540px;
    height: 268px;
  }
}
@media screen and (max-width: 479px) {
  .threed__house {
    width: 94%;
    top: auto;
    bottom: 5.4%;
    height: auto;
  }
}
.threed__house .js-floor {
  fill: transparent;
  cursor: pointer;
  transition: all 0.3s linear;
}
.threed__house .js-floor:hover {
  fill: rgba(0, 116, 160, 0.4);
}
/*------------------------------ compass ----------------------------------*/
.compass {
  width: 92px;
  height: 96px;
  margin-left: auto;
  margin-bottom: 44px;
}
@media screen and (max-width: 1440px) {
  .compass {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 991px) {
  .compass {
    width: 69px;
    height: 72px;
  }
}
@media screen and (max-width: 767px) {
  .compass {
    width: 45px;
    height: 46px;
    margin-bottom: 22px;
  }
}
.compass img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/*------------------------------ select-nav ----------------------------------*/
.select-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .select-nav {
    gap: 8px;
  }
}
.select-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 30px;
  height: 52px;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 26px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .select-nav__link {
    height: 48px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .select-nav__link {
    padding: 6px 20px 4px;
    height: 32px;
    font-size: 12px;
  }
}
.select-nav__link:hover,
.select-nav__link.active {
  background: #0074A0;
  border-color: #0074A0;
  color: #fff;
}
/*------------------------------ parking ----------------------------------*/
.parking {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .parking {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .parking {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .parking {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .parking {
    margin-bottom: 70px;
  }
}
.parking__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  row-gap: 25px;
}
@media screen and (max-width: 1739px) {
  .parking__header {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .parking__header {
    margin-bottom: 35px;
  }
}
.parking__toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .parking__toggle {
    gap: 8px;
  }
}
.parking__toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 30px;
  height: 52px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 26px;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .parking__toggle a {
    height: 48px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .parking__toggle a {
    padding: 4px 16px;
    height: 32px;
    font-size: 12px;
  }
}
.parking__toggle a.active,
.parking__toggle a:hover {
  border-color: #0074A0;
  background: #0074A0;
  color: #fff;
}
.parking__plan {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #0074A0 #D9D9D9;
}
@media screen and (max-width: 991px) {
  .parking__plan {
    margin-left: calc(((100vw - 708px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 708px) / 2 + 15px) * -1);
    padding-left: calc((100vw - 708px) / 2 + 15px);
    padding-right: calc((100vw - 708px) / 2 + 15px);
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .parking__plan {
    margin-left: calc(((100vw - 560px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 560px) / 2 + 15px) * -1);
    padding-left: calc((100vw - 560px) / 2 + 15px);
    padding-right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .parking__plan {
    margin-left: calc(((100vw - 480px) / 2 + 20px) * -1);
    margin-right: calc(((100vw - 480px) / 2 + 20px) * -1);
    padding-left: calc((100vw - 480px) / 2 + 20px);
    padding-right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .parking__plan {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.parking__plan::-webkit-scrollbar {
  height: 2px;
}
.parking__plan::-webkit-scrollbar-track {
  background: #D9D9D9;
}
.parking__plan::-webkit-scrollbar-thumb {
  background-color: #0074A0;
  border-radius: 2px;
  border: none;
}
.parking__plan svg {
  display: block;
  width: 100%;
  max-width: 1384px;
  min-width: 720px;
  margin: 0 auto;
}
.parking .js-parking,
.parking .js-keller {
  opacity: 0.4;
  cursor: pointer;
}
.parking .js-parking:hover,
.parking .js-keller:hover,
.parking .js-parking.active,
.parking .js-keller.active {
  opacity: 1;
}
/*------------------------------ status ----------------------------------*/
.status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1739px) {
  .status {
    gap: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .status {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .status {
    gap: 10px;
  }
}
.status__label {
  display: block;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .status__label {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .status__label {
    width: 100%;
    font-size: 14px;
  }
}
.status__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1739px) {
  .status__row {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .status__row {
    gap: 14px;
  }
}
.status__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #000810;
}
@media screen and (max-width: 767px) {
  .status__item {
    font-size: 12px;
    column-gap: 4px;
  }
}
.status__item span::before {
  content: '—';
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .status__item span::before {
    margin-right: 4px;
  }
}
.status__item:first-child .status__icon {
  background: #fff;
  border: 1px solid #000810;
}
.status__item:nth-child(2) .status__icon {
  background: #CACACA;
}
.status__item:nth-child(3) .status__icon {
  background: rgba(0, 116, 160, 0.4);
}
.status__icon {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
@media screen and (max-width: 1739px) {
  .status__icon {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .status__icon {
    width: 18px;
    height: 18px;
  }
}
/*------------------------------ mod-parking ----------------------------------*/
.mod-parking {
  display: none;
  position: absolute;
  z-index: 6000;
  left: 0;
  width: 474px;
  padding: 40px;
  background: #0074A0;
}
@media screen and (max-width: 1739px) {
  .mod-parking {
    width: 368px;
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .mod-parking {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .mod-parking {
    width: 250px;
    padding: 15px;
  }
}
.mod-parking__name {
  margin: 0 0 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .mod-parking__name {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mod-parking__name {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }
}
.mod-parking__name span {
  display: inline-flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  padding: 2px 20px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  font-size: 12px;
  color: #0074A0;
}
@media screen and (max-width: 767px) {
  .mod-parking__name span {
    height: 26px;
    margin-left: 12px;
    padding: 2px 12px;
    font-size: 10px;
  }
}
.mod-parking__row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
}
@media screen and (max-width: 1739px) {
  .mod-parking__row {
    column-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mod-parking__row {
    column-gap: 30px;
  }
}
.mod-parking__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.mod-parking__info span {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .mod-parking__info span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mod-parking__info span {
    font-size: 14px;
  }
}
.mod-parking__info span:nth-child(2) {
  text-transform: lowercase;
  font-size: 20px;
}
@media screen and (max-width: 1739px) {
  .mod-parking__info span:nth-child(2) {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .mod-parking__info span:nth-child(2) {
    font-size: 12px;
  }
}
.mod-parking__close {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
}
.mod-parking__close svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
/*------------------------------ tour ----------------------------------*/
.tour {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .tour {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .tour {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .tour {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .tour {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .tour {
    margin-bottom: 70px;
  }
}
.tour__title {
  margin: 0 0 80px;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .tour__title {
    margin-bottom: 60px;
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .tour__title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .tour__title {
    margin-bottom: 40px;
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .tour__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .tour__title {
    margin-bottom: 35px;
    font-size: 33px;
  }
}
/*------------------------------ tour-carousel ----------------------------------*/
.tour-carousel {
  margin: 0 -10px;
  padding-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .tour-carousel {
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 1199px) {
  .tour-carousel {
    padding-bottom: 95px;
  }
}
@media screen and (max-width: 991px) {
  .tour-carousel {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .tour-carousel {
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 374px) {
  .tour-carousel {
    padding-bottom: 80px;
  }
}
.tour-carousel .slick-slide {
  padding: 0 10px;
}
.tour-carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .tour-carousel .slick-arrow {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .tour-carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.tour-carousel .slick-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #000810;
}
@media screen and (max-width: 1739px) {
  .tour-carousel .slick-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .tour-carousel .slick-arrow svg {
    width: 14px;
    height: 14px;
  }
}
.tour-carousel .slick-arrow:hover {
  border-color: #000810;
}
.tour-carousel .slick-arrow.prev {
  right: calc(50% + 15px);
}
@media screen and (max-width: 1739px) {
  .tour-carousel .slick-arrow.prev {
    right: calc(50% + 10px);
  }
}
.tour-carousel .slick-arrow.next {
  left: calc(50% + 15px);
}
@media screen and (max-width: 1739px) {
  .tour-carousel .slick-arrow.next {
    left: calc(50% + 10px);
  }
}
.tour-carousel__item {
  position: relative;
  display: flex !important;
  align-items: flex-end;
  height: 460px;
  padding: 40px;
}
@media screen and (max-width: 1739px) {
  .tour-carousel__item {
    height: 302px;
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .tour-carousel__item {
    height: 252px;
    padding: 25px;
  }
}
@media screen and (max-width: 991px) {
  .tour-carousel__item {
    height: 294px;
  }
}
@media screen and (max-width: 767px) {
  .tour-carousel__item {
    height: 252px;
    padding: 20px;
  }
}
@media screen and (max-width: 575px) {
  .tour-carousel__item {
    height: 270px;
  }
}
@media screen and (max-width: 374px) {
  .tour-carousel__item {
    height: 240px;
  }
}
.tour-carousel__item img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-carousel__item::before {
  content: '';
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000810;
  opacity: 0.2;
  transition: all 0.3s linear;
}
.tour-carousel__item:hover::before {
  opacity: 0.4;
}
.tour-carousel__title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  z-index: 20;
}
.tour-carousel__title span {
  max-width: 220px;
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .tour-carousel__title span {
    margin-bottom: 5px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .tour-carousel__title span {
    margin-bottom: 4px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .tour-carousel__title span {
    margin-bottom: 3px;
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .tour-carousel__title span {
    font-size: 14px;
  }
}
.tour-carousel__title svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #fff;
}
@media screen and (max-width: 1739px) {
  .tour-carousel__title svg {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .tour-carousel__title svg {
    width: 20px;
    height: 20px;
  }
}
/*------------------------------ m-contacts ----------------------------------*/
.m-contacts {
  position: relative;
  padding: 150px 0 122px;
  background-color: #0074A0;
}
@media screen and (max-width: 1739px) {
  .m-contacts {
    padding: 120px 0;
  }
}
@media screen and (max-width: 1199px) {
  .m-contacts {
    padding: 100px 0;
  }
}
@media screen and (max-width: 991px) {
  .m-contacts {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .m-contacts {
    padding: 75px 0 374px;
  }
}
@media screen and (max-width: 374px) {
  .m-contacts {
    padding: 70px 0 369px;
  }
}
.m-contacts__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: calc(50% - 10px);
  height: 100%;
}
@media screen and (max-width: 991px) {
  .m-contacts__bg {
    width: 41%;
  }
}
@media screen and (max-width: 767px) {
  .m-contacts__bg {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 334px;
  }
}
.m-contacts__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.m-contacts .container {
  position: relative;
  z-index: 10;
}
.m-contacts__title {
  margin: 0 0 80px;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .m-contacts__title {
    margin-bottom: 60px;
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .m-contacts__title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .m-contacts__title {
    margin-bottom: 40px;
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .m-contacts__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .m-contacts__title {
    margin-bottom: 35px;
    font-size: 33px;
  }
}
.m-contacts .tel {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 60px;
}
@media screen and (max-width: 1739px) {
  .m-contacts .tel {
    gap: 18px;
    margin-bottom: 15px;
    font-size: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .m-contacts .tel {
    gap: 16px;
    display: flex;
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .m-contacts .tel {
    gap: 14px;
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .m-contacts .tel {
    font-size: 30px;
  }
}
@media screen and (max-width: 374px) {
  .m-contacts .tel {
    font-size: 25px;
  }
}
.m-contacts .tel svg {
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 1739px) {
  .m-contacts .tel svg {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .m-contacts .tel svg {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 991px) {
  .m-contacts .tel svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .m-contacts .tel svg {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 374px) {
  .m-contacts .tel svg {
    width: 20px;
    height: 20px;
  }
}
.m-contacts__text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1739px) {
  .m-contacts__text {
    row-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .m-contacts__text {
    row-gap: 18px;
  }
}
@media screen and (max-width: 991px) {
  .m-contacts__text {
    row-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .m-contacts__text {
    row-gap: 20px;
  }
}
@media screen and (max-width: 374px) {
  .m-contacts__text {
    row-gap: 15px;
  }
}
.m-contacts__text p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .m-contacts__text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .m-contacts__text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .m-contacts__text p {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .m-contacts__text p {
    font-size: 12px;
  }
}
/*------------------------------ social ----------------------------------*/
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1739px) {
  .social {
    gap: 10px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .social {
    gap: 6px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 991px) {
  .social {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .social {
    gap: 3px;
  }
}
@media screen and (max-width: 374px) {
  .social {
    row-gap: 4px;
  }
}
.social__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 30px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 23px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .social__item {
    padding: 4px 20px;
    height: 36px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .social__item {
    height: 34px;
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .social__item {
    padding: 3px 12px;
    height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .social__item {
    height: 26px;
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .social__item {
    font-size: 10px;
  }
}
.social__item:hover {
  background: #fff;
  border-color: #fff;
  color: #0074A0;
}
/*------------------------------ progress ----------------------------------*/
.progress {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .progress {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .progress {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .progress {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .progress {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .progress {
    margin-bottom: 70px;
  }
}
.progress__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 40px;
  align-items: flex-end;
  flex-wrap: nowrap;
  margin-bottom: 80px;
}
@media screen and (max-width: 1739px) {
  .progress__header {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .progress__header {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .progress__header {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .progress__header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 374px) {
  .progress__header {
    row-gap: 25px;
    margin-bottom: 35px;
  }
}
.progress__title {
  margin: 0;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .progress__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .progress__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .progress__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .progress__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .progress__title {
    font-size: 33px;
  }
}
.progress__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1739px) {
  .progress__nav {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .progress__nav {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .progress__nav {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .progress__nav {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 374px) {
  .progress__nav {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.progress__years {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 1739px) {
  .progress__years {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .progress__years {
    gap: 25px;
  }
}
@media screen and (max-width: 374px) {
  .progress__years {
    column-gap: 20px;
    row-gap: 10px;
  }
}
.progress__years a {
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 8, 16, 0.2);
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .progress__years a {
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .progress__years a {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .progress__years a {
    font-size: 30px;
  }
}
@media screen and (max-width: 374px) {
  .progress__years a {
    font-size: 25px;
  }
}
.progress__years a.active,
.progress__years a:hover {
  color: #000810;
}
.progress__time {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 8, 16, 0.2);
}
@media screen and (max-width: 1739px) {
  .progress__time {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .progress__time {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .progress__time {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .progress__time {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .progress__time {
    font-size: 12px;
  }
}
.progress__months {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 14px;
}
@media screen and (max-width: 1739px) {
  .progress__months {
    max-width: 780px;
    gap: 10px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .progress__months {
    gap: 6px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 991px) {
  .progress__months {
    max-width: 570px;
  }
}
.progress__months a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 30px;
  height: 46px;
  border: 1px solid rgba(0, 8, 16, 0.3);
  border-radius: 23px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .progress__months a {
    height: 36px;
    padding: 3px 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .progress__months a {
    height: 34px;
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .progress__months a {
    padding: 2px 12px;
    height: 28px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .progress__months a {
    height: 26px;
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .progress__months a {
    font-size: 10px;
  }
}
.progress__months a.active,
.progress__months a:hover {
  background: #0074A0;
  border-color: #0074A0;
  color: #fff;
}
/*------------------------------ online-link ----------------------------------*/
.online-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: none;
  align-items: center;
  width: 320px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(0, 8, 16, 0.4);
  padding-bottom: 10px;
}
@media screen and (max-width: 1739px) {
  .online-link {
    width: 228px;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 1199px) {
  .online-link {
    width: 185px;
    padding-bottom: 5px;
  }
}
.online-link span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .online-link span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .online-link span {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online-link span {
    font-size: 12px;
  }
}
.online-link svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .online-link svg {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .online-link svg {
    width: 16px;
    height: 16px;
  }
}
.online-link:hover span,
.online-link:hover svg {
  opacity: 0.4;
}
/*------------------------------ location ----------------------------------*/
.location {
  position: relative;
  background: #F3F3F3;
}
.location__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.location__content {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 5 - 20px);
  margin-left: calc(100% / 12 * 7 + 10px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 996px;
  padding: 150px 0;
}
@media screen and (max-width: 1739px) {
  .location__content {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media screen and (max-width: 991px) {
  .location__content {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media screen and (max-width: 1739px) {
  .location__content {
    margin-left: calc(100% / 12 * 6 + 10px);
  }
}
@media screen and (max-width: 991px) {
  .location__content {
    margin-left: calc(100% / 12 * 0 + 10px);
  }
}
@media screen and (max-width: 1739px) {
  .location__content {
    height: 730px;
    padding: 120px 0 120px 70px;
  }
}
@media screen and (max-width: 1199px) {
  .location__content {
    height: 633px;
    padding: 100px 0 100px 50px;
  }
}
@media screen and (max-width: 991px) {
  .location__content {
    height: auto;
    padding: 80px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .location__content {
    padding-top: 75px;
  }
}
@media screen and (max-width: 374px) {
  .location__content {
    padding: 70px 0 35px;
  }
}
.location__title {
  margin: 0 0 80px;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .location__title {
    margin-bottom: 60px;
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .location__title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .location__title {
    margin-bottom: 40px;
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .location__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .location__title {
    margin-bottom: 35px;
    font-size: 33px;
  }
}
.location__addr {
  margin: 0 0 25px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .location__addr {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .location__addr {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .location__addr {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .location__addr {
    margin-bottom: 20px;
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .location__addr {
    margin-bottom: 15px;
    padding-right: 20px;
    font-size: 12px;
  }
}
.location__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}
@media screen and (max-width: 1739px) {
  .location__nav {
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .location__nav {
    max-width: 500px;
    gap: 6px;
  }
}
.location__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 30px;
  height: 46px;
  border: 1px solid rgba(0, 8, 16, 0.3);
  border-radius: 23px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .location__nav a {
    padding: 3px 20px;
    height: 36px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .location__nav a {
    height: 34px;
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .location__nav a {
    padding: 2px 12px;
    height: 28px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .location__nav a {
    height: 26px;
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .location__nav a {
    font-size: 10px;
  }
}
.location__nav a:hover,
.location__nav a.active {
  border-color: #0074A0;
  background: #0074A0;
  color: #fff;
}
/*------------------------------ map ----------------------------------*/
.map {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: calc(50% - 10px);
  height: 100%;
}
@media screen and (max-width: 991px) {
  .map {
    position: relative;
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .map {
    height: 400px;
  }
}
/*------------------------------ online ----------------------------------*/
.online {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .online {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .online {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .online {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .online {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .online {
    margin-bottom: 70px;
  }
}
.online__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1739px) {
  .online__header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 50px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .online__header {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .online__header {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .online__header {
    row-gap: 30px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 374px) {
  .online__header {
    row-gap: 25px;
    margin-bottom: 35px;
  }
}
.online__title {
  margin: 0;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .online__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .online__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .online__title {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .online__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .online__title {
    font-size: 33px;
  }
}
.online__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media screen and (max-width: 1739px) {
  .online__nav {
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  .online__nav {
    gap: 6px;
  }
}
.online__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 30px;
  height: 46px;
  border: 1px solid rgba(0, 8, 16, 0.3);
  border-radius: 23px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .online__nav a {
    padding: 3px 20px;
    height: 36px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .online__nav a {
    height: 34px;
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online__nav a {
    padding: 2px 12px;
    height: 28px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .online__nav a {
    height: 26px;
    font-size: 11px;
  }
}
@media screen and (max-width: 374px) {
  .online__nav a {
    font-size: 10px;
  }
}
.online__nav a:hover,
.online__nav a.active {
  border-color: #0074A0;
  background: #0074A0;
  color: #fff;
}
/*------------------------------ video-block ----------------------------------*/
.video-block {
  position: relative;
  max-width: 100%;
  height: 0;
  margin: 0 auto;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*------------------------------ mod-floor ----------------------------------*/
.mod-floor {
  display: none;
  position: absolute;
  z-index: 6000;
  left: 50%;
  transform: translateX(-50%);
  width: 508px;
  padding: 40px;
  background-color: #ffffff;
}
@media screen and (max-width: 1739px) {
  .mod-floor {
    width: 468px;
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .mod-floor {
    position: fixed;
    top: auto;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mod-floor {
    width: 258px;
    padding: 15px;
  }
}
.mod-floor__header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 8, 16, 0.1);
}
@media screen and (max-width: 1739px) {
  .mod-floor__header {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .mod-floor__header {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}
.mod-floor__header p {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}
.mod-floor__header p:first-child {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0074A0;
}
@media screen and (max-width: 1739px) {
  .mod-floor__header p:first-child {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mod-floor__header p:first-child {
    font-size: 14px;
  }
}
.mod-floor__header p:nth-child(2) {
  font-size: 20px;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .mod-floor__header p:nth-child(2) {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .mod-floor__header p:nth-child(2) {
    font-size: 14px;
  }
}
.mod-floor__row {
  display: flex;
  flex-wrap: wrap;
}
.mod-floor__col {
  width: calc(100% / 3);
}
.mod-floor__col p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .mod-floor__col p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .mod-floor__col p {
    font-size: 14px;
  }
}
.mod-floor__col p span {
  display: block;
  font-size: 30px;
}
@media screen and (max-width: 1739px) {
  .mod-floor__col p span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mod-floor__col p span {
    font-size: 14px;
  }
}
.mod-floor__close {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 1199px) {
  .mod-floor__close {
    display: block;
  }
}
.mod-floor__close svg {
  width: 100%;
  height: 100%;
  fill: #000810;
}
/*------------------------------ howbuy ----------------------------------*/
.howbuy {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .howbuy {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .howbuy {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .howbuy {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .howbuy {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .howbuy {
    margin-bottom: 70px;
  }
}
.howbuy__desc {
  max-width: 710px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1739px) {
  .howbuy__desc {
    max-width: 660px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .howbuy__desc {
    margin-bottom: 35px;
  }
}
.howbuy__desc p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .howbuy__desc p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .howbuy__desc p {
    font-size: 12px;
  }
}
.howbuy__nav {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  gap: 14px;
  margin-bottom: 50px;
  overflow-x: auto;
  padding-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .howbuy__nav {
    margin-left: calc(((100vw - 708px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 708px) / 2 + 15px) * -1);
    padding-left: calc((100vw - 708px) / 2 + 15px);
    padding-right: calc((100vw - 708px) / 2 + 15px);
  }
}
@media screen and (max-width: 767px) {
  .howbuy__nav {
    margin-left: calc(((100vw - 560px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 560px) / 2 + 15px) * -1);
    padding-left: calc((100vw - 560px) / 2 + 15px);
    padding-right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .howbuy__nav {
    margin-left: calc(((100vw - 480px) / 2 + 20px) * -1);
    margin-right: calc(((100vw - 480px) / 2 + 20px) * -1);
    padding-left: calc((100vw - 480px) / 2 + 20px);
    padding-right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .howbuy__nav {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1739px) {
  .howbuy__nav {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .howbuy__nav {
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.howbuy__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  flex-wrap: nowrap;
  height: 46px;
  padding: 3px 30px;
  height: 52px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 26px;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .howbuy__nav a {
    height: 48px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .howbuy__nav a {
    height: 40px;
    font-size: 12px;
  }
}
.howbuy__nav a:hover,
.howbuy__nav a.active {
  background: #0074A0;
  border-color: #0074A0;
  color: #fff;
}
/*------------------------------ finance ----------------------------------*/
.finance {
  max-width: 850px;
}
@media screen and (max-width: 767px) {
  .finance {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.finance__logo {
  margin-bottom: 60px;
}
@media screen and (max-width: 1739px) {
  .finance__logo {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .finance__logo {
    margin-bottom: 25px;
  }
}
.finance__desc {
  margin-bottom: 80px;
}
@media screen and (max-width: 1739px) {
  .finance__desc {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .finance__desc {
    margin-bottom: 40px;
  }
}
.finance__desc p {
  margin: 0 0 30px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #000810;
}
@media screen and (max-width: 1199px) {
  .finance__desc p {
    margin-bottom: 25px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .finance__desc p {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.finance__desc p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .finance .consult-link {
    align-self: center;
  }
}
/*------------------------------ consult-link ----------------------------------*/
.consult-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 374px) {
  .consult-link {
    max-width: 174px;
    align-items: flex-end;
    gap: 6px;
  }
}
.consult-link span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .consult-link span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .consult-link span {
    font-size: 14px;
  }
}
.consult-link svg {
  flex: none;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .consult-link svg {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .consult-link svg {
    width: 20px;
    height: 20px;
  }
}
.consult-link:hover span {
  color: #0074A0;
}
.consult-link:hover svg {
  stroke: #0074A0;
}
/*------------------------------ capital ----------------------------------*/
.capital__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1739px) {
  .capital__row {
    margin-bottom: 60px;
  }
}
.capital__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
  padding: 30px;
  border: 1px solid rgba(0, 8, 16, 0.1);
}
@media screen and (max-width: 1199px) {
  .capital__item {
    width: calc(100% / 12 * 6 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .capital__item {
    width: calc(100% / 12 * 12 - 20px);
  }
}
@media screen and (max-width: 1739px) {
  .capital__item {
    padding: 20px;
  }
}
.capital__num {
  display: block;
  margin-bottom: 80px;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .capital__num {
    margin-bottom: 46px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .capital__num {
    margin-bottom: 30px;
    font-size: 14px;
  }
}
.capital__text {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .capital__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .capital__text {
    font-size: 12px;
  }
}
.capital__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 80px;
}
@media screen and (max-width: 1739px) {
  .capital__footer {
    column-gap: 60px;
  }
}
@media screen and (max-width: 991px) {
  .capital__footer {
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
/*------------------------------ load ----------------------------------*/
.load {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .load {
    gap: 6px;
  }
}
.load span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .load span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .load span {
    font-size: 14px;
  }
}
.load svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .load svg {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .load svg {
    width: 20px;
    height: 20px;
  }
}
.load:hover span {
  color: #0074A0;
}
.load:hover svg {
  stroke: #0074A0;
}
/*------------------------------ banks ----------------------------------*/
.banks {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: center;
  height: 160px;
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .banks {
    margin-bottom: 120px;
    height: 87px;
  }
}
@media screen and (max-width: 1199px) {
  .banks {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .banks {
    height: auto;
    column-gap: 0;
    row-gap: 30px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .banks {
    margin-bottom: 70px;
  }
}
.banks__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 7 - 20px);
  padding: 0 20px;
}
@media screen and (max-width: 991px) {
  .banks__item {
    width: calc(100% / 12 * 3 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .banks__item {
    width: calc(100% / 12 * 4 - 20px);
  }
}
@media screen and (max-width: 575px) {
  .banks__item {
    width: calc(100% / 12 * 6 - 20px);
  }
}
.banks__item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1);
  transition: all 0.3s linear;
}
@media screen and (max-width: 991px) {
  .banks__item img {
    max-height: 80px;
  }
}
.banks__item:hover img {
  filter: grayscale(0);
}
/*------------------------------ mortgage ----------------------------------*/
.mortgage__title {
  margin: 0 0 80px;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .mortgage__title {
    margin-bottom: 60px;
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .mortgage__title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .mortgage__title {
    margin-bottom: 40px;
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .mortgage__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .mortgage__title {
    margin-bottom: 35px;
    font-size: 33px;
  }
}
.mortgage__footer {
  text-align: center;
}
/*------------------------------ filter ----------------------------------*/
.filter {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1739px) {
  .filter {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 991px) {
  .filter {
    column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .filter {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 35px;
  }
}
.filter__item {
  width: calc((100% - 40px) / 3);
  padding-right: 40px;
}
@media screen and (max-width: 1739px) {
  .filter__item {
    padding-right: 30px;
  }
}
@media screen and (max-width: 991px) {
  .filter__item {
    width: calc(50% - 20px);
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .filter__item {
    width: 100%;
  }
}
.filter__text {
  margin: 0 0 25px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .filter__text {
    margin-bottom: 22px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .filter__text {
    margin-bottom: 12px;
    font-size: 12px;
  }
}
/*------------------------------ mort-result ----------------------------------*/
.mort-result {
  margin: 0 -10px 60px;
}
@media screen and (max-width: 1739px) {
  .mort-result {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .mort-result {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .mort-result {
    margin-bottom: 35px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .mort-result .slick-list {
    overflow: visible;
  }
}
.mort-result .slick-track {
  display: flex !important;
  align-items: stretch;
}
.mort-result .slick-slide {
  height: auto;
}
@media screen and (max-width: 767px) {
  .mort-result .slick-slide {
    width: 230px;
  }
}
.mort-result .slick-slide > div {
  height: 100%;
}
.mort-result .item {
  height: 100%;
  padding: 0 10px;
}
.mort-result__item {
  display: block;
  height: 100%;
  padding: 40px;
  border: 1px solid rgba(0, 8, 16, 0.1);
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .mort-result__item {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mort-result__item {
    padding: 15px;
  }
}
.mort-result__item:hover {
  border-color: #000810;
}
.mort-result__title {
  margin: 0 0 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 8, 16, 0.1);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .mort-result__title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mort-result__title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 14px;
  }
}
.mort-result__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1739px) {
  .mort-result__info {
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mort-result__info {
    row-gap: 15px;
  }
}
.mort-result__section p {
  margin: 0;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .mort-result__section p {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mort-result__section p {
    font-size: 14px;
  }
}
.mort-result__section p:nth-child(2) {
  font-size: 20px;
}
@media screen and (max-width: 1739px) {
  .mort-result__section p:nth-child(2) {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .mort-result__section p:nth-child(2) {
    font-size: 12px;
  }
}
.mort-result .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: -176px;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .mort-result .slick-arrow {
    top: -137px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 991px) {
  .mort-result .slick-arrow {
    top: auto;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .mort-result .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.mort-result .slick-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #000810;
}
@media screen and (max-width: 1739px) {
  .mort-result .slick-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .mort-result .slick-arrow svg {
    width: 14px;
    height: 14px;
  }
}
.mort-result .slick-arrow:hover {
  border-color: #000810;
}
.mort-result .slick-arrow.prev {
  right: 130px;
}
@media screen and (max-width: 1739px) {
  .mort-result .slick-arrow.prev {
    right: 90px;
  }
}
@media screen and (max-width: 991px) {
  .mort-result .slick-arrow.prev {
    right: calc(50% + 10px);
  }
}
.mort-result .slick-arrow.next {
  right: 10px;
}
@media screen and (max-width: 991px) {
  .mort-result .slick-arrow.next {
    right: auto;
    left: calc(50% + 10px);
  }
}
/*------------------------------ irs ----------------------------------*/
.irs--flat {
  height: 48px;
}
@media screen and (max-width: 1739px) {
  .irs--flat {
    height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .irs--flat {
    height: 32px;
  }
}
.irs--flat .irs-min,
.irs--flat .irs-max,
.irs--flat .irs-from,
.irs--flat .irs-to {
  display: none;
}
.irs--flat .irs-line {
  top: 7px;
  height: 1px;
  background: rgba(0, 8, 16, 0.4);
}
@media screen and (max-width: 1739px) {
  .irs--flat .irs-line {
    top: 6px;
  }
}
.irs--flat .irs-bar {
  top: 7px;
  height: 1px;
  background: #0074A0;
}
@media screen and (max-width: 1739px) {
  .irs--flat .irs-bar {
    top: 6px;
  }
}
.irs--flat .irs-handle {
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0074A0;
}
@media screen and (max-width: 1739px) {
  .irs--flat .irs-handle {
    width: 13px;
    height: 13px;
  }
}
.irs--flat .irs-handle i {
  display: none !important;
}
.irs--flat .irs-single {
  visibility: visible !important;
  top: 18px;
  padding: 0;
  background: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .irs--flat .irs-single {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .irs--flat .irs-single {
    top: 14px;
    font-size: 12px;
  }
}
.irs--flat .irs-single::before {
  display: none;
}
.range-slider--double .irs--flat .irs-single {
  left: 0 !important;
  font-size: 16px;
}
@media screen and (max-width: 1739px) {
  .range-slider--double .irs--flat .irs-single {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .range-slider--double .irs--flat .irs-single {
    font-size: 12px;
  }
}
/*------------------------------ choosing ----------------------------------*/
.choosing {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .choosing {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .choosing {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .choosing {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .choosing {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .choosing {
    margin-bottom: 70px;
  }
}
.choosing .select-nav {
  margin-bottom: 80px;
}
@media screen and (max-width: 1739px) {
  .choosing .select-nav {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .choosing .select-nav {
    margin-bottom: 35px;
  }
}
.choosing .container {
  position: relative;
}
.choosing__res {
  position: absolute;
  z-index: 10;
  right: 10px;
  top: -103px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .choosing__res {
    top: -78px;
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .choosing__res {
    position: static;
    display: block;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .choosing__res {
    margin-bottom: 35px;
  }
}
/*------------------------------ flat-filter ----------------------------------*/
.flat-filter {
  display: flex;
  justify-content: space-between;
  column-gap: 100px;
  margin-bottom: 80px;
  padding: 52px;
  border: 1px solid rgba(0, 8, 16, 0.1);
}
@media screen and (max-width: 1739px) {
  .flat-filter {
    column-gap: 60px;
    margin-bottom: 60px;
    padding: 40px 35px;
  }
}
@media screen and (max-width: 1199px) {
  .flat-filter {
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 20px;
    padding: 30px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 991px) {
  .flat-filter {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .flat-filter {
    margin-bottom: 20px;
    padding: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .flat-filter__item {
    width: calc((100% - 80px) / 3);
  }
}
@media screen and (max-width: 991px) {
  .flat-filter__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .flat-filter__item {
    width: 100%;
  }
}
.flat-filter__text {
  margin: 0 0 25px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .flat-filter__text {
    margin-bottom: 22px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .flat-filter__text {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
.flat-filter .range-slider {
  width: 250px;
}
@media screen and (max-width: 1739px) {
  .flat-filter .range-slider {
    width: 170px;
  }
}
@media screen and (max-width: 1199px) {
  .flat-filter .range-slider {
    width: 100%;
  }
}
/*------------------------------ wb-check ----------------------------------*/
.wb-check {
  position: relative;
  max-width: 112px;
}
@media screen and (max-width: 1739px) {
  .wb-check {
    max-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .wb-check {
    max-width: 120px;
  }
}
.wb-check label {
  display: inline-block;
  position: relative;
  padding-top: 54px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #000810;
  cursor: pointer;
}
@media screen and (max-width: 1739px) {
  .wb-check label {
    padding-top: 42px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .wb-check label {
    padding-top: 0;
    padding-left: 40px;
    font-size: 14px;
  }
}
.wb-check label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid #0074A0;
  border-radius: 50%;
  background-color: #ffffff;
}
@media screen and (max-width: 1739px) {
  .wb-check label::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .wb-check label::before {
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
  }
}
.wb-check input {
  display: none;
}
.wb-check input:checked + label::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0074A0;
}
@media screen and (max-width: 1739px) {
  .wb-check input:checked + label::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  .wb-check input:checked + label::after {
    top: calc(50% - 4px);
    left: 8px;
    width: 8px;
    height: 8px;
  }
}
/*------------------------------ num-rooms ----------------------------------*/
.num-rooms {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1739px) {
  .num-rooms {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .num-rooms {
    gap: 10px;
  }
}
.num-rooms__check {
  position: relative;
}
.num-rooms__check label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 50%;
  font-weight: 400;
  font-size: 16px;
  color: #000810;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .num-rooms__check label {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .num-rooms__check label {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
}
.num-rooms__check label:hover {
  border-color: #000810;
}
.num-rooms__check input {
  display: none;
}
.num-rooms__check input:checked + label {
  background: #0074A0;
  border-color: #0074A0;
  color: #fff;
}
/*------------------------------ listing ----------------------------------*/
.listing {
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #D9D9D9 #0074A0;
}
@media screen and (max-width: 1199px) {
  .listing {
    margin-left: calc(((100vw - 980px) / 2 + 10px) * -1);
    margin-right: calc(((100vw - 980px) / 2 + 10px) * -1);
    padding-left: calc((100vw - 980px) / 2 + 10px);
    padding-right: calc((100vw - 980px) / 2 + 10px);
  }
}
@media screen and (max-width: 991px) {
  .listing {
    margin-left: calc(((100vw - 708px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 708px) / 2 + 15px) * -1);
    padding-left: calc((100vw - 708px) / 2 + 15px);
    padding-right: calc((100vw - 708px) / 2 + 15px);
  }
}
@media screen and (max-width: 767px) {
  .listing {
    margin-left: calc(((100vw - 560px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 560px) / 2 + 15px) * -1);
    padding-left: calc((100vw - 560px) / 2 + 15px);
    padding-right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .listing {
    margin-left: calc(((100vw - 480px) / 2 + 20px) * -1);
    margin-right: calc(((100vw - 480px) / 2 + 20px) * -1);
    padding-left: calc((100vw - 480px) / 2 + 20px);
    padding-right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .listing {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.listing::-webkit-scrollbar {
  height: 2px;
}
.listing::-webkit-scrollbar-track {
  background: #D9D9D9;
}
.listing::-webkit-scrollbar-thumb {
  background-color: #0074A0;
  border-radius: 2px;
  border: none;
}
.listing__table {
  min-width: 1140px;
}
.listing__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 8, 16, 0.1);
}
@media screen and (max-width: 1739px) {
  .listing__header {
    padding-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  .listing__header {
    padding-bottom: 16px;
  }
}
.listing__header span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 8, 16, 0.4);
}
@media screen and (max-width: 1739px) {
  .listing__header span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .listing__header span {
    font-size: 14px;
  }
}
.listing__header span:first-child {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 767px) {
  .listing__header span:first-child {
    width: calc(100% / 12 * 1.7 - 20px);
  }
}
.listing__header span:nth-child(2) {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 1739px) {
  .listing__header span:nth-child(2) {
    width: calc(100% / 12 * 2.2 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .listing__header span:nth-child(2) {
    width: calc(100% / 12 * 2.5 - 20px);
  }
}
.listing__header span:nth-child(3) {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 1739px) {
  .listing__header span:nth-child(3) {
    width: calc(100% / 12 * 1.8 - 20px);
  }
}
.listing__header span:nth-child(4) {
  width: calc(100% / 12 * 1.5 - 20px);
}
.listing__header span:nth-child(5) {
  width: calc(100% / 12 * 2 - 20px);
}
.listing__header span:nth-child(6) {
  width: calc(100% / 12 * 2 - 20px);
}
.listing__item {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 8, 16, 0.1);
}
@media screen and (max-width: 1739px) {
  .listing__item {
    padding: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .listing__item {
    padding: 20px 0;
  }
}
.listing__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.listing__col:first-child {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 767px) {
  .listing__col:first-child {
    width: calc(100% / 12 * 1.7 - 20px);
  }
}
.listing__col:nth-child(2) {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 1739px) {
  .listing__col:nth-child(2) {
    width: calc(100% / 12 * 2.2 - 20px);
  }
}
@media screen and (max-width: 767px) {
  .listing__col:nth-child(2) {
    width: calc(100% / 12 * 2.5 - 20px);
  }
}
.listing__col:nth-child(3) {
  width: calc(100% / 12 * 2 - 20px);
}
@media screen and (max-width: 1739px) {
  .listing__col:nth-child(3) {
    width: calc(100% / 12 * 1.8 - 20px);
  }
}
.listing__col:nth-child(4) {
  width: calc(100% / 12 * 1.5 - 20px);
}
.listing__col:nth-child(5) {
  width: calc(100% / 12 * 2 - 20px);
}
.listing__col:nth-child(6) {
  width: calc(100% / 12 * 2 - 20px);
}
.listing__col span {
  font-weight: 400;
  font-size: 20px;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .listing__col span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .listing__col span {
    font-size: 14px;
  }
}
.listing__col img {
  max-height: 132px;
}
@media screen and (max-width: 1739px) {
  .listing__col img {
    max-height: 78px;
  }
}
@media screen and (max-width: 767px) {
  .listing__col img {
    max-height: 64px;
  }
}
.listing__price {
  margin: 0;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .listing__price {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .listing__price {
    font-size: 16px;
  }
}
.listing__fav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 50%;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .listing__fav {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .listing__fav {
    width: 40px;
    height: 40px;
  }
}
.listing__fav svg {
  width: 25px;
  height: 25px;
  fill: transparent;
  stroke: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .listing__fav svg {
    width: 14px;
    height: 14px;
  }
}
.listing__fav:hover {
  border-color: #000810;
}
.listing__fav.active svg {
  fill: #0074A0;
  stroke: #0074A0;
}
.listing__footer {
  padding-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1739px) {
  .listing__footer {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .listing__footer {
    padding-top: 35px;
  }
}
.listing .consult-link {
  max-width: none !important;
}
/*------------------------------ fplan ----------------------------------*/
.fplan {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .fplan {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .fplan {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .fplan {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .fplan {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .fplan {
    margin-bottom: 70px;
  }
}
.fplan__wrap {
  position: relative;
}
.fplan__title {
  margin: 0 0 75px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 8, 16, 0.7);
}
@media screen and (max-width: 1739px) {
  .fplan__title {
    margin-bottom: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .fplan__title {
    margin-bottom: 35px;
    font-size: 14px;
  }
}
.fplan__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .fplan__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }
}
.fplan__scheme {
  width: 1160px;
  scrollbar-width: thin;
  scrollbar-color: #0074A0 #D9D9D9;
}
@media screen and (max-width: 1739px) {
  .fplan__scheme {
    width: 746px;
  }
}
@media screen and (max-width: 991px) {
  .fplan__scheme {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fplan__scheme {
    width: 100vw;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-left: calc(((100vw - 560px) / 2 + 15px) * -1);
    margin-right: calc(((100vw - 560px) / 2 + 15px) * -1);
    padding-left: calc((100vw - 560px) / 2 + 15px);
    padding-right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .fplan__scheme {
    margin-left: calc(((100vw - 480px) / 2 + 20px) * -1);
    margin-right: calc(((100vw - 480px) / 2 + 20px) * -1);
    padding-left: calc((100vw - 480px) / 2 + 20px);
    padding-right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .fplan__scheme {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.fplan__scheme::-webkit-scrollbar {
  height: 2px;
}
.fplan__scheme::-webkit-scrollbar-track {
  background: #D9D9D9;
}
.fplan__scheme::-webkit-scrollbar-thumb {
  background-color: #0074A0;
  border-radius: 2px;
  border: none;
}
.fplan__scheme svg {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fplan__scheme svg {
    width: 746px;
  }
}
.fplan .compass {
  margin-left: 0;
}
@media screen and (max-width: 991px) {
  .fplan .compass {
    position: absolute;
    right: 15px;
    top: -20px;
  }
}
.fplan .js-flat {
  fill: transparent;
  cursor: pointer;
}
/*------------------------------ floors ----------------------------------*/
.floors {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1739px) {
  .floors {
    gap: 25px;
  }
}
@media screen and (max-width: 991px) {
  .floors {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .floors {
    gap: 10px;
  }
}
.floors__label {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .floors__label {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .floors__label {
    font-size: 14px;
  }
}
.floors__carousel {
  width: 62px;
  margin: 30px 0;
}
@media screen and (max-width: 1739px) {
  .floors__carousel {
    width: 44px;
    margin: 27px 0;
  }
}
@media screen and (max-width: 991px) {
  .floors__carousel {
    width: 204px;
    margin: 0 26px;
  }
}
@media screen and (max-width: 767px) {
  .floors__carousel {
    width: 176px;
  }
}
.floors__carousel .slick-vertical .slick-slide {
  border: none;
}
.floors__carousel .item {
  padding: 8px 0;
}
@media screen and (max-width: 1739px) {
  .floors__carousel .item {
    padding: 7px 0;
  }
}
@media screen and (max-width: 991px) {
  .floors__carousel .item {
    padding: 0 6px;
  }
}
.floors__carousel .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(0, 8, 16, 0.4);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #000810;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .floors__carousel .item a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .floors__carousel .item a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
.floors__carousel .item a:hover {
  border-color: #000810;
}
.floors__carousel .item.active a {
  border-color: #0074A0;
  background-color: #0074A0;
  color: #fff;
}
.floors__carousel .slick-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media screen and (max-width: 1739px) {
  .floors__carousel .slick-arrow {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 991px) {
  .floors__carousel .slick-arrow {
    transform: translateY(-50%) rotate(-90deg);
  }
}
.floors__carousel .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #000810;
  opacity: 0.4;
  transition: all 0.3s linear;
}
.floors__carousel .slick-arrow:hover svg {
  opacity: 1;
}
.floors__carousel .slick-arrow.prev {
  top: -30px;
}
@media screen and (max-width: 1739px) {
  .floors__carousel .slick-arrow.prev {
    top: -27px;
  }
}
@media screen and (max-width: 991px) {
  .floors__carousel .slick-arrow.prev {
    top: 50%;
    left: -26px;
  }
}
.floors__carousel .slick-arrow.next {
  bottom: -30px;
}
@media screen and (max-width: 1739px) {
  .floors__carousel .slick-arrow.next {
    bottom: -27px;
  }
}
@media screen and (max-width: 991px) {
  .floors__carousel .slick-arrow.next {
    bottom: auto;
    top: 50%;
    left: auto;
    right: -26px;
  }
}
/*------------------------------ mod-flats ----------------------------------*/
.mod-flats {
  display: none;
  position: absolute;
  z-index: 6000;
  left: 0;
  width: 532px;
  padding: 40px;
  background: #0074A0;
}
@media screen and (max-width: 1739px) {
  .mod-flats {
    width: 438px;
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .mod-flats {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .mod-flats {
    width: 284px;
    padding: 15px;
  }
}
.mod-flats__name {
  margin: 0 0 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .mod-flats__name {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mod-flats__name {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }
}
.mod-flats__name span {
  display: inline-flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  padding: 2px 20px;
  height: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  font-size: 12px;
  color: #0074A0;
}
@media screen and (max-width: 767px) {
  .mod-flats__name span {
    height: 26px;
    margin-left: 12px;
    padding: 2px 12px;
    font-size: 10px;
  }
}
.mod-flats__row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
.mod-flats__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 50%;
}
.mod-flats__info span {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1739px) {
  .mod-flats__info span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mod-flats__info span {
    font-size: 14px;
  }
}
.mod-flats__info span:nth-child(2) {
  text-transform: lowercase;
  font-size: 20px;
}
@media screen and (max-width: 1739px) {
  .mod-flats__info span:nth-child(2) {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .mod-flats__info span:nth-child(2) {
    font-size: 12px;
  }
}
.mod-flats__close {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 1199px) {
  .mod-flats__close {
    display: block;
  }
}
.mod-flats__close svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
/*------------------------------ contacts ----------------------------------*/
.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .contacts {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .contacts {
    gap: 35px;
  }
}
.contacts__left {
  width: calc(50% - 10px);
  padding-left: calc((100vw - 1740px) / 2 + 10px);
}
@media screen and (max-width: 1739px) {
  .contacts__left {
    padding-left: calc((100vw - 1160px) / 2 + 10px);
  }
}
@media screen and (max-width: 1199px) {
  .contacts__left {
    padding-left: calc((100vw - 980px) / 2 + 10px);
  }
}
@media screen and (max-width: 991px) {
  .contacts__left {
    width: 100%;
    padding-left: calc((100vw - 708px) / 2 + 15px);
    padding-right: calc((100vw - 708px) / 2 + 15px);
  }
}
@media screen and (max-width: 767px) {
  .contacts__left {
    padding-left: calc((100vw - 560px) / 2 + 15px);
    padding-right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .contacts__left {
    padding-left: calc((100vw - 480px) / 2 + 20px);
    padding-right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .contacts__left {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contacts__right {
  width: calc(50% - 10px);
  margin-top: -160px;
}
@media screen and (max-width: 1739px) {
  .contacts__right {
    margin-top: -120px;
  }
}
@media screen and (max-width: 991px) {
  .contacts__right {
    width: 100%;
    margin-top: 0;
  }
}
.contacts .tel {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 60px;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .contacts .tel {
    gap: 18px;
    margin-bottom: 15px;
    font-size: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .contacts .tel {
    gap: 16px;
    display: flex;
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .contacts .tel {
    gap: 14px;
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .contacts .tel {
    font-size: 30px;
  }
}
@media screen and (max-width: 374px) {
  .contacts .tel {
    font-size: 25px;
  }
}
.contacts .tel svg {
  width: 44px;
  height: 44px;
  fill: #000810;
}
@media screen and (max-width: 1739px) {
  .contacts .tel svg {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .contacts .tel svg {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 991px) {
  .contacts .tel svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contacts .tel svg {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 374px) {
  .contacts .tel svg {
    width: 20px;
    height: 20px;
  }
}
.contacts__text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1739px) {
  .contacts__text {
    row-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .contacts__text {
    row-gap: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contacts__text {
    row-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .contacts__text {
    row-gap: 20px;
  }
}
@media screen and (max-width: 374px) {
  .contacts__text {
    row-gap: 15px;
  }
}
.contacts__text p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .contacts__text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .contacts__text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .contacts__text p {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .contacts__text p {
    font-size: 12px;
  }
}
.contacts .social__item {
  color: #000810;
  border-color: rgba(0, 8, 16, 0.3);
}
.contacts .social__item:hover {
  border-color: #000810;
}
/*------------------------------ contacts-map ----------------------------------*/
.contacts-map {
  height: 716px;
}
@media screen and (max-width: 1739px) {
  .contacts-map {
    height: 547px;
  }
}
@media screen and (max-width: 991px) {
  .contacts-map {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .contacts-map {
    height: 420px;
  }
}
@media screen and (max-width: 479px) {
  .contacts-map {
    height: 380px;
  }
}
@media screen and (max-width: 374px) {
  .contacts-map {
    height: 320px;
  }
}
[class*="ymaps-2-1"][class*="-ground-pane"] {
  filter: grayscale(1);
}
/*------------------------------ route ----------------------------------*/
.route {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}
@media screen and (max-width: 1739px) {
  .route {
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .route {
    display: none;
  }
}
.route svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #0074A0;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .route svg {
    width: 26px;
    height: 26px;
  }
}
.route span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #0074A0;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .route span {
    font-size: 18px;
  }
}
.route:hover svg {
  stroke: #000810;
}
.route:hover span {
  color: #000810;
}
/*------------------------------ accord ----------------------------------*/
.accord {
  padding-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .accord {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .accord {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .accord {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .accord {
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .accord {
    padding-bottom: 70px;
  }
}
.accord__wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 110px;
  position: relative;
  padding-top: 83px;
  padding-bottom: 77px;
  background-image: url(../img/img22.png), url(../img/img23.jpg);
  background-repeat: no-repeat;
  background-position: left bottom, right top;
  background-size: 411px, 475px;
}
@media screen and (max-width: 1739px) {
  .accord__wrap {
    row-gap: 80px;
    padding-top: 59px;
    padding-bottom: 66px;
    background-size: 250px, 338px;
  }
}
@media screen and (max-width: 1199px) {
  .accord__wrap {
    row-gap: 70px;
    padding-top: 50px;
    padding-bottom: 40px;
    background-size: 175px, auto 191px;
    background-position: left bottom, 752px top;
  }
}
@media screen and (max-width: 991px) {
  .accord__wrap {
    row-gap: 60px;
    padding-top: 22px;
    padding-bottom: 13px;
    background-size: 148px, auto 147px;
    background-position: left bottom, 565px top;
  }
}
@media screen and (max-width: 767px) {
  .accord__wrap {
    align-items: stretch;
    row-gap: 45px;
    padding: 0;
    background-image: none;
  }
}
@media screen and (max-width: 374px) {
  .accord__wrap {
    row-gap: 40px;
  }
}
@media screen and (max-width: 575px) {
  .accord__section:first-child .accord__header {
    max-width: 296px;
  }
}
@media screen and (max-width: 374px) {
  .accord__section:first-child .accord__header {
    max-width: 100%;
    justify-content: flex-end;
  }
}
.accord__section:first-child .accord__text {
  display: block;
}
.accord__section:nth-child(2) {
  margin-left: 475px;
}
@media screen and (max-width: 1739px) {
  .accord__section:nth-child(2) {
    margin-left: 272px;
  }
}
@media screen and (max-width: 1199px) {
  .accord__section:nth-child(2) {
    margin-left: 203px;
  }
}
@media screen and (max-width: 991px) {
  .accord__section:nth-child(2) {
    margin-left: 60px;
  }
}
@media screen and (max-width: 575px) {
  .accord__section:nth-child(2) {
    margin-left: 40px;
  }
}
@media screen and (max-width: 374px) {
  .accord__section:nth-child(2) {
    margin-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .accord__section:nth-child(2) .accord__header {
    max-width: 250px;
  }
}
@media screen and (max-width: 374px) {
  .accord__section:nth-child(2) .accord__header {
    max-width: 100%;
    justify-content: flex-end;
  }
}
.accord__section:nth-child(3) {
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .accord__section:nth-child(3) {
    max-width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .accord__section:nth-child(3) .accord__header {
    max-width: 304px;
  }
}
@media screen and (max-width: 374px) {
  .accord__section:nth-child(3) .accord__header {
    max-width: 100%;
    justify-content: flex-end;
  }
}
.accord__header {
  display: flex;
  align-items: flex-end;
  column-gap: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1739px) {
  .accord__header {
    column-gap: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .accord__header {
    column-gap: 8px;
  }
}
@media screen and (max-width: 374px) {
  .accord__header {
    column-gap: 0;
  }
}
.accord__header span {
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 8, 16, 0.2);
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .accord__header span {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .accord__header span {
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .accord__header span {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .accord__header span {
    text-align: right;
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .accord__header span {
    font-size: 33px;
  }
}
.accord__header svg {
  flex: none;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: rgba(0, 8, 16, 0.2);
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .accord__header svg {
    width: 26px;
    height: 26px;
  }
}
.accord__header:hover span {
  color: #000810;
}
.accord__header:hover svg {
  stroke: #000810;
}
.accord__header.open span {
  color: #000810;
}
.accord__header.open svg {
  stroke: #000810;
  transform: rotate(90deg);
}
.accord__text {
  display: none;
  max-width: 445px;
  margin-left: auto;
  padding-top: 40px;
}
@media screen and (max-width: 1739px) {
  .accord__text {
    max-width: 345px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .accord__text {
    max-width: 322px;
    padding-top: 25px;
  }
}
@media screen and (max-width: 991px) {
  .accord__text {
    max-width: none;
    padding-top: 20px;
    padding-bottom: 196px;
    background-image: url(../img/img22.png), url(../img/img23.jpg);
    background-repeat: no-repeat;
    background-position: left bottom, left 183px bottom 42px;
    background-size: 140px, auto 139px;
  }
}
@media screen and (max-width: 374px) {
  .accord__text {
    padding-bottom: 202px;
    background-position: left bottom, left 162px bottom 42px;
    background-size: 121px, auto 131px;
  }
}
.accord__text p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .accord__text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .accord__text p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .accord__text p {
    max-width: 280px;
  }
}
@media screen and (max-width: 374px) {
  .accord__text p {
    max-width: 264px;
    font-size: 12px;
  }
}
/*------------------------------ flat ----------------------------------*/
.flat__section {
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .flat__section {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .flat__section {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .flat__section {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .flat__section {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .flat__section {
    margin-bottom: 70px;
  }
}
.flat__title {
  margin: 0 0 80px;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .flat__title {
    margin-bottom: 60px;
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .flat__title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
@media screen and (max-width: 991px) {
  .flat__title {
    margin-bottom: 40px;
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .flat__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .flat__title {
    margin-bottom: 35px;
    font-size: 33px;
  }
}
.flat__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: 150px;
}
@media screen and (max-width: 1739px) {
  .flat__row {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .flat__row {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .flat__row {
    row-gap: 50px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .flat__row {
    row-gap: 35px;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 374px) {
  .flat__row {
    margin-bottom: 70px;
  }
}
.flat__left {
  width: calc(50% - 10px);
}
@media screen and (max-width: 991px) {
  .flat__left {
    order: 1;
    width: 100%;
  }
}
.flat__right {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 40px;
  justify-content: space-between;
  width: auto;
  max-width: calc(50% - 10px);
}
@media screen and (max-width: 991px) {
  .flat__right {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .flat__right {
    row-gap: 35px;
  }
}
.flat__right .flat__title {
  white-space: nowrap;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .flat__right .flat__title {
    white-space: normal;
  }
}
.flat__right--room {
  width: calc((100% - 20px) / 12 * 5);
  padding-top: 145px;
}
@media screen and (max-width: 1739px) {
  .flat__right--room {
    width: calc(50% - 10px);
    padding-top: 130px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .flat__right--room {
    padding-left: 0;
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .flat__right--room {
    width: 100%;
    padding-top: 0;
  }
}
.flat__footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 1739px) {
  .flat__footer {
    row-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .flat__footer {
    row-gap: 15px;
  }
}
.flat__price {
  margin: 0;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .flat__price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .flat__price {
    font-size: 16px;
  }
}
.flat__price span {
  display: inline-block;
  margin-left: 20px;
  font-size: 20px;
  line-height: 1;
  color: #0074A0;
  text-transform: none;
}
@media screen and (max-width: 1739px) {
  .flat__price span {
    margin-left: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .flat__price span {
    font-size: 12px;
  }
}
.flat__price span .tooltip {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .flat__price span .tooltip {
    top: 1px;
    width: 12px;
    height: 12px;
    margin-left: 2px;
  }
}
.flat__price span .tooltip svg {
  width: 100%;
  height: 100%;
  fill: #0074A0;
}
.flat__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1739px) {
  .flat__btns {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .flat__btns {
    gap: 8px;
  }
}
.flat__fav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 50%;
  transition: all 0.3s linear;
}
@media screen and (max-width: 767px) {
  .flat__fav {
    width: 48px;
    height: 48px;
  }
}
.flat__fav svg {
  width: 25px;
  height: 25px;
  fill: transparent;
  stroke: #000810;
}
@media screen and (max-width: 767px) {
  .flat__fav svg {
    width: 16px;
    height: 16px;
  }
}
.flat__fav:hover {
  border-color: #000810;
}
.flat__fav.active svg {
  fill: #0074A0;
  stroke: #0074A0;
}
.flat__booking {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 80px);
  height: 64px;
  background: #0074A0;
  border: 1px solid #0074A0;
  border-radius: 32px;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .flat__booking {
    width: calc(100% - 70px);
    height: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .flat__booking {
    width: calc(100% - 56px);
    height: 48px;
    font-size: 14px;
  }
}
.flat__booking:hover {
  background: #fff;
  color: #0074A0;
}
.flat__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1739px) {
  .flat__links {
    justify-content: flex-start;
    column-gap: 27px;
    row-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .flat__links {
    column-gap: 8px;
    row-gap: 10px;
  }
}
.flat__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 767px) {
  .flat__link {
    gap: 6px;
  }
}
.flat__link span {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0074A0;
}
@media screen and (max-width: 1739px) {
  .flat__link span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .flat__link span {
    font-size: 14px;
  }
}
.flat__link svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #0074A0;
}
@media screen and (max-width: 767px) {
  .flat__link svg {
    width: 20px;
    height: 20px;
  }
}
.flat__link:hover {
  opacity: 0.4;
}
/*------------------------------ flat-info ----------------------------------*/
.flat-info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 1739px) {
  .flat-info {
    row-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .flat-info {
    row-gap: 20px;
  }
}
.flat-info__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .flat-info__item {
    width: auto;
    white-space: nowrap;
  }
}
.flat-info__item span {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .flat-info__item span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flat-info__item span {
    font-size: 14px;
  }
}
.flat-info__item span:nth-child(2) {
  font-size: 20px;
  text-transform: lowercase;
}
@media screen and (max-width: 1739px) {
  .flat-info__item span:nth-child(2) {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .flat-info__item span:nth-child(2) {
    font-size: 12px;
  }
}
/*------------------------------ scheme ----------------------------------*/
.scheme {
  height: 100%;
  padding: 167px 40px 40px;
  background: #F3F3F3;
}
@media screen and (max-width: 1739px) {
  .scheme {
    padding: 150px 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .scheme {
    position: relative;
    padding: 80px 15px 15px;
  }
}
.scheme__img {
  height: 350px;
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 1739px) {
  .scheme__img {
    height: 238px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .scheme__img {
    height: 174px;
    margin-bottom: 55px;
  }
}
.scheme__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scheme__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .scheme__row {
    align-items: center;
  }
}
.scheme__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
}
.scheme .compass {
  width: 51px;
  height: 54px;
  margin-bottom: 0;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .scheme .compass {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 46px;
  }
}
.scheme__floor {
  width: 181px;
}
@media screen and (max-width: 1739px) {
  .scheme__floor {
    width: 134px;
  }
}
@media screen and (max-width: 767px) {
  .scheme__floor {
    width: 101px;
  }
}
.scheme__floor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .scheme--room .compass {
    position: static;
  }
}
.scheme--room .scheme__floor {
  width: 223px;
}
@media screen and (max-width: 1739px) {
  .scheme--room .scheme__floor {
    width: 166px;
  }
}
@media screen and (max-width: 767px) {
  .scheme--room .scheme__floor {
    width: 135px;
  }
}
/*------------------------------ window ----------------------------------*/
.window {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 184px;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 8, 16, 0.4);
  border-radius: 23px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .window {
    width: 168px;
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  .window {
    width: 126px;
    height: 28px;
  }
}
.window span {
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1739px) {
  .window span {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .window span {
    font-size: 12px;
  }
}
.window svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #000810;
}
@media screen and (max-width: 1739px) {
  .window svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .window svg {
    width: 12px;
    height: 12px;
  }
}
.window:hover {
  border-color: #000810;
}
/*------------------------------ window-carousel ----------------------------------*/
.window-carousel {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}
.window-carousel img {
  display: block;
  height: 100vh;
  object-fit: cover;
}
.window-carousel .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  padding: 0;
  border: 1px solid #0074A0;
  border-radius: 50%;
  background: #0074A0;
  cursor: pointer;
  transition: all 0.3s linear;
}
@media screen and (max-width: 1739px) {
  .window-carousel .slick-arrow {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .window-carousel .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.window-carousel .slick-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
}
@media screen and (max-width: 1739px) {
  .window-carousel .slick-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 767px) {
  .window-carousel .slick-arrow svg {
    width: 14px;
    height: 14px;
  }
}
.window-carousel .slick-arrow.prev {
  left: calc((100vw - 1740px) / 2 + 10px);
}
@media screen and (max-width: 1739px) {
  .window-carousel .slick-arrow.prev {
    left: calc((100vw - 1160px) / 2 + 10px);
  }
}
@media screen and (max-width: 1199px) {
  .window-carousel .slick-arrow.prev {
    left: calc((100vw - 980px) / 2 + 10px);
  }
}
@media screen and (max-width: 991px) {
  .window-carousel .slick-arrow.prev {
    left: calc((100vw - 708px) / 2 + 15px);
  }
}
@media screen and (max-width: 767px) {
  .window-carousel .slick-arrow.prev {
    left: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .window-carousel .slick-arrow.prev {
    left: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .window-carousel .slick-arrow.prev {
    left: 20px;
  }
}
.window-carousel .slick-arrow.next {
  right: calc((100vw - 1740px) / 2 + 10px);
}
@media screen and (max-width: 1739px) {
  .window-carousel .slick-arrow.next {
    right: calc((100vw - 1160px) / 2 + 10px);
  }
}
@media screen and (max-width: 1199px) {
  .window-carousel .slick-arrow.next {
    right: calc((100vw - 980px) / 2 + 10px);
  }
}
@media screen and (max-width: 991px) {
  .window-carousel .slick-arrow.next {
    right: calc((100vw - 708px) / 2 + 15px);
  }
}
@media screen and (max-width: 767px) {
  .window-carousel .slick-arrow.next {
    right: calc((100vw - 560px) / 2 + 15px);
  }
}
@media screen and (max-width: 575px) {
  .window-carousel .slick-arrow.next {
    right: calc((100vw - 480px) / 2 + 20px);
  }
}
@media screen and (max-width: 479px) {
  .window-carousel .slick-arrow.next {
    right: 20px;
  }
}
/*------------------------------ window-close ----------------------------------*/
.window-close {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  position: absolute;
  z-index: 100;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1739px) {
  .window-close {
    top: 35px;
  }
}
@media screen and (max-width: 1199px) {
  .window-close {
    top: 20px;
  }
}
.window-close span {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000810;
}
@media screen and (max-width: 1199px) {
  .window-close span {
    font-size: 12px;
  }
}
.window-close svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #000810;
}
@media screen and (max-width: 1739px) {
  .window-close svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .window-close svg {
    width: 22px;
    height: 22px;
  }
}
/*------------------------------ balloon ----------------------------------*/
.balloon {
  display: flex;
  width: 300px;
  background: #fff;
}
@media screen and (max-width: 479px) {
  .balloon {
    width: auto;
    min-width: 300px;
  }
}
.balloon__img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 100px;
  height: 100px;
}
.balloon__img img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.balloon__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  row-gap: 8px;
  width: calc(100% - 100px);
  padding: 10px 20px;
  background: #0074A0;
}
.balloon__title {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
}
.balloon__title-center {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
}
.balloon__text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.7);
}
[class*="-balloon"] {
  background: none !important;
  box-shadow: none !important;
}
[class*="-balloon__layout"] {
  background: none !important;
}
[class*="-balloon_layout_normal"] {
  top: -95px !important;
  left: -202px !important;
  padding: 0 !important;
  box-shadow: none !important;
}
[class*="-balloon__close"] {
  position: absolute;
  z-index: 10;
  top: 6px;
  right: 6px;
  width: 15px !important;
  height: 15px !important;
}
[class*="-balloon__close-button"] {
  width: 12px !important;
  height: 12px !important;
  background: url(../img/icons/icon-close.svg) center no-repeat !important;
  background-size: contain !important;
  opacity: 1 !important;
  transition: all 0.3s linear;
}
[class*="-balloon__content"] {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
[class*="-balloon__tail"] {
  position: absolute !important;
  left: auto !important;
  right: 90px !important;
  bottom: 0 !important;
  transform: rotate(-45deg) !important;
  width: 20px !important;
  height: 20px !important;
  background: #0074A0 !important;
}
[class*="-balloon__tail"]::after {
  display: none;
}
