.why_img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.why_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.about_right h2 {
    text-transform: capitalize;
}

.about_right ul {
    padding-left: 2rem !important;
    margin-top: 2rem;
}

.about_right ul li {
    list-style: disc !important;
    margin-bottom: 1rem;
    font-size: 18px;
}

.why_wrapper {
    border-top: 1px solid #ccc;
    background-color: whitesmoke;
}

.global_service__content h2 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 2rem !important;
    text-transform: capitalize;
}

.why_wrapper__content h3 {
    text-transform: capitalize;
    margin-bottom: 1rem !important;
    color: #000;
    font-weight: 500;
}

.why_wrapper__content p,
.global_service__content p,
.global_service__content ul li {
    margin-bottom: 1rem !important;
    font-size: 18px;
    line-height: 29px;
}

.global_service__content ul {
    /* padding-left: 2rem !important; */
}

.global_service__content ul li {
    /* list-style: decimal !important; */
}

.service_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.short_parra p {
    margin-top: 80px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}

.short_parra p:last-child {
    margin-top: 1rem;
}

/* menu_grid */
.menu_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.menu_img img {
    width: 100%;
    height: 245px;
    border-radius: 10px;
    transition: .3s ease-in;
    object-fit: cover;
}

.menu_name h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    margin-top: 12px;
    color: var(--black-color);
    text-transform: capitalize;
}

.menu_grid__list {
    overflow: hidden;
}

.menu_img {
    overflow: hidden;
}

.menu_grid__list:hover img {
    transform: scale(1.1) rotate(3deg);
    transition: .3s ease-in;
    opacity: .8;
}



@media(max-width:992px) {
    .global_service__content .row {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .menu_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .about_right ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .short_parra p {
        font-size: 14px;
        margin-top: 50px;
        line-height: 24px;
    }

    .menu_img img {
        height: 150px;
        object-fit: cover;
    }

    .menu_name h3 {
        font-size: 18px;
        margin-top: 5px;
    }

    .about_right ul {
        margin-top: 1rem;
    }

    .why_wrapper__content p {
        font-size: 16px;
        margin-bottom: 12px !important;
        line-height: 26px;
    }

    .why_wrapper__content h3 {
        margin-bottom: 12px !important;
        font-size: 20px;
    }

    .global_service__content h2 {
        margin-bottom: 1rem !important;
        font-size: 30px;
    }

    .why_wrapper__content p,
    .global_service__content p,
    .global_service__content ul li {
        font-size: 15px;
        margin-bottom: 10px !important;
        line-height: 25px;
    }
}

@media(max-width:576px) {
    .global_service__content ul {
        padding-left: 1rem !important;
    }
}