body{
    font-family: Lato !important;
}

/*==============================
    FABRIC SWIPER
===============================*/

.fabric-slider-section{
    overflow:hidden;
    position:relative;
}

.fabricSwiper{
    width:100%;
    overflow:hidden;
    padding:20px 5px 60px;
}

.fabricSwiper .swiper-wrapper{
    align-items:stretch;
}

.fabricSwiper .swiper-slide{
    height:auto;
    display:flex;
}

.fabric-slide-card{
    width:100%;
}

.fabric-card{

    width:100%;
    background:#fff;
    border:1px solid #ead8c7;
    border-radius:34px;
    padding:15px 20px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.4s;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
    /*min-height:420px;*/

}

.fabric-card::before{

    content:'';
    position:absolute;
    width:260px;
    height:260px;
    background:#fcf7f2;
    border-radius:50%;
    left:50%;
    top:-120px;
    transform:translateX(-50%);
    transition:.4s;

}

.fabric-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.fabric-card:hover::before{

    background:#f3e5d7;
    transform:translateX(-50%) scale(1.08);

}

/*==============================
IMAGE
===============================*/

.fabric-circle{

    width:210px;
    height:210px;
    border-radius:50%;
    overflow:hidden;
    border:8px solid #f5ebe2;
    position:relative;
    z-index:2;
    flex-shrink:0;

}

.fabric-circle img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.fabric-card:hover img{

    transform:scale(1.08);

}

/*==============================
TEXT
===============================*/

.fabric-card h4{

    margin-top:10px;
    color:#5e4636;
    font-size:20px;
    position:relative;
    z-index:2;

}

.fabric-card span{

    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:14px;
    color:#b08968;
    font-weight:600;
    position:relative;
    z-index:2;

}

/*==============================
BUTTONS
===============================*/

.fabric-prev,
.fabric-next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    border:1px solid #ead8c7;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:100;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.fabric-prev{

    left:-15px;

}

.fabric-next{

    right:-15px;

}

.fabric-prev:hover,
.fabric-next:hover{

    background:#5e4636;
    color:#fff;

}

.fabric-prev i,
.fabric-next i{

    font-size:24px;

}

/*==============================
PAGINATION
===============================*/

.fabricSwiper .swiper-pagination{

    bottom:10px !important;

}

.fabricSwiper .swiper-pagination-bullet{

    width:10px;
    height:10px;
    background:#d7b899;
    opacity:1;

}

.fabricSwiper .swiper-pagination-bullet-active{

    width:26px;
    border-radius:20px;
    background:#5e4636;

}

/*==============================
RESPONSIVE
===============================*/

@media(max-width:1199px){

.fabric-card{

min-height:390px;

}

.fabric-circle{

width:180px;
height:180px;

}

.fabric-card h4{

font-size:24px;

}

}

@media(max-width:767px){

.fabric-card{

padding:25px 15px;
min-height:360px;
border-radius:28px;

}

.fabric-circle{

width:170px;
height:170px;
border-width:6px;

}

.fabric-card h4{

font-size:22px;

}

.fabric-prev{

left:5px;

}

.fabric-next{

right:5px;

}

}