/* SERVICES OFFERED */
.custom-services-offered {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.custom-services-offered *,
.custom-services-offered *::before,
.custom-services-offered *::after {
    box-sizing: border-box;
}

/* TITLE */
.custom-services-title {
    margin: 0;
    padding: 0 0 8px;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-black);
}

/* RED LINE */
.custom-services-line {
    width: 100%;
    height: 2px;
    background: var(--color-main);
    margin-bottom: 23px;
}

/* SERVICES */
.custom-services-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    width: 100%;
}

/* ITEM */
.custom-service-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 37px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--color-main);
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    transition: transform .2s ease, background .2s ease;
}

/* HOVER */
.custom-service-item:hover {
    background: #ff3036;
    transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 768px) {
    .custom-services-title {
        font-size: 22px;
    }

    .custom-services-line {
        margin-bottom: 18px;
    }

    .custom-services-list {
        gap: 8px;
    }

    .custom-service-item {
        min-height: 35px;
        padding: 7px 13px;
        font-size: 13px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .custom-services-title {
        font-size: 20px;
        padding-bottom: 7px;
    }

    .custom-services-line {
        margin-bottom: 16px;
    }

    .custom-services-list {
        gap: 8px 7px;
    }

    .custom-service-item {
        min-height: 34px;
        padding: 7px 11px;
        font-size: 12px;
    }
}