:root {
    --banner-url: url('/_content/AcademiaEliSoza.Shared/img/default-banner.webp'); /* Default value */
}

.main-page {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
}

.banner-div-main-page {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    padding-top: 5%;
}

.banner-div-main-page {
    background-position: bottom;
    background-size: cover;
}

.div-h1-mainpage {
    align-content: center;
    width: 80%;
    margin-top: 25px;
    margin-bottom: 20px;
}

h1.banner-mainpg-h1 {
    color: #fff;
    text-align: center;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
}

h2.banner-mainpg-h2 {
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.div-h2-mainpage {
    align-content: center;
    width: 80%;
    margin-bottom: 20px;
}

button.banner-mainpgae-btn {
    color: #fff;
    padding: 10px;
    width: 225px;
    margin-top: 20%;
    border: none; 
    font-size: 18px; 
    outline: none;
    box-shadow: none; 
    font-weight: bold;
}

.data-div-main-page {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 50%;
}

.display-content-mainpage {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

img.logo-prof-mainpage {
    width: 230px;
}



img.logo-afctech {
    width: 115px;
}

span.txt-afctech {
    color: #fff;
    font-size: 10px;
}


/*media tablet*/
@media (max-width: 1024px) {
    h1.banner-mainpg-h1 {
        font-size: 20px;
    }

    h2.banner-mainpg-h2 {
        font-size: 16px;
    }

    button.banner-mainpgae-btn {
        font-size: 15px;
    }
}

/*media celular*/
@media (max-width: 768px) {
    .main-page {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100vw;
        height: 200vh;
        align-items: center;
        align-content: center;
    }

    .banner-div-main-page {
        width: 100%;
        height: 50%;
    }

    .data-div-main-page {
        width: 100%;
        height: 50%;
    }

    h1.banner-mainpg-h1 {
        font-size: 15px;
    }

    h2.banner-mainpg-h2 {
        font-size: 13px;
    }

    .div-h1-mainpage {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .div-h2-mainpage {
        margin-bottom: 0px;
    }

    button.banner-mainpgae-btn {
        width: 180px;
        margin-top: 10px;
        border: none;
        font-size: 13px;
    }

    img.logo-banner-mainpage {
        width: 160px;
    }


    .banner-div-main-page {
        background-image: var(--banner-url) !important;
    }
}