/* .custom_slider {
    padding: 5rem;
} */
.custom_slider .title {
    width: 0%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #f27227;
}
.custom_slider .title a {
    margin-top: 0;
}
.custom_slider #news-slider{
    margin-top: 3rem;
}
.custom_slider .post-slide{
    flex: 1;
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
    height: 100%;
    display: grid;
}
.custom_slider .post-slide .post-img{
    position: relative;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    aspect-ratio: 1;
}
.custom_slider .post-slide .post-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
    padding: 0.1rem;
}
.custom_slider .post-slide:hover .post-img img{
    transform: scale(1.1,1.1);
}
.custom_slider .post-slide .over-layer{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
    background: linear-gradient(-45deg, rgba(6,190,244,0.75) 0%, rgba(45,112,253,0.6) 100%);
    transition:all 0.50s linear;
}
.custom_slider .post-slide:hover .over-layer{
    opacity:1;
    text-decoration:none;
}
.custom_slider .post-slide .over-layer i{
    position: relative;
    top:45%;
    text-align:center;
    display: block;
    color:#fff;
    font-size:25px;
}
.custom_slider .post-slide .post-content{
    background:#fff;
    padding: 0 1rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}
/* .custom_slider .post-slide .post-title a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 6rem;
} */
.custom_slider .post-slide .post-title a{
    display: inline-block;
    transition: all 0.3s ease 0s;
    color: #000;
    font-size: 1rem;
    text-align: center;
    font-weight: normal;
    padding: 1rem 0;
}
.custom_slider .post-slide .post-title a:hover{
    text-decoration: none;
    color:#3498db;
}

.custom_slider .post-slide .post-content .post-price {
    margin: 0;
    color: #f27227;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.custom_slider .post-slide .post-content .add-card-btn {
    position: absolute;
    width: -webkit-fill-available;
    bottom: -0.9rem;
    margin-left: -1rem;
}
.custom_slider .post-slide .post-content .add-card-btn a {
    background-color: #fff;
    box-shadow: inset 1px 1px 5px #00000078;
    color: #7e0000;
}

.custom_slider .post-slide .post-content .add-card-btn button {
    background-color: #fff;
    box-shadow: inset 1px 1px 5px #00000078;
    color: #7e0000;
    border-radius: 100vw;
    border-width: 0;
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
    text-align: center;
    transition: background-color .25s, color .25s;
}
.custom_slider .post-slide .post-description{
    color: #000000;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: normal;
}
.custom_slider .post-slide .post-date{
    color:#a9a9a9;
    font-size: 14px;
}
.custom_slider .post-slide .post-date i{
    font-size:20px;
    margin-right:8px;
    color: #CFDACE;
}
.custom_slider .post-slide .read-more{
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}
.custom_slider .post-slide .read-more:hover{
    background: #3498db;
    text-decoration:none;
    color:#fff;
}