@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/chalkboard');

/* 
    font-family: "Montserrat", sans-serif;
    font-family: "Red Hat Display", sans-serif;
    font-family: 'chalkboard', sans-serif;
*/

:root{
    --red: Arial, Helvetica, sans-serif;
    --mon: "Montserrat", sans-serif;
    --yellow:#FED876;
    --rojo:#FE8B76;
}

*{
    margin:0;
}

body::-webkit-scrollbar{
    display: none;
    font-family: Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior: smooth;
}

.landing{
    background-color: rgba(0, 0, 0, 0.555);
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    background-color: black;
    animation: back ease forwards 1s 1 ;
}

@keyframes back {
    0%{
        background-color: black;
    }

    100%{
        background-color: rgba(0, 0, 0, 0.652);
    }
}

.videoBack{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; 
    transform: scale(1.5);
}

.videoPhone{
    display: none;
}

@media (max-width:900px) {
    .videoBack{
        transform: scale(2);
    }
}

@media (max-width:670px) {
    .videoBack{
        transform: scale(3);
    }
}

@media (max-width:570px) {
    .videoBack{
        display: none;
    }

    .videoPhone{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1; 
        transform: scale(1.5);   
        display: block; 
    }
}




.infoLanding{
    width: 650px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.beforeP{
    text-align: center;
    font-family: var(--red);
    font-style: italic;
}

.mainTitle{
    font-family: var(--mon);
    font-size: 55px;
    text-align: center;
    margin: 10px 0;
}

.subTitle{
    font-family: var(--red);
    font-size: 18px;
    width: 500px;
    text-align: center;
    font-weight: normal;
}

.aCont{
    margin-top: 40px;
}

.CTAOne{
    padding: 18px 34px;
    background-color: white;
    text-decoration: none;
    color: black;
    font-family: var(--red);
    font-size: 18px;
    transition: all 400ms ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.CTAOne:hover{
    background-color: var(--yellow);
    transition: all 400ms ease;
}

.CTATwo:hover{
    background-color: black;
    color: white;
    transition: all 400ms ease;
}

.CTATwo{
    position:relative;
    padding: 20px 34px;
    background-color: var(--rojo);
    text-decoration: none;
    color: black;
    font-family: var(--red);
    font-size: 18px;
    transition: all 400ms ease;
    margin-left: 12px;
    opacity: 0;
}

@media (max-width:720px) {
    .infoLanding{
        width: 600px;
    }

    .mainTitle{
        font-family: var(--mon);
        font-size: 50px;
    }

    .subTitle{
        font-family: var(--red);
        font-size: 20px;
        width: 500px;
    }

}


@media (max-width:620px) {
    .infoLanding{
        width: 380px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .mainTitle{
        font-family: var(--mon);
        font-size: 30px;
        text-align: center;
        width: 100%;
    }

    .subTitle{
        font-family: var(--red);
        font-size: 16px;
        text-align: center;
        width: 100%;
    }

    .CTAOne{
        position:relative;
        margin-bottom: 20px;
        font-size: 17px;
        background-color: white;
    }
    
    .CTATwo{
        margin-left: 0;
        font-size: 17px;
    }

    .aCont{
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}


@media (max-width:450px) {
    .infoLanding{
        width: 320px;
    }

    .mainTitle{
        font-family: var(--mon);
        font-size: 30px;
        text-align: center;
        width: 100%;
    }

    .subTitle{
        font-family: var(--red);
        font-size: 14px;
        text-align: center;
        width:80%;
    }

    .CTAOne{
        position:relative;
        margin-bottom: 20px;
        font-size: 16px;
    }
    
    .CTATwo{
        margin-left: 0;
        font-size: 14px;
    }

    .aCont{
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

.animOne{
    animation: one ease 600ms forwards 1;
    opacity: 0;
}

@keyframes one {
    0%{
        opacity: 0;
        transform: translateX(30px);
    }

    100%{
        opacity: 100%;
        transform: translateX(0);
    }
}

.animTwo{
    animation: two ease 600ms forwards 1;
    opacity: 0;
}

@keyframes two {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 100%;
    }
}


/* == about information 0== */
.about{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 100px 20px;
    background-color: var(--rojo);
    position: relative;
}

.picAbout{
    width: 500px;
    height: 600px;
    border-radius: 11px;
    background-image: url(img/lolyscuatro.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.leftAbout{
    width: 400px;
}

.titleAbout{
    font-family: var(--mon);
    color:white;
    font-size: 40px;
}

.abtP{
    font-family: var(--red);
    font-size: 18px;
    margin: 20px 0 50px 0;
    color: white;
}


.aboutA:hover{
    background-color: black;
    color: white;
    transition: all 400ms ease;
}

.aboutA{
    position:relative;
    padding: 20px 34px;
    background-color: var(--yellow);
    text-decoration: none;
    color: black;
    font-family: var(--red);
    font-size: 18px;
    margin-top: 60px;
    transition: all 400ms ease;
}


@media (max-width:960px) {
    .about{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .leftAbout{
        margin-bottom: 40px;
        width: 400px;
    }
}

@media (max-width:550px) {
    .leftAbout{
        margin-bottom: 40px;
        width: 300px;
    }

    .picAbout{
        width: 300px;
        height: 400px;
    }
}



@media (max-width:400px) {
    .leftAbout{
        margin-bottom: 40px;
        width: 250px;
    }

    .picAbout{
        width: 250px;
        height: 400px;
    }

    .aboutA{
        font-size: 15px;
        padding: 10px 20px;
        margin-top: 0;
    }

    .abtP{
        font-size: 17px;
        margin:20px 0;
    }
}

/* == bar == */
.barMain{
    width: 100%;
    background-color: white;
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden;
    flex-wrap: wrap;
}

.barCont{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.barTitle{
    font-family: var(--mon);
    font-weight: 900;
    font-size: 80px;
}

.barP{
    font-family: var(--red);
    width:220px;
    font-size: 18;
    font-weight: 700;
}

@media (max-width:760px) {
    .barCont{
        margin: 20px 20px;
    }

    .barTitle{
        font-size: 40px;
    }

    .barP{
        width: 200px;
    }
}

.business{
    width: 100%;
    background-color: var(--rojo);
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden;
    flex-wrap: wrap;
}

.businessMain{
    width: 96%;
    height: auto;
    padding: 50px 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #FFEFEC;
    border-radius: 20px;
    color:black;
}

.businessPhoto{
    width: 500px;
    height: 600px;
    background-image: url(img/lolyscinco.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 11px;
    flex-wrap: wrap;
}

.aboutBusiness{
    width: 500px;
    color:black;
}

.titleBusiness{
    font-family: var(--mon);
    font-size: 45px;
    color: black;
}

.busP{
    margin: 20px 0 40px 0;
    font-size: 20px;
    font-family: var(--red);
}

.busA:hover{
    background-color: var(--yellow);
    color: black;
    transition: all 400ms ease;
}

.busA{
    position:relative;
    padding: 20px 50px;
    background-color: var(--rojo);
    text-decoration: none;
    color: white;
    border-radius: 1000px;
    font-family: var(--red);
    font-size: 18px;
    margin-top: 60px;
    transition: all 400ms ease;
}

@media (max-width:1111px) {
    .aboutBusiness{
        width: 300px;
    }
}

@media (max-width:950px) {
    .aboutBusiness{
        width: 500px;
        margin-bottom: 50px;
    }


    .businessPhoto{
        width: 500px;
    }

    .businessMain{
        flex-direction: column-reverse;
        width: 90%;
    }

}

@media (max-width:640px) {
    .aboutBusiness{
        width: 340px;
        margin-bottom: 50px;
    }

    .busP{
        font-size: 17px;
    }


    .businessPhoto{
        width: 340px;
        height: 400px;
    }

    .businessMain{
        flex-direction: column-reverse;
    }
}

@media (max-width:430px) {
    .aboutBusiness{
        width: 260px;
        margin-bottom: 50px;
    }

    .busP{
        font-size: 17px;
    }

    .titleBusiness{
        font-size: 30px;
    }


    .businessPhoto{
        width: 260px;
        height: 400px;
    }

    .businessMain{
        flex-direction: column-reverse;
    }
}