@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

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

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

}

.container .inner-cont{
    padding-left: 26px;
    padding-right: 26px
}

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

html{
    height: 100%;
}
.main{
    overflow: hidden;
}
body{
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
/*    height: 100%;*/
/*    overflow-y: scroll;*/
    background: #1cc995;
/*    background: url('../img/bg.webp') 50% 50%;*/
/*    background-size: cover;*/
    max-width: 100vw;
/*    background: -webkit-linear-gradient(180deg, #01B3F9 0%, #FCDB38 100%);*/
/*    background: linear-gradient(180deg, #01B3F9 0%, #FCDB38 100%);*/
}

img {
    width: 100%;
}

/* HEADER */
.header{
    background: transparent;
    /* box-shadow: 0 4px 35px rgba(0, 81, 79, 0.44); */
    border-bottom: 1px solid #e6e6e6;
    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: block;
}
.header .header_wrapper .header_logo a img{
    max-width: 142px;
    width: 100%;x
}
.header .header_wrapper .header_text {
    background: #000;
    font-family: 'Russo One', sans-serif;
    color: #1dc994;
    padding: 5px 8px;
    font-size: 13px;
    text-transform: uppercase;
}
.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 .general_button_wrapper{
    text-align: center;
    margin-top: 10px;
}
.main .general_button_wrapper .button{
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.main .general_button_wrapper .button a,
.main .general_button_wrapper .button button{
    position: relative;
    background: #f8d562;
    border: 1px solid #f8d562;
    border-radius: 2px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
    font-family: 'Russo One', sans-serif;
    font-size: 25px;
    line-height: 24px;
    padding: 16px 20px 18px;
    text-align: center;
    width: 100%;
    height: 63px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 22px rgba(39,150,117,.5);
/*    -webkit-animation: pulse 1.8s infinite;*/

}
.main .general_button_wrapper .button a img{
    margin-right: 8px;
    width: 30px;
}
.main .general_button_wrapper .button .card {
    width: 38px;
    margin-right: 10px;
}
.main .general_button_wrapper .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 .general_button_wrapper .button button:hover{
    cursor: pointer;
    -webkit-animation: none;
}
.main .general_button_wrapper .button button:focus{
    outline: none;
}
.main .general_button_wrapper .button .money-btn {
    margin-left: 10px;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #FFF;
    background: #03b3f9;
    border-radius: 20px;
    padding: 6px 12px;
}
@media only screen and (max-width: 375px) {
    .main .general_button_wrapper .button a,
    .main .general_button_wrapper .button button {
        font-size: 14px;
    }
    .main .general_button_wrapper .button .money-btn {
        font-size: 12px;
    }
}

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 10px rgb(255 234 0 / 10%)
  }
    100% {
    @include transform(scale(.9));
    box-shadow: 0 0 0 0 rgb(255 234 0 / 5%)
  }
}

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

/* MAIN */
.main{
/*    background: #1cc995;*/
    /*background: url('../img/bg.webp') 50% 50%;
    background-size: cover;*/
    height: 100%;
    padding-bottom: 65px;
    padding-top: 40px;
}
.main .first_page{
/*    padding-top: 30px;*/
}
.main .first_page .main_title{
    position: relative;
    z-index: 50;
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 500;
    font-size: 38px;
    line-height: 37px;
    color: #fff;
    text-shadow: 1px 1px 9px rgb(0 0 0 / 30%);
    margin-bottom: 15px;
}
.main .main_subtitle {
    position: relative;
    z-index: 50;
    font-style: normal;
    font-weight: 800;
    font-size: 17px;
    line-height: 23px;
    color: #000;
    margin-bottom: 20px;
    text-decoration: underline;
}
@media only screen and (max-width: 375px) {
    .main .main_subtitle {
        font-size: 15px;
    }
    .main .first_page .main_title{
/*        font-size: 17px;*/
    }
}
.main .first_page .slider_wrapper{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 30px 25px;
}
.main .first_page .slider_wrapper .img-holder {
    width: 200px;
    position: absolute;
    top: -180px;
    right: -35px;
    z-index: 2;
}
.main .first_page .slider_wrapper .slider-items{}
.main .first_page .slider_wrapper .slider-items .slider-item{
    margin-bottom: 25px;
}
.main .first_page .slider_wrapper .slider-items .slider-item.days {
    margin-bottom: 0;
}
.main .first_page .slider_wrapper .slider-items .slider-item .title{
    font-size: 14px;
    line-height: 16px;
    color: #222222;
    font-weight: 400;
    margin-bottom: 6px;
}
.main .first_page .slider_wrapper .slider-items .slider-item .labels{
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main .first_page .slider_wrapper .slider-items .slider-item .labels .left-label{
    font-size: 12px;
    line-height: 14px;
    color: #B3B3B3;
    font-weight: 400;
}
.main .first_page .slider_wrapper .slider-items .slider-item .labels .right-label{
    font-size: 12px;
    line-height: 14px;
    color: #B3B3B3;
    font-weight: 400;
}

.main .first_page .informations{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
}
.main .first_page .informations .information{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.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: 700;
    padding: 9px 12px 7px;
    box-shadow: 2px 2px 18px rgba(39,150,117,.2);
}
@media only screen and (max-width: 375px) {
    .main .first_page .informations .information .money{
        padding: 9px 12px 7px;
    }
    .main .first_page .slider_wrapper .img-holder {
        width: 170px;
        top: -150px
    }
}
.main .first_page .informations .information.take .money{
    background: #fff;
    color: #222;
}
.main .first_page .informations .information.percent .money{
    background: #fff;
    color: #222;
}
.main .first_page .informations .information.give .money{
    color: #222;
    background: #fff;
}
.main .bottom_text{
    margin-top: 31px;
}
.main .bottom_text p{
    text-align: justify;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #000;
}
.main .bottom_text p.big {
    font-size: 16px;
}

.main .second_page {
    padding-top: 0px;
}
.main .second_page .main_title{
    position: relative;
    z-index: 50;
    font-family: 'Russo One';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 37px;
    color: #fff;
    text-shadow: 1px 1px 9px rgb(0 0 0 / 30%);
    margin-bottom: 15px;
}
@media only screen and (max-width: 375px) {
    .main .second_page .main_title{
        font-size: 17px;
    }
}
.main .second_page .form_wrapper .img-holder {
    width: 175px;
    position: absolute;
    top: -180px;
    right: -5px;
    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{}
.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 input{
    background: #F0F0F0;
    border-radius: 0;
    border: none;
    height: 38px;
    width: 100%;
    padding-left: 19px;
    padding-right: 19px;
}
.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: 14px;
    line-height: 16px;
    color: #BBBBBB;
}
.main .second_page .form_wrapper .general_button_wrapper{
    margin-top: 30px;
}
.main .second_page .form_wrapper .general_button_wrapper button {
    font-size: 16px;
}

.main .third_page {
    position: relative;
/*    padding-top: 30px;*/
}
.main .third_page .main_title{
    text-align: center;
    z-index: 50;
    font-family: 'Russo One';
    font-style: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 120%;
    line-height: 20px;
    color: #fff;
    text-shadow: 1px 1px 9px rgb(0 0 0 / 30%);
    margin-bottom: 15px;
}
.main .third_page .title-wrap {
    position: relative;
    display: fllex;
}
.main .third_page .title-wrap .img-holder {
    position: absolute;
    z-index: -1;
    max-width: 150px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
@media only screen and (max-width: 375px) {
    .main .third_page .main_title{
        font-size: 17px;
    }
}
.main .third_page .offers_wrapper{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main .third_page .offers_wrapper .offer{
    width: calc(50% - 5px);
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 20px 5px;
    position: relative;
    margin-bottom: 25px;
}
/*@media only screen and (max-width: 375px) {
    .main .third_page .offers_wrapper .offer {
        padding: 20px 5px;
    }
}*/
.main .third_page .offers_wrapper .body-card-logo {
    height: 60px;
    margin-bottom: 20px;
    background-size: 85%;
    display: flex;
    justify-content: center;
    align-items: center
}

.main .third_page .offers_wrapper .body-card-logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto
}
.main .third_page .offers_wrapper .offer .label {
    height: 30px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    left: 0;
    top: 28px;
    position: absolute;
    padding-right: 30px;
}
.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: linear-gradient(180deg, #f411ed 0%, #c7009e 100%), #f211e9;
}
.main .third_page .offers_wrapper .offer .label.green{
    background: linear-gradient(180deg, #53B853 0%, #13AE64 100%), #5DBA45;
}
.main .third_page .offers_wrapper .offer .general_button_wrapper{}
.main .third_page .offers_wrapper .offer .general_button_wrapper .button{
    width: 100%;
/*    margin-top: 25px;*/
}
.main .third_page .general_button_wrapper .button a,
.main .third_page .general_button_wrapper .button button {
    font-size: 15px;
    height: 50px;
    text-decoration: none;
}
.main .third_page .offer-card-info .rating {
    text-align: center;
    margin-bottom: 5px;
}
.main .third_page .offer-card-info .rating span {
    font-family: 'Russo One', sans-serif;
    color: #727272;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}
.main .third_page .offer-card-info .rating span.big {
    display: block;
    color: #37d6a5;
    font-size: 38px;
    font-weight: 500;
}

.main .third_page .offer-card-info .sumdate {
    text-align: center;
    max-width: 135px;
    margin: 0 auto;
}
.main .third_page .offer-card-info .sumdate span {
    color: #2C2C2C;
    font-size: 17px;
    font-weight: 400;
}
.main .third_page .offer-card-info .sumdate span.bold {
    font-weight: 900;
}

.main .third_page .offers_wrapper .offer-hot {
    width: 100%;
    padding: 30px 25px;
}
.main .third_page .offers_wrapper .offer-hot .body-card-logo {
    height: 80px;
}

.main .third_page .offers_wrapper .offer-hot .body-card-logo img {
    display: block;
    margin: 0 auto;
    max-width: 68%;
    height: auto
}
.main .third_page .offers_wrapper .offer-hot .offer-card-info .rating {
    margin-bottom: 18px;
}
.main .third_page .offers_wrapper .offer-hot .offer-card-info .rating span {
    font-size: 18px;
}
.main .third_page .offers_wrapper .offer-hot .offer-card-info .rating span.big {
    font-size: 60px;
}
.main .third_page .offers_wrapper .offer-hot .offer-card-info .sumdate {
    max-width: 100%;
    margin: unset;
}
.main .third_page .offers_wrapper .offer-hot .offer-card-info .sumdate span {
    font-size: 19px;
}
.main .third_page .offers_wrapper .offer-hot .offer-card-info .sumdate span.bold {
    font-weight: 900;
}
.main .third_page .offers_wrapper .offer-hot .btn-offer-details {
    font-size: 15px;
    max-width: 100%;
}
.main .third_page .offers_wrapper .offer-hot .general_button_wrapper .button a,
.main .third_page .offers_wrapper .offer-hot .general_button_wrapper .button button{
    height: 63px;
    font-size: 18px;
}
.main .third_page .offers_wrapper .offer-hot .general_button_wrapper .button a span,
.main .third_page .offers_wrapper .offer-hot .general_button_wrapper .button button span{
    display: inline-block;
    padding-left: 5px;
}
.main .third_page .offers_wrapper .offer-small .general_button_wrapper .button a span,
.main .third_page .offers_wrapper .offer-small .general_button_wrapper .button button span{
    display: none;
}
.main .third_page .offers_wrapper .offer-small {
    padding: 15px 5px;
    margin-bottom: 15px;
}
.main .third_page .offers_wrapper .offer-small .body-card-logo img {
    max-width: 90%;
}
.main .third_page .offers_wrapper .main_title {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 10px 0 30px 0;
}
@media (max-width: 350px) {
    .main .third_page .offers_wrapper .offer-hot {
        padding: 30px 15px;
    }
}

/* SLIDER */
.irs--round{
    height: 20px !important;
}
.irs--round .irs-line{
    height: 10px !important;
    background: #EFEFEF !important;
    border-radius: 2px !important;
    top: 10px !important;
}
.irs--round .irs-single{
    display: none !important;
}
.irs--round .irs-bar{
    height: 10px !important;
    background: #1cc995 !important;
    background: linear-gradient(90deg, #87ebcd 0%, #1cc995 100%)!important;
    top: 10px !important;
}
.irs--round .irs-bar--single{
    border-radius: 2px !important;
}
.irs--round .irs-handle{
    background: #1cc995 !important;
    box-shadow: 0px 2px 5px rgba(17,123,154, 0.5) !important;
    /* box-shadow: none !important; */
    border: 3px solid rgb(167 235 214 / 50%) !important;
    border-radius: 6px!important;
    top: 4px !important;
    width: 22px !important;
    height: 22px !important;
}

/* FOOTER */
.footer{
    background: transparent;
    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: #222222;
}
.footer .footer_wrapper .footer_logo{}
.footer .footer_wrapper .footer_logo a{
    display: block;
}
.footer .footer_wrapper .footer_logo a img{
    width: 150px;
}
@media only screen and (max-width: 375px) {
    .footer .footer_wrapper .footer_logo a img{
        width: 125px;
    }
}


.btn-offer-details {
    display: inline-flex;
    position: relative;
    user-select: none;
    cursor: pointer;
    color: #0c68f0;
    text-decoration: underline;
    margin: 7px 0 8px 0;
    text-align: center;
}
.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 40px;
    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-left: 0;
    margin: 0;
    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 {
    padding-left: 0;
    margin: 0;
    text-align: center
}

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

.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: #1dc994;
}

.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
}

.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: #1dc994;
    border-radius: 5px;
    border: none;
    width: 100%;
    height: 63px;
    line-height: 19px;
    color: #fff;
    height: 60px;
    font-family: 'Russo One', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    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
    }
}


/* 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: #222;
    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 {
    background: #1dc994;
    padding: 3px 10px;
    color: #FFFF;
    border-radius: 0;
    font-weight: 800;
}

.money-current {
    background: #1dc994;
    padding: 3px 10px;
    color: #fff;
    border-radius: 0;
    font-weight: 800;
}

.input-wrapper {
    position: relative;
}

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



.answers {
    padding-top: 50px;
}
.answers .answers-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
}
.answers .answers-wrap .answers-title {
    font-family: 'Russo One', sans-serif;
    color: #fff;
    text-shadow: 1px 1px 9px rgb(0 0 0 / 30%);
    letter-spacing: 1px;
    font-size: 28px;
    font-weight: 900;
    line-height: 120%;
    margin-left: 0;
}
.answers .answers-wrap img {
    width: 162px;
}
@media (max-width: 350px) {
    .answers .answers-wrap img {
        width: 100px;
    }
}
.accordion {
    width: 100%;
    margin-bottom: 30px;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    background-color: #aaf0db;
    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: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 106.3%;
}
.accordion-header .accordion-title span {
    font-weight: 800;
}
.accordion-header .arrow-accord {
    width: 35px;
    height: 35px;
    transition: .3s ease-in;
}

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

.accordion-content {
    display: none;
    padding: 10px 20px;
    background: #aaf0db;
    border-top: 1px solid #1dc994;
}
.accordion-content p {
    color: #000;
    font-size: 16px;
    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 {
    font-family: 'Russo One', sans-serif;
    color: #fff;
    text-shadow: 1px 1px 9px rgb(0 0 0 / 30%);
    font-size: 28px;
    font-weight: 900;
    line-height: 120%;
    text-transform: uppercase;
    margin-left: 20px;
}



