@import url(../fonts/Nexa/fonts.css?v=1);

.header {
    background-image: url(../media/header/header-background.svg);
    background-size: auto;
    background-repeat: no-repeat;
    width: 100%;
    background-position-x: -80px;
    background-position-y: -200px;
    display: flex;
    height: 100vh;
}

.header-wrapper {
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.header-components-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header-text-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    justify-content: center;
}

.header-title {
    color: #fff;
    width: 100%;
    font-weight: bold;
    font-family: Nexa Heavy;
    font-size: 60px;
}

.header-title .red {
    background-color: #AE0921;
}

.header-subtitle {
    color: #fff;
    width: 100%;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 40px 0 40px;
}

.header-button {
    margin: auto;
    max-width: 180px;
    width: 100%;
    background-color: #fff;
    color: #1E2345;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 15px 20px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    outline: 0;
    border: 0;
    cursor: pointer;
    margin: 0 auto 0 0;
}

.header-images-wrapper {
    width: 100%;
    max-width: 1150px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 150px;
}

.header-images-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/********************* RESPONSIVE  *********************/
@media screen and (max-width: 3100px) and (min-width: 1880px) {
    .header {
        background-position-x: 0px;
    }
    .header-wrapper {
        padding-bottom: 150px;
        padding-left: 130px;
        padding-right: 130px;
        max-width: unset;
    }
}

@media screen and (max-width: 1300px) {
    .header-components-wrapper {
        flex-direction: column;
    }

    .header-images-wrapper {
        padding-top: 0;
        margin: auto;
    }

    .header-text-wrapper {
        justify-content: center;
        align-items: center;
        padding: 115px 35px 0;
        max-width: 900px;
    }

    .header-subtitle {
        padding: 45px 0 15px;
    }

    .header {
        height: unset;
    }
}

@media screen and (max-width: 765px){
    .header-title{
        font-size: 50px;
    }
    .header-subtitle{
        font-size: 20px;
    }
}