.hero .hero__inner {
    position: relative;
    padding-top: 75px;
    padding-bottom: 40px;
    border-radius: 32px;
    overflow: hidden;
    margin-top: 20px;
    min-height: 895px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.hero .hero__mobile {
    display: none;
}

.hero .hero__content {
    --block-padding: 40px;
    max-width: calc(1080px + (var(--block-padding) * 2));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    padding: 0 var(--block-padding) 
}

.hero .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
}

.hero .hero__bg-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero .hero__title {
    font-weight: 500;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -2%;
    margin-top: 94px;
    max-width: 709px;
}

.hero .hero__text {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -1%;
    margin-top: 24px;
    max-width: 640px;
    margin: 24px 0;
}

.hero .hero__blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: auto;
    align-items: flex-end;
    gap: 8px;
}

.hero .hero__block {
    background: linear-gradient(218.17deg, rgba(255, 255, 255, 0) -34.9%, rgba(1, 52, 147, 0.1) 120.46%), rgba(255, 255, 255, 0.2);
    box-shadow: 0px 1.1966px 29.915px rgba(1, 86, 245, 0.05), inset -4px -4px 8px rgba(255, 255, 255, 0.1), inset 4px 4px 8px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 16px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero .hero__block-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -1%;
}

.hero .hero__block-text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-top: 5px;
}

.hero .hero__block-text-wrapper {
    height: 0;
    opacity: 0;
    transition: opacity 0.3s, height 0.5s;
}

.hero .hero__block-plus {
    height: 24px;
    width: 24px;
    transition: transform 0.3s;
    margin-left: auto;
}

.hero .hero__inner .hero__block:hover .hero__block-text-wrapper {
    opacity: 1;
    height: 50px;
}

.hero .hero__inner .hero__block:hover .hero__block-plus {
    transform: rotate(90deg);
}

.hero .hero__mobile .hero__block.open .hero__block-text-wrapper {
    opacity: 1;
    height: 50px;
}

.hero .hero__mobile .hero__block.open .hero__block-plus {
    transform: rotate(90deg);
}

.hero .hero__logo {
    height: 31px;
    width: auto;
}

@media screen and (max-width: 1450px) {
    .hero .hero__inner {
        position: relative;
        padding-top: 75px;
        padding-bottom: 40px;
        border-radius: 32px;
        overflow: hidden;
        margin-top: 20px;
        min-height: 895px;
        color: #fff;
        display: flex;
        flex-direction: column;
    }
}

.hero .hero__content {
    --block-padding: 40px;
    max-width: calc(1080px + (var(--block-padding) * 2));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    padding: 0 var(--block-padding) 
}

.hero .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
}

.hero .hero__bg-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero .hero__title {
    font-weight: 500;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -2%;
    margin-top: 94px;
    max-width: 709px;
}

.hero .hero__text {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -1%;
    margin-top: 24px;
    max-width: 640px;
    margin: 24px 0;
}

.hero .hero__blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: auto;
    align-items: flex-end;
    gap: 8px;
}

.hero .hero__block {
    background: linear-gradient(218.17deg, rgba(255, 255, 255, 0) -34.9%, rgba(1, 52, 147, 0.1) 120.46%), rgba(255, 255, 255, 0.2);
    box-shadow: 0px 1.1966px 29.915px rgba(1, 86, 245, 0.05), inset -4px -4px 8px rgba(255, 255, 255, 0.1), inset 4px 4px 8px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 16px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero .hero__block-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -1%;
}

.hero .hero__block-text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-top: 5px;
}

.hero .hero__block-text-wrapper {
    height: 0;
    opacity: 0;
    transition: opacity 0.3s, height 0.5s;
}

.hero .hero__block-plus {
    height: 24px;
    width: 24px;
    transition: transform 0.3s;
    margin-left: auto;
}

@media screen and (max-width: 1450px) {
    .hero .hero__inner {
        min-height: 750px;
    }
}

@media screen and (max-width: 1100px) {
    .hero .hero__title {
        font-size: 35px;
        max-width: 400px;
    }

    .hero .hero__text {
        font-size: 18px;
        max-width: 470px;
    }

    .hero .hero__blocks {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 100px);
    }

    .hero .hero__block-title {
        min-height: 45px;
    }
}

@media screen and (max-width: 700px) {
    .hero .hero__inner  {
        padding-top: 27px;
        border-radius: 20px;
        margin-top: 10px;
        min-height: 550px;
    }

    .hero__inner::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 65%;
        width: 100%;
        background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.43) 100%);
        z-index: -1;
    }

    .hero .hero__content {
        --block-padding: 20px;
    }

    .hero .hero__blocks {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }

    :root {
        --page-margin: 10px;
    }

    .hero .hero__content .hero__blocks {
        display: none;
    }

    .hero .hero__title {
        font-size: 26px;
        margin-top: auto;
    }

    .hero .hero__bg-img {
        object-position: 80%;
    }

    .hero .hero__mobile {
        display: block;
        padding: 20px;
        background-color: #2589FF;
        color: #fff;
        border-radius: 20px;
        margin-top: 20px;
    }

    .hero .hero__blocks {
        margin-top: 0;
    }

    .hero .hero__block-title {
        min-height: unset;
    }

    .hero .hero__logo {
        height: 25px;
    }
}
