#hero-block {
    position: relative;
    z-index: 0;
    padding-top: 30px;
    padding-bottom: 0;
    overflow: hidden;
}
#hero-block .hero__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
#hero-block .hero__left {
    max-width: 880px;
}
#hero-block .hero__title {
    margin-bottom: 20px;
    color: var(--text-alt-head);
}
#hero-block .hero__descr {
    margin-bottom: 60px;
    color: var(--text-alt-head);
}
#hero-block .hero__img {
    max-width: 500px;
    max-height: 731px;
    position: relative;
    width: 100%;
    height: 100%;
}
#hero-block .hero__link {
    position: absolute;
    box-sizing: border-box;
    padding: 10px 20px;
    color: var(--text-primary-head);
    border-radius: 20px;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    box-shadow: 10px 20px 30px -20px rgba(46, 42, 32, 0.4);
}
#hero-block .hero__link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--bg-primary-main);
    border: 5px solid var(--text-primary-head);
    transform: translate(-50%, -50%);
}
#hero-block .hero__link:first-child {
    left: -5%;
    bottom: 8%;
}
#hero-block .hero__link:nth-child(2) {
    bottom: 40%;
    left: 20%;
}
#hero-block .hero__link:nth-child(3) {
    bottom: 68%;
    right: 211px;
}
#hero-block .hero__link:nth-child(3)::after {
    left: 12px;
    right: unset;
}
#hero-block .hero__bg {
    display: block;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}
#hero-block .hero__bg::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 101%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        72.63% 154.94% at 72.63% 59.5%,
        rgba(250, 249, 246, 0) 0%,
        #0000008a 59.62%
    );
}
#hero-block .hero__btn {
    margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
    #hero-block .hero__inner {
        align-items: flex-end;
    }
}
@media screen and (max-width: 1150px) {
    #hero-block .hero__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    #hero-block .hero__img {
        align-self: flex-end;
    }
    #hero-block .hero__bg::after {
        background: radial-gradient(
            453.21% 70.09% at 37.95% 48.61%,
            rgba(250, 249, 246, 0) 0%,
            #00000057 59.62%
        );
    }
    /* #hero-block .hero__bg {
        height: 80%;
        transform: translate(-50%, -34%);
    } */
}
@media screen and (max-width: 900px) {
    #hero-block .hero__link:first-child {
        left: 0;
    }
}
@media screen and (max-width: 550px) {
    #hero-block .hero__mobile-wrapper {
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        right: 0;
    }
    #hero-block .hero__descr {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 10px;
    }
    #hero-block {
        padding-bottom: 225px;
    }
    #hero-block .hero__btn {
        width: 100%;
    }
    #hero-block .hero__link:first-child {
        bottom: 40%;
    }
    #hero-block .hero__link:nth-child(2) {
        bottom: 10%;
        left: 0;
    }
    #hero-block .hero__link:nth-child(3) {
        right: 5%;
        bottom: 25%;
    }
}
@media screen and (max-width: 420px) {
    #hero-block {
        padding-bottom: 250px;
    }
}
@media screen and (max-width: 340px) {
    #hero-block {
        padding-bottom: 280px;
    }
} /*# sourceMappingURL=block.css.map */
