.main-slider-wrp * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-slider-wrp {
    /* min-height: 0vh; */
    display: block;
    margin: 20px auto;
}

.slder-cad {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 58px 0px 0px 0px;
}

.slder-cad .cad-img {
    white-space: nowrap;
    overflow: hidden;
    scroll-behavior: smooth;
}

.cad-img.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.cad-img.dragging .item-slide {
    pointer-events: none;
}

.cad-img .item-slide{
    width: calc(100% / 1);
}

.cad-img .item-slide {
    display: inline-flex;
    margin-left: 14px;
    max-width: 100%;

}

.cad-img .item-slide:first-child {
    margin-left: 0px;
}

.wrap-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.wrap-content figure {
    overflow: hidden;
}

.wrap-content img {
    width: 100%;
    height: auto;
}

.slide-title {
    font-family: "SF Pro Display", "Arial", sans-serif;
    width: 100%;
    font-weight: 600;
    color: #6d6d6d;
    vertical-align: middle;
    text-wrap: auto;
}

@media screen and (min-width:900px) {

    .slder-cad #left,
    .slder-cad #right {
        position: absolute;
        background-color: #42699154;
        top: 50%;
        height: 46px;
        width: 46px;
        font-size: 2.4rem;
        color: white;
        cursor: pointer;
        text-align: center;
        line-height: 40px;
        border-radius: 5%;
        transform: translateY(-170%);
        z-index: 10;
    }

    .slder-cad #left {
        left: -23px;
        display: none;
    }

    .slder-cad #right {
        right: -23px;
    }

    .wrap-content {
        column-gap: 4%;
    }
    .slide-title {
        height:100px;
        margin-top: 35px;
        font-size: 26px;
        word-spacing: 7px;
        line-height: 33px;
    }

    .wrap-content figure {
        width: 48%;
    }

    .wrap-content img {
        transition: transform 1650ms ease-out 0s;
    }

    .wrap-content img:hover {
        transform: scale(1.07);
    }
}

@media screen and (max-width: 900px) {

    #left,
    #right {
        display: none !important;
    }

    .wrap-content figure {
        width: 100%;
        margin-bottom: 20px;
    }

    .slide-title {
        height:235px;
        font-size: 28px;
        word-spacing:6px;
        text-align: center;
        line-height: 38px;
    }
}