.trending-card-head {
    padding-top: 50px;
    text-align: center;
    font-weight: bold;
    margin: auto;
}

.trending-card-head p {
    font-size: 16px;
    margin-bottom: 10px;
}

.trending-card-head .line {
    width: 50px;
    height: 5px;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: #ff8d15;
}

.trending-card {
    display: flex;
    /* gap: 150px; */
    text-align: center;
}

.card-img {
    display: flex;
    justify-content: center;
    position: relative;
    height: 250px;
    z-index: 11;
    border-radius: 30px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.card-trending {
    height: 100%;
    width: 100%;
    position: relative;
    /* border: 0.2px solid #333; */
    border-radius: 10px;
    box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .13), 0 1px 4px 0 rgba(0, 0, 0, .11);
}

.card-trending:hover {
    /* transition: property duration timing-function delay; */
    transform: scale(1.1);
    transition: .3s ease-in-out;
    cursor: pointer;
    box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.176);
}

.card-bg {
    bottom: 10px;
    border-radius: 10px;
}


.card-content-text {
    margin: auto;
    position: relative;
    z-index: 12;
    margin-bottom: 20px;
    padding: 20px;
    display: inline-block;
    align-items: center;
}

.card-content-text .card-title {
    text-align: center;
    font-size: 20px;
    color: #ff8d15;
    font-weight: bold;
}

.card-content-text .card-description {
    text-align: center;
    font-size: 15px;
    padding: 10px;
}

.card-btn {
    display: flex;
    justify-content: center;
    font-size: 15px;
    background-color: #ff8d15;
    font-family: 'Siemreap', sans-serif;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.5s ease-out;
}

.card-btn:hover {
    background-color: #333;
    color: #ff8d15;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.btn-trend {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.btn-trend .icon-fav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff8d15;
    color: white;
    font-size: 18px;
}

.btn-trend .icon .heart-center {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-trend .icon:hover {
    background-color: #333;
    cursor: pointer;
    transition: 0.2s;
}

.btn-trend .icon i:hover {
    color: #ff8d15;
    cursor: pointer;
    transition: 0.2s;
}

.icons-all {
    display: flex;
    /* gap: 5px; */

}

.cross i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff8d15;
    color: white;

}