@charset "UTF-8";
/*
0. Шрифты
1. Общие стили для всего сайта
2. Вспомогательные классы
3. Стили для одинаковых элементов
4. Шапка
5. Подвал
6. Стили которые не повторяются на других страницах

Мобильная версия начинается с 992пх

*/
:root {
  --font-regular: "Nunito-Regular", sans-serif;
  --font-medium: "Nunito-Medium", sans-serif;
  --font-semibold: "Nunito-SemiBold", sans-serif;
  --font-bold: "Nunito-Bold", sans-serif;
  --font-black: "Nunito-Black", sans-serif;
  --color-black: #030306;
  --color-white: #fff;
  --color-blue: #0a54aa;
  --color-gray: #7a7a7a;
  --color-skyblue: #cfe5ff;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ШРИФТЫ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@font-face {
  font-family: "Nunito-Black";
  src: local("Nunito-Black"), url("../fonts/Nunito/Nunito-Black.woff") format("woff"), url("../fonts/Nunito/Nunito-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Nunito-Bold";
  src: local("Nunito-Bold"), url("../fonts/Nunito/Nunito-Bold.woff") format("woff"), url("../fonts/Nunito/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Nunito-SemiBold";
  src: local("Nunito-SemiBold"), url("../fonts/Nunito/Nunito-SemiBold.woff") format("woff"), url("../fonts/Nunito/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Nunito-Medium";
  src: local("Nunito-Medium"), url("../fonts/Nunito/Nunito-Medium.woff") format("woff"), url("../fonts/Nunito/Nunito-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Nunito-Regular";
  src: local("Nunito-Regular"), url("../fonts/Nunito/Nunito-Regular.woff") format("woff"), url("../fonts/Nunito/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	ОБЩИЕ СТИЛИ ДЛЯ ВСЕГО САЙТА 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
*,
p,
h1, h2, h3, h4, h5, h6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: normal;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  overflow-x: hidden;
}
html.fixed {
  overflow: hidden;
}

body {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 18px;
  color: var(--color-black);
  background: var(--color-skyblue);
}

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

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

button {
  display: block;
  font-family: var(--font-regular);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}
button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

input, textarea {
  outline: none;
}
input:focus-visible, textarea:focus-visible {
  outline: none;
}
input:disabled, textarea:disabled {
  pointer-events: none;
  opacity: 0.5;
}

picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

* ::-webkit-scrollbar {
  width: 6px; /* ширина всей полосы прокрутки */
}

* ::-webkit-scrollbar-track {
  background: var(--color-skyblue); /* цвет зоны отслеживания */
  border-radius: 20px;
}

* ::-webkit-scrollbar-thumb {
  background-color: var(--color-blue); /* цвет бегунка */
  border-radius: 20px; /* округлось бегунка */
  border: 3px solid transparent;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	//END ОБЩИЕ СТИЛИ ДЛЯ ВСЕГО САЙТА 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ (нужны там где нет нужды в осмысленном класснейминге)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	//END	ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	СТИЛИ ДЛЯ ОДИНАКОВЫХ ЭЛЕМЕНТОВ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.price-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  padding: 0 43px;
  font-family: var(--font-bold);
  font-size: 18px;
  line-height: 1;
  color: var(--color-white);
  background: linear-gradient(-105deg, #17A100 0%, #2ED800 100%);
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.price-btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.title {
  font-family: var(--font-bold);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.8px;
}
@media (width <= 768px) {
  .title {
    font-size: 28px;
  }
}

.swiper-pagination {
  position: static;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-white);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-blue);
}

.slider-navbtn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	//END СТИЛИ ДЛЯ ОДИНАКОВЫХ ЭЛЕМЕНТОВ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	HEADER 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.header {
  padding-top: 22px;
  background: var(--color-white);
}
@media (width <= 768px) {
  .header {
    padding-top: 8px;
  }
}
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 43px;
}
@media (width <= 992px) {
  .header__box {
    padding-right: 0;
  }
}
.header__nav {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}
@media (width <= 768px) {
  .header__nav {
    display: none;
  }
}
.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
}
@media (width <= 992px) {
  .header-menu {
    gap: 10px;
  }
}
.header-menu__link {
  font-family: var(--font-bold);
  font-size: 17px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header-menu__link:hover {
  color: var(--color-blue);
}
.header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 16px;
}
@media (width <= 768px) {
  .header-contacts {
    gap: 33px;
  }
}
.header-contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 7px;
}
.header-phones__icon {
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
}
.header-phones__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (width <= 992px) {
  .header-phones__numbers {
    display: none;
  }
}
.header-phones__num {
  font-family: var(--font-bold);
  font-size: 17px;
}
.header-phones__ordercall {
  position: relative;
  font-family: var(--font-bold);
  font-size: 14px;
  color: var(--color-blue);
  text-align: left;
  letter-spacing: 0.6px;
}
.header-phones__ordercall:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-blue);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	//END HEADER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	FOOTER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.footer {
  padding-bottom: 140px;
  padding-top: 70px;
}
@media (width <= 768px) {
  .footer {
    padding-top: 88px;
    padding-bottom: 42px;
  }
}
.footer-title {
  margin-bottom: 61px;
  font-family: var(--font-bold);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.6px;
}
@media (width <= 768px) {
  .footer-title {
    margin-bottom: 65px;
    font-size: 28px;
  }
}
.footer__box {
  display: grid;
  grid-template-columns: 0.98fr 1.07fr 1fr;
  gap: 0 43px;
}
@media (width <= 1200px) {
  .footer__box {
    gap: 0 20px;
  }
}
@media (width <= 992px) {
  .footer__box {
    grid-template-columns: 1fr;
  }
}
.footer__formbox {
  padding-top: 48px;
  padding-left: 37px;
}
@media (width <= 1200px) {
  .footer__formbox {
    padding-left: 0;
  }
}
@media (width <= 992px) {
  .footer__formbox {
    margin-bottom: 35px;
    padding-top: 0;
  }
}

.form__inputbox {
  position: relative;
}
.form__inputbox:not(:nth-last-of-type(1)) {
  margin-bottom: 51px;
}
.form__inputbox:nth-last-of-type(2) {
  margin-bottom: 22px;
}
.form__inputname {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 14px;
  color: #3c3c3c;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form__input {
  width: 100%;
  padding-bottom: 6px;
  font-family: var(--font-black);
  font-size: 28px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #cccccc;
}
.form__input::-webkit-input-placeholder {
  color: transparent;
}
.form__input::-moz-placeholder {
  color: transparent;
}
.form__input:-ms-input-placeholder {
  color: transparent;
}
.form__input::-ms-input-placeholder {
  color: transparent;
}
.form__input::placeholder {
  color: transparent;
}
.form__input:not(:-moz-placeholder-shown) ~ .form__inputname {
  top: -33px;
}
.form__input:not(:-ms-input-placeholder) ~ .form__inputname {
  top: -33px;
}
.form__input:focus ~ .form__inputname, .form__input:not(:placeholder-shown) ~ .form__inputname {
  top: -33px;
}
.form__textname {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  color: #3c3c3c;
}
.form__textbox {
  margin-bottom: 23px;
}
.form__text {
  width: 100%;
  min-height: 106px;
  padding: 10px;
  font-size: 14px;
  color: #3c3c3c;
  border: 1px solid #cccccc;
  background: #f4f4f4;
}
.form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  height: 50px;
  margin-bottom: 38px;
  padding: 0 43px;
  font-family: var(--font-semibold);
  font-size: 16px;
  line-height: 1;
  color: var(--color-white);
  background: var(--color-blue);
  border-radius: 30px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.form__button:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.form__agree {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: #595959;
}
.form__agree a {
  color: var(--color-blue);
  text-decoration: underline;
}
.form__agree a:hover {
  text-decoration: none;
}

@media (width <= 992px) {
  .instructions {
    margin-bottom: 60px;
  }
}
.instructions__box {
  position: relative;
  margin-bottom: 113px;
  padding-top: 49px;
  padding-bottom: 78px;
  padding-left: 44px;
  padding-right: 10px;
  background: var(--color-blue);
  border-radius: 25px;
}
@media (width <= 768px) {
  .instructions__box {
    padding-bottom: 107px;
  }
}
.instructions__logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (width <= 768px) {
  .instructions__logo {
    -webkit-transform: translateX(-50%) translateY(30px);
        -ms-transform: translateX(-50%) translateY(30px);
            transform: translateX(-50%) translateY(30px);
  }
}
.instructions__title {
  color: var(--color-white);
}
@media (width <= 768px) {
  .instructions__title {
    margin-bottom: 32px;
  }
}
.instructions-list {
  padding-top: 5px;
  padding-left: 19px;
  padding-right: 35px;
}
.instructions-list__item {
  position: relative;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
}
.instructions-list__icon {
  position: absolute;
  top: 4px;
  left: -20px;
}
.instructions-list__link {
  text-decoration: underline;
}
.instructions-list__link:hover {
  text-decoration: none;
}

.copyright {
  font-size: 14px;
  color: #595959;
  text-align: center;
}

.contacts {
  padding-top: 48px;
  padding-left: 10px;
}
@media (width <= 768px) {
  .contacts__title {
    margin-bottom: 36px;
  }
}
@media (width <= 1200px) {
  .contacts {
    padding-left: 0;
  }
}
@media (width <= 992px) {
  .contacts {
    padding-top: 0px;
  }
}
.contacts__text {
  margin-bottom: 17px;
  font-size: 14px;
  line-height: 1;
}
.contacts__text b {
  display: block;
  font-family: var(--font-semibold);
}
.contacts__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 91px;
}
@media (width <= 768px) {
  .contacts__data {
    margin-bottom: 36px;
  }
}
.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  font-family: var(--font-black);
  font-size: 18px;
  line-height: 24px;
}
.contacts-social {
  margin-bottom: 46px;
}
.contacts-social__text {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;
  color: #3c3c3c;
}
.contacts-social__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 32px;
}
.contacts-social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 2px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	//END FOOTER  
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	СТИЛИ КОТОРЫЕ НЕ ПОВТОРЯЮТСЯ НА ДРУГИХ СТРАНИЦАХ 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.present {
  padding-top: 34px;
  padding-bottom: 65px;
  overflow: hidden;
  background: var(--color-white);
}
@media (width <= 768px) {
  .present {
    padding-bottom: 46px;
  }
}
.present__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
  width: 1620px;
}
@media (width <= 1200px) {
  .present__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 27px;
    width: 100%;
  }
}
@media (width <= 768px) {
  .present__box {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.present__info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 580px;
  width: 100%;
  padding-top: 40px;
}
@media (width <= 768px) {
  .present__info {
    padding-top: 0;
  }
}
.present__title {
  margin-bottom: 30px;
  font-family: var(--font-black);
  font-size: 44px;
  line-height: 48px;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: -0.7px;
}
.present__title--black {
  line-height: 48px;
  color: var(--color-black);
}
@media (width <= 1200px) {
  .present__title--black {
    line-height: 32px;
  }
}
@media (width <= 1200px) {
  .present__title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (width <= 768px) {
  .present__title {
    margin-bottom: 10px;
  }
}
.present__text {
  margin-bottom: 60px;
  font-size: 21px;
  line-height: 24px;
}
@media (width <= 1200px) {
  .present__text {
    font-size: 18px;
    line-height: 21px;
  }
}
@media (width <= 768px) {
  .present__text {
    margin-bottom: 30px;
  }
}
.present-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding-bottom: 49px;
}
@media (width <= 1200px) {
  .present-price {
    gap: 15px;
  }
}
@media (width <= 768px) {
  .present-price {
    padding-bottom: 30px;
  }
}
.present-price__info {
  font-size: 15px;
  color: var(--color-gray);
}
@media (width <= 768px) {
  .present-price__info {
    font-size: 14px;
    line-height: 15px;
  }
}
@media (width <= 768px) {
  .present-price__btn {
    padding: 0 24px;
  }
}
.present-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 42px 38px;
  padding-top: 44px;
  padding-left: 10px;
  border-top: 1px solid #d1d1d1;
}
@media (width <= 768px) {
  .present-advantages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    padding-top: 30px;
  }
}
.present-advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.present-advantages__text {
  display: block;
  width: 168px;
  font-size: 18px;
  line-height: 1;
}
@media (width <= 768px) {
  .present-advantages__text {
    width: 100%;
    font-size: 16px;
  }
}
.present-advantages__text--blue {
  display: block;
  line-height: 1;
  color: var(--color-blue);
}
.present__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  min-width: 1px;
}
.present-sliderbox {
  width: 570px;
}
@media (width <= 1200px) {
  .present-sliderbox {
    width: 100%;
  }
}
.present-slider {
  border-radius: 88px 30px 32px 274px;
}
@media (width <= 768px) {
  .present-slider {
    border-radius: 65px 30px 32px 160px;
  }
}
.present-sliderfoto {
  width: 100%;
  height: 780px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 1200px) {
  .present-sliderfoto {
    height: 65vw;
  }
}
@media (width <= 768px) {
  .present-sliderfoto {
    height: 123vw;
  }
}
.present-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 27px;
}
@media (width <= 1200px) {
  .present-thumbs {
    display: none;
  }
}

.catalog {
  padding-top: 88px;
  padding-bottom: 78px;
}
@media (width <= 768px) {
  .catalog {
    padding-top: 30px;
    padding-bottom: 53px;
  }
}
.catalog__titlebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 42px;
}
@media (width <= 768px) {
  .catalog__titlebox {
    margin-bottom: 29px;
  }
}
@media (width <= 390px) {
  .catalog__titlebox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.catalog__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (width <= 992px) {
  .catalog__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 768px) {
  .catalog__box {
    gap: 21px;
  }
}
@media (width <= 565px) {
  .catalog__box {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 30px;
  }
}

.correction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 55px;
  border: 1px solid var(--color-white);
  border-radius: 28px;
}
@media (width <= 768px) {
  .correction {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 173px;
  }
}
.correction__text {
  font-family: var(--font-semibold);
  font-size: 18px;
  line-height: 1;
}
.correction__ordercall {
  font-size: 15px;
  color: var(--color-blue);
  text-decoration: underline;
}
.correction__ordercall:hover {
  text-decoration: none;
}
.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
  width: 100%;
  background: var(--color-white);
  border-radius: 15px;
}
.product__foto {
  width: 190px;
  height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 1240px) {
  .product__foto {
    height: 22.5vw;
  }
}
@media (width <= 992px) {
  .product__foto {
    height: 215px;
  }
}
.product__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 21px 20px;
}
@media (width <= 768px) {
  .product__bottom {
    padding: 0 15px 15px;
  }
}
.product__name {
  font-family: var(--font-black);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
}
@media (width <= 768px) {
  .product__name {
    font-size: 16px;
    line-height: 18px;
  }
}
.product__price {
  font-size: 16px;
  line-height: 18px;
}
@media (width <= 768px) {
  .product__price {
    font-size: 13px;
    line-height: 14px;
  }
}
.product__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--color-blue);
}
@media (width <= 768px) {
  .product__btn {
    width: 46px;
    height: 46px;
  }
}
@media (width <= 565px) {
  .product__btn img {
    width: 20px;
  }
}

.cases {
  padding-bottom: 65px;
  overflow: hidden;
}
@media (width <= 768px) {
  .cases {
    padding-bottom: 58px;
  }
}
.cases__titlebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 45px;
}
@media (width <= 768px) {
  .cases__titlebox {
    margin-bottom: 36px;
  }
}
@media (width <= 390px) {
  .cases__titlebox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.cases-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 55px;
  font-family: var(--font-semibold);
  font-size: 18px;
  line-height: 1;
  text-decoration: underline;
  color: var(--color-blue);
  border-radius: 28px;
  border: 1px solid var(--color-white);
}
@media (width <= 768px) {
  .cases-all {
    width: 170px;
    font-size: 16px;
  }
}
@media (width <= 768px) {
  .cases-sliderbox {
    padding: 0 16px;
  }
}
.cases-slider {
  width: 1200px;
  margin: 0 auto;
}
@media (width <= 565px) {
  .cases-slider {
    width: 100%;
  }
}
.cases__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 28px;
  margin-bottom: 33px;
}
@media (width <= 768px) {
  .cases__nav {
    margin-bottom: 38px;
  }
}
.cases__priceinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.cases__priceinfo:after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-white);
}
@media (width <= 565px) {
  .cases__priceinfo:after {
    margin-right: -40px;
  }
}
.cases__priceinfo:before {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-white);
}
@media (width <= 565px) {
  .cases__priceinfo:before {
    margin-left: -40px;
  }
}
.cases__btn {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 20px;
}
.cases__infotext {
  font-size: 15px;
  color: var(--color-blue);
  text-align: center;
}

.case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
}
.case__foto {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .case__foto {
    height: 440px;
  }
}
.case__text {
  padding: 14px 23px 21px 23px;
  font-family: var(--font-medium);
  font-size: 18px;
  line-height: 1;
  background: var(--color-white);
  letter-spacing: -0.3px;
}
@media (width <= 768px) {
  .case__text {
    padding: 14px 23px 21px 16px;
    font-size: 15px;
  }
}

.ordercall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 62px 0;
  background: url("../img/form-bg.png") center center/cover no-repeat;
}
@media (width <= 768px) {
  .ordercall {
    padding: 46px 0;
  }
}
.ordercall__title {
  color: var(--color-white);
  letter-spacing: -0.7px;
}
@media (width <= 768px) {
  .ordercall__title {
    width: 100%;
    text-align: center;
  }
}
.ordercall__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 99px;
  height: 100%;
}
@media (width <= 768px) {
  .ordercall__box {
    gap: 25px;
  }
}
.ordercall-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (width <= 565px) {
  .ordercall-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 22px;
  }
}
.ordercall-form__input {
  width: 300px;
  height: 56px;
  padding: 0 25px;
  font-family: var(--font-semibold);
  font-size: 18px;
  color: var(--color-white);
  border-width: 2px;
  border-color: #005dca;
  border-style: solid;
  border-radius: 10px;
  background: var(--color-blue);
}
.ordercall-form__input::-webkit-input-placeholder {
  font-family: var(--font-semibold);
  font-size: 18px;
  color: var(--color-white);
}
.ordercall-form__input::-moz-placeholder {
  font-family: var(--font-semibold);
  font-size: 18px;
  color: var(--color-white);
}
.ordercall-form__input:-ms-input-placeholder {
  font-family: var(--font-semibold);
  font-size: 18px;
  color: var(--color-white);
}
.ordercall-form__input::-ms-input-placeholder {
  font-family: var(--font-semibold);
  font-size: 18px;
  color: var(--color-white);
}
.ordercall-form__input::placeholder {
  font-family: var(--font-semibold);
  font-size: 18px;
  color: var(--color-white);
}
@media (width <= 768px) {
  .ordercall-form__input {
    width: 260px;
  }
}
@media (width <= 565px) {
  .ordercall-form__input {
    width: 100%;
  }
}
.ordercall-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 250px;
  height: 56px;
  font-family: var(--font-black);
  font-size: 18px;
  border-width: 2px;
  border-color: var(--color-white);
  border-style: solid;
  border-radius: 10px;
  background-color: var(--color-white);
}
@media (width <= 565px) {
  .ordercall-form__button {
    width: 100%;
  }
}
.ordercall-form__button img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.ordercall-form__button:hover img {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

.steps {
  padding-top: 33px;
  padding-bottom: 36px;
  background: var(--color-white);
}
@media (width <= 768px) {
  .steps {
    padding-top: 40px;
    padding-bottom: 68px;
  }
}
.steps .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.steps__title {
  margin-bottom: 39px;
  font-family: var(--font-black);
  color: var(--color-blue);
  letter-spacing: -0.6px;
}
@media (width <= 768px) {
  .steps__title {
    margin-bottom: 20px;
  }
}
.steps__box {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 55px;
  width: 1620px;
}
@media (width <= 1200px) {
  .steps__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 27px;
    width: 100%;
  }
}
@media (width <= 768px) {
  .steps__box {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.steps-sliderbox {
  width: 570px;
}
@media (width <= 1200px) {
  .steps-sliderbox {
    width: 100%;
  }
}
.steps-slider {
  border-radius: 30px 88px 274px 32px;
}
@media (width <= 768px) {
  .steps-slider {
    border-radius: 30px 65px 165px 32px;
  }
}
.steps-sliderfoto {
  width: 100%;
  height: 780px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 1200px) {
  .steps-sliderfoto {
    height: 65vw;
  }
}
@media (width <= 768px) {
  .steps-sliderfoto {
    height: 123vw;
  }
}
.steps__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  min-width: 1px;
}
.steps-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: end;
  gap: 15px 27px;
}
@media (width <= 1200px) {
  .steps-thumbs {
    display: none;
  }
}
.steps__info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 563px;
  width: 100%;
  padding-top: 40px;
}
@media (width <= 768px) {
  .steps__info {
    padding-top: 0;
  }
}
.steps-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 70px;
}
@media (width <= 768px) {
  .steps-list {
    margin-bottom: 45px;
  }
}

.step {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 21px;
}
@media (width <= 768px) {
  .step {
    gap: 17px;
  }
}
.step-1 {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.step-2 {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.step-3 {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.step-4 {
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
}
.step__num {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 66px;
  height: 66px;
  font-family: var(--font-bold);
  font-size: 24px;
  color: var(--color-white);
  border-radius: 50%;
  border: 5px solid var(--color-white);
  background: var(--color-blue);
}
.step:not(:last-child) .step__num:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 40px;
  width: 2px;
  height: 105px;
  background: #d1d1d1;
}
.step__info {
  padding-top: 15px;
}
@media (width <= 768px) {
  .step__info {
    padding-top: 1px;
  }
}
.step__name {
  margin-bottom: 6px;
  font-family: var(--font-bold);
  font-size: 21px;
  line-height: 24px;
}
@media (width <= 768px) {
  .step__name {
    font-size: 20px;
    line-height: 23px;
  }
}
.step__text {
  font-size: 15px;
  line-height: 1;
  color: var(--color-gray);
}

.warranty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  padding-left: 6px;
}
.warranty__info {
  font-size: 18px;
  line-height: 1;
}
.warranty__info a {
  display: block;
  color: var(--color-blue);
  line-height: 1;
  text-decoration: underline;
}
.warranty__info a:hover {
  text-decoration: none;
}

.faq {
  padding-top: 85px;
  padding-bottom: 79px;
}
@media (width <= 768px) {
  .faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.faq__titlebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 42px;
}
@media (width <= 768px) {
  .faq__titlebox {
    margin-bottom: 34px;
  }
}
@media (width <= 390px) {
  .faq__titlebox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding: 0 57px;
}
@media (width <= 768px) {
  .faq__box {
    gap: 24px;
    padding: 0 0;
  }
}
.faq__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
  width: 100%;
  padding: 20px 18px 17px 31px;
  text-align: left;
}
@media (width <= 768px) {
  .faq__button {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 23px 18px 17px 26px;
  }
}
.faq__name {
  font-family: var(--font-black);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.3px;
}
@media (width <= 768px) {
  .faq__name {
    font-size: 18px;
  }
}
.faq__iconbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
}
.faq__contentbox {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}
.faq__content {
  padding: 23px 146px 28px 31px;
  font-size: 16px;
  line-height: 18px;
}
@media (width <= 768px) {
  .faq__content {
    padding: 0px 65px 28px 25px;
    font-size: 15px;
  }
}
.faq__content p {
  font-size: 16px;
  line-height: 18px;
}
@media (width <= 768px) {
  .faq__content p {
    font-size: 15px;
  }
}
.faq__content p:not(:last-child) {
  margin-bottom: 15px;
}
.faq__item {
  border-radius: 15px;
  background: var(--color-white);
}
.faq__item.is-active .faq__contentbox {
  max-height: 1000px;
}
.faq__item.is-active .vert-line {
  opacity: 0;
}

.hor-line {
  width: 18px;
  height: 2px;
  background: var(--color-white);
}

.vert-line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2px;
  height: 18px;
  background: var(--color-white);
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.reviews {
  margin-bottom: 165px;
  padding-top: 91px;
}
@media (width <= 768px) {
  .reviews {
    margin-bottom: 63px;
    padding-top: 58px;
  }
}
.reviews__title {
  margin-bottom: 49px;
}
@media (width <= 768px) {
  .reviews__title {
    margin-bottom: 28px;
  }
}
.reviews-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  width: 280px;
  height: 60px;
  margin-bottom: 29px;
  padding: 4px 4px 4px 7px;
  border-radius: 30px;
  background: var(--color-white);
}
@media (width <= 768px) {
  .reviews-link {
    margin: 0 auto 21px;
    -webkit-transform: translateX(-4px);
        -ms-transform: translateX(-4px);
            transform: translateX(-4px);
  }
}
.reviews-link__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  height: 52px;
  font-size: 20px;
  border-radius: 26px;
  background: var(--color-skyblue);
}
@media (width <= 768px) {
  .reviews-link__text {
    font-size: 18px;
  }
}
.reviews-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 20px;
}
@media (width <= 768px) {
  .reviews-rating {
    font-size: 18px;
  }
}
.reviews-slider {
  margin-bottom: 24px;
  padding: 10px;
}
.reviews-slider .swiper-wrapper{
    align-items: stretch;
}
.reviews-slider .swiper-slide{
    height: auto;
}
@media (width <= 768px) {
  .reviews-slider {
    margin-bottom: 14px;
  }
}
.reviews__sliderbox {
  position: relative;
  padding-left: 48px;
  padding-right: 53px;
}
@media (width <= 768px) {
  .reviews__sliderbox {
    padding-left: 41px;
    padding-right: 40px;
  }
}
.reviews-prev {
  position: absolute;
  left: 0;
  top: 150px;
}
@media (width <= 768px) {
  .reviews-prev {
    top: 170px;
  }
}
.reviews-next {
  position: absolute;
  right: 0;
  top: 150px;
}
@media (width <= 768px) {
  .reviews-next {
    top: 170px;
  }
}

.review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 360px;
  padding: 18px 18px 27px;
  background: var(--color-white);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
.review__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  margin-bottom: 21px;
}
.review__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__name {
  margin-bottom: 3px;
  font-family: var(--font-bold);
  font-size: 16px;
  line-height: 13px;
}
.review__date {
  font-size: 12px;
  line-height: 18px;
  color: #7c7c7c;
}
.review__content {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 18px;
}
.review__link {
  display: block;
  margin-top: auto;
  font-size: 12px;
  text-decoration: underline;
  color: #7c7c7c;
}

.popup {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(10, 84, 170, 0.85);
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.popup.is-open {
  opacity: 1;
  pointer-events: initial;
}
.popup__body {
  position: relative;
  border-radius: 15px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  overflow: hidden;
}
.popup-form__body {
  max-width: 800px;
  padding: 75px 89px 60px;
}
@media (width <= 992px) {
  .popup-form__body {
    padding: 30px;
  }
}
.popup-form__title {
  margin-bottom: 58px;
  font-family: var(--font-bold);
  font-size: 44px;
  line-height: 1;
  text-align: center;
}
@media (width <= 565px) {
  .popup-form__title {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
.popup-form__subtitle {
  margin-bottom: 27px;
  font-family: var(--font-bold);
  font-size: 26px;
  color: #2f6db7;
  text-align: center;
}
.popup-form__inputbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0px;
  width: 100%;
  height: 54px;
  border: 1px solid #ccc;
  background: #f3f3f3;
  border-radius: 10px;
}
.popup-form__inputparam {
  width: 180px;
}
@media (width <= 768px) {
  .popup-form__inputparam {
    width: 100%;
  }
}
.popup-form__input {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  font-family: var(--font-bold);
  font-size: 18px;
  color: var(--color-black);
  background: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.popup-form__input::-webkit-input-placeholder {
  font-family: var(--font-bold);
  font-size: 18px;
  color: var(--color-black);
}
.popup-form__input::-moz-placeholder {
  font-family: var(--font-bold);
  font-size: 18px;
  color: var(--color-black);
}
.popup-form__input:-ms-input-placeholder {
  font-family: var(--font-bold);
  font-size: 18px;
  color: var(--color-black);
}
.popup-form__input::-ms-input-placeholder {
  font-family: var(--font-bold);
  font-size: 18px;
  color: var(--color-black);
}
.popup-form__input::placeholder {
  font-family: var(--font-bold);
  font-size: 18px;
  color: var(--color-black);
}
.popup-form__select {
  padding-right: 40px;
  cursor: pointer;
}
.popup-form__selecticon {
  position: absolute;
  right: 6px;
  pointer-events: none;
}
.popup-form__inputname {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 17px;
  line-height: 1;
  text-align: right;
}
@media (width <= 565px) {
    .popup-form__inputname br{
        display: none;
    }
  .popup-form__inputname {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}
.popup-form__inputval {
  padding-right: 15px;
  font-size: 18px;
}
.popup-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 380px;
  width: 100%;
  height: 75px;
  margin: 0 auto;
  padding: 0 40px;
  font-family: var(--font-black);
  font-size: 21px;
  color: var(--color-white);
  border-radius: 10px;
  background: linear-gradient(105deg, rgb(23, 161, 0) 0%, rgb(46, 216, 0) 100%);
}
@media (width <= 565px) {
  .popup-form__submit {
    padding: 0 15px;
  }
}
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.private-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  margin-bottom: 55px;
}
@media (width <= 565px) {
  .private-data {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}

.parameter-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 55px;
  padding-left: 0;
}
@media (width <= 768px) {
  .parameter-data {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 13px;
  }
}
@media (width <= 565px) {
  .parameter-data {
    margin-bottom: 20px;
  }
}
.parameter-data__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
}
@media (width <= 768px) {
  .parameter-data__item {
    display: grid;
    grid-template-columns: 100px 1fr;
  }
}
@media (width <= 565px) {
  .parameter-data__item {
    grid-template-columns: 1fr;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
