#container-6 {
    position: relative;
    left: 300px;
    width: calc(100% - 320px);
    height: auto;
    background-color: var(--bg-color-1);
    padding: 10px;
    padding-top: 50px;
    transition: all 1s;
    overflow: hidden;
    padding-bottom: 30px;
    overflow: hidden;
}

#services-all {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service {
    position: relative;
    width: 31%;
    height: 200px/*33%*/;
    float: left;
    background-color: transparent;
    margin: 10px;
    margin-top: 10px;
    overflow: hidden;
    cursor: default;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.icon-services {
    float: left;
    display: flex;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--complementary-color);
    font-size: 24px;
    color: #fff;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--complementary-color);
    margin-top: 25px;
    transition: all 0.5s;
}



.services-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color);
    transition: all 300ms;
    margin: 20px;
    margin-left: 15 px;
    float: left;
}

.services-txt{
    padding-left: 20px;
    font-size: 14px;
    line-height: 24px;
    font-family: "Open Sans",sans-serif;
    padding-right: 24px;
}

.service:hover .icon-services{
    background-color: transparent;
    color: var(--complementary-color);
}

.services-link:hover {
    color: var(--complementary-color);
}

@media only screen and (max-width: 1000px) {
    #container-6 {
        left: 0px;
        width: 100%;
    }
}

@media only screen and (max-width: 1176px) {
    .service {
        width: 47%;
    }
}

@media only screen and (max-width: 666px) {
    .service {
        width: 100%;
        height: auto;
    }
}