.t {
    display: flex;
    flex-wrap: wrap;
}
.t__img {
    padding: 30px 15px;
}
.t__img img {
    /* width: 100%; */
}
.t__title {
    font-size: 38px;
    line-height: 48px;
    font-weight: 700;
}
.t__txt-content {
    font-weight: 300;
    color: var(--third-color);
}

.wrapper--s {
    padding-top: 60px;
    padding-bottom:120px;
    margin-top: 200px;
    position: relative;
    background-color: #E9E9E9;
}
.wrapper--s:after {
    content: '';
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
    display: inline-block;
    box-shadow: 0px 0px 26px 3px rgb(60 60 60);
    border-radius: 50%;
    z-index: -1;
}
.s {
    position: relative;
    z-index: 2;
}
.s__items {
    display: flex;
    flex-wrap: wrap;
}
.s__item {
    width: 100%;
    display: flex;
    margin-top: 60px;
}
.s__item:nth-child(even) {
    flex-direction: row-reverse;
}
.s__img {
    width: 360px;
    position: relative;
}
.s__txt {
    display: flex;
}
.s__item:nth-child(even) .s__txt .c-square {
    background-color: var(--second-color);
}
.s__txt-content {
    color: var(--third-color);
    font-size: 20px;
    line-height: 30px;
}
.s__txt-content>h3 {
    font-size: 38px;
    line-height: 48px;
    margin: 0 0 50px 0;
    font-weight: 700;
    color: var(--txt-color);
}

@media(max-width: 1280px) {
    .s__txt-content {
        font-size: 16px;
        line-height: 24px;
    }
    .s__img {
        width: 260px;
    }
}
@media(min-width: 993px) {
    .t {
        padding-top: 40px;
    }
    .t__txt {
        padding-right: 80px;
    }
    .t__title {
        padding-bottom: 30px;
    }

    .s__txt {
        width: calc(100% - 360px);
    }
    .s__item:nth-child(odd) .s__txt {
        padding-left: 60px;
    }
    .s__item:nth-child(even) .s__txt {
        flex-direction: row-reverse;
        text-align: right;
        padding-right: 60px;
    }
    .s__item:nth-child(odd) .s__img {
        padding-right: 60px;
    }
    .s__item:nth-child(even) .s__img {
        padding-left: 60px;
    }
    .s__item:nth-child(odd) .s__img:before {
        content: '';
        display: inline-block;
        position: absolute;
        right: 0;
        top: 60px;
        width: 2px;
        height: 220px;
        background-image: url(../images/border.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .s__item:nth-child(even) .s__img:before {
        content: '';
        display: inline-block;
        position: absolute;
        left: 0;
        top: 60px;
        width: 2px;
        height: 220px;
        background-image: url(../images/border.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .s__item:nth-child(odd) .s__txt .c-square {
        margin-right: 40px;
    }
    .s__item:nth-child(even) .s__txt .c-square {
        margin-left: 40px;
    }

    #effects {
        padding-top: 80px;
    }
}

@media(max-width: 992px) {
    .s__item {
        flex-direction: column !important;
        padding: 0 15px;
        margin-top: 60px;
    }
    .s__img {
        width: 100%;
        text-align: center;
    }
    .s__txt {
        margin-top: 30px;
    }
    .s__txt-content>h3 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 0;
    }
    .s__txt .c-square {
        margin-right: 20px;
    }

    .wrapper--s {
        margin-top: 80px;
    }
}