
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    min-height:100vh;
    background-color:white;
    font-family: 'Montserrat';
}
nav{
    background-color:#316197;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    position:sticky;
    top:0;
    z-index:9999;
    
}

nav ul{
    width:100%;
    list-style:none;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

nav li{
    height: 100px;
}

nav img{
    height:85%;
    width:40%;
   
}

nav a{
    height:100%;
    padding:0px 30px;
    text-decoration:none;
    display:flex;
    align-items:center;
    color:white;
}

nav a:hover{
    background-color:#2e537f;
    font-weight: bold;
}

nav li:first-child{
    margin-right:auto;
}

.noColor a:hover{
    background-color:#316197;
}

.noColor a{
    
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: bold;

}

.sidebar{
    position:fixed;
    top: 0;
    right:0;
    height:100vh;
    width:250px;
    z-index:999;
    background-color: #3161976e;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
}

.sidebar li{
    width:100%
}

.sidebar a{
    width:100%;
}

.sidebar img{

    height:100%;
    width:20%;
}

.menu-button{
    display:none;
}

.contenedorOpiniones{
    display:block;
    text-align:center;
}

.contenedorOpiniones img{
    margin:2px;
    border-radius:20px;
    width:700px;
    
    box-shadow: 1px 1px 1px 1px rgba(32,32,32,0.3);
}

.tituloOpiniones{
    text-align:center;
    padding:20px;
    width:100%;
    background-color:#316197 ;
    border-radius:30px;
    color:white;
    margin:10px;
}

.contenedorOpiniones a{

    color:#316197;

}

.contenedorTarjetas{
    width:100%;  
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    margin:auto;
    
}

.contenedorTarjetas .tarjeta{
    width: 500px;
    height:580px;
    border-radius:8px;
    box-shadow:0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin:20px;
    text-align:center;
    transition: all 0.25s;
    background-color: white;
}

.contenedorTarjetas .tarjeta-dos{
    width: 500px;
    height:680px;
    border-radius:8px;
    box-shadow:0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin:20px;
    text-align:center;
    transition: all 0.25s;
    background-color: white;
    padding:10px;
}

.contenedorTarjetas .tarjeta-tres{
    width: 550px;
    height:580px;
    border-radius:8px;
    box-shadow:0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin:20px;
    text-align:center;
    transition: all 0.25s;
    background-color: white;
    
}

.contenedorTarjetas .tarjeta:hover, .tarjeta-dos:hover, .tarjeta-tres:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.contenedorTarjetas .tarjeta img, .tarjeta-dos img, .tarjeta-tres img{
    margin-top:20px;
    margin-bottom:20px;
    width:450px;
    height:300px;
}

.contenedorTarjetas .card h4{
    
    font-weight: 600;
}

.contenedorTarjetas .tarjeta li{
    
    margin-top:5px;
    font-size: 16px;
    font-weight: 300;
}

.contenedorTarjetas .tarjeta ul{
    margin-top:20px;
    font-size: 16px;
    font-weight: 300;
}

.contenedorTarjetas .tarjeta-dos li{
    margin-top:5px;
    font-size: 16px;
    font-weight: 300;
    list-style: none;
}

.contenedorTarjetas .tarjeta-dos ul{
    margin-top:20px;
    font-size: 16px;
    font-weight: 300;
    list-style: none;
}

.contenedorTarjetas .tarjeta-tres li{
    margin-top:5px;
    font-size: 16px;
    font-weight: 300;
}

.contenedorTarjetas .tarjeta-tres ul{
    margin-top:20px;
    font-size: 16px;
    font-weight: 300;
}

.contenedorTarjetas .tarjeta a{
    color:lightblue;
    text-decoration:none;
    font-weight: 500;
}

.contenedorColor{
   
    text-align:center;
    padding-bottom:100px;
    background-color:rgba(178, 196, 150, 0.347);
}

.contenedorColor h1{
    font-family: 'Montserrat';
    color:black;
    font-weight: bold;
    padding-top:50px;
    padding-bottom:50px;
    text-transform: uppercase;
}


.footer{
    position:relative;
    background-color:#254973;
    min-height:100px;
    padding: 20px 50px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction: column;
}

.social-icon{
    display:flex;
    justify-content: center;
    align-items: center;
    position:relative;
    margin:10px 5px;
    flex-wrap:wrap;
}

.icon-elem{
    list-style:none;
}

.icon{
    color:white;
    font-size:32px;
    display:inline-block;
    margin:0 10px;
    transition: 0.5s;
}

.icon:hover{
    transform:translateY(-10px);
}

.menu{
    display:flex;
    justify-content: center;
    position:relative;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.menu-icon{
    color:white;
    font-size:20px;
    text-decoration:none;
    margin:5px 10px;
    opacity: 0.75;
    transition: 0.3s;
}

.menu-elem{
    list-style: none;
}

.menu-icon:hover{
    opacity:1;
}

.text{
    color:white;
    text-align:center;
    margin-top:15px;
    margin-bottom:10px;
    font-size:20px;

}

@media(max-width:800px){
    .hideOnMobile{
        display:none;
    }

    .menu-button{
        display:block;
    }    
}

@media(max-width:800px){
    .sidebar{
        width:100%;
    }

    .contenedorTarjetas .tarjeta-dos{

        height:720px;
    
    }

    .contenedorTarjetas .tarjeta-tres{
       
        height:620px;
        
        
    }

}

