
body{
    margin: 0;
    font-family: 'Varela Round', sans-serif;
}
.container{
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
}
img{
    width: 100%;
    cursor: pointer;
}
header{
    background-image: linear-gradient(to right, #33EFAC , #8288FF);
    padding: 20px 0px;
}
.logo{
    margin-right: 10px;
    cursor: pointer;
}
header h2{
    color: white;
}
.container-content{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 20px 0;
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
}
.search-wrapper{
    position: relative;
    order: 3;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    max-width: 400px;
    width: 100%;
    background-color: white;
    height: 100%;
    padding: 15px 0px;
    border-radius: 10px;
    border: none;
}
.search-wrapper svg{
    position: absolute;
    top: 16px;
    left: 20px;
}

.search-wrapper svg{
    cursor: pointer;
}
.search-wrapper input{
    width: 100%;
    border: none;
   text-indent: 60px;
   padding: 0;
}
.search-wrapper input:focus-visible{
   outline:none;
}
.search-wrapper input::placeholder{
    
}
.links ul{
    display: flex;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-top: 0;
}
.links ul li{
    color: white;
    margin-bottom: 0;
    list-style: none;
    cursor: pointer;
}
.links ul li:nth-of-type(1){
    margin-right: 30px;
}
@media(min-width:630px){
    .search-wrapper{
        order:0;
        margin-top: 0;
       
    }
}
@media(min-width:768px){
    
    .links ul{
        float: right;
    }
}
 .lang span{
     font-size: 10px;
     text-transform: uppercase;
     color: white;
 }

 .lang p{
     position: absolute;
     top: 5px;
     right: 10px
 }
@media(min-width:1200px){
    .lang p{
        position: absolute;
        top: 5px;
        right: 50px
    }
}

/************   SECTION  ************/
.top-title-wrapper{
    padding: 30px;
}
.top-title{
    text-align: center;
    color: #8288FF;
    font-weight: 800;
    font-size: 25px;
}

@media(min-width:850px){
    .top-title{
        font-size: 28px;
    }
}
@media(min-width:992px){
    .top-title{
        font-size: 38px;
    }
}

/*********** SECTION OFFERS ************/
.offers-title{
    color: #8288FF;
    font-weight: 400;
    padding: 10px 15px;
}

.card-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;

}
.card{
    margin-bottom: 10px;
    border: none;
}
.card-img{
    border: double 5px transparent;
    border-radius: 15px;
    background-image: linear-gradient(white, white),
                       linear-gradient(to right, #33EFAC , #8288FF);
    background-origin: border-box;
    background-clip: content-box, border-box;

}


.card-img img{
    border-radius: 9px 9px 0 0;
    height: 170px;
}
.card-img p{
    text-align: center;
    font-size: 20px;
    color: #33EFAC;
    margin: 0 auto;
    margin-top: 20px;
    height: 65px;
    overflow: hidden;
}
.card-desc{
    padding: 15px;
}


@media(min-width:576px){
    .card-wrapper{
        grid-template-columns: repeat(3, 1fr);
    
    }
}
@media(min-width:756px){
    .card-wrapper{
        grid-template-columns: repeat(4, 1fr);
    
    }
}
@media(min-width:950px){
    .card-wrapper{
        grid-template-columns: repeat(5, 1fr);
    
    }
}



/***/
.categories-wrapper {
    max-width: 140px;
    width: 100%;
    position: relative;
   }
   
.categories-search {
    border: 1px solid white;
    border-radius: 6px;
}
.btn-cat {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
   }
   .design-container > span:nth-child(1) {
   display: inline-block;
   position: absolute;
    right: 2px;
   }
   
.design-container {
    color: white;
    padding: 6px 0;
    font-size: 16px;
   }
   
.categories-box{
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    display: none;
    transition: 1s linear;
}
.categories-box:hover .design-container{
  color: #8288FF;
}
.btn:focus{
   box-shadow: none;
}

ul.cat-list li{
    border-bottom: 2px solid transparent;
    transition: 0.3s linear;
    cursor: pointer;
    width: max-content;
    list-style: none;
    margin-bottom: 5px;
    color: #8288FF;
}
ul.cat-list li:hover{
    border-bottom: 2px solid #8288FF;
    color: #39e8b2;
}
.visit-btn {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
   }
.btn-visit{
    background-color: #39e8b2;
    border: 3px solid transparent;
    padding: 10px;
    border-radius: 10px;
    color: white;
    transition: 0.3s linear;
    font-weight: 800;
    cursor: pointer;
}
.btn-visit:hover{
    background-color: transparent;
    border: 3px solid #8288FF;
    color: #39e8b2;
}

footer{
    background-image: linear-gradient(to right, #33EFAC , #8288FF);
    padding: 20px 0px;
    margin-top: 30px;
}
.footer-logo{
    border-bottom: 2px solid white;
    padding: 15px 0;
    margin-bottom: 20px;
}
footer .footer-logo h2{
    color: white;
    text-align: center;
}
footer ul{
    padding: 0;
}
footer ul li{
    list-style: none;
    color: white;
    margin-bottom: 10px;
    border-bottom: 2px solid transparent;
    width: fit-content;
    transition: 0.3s linear;
}
footer ul li:hover{
    border-bottom: 2px solid white;
    cursor: pointer;
}
@media(min-width:650px){
 footer ul{
     display: flex;
     justify-content: space-between;
     margin: 0 auto;
     flex-wrap: nowrap;
 }
}
@media(min-width:900px){
    footer ul{
        width: 70%;
    }
}
.show-cat{
    display: block;
}