*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root{
    --very-light-pink: #c7c7c7;
    --white: #ffffff;
    --black:#000000;
    --Light-Sky-Blue:#87CEFA;
    --Deep-Sky-Blue: #00BFFF;
    --sm: 14px;
    --md: 16px;
    --lg: 18px
}

body{
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}


h1:hover {
    color:#00BFFF;
}
h2:hover {
    color:#00BFFF;
}
h3:hover {
    color:#00BFFF;
}

nav{
    background: #EAECEE  ;
    position: sticky;
    justify-content: center;

}

.nav-item  {
    text-decoration: none;
    list-style: none;
    font-weight: bold;
}

.nav-item a:hover{
    color:#00BFFF;
 
}

.dropdown-menu li:last-child{
    border-top: 1px solid var(--very-light-pink);
    
}


.container-blog{

    display: flex;
    justify-content: center;
    gap: 10px;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: -1px -1px 5px 0 var(--Deep-Sky-Blue), 5px 5px 18px 3px RGB(179, 182, 183) ;
    
}


.container-blog p {
    text-align: justify;
    padding-top:0;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 0;
    margin: 0;
    
}

.img-mision{
    display: flex;
    justify-content: center;
    place-content: center;
    
}

.img-mision img{
    height:80%;
    width: 70%;
    filter: drop-shadow(1px 2px 4px black);
}

.img-vision{
    display: flex;
    justify-content: center;
    place-content: center;
}


.img-vision img{
    height:80%;
    width: 70%;
    filter: drop-shadow(1px 2px 4px black);
}

.badge{
    margin-right: 10px;
    filter: drop-shadow(1px 2px 4px black);
    transition: all ease 500ms;

}

.badge:hover{

    transform: scale(1.2);
    color: var(--Deep-Sky-Blue);
    

}


@media (max-width: 810px){

    .container-blog {
        grid-template-columns: repeat(auto-fill, 140px );
        gap: 26px;
    }

    
    .container-blog img {
        width: 140px;
        height: 140px;
    }
}














.footer{
    margin: 20px;
    text-align: center;
}

.footer p{
    font-size: var(--sm);
}


.footer a{
    text-decoration: none;
    list-style: none;
    outline: none;
    color: #000000;
    
}

.footer a:hover{
    color: var(--Deep-Sky-Blue);
}

.footer p:hover{
    color: var(--Deep-Sky-Blue);
}

.redesSociales{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px;
}

.redesSociales p {
    text-align: right;
    padding-top:0;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 0;

    margin: 0;
}

.redesSociales a img{
   width: 50PX;
   height: 50px;
   transition: all ease 300ms;
   
}

.redesSociales a img:hover{
    
    transform: scale(1.2);
    
}


@media (max-width: 640px){

    .cards-container{
        grid-template-columns: repeat(auto-fill, 140px );
        gap: 26px;
    }

    .product-card{
        width: 140px;
    }
    
    .product-card img {
        width: 140px;
        height: 140px;
    }

}
