:root {
    --white: #ffffff;
    --blue: #121239;
    --violet: #7949F4;
}

.anniversary__wrapper {
    background: var(--white);
}

.anniversary__content {
    border-radius: 4px;
    background: var(--blue);
    overflow: hidden;
    padding: 48px 24px;
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
    justify-content: center;
    position: relative;
}


.anniversary__content::before,
.anniversary__content::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background-image: url('images/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.anniversary__content::before {
    left: 0;
    background-position: left bottom;
}

.anniversary__content::after {
    right: 0;
    background-position: right bottom;
}


.anniversary__img img {
    width: 100%;
}

.anniversary__text {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.anniversary__text--big {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--violet);
    z-index: 1;
    position: relative;
}

.anniversary__button {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    padding: 17px 66px;
    color: var(--blue);
    background: var(--white);
    transition: .3s ease;
    z-index: 1;
    position: relative;
    white-space: nowrap
}

.anniversary__button:hover {
    color: var(--white);
    background: var(--violet);
}

.anniversary__img {
    position: relative;
    z-index: 1;
}

.anniversary__overlay::after {
    position: absolute;
    content: '';
    width: 507px;
    height: 507px;
    border-radius: 507.396px;
    background: radial-gradient(50% 50% at 50% 50%, #F6FFFF 0%, rgba(255, 191, 254, 0.00) 100%);
    mix-blend-mode: overlay;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%);
    pointer-events: none;
}

.anniversary__overlay::before {
    position: absolute;
    content: '';
    width: 927px;
    height: 345px;
    border-radius: 900px;
    background: #121239;
    filter: blur(65px);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%);
    pointer-events: none;
}

.anniversary__img::after {
    position: absolute;
    content: url("images/lights.svg");
    width: 2106px;
    height: 1765px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
    z-index: -1;
    pointer-events: none;
}

.anniversary__img img {
    z-index: 1;
    position: relative;
}

@media (max-width: 1300px) {
    .anniversary__text {
        font-size: 18px;
    }

    .anniversary__button {
        font-size: 16px;
        padding: 15px 22px;
    }
}

@media (max-width: 991px) {
    .anniversary__content {
        flex-wrap: wrap;
    }

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

    .anniversary__button {
        font-size: 14px;
        padding: 10px 66px;
    }

    .anniversary__overlay::before {
        height: 500px;
        transform: translate(-53%, -50%);
    }
}

@media (max-width: 560px) {
    .anniversary__content {
        justify-content: flex-start;
        background-position: right bottom;
        padding: 62px 24px 24px;
        gap: 20px;
    }

    .anniversary__content::after {
        width: 100%;
    }

    .anniversary__content::before {
        display: none;
    }

    .anniversary__button {
        padding: 10px 24px;
        width: 100%;
        text-align: center;
    }

    .anniversary__img {
        width: 120px;
    }

    .anniversary__text {
        text-align: left;
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 56px;
    }

    .anniversary__text--big {
        font-size: 48px;
        line-height: 1.2;
    }

    .anniversary__overlay::before {
        width: 790px;
        height: 273px;
        filter: blur(55px);
    }

    .anniversary__overlay::after {
        border-radius: 432.231px;
        width: 432px;
        height: 432px;
        bottom: 0;
        left: 0;
        top: unset;
        transform: unset;
    }
}

.anniversary-light .anniversary__content::before,
.anniversary-light .anniversary__content::after {
    background-image: url('images/bg-light.png');
}

.anniversary-light .anniversary__text--big {
    color: var(--white);
}

.anniversary-light .anniversary__overlay::after {
    position: absolute;
    content: '';
    width: 507px;
    height: 507px;
    border-radius: 507.396px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 191, 254, 0.28) 0%, rgba(255, 191, 254, 0.00) 100%);
    mix-blend-mode: overlay;
}

.anniversary-light .anniversary__overlay::before {
    background: rgba(186, 178, 216, 0.79);
    filter: blur(65px);
}

@media (max-width: 991px) {
    .anniversary-light .anniversary__overlay::before {
        filter: blur(45px);
        width: 734px;
        height: 249px;
        border-radius: 734px;
        background: #A795E9;
    }
}

@media (max-width: 560px) {
    .anniversary-light .anniversary__overlay::before {


        transform: translate(-53%, -40%);
    }

    .anniversary-light .anniversary__overlay::after {
        border-radius: 414px;
        width: 414px;
        height: 414px;
        bottom: 0;
        left: 0;
        top: unset;
        transform: unset;
    }
}


