/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local(''), url('../../assets/fonts/roboto-v20-latin-regular.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../../assets/fonts/roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local(''), url('../../assets/fonts/roboto-v20-latin-500.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../../assets/fonts/roboto-v20-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local(''), url('../../assets/fonts/roboto-v20-latin-700.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../../assets/fonts/roboto-v20-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-900 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local(''), url('../../assets/fonts/roboto-v20-latin-900.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../../assets/fonts/roboto-v20-latin-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: local(''), url('../../assets/fonts/poppins-v15-latin-500.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../../assets/fonts/poppins-v15-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
* {
  font-family: 'Roboto';
}

/* Common block */

.btn {
  width: 245px;
  height: 55px;
  background: linear-gradient(106.89deg, #4bd8b5 -14.32%, #49d6df 100.68%);
  border-radius: 3px;
  font-weight: 900;
  font-size: 18px;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.btn:hover {
  box-shadow: 0 0 5px 1px var(--bsh-base1);
  color: #ffffff;
}
.btn_shadow-light:hover {
  box-shadow: 0 0 5px 1px #ffffff;
}
.btn-play {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  margin-right: 10px;
}
.btn-play::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-left: 8px solid rgb(255, 255, 255);
  border-bottom: 5px solid transparent;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}
.btn_footer {
  width: 275px;
  z-index: 5;
}

.slider-range-wrap {
  text-align: center;
}

.slider-range-label {
  display: block;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  color: #bdbdbd;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.slider-label-span {
  font-size: 24px;
  line-height: 28px;
  color: var(--color-base1);
}

.slider-range {
  appearance: none;
  width: 245px;
  background: none;
}
.slider-range :focus {
  outline: none;
}
.slider-range::-webkit-slider-runnable-track {
  background: rgba(189, 189, 189, 0.57);
  cursor: pointer;
  height: 5px;
}
.slider-range::-moz-range-track {
  background: rgba(189, 189, 189, 0.57);
  cursor: pointer;
  height: 5px;
}
.slider-range::-webkit-slider-thumb {
  width: 62px;
  height: 10px;
  background: var(--bg-base3);
  cursor: pointer;
  appearance: none;
  margin-top: -2.5px;
  transition: all 0.78s;
}
.slider-range::-moz-range-thumb {
  width: 62px;
  height: 10px;
  background: var(--bg-base3);
  cursor: pointer;
  appearance: none;
  margin-top: -2.5px;
  border-radius: 0px;
  border: none;
  transition: all 0.78s;
}
.slider-range_short::-webkit-slider-thumb {
  width: 30px;
}
.slider-range_short::-moz-range-thumb {
  width: 30px;
}

.nav {
  width: 573px;
}
@media (max-width: 640px) {
  .nav_header {
    position: absolute;
    top: 94px;
    left: -100%;
    padding-top: 30px;
    background: rgba(47, 75, 69, 0.93);
    width: 70vw;
    height: 100vh;
    transition: all 0.35s;
  }
}
.nav_header_active {
  left: 0;
}
.nav__list {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .nav__list_header {
    display: block;
    text-align: center;
  }
}

.nav__item {
}
.nav__link {
  text-decoration: none;
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-base1);
  transition: all 0.25s;
}

@media (max-width: 640px) {
  .nav__link_header {
    padding: 5px;
    margin: 7px;
    display: block;
    font-size: 24px;
    line-height: 34px;
    color: #d1e0dd;
    transition: all 0.25s;
  }
}

.nav__link:hover {
  text-decoration: none;
  color: var(--color-base0);
  text-shadow: 0 0 var(--color-base0);
}
.nav__link_footer {
  color: #fefefe;
  transition: all 0.3s ease-out;
}

.nav__link_footer:hover {
  color: #fefefe;
  text-shadow: 0 0 2px #ffffff;
}

.nav__link_active {
  font-weight: 900;
  pointer-events: none;
  text-decoration: underline;
}
.nav-menu {
  display: none;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 14px;
  margin-right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .nav-menu {
    display: block;
    margin-right: calc(10px + 10 * ((100vw - 320px) / 320));
  }
}

.nav-menu-line {
  display: block;
  position: relative;
  top: 50%;
  width: 40px;
  height: 3px;
  background: var(--bg-base3);
  transition: all 0.3s ease;
  animation: burger-e-s 0.4s ease forwards;
}
.nav-menu-line_active {
  animation: burger-s-s 0.4s ease alternate forwards;
  background-color: transparent;
}
.nav-menu-line::before,
.nav-menu-line::after {
  position: absolute;
  content: '';
  height: 3px;
  background: var(--bg-base3);
  right: 0;
}
.nav-menu-line::before {
  width: 40px;
  top: -9px;
  background-color: var(--bg-base3);
  animation: burger-e-t 0.4s ease forwards;
}
.nav-menu-line::after {
  width: 33px;
  bottom: -9px;
  animation: burger-e-b 0.4s ease forwards;
}

.nav-menu-line_active::before {
  transform: rotate(0deg);
  top: 0;
  animation: burger-s-t 0.4s ease forwards;
}
.nav-menu-line_active::after {
  transform: rotate(0deg);
  width: 40px;
  bottom: 0;
  animation: burger-s-b 0.4s ease forwards;
}

@keyframes burger-s-t {
  0% {
    top: -9px;
  }
  50% {
    top: 0;
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes burger-s-b {
  0% {
    bottom: -9px;
    width: 33px;
  }
  50% {
    bottom: 0px;
    width: 33px;
    transform: rotate(0deg);
  }
  51% {
    width: 40px;
  }
  100% {
    transform: rotate(-45deg);
  }
}

@keyframes burger-e-t {
  0% {
    top: 0px;
    transform: rotate(45deg);
  }
  50% {
    top: 0px;
    transform: rotate(0deg);
  }
  100% {
    top: -9px;
  }
}

@keyframes burger-e-b {
  0% {
    bottom: 0px;
    transform: rotate(-45deg);
  }
  50% {
    bottom: 0px;
    transform: rotate(0deg);
  }
  100% {
    bottom: -9px;
  }
}

@keyframes burger-s-s {
  0% {
    background: var(--bg-base3);
  }
  50% {
    background-color: transparent;
  }
  100% {
    background-color: transparent;
  }
}

@keyframes burger-e-s {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
  100% {
    background: var(--bg-base3);
  }
}

::-webkit-scrollbar {
  display: none;
}

.logo {
  display: inline-block;
  font-weight: 900;
  font-size: 36px;
  line-height: 18px;
  width: 58px;
  height: 40px;
}
.logo_header {
  color: var(--color-base1);
}
.logo_span {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.08em;
}
.logo_span_header {
  color: var(--color-base1);
}
.logo_footer {
  color: #fefefe;
}

/* Header */

.header {
  position: relative;
  padding: 27px calc(50% - 1110px) 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-base0);
  box-shadow: 0px 4px 8px rgba(44, 101, 77, 0.08);
}
@media (max-width: 640px) {
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  }
}
.online-zoo {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

.header__logo {
  margin-left: 150px;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .header__logo {
    margin-left: calc(20px + 130 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 639px) {
  .header__logo {
    margin-left: calc(10px + 10 * ((100vw - 320px) / 320));
  }
}

.header__btn {
  margin-left: 40px;
  margin-right: 150px;
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 54px;
  height: 30px;
  background: var(--bg-base2);
  border-radius: 190px;
  border: none;
  outline: 0;
  outline-offset: 0;
  cursor: pointer;
  transition: all 0.25s;
}
@media (max-width: 1200px) {
  .header__btn {
    margin-right: calc(20px + 130 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 640px) {
  .header__btn {
    margin-right: calc(74px + 20 * ((100vw - 320px) / 320));
  }
}
.header__btn:hover {
  box-shadow: 0 0 5px 1px rgba(0, 123, 255, 0.25);
}
.header__btn::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-base6);
  box-shadow: 2px 4px 15px var(--bsh-base0);
  z-index: 5;
}

.header__btn_dark::after {
  left: 28px;
}
/* Block Map */

.map {
  padding: 59px calc(50% - 600px) 100px;
  background: var(--bg-base2);
}
@media (max-width: 1920px) {
  .map {
    padding: 59px calc(50% - calc(400px + 200 * ((100vw - 1200px) / 720))) 100px;
  }
}
@media (max-width: 1200px) {
  .map {
    padding: 59px calc(50% - calc(300px + 100 * ((100vw - 640px) / 560))) 100px;
  }
}
@media (max-width: 640px) {
  .map {
    margin-top: 94px;
    padding: calc(34px + 25 * ((100vw - 320px) / 320)) calc(50% - calc(140px + 160 * ((100vw - 320px) / 320))) 100px;
  }
}
.map__title {
  font-weight: 900;
  font-size: 48px;
  line-height: 56px;
  color: var(--color-base1);
  text-align: center;
  margin-bottom: 22px;
}
@media (max-width: 640px) {
  .map__title {
    font-size: calc(24px + 24 * ((100vw - 320px) / 320));
    line-height: calc(28px + 28 * ((100vw - 320px) / 320));
    margin-bottom: calc(10px + 12 * ((100vw - 320px) / 320));
  }
}
.map__text {
  max-width: 790px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--color-base2);
  margin: 0 auto calc(45px + 18 * ((100vw - 1200px) / 720));
}
@media (max-width: 1200px) {
  .map__text {
    /* margin-bottom: calc(39px + 20 * ((100vw - 640px) / 560)); */
    margin-bottom: 45px;
  }
}
@media (max-width: 640px) {
  .map__text {
    font-size: calc(12px + 2 * ((100vw - 320px) / 320));
    line-height: calc(14px + 2 * ((100vw - 320px) / 320));
    margin-bottom: 40px;
  }
}
.map__slider-wrapper {
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  margin-bottom: calc(36px + 7 * ((100vw - 1200px) / 720));
  /* margin-bottom: 43px; */
}
@media (max-width: 1200px) {
  .map__slider-wrapper {
    margin-bottom: calc(30px + 6 * ((100vw - 640px) / 560));
    /* margin-bottom: 36px; */
  }
}
@media (max-width: 640px) {
  .map__slider-wrapper {
    margin-bottom: calc(21px + 9 * ((100vw - 320px) / 320));
    /* margin-bottom: 30px; */
  }
}
.map__slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  list-style-type: none;
  line-height: 0;
}
@media (max-width: 1200px) {
  .map__slider {
    column-gap: calc(15px + 15 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 640px) {
  .map__slider {
    column-gap: calc(10px + 5 * ((100vw - 320px) / 320));
  }
}
.map__slider-item {
  /* display: block; */
}
.map__slider-item_hide {
  display: none;
}
/* @media (max-width: 1520px) {
  .map__slider-item:nth-child(8) {
    display: none;
  }
}
@media (max-width: 1400px) {
  .map__slider-item:nth-child(7) {
    display: none;
  }
}
@media (max-width: 1250px) {
  .map__slider-item:nth-child(6) {
    display: none;
  }
} */
/* @media (max-width: 1150px) {
  .map__slider-item:nth-child(5) {
    display: none;
  }
}
@media (max-width: 600px) {
  .map__slider-item:nth-child(4) {
    display: none;
  }
} */
.map__slider-item:hover {
  cursor: pointer;
}
.map__slider-item-wrap {
  position: relative;
  display: block;
}
@media (max-width: 640px) {
  .map__slider-item-wrap {
    width: calc(60px + 48 * ((100vw - 320px) / 320));
    height: calc(60px + 48 * ((100vw - 320px) / 320));
  }
}
.map__slider-item-img {
  line-height: 0;
  z-index: 10;
  height: 100%;
}
.map__slider-item-wrap_active {
  width: 137px;
  height: 137px;
  position: relative;
  cursor: default;
  margin: 0 -14px;
}
@media (max-width: 1200px) {
  .map__slider-item-wrap_active {
    margin: calc(5px - 5 * ((100vw - 640px) / 560)) calc(5px - 19 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 640px) {
  .map__slider-item-wrap_active {
    width: calc(75px + 62 * ((100vw - 320px) / 320));
    height: calc(75px + 62 * ((100vw - 320px) / 320));
    margin: 5px;
  }
}
.map__slider-item-wrap_active::before {
  content: '';
  background: url(../../assets/images/map/active-circle.svg) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 157px;
  height: 157px;
  transform: translate(-50%, -50%);
}

@media (max-width: 640px) {
  .map__slider-item-wrap_active::before {
    width: calc(85px + 72 * ((100vw - 320px) / 320));
    height: calc(85px + 72 * ((100vw - 320px) / 320));
  }
}
.arrow {
  position: absolute;
}
.map__slider-arrow-left,
.map__slider-arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 32px;
  cursor: pointer;
}
.map__slider-arrow-left {
  left: -60px;
}
.map__slider-arrow-right {
  right: -62px;
}
@media (max-width: 1200px) {
  .map__slider-arrow-left {
    left: calc(-37px - 33 * ((100vw - 640px) / 560));
  }
  .map__slider-arrow-right {
    right: calc(-46px - 24 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 640px) {
  .map__slider-arrow-left {
    left: calc(-26px - 21 * ((100vw - 320px) / 320));
  }
  .map__slider-arrow-right {
    right: calc(-26px - 20 * ((100vw - 320px) / 320));
  }
}
.map__slider-arrow-left .arrow::before,
.map__slider-arrow-left .arrow::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  height: 4.5px;
  width: 22px;
  background-color: var(--bg-base4);
  border-radius: 1px;
  transform-origin: 1.5px;
  transition: all 0.3s ease-out;
}
.map__slider-arrow-left:hover .arrow::before,
.map__slider-arrow-left:hover .arrow::after {
  box-shadow: 0 0 5px 1px rgba(0, 123, 255, 0.603);
}
.map__slider-arrow-left .arrow::before {
  transform: rotate(-45deg);
}
.map__slider-arrow-left .arrow::after {
  transform: rotate(45deg);
}

.map__slider-arrow-right .arrow::before,
.map__slider-arrow-right .arrow::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 14px;
  height: 4.5px;
  width: 22px;
  background-color: var(--bg-base4);
  border-radius: 1px;
  transform-origin: 20.5px;
  transition: all 0.3s ease-out;
}
.map__slider-arrow-right:hover .arrow::before,
.map__slider-arrow-right:hover .arrow::after {
  box-shadow: 0 0 5px 1px rgba(0, 123, 255, 0.603);
}
.map__slider-arrow-right .arrow::before {
  transform: rotate(-45deg);
}
.map__slider-arrow-right .arrow::after {
  transform: rotate(45deg);
}

.map__slider-range-wrap {
  position: relative;
  left: -17px;
  margin-bottom: calc(48px + 30 * ((100vw - 1200px) / 720));
  /* margin-bottom: 78px; */
}
@media (max-width: 1200px) {
  .map__slider-range-wrap {
    left: 0;
    /* margin-bottom: calc(34px + 16 * ((100vw - 640px) / 560)); */
    margin-bottom: 48px;
  }
}
@media (max-width: 640px) {
  .map__slider-range-wrap {
    margin-bottom: 34px;
  }
}
@media (max-width: 320px) {
  .map__slider-range-wrap {
    left: 12px;
    margin-bottom: 34px;
  }
}
.map__slider-label {
  margin-bottom: 4px;
}
.map__slider-label-span {
}
.map__slider-range {
}

.map__wrapper {
  position: relative;
  margin: 0 auto;
  margin-bottom: 46px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .map__wrapper {
    margin-bottom: 35px;
  }
}
.map__img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 1920px) {
  .map__img {
    width: calc(800px + 400 * ((100vw - 1200px) / 720));
    height: calc(388px + 110 * ((100vw - 1200px) / 720));
  }
}
@media (max-width: 1200px) {
  .map__img {
    width: calc(600px + 200 * ((100vw - 640px) / 560));
    height: calc(290px + 98 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 640px) {
  .map__img {
    width: calc(300px + 300 * ((100vw - 320px) / 320));
    height: calc(146px + 144 * ((100vw - 320px) / 320));
    transform: translateX(calc(-10px + 10 * ((100vw - 320px) / 320)));
  }
}
.map__point {
  position: absolute;
  transform: translate(-50%, -100%);
  width: 66.13px;
  height: 93.37px;
  background: url('../../assets/icons/map-point.svg') center/contain no-repeat;
  cursor: pointer;
}
@media (max-width: 640px) {
  .map__point {
    width: calc(34px + 32.13 * ((100vw - 320px) / 320));
    height: calc(47px + 46.37 * ((100vw - 320px) / 320));
  }
}
.map__point_active {
  background: url('../../assets/icons/map-point-red.svg') center/contain no-repeat;
}
.map__point-img {
  position: relative;
  left: 50%;
  top: 13%;
  width: 43px;
  height: 43px;
  transform: translateX(-50%);
}
@media (max-width: 640px) {
  .map__point-img {
    width: calc(22px + 21 * ((100vw - 320px) / 320));
    height: calc(22px + 21 * ((100vw - 320px) / 320));
  }
}
.map__point-1 {
  top: 34.8%;
  left: 13.8%;
}
.map__point-2 {
  top: 39.4%;
  left: 23.2%;
}
.map__point-3 {
  top: 56.9%;
  left: 50.45%;
}
.map__point-4 {
  top: 38.5%;
  left: 78.1%;
}

.map__btn {
  margin: 0 auto;
}
@media (max-width: 640px) {
  .map__btn {
    margin-bottom: calc(-40px + 21 * ((100vw - 320px) / 320));
  }
}
/* Block Footer */

.footer {
  position: relative;
  padding: 96px calc(50% - calc(450px + 360 * ((100vw - 1200px) / 720))) 70px;
  background: #333333;
}
@media (max-width: 1200px) {
  .footer {
    padding: 97px calc(50% - calc(300px + 150 * ((100vw - 640px) / 560)));
    padding-bottom: 51px;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: calc(47px + 46 * ((100vw - 320px) / 320)) calc(50% - calc(150px + 150 * ((100vw - 320px) / 320)));
    padding-bottom: calc(25px + 20 * ((100vw - 320px) / 320));
  }
}
.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 72px;
  column-gap: 30px;
}
@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    align-items: start;
    margin-bottom: 17px;
  }
}
.footer__logo-wrapper {
  flex: 0 0 calc(51% - 30px);
  position: relative;
  top: 5px;
}
@media (max-width: 640px) {
  .footer__logo {
    margin-bottom: calc(42px - 10 * ((100vw - 320px) / 320));
  }
}
.footer__nav {
  flex: 0 1 23.4%;
}
@media (max-width: 640px) {
  .footer__nav {
    max-width: 100px;
  }
}
@media (max-width: 1500px) {
  .footer__nav {
    flex: 0 1 42.25%;
  }
}

@media (max-width: 640px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 640px) {
  .footer__nav-item {
    margin-bottom: 5px;
  }
}
.footer__btn {
  position: absolute;
  right: 150px;
  top: 98px;
}
@media (max-width: 1500px) {
  .footer__btn {
    top: 54.6%;
    left: 50.8%;
  }
}
@media (max-width: 1200px) {
  .footer__btn {
    top: 57.5%;
  }
}
@media (max-width: 640px) {
  .footer__btn {
    transform: translateX(-100%);
    top: 9%;
    left: 96.9%;
  }
}
@media (max-width: 460px) {
  .footer__btn {
    transform: translateX(-50%);
    top: 82%;
    left: 50%;
  }
}
@media (max-width: 400px) {
  .footer__btn {
    top: 79.75%;
  }
}

.footer-middle {
  display: flex;
  margin-bottom: 60px;
  column-gap: 30px;
}
@media (max-width: 1200px) {
  .footer-middle {
    margin-bottom: 63px;
  }
}
@media (max-width: 640px) {
  .footer-middle {
    flex-direction: column;

    margin-bottom: calc(175px - 109 * ((100vw - 320px) / 320));
  }
}
.footer__contact-wrapper {
  flex: 0 1 calc(51% - 30px);
}
@media (max-width: 1500px) {
  .footer__centre-wrapper_centre {
    position: relative;
    top: -14px;
  }
}
@media (max-width: 640px) {
  .footer__centre-wrapper_centre {
    position: relative;
    top: 0px;
    margin-top: calc(53px + 22 * ((100vw - 320px) / 320));
  }
}
.footer__contact-title {
  font-weight: 900;
  font-size: 20px;
  line-height: 23px;
  color: #fefefe;
  margin-bottom: 33px;
}
.footer__contact-form {
  max-width: 383px;
}

.footer__contact-form-name {
  padding-bottom: 6px;
  width: 100%;
  height: 26px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #e0e0e0;
  background: #333333;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}
.footer__contact-form-email {
  padding-bottom: 6px;
  width: 100%;
  height: 26px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #e0e0e0;
  background: #333333;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 21px;
}

.footer__contact-form-field {
  border: 1px solid #e0e0e0;
  width: 100%;
  height: 124px;
  margin-bottom: 25px;
  border-radius: 3px;
  padding: 4px 4px;
}
@media (max-width: 1200px) {
  .footer__contact-form-field {
    margin-bottom: 21px;
  }
}
.footer__contact-form-field-legend {
  padding: 2px 5px 2px 3px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #bdbdbd;
}
.footer__contact-form-field-text {
  background: #333333;
  width: 100%;
  color: #bdbdbd;
  resize: none;
  overflow: hidden;
}
.footer__contact-form-checkbox {
  position: relative;
  position: absolute;
  z-index: -1;
}
.footer__contact-form-label {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #bdbdbd;
}
.footer__contact-form-checkbox + .footer__contact-form-label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.footer__contact-form-checkbox + .footer__contact-form-label::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70% 70%;
  cursor: pointer;
}
.footer__contact-form-checkbox:checked + .footer__contact-form-label::before {
  /* border-color: #0b76ef; */
  /* background-color: #0b76ef; */
  background-image: url('../../assets/icons/check.svg');
}

/* стили при наведении курсора на checkbox */
.footer__contact-form-checkbox:not(:disabled):not(:checked) + .footer__contact-form-label:hover::before {
  /* border-color: #b3d7ff; */
}
/* стили для активного состояния чекбокса (при нажатии на него) */
.footer__contact-form-checkbox:not(:disabled):active + .footer__contact-form-label::before {
  /* background-color: #b3d7ff; */
  /* border-color: #b3d7ff; */
}
/* стили для чекбокса, находящегося в фокусе */
.footer__contact-form-checkbox:focus + .footer__contact-form-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.footer__contact-form-checkbox:focus:not(:checked) + .footer__contact-form-label::before {
  /* border-color: #80bdff; */
}
/* стили для чекбокса, находящегося в состоянии disabled */
.footer__contact-form-checkbox:disabled + .footer__contact-form-label::before {
  background-color: #e9ecef;
}

.footer__contact-form-btn {
  margin-top: 35px;
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #fefefe;
  background: #333333;
  cursor: pointer;
  float: right;
  padding-right: 15px;
}

@media (max-width: 640px) {
  .footer__contact-form-btn {
    margin-top: calc(16px + 19 * ((100vw - 320px) / 320));
    padding-right: calc(0px + 15 * ((100vw - 320px) / 320));
  }
}
.footer__contact-form-btn:hover {
  color: #ffffff;
  text-shadow: 0 0 2px rgb(255, 255, 255);
}
.footer__contact-form-btn::after {
  content: url(../../assets/icons/arrow-footer.svg);
  padding-left: 24px;
}
.footer__centre-wrapper {
}
.footer__centre-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #fefefe;
  margin-bottom: 34px;
}
.footer__centre-contact {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fefefe;
  margin-bottom: 20px;
}
.footer__centre-address {
  margin-bottom: 4px;
}
.footer__centre-open {
  margin-bottom: 20px;
}
.footer__centre-tel {
  display: block;
  margin-bottom: 5px;
  color: #fefefe;
}
.footer__centre-email {
  display: block;
  color: #fefefe;
}
.footer__centre-tel:hover,
.footer__centre-email:hover {
  text-shadow: 0 0 2px rgb(255, 255, 255);
}
.footer__social {
  margin-top: 0;
}
.footer__social-list {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.footer__social-link-img {
  transition: all 0.25s;
}
.footer__social-link-img:hover {
  transform: scale(1.1);
}
.footer__bottom {
  padding-top: 25px;
  border-top: 1px solid #fefefe;
}
@media (max-width: 1200px) {
  .footer__bottom {
    padding-top: 30px;
  }
}
@media (max-width: 640px) {
  .footer__bottom {
    padding-top: 27px;
  }
}
.footer__bottom-info {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #bdbdbd;
  padding: 2px 0;
}

.popup {
  position: fixed;
  overflow-y: scroll;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 795px;
  transform: translate(-50%, -50%);
  display: flex;
  background: #f9f9f9;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.19);
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media (max-height: 795px) {
  .popup {
    height: 100vh;
  }
}
@media (max-width: 1200px) {
  .popup {
    width: calc(640px + 560 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 640px) {
  .popup {
    width: calc(320px + 320 * ((100vw - 320px) / 320));
    height: 100%;
  }
}

.popup__img-wrap {
  height: 795px;
}
@media (max-width: 750px) {
  .popup__img-wrap {
    height: 1243px;
  }
}

.popup__img {
  display: block;
  object-fit: cover;
  width: 197px;
  height: 100%;
  line-height: 0;
}
@media (max-width: 1200px) {
  .popup__img {
    width: calc(164px + 33 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 640px) {
  .popup__img {
    width: calc(100px + 64 * ((100vw - 500px) / 140));
    height: 1243px;
  }
}
@media (max-width: 500px) {
  .popup__img {
    display: none;
  }
}
.popup__main {
  position: relative;
  padding: 87px 20px 20px;
  width: 100%;
}
@media (max-width: 750px) {
  .popup__main {
    padding: 81px 70px;
  }
}
@media (max-width: 640px) {
  .popup__main {
    padding: calc(104px - 23 * ((100vw - 320px) / 320)) calc(20px + 50 * ((100vw - 320px) / 320))
      calc(160px - 79 * ((100vw - 320px) / 320));
  }
}
.popup__exit {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 20px;
  color: #000000;
  transition: all 0.3s;
  transform: rotate(45deg);
}
.popup__exit:hover {
  color: #e25717;
  text-shadow: 0 0 15px #000;
  cursor: pointer;
}
.popup__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 116.5%;
  text-transform: uppercase;
  color: #313131;
  text-align: center;
  margin-bottom: 54px;
}
@media (max-width: 640px) {
  .popup__title {
    font-size: calc(20px + 4 * ((100vw - 320px) / 320));
    margin-bottom: calc(36px + 30 * ((100vw - 320px) / 320));
  }
}
.popup__form {
}
.popup-form__top {
  display: flex;
  justify-content: center;
  column-gap: 55px;
  margin-bottom: 19px;
}
@media (max-width: 1200px) {
  .popup-form__top {
    column-gap: calc(20px + 35 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 750px) {
  .popup-form__top {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .popup-form__top {
    column-gap: 20px;
    margin-bottom: calc(10px + 4 * ((100vw - 320px) / 320));
  }
}
.popup-form__fieldset {
  padding: 0 15px;
  padding-top: 2px;
  display: flex;
  padding-left: 7px;
  max-width: 335px;
  flex: 0 1 100%;
  height: 64px;
  margin-bottom: 21px;
  border: 1px solid #828282;
  box-sizing: border-box;
  border-radius: 5px;
}

.popup-form__legend {
  padding: 0 12px 0 17px;
  font-weight: 500;
  font-size: 14px;
  line-height: 116.5%;
  color: #828282;
}
.popup-form__select {
  background: transparent;
  padding-left: 12px;
  width: 100%;
  height: 35px;
  font-weight: 500;
  font-size: 16px;
  line-height: 116.5%;
  color: #313131;
}
.popup-form__datalist {
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 116.5%;
  color: #313131;
}

.popup-form__input-line {
  width: 1px;
  height: 32px;
  background: #828282;
}
.popup-form__input-line_phone {
  left: 75px;
}

.popup-form__input {
  font-weight: 500;
  font-size: 16px;
  line-height: 116.5%;
  color: #313131;
  background: transparent;

  width: 100%;
  height: 35px;
  padding-left: 18px;
  padding-right: 5px;
}
.popup-form__input_phone {
  padding-left: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number'] {
  -moz-appearance: textfield;
}
.popup-form__input_code {
  width: 61px;
}

.popup-form__middle {
  display: flex;
  justify-content: center;
  column-gap: 55px;
  margin-bottom: 19px;
}

@media (max-width: 1200px) {
  .popup-form__middle {
    column-gap: calc(20px + 35 * ((100vw - 640px) / 560));
  }
}
@media (max-width: 750px) {
  .popup-form__middle {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .popup-form__middle {
    column-gap: 20px;
    margin-bottom: calc(8px + 4 * ((100vw - 320px) / 320));
  }
}

.popup-form__legend_font {
  font-family: 'Poppins';
}
.popup-form__middle-about,
.popup-form__middle-checkout {
  max-width: 335px;
  flex: 0 1 100%;
}
@media (max-width: 640px) {
  .popup-form__middle-about {
    margin-bottom: calc(9px + 7 * ((100vw - 320px) / 320));
  }
}

.popup-form__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 116.5%;
  color: #828282;
  margin-bottom: 22px;
}
.popup-form__title_about {
}
.popup-form__title_checkout {
  color: #4f4f4f;
}
.popup-form__input-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  column-gap: 15px;
}
.popup-form__info {
  max-width: 478px;
  font-weight: 500;
  font-size: 13px;
  line-height: 116.5%;
  text-align: center;
  color: #828282;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .popup-form__info {
    margin-bottom: 36px;
  }
}
@media (max-width: 320px) {
  .popup-form__info {
    margin-bottom: 30px;
  }
}
.popup-form__btn {
  display: block;
  margin: 0 auto;
}

body {
  --bg-base0: #ffffff;
  --bg-base2: #f2f2f2;
  --bg-base3: #333333;
  --bg-base4: #828282;
  --bg-base6: #ffffff;

  --color-base0: #000000;
  --color-base1: #333333;
  --color-base2: #4f4f4f;

  --bsh-base0: rgba(6, 12, 70, 0.15);
  --bsh-base1: #4d4c4c;
}
.dark {
  --bg-base0: #333333;
  --bg-base2: #4f4f4f;
  --bg-base3: #fefefe;
  --bg-base4: #f2f2f2;
  --bg-base6: #1b1b1b;

  --color-base0: #ffffff;
  --color-base1: #fefefe;
  --color-base2: #f2f2f2;

  --bsh-base0: rgba(230, 230, 230, 0.15);
  --bsh-base1: #ffffff;
}
.lock {
  overflow: hidden;
}
html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 750ms !important;
  transition-delay: 0 !important;
}
