header {
    height: calc(80svh - 4rem);
    width: 100%;
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    color: white;
}

.mainTitle {
    flex: 2;
    padding: 3vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-size: 7vw;
}

.titleDescription {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    padding: 3vw;
    text-align: right;
}

header::before {
    content: "";
    filter: brightness(0.5);
    display: flex;
    width: 100%;
    height: calc(80svh - 4rem);
    background-image: url("../../assets/banner_big.jpg");
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: -1;
}

@media (orientation: portrait) {
    .mainTitle {
        align-items: center;
        text-align: center;
    }
}

.andes-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Proxima Nova', '-apple-system', 'Roboto', Arial, sans-serif;
    border: none;
    border-radius: 6px;
    background-color: #3483fa;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.andes-button:hover {
    background-color: #2968c8;
}

.andes-button__content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.andes-button__text {
    line-height: 1;
}

.andes-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}