.service-page {
    padding: 50px 89px 100px 90px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
}

.w-full .grid-card {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(388px, 1fr));
    gap: 35px 33px;
    justify-content: center;
}

.service-container {
    max-width: 1745px;
    margin: 0 auto;
}

.service-card {
    min-width: 388px;
    width: 100%;
    min-height: 482px;
}

.service-image {
    min-width: 388px;
    object-fit: cover;
    width: 100%;
    min-height: 260px;
    height: auto;
    background-color: #BDBDBD;
}

.services-title {
    font-size: 22px;
    line-height: 3rem;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-color: #BDBDBD;
}

.info-button {
    width: 100%;
    max-width: 328px;
    min-height: 57px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0px;
}

.breadcrumb {
    color: #A39D9D;
    font-size: 20px;
    margin-bottom: 50px;
}

.text-title {
    white-space: nowrap;
    max-width: 1745px;
    margin: 0 auto;

}

.categories-list {
    white-space: normal;
}

.sign-up-button {
    background-color: white;
    border: 1px solid #000000;
    width: 305px;
    height: 65px;
    white-space: nowrap;
    border-radius: 0;
    text-transform: none;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
}

.font-size-30 {
    font-size: 30px;
}
.font-size-24 {
    font-size: 24px;
}
.color-grey {
    color: #9B9B9B;
}

.card-wrapper {
    padding: 0px 0px 20px;
}

.gradient-border {
    position: relative;
    padding: 30px 59px 4px 30px;
    background: linear-gradient(to bottom, hsl(var(--primary-h) var(--primary-s) var(--primary-l)), transparent 40%);
}

.gradient-border::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    z-index: 0;
}
.custom-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #C08769;
    cursor: pointer;
    position: relative;
    appearance: none;
}

.custom-checkbox:focus {
    box-shadow: none;
}

.custom-checkbox:checked::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 16px;
    height: 16px;
    background-color: #C08769;
    border: 2px solid white;
}

.service-list {
    white-space: nowrap;
    margin-right: 100px;
    width: 30%;
    margin-bottom: 10px;
    max-height: 550px;
    overflow-y: auto;
}

.price-info,.services-title {
    padding: 21px 30px 1px;
}

.price-label {
    margin-right: 13px;
    white-space: normal;
}

.w-full-card {
    max-width: 100%;
}

.service-card > div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
    .service-card > div:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 1919px) {
    .text-promotion  {
        font-size: 45px;
    }
    .service-list {
        width: 45%;
    }
}

@media (max-width: 1500px) {
    .service-list {
        width: 60%;
    }
    .price-info,.services-title,.price-label {
        font-size: 35px;
        font-weight: 300;
    }
    .info-button,.categories-list,.sign-up-button {
        font-size: 30px;
    }
    .services-title {
        line-height: 5rem;
    }
}

@media (max-width: 1440px) {

    .text-promotion  {
        font-size: 35px;
    }
}

@media (max-width: 1250px) {
    .text-promotion  {
        display: none;
    }
    .service-list {
        width: 40%;
        margin-right: 30px;
    }
    .service-page {
        padding: 30px 20px 50px 20px;
    }
    .category-title {
        white-space: normal;
    }
}

@media (max-width: 1000px) {
    .service-page {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }
    .service-container{
        flex-direction: column;
        margin: 0px;
    }
    .service-list {
        width: 100%;
        margin-right: 0;
        max-height: 550px;
        overflow-y: auto;
        padding-top: 37rem;
    }
    .text-title {
        margin: 0px 20px;
    }
    .w-full .grid-card {
        grid-template-columns: 1fr;
    }
    .info-button {
        max-width: 700px;
        min-height: 97px;
    }

}

@media (max-width: 768px) {
    .sign-up-button {
        display: none;
    }
    .w-full .grid-card {
        grid-template-columns: 1fr;
    }
    .service-image {
        min-width: initial;
    }
    .service-card {
        min-width: initial;
    }
    .info-button {
        max-width: 328px;
        min-height: 57px;
    }
}

@media (max-width: 600px) {
    .info-button,.services-title,.sign-up-button,.price-label {
        font-weight: 400;
    }
    .price-info,.categories-list {
        font-weight: 300;
    }
    .price-info,.sign-up-button {
        font-size: 20px;
    }
    .info-button,.categories-list {
        font-size: 18px;
    }
    .services-title {
        font-size: 22px;
    }
    .price-label {
        font-size: 24px;
    }
    .service-list {
        padding-top: 12rem;
    }
}

@media (max-width: 380px) {
    .service-list {
        padding-top: 20rem;
    }
}

