/* Extra large devices (large desktops) */
@media (min-width: 1600px) { 
    .container {
        max-width: 1400px;
    }                 
}

/* Large devices (desktops, more than 1200px) */
@media (min-width: 1200px) { 
    .navbar-dark .navbar-nav .nav-link{
        font-size: 16px;
        padding-right: 1rem;
        padding-left: 1rem;
    }  
    #beneficios .box-featured {
        width: 25%;
    }     
    #beneficios .box-featured .description {
        max-width: 320px;
    }    
    #beneficios .box-featured a img {
        transition: all 0.2s;
    }
    #beneficios .box-featured a:hover img{
        transform: scale(1.2);
    }  
    footer .list-tiendas li:hover {
        transform: translate(10px, 0);
    }         
}

/* When menu makes mobile */
@media (min-width: 992px) {
    .contenedor-logo {
        width: 100%;
        height: 160px;
        background-image: url('../images/header-bg.svg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;
    }
    .contenedor-logo a {
        width: 500px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #tiendas .contact-data a {
        color: #fff;
        padding: 5px 10px;
    }
    #tiendas .contact-data a:hover {
        background-color: #000;
        border-radius: 5px;
    }
    #tiendas .box-tienda:hover .store-pic::before,
    #tiendas .box-tienda:hover .contact-data {
        opacity: 1;
    }
    #tiendas .contact-data {
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translatex(-50%);
        opacity: 0;
    }           
}

/* Medium devices (tablets, more than 992px) */
@media (min-width: 992px) and (max-width:1199px) {
    #beneficios .box-featured .image {
        width: 70px;
    }
    #beneficios .box-featured .description {
        width: calc(100% - 74px);
    }  
}

/* iPad Pro Landscape */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {

}

/* iPad Pro Portrait */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
       
}

     
/* Medium devices (tablets, less than 992px) */
@media (min-width: 769px) and (max-width:991px){
    #beneficios .box-featured .image {
        width: 50px;
    }
    #beneficios .box-featured .description {
        width: calc(100% - 54px);
    }
    #beneficios .box-featured .description p {
        font-size: 1em;
    } 
    #tiendas .contact-data a:hover {
        background-color:var(--main-color);
        border-radius: 5px;
    }   
}

/* Eberything is not mobile */
@media (min-width: 769px) {
    #beneficios .box-featured .description p {
        width: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768px) { 
    header .page-title h1,
    h1.title {
        font-size: 2.5em;
    }    
    header.home {
        height: 500px;
    }  
    #beneficios .box-featured {
        width: 100%;
        height: auto;
    }
    #beneficios .box-featured .image,
    #beneficios .box-featured .description {
        width: 100%;
        height: auto;
        max-width: 100%;
        float: none;
        text-align: center;
        display: block;
    }
    #beneficios {
        padding-bottom: 30px;
    }    
    #tiendas .contact-data a:hover {
        background-color:var(--main-color);
        border-radius: 5px;
    }   
    #contacto {
        padding-bottom: 30px;
    }            
   
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) { 
   
                       
}

