.surface-finishing-section {
    width: 100%;
    padding: 60px 0px 0px;
    box-sizing: border-box
}

.surface-finishing-section .surface-finishing-section__content {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}

.surface-finishing-section .surface-finishing-section__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.surface-finishing-section .surface-finishing-section__item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
}

.surface-finishing-section .item-left {
    width: 45%;
    max-width: 650px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.surface-finishing-section .item-image {
    width: 100%;
    height: 100%;
}

.surface-finishing-section .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.surface-finishing-section .item-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.surface-finishing-section .item-right .item-text {
    padding: 0px 25px;
    box-sizing: border-box;
}

.surface-finishing-section .item-right .item-title {
    font-weight: bold;
    font-size: 48px;
    color: #01155A;
}

.surface-finishing-section .item-right .item-description {
    font-weight: 400;
    color: #121212;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.surface-finishing-section .item-tech {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-weight: 400;
    color: #121212;
    line-height: 24px;
    margin-top: 40px;
}

.surface-finishing-section .item-tech--highlight {
    font-weight: bold;
    font-size: 24px;
    color: #040404;
    position: relative;
}

.surface-finishing-section .item-tech--highlight::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -25px;
    width: 10px;
    height: 35px;
    background: #FF5E16;
}

.surface-finishing-section .item-info {
    width: 100%;
    min-height: 180px;
    padding: 25px 35px;
    box-sizing: border-box;
    background: #01155A;
}

.surface-finishing-section .item-info .item-info-title {
    font-weight: bold;
    font-size: 24px;
    color: #FCFAFA;
    margin-bottom: 15px;
}

.surface-finishing-section .item-info .item-info-description {
    font-weight: 400;
    color: #FCFBFB;
    line-height: 24px;
}


@media screen and (max-width:760px) {
    .surface-finishing-section .surface-finishing-section__item {
        flex-direction: column;
    }

    .surface-finishing-section .item-left {
        width: 100%;
    }

    .surface-finishing-section .item-image {
        height: auto;
    }

    .surface-finishing-section .item-image img {
        height: auto;
    }

}


@media screen and (min-width:760px) and (max-width:1020px) {
    .surface-finishing-section .surface-finishing-section__item {
        flex-direction: column;
    }

    .surface-finishing-section .item-left {
        width: 100%;
    }

    .surface-finishing-section .item-image {
        height: auto;
    }

    .surface-finishing-section .item-image img {
        height: auto;
    }
}