: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 */

.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 {
    width: 50%;
    background: var(--gris_oscuro);
    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 */

.cont_general {
    position: relative;
    margin-top: 60px;
}

.cont_general .cont_info {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: url(../img/historia.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 110;
}

.cont_info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, rgb(121, 8, 250), rgba(90, 1, 78, 0.651));
}

.cont_info .caja {
    position: absolute;
    top: 10%;
    width: 80%;
    height: 20rem;
    /* background: orangered; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: rgb(243, 243, 243);
}

.caja .titulo {
    margin-bottom: 1rem;
}

.caja .parrafo {
    margin-bottom: 1.7rem;
}

.caja .whatsapp, .facebook, .instagram {
    color: rgb(243, 243, 243);
    padding: 15px 25px;
    border-radius: 20px;
    margin-bottom: 13px;
    border-style: solid;
    border-color: rgb(243, 243, 243);
    text-decoration: none;
    transition: all .4s;
    box-shadow: 4px 6px 15px 0px rgba(0, 0, 0, 0.651);
}

.caja .whatsapp:hover, .facebook:hover, .instagram:hover {
    transform: translateX(8px);
}

.caja .whatsapp {
    background:rgb(104, 165, 7);
}

.caja .facebook {
    background: rgb(45, 119, 255);
}

.caja .instagram {
    background: rgb(201, 28, 192);
}

/* 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;

    }

    .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_info .caja {
        position: absolute;
        left: 5rem;
        width: 45%;
        height: 35rem;
        /* background: orangered; */

    }



    .cont_general .cont_info {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background: url(/img/historia.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

}