
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,600&display=swap');
:root{
    --padding-container: 20px 0;
    --color-title: #001A49;
}
body{
    font-family: 'Poppins', sans-serif;
}
/*Barra de Inicio*/
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
nav{
    background: #ffffff;
    height: 80px;
    width: 100%;
}
.enlace{
    position: absolute;
    padding: 20px 50px;
}
.logo{
    height: 50px;
    width: 200px;
    margin-left: 50px;
}
nav ul{
    float: right;
    margin-right: 20px;
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a{
    color: #000000;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
li a.active, li a:hover{
    background: #434354;
    transition: .5s;
}
.checkbtn{
    font-size: 30px;
    color: #000000;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}
section{
    background: url() no-repeat; 
}

@media (max-width:952px){
    .enlace{
        padding-left: 20px;
    }
    nav ul li a{
        font-size: 16px;
    }
}

@media (max-width:858px){
    .logo{
        height: 50px;
        width: 100px;
        margin-left: 0;
    }
    .checkbtn{
        display: block;
    }
    ul{
        position: absolute;
        width: 100%;
        height: 100vh;
        background: #707c87;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 20px;
    }
    li a:hover, li a.active{
        background: none;
        color: red;
    }
    #check:checked ~ ul{
        left: 0;
        position: absolute;   
    }   
}
h1{
    padding-top: 10px;
}
.snosotros{
    padding-top: 20px;
    text-align: justify;
    padding-right: 20px;
}
/*Pie de Pagina*/
.pie-pagina{
    width: 100%;
    background-color: #0a141d;
}
.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap:50px;
    padding: 45px 0px;
}
.box{
    text-align: justify;
}
.pie-pagina .grupo-1  .box figure img{
    width: 250px;
}
.pie-pagina .grupo-1  .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}
.pie-pagina .grupo-1  .box p{
    color: #efefef;
    margin-bottom: 10px;
}
.pie-pagina .grupo-1  .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: #0d2033;
    text-align: center;
    transition:all 300ms ease;
}
.pie-pagina .grupo-1  .red-social a:hover{
    color: aqua;
}
.pie-pagina .grupo-2{
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small{
    font-size: 15px;
}
@media screen and (max-width:800px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
    }
}
/*Sobre Nosotros*/
.section{
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    width: 70%;
    margin: 15px auto;
    border-radius: 20px;
    
}
.section img{
    width: 400px;
    border-radius: 30px;
}
@media screen and (max-width:800px){
    .section{
        background-color: #ffffff;
        display: inline-block;
        margin-left: 5%;
        width: 85%;
    }
    .section img{
        padding-top: 10px;
        width: 300px;
        height: 300px;
        border-radius: 30px;
    }
    .foto{
        margin-right: 50px;
    }
}
.sectionmv{
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    width: 100%;
    height: 300px;
    text-align: center;
}
.mision{
    background-color: #535353;
    padding-top: 40px;
    color: #ffffff;
}
.vision{
    background-color: #000000;
    padding-top: 40px;
    color: #ffffff;
}

@media screen and (max-width:800px){
    .sectionmv{
        background-color: #ffffff;
        display: inline-block;
        justify-content: space-between;
        padding-top: 40px;
        width: 100%;
        height: 300px;
        text-align: center;
    }
    .mision{
        background-color: #535353;
        padding-top: 40px;
    }
    .vision{
        background-color: #000000;
        padding-top: 40px;
    }
    
}

/*Valores*/
/*Seccion de Planes y Productos*/
.subtitle{
    color: #000000;
}
.price{
    text-align: center;
}
.price_table{
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    justify-content: space-evenly;
    align-items: center;
}
.price_element{
    background-color: #ffffff;
    text-align: center;
    border-radius: 10px;
    width: 330px;
    padding: 40px;
    --color-plan: #ffffff;
    --color-price: #1D293F;
    --bg-cta: #fff;
    --color-items: #696871;
}


