.about-area {
    position: relative;
    overflow: hidden;
}

.about-area .row.align-items-center {
    align-items: center !important;
}

.threading-content {
    padding-right: 25px;
}

.threading-content .section-title {
    margin-bottom: 20px;
}

.threading-content h2 {
    margin-bottom: 15px;
    line-height: 1.3;
}

.threading-content .title-desc {
    margin-bottom: 18px;
    line-height: 1.9;
    text-align: justify;
}

.threading-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.threading-image img {
    width: 100%;
    max-width: 550px;
    /*height: 430px;*/
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: block;
}

/* Decorative line */
.title-line {
    width: 70px;
    height: 3px;
    background: #c89b63;
    margin-top: 10px;
}

/* Desktop spacing */
@media only screen and (min-width: 992px) {

    .threading-content {
        padding-right: 40px;
    }

    .threading-image {
        padding-left: 20px;
    }

    .threading-image img {
        margin-top: 0 !important;
        position: relative;
        top: 0;
    }
}

/* Tablet */
@media only screen and (max-width: 991px) {

    .threading-content {
        padding-right: 0;
    }

    .threading-image {
        margin-top: 25px;
        padding-left: 0;
    }

    .threading-image img {
        max-width: 100%;
        height: auto;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {

    .about-area {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .threading-content {
        text-align: center;
    }

    .threading-content .title-desc {
        text-align: left;
    }

    .threading-image {
        margin-top: 20px;
    }

    .threading-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}