.slider__tabs {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 8px;
    position: relative;
    margin-bottom: 50px;
}

.slider__tabs .slider__tab {
    white-space: nowrap;
    border-radius: 3px;
    padding: 10px 13px;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    color: var(--color-primary);
    background: #D5D9E8;
}

.slider__tabs .slider__tab.is-active {
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
}

.slider__tabs .slider__tab:hover {
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
}

.addsService {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.addsService .addsService__item {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    font-family: "Exo 2";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 3px;
    min-height: 130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (max-width: 1599px) {

}

@media (max-width: 1399px) {

}

@media (max-width: 1199px) {

}

@media (max-width: 991px) {

}

@media (max-width: 767px) {
    .addsService {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .addsService .addsService__item {
        min-height: 100px;
    }
}

@media (max-width: 450px) {
    .addsService {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}
