@-webkit-keyframes fadeInTop {
  0% {
    -webkit-transform: translatey(-100%);
    transform: translatey(-100%);
  }

  to {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

@keyframes fadeInTop {
  0% {
    -webkit-transform: translatey(-100%);
    transform: translatey(-100%);
  }

  to {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

@-webkit-keyframes fadeOutTop {
  0% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }

  to {
    -webkit-transform: translatey(-200%);
    transform: translatey(-200%);
  }
}

@keyframes fadeOutTop {
  0% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }

  to {
    -webkit-transform: translatey(-200%);
    transform: translatey(-200%);
  }
}

.container,
body {
  position: relative;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat-Regular";
  color: #333;
}

body.no-scroll {
  overflow-y: hidden;
}

* {
  box-sizing: border-box;
  outline: 0;
}

:focus {
  outline: 0;
}

a,
button,
fieldset,
li {
  border: 0;
  color: inherit;
  box-shadow: none;
  background: 0 0;
  padding: 0;
  list-style: none;
}

a,
button,
fieldset {
  outline: 0;
  cursor: pointer;
}

li {
  cursor: default;
}

a,
a:hover,
button,
button:hover,
fieldset,
fieldset:hover,
input,
li,
li:hover,
textarea {
  text-decoration: none;
}

a:active,
button:active,
fieldset:active,
input:active,
li,
li:active,
textarea:active {
  outline: 0;
}

button {
  font-family: inherit;
}

input,
textarea {
  border: 0;
  color: inherit;
  outline: 0;
  list-style: none;
  box-shadow: none;
  background: 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Montserrat-Regular";
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  -webkit-transition: all .3s;
  transition: all .3s;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  -moz-transition: all .3s;
  transition: all .3s;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  -ms-transition: all .3s;
  transition: all .3s;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  -ms-transition: all .3s;
  transition: all .3s;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  transition: all .3s;
}

textarea {
  resize: none;
  max-height: 100%;
  padding-right: 5px;
  overflow-y: auto;
  overflow-x: visible;
  scrollbar-color: #f13935 #f5f5f5;
  scrollbar-width: thin;
}

textarea::-webkit-scrollbar {
  width: 4px;
}

textarea::-webkit-scrollbar-track {
  background: #f5f5f5;
}

textarea::-webkit-scrollbar-thumb {
  background: #f13935;
}

body,
html {
  height: 100%;
}

main {
  min-height: 100%;
}

b {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

img,
small {
  max-width: 100%;
}

img {
  border: 0;
  outline: 0;
}

small {
  display: block;
}

.input-wrapper,
.input-wrapper p,
picture {
  display: flex;
}

.menu li,
.underline:before,
svg {
  transition: all .3s;
}

input[type=submit] {
  cursor: pointer;
}

.link-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.underline {
  position: relative;
}

.underline:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: 0 0;
}

.form__icon {
  flex-grow: 0;
  flex-shrink: 0;
}

.form__check {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form__check a:hover,
.text-block a {
  text-decoration: underline;
}

.form__check.error .form__icon {
  border-color: #c00;
}

.form__check.error .form__text,
.form__check.error .form__text a {
  color: #c00;
}

.text-block h1 {
  text-align: center;
}

.text-block h1,
.text-block h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-family: "Montserrat-Bold";
}

.text-block h3 {
  margin-bottom: 25px;
  font-family: "Montserrat-Medium";
  font-size: 26px;
}

.text-block p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: calc(22.5/16);
}

.text-block ol,
.text-block ul {
  padding-bottom: 20px;
  padding-left: 40px;
}

.text-block ol li,
.text-block ul li {
  position: relative;
  padding-left: 20px;
}

.text-block ol li:not(:last-child),
.text-block ul li:not(:last-child) {
  margin-bottom: 10px;
}

.text-block ol li:before,
.text-block ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  width: 8px;
  height: 8px;
  background: #f13935;
  border-radius: 50%;
}

.text-block b,
.text-block strong {
  font-family: "Montserrat-Bold";
}

.text-block blockquote {
  padding: 40px;
  font-size: 18px;
  line-height: 1.4;
  background: #c2c2c2;
}

.text-block mark {
  background: #f35a56;
}

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template: auto 1fr auto/minmax(320px,1fr);
}

.is-closing {
  z-index: 1!important;
}

.menu-link {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  background: 0 0;
  border-radius: 4px;
  transition: .4s;
}

.menu-link_active .menu-lines {
  background: 0 0;
}

.menu-link_active .menu-lines:after {
  top: 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.menu-link_active .menu-lines:before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.menu-lines,
.menu-lines:after,
.menu-lines:before {
  position: absolute;
  width: 30px;
  height: 2.5px;
  background-color: #f13935;
  transition: .4s;
}

.menu-lines {
  top: 50%;
  right: 0;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
}

.menu-lines:before {
  content: '';
  top: -9px;
}

.menu-lines:after {
  content: '';
  top: 9px;
}

.section {
  padding-bottom: 50px;
  padding-top: 50px;
}

.section-bg {
  margin-bottom: 50px;
  margin-top: 50px;
  padding-bottom: 50px;
  padding-top: 50px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.title {
  margin-bottom: 70px;
  font-size: 36px;
  font-family: "Montserrat-Bold";
  line-height: calc(44/36);
}


.features__title, .price__title  {
  text-align: center;
}

.title strong {
  font-family: "Montserrat-Medium";
}

.button {
  min-width: 238px;
  min-height: 60px;
  padding: 5px 10px;
  font-size: 18px;
  background: #f13935;
  font-family: "Montserrat-Bold";
  color: #fff;
  border-radius: 10px;
  transition: all .3s;
}

.form form,
input:not([type=radio]) {
  width: 100%;
}

.form .input-wrapper {
  gap: 30px;
  justify-content: center;
}

.form .input-wrapper>* {
  width: 100%;
  max-width: 285px;
}

.form__small {
  margin-top: 30px;
  font-size: 14px;
  line-height: calc(17/14);
}

input:not([type=radio]) {
  padding-left: 30px;
  padding-right: 30px;
  height: 60px;
  font-size: 16px;
}

input:not([type=submit]) {
  border: 1px solid #f13935;
  border-radius: 10px;
}
input[type=radio] {
  border: none;
}

.popup,
.popup__dialog {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: none;
  overflow: hidden;
  color: white;
  background: rgba(0,0,0,.9);
}

.popup__dialog {
  display: flex;
}

.popup__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 95%;
  width: 697px;
  max-width: 90%;
  padding: 90px 110px;
  background: #fff;
  overflow-y: auto;
  border-radius: 10px;
  transition: all .3s;
}

.popup__title {
  margin-bottom: 20px;
  font-size: 36px;
  font-family: "Montserrat-Bold";
  text-align: center;
  color: #2f343a;
}

.popup__title::first-letter {
  text-transform: uppercase;
}

.popup__subtitle {
  margin-bottom: 44px;
  font-size: 16px;
  line-height: calc(24/16);
  color: rgba(51,51,51,.7);
  text-align: center;
}

.popup__form .input-wrapper {
  gap: 15px;
  flex-direction: column;
}

.popup__form input:not([type=submit]) {
  width: 100%;
  height: 60px;
  padding: 0 15px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  font-size: 14px;
  color: #2f343a;
  color: rgba(51,51,51,.6);
}

.popup__form small {
  margin-top: 15px;
  font-size: 12px;
  color: #2e3b42;
  text-align: center;
  line-height: calc(16/12);
  opacity: .7;
}

.popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: all .3s;
}

.popup__close svg {
  width: 27px;
  height: 27px;
  fill: #f13935;
}

.popup-thank .popup__content svg {
  margin-bottom: 23px;
  width: 44px;
  height: 44px;
  fill: #f13935;
}

.header {
  padding-top: 114px;
  margin-bottom: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__top-wrapper {
  padding: 27px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  -webkit-animation: fadeInTop .4s ease-in-out;
  animation: fadeInTop .4s ease-in-out;
  background: 0 0;
}

.header__top-wrapper_fixed {
  background: #1f97ce;
}

.header__logo {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 178px;
  max-width: 178px;
  min-width: 170px;
}

.div_header_logo {
	float:left;
	margin-right: 10px;
}

.header__logo_title {
	height: 40px;
	display: flex;
    align-items: center;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 143px;
}

.header__call {
  display: flex;
  align-items: flex-start;
  gap: 21px;
}

.header__call-icon {
  width: 34px;
  height: 34px;
}

.header__call-icon svg {
  width: 100%;
  height: 100%;
  fill: #f13935;
}

.header__call-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 175px;
  text-align: right;
}

.header__call-text {
  font-size: 14px;
  line-height: calc(17/14);
}

.header__tel {
  font-size: 18px;
  line-height: calc(22/18);
  font-family: "Montserrat-Bold";
}

.header__main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5px;
}

.header__col {
  padding-bottom: 100px;
}

.header__title {
  margin-top: 17px;
  margin-bottom: 49px;
  padding: 24px 54px;
  font-size: 42px;
  text-align: center;
  line-height: calc(51/42);
  font-family: "Montserrat-Bold";
  background: #82c4e3;
}

.header__subtitle {
  margin-bottom: 60px;
  font-size: 24px;
  line-height: calc(31/24);
  font-family: "Montserrat-Bold";
}

.header__list {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 18px;
  line-height: calc(25/18);
}

.header__list li {
  position: relative;
  padding-left: 40px;
}

.header__list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(../images/check.svg) center/contain no-repeat;
}

.header__img {
	position: absolute;
    width: 567px;
    height: 561px;
    background: url(../images/header-image.png) no-repeat;
    right: -50px;
}

.header__img img {
    max-width: 100%;
}

.header__form .input-wrapper {
  justify-content: flex-start;
}

.footer {
  padding-bottom: 40px;
  padding-top: 40px;
}

.footer__tel,
.footer__top {
  display: flex;
  align-items: center;
}

.footer__top {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer__tel {
  gap: 21px;
  font-size: 18px;
  font-family: "Montserrat-Bold";
}

.footer__tel svg {
  width: 34px;
  height: 34px;
  fill: #f13935;
}

.footer__bottom {
  margin-top: 10px;
  text-align: center;
}

.footer__policy {
  text-decoration: underline;
  font-size: 13px;
  color: #f13935;
  font-family: "Montserrat-Medium";
}

.footer__logo {
  display: flex;
}

.footer__bottom {
  font-size: 10px;
  line-height: calc(17/14);
  color: rgba(51,51,51,.7);
}

.breakage__title {
  margin-bottom: 50px;
  text-align: center;
}

.breakage__subtitle {
  font-size: 24px;
  line-height: calc(30/24);
  font-family: "Montserrat-SemiBold";
  margin-bottom: 50px;
  text-align: center;
}

.breakage-wrapper {
  display: flex;
  flex-wrap: wrap;
  --gap: 30px;
  gap: var(--gap);
}

.breakage__item {
  gap: 17px;
  width: calc(25% - var(--gap)/4*3);
  padding: 27px;
  display: flex;
  align-items: flex-start;
  background: #f5f5f5;
  border-radius: 10px;
  transition: all .3s;
}

.breakage__item-title {
  font-size: 16px;
  font-family: "Montserrat-Bold";
  line-height: calc(19.5/16);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

label {cursor: pointer; display:flex;}
.radioknopka {
	margin-right: 15px;
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    padding: 3px;
    margin-top: -2px;
}

input[type="radio" i] {
    cursor: pointer;
}

input[type='radio']:after {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	top: -2px;
	left: -1px;
	position: relative;
	background: 0 0;
	transition: all .3s;
	content: '';
	display: inline-block;
	visibility: visible;
	border-style: solid;
	border-color: #f13935;
	border-width: 3px;
}

input[type='radio']:checked:after {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: -2px;
    left: -1px;
    position: relative;
    background: #f13935;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 3px solid white;
}


.breakage__item-icon {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 26px;
  width: 26px;
  height: 26px;
  padding: 3px;
  margin-top: -2px;
  border-radius: 50%;
  border-style: solid;
  border-color: #f13935;
  border-width: 4px;
}

.breakage__item-icon:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: 0 0;
  transition: all .3s;
}

.breakage__item.active .breakage__item-icon:after {
  background: #f13935;
}

.breakage__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}

.breakage__form input:not([type=submit]) {
  color: rgba(51,51,51,.4);
}

.breakage__form .form__small {
  color: rgba(51,51,51,.4);
  text-align: center;
}

.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  --gap: 95px;
  gap: var(--gap);
}

.features__item {
  width: calc(50% - var(--gap)/2*1);
  max-width: 475px;
}

.features__item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin-bottom: 40px;
  padding: 24px 27px;
  font-size: 24px;
  line-height: calc(29/24);
  font-family: "Montserrat-SemiBold";
  background: #f5f5f5;
  border-radius: 10px;
}

.features__item-title svg {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  flex-grow: 0;
  flex-shrink: 0;
}

.features__item-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 18px;
  line-height: calc(22/18);
}

.features__item-list li {
  position: relative;
  padding-left: 81px;
  font-family: "Montserrat-Medium";
}

.features__item-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 44px;
  height: 4px;
}

.features__item_plus .features__item-title svg {
  fill: #00ba3f;
}

.features__item_plus .features__item-list li:before {
  background: url(../images/plus.svg) center/contain no-repeat;
}

.features__item_minus .features__item-title svg {
  fill: #f13935;
}

.features__item_minus .features__item-list li:before {
  background: url(../images/minus.svg) center/contain no-repeat;
}

.offer {
  color: #fff;
  text-align: center;
  line-height: calc(30/24);
}

.offer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer__title {
  margin-bottom: 40px;
}

.offer .form__text,
.offer__call,
.offer__subtitle,
.offer__tel {
  font-size: 24px;
}

.offer .form__text,
.offer__call,
.offer__tel {
  font-family: "Montserrat-Bold";
}

.offer__subtitle {
  margin-bottom: 40px;
  font-family: "Montserrat-SemiBold";
}

.offer__call {
  margin-bottom: 20px;
}

.offer__tel {
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.offer__tel svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.offer__form {
  width: 100%;
}

.offer__form .form__text {
  margin-bottom: 42px;
}

.price-wrapper {
  display: flex;
  flex-wrap: wrap;
  --gap: 22px;
  gap: var(--gap);
}

.price__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: calc(50% - var(--gap)/2*1);
  font-size: 18px;
  line-height: calc(24/18);
}

.price__item-right {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 120px;
  font-family: "Montserrat-Bold";
  color: #1f97ce;
  text-align: right;
}

.price__item .line {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 129px;
  align-self: flex-end;
  height: 1px;
  background: rgba(51,51,51,.1);
}

@media (min-width:576px) {
  .container {
    width: 520px;
    padding: 0;
  }
}

@media (min-width:768px) {
  .container {
    width: 720px;
  }
}

@media (min-width:992px) {
  .container {
    width: 960px;
  }
}

@media (min-width:1200px) {
  .container {
    width: 1110px;
  }
}

@media (max-width:1199px) {
  .text-block h1,
  .text-block h2 {
    margin-bottom: calc(20px + 10*((100vw - 320px)/1600));
    font-size: calc(23px + 7*((100vw - 320px)/1600));
  }

  .text-block h3 {
    margin-bottom: calc(15px + 10*((100vw - 320px)/1600));
    font-size: calc(18px + 8*((100vw - 320px)/1600));
  }

  .text-block p {
    margin-bottom: calc(10px + 10*((100vw - 320px)/1600));
    font-size: calc(15px + 1*((100vw - 320px)/1600));
  }

  .text-block ol,
  .text-block ul {
    padding-bottom: calc(10px + 10*((100vw - 320px)/1600));
    padding-left: calc(30px + 10*((100vw - 320px)/1600));
  }

  .text-block ol li,
  .text-block ul li {
    padding-left: calc(17px + 3*((100vw - 320px)/1600));
  }

  .text-block ol li:not(:last-child),
  .text-block ul li:not(:last-child) {
    margin-bottom: calc(5px + 5*((100vw - 320px)/1600));
  }

  .text-block ol li:before,
  .text-block ul li:before {
    width: calc(6px + 2*((100vw - 320px)/1600));
    height: calc(6px + 2*((100vw - 320px)/1600));
  }

  .text-block blockquote {
    padding: calc(15px + 25*((100vw - 320px)/1600));
    font-size: calc(15px + 3*((100vw - 320px)/1600));
  }

  .section {
    padding-bottom: calc(25px + 25*((100vw - 320px)/1600));
    padding-top: calc(25px + 25*((100vw - 320px)/1600));
  }

  .section-bg {
    margin-bottom: calc(25px + 25*((100vw - 320px)/1600));
    margin-top: calc(25px + 25*((100vw - 320px)/1600));
    padding-bottom: calc(25px + 25*((100vw - 320px)/1600));
    padding-top: calc(25px + 25*((100vw - 320px)/1600));
  }

  .title {
    margin-bottom: calc(25px + 45*((100vw - 320px)/1600));
    font-size: calc(21px + 15*((100vw - 320px)/1600));
  }

  .button {
    min-width: calc(140px + 98*((100vw - 320px)/1600));
    min-height: calc(40px + 20*((100vw - 320px)/1600));
    font-size: calc(12px + 6*((100vw - 320px)/1600));
  }

  .form .input-wrapper {
    gap: calc(10px + 20*((100vw - 320px)/1600));
  }

  .form .input-wrapper>* {
    max-width: calc(250px + 35*((100vw - 320px)/1600));
  }

  .form__small {
    margin-top: calc(12px + 18*((100vw - 320px)/1600));
    font-size: calc(13px + 1*((100vw - 320px)/1600));
  }

  input {
    padding-left: calc(15px + 15*((100vw - 320px)/1600));
    padding-right: calc(15px + 15*((100vw - 320px)/1600));
    height: calc(48px + 12*((100vw - 320px)/1600));
  }

  .popup__content {
    padding: calc(30px + 60*((100vw - 320px)/1600)) calc(30px + 80*((100vw - 320px)/1600));
  }

  .popup__title {
    margin-bottom: calc(10px + 10*((100vw - 320px)/1600));
    font-size: calc(22px + 14*((100vw - 320px)/1600));
  }

  .popup__subtitle {
    margin-bottom: calc(10px + 34*((100vw - 320px)/1600));
    font-size: calc(15px + 1*((100vw - 320px)/1600));
  }

  .popup__form .input-wrapper {
    gap: calc(10px + 5*((100vw - 320px)/1600));
  }

  .popup__form input:not([type=submit]) {
    height: calc(48px + 12*((100vw - 320px)/1600));
    font-size: calc(13px + 1*((100vw - 320px)/1600));
  }

  .popup__form small {
    margin-top: calc(10px + 5*((100vw - 320px)/1600));
    font-size: calc(10px + 2*((100vw - 320px)/1600));
  }

  .popup__close svg {
    width: calc(21px + 6*((100vw - 320px)/1600));
    height: calc(21px + 6*((100vw - 320px)/1600));
  }

  .popup-thank .popup__content svg {
    margin-bottom: calc(15px + 8*((100vw - 320px)/1600));
    width: calc(33px + 11*((100vw - 320px)/1600));
    height: calc(33px + 11*((100vw - 320px)/1600));
  }

  .header {
    margin-bottom: calc(25px + 25*((100vw - 320px)/1600));
  }

  .header__logo {
    flex-basis: calc(120px + 58*((100vw - 320px)/1600));
    max-width: calc(120px + 58*((100vw - 320px)/1600));
  }

  .header__right {
    gap: calc(20px + 123*((100vw - 320px)/1600));
  }

  .header__call {
    gap: calc(14px + 7*((100vw - 320px)/1600));
  }

  .header__call-icon {
    width: calc(25px + 9*((100vw - 320px)/1600));
    height: calc(25px + 9*((100vw - 320px)/1600));
  }

  .header__call-right {
    max-width: calc(150px + 25*((100vw - 320px)/1600));
  }

  .header__call-text {
    font-size: calc(12px + 2*((100vw - 320px)/1600));
  }

  .header__tel {
    font-size: calc(16px + 2*((100vw - 320px)/1600));
  }

  .header__col {
    padding-bottom: calc(20px + 80*((100vw - 320px)/1600));
  }

  .header__title {
    margin-bottom: calc(20px + 29*((100vw - 320px)/1600));
    padding: calc(12px + 12*((100vw - 320px)/1600)) calc(20px + 34*((100vw - 320px)/1600));
    font-size: calc(22px + 20*((100vw - 320px)/1600));
  }

  .header__subtitle {
    margin-bottom: calc(20px + 40*((100vw - 320px)/1600));
    font-size: calc(17px + 7*((100vw - 320px)/1600));
  }

  .header__list {
    margin-bottom: calc(20px + 40*((100vw - 320px)/1600));
    gap: calc(11px + 7*((100vw - 320px)/1600));
    font-size: calc(15px + 3*((100vw - 320px)/1600));
  }

  .header__list li {
    padding-left: calc(28px + 12*((100vw - 320px)/1600));
  }

  .header__list li:before {
    width: calc(18px + 6*((100vw - 320px)/1600));
    height: calc(18px + 6*((100vw - 320px)/1600));
  }

  .header__img {
	width: 70%;
    height: 70%;
	right: -210px;
  }

  .header {
    padding-top: 108px;
  }

  .footer {
    padding-bottom: calc(25px + 15*((100vw - 320px)/1600));
    padding-top: calc(25px + 15*((100vw - 320px)/1600));
  }

  .footer__tel {
    gap: calc(12px + 9*((100vw - 320px)/1600));
    font-size: calc(16px + 2*((100vw - 320px)/1600));
  }

  .footer__tel svg {
    width: calc(25px + 9*((100vw - 320px)/1600));
    height: calc(25px + 9*((100vw - 320px)/1600));
  }

  .footer__bottom {
    font-size: calc(10px + 1*((100vw - 320px)/1600));
  }

  .breakage__title {
    margin-bottom: calc(25px + 25*((100vw - 320px)/1600));
  }

  .breakage__subtitle {
    font-size: calc(17px + 7*((100vw - 320px)/1600));
    margin-bottom: calc(15px + 35*((100vw - 320px)/1600));
  }

  .breakage-wrapper {
    --gap: 20px;
  }

  .breakage__item {
    gap: calc(10px + 7*((100vw - 320px)/1600));
  }

  .breakage__item {
    padding: calc(15px + 12*((100vw - 320px)/1600));
  }

  .breakage__item-title {
    font-size: calc(15px + 1*((100vw - 320px)/1600));
  }

  .breakage__item-icon {
    flex-basis: calc(20px + 6*((100vw - 320px)/1600));
    width: calc(20px + 6*((100vw - 320px)/1600));
    height: calc(20px + 6*((100vw - 320px)/1600));
    padding: calc(2px + 1*((100vw - 320px)/1600));
    border-width: calc(3px + 1*((100vw - 320px)/1600));
  }

  .breakage__form {
    margin-top: calc(20px + 40*((100vw - 320px)/1600));
  }

  .features-wrapper {
    --gap: 60px;
  }

  .features__item-title {
    gap: calc(10px + 28*((100vw - 320px)/1600));
    margin-bottom: calc(20px + 20*((100vw - 320px)/1600));
    padding: calc(12px + 12*((100vw - 320px)/1600)) calc(15px + 12*((100vw - 320px)/1600));
    font-size: calc(17px + 7*((100vw - 320px)/1600));
  }

  .features__item-title svg {
    width: calc(22px + 10*((100vw - 320px)/1600));
    height: calc(22px + 10*((100vw - 320px)/1600));
    flex-basis: calc(22px + 10*((100vw - 320px)/1600));
  }

  .features__item-list {
    gap: calc(12px + 18*((100vw - 320px)/1600));
    font-size: calc(15px + 3*((100vw - 320px)/1600));
  }

  .features__item-list li {
    padding-left: calc(36px + 45*((100vw - 320px)/1600));
  }

  .features__item-list li:before {
    top: calc(8px + -3*((100vw - 320px)/1600));
    width: calc(25px + 19*((100vw - 320px)/1600));
    height: calc(3px + 1*((100vw - 320px)/1600));
  }

  .offer__title {
    margin-bottom: calc(15px + 25*((100vw - 320px)/1600));
  }

  .offer .form__text,
  .offer__call,
  .offer__subtitle,
  .offer__tel {
    font-size: calc(16px + 8*((100vw - 320px)/1600));
  }

  .offer__subtitle {
    margin-bottom: calc(20px + 20*((100vw - 320px)/1600));
  }

  .offer__call {
    margin-bottom: calc(10px + 10*((100vw - 320px)/1600));
  }

  .offer__tel {
    margin-bottom: calc(15px + 41*((100vw - 320px)/1600));
    gap: calc(12px + 16*((100vw - 320px)/1600));
  }

  .offer__tel svg {
    width: calc(25px + -1*((100vw - 320px)/1600));
    height: calc(25px + -1*((100vw - 320px)/1600));
  }

  .offer__form .form__text {
    margin-bottom: calc(15px + 27*((100vw - 320px)/1600));
  }

  .price-wrapper {
    --gap: 20px;
  }

  .price__item {
    font-size: calc(13px + 5*((100vw - 320px)/1600));
  }

  .price__item-right {
    flex-basis: calc(95px + 25*((100vw - 320px)/1600));
  }

  .price__item .line {
    flex-basis: calc(100px + 29*((100vw - 320px)/1600));
  }
}

@media (max-width:991px) {
  body {
    padding-top: 71px;
  }

  .menu-link {
    display: block;
  }

  .header__top-wrapper {
    min-height: 71px;
  }

  .header__img {
    display: none;
  }

  .header {
    padding-top: 0;
  }

  .header__top-wrapper {
    padding: 10px 0;
    background: #1f97ce;
  }

  .header__right {
    gap: 20px;
  }

  .header__call {
    align-items: center;
  }

  .header__call-icon {
    background: #fff;
    border-radius: 50px;
  }

  .footer__policy {
    width: 100%;
    order: 3;
    text-align: center;
  }

  .breakage__item {
    width: calc(33.33333% - var(--gap)/3*2);
  }

  .features-wrapper {
    --gap: 40px;
  }

  .price-wrapper {
    --gap: 15px;
  }

  .price__item {
    width: calc(100% - var(--gap)/1*0);
  }

  .price__item {
    font-size: calc(15px + 1*((100vw - 320px)/671));
    gap: 14px;
  }

  .price__item .line {
    flex-basis: calc(60px + 50*((100vw - 320px)/671));
  }
}

@media (max-width:991px) and (max-width:1199px) {
  .header__right {
    gap: calc(10px + 10*((100vw - 320px)/1600));
  }
}

@media (max-width:767px) {
  body {
    padding-top: 60px;
  }

  .header__top-wrapper {
    min-height: 60px;
  }

  .header__top {
    gap: 5px;
  }

   .header__button {
	  display: none;
  }
  
  .features__item {
    width: calc(100% - var(--gap)/1*0);
  }

  .footer__top {
    flex-direction: column;
  }

  .breakage-wrapper {
    --gap: 15px;
  }

  .breakage__item {
    width: calc(50% - var(--gap)/2*1);
  }

  .features-wrapper {
    --gap: 25px;
  }

  .features__item-list {
    line-height: 1.5;
  }
}

@media (max-width:767px) and (max-width:1199px) {
  .header__call-icon {
    width: calc(30px + 5*((100vw - 320px)/1600));
    height: calc(30px + 5*((100vw - 320px)/1600));
  }
}

@media (max-width:575px) {
  body {
    padding-top: 50px;
  }

  .section-bg {
    margin: 0 auto;
  }

  .bg {
    background: #1f97ce!important;
  }

  .header__logo_title {
	  display: none;
  }
  
  .header__logo {
    flex-basis: 50px;
    max-width: 51px;
    min-width: 50px;
}

  .form .input-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .form .input-wrapper>* {
    max-width: 100%;
  }

  .form__small {
    text-align: center;
  }

  .popup__dialog {
    width: 400px;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto;
  }

  .popup__content {
    padding: 30px 40px;
  }

  .header__top-wrapper {
    min-height: 50px;
  }

  .breakage-wrapper {
    --gap: 10px;
  }

  .breakage__item {
    width: calc(100% - var(--gap)/1*0);
  }

  .features {
    background: #f5f5f5!important;
  }

  .features__item-title {
    background: #fff;
  }

  .price__item-right {
    flex-basis: 110px;
  }

  .price__item .line {
    display: none;
  }
}

@media (max-width:575px) and (max-width:1199px) {
  .popup__content {
    padding-left: calc(15px + 25*((100vw - 320px)/1600));
    padding-right: calc(15px + 25*((100vw - 320px)/1600));
  }
}

@media not all and (min-resolution:.001dpcm) {
  input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
  }
}

@media (any-hover:hover) {
  .underline:hover:before {
    background: #f13935;
  }

  .button:hover {
    background: #ef1814;
  }

  .popup__close:hover svg {
    fill: #ef1814;
  }

  .breakage__item:hover {
    background: #e3e3e3;
  }
}
@supports (-webkit-appearance:none){
.header__list li:before{background:url(../images/check.svg) center/contain no-repeat}
.features__item_plus .features__item-list li:before{background:url(../images/plus.svg) center/contain no-repeat}
.features__item_minus .features__item-list li:before{background:url(../images/minus.svg) center/contain no-repeat}
}

 @media (min-width:576px){

@supports (-webkit-appearance:none){

}

}

 @media (min-width:768px){

@supports (-webkit-appearance:none){

}

}

 @media (min-width:992px){

@supports (-webkit-appearance:none){

}

}

 @media (min-width:1200px){

@supports (-webkit-appearance:none){

}

}

 @media (max-width:1199px){

@supports (-webkit-appearance:none){

}

}

 @media (max-width:991px){

@supports (-webkit-appearance:none){

}

}

 @media (max-width:991px) and (max-width:1199px){

@supports (-webkit-appearance:none){

}

}

 @media (max-width:767px){

@supports (-webkit-appearance:none){

}

}

 @media (max-width:767px) and (max-width:1199px){

@supports (-webkit-appearance:none){

}

}

 @media (max-width:575px){

@supports (-webkit-appearance:none){

}

}

 @media (max-width:575px) and (max-width:1199px){

@supports (-webkit-appearance:none){

}

}

 @media not all and (min-resolution:.001dpcm){

@supports (-webkit-appearance:none){

}

}

 @media (any-hover:hover){

@supports (-webkit-appearance:none){

}

}

.form-fail {display:none; margin-top: 10px; padding: 5px; color: red; font-weight: 700; background-color: white;}
