@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Bold.woff) format("woff"), url(../fonts/Montserrat-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Light.woff) format("woff"), url(../fonts/Montserrat-Light.woff2) format("woff2");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Regular.woff) format("woff"), url(../fonts/Montserrat-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Medium.woff) format("woff"), url(../fonts/Montserrat-Medium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-SemiBold.woff) format("woff"), url(../fonts/Montserrat-SemiBold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal
}

*,
::after,
::before {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html{
    scroll-behavior: smooth;
}

body {
    font-family: Montserrat, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #2d2d2d;
    scroll-behavior: smooth;
    z-index: 1;
    background: #fff
}

li,
ol,
ul {
    list-style: none
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol,
p,
ul {
    margin: 0;
    font-weight: inherit;
    font-size: inherit
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

input[type=number] {
    -moz-appearance: textfield
}

.container {
    max-width: 1480px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%
}

.content-title {
    font-size: 24px;
    line-height: 120.83333%;
    font-weight: 700;
    text-align: center
}

.input {
    background: #fff;
    border: 1px solid #c4c4c4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 6px;
    padding: 0 20px;
    color: #2d2d2d;
    font-size: 18px
}

.input::-webkit-input-placeholder {
    font-size: 18px;
    color: #2d2d2d
}

.input::-moz-placeholder {
    font-size: 18px;
    color: #2d2d2d
}

.input:-ms-input-placeholder {
    font-size: 18px;
    color: #2d2d2d
}

.input::-ms-input-placeholder {
    font-size: 18px;
    color: #2d2d2d
}

.input::placeholder {
    font-size: 18px;
    color: #2d2d2d
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1001
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    -webkit-animation: preloader-rotate 2s infinite linear;
    animation: preloader-rotate 2s infinite linear
}

.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #2d2d2d;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    -webkit-animation: preloader-bounce 2s infinite ease-in-out;
    animation: preloader-bounce 2s infinite ease-in-out
}

.preloader__item:last-child {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes preloader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes preloader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes preloader-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes preloader-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.loaded_hiding .preloader {
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    opacity: 0
}

.loaded .preloader {
    display: none
}

.header {
    padding: 25px 0 30px;
    border-bottom: 1px solid #e2e2e2
}

.header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__link {
    background: #3e6ff6;
    border-radius: 50px;
    display: block
}

.header__logo {
    margin-right: 15px
}

.header__button {
    border-radius: 50px;
    height: 44px;
    max-width: 241px
}

.button {
    background: #3e6ff6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    border: 1px solid #3e6ff6
}

.button__link {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.button__text {
    color: #fff;
    font-size: 16px;
    line-height: 125%;
    font-weight: 600
}

.button:hover {
    background: 0 0
}

.button:hover .button__text {
    color: #3e6ff6
}

.preview {
    padding: 50px 0 70px
}

.preview__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 120px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    gap: 0 120px;
    grid-template-areas: 'content image'
}

.preview__content {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: content
}

.preview__title-wrapper {
    max-width: 460px
}

.preview__title {
    font-size: 48px;
    line-height: 127.08333%;
    font-weight: 700
}

.preview__subtitle {
    margin-top: 20px;
    font-size: 24px;
    line-height: 120.83333%;
    font-weight: 400
}

.preview__image {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: image
}

.preview-form {
    margin-top: 40px
}

.preview-form__tabs {
    height: 50px;
    margin-bottom: 40px;
    background: #e2eafe;
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    cursor: pointer
}
.parsley-error{
    border: 1px solid red;
}
.parsley-required{
    color: red;
    font-size: 14px;
}
.save-house-anim{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #8f8f8fe8;
}
.preview-form__tabs-button {
    background: #fff;
    -webkit-box-shadow: 4px 4px 20px rgba(62, 111, 246, .4);
    box-shadow: 4px 4px 20px rgba(62, 111, 246, .4);
    border-radius: 20px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3e6ff6;
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    width: 33.33%;
    text-transform: uppercase
}

.preview-form__tabs-button-empty {
    color: #9dafdd;
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    width: 33.33%;
    text-transform: uppercase;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.preview-form__tabs-button-empty_first::before {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 28px;
    width: 1px;
    background: rgba(255, 255, 255, .7);
    border-radius: 10px
}

.preview-form__input-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    gap: 0 20px;
    height: 60px
}
.preview-form__input-wrapper .preview-form__input{
    width: 100%;
    height: 100%;
}

.preview-form__input-wrapper>:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1
}

.preview-form__input-wrapper>:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3
}

.preview-form__button {
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    line-height: 122.22222%;
    font-weight: 700;
    text-transform: uppercase;
}

.preview-form__button:hover {
    color: #3e6ff6
}

.statistics {
    margin-top: 80px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 50px auto 50px auto;
    grid-template-columns: repeat(3, auto);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    gap: 0 50px;
    margin-top: 45px
}

.statistics>:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1
}

.statistics>:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3
}

.statistics>:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5
}

.statistics__title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.statistics__title {
    font-size: 36px;
    line-height: 122.22222%;
    font-weight: 700
}

.statistics__text {
    font-size: 16px;
    line-height: 125%;
    font-weight: 500
}

.statistics__rating {
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.statistics__rating-icon {
    margin-left: 5px
}

.how-works {
    background: -webkit-gradient(linear, left bottom, left top, from(#f3f6ff), to(#f3f6ff)), #fbfbfb;
    background: -o-linear-gradient(bottom, #f3f6ff, #f3f6ff), #fbfbfb;
    background: linear-gradient(0deg, #f3f6ff, #f3f6ff), #fbfbfb;
    padding: 49px 0
}

.how-works__body {
    margin-top: 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    gap: 0 40px
}

.how-works__body>:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1
}

.how-works__body>:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3
}

.how-works__body>:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5
}

.how-works__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
}

.how-works__image {
    margin-bottom: 18px
}

.how-works__item-title {
    font-size: 22px;
    line-height: 120%;
    font-weight: 600;
    color:#3E6FF6;
}

.how-works__item-text {
    margin-top: 9px;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400
}

.banner__wrapper {
    max-width: 1920px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url(../img/banner.jpg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 100% 50%
}

.banner__body-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 50%;
    padding: 108px 60px 108px 0;
    background: -o-linear-gradient(180.16deg, rgba(255, 255, 255, .95) .13%, rgba(247, 247, 247, .95) 99.85%);
    background: linear-gradient(269.84deg, rgba(255, 255, 255, .95) .13%, rgba(247, 247, 247, .95) 99.85%)
}

.banner__body {
    max-width: 545px;
    width: 100%;
    padding: 0 20px
}

.banner__title {
    font-size: 36px;
    line-height: 122.22222%;
    font-weight: 700
}

.banner__subtitle {
    margin-top: 15px;
    font-size: 18px;
    line-height: 127.77778%;
    font-weight: 400
}

.banner__button {
    max-width: 412px;
    height: 60px;
    border-radius: 6px;
    margin-top: 20px
}

.about {
    padding: 50px 0
}

.about .container {
    padding: 0;
    max-width: 1200px;
    position: relative
}

.about-slider__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin-top: 50px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding-bottom: 65px
}

.about-slider__item {
    background: #fff;
    -webkit-box-shadow: 0 4px 20px rgba(62, 111, 246, .2);
    box-shadow: 0 4px 20px rgba(62, 111, 246, .2);
    border-radius: 10px;
    max-width: 396px;
    width: 100%;
    padding: 20px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.about-slider__item-header {
    margin-bottom: 15px;
    background: #3e6ff6;
    border-radius: 20px;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 17px
}

.about-slider__item-body {
    margin-top: 15px
}

.about-slider__item-name {
    font-size: 16px;
    line-height: 125%;
    font-weight: 400;
    margin-bottom: 10px
}

.about-slider__item-title {
    font-size: 18px;
    line-height: 122.22222%;
    font-weight: 600;
    margin-bottom: 5px
}

.about-slider__item-comment {
    font-size: 16px;
    line-height: 125%;
    font-weight: 400;
    margin-bottom: 15px
}

.about-slider__item-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto
}

.about .swiper {
    position: initial
}

.about .swiper-button-next,
.about .swiper-button-prev {
    background: #fff;
    -webkit-box-shadow: 0 4px 20px rgba(62, 111, 246, .2);
    box-shadow: 0 4px 20px rgba(62, 111, 246, .2);
    border-radius: 10px;
    width: 56px;
    height: 56px
}

.about .swiper-button-next {
    right: -108px
}

.about .swiper-button-next::after {
    content: url(../img/arrow-next.svg);
    font-size: 17px
}

.about .swiper-button-prev {
    left: -108px
}

.about .swiper-button-prev::after {
    content: url(../img/arrow-prev.svg);
    font-size: 17px
}

.about .swiper-pagination {
    bottom: 0
}

.about .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e2eafe
}

.about .swiper-pagination-bullet-active {
    background: #3e6ff6
}

.quotes__wrapper {
    max-width: 1920px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.quotes__top-wrapper {
    background: url(../img/quotes-left.jpg) no-repeat center/cover;
    width: 42%
}

.quotes__top-wrapper-two {
    background: url(../img/quotes-right.jpg) no-repeat center/cover;
    width: 42%
}

.quotes__top {
    max-width: 776px;
    width: 100%;
    margin: auto;
    padding: 55px 30px;
    background: #fff
}

.quotes__title-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center
}

.quotes__bottom {
    margin: 50px auto;
    max-width: 1055px;
    padding: 0 20px;
    width: 100%;
    text-align: center
}

.quotes__bottom-text {
    font-size: 16px;
    line-height: 131.25%;
    font-weight: 300
}

.quotes__bottom-text:not(:last-child) {
    margin-bottom: 20px
}

.quotes-form {
    margin-top: 30px
}

.quotes-form__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 177px 15px 230px;
    grid-template-columns: 1fr 177px 230px;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    gap: 0 15px
}

.quotes-form__wrapper>:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1
}

.quotes-form__wrapper>:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3
}

.quotes-form__wrapper>:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5
}

.quotes-form__label {
    padding: 0;
    background: #fff;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    border: 1px solid #c4c4c4
}

.quotes-form__select {
    width: 100%;
    padding: 20px
}

.quotes-form__label-text {
    font-size: 18px;
    line-height: 127.77778%;
    font-weight: 400;
    color: #2d2d2d
}

.quotes-form__zip-code {
    max-width: 177px
}

.quotes-form__label-icon-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 47%;
    left: 23px
}
.quotes-form__input-box{
    width: 100%;
}
.quotes-form__input-box .error-text{
    position: absolute;
    top: 100%;
    padding-top: 0 !important;
}
@media screen and (max-width: 740px) {
    .quotes-form__input-box .error-text {
            top: auto;
            bottom: -20px !important;
        }
}
.quotes-form__input {
    width: 100%;
    height: 100%;
    padding: 20px 20px 20px 47px;
    border-radius: 6px;
    font-size: 18px;
    line-height: 127.77778%;
    color: #2d2d2d
}

.quotes-form__input::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 127.77778%;
    color: #2d2d2d
}

.quotes-form__input::-moz-placeholder {
    font-size: 18px;
    line-height: 127.77778%;
    color: #2d2d2d
}

.quotes-form__input:-ms-input-placeholder {
    font-size: 18px;
    line-height: 127.77778%;
    color: #2d2d2d
}

.quotes-form__input::-ms-input-placeholder {
    font-size: 18px;
    line-height: 127.77778%;
    color: #2d2d2d
}

.quotes-form__input::placeholder {
    font-size: 18px;
    line-height: 127.77778%;
    color: #2d2d2d
}

.quotes-form__button {
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    text-transform: uppercase;
    max-width: 230px
}

.quotes-form__button:hover {
    color: #3e6ff6
}

.footer {
    padding: 26px 0 20px;
    border-top: 1px solid #e2e2e2
}

.footer__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer__list {
    margin: 40px 0;
    display: -ms-grid;
    display: grid;
    gap: 0 100px;
    -ms-grid-columns: 1fr 100px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr
}

.footer__list>:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1
}

.footer__list>:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3
}

.footer__item {
    text-align: center
}

.footer__link {
    font-size: 16px;
    line-height: 125%;
    font-weight: 500;
    color: #a4a4a4
}

.footer__link:hover {
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    color: #3e6ff6;
    text-decoration: underline
}

.footer__text {
    font-size: 12px;
    line-height: 150%;
    font-weight: 500;
    color: #455b66
}

.privacy-terms{
    padding-top:60px;
    padding-bottom: 60px;
}

.privacy-terms h2{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 150%;
  text-align: center;
  color: #444444;
}

.privacy-terms h3{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  color: #444444;
  padding-top:20px;
  padding-bottom:20px;
}
.privacy-terms ul{
  padding-top:20px;
}
.privacy-terms ul li{
  padding:0 0 20px 20px;
}
.btn-scroll{
  background: #3E6FF6;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 66px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #FFFFFF;
  width:164px;
  height:46px;
}
.privacy-terms .btn-wrapper{
  display: flex;
  justify-content: center;
  padding-top:50px;
}
.privacy-terms .btn-wrapper img{
  margin-right:5px;
}
@media screen and (max-width:1479px) {
    .preview__body {
        gap: 0 90px
    }
}

@media screen and (max-width:1470px) {
    .about-slider__wrapper {
        padding-bottom: 200px
    }
    .about .swiper-button-next {
        right: 42%;
        bottom: 62px;
        top: initial
    }
    .about .swiper-button-prev {
        left: 42%;
        bottom: 62px;
        top: initial
    }
}

@media screen and (max-width:1400px) {
    .banner__wrapper {
        background-size: contain
    }
    .banner__body-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 60%
    }
}

@media screen and (max-width:1399px) {
    .quotes__top-wrapper {
        width: 30%
    }
    .quotes__top-wrapper-two {
        width: 30%
    }
}

@media screen and (max-width:1200px) {
    .preview__body {
        gap: 0 60px
    }
    .statistics__rating {
        margin-left: 5px
    }
    .how-works {
        padding: 56px 0
    }
    .about .swiper {
        padding-left: 20px
    }
}

@media screen and (max-width:1100px) {
    .quotes__top-wrapper {
        width: 10%
    }
    .quotes__top-wrapper-two {
        width: 10%
    }
}

@media screen and (max-width:1000px) {
    .header__body {
        max-width: 840px;
        margin: 0 auto
    }
    .preview {
        padding: 50px 0
    }
    .preview__body {
        position: relative;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto 0 auto;
        grid-template-rows: auto auto;
        gap: 0;
        grid-template-areas: 'content image' 'content content'
    }
    .preview__content {
        max-width: 646px
    }
    .preview__image {
        position: absolute;
        width: 40vw;
        right: 0
    }
    .preview-form__tabs {
        max-width: 550px
    }
    .quotes__bottom-text {
        font-size: 15px;
        line-height: 126.66667%;
        font-weight: 300
    }
    .preview__content {
        -ms-grid-row: 1;
        -ms-grid-row-span: 3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3
    }
    .preview__image {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }
}

@media screen and (max-width:992px) {
    .banner__body-wrapper {
        padding: 85px 25px 85px 0
    }
    .about .swiper-button-next {
        right: 35%
    }
    .about .swiper-button-prev {
        left: 35%
    }
}

@media screen and (max-width:899px) {
    .preview__image {
        width: 30vw;
        top: 50px
    }
}

@media screen and (max-width:870px) {
    .quotes__wrapper {
        background: url(../img/quotes-right.jpg) no-repeat right/cover;
        padding: 50px 0
    }
    .quotes__top-wrapper {
        display: none
    }
    .quotes__top-wrapper-two {
        display: none
    }
    .quotes__top {
        max-width: initial;
        padding: 55px 20px
    }
}

@media screen and (max-width:768px) {
    .header {
        padding: 15px 0
    }
    .preview-form__tabs {
        max-width: 470px
    }
    .how-works {
        padding: 38px 0
    }
    .how-works__body {
        gap: 25px 0;
        margin-top: 30px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: auto 25px auto 25px auto;
        grid-template-rows: repeat(3, auto)
    }
    .how-works__body>:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
    .how-works__body>:nth-child(2) {
        -ms-grid-row: 3;
        -ms-grid-column: 1
    }
    .how-works__body>:nth-child(3) {
        -ms-grid-row: 5;
        -ms-grid-column: 1
    }
    .banner__wrapper {
        padding-top: 280px;
        background-size: cover
    }
    .banner__body-wrapper {
        width: 100%;
        padding: 44px 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center
    }
    .banner__button {
        margin: 20px auto 0
    }
}

@media screen and (max-width:740px) {
    .quotes__top {
        padding: 40px 20px
    }
    .quotes-form__wrapper {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: 1fr 15px 1fr 15px 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 15px 0
    }
    .quotes-form__wrapper>:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
    .quotes-form__wrapper>:nth-child(2) {
        -ms-grid-row: 3;
        -ms-grid-column: 1
    }
    .quotes-form__wrapper>:nth-child(3) {
        -ms-grid-row: 5;
        -ms-grid-column: 1
    }
    .quotes-form__zip-code {
        max-width: initial
    }
    .quotes-form__button {
        max-width: initial
    }
}

@media screen and (max-width:699px) {
    .preview__subtitle {
        font-size: 20px;
        line-height: 120%;
        font-weight: 400;
        max-width: 320px
    }
    .preview__image {
        display: none
    }
    .preview-form__input-wrapper {
        gap: 0 10px
    }
    .statistics {
        gap: 0 35px
    }
}

@media screen and (max-width:576px) {
    .header__logo {
        max-width: 167px;
        height: auto
    }
    .preview-form__tabs {
        max-width: 100%;
        margin-bottom: 35px
    }
    .preview-form__input-wrapper {
        height: auto;
        gap: 20px 0;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: 60px 20px 60px;
        grid-template-rows: 60px 60px
    }
    .preview-form__input-wrapper>:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
    .preview-form__input-wrapper>:nth-child(2) {
        -ms-grid-row: 3;
        -ms-grid-column: 1
    }
    .statistics__title {
        font-size: 22px;
        line-height: 122.72727%;
        font-weight: 700
    }
    .statistics__text {
        font-size: 15px;
        line-height: 126.66667%;
        font-weight: 500
    }
    .statistics__rating {
        margin-left: 0
    }
    .statistics__rating-icon {
        width: 16px;
        height: auto
    }
    .how-works {
        padding: 50px 0
    }
    .how-works__body {
        margin-top: 31px
    }
}

@media screen and (max-width:480px) {
    .header__logo {
        max-width: 133px
    }
    .header__button {
        max-width: 174px
    }
    .preview-form__tabs-button {
        font-size: 23px;
        line-height: 130.43478%;
        font-weight: 600
    }
    .preview-form__tabs-button-empty {
        font-size: 23px;
        line-height: 130.43478%;
        font-weight: 600
    }
    .statistics {
        gap: 0 14px
    }
    .banner__wrapper {
        padding-top: 220px
    }
    .about .swiper-button-next {
        right: 20%
    }
    .about .swiper-button-prev {
        left: 20%
    }
    .footer {
        padding: 44px 0 20px
    }
    .footer__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        -ms-grid-rows: 1fr 50px 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 50px 0
    }
    .footer__list>:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
    .footer__list>:nth-child(2) {
        -ms-grid-row: 3;
        -ms-grid-column: 1
    }
}

@media screen and (max-width:479px) {
    .preview__title {
        font-size: 36px;
        line-height: 127.77778%;
        font-weight: 700
    }
    .preview__subtitle {
        font-size: 15px;
        line-height: 120%;
        font-weight: 400
    }
    .banner__title {
        font-size: 26px;
        line-height: 123.07692%;
        font-weight: 700
    }
}

.webp .banner__wrapper {
    background-image: url(../img/banner.webp)
}

.webp .quotes__top-wrapper {
    background: url(../img/quotes-left.webp) no-repeat center/cover
}

.webp .quotes__top-wrapper-two {
    background: url(../img/quotes-right.webp) no-repeat center/cover
}

@media screen and (max-width:870px) {
    .webp .quotes__wrapper {
        background: url(../img/quotes-right.webp) no-repeat right/cover
    }
}

.dn {
    display: none
}

.site-header {
    padding: 16px 0
}

.site-header .logo {
    display: inline-block;
    max-width: 226px
}

.steps__wrap {
    background: #fff;
    border-radius: 24px;
    margin: 0 auto;
    max-width: 613px;
    padding: 19px 0
}

.steps__wrap .steps__title {
    margin-bottom: 20px;
    text-align: center
}

.steps__wrap .steps__title .h2 {
    color: #563434;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 10px
}

.steps__wrap .steps__title .h2 span {
    color: #3f6ff7;
    font-weight: 700
}

.steps__wrap .steps__title p {
    color: #563434;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px
}

.steps__wrap .tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 467px;
    min-height: 380px;
    padding: 20px 0 10px
}

#email_phone_with_promo_tab .bottom-area{
    padding: 15px 0;
}

.steps__wrap .tab .top-area{
    min-height: 202px;
}

.steps__wrap .tab .h4 {
    color: #535353;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    text-align: center
}

.steps__wrap .btns__area {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.steps__wrap .btn {
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    height: 44px;
    line-height: 20px
}

.steps__wrap .prev-btn {
    background: #fff;
    border: 2px solid #c4c4c4;
    color: #c4c4c4;
    margin-right: 10px;
    max-width: 94px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%
}

.steps__wrap .prev-btn:hover {
    background: #fff;
    border: 2px solid #3e6ff6;
    color: #3e6ff6;
    opacity: .7
}

.steps__wrap .next-btn {
    background: #3e6ff6;
    color: #fff;
    max-width: 238px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%
}

.steps__wrap .next-btn:hover {
    background: transparent;
    border: 1px solid #3e6ff6;
    color: #3e6ff6
}

.steps__wrap .radio__btns-wrap {
    -ms-grid-columns: 1fr 8px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin: 10px auto 0;
    max-width: 302px
}

.steps__wrap .radio__btns-wrap label {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-items: center;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    max-width: 147px;
    opacity: .3;
    padding: 23px 32px 10px
}

.steps__wrap .radio__btns-wrap label span {
    color: #535353;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    margin-top: 10px
}

.steps__wrap .radio__btns-wrap input[type=radio] {
    display: none
}

.steps__wrap .radio__btns-wrap input[type=radio]:checked+label {
    border: 2px solid #7095fa;
    -webkit-box-shadow: 0 4px 18px rgba(62, 111, 246, .2);
    box-shadow: 0 4px 18px rgba(62, 111, 246, .2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 1
}

.steps__wrap .radio__btns-wrap input[type=radio]:checked+label span {
    font-weight: 700
}

.steps__wrap .styled__select-inline {
    -ms-grid-columns: 50% 8px 20% 8px 30%;
    -ms-flex-pack: distribute;
    display: -ms-grid;
    display: grid;
    gap: 8px;
    grid-template-columns: 50% 20% 30%;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 316px
}

.steps__wrap .styled__select {
    background: url("../img/select-arrow.png") no-repeat 96% center #fff;
    border: 1px solid #c4c4c4;
    border-radius: 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #414042;
    display: block;
    font-size: 14px;
    font-weight: 400;
    height: 44px;
    line-height: 17px;
    margin: 10px auto 25px;
    max-width: 253px;
    padding-left: 15px;
    width: 100%;
    appearance: none;
}

.steps__wrap input[type=number] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield
}

.steps__wrap input::-webkit-inner-spin-button,
.steps__wrap input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.steps__wrap .input__wrap-item {
    margin: 10px auto 25px;
    max-width: 253px
}

.steps__wrap .input__wrap-item input {
    background: #fff;
    border: 1px solid #c4c4c4;
    border-radius: 6px;
    height: 44px;
    padding: 0 0 0 12px;
    width: 100%
}

.steps__wrap .agree-text {
    color: #535353;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin: 0 auto;
    max-width: 275px;
    padding-left: 21px;
    position: relative
}

.steps__wrap .agree-text input {
    border: 1px solid #7095fa;
    border-radius: 3px;
    cursor: pointer;
    left: 0;
    position: absolute;
    top: 0
}

.steps__wrap .final-text__wrap {
    color: #535353;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin: 10px auto;
    max-width: 255px;
    text-align: center;
    display: block;
}

.steps__wrap .final-text__wrap a {
    color: #587de4;
    font-weight: 500
}

.steps__wrap .secure__links ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.steps__wrap .secure__links ul li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 10px;
    position: relative
}

.steps__wrap .secure__links ul li:after {
    background: #e2eafe;
    content: "";
    display: block;
    height: 11px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px
}

.steps__wrap .secure__links ul li:last-child:after {
    display: none
}

.steps__wrap .secure__links ul li img {
    margin-right: 7px
}

.steps__wrap .secure__links ul li a {
    color: #587de4;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    cursor:default;
}

.steps__wrap .steps__bar {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #e2eafe;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 26px;
    margin: 0 auto;
    max-width: 384px;
    padding: 0 10px
}

.steps__wrap .steps__bar_line {
    background: -o-linear-gradient(179.98deg, #3e6ff6 .69%, rgba(62, 111, 246, .32) 99.99%);
    background: linear-gradient(270.02deg, #3e6ff6 .69%, rgba(62, 111, 246, .32) 99.99%);
    border-radius: 36px;
    height: 7px;
    -webkit-transition: width .5s ease-in;
    -o-transition: width .5s ease-in;
    transition: width .5s ease-in
}

.steps__wrap .steps__bar_number {
    color: #535353;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    margin-left: 5px;
    min-width: 34px
}

@media screen and (max-width:400px) {
    .steps__wrap .steps__title .h2 {
        font-size: 22px;
        line-height: 25px
    }
    .steps__wrap .steps__title p {
        font-size: 14px;
        line-height: 16px
    }
    .steps__wrap .final-text__wrap {
        margin-top: 40px
    }
}

@media screen and (max-width:360px) {
    .steps__wrap .input__wrap-item,
    .steps__wrap .styled__select {
        max-width: 100%
    }
}

.info-text__wrap {
    color: #563434;
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    margin: 10px auto 30px;
    max-width: 1000px;
    text-align: center
}

.info-text__wrap .logo-in-text {
    display: inline;
    max-width: 150px
}

@media screen and (max-width:1000px) {
    .info-text__wrap {
        max-width: 860px
    }
}

@media screen and (max-width:400px) {
    .info-text__wrap {
        font-size: 14px
    }
}

.typ__wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: 150px 0 170px
}

.typ__wrap .inner-box {
    text-align: center
}

.typ__wrap .inner-box img {
    display: inline
}

.typ__wrap .inner-box .h3 {
    color: #3e6ff6;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    text-align: center;
    text-transform: uppercase
}

.typ__wrap .inner-box p {
    color: #444;
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    margin: 3px auto 0;
    max-width: 359px;
    text-align: center
}

.typ__wrap .inner-box p a {
    color: #587de4;
    font-weight: 700;
    cursor:default;
}

#phone_tab .bottom-area{
    padding-top:20px;
    padding-bottom:20px;
}

#save-modal .img-wrap img {
    margin: 0 auto;
}

#save-modal h2,
#save-modal p {
    text-align: center;
}

#save-modal h2 {
    font-size: 1.5em;
}