@font-face {
    font-family: 'BubbleGum';
    src: url('../font/BubbleGum.eot');
    src: url('../font/BubbleGum.eot?#iefix') format('embedded-opentype'),
        url('../font/BubbleGum.woff2') format('woff2'),
        url('../font/BubbleGum.woff') format('woff'),
        url('../font/BubbleGum.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Regular.eot');
    src: url('../font/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/Montserrat-Regular.woff2') format('woff2'),
        url('../font/Montserrat-Regular.woff') format('woff'),
        url('../font/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    outline: none !important;
    overflow-x: hidden;
}

h1{
    font-family: 'BubbleGum';
}

body{
    position: relative;
}

nav{
    width: 100%;
    padding: 0 16px;
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: space-between; 
}


nav img{
    height: 40px;
}

nav ul{
    display: flex;
}

nav ul li{
    list-style-type: none;
    padding: 0 16px;
}

nav ul li a{
    text-decoration:none;
    color: #FF005A !important;
    font-weight: 500;
    font-size: 20px;
}


.img-principal{
    background-image: url('../img/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.chems-principal{
    width: 80%;
}

.welcome-h2{
    font-size: 56px;
    color: white;
}

.welcome-p{
    font-size: 24px;
    font-weight: 500;
    color: white;
}

.btn-home{
    color: #FFF;
    background-color: #FF005A;
    padding: 10px 20px;
    border: none;
    border-radius: .5em;
    text-decoration: none;
    transition: background-color 300ms ease;
}

.btn-home:hover{
    color: #FFF;
    text-decoration: none;
    background-color: #ce0249;
}


.gray{
    background: #fbfbfb;
}

.subtitle{
    height: 60px;
    color: white;
    background-color: #FF005A;
}

.subtitle p{
    line-height: 60px;
    font-weight: 500;
    font-size: 20px;
    margin: 0;
}

.img-order{
    cursor: pointer;
    border: 10px solid #FFF;
    box-shadow: 0 0 15px #eaeaea;
    position: relative;
}

.order{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 0 10px #eaeaea;
    position: relative;
}

.img-order::before{
    z-index: 1;
    content: '';
    position: absolute;
    /* background: linear-gradient(to bottom, #91e9ff, transparent); */
    transition: all 300ms;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pie{
    border-top-right-radius: 50%;
    transition: all 300ms ease;
    overflow: hidden;
    width: 100%;
    background-color: #FF005A;
    color: #FFF;
    height: 70px;
    z-index: 2;
    position: absolute;
    left: 0;
    bottom: -70px;
}

.flor-1{
    position: absolute;
    z-index: 3;
    width: 30%;
    left: -30%;
    top: -30%;
    transition: all 300ms ease;
}

.flor-2{
    position: absolute;
    z-index: 3;
    width: 45%;
    right: -45%;
    top: -45%;
    transition: all 300ms ease;
}

.back-1, .back-2, .back-3{
    position: absolute;
}

.back-1{
    width: 10%;
    top: 50%;
    left: -2%;
}

.back-2{
    width: 15%;
}

.back-3{
    width: 10%;
    top: 30%;
    right: 0;
}

.pie h3{
    padding: 0 16px;
    line-height: 70px;
}

.img-order:hover .pie{
    bottom: 0;
}

.img-order:hover .flor-1{
    bottom: 0;
    top: 10%;
    left: 10%;
}

.img-order:hover .flor-2{
    bottom: 0;
    top: 10%;
    right: 10%;
}

.img-order:hover::before{
    /* background-color: #FF005A; */
} 

/* Buttons */

.not-selected{

    background-color: #91e9ff;
    border: 2px solid #000;
    margin: 16px;
    padding: 10px 20px;
    border-radius: 2em;
    color: #000;
}

.is-checked{
    transition: 300ms ease;
    background-color: #FF005A;
    border: 2px solid #FFF;
    color: #FFF;
}

.grid{
    margin: 0 auto; /* centered */
    overflow: hidden;
}

.grid:after {
    content: '';
    display: block;
    clear: both;
  }

.element-item{
    overflow: hidden;
    border: 2px solid #FFF;
    width: 325px;
    height: 325px;
    margin: 10px;
    background-color: #FF005A;
    position: relative;
}

.element-item div{
    transition: left 300ms ease;
    width: 325px;
    height: 325px;
    position: absolute;
    left: 325px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.element-item li{
    font-size: 24px;
    color: #FFF;
    font-weight: 700;
    text-align: center;
}

.element-item h3{
    font-weight: bold;
    color: #FF005A;
}

.doge{
    width: 325px;
    height: 325px;
}

.element-item:nth-child(1){ background-image: url('../img/green.jpg'); }
.element-item:nth-child(2){ background-image: url('../img/soft-orange.jpg'); }
.element-item:nth-child(3){ background: radial-gradient(rgb(255, 192, 55), rgb(255, 131, 48)); }
.element-item:nth-child(4){ background: radial-gradient(rgb(255, 101, 54), rgb(255, 72, 48)); }
.element-item:nth-child(5){ background: radial-gradient(rgb(255, 28, 28), rgb(255, 15, 15)); }
.element-item:nth-child(6){ background: radial-gradient(rgb(75, 75, 75), rgb(0, 0, 0)); }
.element-item:nth-child(7){ background-image: url('../img/kg.jpg'); }
.element-item:nth-child(8){ background-image: url('../img/combo-chems.jpg'); }
.element-item:nth-child(9){ background-image: url('../img/medio-kilo.jpg'); }
.element-item:nth-child(10){ background-image: url('../img/potato.jpg'); }
.element-item:nth-child(11){ background-image: url('../img/potato-ranch.jpg'); }
.element-item:nth-child(12){ background: radial-gradient(rgb(170, 170, 170), rgb(255, 255, 255)); }

.element-item img{
    position: absolute;
    left: 0;
    transition: left 300ms ease;
}

.element-item:hover .doge{
    left: -325px;
}

.element-item:hover div{
    left: 0px;
}

/* .combo:hover h3{
    left: 50px;
} */

.price{
    transition: all 300ms ease;
    border-top-left-radius: 1em;
    z-index: 3;
    position: absolute;
    bottom: 50px;
    right: -140px;
    background-color: #91e9ff;
    padding: 20px;
}

.design .preview{
    display: inline-block;
    z-index: 10;
    position: absolute;
    width: 50px;
    bottom: 95px;
    left: -50px;
    transition: 300ms ease;
}

.price p{
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.design .description{
    overflow: hidden;
    padding-left: 16px;
    transition: all 300ms ease;
    height: 75px;
    width: 100%;
    z-index: 2;
    position: absolute;
    bottom: -75px;
    left: 0;
    background-color: #FF005A;
}

.design .description h3{
    line-height: 75px;
}

.design::before{
    transition: all 300ms;
    position: absolute;
    bottom: -350px;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #FF005A, transparent);
    opacity: .7;
}

.design:hover .description{
    bottom: 0;
}

.design:hover .preview{
    left: 190px;
}

.design:hover .price{
    right: 0;
}

.networks{
    background-color: #FF005A;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.networks-footer{
    height: 75px;
    display: flex;
    align-items: center;
}

.social-network{
    width: 50px;
    height: 50px;
    background-color: #FFF;
    color: #FF005A;
    border-radius: 50%;
    margin-left: 16px;
    position: relative;
}

.social-network span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-network-footer{
    width: 30px;
    height: 30px;
    background-color: #FFF;
    color: #FF005A;
    border-radius: 50%;
    margin-left: 16px;
    position: relative;
}

.social-network-footer span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer{
    background-color: #ce0249;
}

footer h4{
    pointer-events: none;
}


.logo-footer{
    filter: brightness(100);
    width: 80%;
}

.title-footer{
    font-weight: 500;
    color: #FFF;
}

.ul-footer{
    color: #FFF;
}

.line{
    height: 1px;
    background-color: #FFF;
}

.fm-logo{
    height: 30px;
    filter: brightness(100);
}

.nav-secondary{
    width: 100%;
    position: fixed;
    display: none !important;
    z-index: 9999;
    background: #91e9ff;
    height: 50px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    border-bottom: 2px solid #FF005A;
}

.nav-img-secondary{
    height: 50%;
}

/* .combo:hover::before{
    bottom: 0;
} */





@media (max-width: 680px){
    .nav-principal{
        display: none !important;
    }

    .nav-secondary{
        display: block !important;
    }

    .principal-home{
        padding-top: 100px;
    }
}

@media (max-width: 429px){
    .grid{
        width: 100%;
    }
}
