.prize-draw {
    margin: 114px 0 0 0;
}

.prize-draw__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.prize-draw__description {
    max-width: 880px;
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0.48px;
    text-align: center;
    color: var(--white);
    margin: 55px auto 0;
}

.prize-draw__description span {
    font-weight: 700;
}

.prize-draw-inner-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin: 53px 0 0 0;
}

/* Rules Draw */

.rules-draw {
    max-width: 565px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 53px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: rgba(49, 0, 87, 0.60);

    padding: 58px 36px 191px;
}

.rules-draw__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.rules-draw__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0.48px;
    text-align: center;
    color: var(--white);
}

.rules-draw__text span {
    font-weight: 700;
}

.rules-draw__small-text {
    display: block;
    max-width: 420px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
    text-align: center;
    color: var(--white);
    margin: -9px auto 0;
}

.rules-draw__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    padding: 14px 0 18px;

    font-family: var(--font-harmonia);
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    color: var(--black);
    border-radius: 5px;
    text-decoration: none;
}

.rules-draw__link--form {
    color: var(--black);
    border: 1px solid var(--white);
    background-color: var(--white);
}

.rules-draw__link--form.registered {
    width: 280px;
    border-radius: 5px;
    border: 1px solid var(--blue);
    background: rgba(49, 0, 87, 0.60);
    color: var(--white);
}

.rules-draw__link--catalog {
    color: var(--grey);
    border: 1px solid var(--grey);
    background-color: transparent;
}

.rules-draw__link--form:hover,
.rules-draw__link--form:focus {
    color: var(--blue);
    border-color: var(--blue);
    background-color: transparent;
}

.rules-draw__link--catalog:hover,
.rules-draw__link--catalog:focus {
    color: var(--blue);
    border-color: var(--blue);
    background-color: transparent;
}


.rules-draw__link--form.registered:hover,
.rules-draw__link--form.registered:focus {
    border: 1px solid var(--blue);
    background: rgba(49, 0, 87, 0.60);
    color: var(--white);
}


/* Prizes */
.prizes {
    max-width: 565px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: rgba(49, 0, 87, 0.60);
    padding: 38px 0 0;
}

.prizes-swiper {
    position: relative;
    overflow: hidden;
    padding: 0 0 138px;
}

.prize {
    padding: 0 55px;
}

.prize__title,
.prize__subtitle {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.prize__subtitle {
    margin: 24px 0 0 0;
}

.prize__image {
    border-radius: 20px;
    margin: 35px 0 0 0;
}

.prizes-swiper .swiper-pagination-bullets {
    bottom: 80px !important;
}

.prizes-swiper .swiper-pagination-bullet {
    position: relative;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid  #fff;
    margin: 0 5px;
    opacity: 1;
}

.prizes-swiper .swiper-pagination-bullet::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    background-color: #ffffff;
}

.prizes-swiper .swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    border-color: #ffffff;
    background-color: transparent;
}

.prizes-swiper .swiper-pagination-bullet-active::before {
    width: 6px;
    height: 6px;
    top: 6px;
    left: 6px;
    background-color: #ffffff;;
}

/* Another Rooms */

.another-rooms {
    max-width: 760px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: rgba(49, 0, 87, 0.60);
    text-align: center;
    padding: 25px 0px 29px;
    margin: 52px auto 0;
}

.another-rooms__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.48px;
    color: var(--white);
}

@media(max-width: 1024px) {
    .prize-draw {
        margin: 76px 0 0 0;
    }
    
    .prize-draw__title {
        font-size: 32px;
        line-height: 1;
    }
    
    .prize-draw__description {
        max-width: 550px;
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0.32px;
        margin: 33px auto 0;
    }
    
    .prize-draw__description span {
        font-weight: 400;
    }
    
    .prize-draw-inner-wrapper {
        gap: 30px;
        margin: 31px 0 0 0;
        padding: 0 14px;
    }

    /* Rules Draw */

    .rules-draw {
        max-width: 100%;
        gap: 33px;
        border-radius: 15px;
        padding: 33px 36px 136px;
    }

    .rules-draw__title {
        font-size: 32px;
    }

    .rules-draw__text {
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0.32px;
    }

    .rules-draw__small-text {
        max-width: 298px;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0.28px;
        margin: -9px auto 0;
    }

    .rules-draw__link {
        width: 180px;
        padding: 10px 0 11px;
        font-size: 16px;
        font-weight: 600;
        line-height: 18px;
    }

    .rules-draw__link--form.registered {
        width: 200px;
    }
    
    .rules-draw__link--form:hover,
    .rules-draw__link--form:focus {
        color: var(--black);
        border: 1px solid var(--white);
        background-color: var(--white);
    }

    .rules-draw__link--catalog:hover,
    .rules-draw__link--catalog:focus {
        color: var(--grey);
        border: 1px solid var(--grey);
        background-color: transparent;
    }

    /* Prizes */
    .prizes {
        max-width: 338px;
        border-radius: 15px;
        padding: 24px 0 0;
    }

    .prizes-swiper {
        padding: 0 0 138px;
    }

    .prize {
        padding: 0 28px;
    }

    .prize__title,
    .prize__subtitle {
        font-size: 32px;
        line-height: 1;
    }

    .prize__subtitle {
        margin: 24px 0 0 0;
    }

    .prize__image {
        border-radius: 15px;
        margin: 23px 0 0 0;
    }

    /* Another Rooms */

    .another-rooms {
        max-width: 503px;
        display: flex;
        align-items: center;
        border-radius: 15px;
        padding: 14px 0 18px;
        margin: 59px auto 0;
    }

    .another-rooms__text {
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0.32px;
    }
}

@media(max-width: 767px) {
    .prize-draw__description {
        margin: 52px auto 0;
    }

    .prize-draw-inner-wrapper {
        flex-direction: column;
        padding: 0;
    }

    .prizes {
        max-width: 100%;
        order: 1;
    }

    .prizes-swiper {
        padding: 0px 0 60px;
    }

    .prizes-swiper .swiper-pagination-bullets {
        bottom: 24px !important;
    }

    .prize {
        padding: 0 8px;
    }


    .prize__image {
        display: block;
        border-radius: 10px;
        margin: 23px auto 0;
    }

    .rules-draw {
        max-width: 100%;
        gap: 33px;
        border-radius: 10px;
        padding: 33px 17px 37px;
        order: 2;
    }

    /* Another Rooms */

    .another-rooms {
        max-width: 100%;
        border-radius: 10px;
        padding: 10px 14px 19px;
        text-align: center;
        margin: 30px auto 0;
    }
}