/* Inter-Regular */
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/inter-semibold.ttf") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
:root{
  --body-bg: #ffffff;
  --orange: #F65D08;
  --orange-light: #FFF9F4;
  --grey: #666666;
  --dark: #323232;
}
html {
  font-family: "Inter", sans-serif;
  line-height: 1.20;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  color: #000000;
  
}
body {
  margin: 0;
  background-color: var(--body-bg);
}

h1{
  font-size: clamp(20px, 3.5vw, 40px);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}
h1 .span{
  font-size: clamp(25px, 5.5vw, 60px);
}

h2, ._h2{
  font-weight: 700;
  font-size: clamp(25px, 4vw, 40px);
  padding-bottom: 25px;
  position: relative;
  text-transform: uppercase;
}

.pb0{
  padding-bottom: 0px;
}

a{
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
a:hover{
  text-decoration: underline;
  color: var(--orange)
}

[data-show-modal] > * {
 pointer-events: none;
}

/* colors */
._c-white{color: #fff;}
._c-black{color: #000;}
._c-orange{color: var(--orange)}
._c-grey{color: var(--grey)}

/* bg */
._bg-white{background-color: #fff}
._bg-orange{background-color: var(--orange)}
._bg-orange-light{background-color: var(--orange-light)}
._bg-grey{background-color: var(--grey)}

/* font sizes */
._fz-24{font-size: 24px!important;}
._fz-20{font-size: 20px!important;}
._fz-16{font-size: 16px!important;}
._fz-15{font-size: 15px!important;}
._fz-14{font-size: 14px!important;}
._fz-12{font-size: 12px!important;}
._fz-10{font-size: 10px!important;}

/* info  */
._info-wrap{
  display: flex;
  width: 100%;
  background: var(--orange-light);
  border-radius: 5px;
  margin-top: 60px;
  gap: 50px;
  align-items: center;
  padding: 16px 26px 16px 39px;
}
._info-wrap ._btn-primary{
  margin-left: auto;
}
._info-wrap__inner{
  display: flex;
  gap: 49px;
  font-size: 20px;
  align-items: center;
}
._info-wrap__icon{
  flex-shrink: 0;
}
@media (max-width: 767px) {
  ._info-wrap{
    padding: 16px;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  ._info-wrap__inner{
    gap: 30px;
  }
  ._info-wrap p{
    font-size: 14px;
  }
  ._info-wrap ._btn-primary{
    width: 100%;
  }
}

/* flex center gap */
._f-c{
  display: flex;
  align-items: center;
}
._f-c-g{
  display: flex;
  align-items: center;
  gap: 7px;
}

/* flex shrink 0  */
._shrink-0{
  flex-shrink: 0;
}

/* margins padding */
._mt_0{
  margin-top: 0!important;
}
._mb-0{
  margin-bottom: 0!important;
}
._pb-0{
  padding-bottom: 0!important;
}
@media(max-width: 767px) {
  ._mb-mob-0{
    margin-bottom: 0!important;
  }
}

/* buttons */
._btn-primary{
  display: inline-block;
  text-align: center;
  outline: none;
  border: none;
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
  background-color: var(--orange);
  border-radius: 5px;
  border: solid 2px var(--orange);
  padding: 9px 30px;
  color: #fff;
}
._btn-primary:hover{
  text-decoration: none;
  background-color: #fff;
  color: var(--orange)

}
._btn-secondary{
  display: inline-block;
  text-align: center;
  outline: none;
  border: none;
  transition: 0.3s;
  font-weight: 700;
  font-size: 24px;
  background-color: var(--orange);
  border-radius: 5px;
  border: solid 2px var(--orange);
  padding: 24px 23px;
  color: #fff;
}
._btn-secondary:hover{
  text-decoration: none;
  color: var(--orange);
  background: transparent;
}

/* title  */
._sc-title{
  margin-bottom: 30px;
}
._sc-title._line h1:before,
._sc-title._line h2:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 64px;
  height: 3px;
  background-color: var(--orange);
}
._sc-title p{
  margin-top: 29px;
}

/* info  */
._info-inner{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* text aligns */
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-left {
    text-align: left !important;
}

/* wrapper  */
#wrapper{
  padding-top: 27px;
}


@media (max-width: 991px) {
  #wrapper {
    padding-top: 15px;
  }
  ._fz-20{
    font-size: 17px;
  }
  ._sc-title p {
      margin-top: 20px;
  }
  ._btn-secondary{
    font-size: 15px;
    padding: 15px 15px;
  }
}

/* header */
.header__wrap{
  padding: 8px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 5px;
}
.header__logo-wrap{
  width: 100%;
  max-width: 135px;
  gap: 6px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.header__logo-txt{
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header__logo{
  flex-shrink: 0;
}
.header__nav{
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav-list{
  max-width: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.header__nav-list a{
  text-decoration: none;
  position: relative;
}
.header__nav-list a:hover{
  text-decoration: none;
}
.header__nav-list a:before{
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  background-color: var(--orange);
  height: 2px;
  width: 0;
  transition: 0.3s;
}
.header__nav-list a:hover:before{
  width: 100%;
}
.header__nav-item.active a:before{
  width: 100%;
}
.header__nav-details{
  display: flex;
  gap: 24px;
  align-items: center;
}
.header__nav-details-call{
  padding: 5px 20px 5px 11px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__nav-details-call img{
  margin-right: 13px;
}
.header__burger {
	 width: 35px;
	 height: 35px;
	 border-radius: 4px;
   z-index: 10;
	 position: relative;
   margin-left: auto;
}
.header__burger > * {
  pointer-events: none;
}
.header__burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  margin-top: 0px;
}
.header__burger span, .header__burger span::before, .header__burger span::after {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--orange);
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.header__burger span::before, .header__burger span::after {
  position: absolute;
  content: "";
}
.header__burger span::before {
  top: -8px;
}
.header__burger span::after {
  top: 8px;
}
.header__burger.clicked span {
  background-color: transparent;
}
.header__burger.clicked span::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.header__burger.clicked span::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}
.header__burger:hover {
  cursor: pointer;
}
.header__nav-close{
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
}
@media (max-width: 1199px) {
  .header__wrap{
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .header__logo-wrap {
    max-width: 100%;
    width: auto;
    margin-right: auto;
    margin-left: 0;
    height: 100%;
  }
  .header__logo{
    height: 100%;
  }
  .header__logo img{
    max-height: 100%;
  }
  .header__nav {
    background-color: #fff;
    position: fixed;
    padding: 85px 35px 50px 35px;
    z-index: 9;
    top: 0;
    left: 0;
    height: 100%;
    max-width: 515px;
    width: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    
  }
  .header__nav-list{
    display: flex;
    flex-direction: column;
    gap: 47px;
  }
  .header__nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@media (max-width: 767px) {
  .header__wrap{
    padding: 8px 8px;
  }
  .header__nav-details{
    margin-left: auto;
  }
  .header__nav-details-call{
    padding: 5px 10px;
  }
  .header__nav-details-call span{
    display: none;
  }
  .header__nav-details-call img{
    margin-right: 0;
  }
  .header__burger{
    margin-left: 0;
  }
}

/* FORM */
._form{
  position: relative;
}
._form-group {
   width: 100%;
   position: relative;
}
._form-group.req_error .req__text {
    display: block;
}
._form-group.req_error ._form-group__input,
._form-group.req_error textarea,
._form-group.error_error ._form-group__input,
._form-group.error_error textarea {
    border-color: rgba(195, 44, 3, 0.901);
}
._form-group.error_error .error__text {
    display: block;
}
._form-group .req__text, ._form-group .error__text {
  display: none;
  margin-top: 5px;
  font-size: 12px;
  color: rgb(255 17 17);
  position: absolute;
  bottom: -10px;
  right: 13px;
  background: var(--dark-blue);
  padding: 5px;
}


/* faq__accordion */
.faq__accordion{
    margin-top: 48px;
}
.faq__accordion-item{
  transition: all 0.25s ease;
  overflow: hidden;
  border-bottom: solid 1px var(--grey);
}
.faq__accordion-item:last-of-type{
    border-bottom: none;
}
.faq__accordion-item:first-of-type .faq__accordion-item__head{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.faq__accordion-item:last-of-type .faq__accordion-item__head{
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.faq__accordion-item__head{
  font-weight: 700;
  display: flex;
  align-items: center;
  min-height: 91px;
  padding: 26px 89px 26px 48px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}
.faq__accordion-item__head:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    pointer-events: none;
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="-8.97698e-08" y1="11.6602" x2="24" y2="11.6602" stroke="black" stroke-width="2"/><line x1="12" y1="23.373" x2="12" y2="0.000532193" stroke="black" stroke-width="2"/></svg>');
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center center;
}
.faq__accordion-item.open .faq__accordion-item__head:before{
    background: url('data:image/svg+xml,<svg width="24" height="2" viewBox="0 0 24 2" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="-8.97698e-08" y1="1" x2="24" y2="0.999998" stroke="black" stroke-width="2"/></svg>');
    background-size: 24px 2px;
    background-repeat: no-repeat;
    background-position: center center;
}
.faq__accordion-item__head span{
    font-weight: 400;
    font-size: 24px;
    color: var(--orange);
    border: solid 1px var(--orange);
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 33px;
    flex-shrink: 0;
}
.faq__accordion-item__wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__accordion-item__content{
  padding: 5px 48px 26px 48px;
  background-color: #fff;
  width: 100%;
}
@media (max-width: 991px) {
    .faq__accordion {
        margin-top: 30px;
    }
    .faq__accordion-item__head{
        padding: 15px 50px 15px 20px;
        min-height: auto;
    }
    .faq__accordion-item__head span {
        font-size: 18px;
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }
    .faq__accordion-item__head:before{
        width: 33px; 
        height: 33px;
        background-size: 19px 19px;
    }
    .faq__accordion-item__content {
    padding: 5px 20px 26px 20px;

    }
}

/* videofeedbakcs  */
.e-banners{
  padding-top: clamp(30px, 4vw, 65px);
  padding-bottom: clamp(30px, 4vw, 65px);
}
.e-banners__wrap{
  display: flex;
  width: 100%;
  gap: 23px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.e-banners__item{
  width: calc(33% - 16.6px);
  border-radius: 5px;
  overflow: hidden;
}
.e-banners__item video{
  border-radius: 20px;
  width: 100%;
}
.e-banners ._info-wrap{
  justify-content: space-between;
}
.e-banners ._info-wrap ._btn-primary{
  margin-left: 0;
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
}
.e-banners ._info-wrap ._btn-primary:before{
  content: "";
    position: relative;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 13px solid #ffffff;
    display: flex;
    margin-left: -10px;
    transition: 0.3s;
    border-radius: 2px;  
}
.e-banners ._info-wrap ._btn-primary:hover:before{
  border-left-color: var(--orange)
}
.e-banners__socials{
  display: flex;
  align-items: center;
  gap: 23px;
}
.e-banners__socials img{
  max-height: 54px;
}
@media (max-width: 991px) {
  .e-banners__wrap{
    margin-bottom: 20px;
  }
  .e-banners__item {
    width: calc(50% - 16.6px);
  }
}
@media (max-width: 576px) {
  .e-banners__wrap{
    gap: 10px;
  }
  .e-banners__item {
    width: calc(50% - 5px);
  }
}

/* priceForm__wrap  */
.priceForm{
  padding-top: 25px;
  padding-bottom: clamp(30px, 4vw, 55px);

}
.priceForm__wrap{
  display: inline-block;
  width: 100%;
  background-color: var(--dark);
  padding: 65px 68px;
  border-radius: 15px;
}
.priceForm__item{
  max-width: 605px;
  width: 100%;
  margin: auto;
}
.priceForm__item-input-wrap{
  width: 100%;
  position: relative;
  margin-bottom: 24px;
}
.priceForm__item-icon{
  position: absolute;
  left: 21px;
  pointer-events: none;
  top: 0;
  bottom: 0;
  margin: auto;
}
.priceForm__item-input,
.priceForm__file{
  width: 100%;
  height: 77px;
  background: none;
  border: solid 1px var(--grey);
  border-radius: 5px;
  padding-left: 88px;
  font-size: 20px;
  color: #fff;
}
.priceForm__file:hover .priceForm__file-plus{
  background-color: rgba(255, 255, 255, 0.905);
}
.priceForm__file{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}
.priceForm__file._has-file .priceForm__file-holder{
  display: none;
}
.priceForm__file .priceForm__item-input{
    display: none;
}
.priceForm__file-plus{
    margin-left: auto;
    margin-right: 13px;
    width: 57px;
    height: 57px;
    border: 1px dashed var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 47px;
    border-radius: 5px;
    font-family: auto;
    transition: 0.3s;
}
.priceForm__preview{
    display: flex;
    gap: 8px;
    margin-left: auto;
}
.priceForm__preview img{
  width: 60px;
  height: 60px;
  padding: 5px;
  object-fit: contain;
  border-radius: 5px;
  border: 1px solid var(--grey);
}
.priceForm__submit{
  width: 100%;
}
.priceForm__wrap-bottom{
  margin-top: 55px;
  display: inline-block;
  width: 100%;
  border-top: solid 1px var(--grey);
  padding-top: 17px;
}
.priceForm__social-wrap{
  display: flex;
  width: 100%;
  gap: 20px;
}
.priceForm__social-list{
  display: flex;
  gap: 40px;
  align-items: center;
}
.priceForm__social-list li{
  position: relative;
}
.priceForm__social-list li:before{
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0.5px;
  height: 100%;
  background-color: var(--grey);
}
.priceForm__social-list li:last-of-type:before{
  display: none;
}
.priceForm__social-list a{
  display: flex;
  gap: 14px;
  align-items: center;
}
.priceForm__info{
  margin-top: 27px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: left;
}
@media (max-width: 1199px) {
  .priceForm__social-wrap{
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .priceForm__social-list{
    gap: 27px;
  }
  .priceForm__social-list a img{
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .priceForm__wrap{
    padding: 35px 20px;
  }
  .priceForm__item-input, .priceForm__file{
    height: 60px;
    padding-left: 57px;
    font-size: 15px;
  }
  .priceForm__item-icon{
    left: 14px;
    max-width: 25px;
  }
  .priceForm__file-plus{
    width: 44px;
    height: 44px;
    font-size: 40px;
    flex-shrink: 0;
  }
  .priceForm__item-input-wrap{
    margin-bottom: 13px;
  }
  .priceForm__social-list{
    flex-wrap: wrap;
    gap: 15px;
  }
  .priceForm__social-list li:before{
    display: none;
  }
  .priceForm__social-list li{
    width: 100%;
    border-bottom: solid 1px var(--grey);
    padding-bottom: 15px;
  }
  .priceForm__social-list li:last-of-type{
    border-bottom: none;
  }
  .priceForm__wrap-bottom{
    margin-top: 25px;
  }
}

/* calculator  */
.calculator{
  padding-top: clamp(30px, 4vw, 55px);
  padding-bottom: clamp(30px, 4vw, 55px);
}
.calculator__tip{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 10px;
    padding-bottom: 13px;
}
.calculator__tip-item{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}
.calculator__tip span{
    width: 18px;
    height: 18px;
    border: solid 1px var(--orange);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculator__wrap{
    padding: 32px 23px;
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
}
.calculator__details{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 32px;
    border-bottom: solid 1px var(--grey);
    margin-bottom: 30px;
    gap: 74px;
}
.calculator__details-item{
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    width: calc(100% / 4 - 56px);
}
.calculator__details-item:before{
    content: "";
    position: absolute;
    top: 0;
    right: -37px;
    width: 1px;
    height: 100%;
    background-color: var(--grey);
}
.calculator__details-item:last-of-type:before{
    display: none;
}
.calculator__details-item-val{
    width: 35px;
    height: 35px;
    font-size: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-light);
    border-radius: 5px;
}
.calculator__details-item-content p:first-of-type{
    margin-bottom: 4px;
    font-size: 15px;
}
.calculator__fields{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}
.calculator__field{
    border: solid 1px var(--grey);
    border-radius: 5px;
    padding: 13px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 88px;
    width: calc(100% / 5 - 16px);
}
.calculator__field-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}
.calculator__field-head span{
    padding: 3px 10px;
    min-width: 46px;
    border-radius: 5px;
    margin-right: -10px;
    text-align: center;
}
.calculator__field input{
    border:none;
    width: 100%;
    height: 24px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 14px;
    outline-color: var(--orange);
    -webkit-appearance: none;
}
.calculator__result{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
    margin-top: 22px;
}
.calculator__result-item{
    font-size: 24px;
}
.calculator__result-item b{
    font-size: 40px;
}
@media (max-width: 1199px) {
    .calculator__details{
        gap: 20px;
    }
    .calculator__details-item {
        width: calc(100% / 4 - 15px);
    }
    .calculator__details-item:before{
        right: -10px;
    }
    .calculator__field{
        width: calc(100% / 4 - 16px);
    }
    .calculator__result-item {
        font-size: 20px;
    }
    .calculator__result-item b {
        font-size: 34px;
    }
}
@media (max-width: 991px) {
    .calculator__details-item {
        width: calc(100% / 2 - 10px);
    }
    .calculator__details-item:before{
        display: none;
    }
    .calculator__field {
        width: calc(100% / 2 - 10px);
    }
    .calculator__result-item {
        font-size: 16px;
    }
    .calculator__result-item b {
        font-size: 25px;
    }
}
@media (max-width: 576px) {
    .calculator__wrap {
        padding: 20px 15px;
    }
    .calculator__details {
        gap: 10px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .calculator__details-item{
        gap: 10px;
        width: calc(100% / 2 - 5px);

    }
    .calculator__details-item-content p:first-of-type{
        font-size: 12px;
    }
    .calculator__details-item-content p{
        font-size: 15px;
    }
    .calculator__fields{
        gap: 10px;
    }
    .calculator__field {
        height: auto;
        width: 100%;
    }
    .calculator__result{
        gap: 15px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .calculator__result-item b {
        font-size: 23px;
    }
    .calculator__field input{
        height: 34px;
        margin-top: 5px;
    }
}

.calcMark{
  padding-bottom: clamp(30px, 4vw, 55px);
}
.calcMark__form{
    display: inline-block;
    width: 100%;
    padding: 40px 22px 30px 22px;
    background-color: #fff;
    border-radius: 10px;
}
.calcMark__form-wrap{
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
.calcMark__form-select{
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: calc(100% / 2.5 - 15px);
}
.calcMark__form-submit{
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: calc(100% / 4 - 15px);
}
.calcMark__form-submit-btn{
    width: 100%;
} 
.calcMark__form-select-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
    width: 53px;
    height: 53px;
    background-color: var(--orange-light);
    border-radius: 5px;
}
.calcMark__form-select-field{
    width: 100%;
}
.calcMark__form-select-field > span{
    margin-bottom: 3px;
    display: inline-block;
}
.calcMark__form-select-field-wrap{
    height: 38px;
    position: relative;
}
.calcMark__form-select-field-wrap .req__text{
    background-color: #fff;
    bottom: -7px;
    padding: 1px 5px;
}
.calcMark__form-select-field-wrap:before{
    content: "";
    position: absolute;
    top: 0;
    right: 14px;
    pointer-events: none;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 6px;
    background-image: url('data:image/svg+xml,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.365234 0.347656L4.51514 4.77466L8.80404 0.347656" stroke="%23898C91"/></svg>');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.calcMark__form-select select{
    height: 38px;
    padding-left: 14px;
    outline: none;
    padding-right: 24px;
    cursor: pointer;
    color: var(--grey);
    -webkit-appearance: none;
    border-radius: 5px;
    border: solid 1px var(--grey);
    width: 100%;
}
.calcMark__form-info{
    display: flex;
    gap: 21px;
    width: 100%;
    margin-top: 36px;
    align-items: center;
    padding: 13px 15px;
    border-radius: 5px;
}
.calcMark__form-info-icon{
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    border: solid 1px var(--orange);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.calcMark__form-info p{
    max-width: 677px;
}
@media (max-width: 991px) {
    .calcMark__form{
        padding-top: 25px;
    }
    .calcMark__form-wrap{
        flex-wrap: wrap;
    }
    .calcMark__form-select,
    .calcMark__form-submit{
        width: 100%;
    }
    .calcMark__form-info{
        align-items: flex-start;
    }
    .calcMark__form-select-icon{
        width: 45px;
        height: 45px;
    }
    .calcMark__form-select{
        gap: 10px;
    }
}
.modal__calc-info{
    line-height: 170%;
    margin-bottom: 20px;
}
.modal__calc-info ul{
    padding-left: 20px;
    margin: 10px 0;
}
.modal__calc-info ul li{
    position: relative;
    width: 100%;
}
.modal__calc-info ul li:before{
    content: "";
    position: absolute;
    top: 8px;
    left: -8px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: black;
}
.modal__calc-info-img{
    width: 100%;
    border: solid 1px var(--grey);
    border-radius: 10px;
    margin-bottom: 15px;
}

/* modal  */
.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 10px;
  visibility: hidden;
  overflow: auto;
  display: flex;
  align-items: center;
  align-content: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.modal__form-title{
  font-weight: 700;
  font-size: 35px;
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}
.modal .m-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal.active .m-container {
  transform: none;
  opacity: 1;
}
.m-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto;
  overflow: auto;
  width: 100%;
  max-width: 435px;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px;
  position: relative;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px) scale(1.1);
  transition: 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.m-container ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.m-container ::-webkit-scrollbar-track {
  background: #F5F5F5;
}
.m-container ::-webkit-scrollbar-thumb {
  background: #D1D1D1;
}
.m-container ::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3;
}
.m-close {
  position: absolute;
  right: 16px;
  top: 13px;
  width: 24px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
  border-radius: 6px;
  z-index: 3;
}
.m-close:hover {
  opacity: 0.5;
}
.m-close:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: #000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.m-close::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: #000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(135deg);
}
.modal__title{
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 30px;
}
.modal__form ._form-group{
  margin-bottom: 20px;
}
.modal__form ._form-group input{
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border: solid 1px var(--grey);
  font-size: 16px;
  color: black;
  font-weight: 700;
  outline-color: var(--orange);
}
.modal__form ._form-group textarea{
  width: 100%;
  height: 82px;
  border-radius: 5px;
  padding: 10px;
  border: solid 1px var(--grey);
  font-size: 16px;
  color: black;
  resize: none;
  font-weight: 700;
  outline-color: var(--orange);
}
.modal__form ._form-group .holder{
  margin-bottom: 6px!important;
}
.modal__form .req__text, .modal__form .error__text{
  background-color: #fff;
  padding: 1px;
  padding-bottom: 1px;
  bottom: -7px;
}
.modal__form{
  width: 100%;
}
.modal__form-submit{
  width: 100%;
  height: 54px;
  font-size: 19px;
}
.modal__media {
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}
.modal__media a {
  width: calc(100% / 3 - 5px);
  height: 55px;
  border-radius: 5px;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__media-txt{
  width: 100%;
  display: inline-block;
  padding: 10px 0;
}
.modal__media-txt ._btn-primary{
  width: 100%;
  margin-top: 6px;
  padding: 16px 30px;
  margin-bottom: 10px;
}

/* tabs  */
.tabs__nav{
  display: flex;
  justify-content: center;
  width: 100%;
}
.tabs__btn{
  background-color: #fff;
  border: solid 1px var(--orange);
  font-size: 20px;
  padding: 13px 34px;
  font-weight: 700;
  margin-left: -1px;
  margin-right: -1px;
}
.tabs__btn:first-of-type{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tabs__btn:last-of-type{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.tabs__btn.active{
  background-color: var(--orange);
  color: #fff;
}
.tabs__content {
    position: relative;
    padding-top: 42px;
    padding-bottom: 42px;
}
.tabs__pane {
    display: none;
    opacity: 0;
    transition: opacity .3s ease;
}
.tabs__pane.active {
    display: block;
}
.tabs__pane.show {
    opacity: 1;
}
@media (max-width: 1199px){
  .tabs__btn{
    font-size: 14px;
    padding: 14px 25px;
  }
}
@media (max-width: 767px){
  .tabs__nav{
    flex-wrap: wrap;
  }
  .tabs__btn{
    width: 100%;
    border-radius: 0px!important;
  }
}

/* sdek */
.sdek{
    padding-top: clamp(30px, 4vw, 55px);
    padding-bottom: 20px;  
}
.sdek ._info-wrap{
  padding-left: 15px;
}
.sdek ._info-wrap__inner{
  gap: 25px;
}

/* realFeedbacks */
.realFeedbacks{
    padding-top: clamp(30px, 4vw, 55px);
    padding-bottom: clamp(30px, 4vw, 55px);
}
.realFeedbacks__wrap{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    padding-top: 25px;
}
.realFeedbacks__item{
    width: calc(50% - 10px);
    background-color: #FFFFFF;
    min-height: 848px;
    position: relative;
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 24px;
}
.realFeedbacks__item iframe{
    border: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.realFeedbacks__item-contact{
    position: absolute;
    background: #FFFFFF;
    z-index: 1;
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    margin: 30px 10px;
    padding: 24px;
    max-width: 402px;
    width: 100%;
}
.realFeedbacks__item-contact__title{
    text-align: center;
    color: var(--dark);
    font-size: 32px;
    margin-bottom: 32px;
}
.realFeedbacks__item-contact ._btn-primary{
    width: 100%;
}
.realFeedbacks__item-contact ul{
    margin-bottom: 32px;
}
.realFeedbacks__item-contact ul li{
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    width: 100%;
}
.realFeedbacks__item-contact ul li:before{
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--orange);
    border-radius: 50%;
}
.realFeedbacks__item-contact ul a{
    text-decoration: underline;
}
@media (max-width: 1199px) {
  .realFeedbacks__item{
    width: 100%;
    min-height: 625px;
    padding: 10px;
  }
  .realFeedbacks__item-contact{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .realFeedbacks__item-contact__title{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .realFeedbacks__item-contact ul,
  .realFeedbacks__item-contact ._btn-primary{
    font-size: 16px!important;
  }
  .realFeedbacks__item-contact ul{
    margin-bottom: 10px;
  }
  .realFeedbacks__item-contact{
    margin: 0;
    max-width: calc(100% - 48px);
  }
}

/* footer  */
.footer__wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: solid 1px var(--grey);
  padding-top: 43px;
  padding-bottom: 36px;
  color: var(--grey);
  gap: 20px;
}
.footer__wrap a{
  gap: 21px;
}
@media (max-width: 576px) {
  .footer__wrap{
    justify-content: center;
    text-align: center;
  }
  .footer__wrap p{
    width: 100%;
  }
  .footer__wrap  a{
    justify-content: center;
    gap: 10px;
  }
}
.nono{
  display: none;
  position: absolute;
  top: -9999px;
  left: -9999px;
  height: 1px;
  width: 1px;
  visibility: hidden;
  overflow: hidden;
}