/* Collection Section */
.collection-section{
    position: relative;
    background: linear-gradient(90deg,rgba(191, 174, 168, 1) 0%, rgba(189, 171, 165, 1) 36%, rgba(182, 164, 157, 1) 52%, rgba(172, 151, 144, 1) 75%, rgba(156, 134, 125, 1) 93%, rgba(145, 120, 111, 1) 100%);

}
.collection-wrap{
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 609px;
}
.collection-text{
    max-width: 541px;
    width: 100%;
}
.collection-text h2{
    color: #fff;
    letter-spacing: 0%;
    margin: 0 0 24px 0;
}
.collection-text p{
    font-weight: 300;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0 0 30px 0;
}
.collection-image{
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
}
.collection-image img{
    width: 100%;
    height: 609px;
    object-fit: cover;
}



/* Responsive */
@media screen and (max-width: 1550px) {

}
@media screen and (max-width: 1299px) {


    .collection-image img{
        height: 500px;
    }
    .collection-wrap{
        min-height: 500px;
    }
}

@media screen and (max-width: 1199px) {
}


@media screen and (max-width: 991px) {
}

@media screen and (max-width: 767px) {

    .collection-image{
        position: static;
        width: 100%;
    }
    .collection-image img{
        width: 100%;
        height: 350px;
    }
    .collection-wrap{
        padding: 30px 0;
        min-height: auto;
    }
    .collection-text{
        max-width: 100%;
    }
}
@media (min-width:576px) and (max-width:767px) {}