body{
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


body.hidden{
  overflow: hidden;
}


section, footer{
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}


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;
  top: 0;
  left: 20px;
  width: calc(100% - 20px);
  height: 60vh;
  border-radius: 12px;
}




.container{
  width: 100%;
  max-width: 1084px;
  margin: 0 auto;
}


header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}


header .header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;

}


header .lang-switch{
  display: flex;
  column-gap: 12px;
}


header .header-nav{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

header .header-nav a{
    font-weight: 700;
    font-size: 15px;
    color: #04024c;
    text-decoration: none;
    transition: .2s ease;
}

header .header-nav a:hover{
    color: #D61E1D;
}

header .header-nav a.active{
    color: #D61E1D;
    border-bottom: 1.5px solid #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;
}

header .lang-switch a:hover:not(.active){
  opacity: .7;
}

header .lang-switch a.active{
  color: #D61E1D;
  border-color: #D61E1D;
}


section.hero{
  margin-top: 100px;
}


.hero-content{
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
  padding-top: 60px;
}

.hero-content .hero-desc {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  width: 100%;
}

.hero-content .hero-desc h2{
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: #1357D4;
}

.hero-content .hero-desc p{
  font-size: 26px;
  font-weight: 600;
  color: #04024C;
  text-align: center;
  width: 100%;
  max-width: 700px;
}

.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;
}


.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;
}



.hiw{
    padding: 60px 0;
}


.hiw-heading{
  display: flex;
  flex-direction: column;
}

.hiw-heading h2{
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: #1357D4;
  margin-bottom: 15px;
}

.hiw-heading p{
  font-size: 20px;
  line-height: 1.5;
  color: #6C7092;
}


.how-it-works__steps {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}


.how-it-works__steps .step {
    flex: 1;
    padding: 40px 20px;
    border: 1px solid #dde0ec;
    border-radius: .8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.step__icon-box {
    display: flex;
    justify-content: space-between;
}



.step__number {
    font-weight: 400;
    font-size: 32px;
    color: #dde0ec;
    transition: .5s ease;
}

.step__icon-box .image img {
    transition: .5s ease;
}

.how-it-works__steps .step:hover .step__icon-box .image img{
    transform: scale(1.3);
}

.how-it-works__steps .step:hover .step__number{
    color: #d61e1d;
}


.step__content {
    margin-top: 60px;
    min-height: 70px;
    border-bottom: 1.5px solid #d61e1d;
}

.step__content h3 {
    font-weight: 600;
    font-size: 18px;
    color: #04024c;
    margin-bottom: 5px;
}

.step__description {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #6c7092;
}


.hiw-actions{
  display: flex;
  justify-content: center;
}


section.about .container{
  padding: 60px 0;
}

section.about::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;
  top: 0;
  left: 20px;
  width: calc(100% - 20px);
  height: 100%;
  border-radius: 12px;
}



.about h2 {
    font-weight: 600;
    font-size: 32px;
    color: #1357d4;
    margin-bottom: 32px;
}


.about .about__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    color: #6c7092;
}

.about .about__text .about__paragraph{
  line-height: 1.5;
}

.about .about__text .about__paragraph:first-child{
    font-size: 20px;
}

.about .about__text .about__paragraph:nth-child(even) {
    font-size: 16px;
}


.about .about__text .about__paragraph:nth-child(3) {
    border: 3px solid #d61e1d;
    padding: 40px;
    font-size: 22px;
    font-weight: 600;
    line-height: 150%;
    color: #1357d4;
}


.about__advantages{
  display: flex;
  flex-direction: column;
}


.about__advantages .about__subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #6c7092;
    margin-bottom: 20px;
}

.about__advantages .about__list {
    display: inline-block;
    list-style-image: url(/pub/media/svg/List_style.svg);
    font-weight: 600;
    font-size: 16px;
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 20px;
    column-gap: 20px;
    list-style-position: inside;
    line-height: 1.8;
    color: #6c7092;
}




section.company{
  padding: 60px 0;
}

.company-wrap{
  display: flex;
  gap: 40px;
}


.company__content{
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}


.company__content h2 {
    font-weight: 600;
    font-size: 32px;
    color: #1357d4;
}


.company__paragraph:nth-child(2) {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: #04024c;
}


.company__highlight {
    border: 2px solid #d61e1d;
    border-radius: 2px;
    padding: 40px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.company__highlight .company__icon{
    width: 84px;
    height: 90px;
}

.company__highlight .company__highlight-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #04024c;
}

.company__highlight .company__highlight-text span {
    color: #6c7092;
}

.company__paragraph:last-child {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #6c7092;
}


.company__promo {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    justify-content: space-between;
    width: 300px;
}

.company__promo .company__logo{
    width: 64px;
    height: 60px;
}


.company__slogan {
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 60px;
    line-height: 1.2;
    text-align: right;
    color: #ccdeff;
}

.company__slogan-emphasis {
    color: #1357d4;
    font-style: italic;
}







.payment-wrap{
  display: flex;
  flex-direction: column;
  padding: 60px 0;
  border-top: 1px solid #dde0ec;
}


.payment-wrap h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    color: #1357d4;
    margin-bottom: 32px;
}

.payment-wrap > p{
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: #04024c;
}


.repayment__methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.repayment__methods .method {
    flex: 1;
    padding: 30px 20px;
    border: 1px solid #dde0ec;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f8fafb;
    border-radius: 8px;
}

.method__icon-box {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.method__icon-box img{
    width: 40px;
    height: 40px;
    transition: .5s ease;
}

.method__title {
    font-style: italic;
    font-size: 18px;
    color: #04024c;
}

.method__highlight {
    color: #d61e1d;
}


.method__description {
    font-size: 15px;
    line-height: 1.5;
    color: #6c7092;
}


.repayment__methods .method:hover .method__icon-box img{
  transform: scale(1.2);
}




section.promo::before {
  position: absolute;
  content: '';
  background: linear-gradient(to bottom, #FAFAFA 0%, #EFEFEF 100%);
  pointer-events: none;
  z-index: -1;
  top: 0;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  height: 100%;
  border-radius: 12px;
  padding: 100px 0;
}



section.promo .container{
  padding: 100px 0;
}




section.promo .container{
  background: url(/pub/media/banner.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}



.promo__content {
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.promo__content h2 {
    font-weight: 600;
    font-size: 32px;
    color: #1357d4;
}

.promo__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #04024c;
}










footer .container{
  border-top: 1px solid #DDE0EC;
  padding:40px 0;
  margin-top: 60px;
}


.footer-container{
  display: flex;
  column-gap: 90px;
}


.footer-left{
  width: 280px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}


.footer-left .logo{
  min-width: 60px;
}

.footer-left .address{
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}

.footer-left .address span{
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 600;
  color: #04024C;
}


.footer-left .address a{
  font-size: 15px;
  font-weight: 600;
  color: #04024C;
}

.footer-left .address span + a{
  margin-top: 5px;
}

.footer-left .cert{
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  font-size: 15px;
  font-weight: 600;
  color: #04024C;
}


.footer-left .footer__links{

    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: underline;
    color: #6c7092;
    list-style: none;
    margin-top: auto;
}

.footer-left .footer__links a {
    color: inherit;
    text-decoration: underline;
    line-height: 1.5;
}



.footer-right{
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #04024c;
}


.footer__location-title {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
}

.footer__location-address {
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}


.footer__location-hours {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #6c7092;
}

.footer__location-main {
    margin-bottom: 40px;
}



.footer__branches{
  display: flex;
  gap: 20px;
}


.footer__branches ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
}


.footer__location-address a {
    color: inherit;
    text-decoration: underline;
}










.copy{
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  padding-top: 40px;
  font-size: 13px;
  color: #6C7092;
  font-weight: 600;
  border-top: 1px solid #DDE0EC
}

.copy a{
  color: inherit;
  display: inline-block;
}



.menu-expand {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  display: none;
}
.menu-expand .line {
  fill: none;
  stroke: #D61E1D;
  stroke-width: 4;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-expand .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 4;
}
.menu-expand .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 4;
}
.menu-expand .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 4;
}
header.expand .menu-expand .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 4;
}
header.expand .menu-expand .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 4;
}
header.expand .menu-expand .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 4;
}







@media(max-width: 768px){

  
  header .menu-expand{
    display: flex;
  }

  header .lang-switch{
    margin-left: auto;
    margin-right: 20px;
  }


  header .header-nav{
    display: none;
  }



  header.expand .header-nav{
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 100px;
    height: 100%;
    width: 100%;
    background: linear-gradient(32deg, #f3f5f7d1 29.16%, rgb(243 245 247) 88.63%);
    z-index: 1000;
    left: 0;
    padding: 20px;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 15px;
  }

  header.expand .header-nav a{
    font-size: 20px;
  }

  .container{
    width: calc(100% - 40px);
  }



  section.hero::before{
    inset: 0;
    border-radius: 0;
    width: 100%;
  }


  .hero-content{
    flex-direction: column;
    padding-top: 40px;
  }


  .hero-content .hero-desc h2{
    line-height: 1.2;
    font-size: 27px;
  }

  .hero-content .hero-desc p{
    font-size: 22px;
  }

  .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-capcha{
    order: -1;
    margin-top: 25px;
  }

  .hero-calculator.expand .expand-action button{
    margin-top: 30px;
  }


  .hiw{
    padding: 40px 0;
  }


  .hiw-heading h2{
    font-size: 27px;
  }

  .hiw-heading p{
    font-size: 16px;
  }


  .how-it-works__steps{
    flex-direction: column;
  }

  .how-it-works__steps .step{
    padding: 30px 20px;
  }

  .step__content{
    margin-top: 30px;
    min-height: auto;
    padding-bottom: 10px;
  }



  section.about .container{
    padding: 40px 0;
  }


  section.about::before{
    left: 0;
    border-radius: 0;
  }


  .about h2{
    font-size: 27px;
    margin-bottom: 15px;
  }

  .about .about__text .about__paragraph:first-child{
    font-size: 16px;
  }

  .about .about__text .about__paragraph:nth-child(3){
    font-size: 20px;
    padding: 30px;
    line-height: 1.3;
  }

  .about__advantages .about__subtitle{
    margin-bottom: 10px;
  }

  .about__advantages .about__list{
    columns: 1;
    font-size: 14px;
  }


  section.company{
    padding: 40px 0;
  }

  
  .company-wrap{
    flex-direction: column;
  }

  .company__content{
    gap: 20px;
  }

  .company__content h2{
    font-size: 27px;
  }

  .company__paragraph:nth-child(2){
    font-size: 16px;
  }

  .company__highlight{
    flex-direction: column;
  }

  .company__paragraph:last-child{
    font-size: 16px;
  }

  .company__promo .company__logo{
    display: none;
  }

  .company__promo{
    align-items: flex-start;
  }


  .company__slogan{
    font-size: 37px;
    text-align: left;
  }



  .payment-wrap{
    padding: 40px 0;
  }

  .payment-wrap h2{
    font-size: 27px;
    margin-bottom: 20px;
  }

  .payment-wrap > p{
    font-size: 16px;
  }

  .repayment__methods{
    flex-direction: column;
  }



  section.promo .container{
    padding: 20px 10px;
    background-size: 320px;
  }

  section.promo::before{
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }

  .promo__content{
    gap: 20px;
  }

  .promo__content h2{
    font-size: 24px;
  }

  .promo__text{
    font-size: 16px;
  }

  .promo__cta{
    padding-top: 180px;
    padding-bottom: 70px;
  }


  footer .container{
    padding: 20px 0;
    margin-top: 40px;
  }


  .footer-left{
    width: 100%;
    gap: 20px;
  }


  .footer__branches{
    flex-direction: column;
    gap: 10px;
  }

  .footer__branches ul{
    gap: 10px;
  }

  .footer__location-main{
    margin-bottom: 20px;
  }


  .copy{
    margin-top: 20px;
    padding-top: 20px;
  }





  .where-content{
    flex-direction: column;
  }


  .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-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){

  .hero-content .hero-desc p br{
    display: none;
  }
}


@media(min-width: 769px) and (max-width: 992px){



  header .menu-expand{
    display: flex;
  }

  header .lang-switch{
    margin-left: auto;
    margin-right: 20px;
  }


  header .header-nav{
    display: none;
  }



  header.expand .header-nav{
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 100px;
    height: 100%;
    width: 100%;
    background: linear-gradient(32deg, #f3f5f7d1 29.16%, rgb(243 245 247) 88.63%);
    z-index: 1000;
    left: 0;
    padding: 20px;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 15px;
  }

  header.expand .header-nav a{
    font-size: 20px;
  }

  .container{
    width: calc(100% - 40px);
  }

  section.hero::before{
    inset: 0;
  }




  .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);
  }

  




   .hiw{
    padding: 40px 0;
  }


  .hiw-heading h2{
    font-size: 27px;
  }

  .hiw-heading p{
    font-size: 16px;
  }


/*  .how-it-works__steps{
    flex-direction: column;
  }*/

  .how-it-works__steps .step{
    padding: 30px 20px;
  }

  .step__content{
    margin-top: 30px;
    min-height: auto;
    padding-bottom: 10px;
  }



  section.about .container{
    padding: 40px 0;
  }


  section.about::before{
    left: 0;
    border-radius: 0;
  }


  .about h2{
    font-size: 27px;
    margin-bottom: 15px;
  }

  .about .about__text .about__paragraph:first-child{
    font-size: 16px;
  }

  .about .about__text .about__paragraph:nth-child(3){
    font-size: 20px;
    padding: 30px;
    line-height: 1.3;
  }

  .about__advantages .about__subtitle{
    margin-bottom: 10px;
  }

  .about__advantages .about__list{
    columns: 1;
    font-size: 14px;
  }


  section.company{
    padding: 40px 0;
  }

  
/*  .company-wrap{
    flex-direction: column;
  }*/

  .company__content{
    gap: 20px;
  }

  .company__content h2{
    font-size: 27px;
  }

  .company__paragraph:nth-child(2){
    font-size: 16px;
  }

  .company__highlight{
    flex-direction: column;
  }

  .company__paragraph:last-child{
    font-size: 16px;
  }

/*  .company__promo .company__logo{
    display: none;
  }*/

  .company__promo{
    /*align-items: flex-start;*/
  }


  .company__slogan{
    font-size: 37px;
    text-align: left;
  }



  .payment-wrap{
    padding: 40px 0;
  }

  .payment-wrap h2{
    font-size: 27px;
    margin-bottom: 20px;
  }

  .payment-wrap > p{
    font-size: 16px;
  }

  .repayment__methods{
    /*flex-direction: column;*/
  }



  section.promo .container{
    padding: 20px 10px;
    background-size: 370px;
  }

  section.promo::before{
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }

  .promo__content{
    gap: 20px;
  }

  .promo__content h2{
    font-size: 24px;
  }

  .promo__text{
    font-size: 16px;
  }

  .promo__cta{
    padding-top: 60px;
    padding-bottom: 70px;
  }


  footer .container{
    padding: 20px 0;
    margin-top: 40px;
  }


  .footer-left{
    width: 100%;
    gap: 20px;
  }



  .footer-right{
    width: 100%;
  }

  .footer__branches{
    /*flex-direction: column;*/
    gap: 10px;
  }

  .footer__branches ul{
    gap: 10px;
  }

  .footer__location-main{
    margin-bottom: 20px;
  }


  .copy{
    margin-top: 20px;
    padding-top: 20px;
  }





  .where-content{
    flex-direction: column;
  }


  .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 .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: 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;
  }


  section.promo .container{
    padding: 100px 50px;
    background-size: 450px;
  }
   

}







.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::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;
}



@media(min-width: 600px){
  .copy br{
    display: none;
  }
}








header + section{
  margin-top: 100px;
}


.section-heading{
  position: relative;
  padding: 50px 0;
}


section.section-heading::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;
  top: 0;
  left: 20px;
  width: calc(100% - 20px);
  height: 100%;
  border-radius: 12px;
}


.static-heading{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.static-heading h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: #1357D4;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    column-gap: .5rem;
}

.static-heading h3{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.static-heading h3 a{
  color: inherit;
}


.static-heading p {
    font-size: 26px;
    font-weight: 600;
    color: #04024C;
    width: 100%;
}

.static-heading p.second {
    font-size: 16px;
    font-weight: 600;
    color: #04024C;
    width: 100%;
    margin-top: 20px;
}






.page-about{
  padding: 60px 0 40px 0;
}


.page-about .container  > p {
    font-size: 20px;
    line-height: 1.5;
    color: #6C7092;
    margin-bottom: 40px;
}


.about-page-text{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-page-text h2{
    font-weight: 600;
    font-size: 32px;
    color: #1357d4;
    margin-bottom: 32px;
}

.about-page-text .about__paragraph{
    font-size: 16px;
    line-height: 1.5;
    color: #04024c;
}

.about-page-text .about__list-item a {
    color: inherit;
    text-decoration: underline;
}


.about-page-text .about__list{
  padding: 20px 0;
}

.about-page-text .company__highlight{
  flex-direction: column;
  gap: 15px;
}

.about-page-text .company__highlight h4{
  color: #D61E1D;
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
}


.about-page-text .repayment__description {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: #D61E1D;
}


.about-page-text .promo__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #04024c;
}

.about-page-text .promo__text a {
    color: inherit;
    text-decoration: underline;
}

.about-page-text .how-it-works__steps .step{
  padding: 30px 20px;
}

.about-page-text .adjustments .step__icon {
    width: 70px;
    height: 70px;
}

.about-page-text .step__content{
  border-bottom: 0;
  min-height: none;
  margin-top: 25px;
}

.about-page-text .company__promo{
  width: 100%;
}

.about-page-text .company__slogan{
  font-size: 40px;
}

.about-page-text .company__highlight h4.highlight-blue{
  color: #1357d4;
  font-size: 22px;
  font-weight: 600;
}


@media(max-width: 768px){


  .section-heading{
    position: relative;
    padding: 30px 0;
  }


  section.section-heading::before {
    left: 0;
    border-radius: 0;
  }


  .static-heading h2{
    line-height: 1.2;
    font-size: 27px;
  }

  .static-heading p{
    font-size: 22px;
  }

  .page-about{
    padding: 30px 0;
  }

  .page-about .container > p{
    font-size: 16px;
  }

  .about-page-text .repayment__description{
    font-size: 16px;
    line-height: 1.2;
  }

  .about-page-text .promo__text{
    font-size: 16px;
  }


}


@media (min-width: 769px) and (max-width: 1200px) {
    section.section-heading::before {
    left: 0;
    border-radius: 0;
  }
}



.advantages-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-item{
      border: 1.5px solid #c9c9c9;
    border-radius: 2px;
    padding: 30px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    font-size: 22px;
    border-radius: 6px;
}

.advantage-item h3{
  font-size: 22px;
  color: #D61E1D;
  margin-bottom: 4px;
}

.advantage-item p{
  font-size: 16px;
  color: #6C7092;
}



.questions{
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.question{
    border: 1px solid #333;
    padding: 15px 20px;
    border-radius: 10px;
}

.question h3 {
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;



    font-size: 20px;
    font-weight: 500;
    color: #333;
    position: relative;
    cursor: pointer;
    padding-right: 40px;

}


.questions li h3::before {
    content: " ";
    display: inline-block;
    position: absolute;
    z-index: 2;
    right: 0px;
    top: 50%;
    margin-top: -11px;
    width: 23px;
    height: 23px;
    background: url(/pub/media/expander.png) 0 0 no-repeat;
}



.question .answer {
    display: none;
}


.question.open .answer {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-top: 20px;
  transition: .2s;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: #333;
}



.documents-list{
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.documents-list a{
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #04024c;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}




.payments-page{
  margin-top: 0;
}


.payments-page .method ul{
  margin-top: 20px;
}

.payments-page .method{
  justify-content: flex-start;
  height: fit-content;
}

.payments-page .method ul li + li{
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #000;
}








section.contact-page::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;
  top: 0;
  left: 20px;
  width: calc(100% - 20px);
  height: 50vh;
  border-radius: 12px;
}


.contact-page .hero-calculator{
  margin-top: 40px;
}


.contacts__side-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}


.contacts__side-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page .hero-calculator {
    flex-wrap: nowrap;
    gap: 40px;
}



.contacts__items {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}


.contacts__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #04024c;
    text-align: left;
    column-gap: 10px;
}


.contacts__item a {
    color: inherit;
    text-decoration: underline;
}

.contacts__text {
    font-size: 14px;
    font-weight: 500;
    color: #6c7092;
}


.contact-page .hero-calculator .calc-form-fields {
    flex-direction: column;
}


.contact-page .hero-calculator .calc-form-fields .form-input textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dde0ec;
    font-size: 14px;
    border-radius: 2px;
    margin-top: 8px;
    margin-bottom: 5px;
    transition: .2s ease;
    text-transform: capitalize;
}


.contact-page .hero-calculator .calc-form-fields .form-input textarea::placeholder {
      color: #DDE0EC;
  opacity: 1;
}



.contact-page .hero-calculator .calc-form-fields .form-input {
    width: 100%;
}



#map{
  margin-top: 60px;
}



@media(max-width: 768px){

  section.contact-page::before{
    left: 0;
    border-radius: 0;
  }


  .contacts__side-left{
    width: 100%;
  }

  .contacts__side-right{
    width: 100%;
  }

  .contact-page .hero-calculator{
    margin-top: 10px;
  }

  #map{
    margin-top: 40px;
  }

}

@media (min-width: 993px) {
  html[lang="ru"] .company__slogan {
    font-size: 40px;
  }
}



















section.section-heading.news::before{
  display: none;
}


.section-heading.news h2{
  margin-bottom: 0;
}


.news-list{
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}


.news-item{
  display: flex;
  background: #f8fafb;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  border: 1px solid #dde0ec;
}


.ni-media{
  width: 35%;
  min-width: 35%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ni-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .2s ease;
}

.ni-meta{
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 30px;
}

.ni-meta .meta-heading{
  display: flex;
  flex-direction: column;
}

.ni-meta .meta-heading h2{
  color: #D61E1D;
  margin-bottom: 7px;
  font-size: 22px;
  text-transform: uppercase;
}

.ni-meta .meta-heading h2 a{
  text-decoration: none;
  color: inherit;
}

.ni-meta .meta-heading .date{
  font-size: 12px;
  color: #666;
}

.meta-content{
  margin-top: 15px;
  line-height: 1.5;
  color: #6c7092;
  font-size: 14px;
}

.meta-content a{
  color: inherit;
  text-decoration: none;
  color: #D61E1D;
}

.news-item:hover .ni-media img{
  transform: scale(1.1);
}



@media(max-width: 768px){
  .news-item{
    flex-direction: column;
    height: auto;
  }

  .ni-media {
    width: 100%;
    height: 150px;
  }



}




.news-full .static-heading h3{
  text-transform: uppercase;
  color: #D61E1D;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 5px;
}

.news-full .static-heading span{
  font-size: 12px;
  color: #666;
}


.news-full .news-content{
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  row-gap: 20px;

  font-size: 16px;
  line-height: 1.5;
  color: #333;
}


.news-content ul{
  list-style: disc;
  padding-left: 1rem;
}


.news-full .news-content a{
  color: #D61E1D;
  text-decoration: none;
}



@media(max-width: 1200px){

   section.contact-page::before{
      left: 0;
      border-radius: 0;
   }

}



.calc-form-fields .form-input.error textarea{
  border-color: red !important;
}


.contact-form{
  position: relative;
}


.contact-form.load::after{
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(0deg 0% 100% / 54%);
}


.contact-form.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;
}



.contact-form.success .success-form {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    align-items: center;
    padding: 40px 0;
    row-gap: 40px;
    position: absolute;
    background: #fff;
    height: 100%;
    justify-content: center;
}

.success-form a{
  color: inherit;
}



.contact-form .expand-capcha{
  margin: 10px 0;
}


.not-found-container{
  margin-top: 100px;
  padding-top: 35px;
  color: #04024C;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.not-found-container h1{
  font-size: 22px;
  color: #1357D4;
}

.not-found-container h2{
  font-size: 18px;
}

.not-found-container p{
  font-size: 16px;
}

.not-found-container p a{
  color: inherit;
}