.hero {
    background: radial-gradient(100% 100% at 50.16% 0%, rgb(17, 12, 47) 50%, rgb(47, 18, 172) 100%);
    padding-top: 113px;
}

.hero__container {
    width: 100%;
    max-width: 1021px;
    margin: auto;
}

.hero__subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin: auto;
    margin-bottom: 8px;
}

.hero__subtitle-wrap img {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
}

.hero__subtitle {
    margin: 0;
    color: #B8AEF9;
    font-size: 18px;
    font-weight: 500;
}

.hero__title h1{
    text-align: center;
    line-height: 120%;
    color: #e8e4fa;
    font-weight: 600;
}

.hero__text {
    color: #B8AEF9;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero__buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.hero iframe {
    position: absolute;
    border-radius: 12px;
    z-index: 3;
    transform: translateX(-50%);
}

.hero__decor {
    position: absolute;
    bottom: 100px;
    width: 100%;
}

.hero__stars {
    position: absolute;
    bottom: 330px;
    left: -50px;
    width: 100%;
}

.hero__stars img, .hero__decor img {
    width: 100%;
}

.hero__menu {
    max-width: fit-content;
    margin: auto;
    border: 1px solid rgba(184, 174, 249, 0.1);
    border-radius: 41px;
    padding: 4px;
    background: rgba(184, 174, 249, 0.2);
    margin-bottom: 32px;
}

.hero__menu ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero__menu ul li {
    list-style: none;
}

.hero__menu ul li a{
    padding: 10px 12px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #b8aef9;
    border-radius: 999px;
    display: flex;
    transition: all ease 0.3s;
}

body .hero__menu ul li a:hover{
    color: #fff;
    text-decoration: none;
}

.hero__menu ul li.current_page_item a{
    box-shadow: 0 1px 2px -1px rgba(10, 13, 18, 0.1), 0 1px 3px 0 rgba(10, 13, 18, 0.1);
    background: #5a44f5;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    .hero {
        padding-bottom: 323px;
        margin-bottom: 360px;
    }

    .hero__title h1{
        margin-bottom: 32px;
        font-size: 48px;
    }

    .hero__text {
        font-size: 18px;
        line-height: 180%;
        margin-bottom: 32px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero iframe {
        width: 800px;
        height: 440px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 140px;
    }
}

@media screen and (max-width: 1024px) {
    .hero {
        padding-top: 54px;
        padding-bottom: 184px;
        margin-bottom: 150px;
    }

    .hero__title h1{
        margin-bottom: 16px;
        font-size: 40px;
    }

    .hero__text {
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 24px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero iframe {
        width: calc(100% - 32px);
        max-width: 400px;
        max-height: 240px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 60px;
    }

    .hero__container {
        padding: 0px 18px;
    }


}
.hero__stars, .hero__decor {
    display: none;
}
@media screen and (max-width: 440px) {
    .hero__buttons a {
        min-width: 100%;
    }

    .hero__decor {
        position: absolute;
        bottom: 80px;
        left: -150px;
        width: 300%;
    }

    .hero__stars {
        position: absolute;
        bottom: 350px;
        left: -150px;
        width: 300%;
    }
}