.content {
    padding: 70px 20px 40px 20px;
}

.content .services-links {
    background: linear-gradient(90deg, transparent, #2bace2, transparent);
    margin-bottom: 40px;
    padding: 90px 20px 20px;
    text-align: center;
}

.content .services-links>a {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.content .services-links>a::after {
    content: '';
    display: block;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #281e1d;
    transition: .6s;
}

.content .services-links>a.selected {
    font-weight: 600;
}

.content .services-links>a.selected:after, .content .services-links>a:hover:after {
    width: calc(100% - 40px);
}

.section {
    position: relative;
    margin-bottom: 130px;
}

.section img {
    position: absolute;
    top: 20%;
    left: 55%;
    width: 40%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
}

.section:nth-child(even) img {
    left: 5%;
}

.section .text {
    width: 60%;
    min-height: 290px;
    padding: 30px 10% 30px 30px;
    background: #FFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
}

.section:nth-child(even) .text {
    margin-left: 40%;
    padding: 30px 30px 30px 10%;
}

.section .text h2 {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
}

.section .text p {
    font-size: 15px;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .content .wrapper {
        padding: 0;
    }
    .content .services-links {
        padding: 20px !important;
        margin: 0 -20px 180px -20px;
    }
    .content .services-links>a {
        display: block;
        margin: 0 auto 15px auto;
        width: max-content;
        font-size: 20px;
    }
    .content .services-links>a:nth-last-child(1) {
        margin-bottom: 10px;
    }
    .section {
        margin-bottom: 150px;
    }
    .section:nth-last-child(1) {
        margin-bottom: 20px;
    }
    .section .text {
        width: 100%;
        padding-top: 90px !important;
    }
    .section .text h2 {
        margin-bottom: 20px;
    }
    .section:nth-child(1) {
        margin-top: 150px;
    }
    .section:nth-child(even) .text {
        margin-left: 0;
    }
    .section img {
        top: unset;
        bottom: calc(100% - 70px);
        left: 50% !important;
        width: unset;
        height: 180px;
        transform: translateX(-50%);
    }
    .section .text p, li {
        font-size: 18px;
    }
}