@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wrapper{
    max-width: 1500px;
    margin: 0 auto;
}

body{

    background: linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.2)), url("../img/candy-1.jpg")no-repeat center center/cover;
    font-family: 'Fredoka One', cursive;
}


.logo {
    width: 180px;
    height: auto;
}



.logo img{
    width: 100%;
    /* margin-bottom: 10px; */
    padding-left: 18px;
}

.navbar{
    /* position: fixed; */
    max-width: 1500px;
    height: auto;
    width:100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 5px 0px;
    opacity: 1;
    overflow: hidden;
    position: fixed;
    top: 0;
    z-index: 15;

}

.main{
    margin-top: 125px;
}

.navbar ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding:0px 10px;
    flex:0;
}

.navbar a{
    color: #fff;
    padding: 0px 20px;
    font-size: 1.2rem;
}

.logo a{
    padding: 0px;
}

.navbar ul li{
    border-right: 1px solid #fff;
}

.navbar ul li:last-child{
    border-right: none;
}

.selected{
    background:#404040;
    border-bottom: 3px #f030e7 solid;

}

/*INFORMATION BOX*/

.information-box{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    margin-top:20px; 
}

.box{
    margin: 10px auto;
    /* margin-bottom: 10px;
    margin-top: 10px;   */
}

.information-box h1{
    text-align: center;
    color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 2rem;
    background: #333;
    border-radius: 15px;
    opacity: .9;
    padding: 10px 0;
}


.information-box img{
    display: block;
    margin: 0px auto;
    width: 100%;
    height: auto;
    border-radius: 15px;
}

#dulces-image{
    display: none;
}

#repeated{
    display: none;
}

footer{
    bottom: 0;
    width: 100%;
    height: auto;
    background: #333;
    color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    text-align: center;
    opacity: .95;
    padding-top: 15px;
    margin-top: 15px;
    
}




footer a{

    color:#f030e7;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.cards img{
    width: 100px;

}



/* OVERLAY EFFECT*/
.overlay-container {
    
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
  
  .box-image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
  }
  
  .middle {
    height: inherit;
    display:flex ;
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 25px 0;       
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%) */
  }
  
  .overlay-container:hover .box-image {
    opacity: 0.5;
  }
  
  .overlay-container:hover .middle {
    opacity: 1;
  }
  
 
  .brand-logo{
    width: 15% !important;
    height: auto;
    margin: 12px !important;
}

/*   catalogue      */

.catalogue{
    display: flex;
    flex-direction: column;
    padding:10px 0px;
    align-items: center;
    justify-content: space-evenly;
}



.catalogue .desechables img{
    width: 20%;
    height: auto;
    border-radius: 50%;
}

.catalogue .dulces img{
    width: 20%;
    height: auto ;
    border-radius: 50%;
}

.catalogue .botanas img{
    width: 20%;
    height: auto;
    border-radius: 50%;
}

.catalogue .fiesta img{
    width: 20%;
    height: auto;
    border-radius: 50%;
}

.catalogue .item{
    
    width: 80%;
    display: flex;
    border-radius: 20px;
    justify-content:  ;
    margin: 10px 0px;
    padding: 10px 5%;
    align-items: center;
    background: #f7c08a;
    opacity: .9;
    color: white;
    -webkit-text-stroke-width:1.5px;
    -webkit-text-stroke-color: black;
    font-weight: 800;
    
}

.catalogue .item h2{
    padding-left: 5%;
    font-size: 2.5rem;
}

/* maps*/

.maps{
    margin: 10px auto;
}
.maps iframe{
    width: 100%;
    height: 400px;
    margin: 10px auto;
}



        /* PHONE */
        @media screen and (max-width: 480px){
            @import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');


        *{
        box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body{

            /* background: url("../img/brands.png")repeat; */
            /* background-size: 400%; */
            font-family: 'Fredoka One', cursive;
        }

        .logo img{
            width: 100%;
            height: auto;
            margin-bottom: 10px;
            padding: 0 0;
        }

        #dulces-image{
            display: block;
        }

        .navbar{
            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            background-color: #333;
            color:#fff;
            opacity: .98;
            height: auto; 
            
        }

        .main{
            margin-top: 180px;
        }

        .navbar ul{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            margin-bottom: 15px;
            flex:0;
        }

        .navbar ul li{
            border-right: 1px solid #fff;
        }

        .navbar ul li:last-child{
            border-right: none;
        }

        .navbar a{
            margin: 0 5px;
            color: #fff;
            padding: 10px 0;
            margin: 3 0px;
            font-size: 18px;
            -webkit-text-stroke-width:1px;
            -webkit-text-stroke-color: black;
            font-weight: 800;
        }

        .logo a{
            padding: 0px;
            margin: 0px;
        }

        #repeated{
            display: block;
        }


        /*Remove overlay container*/
        .overlay-container{
            /* display: none; */
        }

        .middle{
            padding-top:10%;
        }

        .box-image{
            display: block;
        }

        .information-box{
            display: flex;
            width: 100%;
            height: auto;
            flex-direction: column;
            margin-top:20px;
            
        }

        .box{
            margin-bottom: 10px;
            margin-top: 10px;
            
        }


        .information-box h1{
            
            text-align: center;
            color: #fff;
            -webkit-text-stroke-width: 1px;
            -webkit-text-stroke-color: black;
            font-size: 1.5rem;
            background-color: #333;
            border-radius: 15px;
            opacity: .9;
            padding: 10px 0;
            }

        .information-box img{
            width: 100%;
            /* border-radius: 50%; */
            
        }

        .information-box .frente {
            display: inline-block;
        }
        

        .frente{
            
            /* background: #333;
            border-radius: 50%; */
        }

        
        .main-text{
            display: inline;
            color: #f030e7;
            font-size: 1.1em;
        }


        .yellow-text{
            color: #ffff00;
        }

        .descuentos h1.llama{
            font-size: 1.6rem;
            padding: 20px 0;

        }

        footer{
            bottom: 0;
            width: 100%;
            height: auto;
            background: #333;
            color: #fff;
            -webkit-text-stroke-width: 1px;
            -webkit-text-stroke-color: black;
            text-align: center;
            opacity: .95;
            padding-top: 15px;
            margin-top: 15px;
            display: block;
        }
        
    
/*      CATALOGUE STARTS HERE     */
        .catalogue{
            display: flex;
            flex-direction: column;
            padding:10px 0px;
            align-items: center;
            justify-content: space-evenly;
        }


        .catalogue .desechables img{
            width: 30%;
            height: auto;
            border-radius: 50%;
        }

        .catalogue .dulces img{
            width: 30%;
            height: auto ;
            border-radius: 50%;
        }

        .catalogue .botanas img{
            width: 30%;
            height: auto;
            border-radius: 50%;
        }

        .catalogue .fiesta img{
            width: 30%;
            height: auto;
            border-radius: 50%;
        }

        .catalogue .item{
            width: 100%;
            display: flex;
            border-radius: 0px;
            justify-content: space-evenly;
            margin: 10px 0px;
            padding: 10px 0;
            align-items: center;
            background: #f7c08a;
            opacity: .9;
            color: white;
            -webkit-text-stroke-width:1.5px;
            -webkit-text-stroke-color: black;
            font-weight: 800;
        }

        .catalogue .item h2{
            padding-left: 10px;
            font-size: 1.5rem;
        }

        .information-box.descuentos img{
            width: 10%;
            border-radius: none;
        }

        iframe{
            width: 100%;
            height: 400px;
        }
    }

        