@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.header *,
.main *,
.footer *{
    box-sizing:border-box;
}

.container {
    width: 100%;
    max-width: 425px;
    margin-left: auto;
    margin-right: auto;

}

.container .innerCont{
    padding-left: 20px;
    padding-right: 20px
}

@media only screen and (max-width: 375px) {
    .container .innerCont{
        padding-left: 20px;
        padding-right: 20px
    }
}

html{
    height: 100%;
}
.main{
    overflow: auto hidden;
}
body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #0094FF;
    max-width: 100vw;
    background: #f7f7fa;
}

img {
    width: 100%;
}

/* HEADER */
.header{
    background: #fff;
    padding-top: 12px;
    padding-bottom: 12px;
    z-index: 6;
}
.header .header_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header_wrapper .header_logo{}
.header .header_wrapper .header_logo a{
    display: flex;
    width: 112px;
}
.header .header_wrapper .header_logo a img{
    max-width: 100%;
    width: 100%;
}
.header .header-phone {
    position: relative;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    margin-right: 0;
}
.header .header-phone a {
    color: #444;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
    text-decoration-line: none;
}
.header .header-button button {
    position: relative;
    background: #fad634;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    padding: 10px 22px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .header-phone span {
    display: inline-block;
    color: #828181;
    text-align: right;
    font-size: 9px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.12px;
}
.header .header_wrapper .header_text {
    position: relative;
    background: #fff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #0193FF;
    padding: 5px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}
.header .header_wrapper .header_text span {
    position: absolute;
    bottom: -13px;
    right: 0;
    font-size: 12px;
    font-weight: 500;
    color: #32363a;
    background: #ffd91c;
    border-radius: 4px;
    padding: 1px 7px;
    transform: rotate(-2deg) translateX(3px);
}
@media (max-width: 350px) {
    .header .header-phone a {
        font-size: 11px;
    }
    .header .header-phone span {
        font-size: 8px;
    }
    .header .header_wrapper .header_logo a {
        width: 100px;
    }
    .header .header_wrapper .header_text {
        font-size: 12px;
    }
}
.header .header_wrapper .header_burger{
    margin-bottom: 5px;
}
.header .header_wrapper .header_burger:hover{
    cursor: pointer;
}
.header .header_wrapper .header_burger .hamburger{}
.header .header_wrapper .header_burger .hamburger span{
    width: 39px;
    height: 5px;
    background: #000;
    border-radius: 2px;
    margin-bottom: 7px;
    display: block;
}
.header .header_wrapper .header_burger .hamburger span:last-child{
    margin-bottom: 0;
}

/* BUTTON */
.main .buttonWrapper{
    text-align: center;
    margin-top: 20px;
}
.main .buttonWrapper .button{
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.main .buttonWrapper .button a,
.main .buttonWrapper .button button{
    position: relative;
    background: #fad634;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    padding: 16px 20px 18px;
    width: 100%;
    height: 52px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
/*    box-shadow: 2px 2px 5px rgb(7 211 82 / 50%);*/
/*    -webkit-animation: pulse 1.8s infinite;*/

}
.main .buttonWrapper .button a img{
    margin-right: 8px;
    width: 30px;
}
.main .buttonWrapper .button .card {
    width: 38px;
    margin-right: 10px;
}
.main .buttonWrapper .button .emoji {
    width: 50px;
    height: 50px;
    position: absolute;
    top: -23px;
    right: -10px;
    -webkit-animation: scaling 1.5s infinite;
    animation: scaling 1.5s infinite;
}
@keyframes scaling {
    0% {
        transform: scale(.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(.9);
    }
}
.main .buttonWrapper .button button:hover{
    cursor: pointer;
    -webkit-animation: none;
}
.main .buttonWrapper .button button:focus{
    outline: none;
}
.main .buttonWrapper .button .money-btn,
.main .buttonWrapper .button .money-btn-two {
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #000;
    background: #fefefe;
    border-radius: 5px;
    padding: 6px 8px;
}
@media only screen and (max-width: 375px) {
    .main .buttonWrapper .button a,
    .main .buttonWrapper .button button {
        font-size: 17px;
        letter-spacing: 0.5px;
    }
    .main .buttonWrapper .button .money-btn,
    .main .buttonWrapper .button .money-btn-two {
        font-size: 17px;
    }
}

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 10px rgb(7 211 82 / 15%)
  }
    100% {
    @include transform(scale(.9));
    box-shadow: 0 0 0 10 rgb(7 211 82 / 50%)
  }
}

.main .buttonWrapper .button .action{
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
    color: #363636;
    font-style: italic;
    margin-top: 10px;
}
.main .buttonWrapper .button .arrow{
    position: absolute;
    right: -23px;
    top: 26px;
}

/* MAIN */
.main{
    height: 100%;
    padding-bottom: 0;
    padding-top: 30px;
}
.main .innerWrapper {
    border-radius: 23px 23px 0 0;
    padding: 0 15px;
}
.main .first_page{
/*    padding-top: 30px;*/
}
.main .intro {
    position: relative;
    padding: 0 20px;
    margin-bottom: 28px;
}
.main .intro .img-holder {
    position: absolute;
    max-width: 160px;
    bottom: -30px;
    right: 0;
    z-index: -1;
}
.main .intro .mainTitle{
    position: relative;
    z-index: 50;
    font-style: normal;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}
.main .first_page .mainSubtitle {
    display: inline-block;
    font-size: 16px;
    color: #3A3838;
}

@media only screen and (max-width: 375px) {
    .main .mainSubtitle {
        font-size: 16px;
    }
    .main .first_page .mainTitle{
        font-size: 20px;
    }
}
.main .first_page .sliderWrapper{
    position: relative;
    border-radius: 12px 12px 0 0;
    background: #FFF;
    padding: 20px 15px;
}
.main .first_page .sliderWrapper .sliderTitle {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
}
.main .first_page .sliderWrapper .slider-items{}
.main .first_page .sliderWrapper .slider-items .slider-item{
/*    margin-bottom: 25px;*/
}
.main .first_page .sliderWrapper .slider-items .slider-item.days {
    margin-bottom: 0;
}
.main .first_page .sliderWrapper .slider-items .slider-item .title{
    font-size: 14px;
    line-height: 16px;
    color: #363636222;
    font-weight: 400;
    margin-bottom: 6px;
}
.main .first_page .sliderWrapper .slider-items .labels{
    margin-top: 9px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.main .first_page .sliderWrapper .slider-items .labels .left-label{
    width: auto;
    font-size: 12px;
    line-height: 14px;
    color: #B3B3B3;
    font-weight: 400;
}
.main .first_page .sliderWrapper .slider-items .labels .right-label{
    width: auto;
    font-size: 12px;
    line-height: 14px;
    color: #B1B1B1;
    font-weight: 400;
    text-align: right;
}

.main .first_page .slider-item .input-title {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    background: #fff;
    padding-bottom: 12px;
}

.main .first_page .informationWrap {
    background: #fff;
    padding: 0 15px 15px 15px;
}
.main .first_page .informations{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 15px 0 15px 0;
    border-radius: 10px;
}
.main .first_page .informations .information{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.main .first_page .informations .information .title{
    font-size: 12px;
    line-height: 12px;
    color: #000;
    font-weight: 300;
    margin-bottom: 4px;
}
.main .first_page .informations .information .money{
    border-radius: 3px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    font-weight: 400;
    padding: 9px 12px 0 9px;
}
@media only screen and (max-width: 375px) {
    .main .first_page .informations .information .money{
        padding: 9px 12px 7px;
    }
    /*.main .first_page .sliderWrapper .img-holder {
        width: 170px;
        top: -140px;
        right: -25px;
    }*/
}
.main .first_page .informations .information.take .money{
    color: #363636;
}
.main .first_page .informations .information.percent .money{
    color: #363636;
}
.main .first_page .informations .information.give .money{
    color: #363636;
}
.main .bottom_text{
    margin-top: 31px;
    padding-bottom: 30px;
}
.main .bottom_text p{
    text-align: justify;
    font-weight: 300;
    font-size: 10px;
    line-height: 14px;
    color: #1f1f1f;
}
.main .bottom_text p.big {
    font-size: 16px;
}

.main .second_page {
    padding-top: 0px;
}
.main .second_page .mainTitle{
    position: relative;
    z-index: 50;
    font-style: normal;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}
.main .second_page .intro {
    padding-top: 0;
}
.main .second_page .form_wrapper .img-holder {
    width: 185px;
    position: absolute;
    top: -140px;
    right: 0;
    z-index: -1;
}
..main .second_page .form_wrapper{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 24px 20px;
}
.main .second_page .form_wrapper .phone-wrapper{
    padding: 25px 20px 50px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 4px 4px 13px 0px rgb(27 0 222 / 15%);
}
.main .second_page .form_wrapper .phone-wrapper .label{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #222222;
    margin-bottom: 12px;
}
.main .second_page .form_wrapper .phone-wrapper .label span {
    color: red;
}
.main .second_page .form_wrapper .phone-wrapper input{
    background: #F6F6F6;
    border: 1px solid #E7E6E7;
    height: 45px;
    font-size: 16px;
    width: 100%;
    padding-left: 56px;
    padding-right: 19px;
}
.main .second_page .form_wrapper .phone-wrapper .input-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 47px;
    height: 100%;
    width: 1px;
    background: #E7E6E7;
}
.main .second_page .form_wrapper .phone-wrapper .input-flag {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 23px;
    height: 23px;
}
.main .second_page .form_wrapper .phone-wrapper input:focus{
    outline: none;
}
.main .second_page .form_wrapper .phone-wrapper input::placeholder{
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #5C5C5C;
}
.main .second_page .form_wrapper .buttonWrapper{
    margin-top: 20px;
}

.main .third_page {
    overflow: hidden;
}
.main .third_page .intro {
    margin-bottom: 12px;
}
.main .third_page .innerCont {
    padding-left: 15px;
    padding-right: 15px;
}
.main .third_page .mainTitle{
    position: relative;
    z-index: 50;
    font-style: normal;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}
.main .third_page .offers_wrapper{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main .third_page .offers_wrapper .img-holder{
    position: absolute;
    width: 150px;
    top: -120px;
    right: -35px;
}
.main .third_page .offers_wrapper .offer {
    width: calc(50% - 5px);
    padding: 12px 8px;
    position: relative;
    margin-top: 25px;
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.15);
    border-radius: 12px;

}
.main .third_page .offers_wrapper .offer > a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.main .third_page .offers_wrapper .offer .label{
    font-size: 9px;
    font-weight: 400;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    width: 132px;
    text-align: center;
    transform: translateX(-50%);
    top: 0px;
    padding: 0 9px;
    border-radius: 0 0 9px 9px;
    text-transform: uppercase;
}
.main .third_page .offers_wrapper .offer .label .rubick{
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    right: -15px;
}
.main .third_page .offers_wrapper .offer .label.orange{
    background: #FF9E01;
}
.main .third_page .offers_wrapper .offer .label.purple{
    background: #af5bf8;
}
.main .third_page .offers_wrapper .offer .label.green{
    background: #00D352;
}
.main .third_page .offers_wrapper .offer .label.dark{
    background: #444;
}
.main .third_page .offers_wrapper .offer .offer-bg{
    width: 100%;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110%;
    margin-bottom: 20px;
    text-decoration: none;
}
@media only screen and (max-width: 375px) {
    .main .third_page .offers_wrapper .offer .offer-bg{
        background-size: contain;
    }
}
@media only screen and (min-width: 425px) {
    .main .third_page .offers_wrapper .offer .offer-bg{
        background-size: contain;
    }
}
.main .third_page .offers_wrapper .offer .body-card-logo {
    text-align: center;
}
.main .third_page .offers_wrapper .offer .offer-logo {
    width: 90%;
    margin: 0 auto;
}

.main .third_page .offers_wrapper .offer .offer-info {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #E7ECF0;
    padding-top: 17px;
}
.main .third_page .offers_wrapper .offer .offer-info li {
    font-size: 12px;
    color: #2D4562;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main .third_page .offers_wrapper .offer .offer-info li:last-child {
    margin-bottom: 0;
}
.main .third_page .offers_wrapper .offer .offer-info li span {
    display: block;
    font-weight: 400;
    color: #636363;
    font-size: 12px;
}
.main .third_page .offers_wrapper .offer .offer-info li span.bold {
    font-weight: 600;
    font-size: 12px;
    color: #000;
}
.main .third_page .offers_wrapper .offer .rating{}
.main .third_page .offers_wrapper .offer .rating .title{
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #113C40;
}
.main .third_page .offers_wrapper .offer .rating .bar-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 8px auto 0;
}
.main .third_page .offers_wrapper .offer .rating .bar-wrap .bar-top{
    height: 17px;
    width: 90%;
    background: #CDCDCE;
    border-radius: 54px;
}
.main .third_page .offers_wrapper .offer .rating .bar-wrap .bar-top .inner{
    background: #58B239;
    border-radius: 54px;
    height: 17px;
}
.main .third_page .offers_wrapper .offer .rating .bar-wrap .value{
    font-size: 14px;
    line-height: 16px;
    color: #BBBBBB;
    margin-left: 7px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}
.main .third_page .offers_wrapper .offer .bank-card{
    margin-top: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.main .third_page .offers_wrapper .offer .bank-card img{
    margin-right: 7px;
}
.main .third_page .offers_wrapper .offer .bank-card span{
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #113C40;
}
.main .third_page .offers_wrapper .offer .text-data{
    margin-bottom: 8px;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    color: #406F3C;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}
.main .third_page .offers_wrapper .offer .text-data .bold{
    font-weight: 700;
}
.main .third_page .offers_wrapper .offer .general_button_wrapper{
    margin-top: 17px;
}
.main .third_page .offers_wrapper .offer .general_button_wrapper .button{
    width: 100%;
    position: relative;
}
.main .third_page .offers_wrapper .offer .general_button_wrapper .btn-main{
    position: relative;
    background: #fad634;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 12.5px;
    letter-spacing: .2px;
    height: 45px;
    font-style: normal;
    font-weight: 700;
    padding: 12px 10px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
/*    box-shadow: 2px 2px 12px rgba(65,107,255,.5);*/
/*    -webkit-animation: pulse 1.8s infinite;*/
}
.main .third_page .offers_wrapper .offer .general_button_wrapper .approve-credits {
    width: 90%;
    margin: 5px auto 0;
    font-size: 11px;
    color: #5f5f5f;
    text-align: center;
}
.main .general_button_wrapper .button .approve-credits span {
    display: inline-block;
}
@media only screen and (max-width: 375px) {
    .main .third_page .offers_wrapper .offer .general_button_wrapper .button{
        width: 100%;
    }
}
@media (max-width: 350px) {
    .main .third_page .offers_wrapper .offer .offer-info li span {
        font-size: 12px;
    }
    .main .third_page .offers_wrapper .offer .offer-info li span.bold {
        font-size: 12px;
    }
}
/* SLIDER */
.irs--round{
    height: 22px !important;
}
.irs--round .irs-line{
    height: 6px !important;
    background: #E7E7E9 !important;
    border-radius: 0 0 3px 3px !important;
    top: 0px !important;
}
.irs--round .irs-single{
    display: none !important;
}
.irs--round .irs-bar{
    height: 6px !important;
    border-radius: 0 0 3px 3px !important;
    background: #fad634!important;
    top: 15.4px !important;
    z-index: 2;
}
.irs--round .irs-bar--single{
    border-radius: 0 0 0 3px !important;
}
.irs--round .irs-handle{
    background: #fad634!important;
    /* box-shadow: none !important; */
    border: 0 !important;
    top: 8.5px !important;
    width: 20px !important;
    height: 20px !important;
    box-shadow: none !important;
}
.irs--round .irs-handle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    z-index: 999;
}
.slider-item {
    position: relative;
}
.slider-item .irs {
    width: 100%;
    position: absolute;
    bottom: 0;
}
.slider-item input {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 56px;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    background: #f4f4f4;
    border: 0;
    border-radius: 3px;
    outline: none;
    text-align: center;
}
/* FOOTER */
.footer{
    background: #fff;
    box-shadow: 0 4px 35px rgba(0, 81, 79, 0.44);
    padding-bottom: 14px;
    padding-top: 14px;
    margin-top: auto;
}
.footer .footer_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer_wrapper .copy{}
.footer .footer_wrapper .copy span{
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #000;
}
.footer .footer_wrapper .footer_logo{}
.footer .footer_wrapper .footer_logo a{
    display: block;
}
.footer .footer_wrapper .footer_logo a img{
    width: 100px;
}
@media only screen and (max-width: 375px) {
    .footer .footer_wrapper .footer_logo a img{
        width: 100px;
    }
}


/* MOBILE NAV */
.mobile-menu{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 3;
    transform: translateY(-100%);
}
.mobile-menu .mobile-inner{
    margin-top: 27px;
}
.mobile-menu .mobile-inner .mobile-items{}
.mobile-menu .mobile-inner .mobile-items .mobile-item{}
.mobile-menu .mobile-inner .mobile-items .mobile-item a{
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #363636;
    display: block;
    font-weight: 400;
}

/* ANIMATION */
.slide-top {
    -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}


.slide-bottom {
    -webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.days-title {
    /*display: flex;
    justify-content: space-between;*/
}

.money-title {
    /*display: flex;
    justify-content: space-between;*/
}

.days-current {
    color: #363636;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.money-current {
    color: #363636;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.input-wrapper {
    position: relative;
}

.phone-error {
    display: none;
    position: absolute;
    left: 0;
    bottom: -18px;
    color: #f00;
    font: 600 14px 'Roboto', sans-serif;
}

.features {
    padding-top: 50px;
}
.features .features-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 12px;
    text-align: center;
}
.features .features-wrap img {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}
.features .features-wrap .features-text {
    padding-left: 15px;
}
.features .features-wrap .features-text .title {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 8px;
}
.features .features-wrap .features-text p {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
}

.questions {
    padding-top: 50px;
}
.questions .questions-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-bottom: 18px;
}
.questions .questions-wrap .questions-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    margin-left: 0;
}
.questions .questions-wrap img {
    width: 105px;
}
@media (max-width: 350px) {
    .questions .questions-wrap img {
        width: 100px;
    }
}
.accordion {
    width: 100%;
    margin-bottom: 30px;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 12px;
    background: #FFF;
}

.accordion-header {
    border-radius: 12px;
    background: #FFF;
    padding: 15px 15px 15px 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.accordion-header .accordion-title {
    width: 70%;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 106.3%;
}
.accordion-header .accordion-title span {
    font-weight: 400;
}
.accordion-header .arrow-accord {
    display: flex;
    width: 16px;
    height: 9px;
    transition: .3s ease-in;
}

.accordion-item.active .arrow-accord {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 10px 20px;
    background: #fff;
    border-top: 1px solid #fad635;
}
.accordion-content p {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 106.3%;
}

.slider-container {
    padding-top: 60px;
    position: relative;
    /*  width: 400px;*/
    margin: 0 auto;
}
.slider {
    display: flex;
    width: 100%;
    margin-top: 25px;  
    /*  overflow: hidden;*/
}
.slide {
    flex: 0 0 100%;
    text-align: center;
    transition: opacity 0.3s ease-in-out;
    padding: 0 25px 20px 25px;
    background: #fff;
    border-radius: 18px;
    margin: 0 15px;
}
.user-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 20px auto;
}
.user-name {
    margin: 10px 0;
}
.user-review {
    margin: 0;
}
.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: absolute;
    top: 50px;
    right: 15px;
    font-size: 20px;
}
.prev-slide,
.next-slide {
    cursor: pointer;
    padding: 5px;
}
.section-title .title {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}


.mainSeo {
    padding-top: 50px;
}
.mainSeo .section-title h1,
.mainSeo .section-title h2 {
    color: #000;
    /* text-shadow: 1px 1px 9px rgb(0 0 0 / 30%); */
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 10px;
    margin-left: 0;
}
.mainSeo p {
    color: #000;
    font-size: 12px;
}
.mainSeo ul {
    padding-left: 25px;
    font-size: 12px;
    color: #000;
}
.mainSeo ul li {
    list-style: circle;
    margin-bottom: 5px;
}
.mainSeo ul li:last-child {
    margin-bottom: 0;
}
@media (max-width: 1200px) {
    .mainSeo .section-title h1 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .mainSeo .section-title h1 {
        font-size: 18px;
    }
    .mainSeo .section-title h1 br {
        display: none;
    }
}


/* Modal Details Styles */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 99999;
}
.modal-content {
    background-color: #363636;
    padding: 30px 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -50px
}
.modal-content .close {
    position: absolute;
    top: 2px;
    right: 7px;
    padding: 0;
    color: #7f7f7f;
    margin: 0;
    cursor: pointer;
    font-size: 30px;
    display: inline-block
}

.modal-details .modal-content {
    padding: 15px 30px;
    width: calc(100% - 70px);
    background-color: #fff;
    -webkit-box-shadow: 0 0 25px rgb(255 255 255 / 30%);
    box-shadow: 0 0 25px rgb(255 255 255 / 30%)
}

.modal-details .modal-logo {
    max-width: 150px;
    margin: 0 auto
}

.modal-details ul.list-style-1 {
    text-align: center;
    padding-top: 15px
}
.modal-details ul.list-style-1 li {
    position: relative;
    padding-right: 15px;
    text-align: center;
    font-size: 18px
}
.btn-wrapper,
.modal-details ul.list-style-2 {
    text-align: center
}

.btn-main,
.btn-offer-details {
    text-align: center;
    font-size: 12px;
}
.modal-details .modal-heading {
    text-align: center;
    font-size: 14px
}
.modal-details .modal-heading {
    margin-bottom: 5px
}

ul {
    margin: 0;
    padding: 0;
}
.modal-details ul.list-style-1 li:last-child {
    padding-right: 0
}
.modal-details ul.list-style-1 li:first-child:before {
    content: '';
    position: absolute;
    right: 5px;
    width: 1px;
    height: 90%;
    background: #babcbd;
}
.modal-details ul.list-style-2 li {
    position: relative;
    text-align: center;
    padding: 0 4px;
    font-size: 14px;
    margin-bottom: 2px
}
.modal-details ul.list-style-1 li,
.modal-details ul.list-style-2 li {
    font-weight: 500;
    color: #343333;
    display: inline-block
}
.modal-details ul.list-style-1 li span,
.modal-details ul.list-style-2 li span {
    font-weight: 700;
    color: #dec038;
}

.modal-details .modal-offer-links {
    text-align: center;
    margin-top: 8px
}

.modal-details .modal-offer-links a {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    text-decoration: none;
    color: #888888;
}

.modal-details .modal-button {
    margin-top: 25px
}

.btn-offer-details {
    display: inline-flex;
    position: relative;
    user-select: none;
    cursor: pointer;
    color: #0c68f0;
    text-decoration: underline;
    margin: 18px 0 0px 0px;
}

.icon,
.triangle-down {
    display: inline-block
}

.triangle-down {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -1px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid #003f88;
    border-width: 0 1.5px 1.5px 0;
    height: 6px;
    width: 6px
}

.icon {
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background-size: 100%;
    background-repeat: no-repeat
}

.icon.icon-info {
    background-image: url('../img/ico-i.svg');
    margin-top: -3px;
    margin-right: 4px
}

.icon.icon-link-arrow {
    width: 12px;
    height: 12px;
    background-image: url('../img/ico-link-arrow.svg');
    margin-top: -2px;
    margin-left: 5px
}

.btn-main {
    position: relative;
    background: #fad634;
    border-radius: 8px;
    border: none;
    width: 100%;
    height: 55px;
    line-height: 19px;
    color: #000;
    height: 60px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
/*    box-shadow: 0 0 0 0 rgba(90, 153, 212, .5);*/
/*    -webkit-animation: 2s infinite pulse;*/
    text-decoration: none
}


@media (max-width:767px) {
    .modal-details .modal-content {
        width: calc(100% - 30px)
    }
}
@media (max-width:350px) {
    .modal-details .modal-content {
        padding: 15px;
        margin-top: 0
    }
}