.site-header {
    background-color: white !important;
}

main {
    padding-top: 96px;
}

@media (max-width: 1280px) {
    main {
        padding-top: 80px;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: calc(90vh - 96px);
    border: 16px solid rgba(251, 253, 255, 1);
    border-top: none;
    position: sticky;
    top: 96px;
    z-index: 1;
}

@media (max-width: 1280px) {
    .hero {
        top: 80px;
        height: calc(80vh - 80px);
    }
}

.hero__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background: rgba(12, 25, 55, 1);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__logo {
    position: absolute;
    top: 120px;
    left: 120px;
    width: 275px;
    height: 72px;
    object-fit: contain;
    object-position: left;
}

.hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    padding: 0 120px 120px 0;
}

.hero__title {
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 88px;
    letter-spacing: 0%;
    text-align: right;
    color: white;
    max-width: 805px;
    /* direction: ltr; */
}


.hero__buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.links-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.hero__button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    border-radius: 24px;
    background-color: rgba(0, 21, 74, 1);
    color: rgba(255, 255, 255, 1);
    font-family: CircularXX TT, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-decoration: none;
    transition: background-color 0.5s ease;
}

.hero__button:hover {
    background-color: rgb(70, 192, 245);
}

.hero__back-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    font-family: CircularXX TT, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 24px;
    transition: background-color 0.5s ease;
}

.hero__back-button:hover {
    background-color: rgba(50, 186, 246, 0.16);
}

.hero__back-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hero__back-icon--back {
    background-image: url(../../../assets/images/icons/arrow-turn-up.png);
}


@media (max-width: 1400px) {
    .hero__logo {
        top: 60px;
        left: 60px;
    }
}

@media (max-width: 1280px) {
    .hero__content{
        padding: 40px;
    }

    .hero__logo {
        top: 40px;
        left: 40px;
    }
}

@media (max-width: 768px) {

    .hero {
        border: 8px solid rgba(251, 253, 255, 1);
    }
    
    .hero__buttons {
        align-items: flex-end;
    }

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

    .hero__button,
    .hero__back-button {
        width: 100%;
        justify-content: center;
    }

    .hero__title {
        font-size: 40px;
        line-height: 48px;
    }

    .hero__logo {
        top: 40px;
        left: 40px;
        width: 182px;
        height: 46px;
    }
}