.k20-team {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.k20-team li {
    cursor: pointer;
}

.k20-team li:hover img {
    filter:brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
}

.k20-team img {
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
    transition: filter 0.3s linear;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
}

.k20-team h6 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
}

.k20-team p {
    color: rgba(255, 255, 255, 0.7490196078431373);
    font-size: 14px;
    font-weight: 400;
}


.k20-team .media {
    background-color: #FFF;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}


@media all and (max-width: 1024px){
    .k20-team {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media all and (max-width: 1024px){
    .k20-team {
        grid-column-gap: 20px;
        grid-row-gap: 16px;
    }
    .k20-team h6 {
        line-height: 1.25em;
    }
}




.k20-service {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.k20-service .media {
    height: 64px;
    width: 64px;
    border-radius: 100px;
    transition: all 0.3s ease;
    margin-right: 16px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.k20-service img {
    filter: grayscale(1);
    transition: filter 0.3s linear;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
}

.k20-service li:hover img {
    filter: grayscale(0);
}
.k20-service li {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.k20-service h6 {
    font-size: 16px;
    font-weight: 600;
}
.k20-service p {
    font-size: 14px;
    opacity: 0.75;
    margin-top: 4px;
}

@media all and (max-width: 767px){
    .k20-service {
        grid-template-columns:none;
        grid-row-gap: 20px;
    }
    .k20-service .media {
        height: 80px;
        width: 80px;
    }
}




.k20-testimonials {
    font-family: "Roboto";
}

.k20-testimonials ul {
    display: flex;
    list-style-type: none;
    margin: 0 0 8px -10px;
    padding: 0;
    flex-wrap: wrap;
}

.k20-testimonials li:not(:last-child) {
    margin-right: 16px;
}

.k20-testimonials li {
    margin-bottom: 16px;
}

.k20-testimonials button {
    cursor: pointer;
    border: none;
    overflow: hidden;
    height: 32px;
    width: 32px;
    position: relative;
    border-radius: 50%;
}

.k20-testimonials button:focus,
.k20-testimonials button:hover {
    border: none;
    outline: none;
}

.k20-testimonials button[_active] img,
.k20-testimonials button:hover img {
    filter:brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
    opacity: 1;
}

.k20-testimonials button img {
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
    transition: all 0.3s linear;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    top: 0;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.4;
}

.k20-testimonials svg {
    position: absolute;
    left: 0;
    top: 0;
}

.k20-testimonials .wrapper {
    display: grid;
    grid-template-columns: 32px auto;
    grid-column-gap: 40px;
    margin-left: -10px;
}

.k20-testimonials .testimonial {
    display: none;
}

.k20-testimonials .testimonial[_active] {
    display: block;
}

.k20-testimonials .testimonial p:first-child {
    margin: 0 0 20px;
}

.k20-testimonials .testimonial p:first-child::before {
    content: "„";
}

.k20-testimonials .testimonial p:first-child::after {
    content: "”";
}

.k20-testimonials .testimonial p:nth-child(2) {
    color: #2B388F;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75em;
    margin: 0;
    font-weight: 700;
}

.k20-testimonials .testimonial p:last-child {
    color: #434A5C;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75em;
    margin: 0;
}


.k20-clients {
    display: grid;
    grid-template-columns: repeat(10,minmax(0,1fr));
    grid-gap: 4px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.k20-home-clients {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.k20-all-clients {
    display: grid;
    grid-template-columns: repeat(6,minmax(0,1fr));
    list-style-type: none;
    grid-gap: 12px;
    margin: 0;
    padding: 0;
}

.k20-clients li,
.k20-home-clients li,
.k20-all-clients a {
    display: flex;
    justify-content: center;
    background-color: #FFF;
    align-items: center;
    padding-top: 100%;
    position: relative;
}

.k20-clients img,
.k20-home-clients img,
.k20-all-clients img {
    position: absolute;
    left: 10px;
    top: 10px;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    object-fit: contain;
}

@media (max-width: 1023px) {
    .k20-clients,
    .k20--allclients {
        grid-template-columns: repeat(6,minmax(0,1fr));
    }
}


@media (max-width: 767px) {
    .k20-clients,
    .k20-all-clients {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }
}


@media (max-width: 499px) {
    .k20-clients,
    .k20-all-clients {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .k20-home-clients {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}
