
#slider-home .slide{
    height: 635px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 100%;
}

#slider-home .owl-prev,
#slider-home .owl-next{
    position: absolute;
    top: 50%;
    margin-top:-25px;
}

#slider-home .owl-prev i,
#slider-home .owl-next i{
    border-radius: 100%;
    padding: 0 10px;
    background: transparent;
    color: var(--culoare1);
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

#slider-home .owl-prev{
    left: 15px;
}

#slider-home .owl-next{
    right: 15px;
}

#slider-home .owl-prev i:hover,
#slider-home .owl-next i:hover{
    opacity:.8;
}

#buc-slide-home{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#slider-home{
    width: 100%;
    display: inline-block;
    height: 457px;
    overflow: hidden;
}

/*css nou*/
#slider-home .owl-prev i,
#slider-home .owl-next i{
     background: transparent;
    color: var(--culoare1);
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 50px;
    height: 50px;
    padding:0;
    border:1px solid var(--culoare1);
}

#slider-home .owl-prev i:hover,
#slider-home .owl-next i:hover{
    background:#fff;
}

#cont-slide-home{
    margin-top:50px;
}

#content{
    min-height:auto;
}
/* modul tipuri de cheag */
.tipuri-cheag-wrapper{
    margin: 80px 0;
    padding: 100px 15px;
    background: #f9f9f9;
    border-top: 5px solid var(--culoare1);
    border-bottom: 5px solid var(--culoare1);
}

.modul-header{
    text-align:center;
    margin-bottom:50px;
}

.titlu-modul{
    color:var(--culoare1);
    font-size:30px;
    margin-bottom:25px;
}

.subtitlu-modul{
    color:var(--culoare1);
    font-size:20px;
}

.tip-cheag-item{
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 5px 5px 4px 0px rgb(0 62 5 / 0.05);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    position: relative;
    z-index: 3;
    background: #f9f9f9;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height:300px;
    
}

.tip-cheag-item:hover{
    color:#fff;
}


.tip-cheag-item::before{
    content: '';
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--culoare1);
    border-radius: 12px;
    width: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    opacity: .7;
    
}

.tip-cheag-item:hover::before{
    width:100%;
}

.tip-cheag-item .tip-cheag-item-heading{
    text-align: center;
    color: var(--culoare1);
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
    font-size: 24px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.tip-cheag-item:hover .tip-cheag-item-heading{
    color:#fff;
}

.tip-cheag-item .tip-cheag-item-heading::before{
    position:absolute;
    bottom:0;
    content:'';
    width:50px;
    left:50%;
    height:2px;
    background:var(--culoare1);
    margin-left:-25px;
    transition:all .5s;
    -webkit-transition:all .5s;
    -moz-transition:all .5s;
    -ms-transition:all .5s;
    -o-transition:all .5s;
    
}

.tip-cheag-item:hover .tip-cheag-item-heading::before{
    background:#fff;
}


.tip-cheag-item p{
    letter-spacing: .5px;
    margin-bottom:0;
    font-size: 16px;
    min-height: 180px;
}
/* end modul tipuri de cheag */

/* modul categorii */
.modul-categorii-wrapper{
    margin: 0 0 50px 0;
}

.modul-categorii-item-body{
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}


.modul-categorii-item .modul-categorii-item-body::before{
    content:'';
    width:100%;
    height:0;
    position:absolute;
    left:0;
    bottom:0;
    background: var(--culoare1);
    opacity:.7;
    z-index:-1;
    transition:all .5s;
    -moz-transition:all .5s;
    -ms-transition:all .5s;
    -o-transition:all .5s;
    -webkit-transition:all .5s;
}

.modul-categorii-item:hover .modul-categorii-item-body::before{
    height:100%;
}

.modul-categorii-item .modul-categorii-item-heading{
    text-align:center;
    color: var(--culoare1);
    font-size:24px;
    position:relative;
    z-index:1;
    padding-bottom:10px;
    margin-bottom:20px;
    transition:all .5s;
    -webkit-transition:all .5s;
    -moz-transition:all .5s;
    -ms-transition:all .5s;
    -o-transition:all .5s;
}

.modul-categorii-item:hover .modul-categorii-item-heading{
    color:#fff;
}

.modul-categorii-item{
    box-shadow: 0 0 12px 0 #f1f4f6;
    transition:all .5s;
    -moz-transition:all .5s;
    -o-transition:all .5s;
    -ms-transition:all .5s;
    -webkit-transition:all .5s;
    overflow:hidden;
    border-radius:10px;
    min-height: 100%;
}

.modul-categorii-item .modul-categorii-item-imagine-wrapper{
    overflow:hidden;
}


.modul-categorii-item .modul-categorii-item-imagine{
    background-size:cover;
    background-repeat:no-repeat;
    transition:all .5s;
    -webkit-transition:all .5s;
    -moz-transition:all .5s;
    -ms-transition:all .5s;
    -o-transition:all .5s;

}

.modul-categorii-item .modul-categorii-item-imagine::after{
    content:'';
    display:block;
    padding-bottom:100%;
}

.modul-categorii-item:hover .modul-categorii-item-imagine{
    transform:scale(1.1);
}

.modul-categorii-item p{
    font-size: 16px;
    letter-spacing: .5px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    min-height: 176px;
}

.modul-categorii-item:hover p{
    color:#fff;
}

.rand-tipuri-cheag{
    align-items:center;
}

.modul-categorii-item-button{
    text-align:center;
}

.modul-categorii-item-link{
    display:inline-block;
    padding: 10px 25px;
    background:var(--culoare1);
    color:#fff;
    font-size: 16px;
    border:1px solid #fff;
    border-radius:12px;
    transition:all .5s;
    -moz-transition:all .5s;
    -ms-transition:all .5s;
    -o-transition:all .5s;
    -webkit-transition:all .5s;
}

.modul-categorii-item:hover .modul-categorii-item-link{
   background:#fff; 
   color: var(--culoare1);
}
/* end modul categorii */



