.hero {
    position: relative;
    background: #111B31;
    color: #fff;
    min-height: 660px;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 980px;
    z-index: 2;
    position: relative;
    padding: 40px 60px 0;
}

.hero__title {
    max-width: 980px;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    margin: 0;
}

.hero__subtitle {
    max-width: 460px;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    margin: 0;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    max-width: 226px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.btn-primary {
    background: #3530FA;
    color: #fff;
}

.btn-primary:hover {
    background: #2520d0;
}

.btn-outline {
    border: 1px solid #3530FA;
    color: #fff;
    background: rgba(53, 48, 250, 0.1);
}

.btn-outline:hover {
    background: #2520d0;
}

.hero__image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 796px;
    height: auto;
    aspect-ratio: 796 / 425;
    background-image: url("../images/macbook.png");
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 1;
}


@media (max-width: 992px) {

    .hero__title {
        font-size: 36px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .hero__image {
        position: static;
        margin: 30px auto 0 0;
        max-width: 372px;
        width: 100%;
        height: auto;
        aspect-ratio: 375 / 303;
        background-position: center;
        background-image: url("../images/tab.png");
    }

}


@media (max-width: 768px) {

    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__content {
        align-items: center;
        padding: 20px 10px 0;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }


}
