section.catering {
    background: linear-gradient(to bottom, #fff 50%, #F1F5FB 50%);
}

section.catering .catering-container {
    width: 100%;
    max-width: var(--container-width);
    margin: var(--container-margin);
    height: 100%;
}


section.catering .box-menu {
    background: #DEDEDE;
    border-radius: 20px;
    padding: 20px;
}

section.catering .box-border {
    border: 2px solid #0C184E;
    display: grid;
    grid-template-rows: 65px 10px 1fr;
    gap: 10px;
    padding: 25px 0;
}

section.catering .box-border-item {
    padding: 0 60px;
}

section.catering .box-border h3 {
    font-family: "Cambay", sans-serif;
    color: #0C184E;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 50px;
}

section.catering .divider {
    width: 98%;
    height: 2px;
    background-color: #0C184E;
    margin: 0 auto;
}

section.catering .box-border .box-border-item-content {
    padding: 20px 0;
    position: relative;
}

section.catering .box-border .box-border-item-content .cta {
    max-width: 239px;
    grid-template-columns: calc(239px - 45px) auto;
    margin-bottom: 20px;
}

section.catering .box-border .box-border-item-content h5 {
    font-family: "Cambay", sans-serif;
    color: #0C184E;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 34px;
    max-width: 750px;
    margin-bottom: 8px;
}

section.catering .box-border .box-border-item-content p {
    color: #0C184E;
    font-weight: 600;
    letter-spacing: 0;
    font-size: 21px;
    margin-bottom: 60px;
    max-width: 750px;
}

.menulayer {
    position: absolute;
    right: 0;
    top: 60px;
}


@media(max-width:991px) {
    section.catering .catering-container {
        padding: 0 15px;
    }

    section.catering .box-border h3 {
        font-size: 30px;
    }


    section.catering .box-border .box-border-item-content h5 {
        font-size: 18px;
        max-width: 100%;
    }

    section.catering .box-border .box-border-item-content p {
        font-size: 14px;
        max-width: 100%;
    }

    section.catering .cta {
        display: grid !important;
    }

    section.catering .box-border-item {
        padding: 0 20px;
    }

    .menulayer svg {
        width: 80px;
    }

    .menulayer{
        width: 100px;
        top: 120px;
        right: -50px;
    }
}