.previous_collections_single_container{
    display: flex;
    align-items: center;
    position: relative;
}
.previous_collections_single_left{
    /* width: 760px; */
    display: flex;
    height: 520px;
        flex: 1;
}
.previous_collections_single_image{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.previous_collections_single_right{
    flex: 1;
    padding: 3%;
}
.previous_collections_single_breadcrumb,
.previous_collections_single_breadcrumb a,
.previous_collections_single_breadcrumb span{
    font-family: "Gilroy", Sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2.2px;
    align-content: center;
    font-weight: 500;
    color: #fff;
}
.previous_collections_single_breadcrumb{
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
    padding: 24px 20px;
    display: flex;
    gap: 6px;
    justify-content: start;
    width: 100%;
    margin: 0 auto;
    max-width: 1378px;
}
.previous_collections_single_right_desc{
    font-family: "Gilroy", Sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 3.06px;
    font-weight: 500;
    margin-bottom: 8px;
    color: black;
}
.previous_collections_single_right_title{
    font-family: "Freight", Sans-serif;
    font-size: 60px;
    line-height: 60px;
    font-weight: 400;
    margin-top: 0;
    color: black;
    margin-bottom: 32px;
}
.previous_collections_single_right_content p,
.previous_collections_single_right_content{
    font-family: "Gilroy", Sans-serif;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 16px;
    color: black;
}
.previous_collections_single_right_content{
    max-width: 85%;
}
@media(max-width: 768px){
    .previous_collections_single_container{
        flex-direction: column;
    }
    .previous_collections_single_left{
        height: 375px;
        flex: unset;
        width: 100%;
    }
    .previous_collections_single_right{
        padding: 54px 20px 63px;
    }
    .previous_collections_single_right_desc{
        font-size: 13px;
        line-height: 18px;
        letter-spacing: 2.295px;
    }
    .previous_collections_single_right_title{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 18px;
        letter-spacing: 0.8px;
    }
    .previous_collections_single_right_content{
        max-width: 100%;
    }
    .previous_collections_single_right_content p, 
    .previous_collections_single_right_content{
        font-size: 18px;
    }
}


.single_collectin_container{
    margin: 0 auto;
    max-width: 1378px;
    width: 100%;
    padding: 96px 20px 80px;
}
.collection_related_dresses{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.collection_dress_item::before{
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .6));
    content: "";
    display: block;
    height: 30%;
    inset: auto 0 0;
    position: absolute;
    z-index: 1;
}
.collection_dress_overlay img{
    height: 40px;
    width: 40px;
    object-fit: contain;
    object-position: center;
    display: flex;
    justify-content: center;
    margin-bottom: -40px;
    opacity: 0;
    transition: margin-bottom 0.4s ease, opacity 0.4s ease;
    align-items: center;
    padding: 8px;
    border: 1px solid #fff;
    border-radius: 50%;
}
.collection_dress_item:hover .collection_dress_overlay img{
    margin-bottom: 0;
    opacity: 1;
}
.collection_dress_overlay h3{
    font-family: "Freight", Sans-serif;
    font-size: 20px;
    line-height: 22px;
    transition: all 0.4s ease;
    transform: translateY(0);
    font-weight: 500;
    letter-spacing: 5.7px;
    margin-top: 0;
    margin-bottom: 16px;
    border-bottom: 1px solid #fff;
    padding: 0 4px 12px;
    text-transform: uppercase;
    color: #fff;
}
.collection_dress_overlay{
    z-index: 5;
    position: absolute;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
}
.collection_dress_item{
    position: relative;
    flex: 1 1 calc(33.333% - 13.4px);
    display: flex;
    background-position: center;
    background-size: cover;
    text-decoration: none !important;
    background-repeat: no-repeat;
    height: 627px;
    justify-content: center;
    align-items: end;
}
@media(max-width: 768px){
    .single_collectin_container{
        padding: 0 20px 63px;
    }
    .collection_dress_item{
        flex: 1 1 100%;
        height: 536px;
    }
    .collection_dress_overlay h3{
        font-size: 18px;
        line-height: 20px;
    }
    .collection_related_dresses{
        gap: 24px;
    }
}