@import url(./reset.css);
@import url(./fonts.css);

:root {
    --base: #262626;
    --primary: #4B20C3;
    --light: #767676;
}

.container {
    max-width: 1500px;
    padding: 0 15px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.btn {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    padding: 25px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(180deg, #6A35FF 0%, #172BDE 100%);
    animation: pulse 1s ease-in 0s infinite;
    max-width: 305px;
    position: relative;
}

.btn::after {
    content: url(../img/icons/btn-a.svg);
    display: block;
    margin-left: 28px;
}

.btn:hover {
    background: linear-gradient(180deg, #362055 0%, #700CFF 100%);
}

.btn__alt {
    background: #fff;
    color: var(--primary);
}

.btn__alt::after {
    content: url(../img/icons/btn-aa.svg);
}

.btn__alt:hover {
    color: #fff;
    background: var(--primary);
}

.btn__alt:hover::after {
    content: url(../img/icons/btn-a.svg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px #172bdeae;
    }

    100% {
        box-shadow: 0 0 0 20px #172bde00;
    }
}

.warning {
    animation: warning 2s ease 0s infinite;
}

@keyframes warning {

    0%,
    100% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1);
    }
}

.header {
    padding: 20px 0 80px;
    background: url(../img/header/bg.png) no-repeat center/cover;
    position: relative;
}

.header__img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
}

.header__logo {
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.logo {
    height: 40px;
    margin-right: 30px;
}

.header__logo-text {
    max-width: 300px;
}

.main__title {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 40px;
    max-width: 770px;
}

.main__list-item {
    margin-bottom: 30px;
}

.main__list-title {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.main__list-description {
    font-size: 24px;
    font-weight: 400;
    max-width: 640px;
}

.symptoms__box {
    width: 90%;
    margin: 0 auto;
    border-radius: 80px;
    padding: 80px 0;
    background: url(../img/symptoms/bg.jpg) no-repeat center/cover;
}

.symptoms__title {
    text-align: center;
    margin: 0 auto 80px;
    font-weight: 800;
    font-size: 44px;
    max-width: 750px;
}

.symptoms__wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.symptoms__item-img {
    border-radius: 30px 30px 0 0;
    margin-bottom: 30px;
    width: 100%;
}

.symptoms__item-text {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.symptoms__offer {
    padding: 30px;
    /* background-color: var(--primary); */
    background: var(--primary) url(../img/symptoms/bg2.png) no-repeat center/cover;
    border-radius: 30px;
}

.symptoms__offer p {
    font-size: 30px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.help {
    padding: 100px 0;
}

.help__title {
    margin: 0 auto;
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    max-width: 1050px;
}

.help__wrap {
    display: grid;
    gap: 80px 30px;
    grid-template-columns: repeat(2, 1fr);
    margin: 80px 0;
}

.help__item {
    padding: 39px 30px 30px 30px;
    border-radius: 30px;
    background: #EFF6F8;
    position: relative;
}

.help__item:first-of-type {
    box-shadow: 0 -5px 0 0 #E335FF;
}

.help__item:nth-of-type(2) {
    box-shadow: 0 -5px 0 0 #FF358A;
}

.help__item:nth-of-type(3) {
    box-shadow: 0 -5px 0 0 #4B20C3;
}

.help__item:last-of-type {
    box-shadow: 0 -5px 0 0 #3586FF;
}

.help__item-img {
    position: absolute;
    left: 30px;
    top: -40px;
}

.help__item-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.help__item-description {
    font-size: 17px;
    color: var(--light);
    line-height: 1.5;
}

.help__offer {
    background: var(--primary) url(../img/help/bg.png) no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 60px;
    border-radius: 30px;
}

.help__offer p {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    max-width: 560px;
}

.about {
    padding: 100px 0 80px;
    background: #EFF6F8;
    position: relative;
}

.about__img {
    position: absolute;
    right: 0;
    top: 5%;
    width: 40%;
}

@media (min-width: 2000px) {
    .about__img{
        top: 0px;
    }
}


.about__title {
    font-size: 44px;
    margin-bottom: 50px;
    font-weight: 800;
}

.about__description {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 750px;
    margin-bottom: 130px;
}

.about__description span {
    font-weight: 600px;
    font-size: 20px;
    color: var(--primary);
}

.about__offer {
    padding: 40px;
    background: var(--primary) url(../img/about/offer.png) no-repeat center/cover;
    border-radius: 30px;
    margin-bottom: 30px;
}

.about__offer p {
    font-size: 28px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    max-width: 960px;
    margin: 0 auto;
}

.about__suboffer {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.about__offer-btn {
    margin: 0 auto;
}

.effect {
    padding: 100px 0;
}

.effect__wrap {
    width: 60%;
    margin-left: auto;
    position: relative;
    margin-bottom: 100px;
}

.effect__wrap-img {
    height: 100%;
    left: -115%;
    top: 0;
    position: absolute;
    border-radius: 100px 100px 0 100px;
}

.effect__title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 60px;
}

.effect__item {
    padding: 30px;
    border-radius: 30px;
    background: #EFF6F8;
}

.effect__item:first-of-type {
    margin-bottom: 30px;
}

.effect__item-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary);
}

.effect__item p {
    font-size: 22px;
    font-weight: 500;
}

.effect__offer {
    padding: 40px 80px;
    background: #EFF6F8;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 0 0 #DE0C17;
    border-radius: 30px;
}

.effect__offer-title {
    font-size: 28px;
    color: #FF0000;
    font-weight: 600;
    margin-bottom: 30px;
}

.effect__offer p {
    font-size: 22px;
    font-weight: 500;
}

.effect__offer-img {
    position: absolute;
    height: 100px;
    left: 80px;
    top: -50px;
}

.compound {
    padding: 10px 0 150px;
}

.compound__title {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.compound__subtitle {
    max-width: 1250px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
}

/* slider */
.compound__slider {
    margin-bottom: 80px;
}

.compound__slider .swiper {
    padding-bottom: 70px;
}

.compound__slide {
    opacity: 0.5;
}

.compound__slide.swiper-slide-active,
.compound__slide.swiper-slide-prev,
.compound__slide.swiper-slide-next {
    opacity: 1;
}

.compound__slide-ttile {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.compound__slide-img {
    height: 180px;
    display: block;
    margin: 0 auto 20px;
}

.compound__slide-content p:first-of-type {
    font-size: 20px;
    font-weight: 600;
    padding: 25px;
    border-radius: 20px 20px 0 0;
    background: #EFF6F8;
    margin-bottom: 10px;
    box-shadow: 0 -3px 0 0 var(--primary);
    transition: all .3s ease;
}

.compound__slide-content p:last-of-type {
    font-size: 20px;
    font-weight: 400;
    padding: 25px;
    border-radius: 0 0 20px 20px;
    background: #EFF6F8;
    transition: all .3s ease;
}

.compound__slide.swiper-slide-active .compound__slide-content p {
    background: var(--primary);
    color: #fff;
}

.swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination span {
    width: 16px;
    height: 16px;
    border: 4px solid rgb(255, 255, 255);
    background: var(--light);
    opacity: 1;
}

.swiper .swiper-pagination-bullet-active {
    border-color: var(--primary);
    background: var(--primary);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 10px 25px;
}

.slider__btn {
    position: absolute;
    bottom: 11px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    z-index: 22;
    cursor: pointer;
    outline: none;
}

.slider__btn-next {
    right: calc(50% - 200px);
}

.slider__btn-prev {
    left: calc(50% - 200px);
}

.slider__btn img {
    height: 25px;
}

.slider__btn.swiper-button-disabled {
    opacity: 0.5;
}

/*  */
.compound__offer {
    background: var(--primary) url(../img/compound/bg.png) no-repeat center/cover;
    padding: 30px 60px;
    border-radius: 30px;
}

.compound__offer p {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.opinion {
    padding: 60px 0 80px;
    background: url(../img/opinion/bg.jpg) no-repeat center/cover;
    margin-bottom: 140px;
    position: relative;
}

.opinion__img {
    position: absolute;
    left: 0;
    top: 200px;
    border-radius: 0 100px 0 0;
    width: 100%;
    max-width: 750px;
}

.opinion__title {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-left: 360px;
}

.opinion__title::before {
    content: url(../img/opinion/opinion__logo.png);
    position: absolute;
    width: 260px;
    left: 0;
    top: 0;
}

.opinion__title span {
    color: var(--primary);
}

.opinion__wrap {
    width: 50%;
    margin-left: auto;
}

.opinion__wrap p {
    font-size: 18px;
    font-weight: 500;
}

.opinion__wrap p span {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.reviews__title {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 60px;
}

.reviews__slide-img {
    border-radius: 50px 50px 0 0;
    width: 100%;
    margin-bottom: 20px;
}

.reviews__rating {
    margin-bottom: 20px;
    height: 24px;
}

.reviews__slide-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.reviews__slide-description {
    font-size: 18px;
    line-height: 1.5;
}

.reviews__slider .swiper {
    padding-bottom: 80px;
}

.reviews__slide {
    opacity: 0.5;
}

.reviews__slide.swiper-slide-active,
.reviews__slide.swiper-slide-prev,
.reviews__slide.swiper-slide-next {
    opacity: 1;
}

.footer {
    padding: 120px 0;
    background: url(../img/footer/bg.jpg) no-repeat top center/cover;
}

.footer__wrap {
    display: flex;
    align-items: center;
}

.footer__img {
    height: 600px;
}


.footer__title {
    font-size: 44px;
    font-weight: 900;
    max-width: 600px;
    margin-bottom: 20px;
}

.footer__subtitle {
    font-weight: 600;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 40px;
}

.footer__timer {
    padding: 50px;
    border-radius: 30px;
    background: #EFF6F8;
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 430px;
}

.footer__timer__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0;
}

.timer {
    margin-bottom: 30px;
}

.timer #timer5b44195c63d726a7e76c67c5a7af598e>span {
    padding: 10px;
    border-radius: 5px;
    background: #fff;
}

.timer #timer5b44195c63d726a7e76c67c5a7af598e>span.timer-separator {
    border-radius: 0;
    background: transparent;
    color: var(--light) !important;
    margin-top: 9px !important;
}

.timer #timer5b44195c63d726a7e76c67c5a7af598e>span>span {
    font-weight: 800;
}

.footer__price {
    height: 90px;
    margin-bottom: 30px;
}

.info {
    padding: 100px 0;
    background: var(--primary) url(../img/footer/infobg.png) no-repeat center/cover;
}

.info__title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
}

.steps {
    display: grid;
    grid-template-columns: 1fr min-content 1fr min-content 1fr;
    gap: 30px;
    align-items: center;
}

.step {
    padding: 20px;
    border-radius: 20px;
    background: var(--primary);
    display: flex;
    align-items: center;
}

.step span {
    font-size: 60px;
    font-weight: 800;
    color: #eff6f83a;
    margin-right: 30px;
}

.step p {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2222;
    align-items: center;
    justify-content: center;
    background: #eff6f84a;
}

.open.modal {
    display: flex;
}

.form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    background: #EFF6F8;
    position: relative;
    box-shadow: 0 10px 20px 0 #00000069;
}

.form input {
    padding: 20px 10px 20px 20px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    width: 100%;
}

.form select {
    padding: 20px 10px 20px 20px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    width: 100%;
}

.form .btn {
    max-width: 100%;
    cursor: pointer;
    animation: none;
}

.close__modal {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 11px;
    font-weight: 700;
    right: -15px;
    top: -15px;
    background: #EFF6F8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--light);
    cursor: pointer;
}

@media(max-width:1500px) {
    .effect__wrap-img {
        height: auto;
        width: 90%;
        left: -100%;
    }

    .opinion__img {
        left: auto;
        right: 55%;
    }
}

@media(max-width:1400px) {
    .header__img {
        right: -100px;
    }
}

@media(max-width:1200px) {
    .header__img {
        display: none;
    }

    .symptoms__wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .symptoms__box {
        width: 99%;
    }

    .help__offer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding: 20px;
    }

    .help__offer p {
        font-size: 22px;
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .help__offer img {
        display: none;
    }

    .about__img {
        display: none;
    }

    .effect__wrap-img {
        position: static;
        width: 100%;
        height: 260px;
        object-fit: cover;
        margin-bottom: 40px;
    }

    .effect__wrap {
        width: 100%;
    }

    .effect__title,
    .effect__offer-title {
        font-size: 22px;
    }

    .effect__item-title {
        font-size: 18px;
    }

    .effect__item p,
    .effect__offer p {
        font-size: 14px;
    }

    .footer {
        background-position: top right;
    }

    .footer__title {
        max-width: 100%;
        text-align: center;
    }

    .footer__wrap {
        flex-direction: column;
        align-items: start;
    }

    .footer__img {
        width: 100%;
        height: auto;
    }

    .steps {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .steps img {
        transform: rotate(90deg);
    }
}

.mob__order {
    display: none;
}

@media(max-width:900px) {

    .main__title,
    .symptoms__title,
    .help__title,
    .about__title,
    .compound__title,
    .opinion__title,
    .footer__title,
    .info__title {
        font-size: 22px;
    }

    .main__list-title,
    .symptoms__offer p,
    .help__item-title,
    .about__offer p,
    .compound__subtitle,
    .compound__slide-content p,
    .compound__offer p,
    .footer__subtitle {
        font-size: 18px;
    }

    .main__list-description,
    .symptoms__item-text,
    .help__item-description,
    .about__description,
    .about__suboffer,
    .opinion__wrap p,
    .step p {
        font-size: 14px;
    }

    .btn {
        max-width: 100%;
        font-size: 16px;
    }

    .help,
    .about {
        display: none;
    }

    .mob__order {
        display: block;
        padding: 50px 0;
    }

    .help__wrap {
        grid-template-columns: 1fr;
    }

    .about__description {
        margin-bottom: 70px;
    }

    .effect {
        padding-top: 50px;
    }

    .effect__offer-img {
        height: auto;
        width: 250px;
        left: calc(50% - 125px);
    }

    .compound {
        padding: 10px 0 50px;
    }

    .compound__slider,
    .reviews__slider {
        padding: 0 15px;
    }

    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 10px;
    }

    .slider__btn-prev {
        left: 20px;
    }

    .slider__btn-next {
        right: 20px;
    }

    .opinion__title {
        padding: 0;
    }

    .opinion__title::before {
        display: none;
    }

    .opinion__img {
        display: none;
    }

    .opinion__wrap {
        width: 100%;
    }

    .footer {
        background: #EFF6F8;
        padding: 10px 0 30px;
    }

    .footer__wrap {
        align-items: center;
    }

    .footer__subtitle {
        text-align: center;
    }

    .footer__timer {
        margin: 0 auto;
    }

    .form {
        width: 90%;
    }
}