/*FONT IMPORTS*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}

header {
    font-family: 'Bebas Neue' !important;
    font-size: larger;
    z-index: 999;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    background-color: transparent;
    transition: all 0.5s ease;
}

.fade-out {
    transition: all 0.5s ease;
    background-color: rgba(0, 0, 0, 1);
}

.hLogo {
    height: 70px;
    margin-left: 10px;
    display: flex;
    align-items: start;
}

.hOp {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 70px;
}

.btnLogIn {
    /*font-family: 'Bebas Neue' !important;*/
    height: 100%;
    background-color: #FD2E35;
    color: white;
    width: 105px;
    text-align: center;
    display: grid;
    place-items: center;
    text-decoration: none;
}

.btnSignUp {
    /*font-family: 'Bebas Neue' !important;*/
    height: 100%;
    background-color: #000000;
    color: white;
    width: 105px;
    text-align: center;
    display: grid;
    place-items: center;
    text-decoration: none;
}

.btnSignUp:hover {
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #000000;
}

.btnLogIn:hover {
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #FD2E35;
}



/*BODY HOME*/

.body {
    position: relative;
    float: left;
    background: #000000;
    width: 100%;
    height: 100%;
    background-image: url(../ASSETS/HomeIMG1.jpg);
    background-attachment: fixed;
    background-size: cover;
    transition: all 0.4s ease;
}

.bodyNutriFondo {
    background-image: url(../ASSETS/HomeIMG2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
}
.bodyFinal{
    background-image: url(../ASSETS/imgBlack.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
}



.ej1General {
    position: relative;
    float: left;
    height: 1010px;
    width: 100%;
}

.ej1Title {
    font-family: 'Anton', sans-serif;
    color: #ffffff;
    letter-spacing: 2px;
    position: relative;
    float: right;
    margin-top: 500px;
    margin-right: 75px;
    font-size: 72px;
    border: 1px solid white;
    padding: 50px;


}

.fade-inTitle {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.ej1Desc {
    font-family: 'Lato', sans-serif;
    position: relative;
    float: left;
    padding-left: 75px;
    padding-bottom: 150px;
    padding-top: 50px;
    padding-right: 400px;
    margin-bottom: 150px;
    border-bottom: 1px solid white;
    color: #ffffff;
    width: 85vw;
    font-size: 32px;
    font-weight: 500;
    text-align: justify;
}

.ej2General {
    position: relative;
    float: left;
    height: 810px;
    width: 100%;
}

.ej2Title {
    font-family: 'Anton', sans-serif;
    color: #ffffff;
    letter-spacing: 2px;
    position: relative;
    float: right;
    margin-top: 200px;
    margin-right: 75px;
    font-size: 72px;
    border: 1px solid white;
    padding: 50px;
    margin-left: 5vw;
}

.ej2Desc {
    font-family: 'Lato', sans-serif;
    position: relative;
    float: left;
    padding-left: 75px;
    padding-bottom: 150px;
    padding-top: 50px;
    padding-right: 400px;
    margin-bottom: 50px;
    border-bottom: 1px solid white;
    color: #ffffff;
    width: 85vw;
    font-size: 32px;
    font-weight: 500;
    text-align: justify;

}

.cajaFinHome{
    position: relative;
    float: left;
    display: grid;
    place-items: center;
    width: 100%;
    height: 500px;
    transition: all 0.4s ease;
}

.cajaFinHome a{
    font-family: 'Bebas Neue' !important;
    background-color: #FD2E35;
    height: 70px;
    width: 150px;
    color: #ffffff;
    text-decoration: none;
    display: grid;
    place-items: center;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}
.cajaFinHome a:hover{
    font-family: 'Bebas Neue' !important;
    background-color: #ffffff;
    height: 70px;
    width: 150px;
    color: #FD2E35;
    text-decoration: none;
    display: grid;
    place-items: center;
    border: 1px solid #FD2E35;
    transition: all 0.3s ease;
}

@media screen and (min-width: 767px) and (max-width: 1375px){
    .ej1General{
        height: 70vh;
    }
    .ej1Title{
        margin-left: 50px;
        margin-top: 150px;
    }
    .ej1Desc {
        /*No añado más parametros pq no son necesarios dado que los hereda de la clase superior*/
        padding-right: 100px;
        border-top: solid 2px white;
        border-bottom: solid 2px white;
        width: 100vw !important;
    }
    .ej2General{
        height: 70vh;
    }
    .ej2Title {
        font-family: 'Anton', sans-serif;
        color: #ffffff;
        letter-spacing: 2px;
        position: relative;
        float: left;
        margin-top: 0px;
        margin-right: 5vw;
        margin-left: 5vw;
        font-size: 72px;
        border: 1px solid white;
        padding: 50px;
    }
    .ej2Desc{
        padding-right: 100px;
        border-top: solid 2px white;
        border-bottom: solid 2px white;
        width: 100vw !important;
        padding-bottom: 75px;
        margin-bottom: 150px;
    }
}
@media screen and (max-width: 768px){
    .body {
        background-image: url(../ASSETS/home-image-phone1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .ej1General{
        position: relative;
        float: left;
        height: 10%;
        width: 100%;
    }
    .ej1Title{
        margin-top: 100px;
        margin-right: 0px;
        font-size: 36px;
        border: none;
        padding: auto;
    }
    .ej1Desc {
        /*No añado más parametros pq no son necesarios dado que los hereda de la clase superior*/
        padding-right: 45px;
        padding-left: 45px;
        border-top: solid 2px white;
        border-bottom: solid 2px white;
        width: 100vw !important;
        font-size: 19px;
        padding-bottom: 50px;
        margin-bottom: 0px;
    }
    .ej1Desc h2{
        font-size: 32px;
    }
    .ej2General {
        position: relative;
        float: left;
        height: 15%;
        width: 100%;
    }
    .ej2Title {
        margin-top: 50px;
        margin-right: 0px;
        font-size: 36px;
        border: none;
        padding: auto;
    }
    .ej2Desc{
        padding-right: 45px;
        padding-left: 45px;
        border-top: solid 2px white;
        border-bottom: solid 2px white;
        width: 100vw !important;
        font-size: 19px;
        padding-bottom: 50px;
        margin-bottom: 0px;
    }
    .ej1Desc h2{
        font-size: 32px;
    }
}