:root {
    font-size: 15px;
    --gris_oscuro: rgb(63, 63, 63);
    --gris_medio: rgb(100, 100, 100);
    --gris_claro: rgb(158, 158, 158);
    --morado: rgb(49, 28, 59);
    --opensans300: 'Open Sans', sans-serif;
    --opensans400: 'Open Sans 400', sans-serif;
    --lobster: 'Lobster', cursive;
    --rosado: rgb(255, 188, 255);
}


* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    display: none;
}

html {
    /* Firefox Fix */
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    font-family: var(--opensans300);
    overflow-x: hidden;
    overflow-y: hidden;
}

/* MOBILE FIRST  */

/* Header */

header {
    position: relative;
}

.btn_menu {
    background: var(--gris_medio);
    width: 100%;
    height: 4rem;
    position: fixed;
    z-index: 1000;

}

.btn_menu .icon_menu {
    color: var(--gris_claro);
    font-family: var(--opensans400);
    display: flex;
    justify-content: space-between;
    height: 4rem;
    align-items: center;
    padding: 0 2rem;
    cursor: pointer;
}

.btn_menu .icon_menu i {
    font-size: 1.5rem;
}

#btn_menu {
    display: none;
}

.container_menu {
    position: absolute;
    padding-top: 4rem;
    transition: all 300ms ease;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 900;
    position: fixed;
}

#btn_menu:checked~.container_menu {
    opacity: 1;
    visibility: visible;
}

.cont_menu {
    background: var(--gris_oscuro);
    width: 50%;
    height: 100vh;
    transition: all 300ms ease;
    transform: translateX(-100%);


}

#btn_menu:checked~.container_menu .cont_menu {
    transform: translateX(0%);
}

.cont_menu nav {
    transform: translateY(15%);
}

.cont_menu nav a {
    display: block;
    text-decoration: none;
    color: var(--gris_claro);
    padding: 20px;
    border-left: 5px solid transparent;
    transition: all 300ms ease;
}

.cont_menu nav a:hover {
    border-left: 5px solid var(--gris_claro);
    background: rgb(73, 73, 73);

}

.cont_menu nav a i {
    margin-right: 1rem;
}

.cont_menu label {
    position: absolute;
    right: 15px;
    top: 10px;
    color: var(--gris_claro);
    font-size: 1.2rem;
    cursor: pointer;
}

.logo {
    display: none;
}

/* Section */

.btn_menu {
    background: var(--gris_medio);
    width: 100%;
    height: 4rem;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.cont_vid {
    position: relative;
    top: 60px;
    width: 100%;
    /* background: #d61111; */
    /* padding-bottom: 20rem; */
}

.cont_cajas {
    position: relative;
    top: 55px;
    padding-bottom: 5rem;
}

.cont_vid video {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    
}

.cont_parrafo {
    width: 85%;
    height: 13rem;
    /* background: rgb(245, 122, 122); */
    margin: auto;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.contenedor_info .parrafo {
    text-align: justify;
    color: rgb(224, 224, 224);
    font-size: 18px;
    font-family: var(--lobster);
}

/* Sectin_Scroll */

.div_scroll {
    position: relative;
    background: var(--morado);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    color: var(--gris_claro);

}

.div_scroll1 {
    background: #fff;
}

.div_scroll2 {
    background: var(--morado);
}

.div_scroll3 {
    background: #fff;
}

.div_scroll4 {
    background: var(--morado);
}

.div_scroll:nth-child(3) {
    color: var(--gris_claro);
    background: #fff;
}

.div_scroll:nth-child(5) {
    color: var(--gris_oscuro);
    background: #fff;
}

.div_scroll .container {
    width: 85%;
    padding: 3rem 0;
    /* background: rgb(47, 228, 41); */
}

.container h2 {
    text-align: center;
    padding-bottom: 2rem;
    font-size: 2.2rem;
    text-transform: uppercase;
    /* margin-top: -10rem; */
}

.cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;

}

.cards .img_cards {
    background: rgb(216, 17, 17);
    width: 16rem;
    height: 12rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 2rem;
   
}

.img_cards img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cards .text_cards {
    width: 30rem;
    max-height: 15rem;
    /* background: rgb(194, 94, 94); */
    overflow: scroll;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;

}

.text_cards h3 {
    padding-bottom: 1rem;
}

.text_cards p {
    text-align: justify;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 1.5s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

.enlace {
    width: 100%;
    /* background-color: aqua; */
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enlace img {
    width: 25px;
    margin-left: 8px;
    transition: all 1s;
}

.enlace img:hover {
    transform: scale(1.15);
}

/* VISTA 590PX */

@media screen and (max-width: 590px) {

    .contenedor_info .titulo_h1 {
        font-size: 3rem;
        padding-bottom: 2.5rem;
        font-family: var(--lobster);
        color: var(--rosado);
    }



}

/* VISTA 435PX */

@media screen and (max-width: 435px) {

    .contenedor_info .titulo_h1 {
        font-size: 2.5rem;
        padding-bottom: 2.5rem;
        font-family: var(--lobster);
        color: var(--rosado);
    }

}

/* VISTA 330PX */

@media screen and (max-width: 330px) {

    .contenedor_info .titulo_h1 {
        font-size: 2.2rem;
        padding-bottom: 2.5rem;
        font-family: var(--lobster);
        color: var(--rosado);
    }



}

/* VISTA PC */

@media screen and (min-width: 811px) {

    /* Hedaer */

    .btn_menu {
        display: none;
    }

    .container_menu {
        opacity: 1;
        visibility: visible;
        padding-top: 0;
        z-index: 1000;
    }

    .cont_menu {
        transform: translateX(0%);
        height: 4rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--gris_oscuro);
    }

    .cont_menu nav {
        transform: translateY(0%);
        display: flex;
        padding-right: 3rem;
    }

    .container_menu .cont_menu label {
        display: none;
    }

    .cont_menu nav a {
        display: block;
        text-decoration: none;
        color: var(--gris_claro);
        padding: 20px;
        border-left: none;
        transition: all 300ms ease;
    }

    .cont_menu nav a:hover {
        border-left: none;
        background: rgb(73, 73, 73);

    }

    .logo {
        display: block;
        width: 3rem;
        padding-left: 3rem;
    }
    

    /* Section */

    .cont_parrafo {
        width: 85%;
        height: 13rem;
        /* background: rgb(245, 122, 122); */
        margin: auto;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .contenedor_info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    /* Section_scroll */

    .cards .img_cards {
        /* background: black; */
        width: 16rem;
        max-height: 15rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;

    }
}