.services {
    position: relative;
    background: url("/assets/img/bg1.webp");
    margin-bottom: 0rem;

    padding-top: 3rem;

    .heading {
        padding-top: 3rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        h2 {
            font-size: 2rem;
        }
        small {
            color: var(--secondary-color);
        }
    }
    .item {
        background: var(--background-color);
        border: 2px solid #d73449;
        padding: 1rem;
        border-radius: 10px;
        flex-direction: column;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        img {
            object-fit: scale-down;
            width: 100%;
            height: 120px;
            margin-bottom: 0.75rem;
        }
        p {
            color: var(--gray-text-color);
            margin-top: 0.75rem;
            font-size: 0.75rem;
            margin-bottom: 0.75rem;
            text-align: center;
        }
    }
    .bg1 {
        position: absolute;
        height: 350px;
        width: 100vw;
        top: 450px;
        left: 0px;
        background-color: var(--primary-color);
        z-index: -1;
    }
}
.catalog {
    .heading {
        padding-top: 2rem;
        padding-bottom: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        color: var(--background-color);
        h2 {
            font-size: 2rem;
        }
    }
    .item {
        background: var(--background-color);
        border: 2px solid #d73449;
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
        flex-direction: column;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        img {
            object-fit: scale-down;
            width: 100%;
            height: 120px;
            margin-bottom: 0.5rem;
        }
        small {
            font-size: 0.75rem;
            font-weight: normal;
        }
        p {
            color: var(--gray-text-color);
            margin-top: 2rem;
            font-size: 0.75rem;
            margin-bottom: 1rem;
            text-align: center;
        }
        ul {
            display: flex;
            gap: 20px;
            list-style: none;
            flex-direction: column;
            margin-bottom: 2rem;
            li {
                font-weight: bold;
            }
        }
    }

    .btn {
        color: var(--background-color);
        padding: 0.5rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        background: #ed1c24;
        box-shadow: 4px 5px 4.9px rgba(0, 0, 0, 0.25);
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        &:hover {
            color: var(--background-color);
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 4px 7px 6px rgba(0, 0, 0, 0.3);
            text-decoration: none;
            font-size: 1rem;
        }
    }
}
