.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    aspect-ratio: 1920/960;
    padding: 40px;
    /* padding-top: 176px;  */
    background-color: #000F35;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(9, 18, 39, 0) 0%, rgba(9, 18, 39, 0.50) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero .hero__content { 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
    max-width: 1272px;
    margin: 0 auto;
}

.hero .hero__content .hero__logo { 
    height: 64px;
    width: fit-content;
    object-fit: contain;
}

.hero .hero__content .hero__title { 
    color: #FBFDFF;
     font-size: 80px;
     font-family: CircularXX TT, sans-serif;
     font-weight: 700;
     line-height: 88px;
     word-wrap: break-word;
}

.hero .hero__content .hero__button { 
    color: #FBFDFF;
     font-size: 14px;
     font-family: CircularXX TT, sans-serif;
     font-weight: 700;
     line-height: 21px;
     text-decoration: none;
     background-color: rgba(50, 186, 246, 1);
     padding: 14px 24px;
     border-radius: 24px;
     transition: background-color 0.5s ease;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 8px;
}

@media (max-width: 1280px) {
    .hero .hero__content .hero__title {
        font-size: 64px;
        line-height: 120%;
    }
}

@media (max-width: 768px) {
    .hero{
        aspect-ratio: 768/875;
        /* justify-content: flex-end; */
    }

    .hero .hero__content {
        gap: 8px;
    }

    .hero .hero__content .hero__title {
        font-size: 48px;
        line-height: 120%;
        width: 100%;
    }

    .hero .hero__content .hero__logo { 
        height: 40px;
    }
}