html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}
* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Roboto-Light';
  src: url('../fonts/Roboto/Roboto-Light.eot');
  src: url('../fonts/Roboto/Roboto-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto/Roboto-Light.woff') format('woff'),
    url('../fonts/Roboto/Roboto-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Italic';
  src: url('../fonts/Roboto/Roboto-LightItalic.eot');
  src: url('../fonts/Roboto/Roboto-LightItalic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto/Roboto-LightItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto/Roboto-Regular.eot');
  src: url('../fonts/Roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url('../fonts/Roboto/Roboto-Bold.eot');
  src: url('../fonts/Roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto/Roboto-Bold.woff') format('woff'),
    url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'RobotoSlab-Regular';
  src: url('../fonts/RobotoSlab/RobotoSlab-Regular.eot');
  src: url('../fonts/RobotoSlab/RobotoSlab-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/RobotoSlab/RobotoSlab-Regular.woff') format('woff'),
    url('../fonts/RobotoSlab/RobotoSlab-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'RobotoSlab-Bold';
  src: url('../fonts/RobotoSlab/RobotoSlab-Bold.eot');
  src: url('../fonts/RobotoSlab/RobotoSlab-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/RobotoSlab/RobotoSlab-Bold.woff') format('woff'),
    url('../fonts/RobotoSlab/RobotoSlab-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/*========= common =========*/
html {
  height: 100%;
}

body {
  height: auto !important;
  min-width: 1200px; /*max-width: 1920px;*/
  font-family: 'Roboto-Regular', Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 36px;
  color: #0a1423;
  background: #fff;
  margin: 0px;
  padding: 0px;
  border: 0px;
}
.commwidth {
  max-width: 1200px; /*padding: 0 40px;*/
  margin: 0 auto;
}
.footer_commwidth {
  max-width: 958px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  height: 70px;
  line-height: 68px;
  font-family: 'RobotoSlab-Bold', sans-serif;
  font-size: 20px;
  border-radius: 35px;
  background: #adbb26;
  color: #0a1423;
  padding: 0 48px;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
}
.btn:hover {
  background: #fff;
  color: #0a1423;
}
.btn_light {
  color: #fff;
}
.btn_light:hover {
  background: #adbb26;
  color: #0a1423;
}

ul,
ol {
  list-style-type: none;
}
a {
  color: #053e68;
  text-decoration: none;
}

h1 {
  font-size: 50px;
  line-height: 110%;
  font-family: 'RobotoSlab-Bold', sans-serif;
}
h2 {
  font-size: 68px;
  line-height: 66px;
  font-family: 'RobotoSlab-Bold', sans-serif;
}

.cf:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

h2 + ul,
h2 + ol,
h2 + p {
  margin-top: 47px;
}

ul li + li,
ol ul li + li {
  margin-top: 30px;
}
ol li + li,
ul ol li + li {
  margin-top: 30px;
}

ul li,
ol li {
  padding-left: 50px;
  position: relative;
}
ul li,
ol ul li,
ol li,
ul ol li {
  list-style-position: outside;
  list-style-type: none;
}
ol {
  counter-reset: ol-li;
}
ol ol {
  counter-reset: ol-ol-li;
}

ol > li:before {
  content: counter(ol-li) '.';
  counter-increment: ol-li;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 36px;
  height: 36px;
  text-align: left;
}
ol ol > li:before {
  content: counter(ol-li) '.' counter(ol-ol-li);
  counter-increment: ol-ol-li;
  left: -20px;
  width: 40px;
}

ul > li:before {
  content: '';
  position: absolute;
  left: 0px;
  background: url(../images/bg_li.png) no-repeat 50% 50%;
  width: 36px;
  height: 36px;
}
ol li ul {
  margin: 25px 0;
}

h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: normal;
}
h3 + form {
  margin-top: 19px;
}

h2 + p,
p + p,
p + div,
p + ol,
p + ul,
ul + div,
ol + div,
ol + p,
ul + p {
  margin-top: 25px;
}

div + ul,
div + ol {
  margin-top: 3px;
}

.vis-m {
  display: none;
}

/*========= main screen =========*/
.main {
  background-color: #d9ecff;

  position: relative;
  /* padding-bottom: 42px; */
}
@media (min-width: 1200px) {
  .main {
    padding-top: 20px;
    padding-bottom: 0;
  }

  /* .main:before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #D9ECFF;
  } */
}

.main__content-img {
  display: none;
}

@media (min-width: 1024px) {
  .main__content-img {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    max-height: 370px;
  }
}

@media (min-width: 1200px) {
  .main__content-img {
    max-height: 440px;
  }
}
@media (min-width: 1440px) {
  .main__content-img {
    max-height: 525px;
  }
}

@media (min-width: 1920px) {
  .main__content-img {
    max-height: 600px;
  }
}

.main__content-img img {
  max-width: 520px;
}

@media (min-width: 1024px) {
  .main__content-img img {
    max-width: 460px;
  }
}
@media (min-width: 1440px) {
  .main__content-img img {
    max-width: 600px;
  }
}

.logo {
  display: inline-block;
  width: 137px;
  height: 50px;
  background: url(../images/logo.png) no-repeat 50% 50%;
  background-size: contain;
}

@media (min-width: 1024px) {
  .logo {
    width: 109px;
    height: 40px;
  }
}

.main:before {
  display: block;
  content: '';
  width: 100%;
  height: 200px;
  position: absolute;
  z-index: 10;
  top: 0px;
  left: 0;
  background: #d9ecff;
}

.main__content {
  margin-top: 10px;
  /*overflow: hidden;*/
}

.main__content img {
  display: block;
  /* margin: 14px 0 14px 0; */
  max-width: 100%;
  height: auto;
}
.main__content p,
.text-h {
  color: #787d82;
  font-size: 18px;
  line-height: 32px;
}
.main .commwidth {
  position: relative;
  z-index: 20;
  overflow: hidden;
  /* padding: 30px 0; */
}
/*.main:before {
    display: block; 
    content: ''; 
    width: 100%; 
    height: 300px; 
    background: #cce5ff; transform: skewY(-175deg);  transform-origin: left;  
    position: absolute; z-index: 10;
    bottom: 0px; 
    left: 0; 
    
}*/
.offer,
.offer_forma {
  display: none;
  color: #787d82;
  font-size: 14px;
  line-height: 22px;
  margin-top: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .offer_forma {
    display: block;
    max-height: none;
    margin-top: 30px;
    padding: 18px 72px;
    border-radius: 22px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.33);
    color: #36404c;
  }
  .calculator {
    margin-top: 40px !important;
  }
}

.text-h {
  margin-top: 12px;
}
/*.box-hidden { max-height: 0px; overflow: hidden; color: #787d82; font-size: 13px; line-height: 22px; transition: all .5s; }*/
/*.text-h:hover .box-hidden { max-height: 200px; }*/

.box-hidden {
  max-height: 0px;
  overflow: hidden;
  color: #787d82;
  font-size: 14px;
  line-height: 22px;
  transition: all 0.5s;
  opacity: 0;
  /* max-width: 250px; */
}
.text-h:hover .box-hidden {
  max-height: 200px; /*height: 50px !important;*/
  opacity: 1;
}

@media (min-width: 1024px) {
  .box-hidden {
    max-height: none; /*height: 50px !important;*/
    /* margin: 0 0 30px 0;*/ /*height: 100px; */
    opacity: 0;
    overflow: hidden;
    color: #787d82;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.5s;
    border: 1px solid #fff;
    border-radius: 22px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.33);
    padding: 16px 32px;
    color: #36404c;
    max-width: 510px;
    position: absolute;
    bottom: 24px;
    left: 20px;
  }
  .text-h:hover .box-hidden {
    opacity: 1; /*height: 100px;*/
  }
}
@media (min-width: 1440px) {
  .box-hidden {
    max-width: 620px;
  }
}

.main_left {
  float: left;
  width: 55%;
}
.main_right {
  float: right;
  width: 45%;
}
@media (min-width: 1024px) {
  .calculator {
    /* margin-top: 32px; */
  }
  .main_right.one_line {
    padding-bottom: 130px;
  }
}
@media (min-width: 1200px) {
  .main_right {
    padding-bottom: 20px;
  }
  .main_right.one_line {
    padding-bottom: 200px;
  }
}
@media (min-width: 1920px) {
  .main_right {
    padding-bottom: 50px;
  }
}
.calculator {
  background: #fff;
  padding: 32px 40px 0;
  border-radius: 15px;
  /*margin-top: 78px;*/
  overflow: hidden;
  position: relative;
}

.free_mark{
position:absolute;
top:-20px;
right:0;
color:#fff;
background-color:rgb(233, 69, 36);
padding:10px 15px;
border-radius:15px 15px 0 0;
}

@media (min-width: 1440px) {
  .calculator {
    margin-top: 0;
    padding: 49px 50px 0 50px;
  }
}
@media (min-width: 1920px) {
  .calculator {
    margin-top: 64px;
  }
}

.calculator .form_row_submit {
  padding-bottom: 30px;
  padding-top: 40px;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

@media (min-width: 1024px) {
  .calculator .form_row_submit {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
@media (min-width: 1440px) {
  .calculator .form_row_submit {
    padding-bottom: 30px;
    padding-top: 40px;
  }
}

.calculator-result {
  background: #f5f5f5;
  padding: 25px 50px 28px 50px;
  margin: 0 -50px 0 -50px;
  font-size: 20px;
  line-height: 22px;
}
.calculator-result p + p {
  margin-top: 15px;
}
.calculator-result p span {
  color: #e6005e;
  font-weight: bold;
}
.calculator-result p div span {
  color: #e6005e;
  font-weight: bold;
}

.sr-slider-info__name {
  margin-bottom: 4px;
}
.sr-slider-info__value {
  width: 100%;
  font-size: 28px;
  line-height: 28px;
  border: 1px solid #dadada;
  border-bottom: 0px;
  padding: 0px 20px;
  background: #f5f5f5;
  border-radius: 10px 10px 0 0;
}
.sr-slider-info__value input[type='text'] {
  display: inline-block;
  vertical-align: middle;
  max-width: 100px;
  background: none;
  border: 0px;
  padding-right: 0px;
  padding-left: 0;
  width: auto;
  padding-block: 10px;
}

@media (min-width: 1440px) {
  .sr-slider-info__value input[type='text'] {
    padding-block: 16px;
  }
}

.sr-slider__inner {
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .sr-slider__inner {
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .sr-slider__inner {
    margin-bottom: 32px;
  }
}

.sr-slider-item.ui-slider {
  height: 4px;
  background-color: #c3c3c3;
  position: relative;
}

.sr-slider-item.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 23px;
  height: 23px;
  cursor: default;
  touch-action: none;
  background-color: #fff;
  border: 8px solid #adbb26;
  box-sizing: border-box;
  border-radius: 50%;
  top: -10px;
  margin-left: -11px;
}
.sr-slider-item.ui-slider .ui-slider-handle:focus,
.sr-slider-item.ui-slider .ui-slider-handle:hover {
  outline: none;
}
.sr-slider-item.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  background-color: #dadd7f;
  top: 0;
  height: 100%;
  left: 0;
}

.form_row.form_row_check label {
  color: #273542;
  font-size: 16px;
  line-height: 35px;
  position: relative;
  padding-left: 50px;
  display: inline-block;
}
.form_row_check label a {
  color: #92ac07;
  text-decoration: underline;
}
.form_row_check input[type='checkbox'] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.form_row_check input[type='checkbox'] + label::before {
  position: absolute;
  left: 0px;
  top: 0px;
  content: '';
  width: 35px;
  height: 35px;
  box-sizing: border-box;
  border: 1px solid #dadada;
  border-radius: 4px;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.form_row_check input[type='checkbox']:checked + label::before {
  background-image: url(../images/bg_check.svg);
}
.sr-slider-info__value .rub {
  display: inline-block;
  vertical-align: middle;
}

/*========= how screen =========*/
.how {
  background: #fff;
  padding-top: 52px;
  padding-bottom: 173px;
  margin-top: 50px;
}
.how .commwidth {
}
.tiles {
  text-align: center;
  padding-top: 96px;
}
.tiles .item {
  display: inline-block;
  vertical-align: top;
  width: 32%;
  font-size: 24px;
  line-height: 32px;
  font-family: 'RobotoSlab-Bold', sans-serif;
  position: relative;
}
.tiles .item .icon {
  display: block;
  margin: 0 auto 5px auto;
}
.how .tiles .item .icon {
  margin-bottom: 22px;
}
.how .btn {
  margin-top: 89px;
}
.how .tiles .item:after {
  content: '';
  position: absolute;
  top: 36px;
  right: 0;
  margin-right: -31px;
  background: url(../images/arrow.png) no-repeat 50% 50%;
  width: 62px;
  height: 30px;
}
.how .tiles .item:last-child:after {
  display: none;
}

/*========= why screen =========*/
.why {
  background: #2a3845;
  background: linear-gradient(to right, #1b2936, #2b3946);
  transform: skewY(4.7deg);
  padding-top: 22px;
  padding-bottom: 171px;
}

.why .commwidth {
  transform: skewY(-4.7deg);
}
.why .btn {
  margin-top: 60px;
}
.why .tiles .item {
  color: #adbb26;
}
.why .tiles .item p {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-family: 'Roboto-Bold', sans-serif;
  margin-top: 10px;
}
.why .tiles .item .icon {
  margin-bottom: 30px;
}

.why_ligth {
  background: #fff;
  padding-top: 97px;
  padding-bottom: 150px;
  transform: skewY(4.7deg);
}
.why_ligth .commwidth {
  transform: skewY(-4.7deg);
}
.why_ligth h2 {
  color: #acba25;
}

/*========= why screen =========*/
.progress {
  background: #919701;
  background: linear-gradient(to right, #919701, #b6bc12);
  transform: skewY(4.7deg);
  padding-top: 95px;
  padding-bottom: 158px;
}

.progress .commwidth {
  transform: skewY(-4.7deg);
}
.progress h2 {
  max-width: 900px;
  color: #fff;
  line-height: 80px;
}
.progress h2 .title_dark {
  color: #1a2334;
}

.section-blocks {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.progress .section-block {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  max-width: 250px;
  text-align: left;
}
.progress .section-block__title {
  margin-bottom: 0;
  color: #1d2633;
  font-family: 'RobotoSlab-Bold', sans-serif;
  font-size: 68px;
}
.progress .section-block__text {
  color: #ffffff;
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 24px;
  line-height: 32px;
  margin-top: 28px;
}

/*========= why screen =========*/
.reviews {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 67px;
}
.reviews h2 {
  font-size: 71px;
  line-height: 78px;
}
.swiper-reviews {
  padding: 0 50px;
  margin-top: 63px;
}

.reviews-item .icon {
  display: block;
  margin: 0 0 15px 0;
  border-radius: 50%;
}
.reviews-item .text {
  font-size: 20px;
  line-height: 28px;
  font-style: italic;
}
.reviews-item .author {
  color: #b6bc12;
  font-size: 24px;
  margin-top: 17px;
}
.reviews-item .author span {
  font-size: 20px;
  display: block;
  margin-top: -5px;
}

.reviews .btn {
  display: block;
  width: 425px;
  margin: 58px auto 0 auto;
}
.reviews .btn:hover {
  background: #adbb26;
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0;
  background: url(../images/arrow_right.svg) no-repeat 0 50%;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0;
  background: url(../images/arrow_left.svg) no-repeat 0 50%;
}

/*========= sr-inter screen =========*/
.sr-inter {
  background: #fff;
  padding-top: 5px;
  padding-bottom: 20px;
}
.sr-inter__title {
  display: block;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 17px;
  text-align: center;
}
.sr-inter__inner {
  text-align: center;
}
.sr-inter__a {
  font-size: 13px;
  line-height: 25px;
  display: inline-block;
  color: #fff;
  background-color: #2b3946;
  text-decoration: none;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.sr-inter__a:focus,
.sr-inter__a:hover {
  color: #fff;
  background-color: #e6005e;
}

/*========= footer =========*/
.footer {
  background: #c3d34c;
  color: #2b3946;
  padding-top: 50px;
  padding-bottom: 50px;
}

.foot1,
.foot2 {
  display: inline-block;
  vertical-align: top;
}
.foot1 {
  width: 33%;
}
.foot2 {
  width: 66%;
}

.footer-logo {
  margin-bottom: 40px;
}
.footer-info {
  font-size: 14px;
  line-height: 18px;
}
.footer-info p + p {
  margin-top: 15px;
}

.foot3 {
  font-size: 14px;
  line-height: 18px;
  margin-top: 12px;
}
.foot3 a {
  color: #2b3946;
  text-decoration: underline;
}

.footer-menu {
  display: inline-block;
  vertical-align: top;
  width: 32%;
}
.footer-menu li {
  font-size: 14px;
  line-height: 18px;
  padding: 0px;
}
.footer-menu li:before {
  display: none;
}
.footer-menu li + li {
  margin-top: 4px;
}
.footer-menu li a {
  color: #2b3946;
  text-decoration: underline;
}

/*========= modal =========*/
.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  background: rgba(43, 57, 70, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.1s all;
}

.modal-box {
  box-sizing: border-box;
  padding: 50px 48px 25px 48px;
  width: 530px;
  min-height: 380px;
  border-radius: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -190px 0 0 -265px;
  background: #fff;
  z-index: 9999;
}
.modal {
  opacity: 0;
  visibility: hidden;
  transition: 0.1s all;
}

.modal.active,
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.vishidden {
  overflow: hidden;
}
.modal-box .close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 15px;
  right: 15px;
  cursor: pointer;
  background: url(../images/close.svg) 50% 50% no-repeat;
}

.modal h3 {
  color: #213143;
  font-size: 41px;
  line-height: 41px;
  text-align: center;
}
.modal p {
  color: #213143;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  margin-top: 20px;
}
.modal h3 + p {
  margin-top: 20px;
}
.modal form {
  margin-top: 22px;
}
.modal form + p {
  margin-top: 25px;
}
.modal p + p {
  margin-top: 1px;
}
.modal .form_row {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
  width: 210px;
}
.modal .form_row_submit {
  display: inline-block;
  vertical-align: top;
  width: 210px;
  margin-top: 21px;
}
.modal .form_row label {
  height: 16px;
  overflow: hidden;
}
.modal .form_row_submit input[type='submit'] {
  font-size: 20px;
  width: 100%;
  background: #e5005d;
  color: #fff;
  padding: 0 10px;
  border-radius: 10px;
}
.modal .form_row_submit input[type='submit']:disabled {
  cursor: default;
  background-color: #9c9c9c;
}

.modal .light {
  color: #9da3a8;
}
.modal .light a {
  color: #9da3a8;
  border-bottom: 1px dotted #9da3a8;
}
.modal input[type='number'],
.modal input[type='text'] {
  text-align: center;
}
div.error {
  color: red;
  font-size: 16px;
  line-height: 16px;
  margin-top: 4px;
}

/*========= forms =========*/
.req {
  color: #f80707;
}
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='number'],
input[type='date'],
input[type='file'],
input[type='password'],
textarea,
select {
  font-family: 'Roboto-Regular';
  width: 100%;
  font-size: 28px;
  line-height: 28px;
  border: 1px solid #dadada;
  padding: 16px 20px;
  background: #f5f5f5;
  outline: none;
  vertical-align: top;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-sizing: border-box;
  box-shadow: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}

.button,
input[type='submit'],
input[type='button'] {
  font-size: 22px;
  height: 68px;
  line-height: 68px;
  font-family: 'RobotoSlab-Bold';
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-decoration: none;
  background: #e6005e;
  color: #fff;
  padding: 0px 20px;
  text-align: center;
  border-radius: 34px;
  vertical-align: middle;
  border: 0px;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#submit_button {
  transition: 0.3s;
}
#submit_button:hover {
  background: #c3004f;
}
#gos_button {
  line-height: 25px;
  background: #b7bc12;
  color: #fff;
  transition: 0.4s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 1180px) and (min-width: 977px) {
  #gos_button {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 385px) {
  #gos_button {
    /*font-size: 14px;*/
    line-height: 20px;
  }
}

#gos_button:hover {
  /*border: 3px solid #1414d8;*/
  background: #a9ae11;
  /*color: #1414d8;*/
}

#gos_button svg path:first-child {
  fill: #ee3f58;
}

#gos_button svg path:last-child {
  fill: #0065b1;
}
#gos_button span {
  font-size: 0.9em;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 600px) {
  #gos_button span {
    font-size: 0.8em;
  }
}

#gos_button svg {
  margin-top: 7px;
  width: 100px;
}

@media (max-width: 1180px) and (min-width: 977px) {
  #gos_button svg {
    margin-top: 5px;
    width: 75px;
  }
}

@media (max-width: 767px) {
  #gos_button svg {
    margin-top: 5px;
    width: 80px;
  }
}

@media (max-width: 385px) {
  #gos_button svg {
    margin-top: 4px;
    width: 75px;
  }
}

#gos_button span svg {
}
#gos_button svg path {
  transition: 0.4s;
}

.form_row label,
.sr-slider-info__name {
  color: #787d82;
  font-size: 16px;
  line-height: 16px;
}

.form_row dt {
  font-size: 14px;
  line-height: 14px;
}
.form_row dt + dd {
  margin-top: 5px;
}
.form_row + .form_row {
  margin-top: 28px;
}

.comtext {
  color: #686868;
  font-size: 14px;
  line-height: 25px;
  margin-top: 11px;
}
.form_row_submit {
  margin-top: 2px;
}
.form_row_submit dt {
  color: #686868;
  font-size: 14px;
  line-height: 25px;
}
.form_row_submit dt + dd {
  margin-top: 25px;
}

input::-webkit-input-placeholder {
  font-style: normal;
  text-overflow: ellipsis;
  color: #92a0ac;
}
input::-moz-placeholder {
  font-style: normal;
  text-overflow: ellipsis;
  opacity: 1;
  color: #92a0ac;
}
input:-ms-input-placeholder {
  font-style: normal;
  text-overflow: ellipsis;
  color: #92a0ac;
}

textarea::-webkit-input-placeholder {
  font-style: normal;
  text-overflow: ellipsis;
  color: #92a0ac;
}
textarea::-moz-placeholder {
  font-style: normal;
  text-overflow: ellipsis;
  opacity: 1;
  color: #92a0ac;
}
textarea:-ms-input-placeholder {
  font-style: normal;
  text-overflow: ellipsis;
  color: #92a0ac;
}

@media (max-width: 1200px) {
  body {
    min-width: 100%;
  }
  .commwidth {
    padding: 24px 30px;
  }
  .reviews h2,
  h2 {
    font-size: 58px;
  }

  .sr-inter__inner {
    text-align: left;
  }
}
@media (max-width: 1199px) {
  .progress .section-block {
    margin-bottom: 20px;
    width: 50%;
    max-width: none;
    text-align: center;
  }
}

@media (max-width: 976px) {
  .main_left,
  .main_right {
    float: none;
    width: 100%;
  }

  .text-h:hover .box-hidden {
    display: none;
  }
  .text-h {
    /* text-align: center; */
  }
}

@media (max-width: 767px) {
  body {
    font-size: 18px;
    line-height: 26px;
  }
  .offer,
  .offer_forma {
    display: block;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.5s;
  }
  .offer.active,
  .offer_forma.active {
    max-height: 200px;
    padding: 0 0 20px 0;
  }
  .commwidth {
    padding: 0 15px;
  }
  .footer_commwidth {
    padding: 0 15px;
  }

  h2 + ul,
  h2 + ol,
  h2 + p {
    margin-top: 28px;
  }
  ul > li:before {
    background-size: cover;
    width: 25px;
    height: 25px;
  }
  ul li,
  ol li {
    padding-left: 40px;
  }

  .vis-m {
    display: inline;
  }

  .main {
    padding-bottom: 30px;
  }
  .main__content img {
    display: none;
  }
  .main__content p {
    text-align: center;
  }

  .main_right {
    /* margin-top: -65px; */
    margin-top: 16px;
    position: relative;
  }
  .form_row label,
  .sr-slider-info__name {
    font-size: 14px;
  }
  .calculator-result {
    font-size: 18px;
  }
  .calculator {
    padding: 20px 20px 0 20px;
  }
  .form_row.form_row_check label {
    line-height: 18px;
  }
  .calculator .form_row_submit {
    padding-bottom: 21px;
    padding-top: 24px;
  }
  .calculator-result {
    margin-left: -20px;
    margin-right: -20px;
    padding: 15px 20px 14px 20px;
  }

  .logo {
    display: block;
    margin: 0 auto;
    width: 117px;
    height: 41px;
    background-size: cover;
  }
  h1 {
    font-size: 30px;
    line-height: 48px;
    text-align: center;
  }
  h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .btn {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 48px;
    font-size: 18px;
    padding: 0 10px;
  }

  .main__content {
    padding-top: 18px;
  }

  .main__content img {
    margin: 3px auto 14px auto;
    max-width: 90%;
    height: auto;
  }

  .how {
    padding: 36px 0 52px 0;
    margin-top: 0;
  }
  .how .tiles {
    padding-top: 25px;
    text-align: left;
  }
  .tiles .item {
    display: table;
    width: 100%;
    margin-bottom: 85px;
    font-size: 20px;
    line-height: 24px;
  }
  .tiles .item:last-child {
    margin-bottom: 0px;
  }
  .how .tiles .item:after {
    right: 50%;
    top: 105px;
    transform: rotate(90deg);
    right: auto;
    left: 6px;
  }
  .how .tiles .item .icon {
    display: table-cell;
    margin: 0 14px 0 0;
    vertical-align: middle;
    width: 77px;
    min-width: 77px;
    height: 77px;
  }
  .how .tiles .item span {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
  }
  .how .btn {
    margin-top: 33px;
  }

  .why {
    padding: 26px 0 50px 0;
  }
  .why .tiles {
    padding-top: 22px;
  }
  .why .tiles .item .icon {
    width: 98px;
    height: 98px;
    margin-bottom: 18px;
  }
  .why .tiles .item {
    font-size: 24px;
  }
  .why .tiles .item p {
    margin-top: 10px;
  }
  .why .tiles .item {
    margin-bottom: 45px;
  }
  .why .item:last-child {
    margin-bottom: 0px;
  }
  .why .btn {
    margin-top: 49px;
  }

  .why_ligth {
    padding: 41px 0 51px 0;
  }

  .progress {
    padding: 44px 0 7px 0;
  }
  .progress h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .progress .section-block {
    width: 100%;
    text-align: left;
    margin-bottom: 39px;
  }
  .section-blocks {
    margin-top: 30px;
  }
  .progress .section-block__title {
    font-size: 30px;
    line-height: 38px;
  }
  .progress .section-block__text {
    font-size: 18px;
    line-height: 26px;
    margin-top: 2px;
  }

  .reviews {
    padding: 42px 0 23px 0;
  }
  .reviews h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .swiper-reviews {
    margin-top: 25px;
    padding: 0 30px;
  }

  .reviews .btn {
    width: 100%;
  }
  .reviews-item .text {
    font-size: 18px;
    line-height: 26px;
  }
  .reviews-item .author {
    font-size: 20px;
    margin-top: 14px;
  }
  .reviews-item .author span {
    font-size: 18px;
    margin-top: -2px;
  }
  .reviews .btn {
    margin-top: 33px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    background-size: 50% auto;
    top: 38%;
  }

  .sr-inter {
    padding: 20px 0 16px 0;
  }
  .sr-inter__a {
    margin-right: 1px;
    margin-bottom: 6px;
  }
  .sr-inter__title {
    margin-bottom: 29px;
  }

  .footer {
    padding-top: 33px;
  }
  .footer-logo {
    margin-bottom: 44px;
  }
  .foot1,
  .foot2 {
    display: block;
    width: 100%;
  }
  .foot1 {
    margin-bottom: 33px;
  }
  .footer-menu {
    display: block;
    width: 100%;
  }
  .foot3 {
    margin-top: 23px;
  }
  .footer-menu li + li {
    margin-top: 5px;
  }

  .button,
  input[type='submit'],
  input[type='button'] {
    height: 58px;
    line-height: 58px;
    font-size: 18px;
  }

  input[type='text'],
  input[type='tel'],
  input[type='email'],
  input[type='number'],
  input[type='date'],
  input[type='file'],
  input[type='password'],
  textarea,
  select {
    padding: 9px 20px 10px 20px;
    height: 50px;
  }

  .modal .form_row_submit {
    margin-top: 20px;
  }
}

@media (max-width: 530px) {
  .modal-box {
    width: auto;
    margin-left: 0px;
    margin-top: -200px;
    padding: 50px 30px 25px 30px;
    min-height: 400px;
    left: 15px;
    right: 15px;
  }
  .modal h3 {
    font-size: 30px;
    line-height: 36px;
    font-family: 'RobotoSlab-Bold';
  }
  .modal p {
    font-size: 18px;
    line-height: 26px;
  }
  .modal .form_row,
  .modal .form_row_submit {
    display: block;
    width: 100%;
  }
  .form_row.form_row_sms label {
    font-size: 16px;
  }
  .modal h3 + p {
    margin-top: 8px;
  }
  .modal form {
    margin: 25px 15px 0 15px;
  }
  .modal .form_row_submit {
    margin-top: 18px;
  }
  .modal form + p {
    margin-top: 22px;
  }
  .modal-box .close {
    top: 20px;
    right: 18px;
  }
}

@media (max-width: 600px) {
  .logo {
    display: none;
  }
  .main {
    padding-top: 0px;
  }
  .main__content h1 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.2px;
    white-space: nowrap;
  }
  .main__content p,
  .text-h {
    font-size: 15px;
    line-height: 24px;
  }

  .main__content {
    padding-top: 0px;
  }
  .calculator {
    padding: 16px 16px 0 16px;
  }
  .sr-slider-info__value input[type='text'] {
    padding: 5px 0px 6px 0px;
    font-size: 22px;
  }
  .form_row_check input[type='checkbox']:checked + label::before {
    background-size: 80% 80%;
  }
  .calculator input[type='tel'] {
    padding-top: 5px;
    padding-bottom: 6px;
    font-size: 22px;
  }
  .sr-slider__inner {
    margin-bottom: 18px;
  }
  .calculator .form_row_submit {
    padding-bottom: 18px;
    padding-top: 10px;
  }
  .calculator input[type='submit'] {
    height: 48px;
    line-height: 48px;
    font-size: 0.8em;
  }

  .form_row_check input[type='checkbox'] + label::before {
    width: 20px;
    height: 20px;
  }
  .form_row.form_row_check label {
    font-size: 14px;
    line-height: 16px;
    padding-left: 35px;
  }
  .form_row + .form_row {
    margin-top: 16px;
  }

  .modal h3 {
    font-size: 22px;
    line-height: 22px;
    white-space: nowrap;
  }

  .modal-box {
    min-height: 460px;
    margin-top: -230px;
    padding-top: 35px;
  }
  .modal-box .close {
    top: 15px;
  }
}

@media (max-width: 320px) {
  body {
    min-width: 320px;
  }
  #gos_button span {
    font-size: 12px;
  }
}

span#set-summ-name {
  color: #0a1423;
  font-weight: 200;
}

.g_srok {
  color: #36404c;
}

@media (min-width: 768px) {
  .main_right .text-h2 {
    display: none;
  }
}
.form_count_order{
margin-bottom:50px;
}
.form__srok{
display:flex;
align-items:center;
justify-content: space-between;
}
.sr_srok{
font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color:#787d82;
  //font-family: "RobotoSlab";
}

.sr_dney{
color:#787d82;
background-color:rgba(195, 195, 195,0.2);
padding:5px 15px 5px 40px;
border-radius:10px;
font-size: 24px; 
}

@media (max-width: 976px) {
    .free_mark.text-h {
        display: block; 
    }
}
@media (max-width: 370px) {
    .free_mark.text-h {
        font-size:13px;
	padding:7px; 
    }
}