.support {
    background: #fff;
}

.support .wrap {
    width: 1415px;
    margin: 107px auto 134px;
}

.support .wrap .title {
    text-align: center;
}

.support .wrap .title span {
    font-size: 54px;
    font-family: Roboto b;
    font-weight: 500;
    color: #0D0D0D;
    display: block;
    margin: 0 0 27px 0;
}

.support .wrap .title p,.support .wrap .title p a {
    font-size: 20px;
    font-family: Roboto;
    font-weight: 300;
    color: #0D0D0D;
}

.support .wrap .content {
    margin: 77px 0 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 51px;
}

.support .wrap .content .item {
    width: 316px;
    border-bottom: 1px solid rgba(238, 234, 231, 1);
    position: relative;
    overflow: hidden;
}

.support .wrap .content .item:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #517D6C;
    transform: translateX(-100%);
    opacity: 0;
    transition: 0.7s;
}

.support .wrap .content .item:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    right: 0;
    bottom: 0;
    background: #517D6C;
    transform: translateX(100%);
    opacity: 0;
    transition: 0.7s;
}

.support .wrap .content .item .images {
    width: 100%;
    height: 384px;
    overflow: hidden;
}

.support .wrap .content .item .images img {
    width: 100%;
    height: 100%;
    transition: 1.5s;
}

.support .wrap .content .item .text {
    margin: 31px 0 34px 0;
}

.support .wrap .content .item .text p {
    font-size: 16px;
    font-family: Roboto;
    font-weight: 400;
    color: #0D0D0D;
    line-height: 22px;
}

.support .wrap .content .item:hover:after, .support .wrap .content .item:hover:before {
    transform: translateX(0);
    opacity: 1;
}

.support .wrap .content .item:hover .images img {
    transform: scale(1.1);
}
@media screen and (max-width: 1900px) {
    .support .wrap{
        width: 90%;
    }
    .support .wrap .content .item{
        width: 100%;
    }
    .support .wrap .content .item .images{
        height: auto;
    }
}
@media screen and (max-width: 1366px) {
    .support .wrap .content .item .text p{
        font-size: 13px;
    }
}
@media screen and (max-width: 1023px) {
    .support .wrap{
        max-width: 90%;
        margin: 48px auto;
    }
    .support .wrap .title span{
        font-size: 28px;
        margin: 0 0 17px 0;
    }
    .support .wrap .title p, .support .wrap .title p a{
        font-size: 16px;
    }
    .support .wrap .content{
        margin: 34px 0 0 0;
        grid-template-columns: repeat(1, 1fr);
    }
    .support .wrap .content .item .images{
        height: auto;
    }
    .support .wrap .content .item .text{
        margin: 23px 0;
    }
}