.popular {
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}
.popular:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 780px;
    transform: translateX(-50%);
    border-left: 2px solid #F1F1F1;
    border-right: 2px solid #F1F1F1;
    z-index: -1;
}
.popular-title {
    width: 795px;
    text-align: center;
    margin: 0 auto;
    color: #464646;
    text-transform: uppercase;
    margin-bottom: 98px;
}
.popular__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -16px;
}
.popular-item {
    width: 160px;
    text-align: center;
    margin: 0 16px 50px;
}
.popular-item__title {
    margin-bottom: 12px;
    color: #3d3d3d;
    text-decoration: underline;
    transition: all .2s linear;
}
.popular-item__title:hover {
    color: #0E7758;
    text-decoration: none;
}
.popular-item__logo {
    margin-bottom: 12px;
}
.popular-item__list ul li a:hover { 
    color: #0E7758;
    text-decoration: none;
}
.popular-item__list ul li a {
    color: #3d3d3d;
    line-height: 30px;
    transition: all .2s linear;
}
.popular__btn {
    text-align: center;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
}


@media (max-width: 991px) {
    .popular-title {
        width: 100%;
    }
}
@media(max-width:600px) {
    .popular-title {
        font-size: 30px;
        line-height: 38px;
    }
}

@media(max-width:480px) {
    .popular-item {
        width: 148px;
        margin: 0 0 50px;
    }
    .popular {
        padding: 76px 0;
    }
}