/* Inter-Regular */
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
:root{
  --body-bg: #F9F9FB;
  --blue: #0D49EC;
  --grey: #898C91;
  --light: #EBEFFC;
  --dark-blue: #171D24;
  --dark: rgba(50, 50, 50, 1);
}
html {
  font-family: "Inter", sans-serif;
  line-height: 1.20;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  color: #000000;
  
}
body {
  margin: 0;
  background-color: var(--body-bg);
}

h1{
  font-size: clamp(25px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

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

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

/* colors */
._c-white{color: #fff;}
._c-blue{color: var(--blue)}
._c-grey{color: var(--grey)}
._c-light{color: var(--light)}
._c-dark-blue{color: var(--dark-blue)}

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

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

/* margins padding */
._mt_0{
  margin-top: 0!important;
}
._mb-0{
  margin-bottom: 0!important;
}
._pb-0{
  padding-bottom: 0!important;
}

/* sprite  */
._sprite-item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
}
._sprite-item div{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
._sprite{
  width: 34px;
  height: 34px;
  background-color: var(--light);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

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

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

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

/* info  */
._info-wrap{
  display: flex;
  border-radius: 5px;
  gap: 47px;
  align-items: center;
  padding: 18px 40px;
}
._info-inner{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.centered-video {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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


@media (max-width: 991px) {
  #wrapper {
    padding-top: 15px;
  }
  ._info-wrap{
    gap: 20px;
    align-items: flex-start;
    padding: 18px 18px;
  }
  ._info-wrap img{
    max-width: 30px;
  }
  ._fz-20{
    font-size: 17px;
  }
  ._sc-title p {
      margin-top: 20px;
  }
  ._btn-secondary{
    font-size: 15px;
    padding: 15px 15px;
  }
}

/* header */
.header__top{
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 31px;
  border-radius: 5px 5px 0px 0px;
  height: 112px;
  padding: 27px;
}
.header__logo-wrap{
  max-width: 222px;
  width: 100%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  margin-left: -27px;
}
.header__logo-txt{
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header__logo{
  flex-shrink: 0;
}
.header__top-item{
  position: relative;
}
.header__top-item:before{
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  left: -18px;
  width: 0.5px;
  height: calc(100% + 12px);
  max-height: 44px;
  background-color: var(--grey);
}
.header__top-item.no-line:before{
  display: none;
}
.header__top-item ._sprite{
  flex-shrink: 0;
}
.header__top-item__btn{
  background-color: var(--blue);
  max-width: 173px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}
.header__top-item__btn:hover{
  color:#fff;
}
.header__bottom{
  background: var(--dark);
  padding: 8px 22px;
  display: flex;
  align-items: center;
  gap: 50px;
  border-radius: 5px;
  height: 60px;
}
.header__catalog-btn{
  background-color: var(--blue);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  text-align: left;
  border: none;
  border-radius: 5px;
  padding: 5px 5px 5px 10px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.header__catalog-btn:hover{
  color: #fff;
  text-decoration: none;
}
.header__nav{
  color: #fff;
  width: 100%;
}
.header__nav-list{
  max-width: 617px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: auto;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}
.header__nav-list a{
  text-decoration: none;
  position: relative;
}
.header__nav-list a:hover{
  text-decoration: none;
  color: #fff;
}
.header__nav-list a:before{
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  background-color: var(--blue);
  height: 2px;
  width: 0;
  transition: 0.3s;
}
.header__nav-list a:hover:before{
  width: 100%;
}
.header__nav-item.active a:before{
  width: 100%;
}
.header__burger {
	 width: 35px;
	 height: 35px;
	 border-radius: 4px;
	 position: relative;
   margin-left: auto;
}
.header__burger > * {
  pointer-events: none;
}
.header__burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  margin-top: 0px;
}
.header__burger span, .header__burger span::before, .header__burger span::after {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.header__burger span::before, .header__burger span::after {
  position: absolute;
  content: "";
}
.header__burger span::before {
  top: -8px;
}
.header__burger span::after {
  top: 8px;
}
.header__burger.clicked span {
  background-color: transparent;
}
.header__burger.clicked span::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.header__burger.clicked span::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}
.header__burger.clicked span:before, .header__burger.clicked span:after {
  background-color: #fff;
}
.header__burger:hover {
  cursor: pointer;
}
.header__nav-close{
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
}
@media (max-width: 1199px) {
  .header__logo-wrap {
    max-width: 179px;
  }
  .header__logo{
    max-width: 80px;
  }
  .header__top{
    gap: 20px;
  }
  .header__top-item:before{
    left: -10px;
  }
  .header__top-item-call{
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .header__logo-wrap {
    max-width: 100%;
    width: auto;
    margin-right: auto;
    margin-left: 0;
    height: 100%;
  }
  .header__logo{
    height: 100%;
  }
  .header__logo img{
    max-height: 100%;
  }
  .header__top{
    justify-content: flex-end;
    height: 75px;
    padding: 10px 20px;
  }
  .header__top-item:before{
    display: none;
  }
  .header__nav {
    background-color: var(--dark-blue);
    position: fixed;
    padding: 85px 35px 50px 35px;
    z-index: 9;
    top: 0;
    left: 0;
    height: 100%;
    max-width: 515px;
    width: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    
  }
  .header__nav-list{
    display: flex;
    flex-direction: column;
    gap: 47px;
  }
  .header__nav.show {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@media (max-width: 576px) {
  .header__bottom{
    padding: 8px 8px;
  }
  .header__top {
    gap: 12px;
  }
}

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

/* footer */
.footer {
    background: var(--dark);
    margin-top: 50px;
    padding-top: 8px;
    padding-bottom: 50px;
    position: relative;
    z-index: 0
}
.footer__top-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  padding-bottom: 8px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
}
.footer__top-faq{
  font-size: 36px;
}
.footer__media {
    display: flex;
    gap: 14px;
}
.footer__media a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__media a:hover{
  opacity: 0.7;
}
.footer__data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto
}
.footer__left {
    padding: 37px 38px;
    height: fit-content
}
.footer__left>a {
    display: block;
    height: fit-content
}
.footer__left>a img {
    width: 223px;
    height: 281px
}
.footer__middle {
    min-width: 346px
}
.footer__middle-header {
    margin-bottom: 16px;
    display: flex;
    justify-content: center
}
.footer__middle-divider {
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 8px 0
}
.footer__middle-item {
    margin-bottom: 8px
}
.footer__middle-item:last-of-type {
    margin-bottom: 0
}
.footer__middle-item a,.footer__middle-item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    color: #fff;
    text-decoration: none
}
.footer__middle-item:hover a,
.footer__middle-item:hover span{
  color: var(--blue);
}
.footer__middle-item a span {
    text-decoration: underline;
    text-underline-position: under;
    font-size: 13px;
}
.footer__middle-item-left {
    font-weight: 500;
    font-size: 14.5px;
    line-height: 186%;
    text-decoration: none;
}
.footer__middle-grp {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: .02em;
    font-family: FuturaBookC,sans-serif
}
.footer__middle-grp-bold {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.01em;
    font-family: FuturaDemiC,sans-serif
}
.footer__right {
    width: 299px;
    height: 354px;
    min-width: 299px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column
}
.footer__right-links a {
    display: block;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: -0.01em;
    padding: 3px 0
}
.footer__right-links a:hover{
  color: var(--blue);
}
.footer__right-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.01em;
}
.footer__right-contacts a {
    color: #fff;
    text-decoration: none
}
.footer__right-contacts a:hover{
  color: var(--blue);
}
.footer_active {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.01em;
    font-family: FuturaDemiC,sans-serif;
    text-decoration: underline;
    color: #fff
}
.footer_mobile {
    display: none
}
@media(max-width: 991px) {
    .footer__data {
        flex-direction:column
    }
    .footer__top-wrap {
        margin-bottom: 20px
    }
    .footer__right {
        order: 0;
        margin-left: 0;
        margin-bottom: 32px;
        align-items: center;
        height: auto;
        padding: 0;
        box-shadow: none
    }
    .footer__right-contacts {
        align-items: center;
        text-align: center;
        margin-bottom: 0
    }
    .footer__right-links {
        display: none
    }
    .footer__middle {
        order: 2;
        width: 100%;
        min-width: auto
    }
    .footer__middle-divider {
        margin-bottom: 20px !important;
        margin-top: 20px !important
    }
    .footer__left {
        padding: 0;
        box-shadow: none;
        order: 1;
        margin-right: 0;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 32px
    }
    .footer__left-links {
        display: none
    }
    .footer__left>a {
        margin: 0
    }
    .footer_mobile-divider {
        margin: 20px 0;
        display: block
    }
    .footer_mobile {
        display: block
    }
    .footer_mobile-link {
        display: flex;
        justify-content: center
    }
    .footer_mobile-link a {
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: .02em;
    }
}


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