@font-face {
  font-family: "Mulish";
  src: url("/pub/assets/fonts/Mulish-VariableFont_wght.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  font-style: italic;
  src: url("/pub/assets/fonts/Mulish-Italic-VariableFont_wght.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/pub/assets/fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("/pub/assets/fonts/NunitoSans-VariableFont_YTLC\,opsz\,wdth\,wght.woff2") format("woff2");
  font-display: swap;
}



body{
  font-family: "Mulish", Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
}


button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  appearance: none;
}

button{
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}


img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}



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;
  width: 100px;
}

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;
}



.anim-wrap{
  display: inline-block;
  width: 8sch;
  white-space: nowrap;
}



.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{
  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;
}

small.alert{
    font-size: 14px;
    font-weight: 500;
    color: #6C7092;
}


.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: 30px;
}

.calc-sliders .slider{
  display: flex;
  flex-direction: column;
}


.calc-sliders .slider-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.calc-sliders .slider-header .slider-current-value{
  font-size: 20px;
  font-weight: 600;
  color: #04024C;
  text-align: right;
}

.calc-sliders .slider-header .legend-name{
    font-size: 14px;
    font-weight: 500;
    color: #6C7092;
}


.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;
}


.slider .noUi-value-horizontal {
    transform: translate(-50%, 0%);
    font-size: 14px;
    font-weight: 500;
    color: #6C7092;
}

@media(max-width: 500px){

  .slider .noUi-value-horizontal {
    font-size: 10px;
  }
}

.noUi-value[data-value="5000"] {
  transform: translateX(0);
}

.noUi-value[data-value="45000"] {
  transform: translateX(-100%); /* правый край */
}




.noUi-marker-normal,
.noUi-marker-large{
  display: none;
}


.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 .pay-condition-urls{
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  color: #6C7092;
  row-gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.initial-form-desc .pay-condition-urls a{
  color: inherit;
  text-decoration: underline;
}


.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.webp);
  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;
}







.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 2px;
}
.noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  right: -9px;
  top: -8px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #DDE0EC;
}
.noUi-connects {
}
.noUi-connect {
  background: #D61E1D;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border-radius: 9999px;
  background: #D61E1D;
  border: 4px solid #FFFFFF;
  cursor: pointer;
}
/*.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}*/
/* Handle stripes;
 */
/*.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}*/
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}






.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.webp) 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.webp);
  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;
  }

  [lang="ru"]  .hero-calculator .heading span{
    line-height: 1.5;
  }

  .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;
    padding: 0 1rem;
  }

  .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;
}

.success-form a,
.rejected-form a{
    color: inherit;
}


.rejected-form{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    align-items: center;
    padding: 40px 0;
    row-gap: 40px;
}

.rejected-form span{
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.rejected-form p{
  font-size: 18px;
  color: #6C7092;
  max-width: 700px;
  padding: 0 20px;
}



.hero-calculator{
  position: relative;
  overflow: hidden;
}

.hero-calculator .success-form,
.hero-calculator .rejected-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,
.hero-calculator.rejected .left-side,
.hero-calculator.rejected .right-side{
  display: none;
}

.hero-calculator.success .success-form{
  display: flex;
}

.hero-calculator.rejected .rejected-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;
  }
}*/



.mobile-break{
  display: none;
}


@media (max-width: 460px) {
  .mobile-break {
    display: inline;
  }


  footer:after{
    height: 470px;
  }
}







.hiw-promo{
  margin: 3rem 0;
}

.hiw-promo img{
   
   border-radius: 20px;
   overflow: hidden;
   max-width: 100%;

}



@media(min-width: 768px){

  
html[lang="ro"] .baner-content p{
  
  max-width: 600px;
}


}
