.landing_wrapper {
    height: 17rem;
    padding: 2rem;
    color: var(--text-4);
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.landing_banner_container {
    max-width: 80rem;
    width: 100%;
    height: 100%;
    display: flex;
}

.landing_banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    max-width: 43rem;
    z-index: 1;
}

.landing_logo_wrapper {
    max-width: 23rem;
    height: 100%;
    display: flex;
}

.landing_logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.landing_text_header h1 {
    font-size: 3rem;
    font-weight: 600;
}

.landing_text_footer p {
    font-size: 1.5rem;
    font-weight: 400;
}

.landing_brand_logo {
    width: 100%;
    height: 100%;
}

.landing_brand {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0.5rem;
}

.landing_brand_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand_logo_container {
    width: 100%;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.buttons_footer_landing {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.button_landing {
    background-color: var(--white);
}

.call_button_landing {
    display: flex;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    color: var(--text-primary);
    border: 1px var(--border) solid;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    fill: var(--text-primary);
    transition: color .2s ease-in-out, fill .2s ease-in-out, background-color .2s ease-in-out;
    cursor: pointer;
    background-color: var(--white);
}

.call_button_landing:hover {
    color: var(--white);
    fill: var(--white);
    background-color: var(--text-primary);
}

.call_button_landing svg {
    display: block;
    width: 1.3rem;
    height: 1.3rem;
}

.content_wrapper {
    display: flex;
    padding: 0 2rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 3rem;
}

.categories-block {
    max-width: 80rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    grid-template-rows: 1fr 1fr;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.categories-heading {
    font-size: 2rem;
    font-weight: 600;
}

.category-card {
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(30, 31, 33, 0.12) 0 5px 25px;
    transition: color .15s ease-in-out, transform .15s ease-in-out;
}

.category-card:hover {
    color: var(--text-primary);
    transform: scale(1.02);
}

.category-image-wrapper {
    display: flex;
    padding: 0 1rem;
}

.category-title {
    font-size: 1rem;
    font-weight: 400;
}

@media (max-width: 900px) {
    .landing_wrapper {
        padding: 0;
        max-height: 12rem;
    }

    .landing_banner {
        object-fit: cover;
        object-position: -225px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .content_wrapper {
        padding: 0 12px;
        margin-top: 32px;
    }

    .category-card {
        padding: 18px;
        border-radius: 12px;
        min-height: 144px;
        justify-content: end;
        gap: 4px;
    }

    .category-image-wrapper {
        min-height: 90px;
    }

    .categories-heading {
        font-size: 32px;
        line-height: 20px;
        font-weight: 700;
        user-select: text;
        font-family: 'citilink-reg', sans-serif;
    }

    .category-card:hover {
        color: unset;
        transform: unset;
    }
}

@media (max-width: 757px) {
    .landing_wrapper {
        padding: 0;
        max-height: 12rem;
    }

    .landing_banner {
        object-fit: cover;
        object-position: -225px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .content_wrapper {
        padding: 0 12px;
        margin-top: 32px;
    }

    .category-card {
        padding: 18px;
        border-radius: 8px;
        min-height: 144px;
        justify-content: end;
        gap: 4px;
    }

    .category-image-wrapper {
        min-height: 90px;
    }

    .categories-heading {
        font-size: 32px;
        line-height: 20px;
        font-weight: 700;
        user-select: text;
        font-family: 'citilink-reg', sans-serif;
    }

    .category-card:hover {
        color: unset;
        transform: unset;
    }
}