body{
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}



section, footer{
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}


section.hero{
  min-height: 100vh;
}

section.hero::before {
  position: absolute;
  content: '';
  background: linear-gradient(90.3deg, #F3F5F7 29.16%, rgba(243, 245, 247, 0) 88.63%);
  pointer-events: none;
  z-index: -1;
  inset: 20px;
  height: 73vh;
}




.container{
  width: 100%;
  max-width: 1084px;
}


section.hero .container{
  padding-top: 60px;
}


header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


header .lang-switch{
  display: flex;
  column-gap: 12px;
}

header .lang-switch button{
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #6C7092;
  border: 1.5px solid #C9C9C9;
  border-radius: 6px;
  transition: .2s ease;
}

header .lang-switch button:hover:not(.active){
  opacity: .7;
}

header .lang-switch button.active{
  color: #D61E1D;
  border-color: #D61E1D;
}


header .lang-switch a{
  padding: 6px 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #6C7092;
  border: 1.5px solid #C9C9C9;
  border-radius: 6px;
  transition: .2s ease;
  text-decoration: none;
}



.hero-content{
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
  margin-top: 60px;
}

.hero-content .hero-desc {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.hero-content .hero-desc h2{
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: #04024C;
}

.hero-content .hero-desc p{
  font-size: 40px;
  font-weight: 600;
  color: #1357D4;
}

.hero-content .hero-desc p span{
  color: #D61E1D;
}


.hero-content .hero-banner{
  width: 460px;
  height: 140px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 4px 20px 0px #0000001A;
  padding: 10px;
}

.hero-content .hero-banner img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.hero-calculator{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0px 4px 20px 0px #0000001A;
  margin-top: 60px;
  column-gap: 1rem;
  position: relative;
}

.hero-calculator .heading{
  display: flex;
}


.hero-calculator .heading span{
  font-size: 20px;
  font-weight: 600;
  color: #04024C;
  text-transform: uppercase;
  line-height: 1;
}

.hero-calculator .left-side{
  display: flex;
  flex-direction: column;
  width: 63%;
  min-width: 63%;
}

.hero-calculator .left-side .heading{
  margin-bottom: 32px;
}

.calc-heading{
  display: flex;
  align-items: center;
}


.calc-nav{
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 0px #0000001A;
  border-radius: 8px;
}

.calc-nav button{
  padding: 12px 40px;
  border-radius: 8px;

  font-size: 16px;
  color: #1357D4;
  font-weight: 600;
}

.calc-nav .active{
  background: #1357D4;
  color: #FFFFFF;
}


.calc-nav button:nth-child(1).active{

  border-top-right-radius: 0px;
}

.calc-nav button:nth-child(2).active{

  border-top-left-radius: 0px;
}


.calc-disclaimer{
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #6C7092;
  max-width: 250px;
  text-align: right;
  margin-left: auto;
  display: none;
}


.calc-disclaimer span{
  position: relative;
}

.calc-disclaimer span:before{
  content: '●';
  padding-right: 10px;
}


.hero-calculator[data-type="second"] .calc-disclaimer{
  display: flex;
}




.calc-sliders{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  row-gap: 20px;
}

.calc-sliders .slider{
  display: flex;
  flex-direction: column;
}


.calc-sliders .slider .slider-value{
  font-size: 20px;
  font-weight: 600;
  color: #04024C;
  text-align: right;
}

.slider-legend{
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
}


.slider-legend span{
  font-size: 14px;
  font-weight: 500;
  color: #6C7092;
}


.slider-track{
      padding: 10px 0;
}


.calc-form{
  display: none;
  flex-direction: column;
  margin-top: 40px;
}


.calc-form-fields{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.calc-form-fields .form-input {
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 16px);
  box-sizing: border-box;
  position: relative;
}

.calc-form-fields .form-input label{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6C7092;
  font-weight: 500;
}

.calc-form-fields .form-input label span{
  font-size: 10px;
  font-style: italic;
}

.calc-form-fields .form-input input{
  height: 42px;
  padding: 12px;
  border: 1px solid #DDE0EC;
  font-size: 14px;
  border-radius: 2px;
  margin-top: 8px;
  margin-bottom: 5px;
  transition: .2s ease;
  text-transform: capitalize;
}

.calc-form-fields .form-input input:focus{
  border-color: #6C7092;
}

.calc-form-fields .form-input input::placeholder {
  color: #DDE0EC; /* светло-серый */
  opacity: 1;  /* по умолчанию может быть полупрозрачным */
}


.calc-form-fields .form-input.error input{
  border-color: red;
}



.calc-form-fields .form-input .input-response {
    font-size: 12px;
    position: absolute;
    bottom: -14px;
    color: red;
}


.calc-form-checkbox{
  margin-top: 40px;
  margin-bottom: 4px;
  position: relative;
}

.calc-form-checkbox .input-response{
    font-size: 12px;
    position: absolute;
    bottom: -18px;
    left: 31px;
    color: red;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: fit-content;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox .checkmark {
  width: 16px;
  min-width: 16px;
  height: 16px;
  border: 1px solid #2962FF;
  border-radius: 2px;
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.custom-checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #2962FF;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}


.custom-checkbox .desc{
  font-size: 14px;
  font-weight: 500;
  color: #04024C;
}

.custom-checkbox .desc a{
  color: inherit;
}


.expand-description{
  display: none;
  margin-top: 30px;
}

.expand-description p{
  font-size: 11px;
  font-weight: 500;
  color: #6C7092;
}




.right-side{
  display: flex;
  flex: 1;
  justify-content: center;
}



.initial-form-desc{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.initial-form-desc .pay-amount{
  font-size: 38px;
  font-weight: 500;
  color: #1357D4;
  margin-top: 40px;
  min-width: 220px;
}

.initial-form-desc .pay-condition{
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  color: #6C7092;
  row-gap: 5px;
  margin-top: 28px;
}

.initial-form-desc .initial-action{
  margin-top: 58px;
}

.initial-form-desc button{
  font-size: 16px;
  font-weight: 600;
  background: #D61E1D;
  padding: 12px 40px;
  border-radius: 40px;
  color: #fff;
  transition: .2s ease;
}

.initial-form-desc button:hover{
  opacity: .7;
}


.hero-calculator.expand .initial-action{
  display: none;
}

.initial-form-desc .expand-action,
.initial-form-desc .expand-capcha{
  display: none;
}

.hero-calculator.expand .expand-capcha{
  display: flex;
  margin-top: auto;
  width: 100%;
}

.hero-calculator.expand .expand-action{
  display: flex;
  flex-direction: column;
}



.hero-calculator.expand .expand-action button{
  margin-top: 40px;
}

.hero-calculator.expand .calc-form{
  display: flex;
}

.hero-calculator.expand .expand-description{
  display: flex;
}

.expand-capcha{
  position: relative;
  margin-bottom: 4px;
}
.expand-capcha .input-response{
    font-size: 12px;
    position: absolute;
    bottom: -18px;
    left: 31px;
    color: red;
}



.hero-features{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  column-gap: 1rem;
}

.hero-features .features-text{
 display: flex;
 flex-direction: column;
 align-items: flex-start;
  justify-content: space-between;
}


.hero-features .features-text h2{
  font-size: 40px;
  color: #1357D4;
}

.features-text p{
  font-size: 18px;
  color: #6C7092;
}


.hero-features .features-text ul{
  list-style: disc;
  font-size: 18px;
  color: #04024C;
  font-weight: 600;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin: 1rem 0;
}

.hero-features .features-text ul li{
  padding-left: 15px;
}

.hero-features .features-text ul li::marker {
  color: red;
}


.hero-features .features-decoration{
  max-width: 400px;
  font-size: 74px;
  line-height: 1;
  color: #CCDEFF;
}


.hero-features .features-text button{
    margin-top: 1rem;
    font-size: 16px;
    font-weight: 600;
    background: #D61E1D;
    padding: 12px 40px;
    border-radius: 40px;
    color: #fff;
    transition: .2s ease;
}

.hero-features .features-text button:hover{
  opacity: .7;
}





.banner{
  margin-top: 60px;
}

.baner-container{
  
  width: 100%;
  max-width: 1240px;

  background: url(/pub/media/holder.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  padding: 120px 0;
  border-radius: 4px;
}


.baner-content{
  display: flex;
  flex-direction: column;
  align-items: center;

  row-gap: 40px;

  color: #fff;
  font-weight: 600;
  text-align: center;
}


.baner-content span{
  font-size: 20px;
}

.baner-content p{
  font-size: 34px;
  max-width: 658px;
}


.baner-content button {
    margin-top: 1rem;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    padding: 12px 40px;
    border-radius: 40px;
    color: #D61E1D;
    transition: .2s ease;
}

.baner-content button:hover{
  opacity: .7;
}



.where-is{
  padding: 60px 0;
}


.where-is:after {
  content: '';
  position: absolute;
  top: -200px;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(/pub/media/body-holder.png) no-repeat top right;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}



.where-container{
  display: flex;
  flex-direction: column;
}

.where-container h2{
  font-size: 40px;
  color: #1357D4;
}

.where-content{
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
  column-gap: 2rem;
}

.where-list{
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.where-item{
  display: flex;
  flex-direction: column;
}

.where-item img{
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}

.where-item span{
  font-size: 18px;
  color: #04024C;
  margin-bottom: 4px;
}

.where-item p{
  font-size: 15px;
  color: #6C7092;
}


.where-right{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 440px;
}

.where-right p{
  font-size: 18px;
  font-weight: 500;
  color: #6C7092;
}

.where-right .quote{
  font-size: 20px;
  color: #1357D4;
  border: 2px solid #D61E1D;
  padding: 30px;
  font-weight: 600;
  margin: 40px 0;
}

.where-right .action{
  margin-top: auto;
}

.where-right button{
    margin-top: 40px;
    font-size: 16px;
    font-weight: 600;
    background: #D61E1D;
    padding: 12px 40px;
    border-radius: 40px;
    color: #fff;
    transition: .2s ease;
}

.where-right button:hover{
  opacity: .7;
}


.where-about{
  display: flex;
  column-gap: 60px;
  margin-top: 60px;
}

.about-content{
  display: flex;
  flex-direction: column;
  width: 50%;
  min-width: 50%;
  padding: 50px 0;
}

.about-content p{
  font-size: 20px;
  font-weight: 600;
  color: #04024C;
}

.about-content span{
  font-size: 24px;
  color: #1357D4;
  margin: 40px 0;
}


.about-content ul{
  list-style: disc;
  font-size: 15px;
  color: #04024C;
  font-weight: 600;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin: 1rem 0;
}

.about-content ul li{
  padding-left: 15px;
}

.about-content ul li::marker {
  color: red;
}

.about-content ul li a{
  color: #6C7092;
  transition: .2s ease;
}

.about-content ul li a:hover{
  color: #04024C;
}


.about-content .action{
  margin-top: auto;
}

.about-content button{
    margin-top: 40px;
    font-size: 16px;
    font-weight: 600;
    background: #D61E1D;
    padding: 12px 40px;
    border-radius: 40px;
    color: #fff;
    transition: .2s ease;
}

.about-content button:hover{
  opacity: .7;
}

.where-about .map{
  position: relative;
  height: fit-content;
}


.where-about .map .point{
  width: 10px;
  height: 10px;
  position: absolute;
  background: transparent;
  border-radius: 99999px;
  border: 3px solid #D61E1D;
}

.point-1 { top: 11.08%; left: 19.38%;}
.point-2 { top: 12.15%; left: 48.26%;}
.point-3 { top: 15.85%; left: 36.05%;}
.point-4 { top: 26%; left: 36.05%;}
.point-5 { top: 37.54%; left: 62.98%;}
.point-6 { top: 41.08%; left: 32.56%;}
.point-7 { top: 41.54%; left: 50.78%;}
.where-about .map .point.point-8 { top: 47.69%; left: 63.76%; width: 13px; height: 13px}
.point-9 { top: 53.69%; left: 56.59%;}
.point-10 { top: 72%; left: 57.95%;}
.point-11 { top: 80.62%; left: 62.98%;}
.point-12 { top: 86.92%; left: 43.8%;}



footer .container{
  border-top: 1px solid #DDE0EC;
  padding:40px 0;
}


.footer-container{
  display: flex;
  align-items: flex-end;
}

.footer-container .logo{
  min-width: 60px;
}

.footer-container .address{
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  margin-right: auto;
  margin-left: 100px;
}

.footer-container .address span{
  font-size: 15px;
  font-weight: 600;
  color: #04024C;
}

.footer-container .address a{
  font-size: 15px;
  font-weight: 600;
  color: #04024C;
}

.cert{
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  font-size: 15px;
  font-weight: 600;
  color: #04024C;
  text-align: right;
  margin-left: auto;
}

.copy{
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  color: #6C7092;
  font-weight: 600;
}

.copy a{
  color: inherit;
  display: inline-block;
}


footer:after{
  content: '';
  position: absolute;
  height: 305px;
  width: 100%;
  background: url(/pub/media/footer-holder.png);
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}



@media(max-width: 768px){

  .container{
    width: calc(100% - 40px);
  }


  section.hero::before{
    inset: 0;
  }

  section.hero .container{
    padding-top: 20px;
  }

  .hero-content{
    flex-direction: column;
  }

  .hero-banner{
    display: none;
  }

  .hero-content .hero-desc h2{
    line-height: 1.2;
  }

  .hero-content .hero-desc p{
    font-size: 27px;
  }

  .hero-calculator{
    margin-top: 35px;
    padding: 20px;
    flex-direction: column;
  }

  .hero-calculator .heading span{
    font-size: 15px;
  }

  .hero-calculator .left-side{
    width: 100%;
    min-width: 100%;
  }

  .calc-heading{
    flex-direction: column;
  }

  .calc-nav{
    width: 100%;
  }

  .calc-nav button{
    width: 50%;
  }

  .calc-disclaimer{
    margin: 16px 0 16px auto;
  }

  .hero-calculator .right-side{
    justify-content: flex-start;
  }

  .initial-form-desc{
    margin-top: 0px;
  }

  .hero-calculator .right-side .heading{
    margin-top: 40px;
  }

  .initial-form-desc .pay-amount{
    margin-top: 8px;
  }

  .initial-form-desc .pay-condition{
    margin-top: 12px;
  }

  .initial-form-desc .initial-action{
    margin-top: 28px;
  }

  .calc-form-fields{
    flex-direction: column;
  }

  .calc-form-fields .form-input{
    width: 100%;
  }

/*  .hero-calculator.expand .expand-description{
    display: none;
  }*/


  .hero-calculator.expand .expand-capcha{
    order: -1;
    margin-top: 25px;
  }

  .hero-calculator.expand .expand-action button{
    margin-top: 30px;
  }


  .hero-features{
    flex-direction: column;
    margin-top: 40px;
  }

  .hero-features .features-text h2{
    font-size: 27px;
  }

  .features-text p{
    font-size: 16px;
    margin-top: 20px;
  }

  .hero-features .features-text ul{
    font-size: 16px;
  }

  .hero-features .features-text ul li{
    padding-left: 8px;
  }

  .hero-features .features-decoration{
    font-size: 40px;
    margin: 30px 0;
  }


  .banner{
    margin-top: 10px;
  }

  .baner-container{
    padding: 60px 0;
    border-radius: 0;
  }

  .baner-content{
    row-gap: 30px;
  }

  .baner-content p{
    font-size: 26px;
  }

  .baner-content span{
    font-size: 16px;
  }

  .where-is{
    padding: 30px 0;
  }

  .where-container h2{
    font-size: 27px;
  }

  .where-content{
    flex-direction: column;
  }

  .where-right{
    margin-top: 60px;
    max-width: none;
  }

  .where-about{
    flex-direction: column;
  }

  .about-content{
    width: 100%;
    min-width: 100%;
    padding-top: 0;
  }

  .about-content p{
    font-size: 18px;
  }

  .about-content span{
    font-size: 20px;
    margin: 20px 0;
  }



  footer:after{
    height: 410px;
    background-size: cover;
  }
  
  footer .container{
    border-top: 0;
  }

  .footer-container{
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
  }

  .footer-container .address{
    margin-left: 0;
  }

  .footer-container .cert{
    text-align: left;
    margin-left: 0;
  }

}



@media(min-width: 769px) and (max-width: 992px){

  .container{
    width: calc(100% - 40px);
  }

  section.hero::before{
    inset: 0;
  }

  section.hero .container{
    padding-top: 30px;
  }

  .hero-banner{
    display: none;
  }

  .calc-heading{
    flex-direction: column;
    align-items: flex-end;
  }

  .calc-nav{
    width: 100%;
  }

  .calc-nav button{
    width: 50%;
  }

  .calc-disclaimer{
    margin: 20px 0;
  }

  .initial-form-desc .initial-action{
    margin-top: auto;
  }

  .hero-calculator{
    column-gap: 2rem;
  }

  .hero-calculator .left-side{
    width: 60%;
    min-width: 60px;
  }

  .calc-form-fields .form-input{
    width: calc(50% - 12px);
  }

  .hero-features .features-text{
    row-gap: 1rem;
  }


  .hero-features .features-decoration{
    max-width: 330px;
  }


  .where-about{
    align-items: center;
  }

  footer .container{
    border-top: 0;
  }

  footer:after{
    height: 350px;
  }


  .footer-container{
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  .footer-container .address{
    margin-left: 0px;
  }

  .footer-container .logo{
    min-width: 100%;
  }

  .cert{
    text-align: left;
    margin-left: 0;
  }

}


@media(min-width: 993px) and (max-width: 1200px){

  .container{
    width: calc(100% - 40px);
  }

  section.hero::before{
    inset: 5px;
  }


  footer .container{
    border-top: 0;
  }

  footer:after{
    height: 250px;
  }


  .hero-content .hero-banner{
    width: 400px;
  }

  section.hero .container{
    padding-top: 30px;
  }
   

}


/*
.hero-calculator .left-side,
.hero-calculator .right-side,
.hero-calculator .expand-description{
  display: none;
}
*/

.success-form{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    align-items: center;
    padding: 40px 0;
    row-gap: 40px;
}

.success-form span{
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.success-form p{
  font-size: 18px;
  color: #6C7092;
  max-width: 700px;
  padding: 0 20px;
}




.hero-calculator{
  position: relative;
  overflow: hidden;
}

.hero-calculator .success-form{
  display: none;
}



.hero-calculator.load .left-side,
.hero-calculator.load .right-side{
  display: none;
}

.hero-calculator.load .success-form{
  display: flex;
}


.hero-calculator.load::after{

  content: '';
  position: absolute;
  background: #fff;
  inset: 0;
}

.hero-calculator.load::before{


      content: "";
      width: 40px;
      height: 40px;

      position: absolute;
      border-radius: 50%;
      border: 3px solid #1357D4;
      animation: prixClipFix 1s linear infinite ;
      z-index: 10;
      inset: 0;
      margin: auto;
    }

    @keyframes rotate {
      100%   {transform: rotate(360deg)}
    }

    @keyframes prixClipFix {
        0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
        25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
        50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
        75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
        100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
    }




.hero-calculator.success .left-side,
.hero-calculator.success .right-side{
  display: none;
}

.hero-calculator.success .success-form{
  display: flex;
}



.calc-effect {
  animation: slideUp 0.6s ease forwards;
  transform: translateY(50px);
}

@keyframes slideUp {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}




section.hero::before{
  animation: fadeIn 2s ease forwards;
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



.js-anim-typing{
  border-right: 2px solid #D61E1D;
  animation: blinkCursor 0.8s steps(1) infinite;
}

@keyframes blinkCursor {
  0%, 100% {
    border-color: #D61E1D;
  }
  50% {
    border-color: transparent;
  }
}