.hero {
    padding: 64px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    aspect-ratio: 1440 / 400;
    max-height: 400px;
    transition: margin .3s ease;
    margin-top:87.2px;
}

.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(34, 66, 84, 0.89) 45.17%, rgba(34, 66, 84, 0.00) 100%);
}

.hero>* {
    z-index: 4;
    position: relative;
    height: 100%;
}

.hero .hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: center;
    max-width: min(100%, 690px);
}

.hero .hero-wrapper p.subtitle {
    color: #5086B4;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 1;
}

.hero .hero-wrapper h1 {
    color: #fff;
}

.hero .hero-wrapper p {
    color: #fff;
    font-size: 20px;
    opacity: 0.8;
}

.hero .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

@media (max-width:1199px) {
    .hero {
        padding: 64px 0;
    }

    .hero .hero-wrapper p {
        font-size: 16px;
    }

    .hero .hero-wrapper .h1,
    .hero .hero-wrapper h1 {
        font-size: 28px;
    }

    .hero .hero-wrapper p.subtitle {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
}

@media (max-width:991px) {
    .hero {
        aspect-ratio: 991 / 400;
        margin-top:66px;
    }
}

@media (max-width:479px) {
    .hero {
        aspect-ratio: 390 / 388;
        aspect-ratio: auto;
    }
}