.right-side-title {
    font-size: 23px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    margin-top: 9px;
}
.right-side-desc {
    font-size: 15px;
    font-weight: 450;
    line-height: 26px;
    text-align: left;
    color: #8891aa;
}
.shopCollectionWrapper{
    display: flex;
    align-items: center;
    gap: 17px;
    flex-wrap: wrap;
    margin: 33px 0 20px;
}
.singleCollection{
    position: relative;
    transition: all ease .2s;
}
.singleCollection:hover{
    transform: scale(1.03);
}
.singleCollection img{
    display: block;
    width: 252px;
    height: 252px;
    object-fit: cover;
    border-radius: 5px;
}
.singleCollection span{
    position: absolute;
    left: 15px;
    bottom: 15px;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}
.shopBtn{
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0.005em;
    color: #fff;
    background: #1176CA;
    border-radius: 5px;
    margin: auto;
    max-width: max-content;
    text-decoration: none;
}
.shopBtn:hover {
    background: #3099f0;
}
@media (max-width:1280px) {
    .singleCollection img{
        width: 230px;
        height: 230px;
    }
}
@media (max-width: 575px) {
    .right-side-title{
        margin-top: 30px;
    }
    .singleCollection img{
        width: 384px;
        height: 384px;
    }
    .shopCollectionWrapper{
        justify-content: center;
    }
}