/* ==========================================
   GLOBAL
========================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #ffffff;
}


/* ==========================================
   MAIN CONTAINER
========================================== */

main.container-fluid {
    padding-top: 12px;
    padding-bottom: 12px;
}


/* ==========================================
   SERVICE CARD
========================================== */

.service-card {
    width: 100%;
    overflow: hidden;

    margin-bottom: 21px;

    border-radius: 0;
}


/* ==========================================
   IMAGE
========================================== */

.service-image {
    width: 100%;
    height: 100%;

    min-height: 223px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* ==========================================
   CONTENT
========================================== */

.service-content {
    height: 100%;
    min-height: 223px;

    padding: 70px 54px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* ==========================================
   SECTION 1 COLORS
========================================== */

.content-dark {
    background-color: #005d66;
}


/* ==========================================
   SECTION 2 COLORS
========================================== */

.content-light {
    background-color: #5a9da7;
}


/* ==========================================
   TITLE
========================================== */

.service-content h2 {
    margin: 0 0 12px 0;

    font-size: 1.75rem;
    line-height: 1.2;

    font-weight: 600;

    color: #ffffff;

    letter-spacing: 0;
}


/* ==========================================
   DESCRIPTION
========================================== */

.service-content p {
    max-width: 760px;

    margin: 0 0 17px 0;

    font-size: 16px;
    line-height: 1.5;

    font-weight: 500;

    color: #ffffff;
}


/* ==========================================
   BUTTON
========================================== */

.service-btn {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 5px 5px 5px 14px;

    min-height: 27px;

    border-radius: 50px;

    background-color: #72b5bc;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.service-btn:hover {
    background-color: #8cc8ce;

    color: #ffffff;

    transform: translateY(-1px);
}


/* ==========================================
   BUTTON ICON CIRCLE
========================================== */

.service-btn i {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #ffffff;

    color: #5a9da7;

    font-size: 10px;

    flex-shrink: 0;
}


/* ==========================================
   DARK BUTTON - SECTION 2
========================================== */

.service-btn-dark {
    background-color: #005d66;
}

.service-btn-dark:hover {
    background-color: #00474e;
}

.service-btn-dark i {
    color: #005d66;
}


/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 992px) {

    .service-card {
        min-height: 223px;
    }

    .service-content {
        padding-left: 54px;
        padding-right: 54px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .service-content {
        padding: 32px 35px;
    }

    .service-content h2 {
        font-size: 16px;
    }

    .service-content p {
        font-size: 11.5px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    main.container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .service-card {
        margin-bottom: 18px;
    }

    .service-image {
        height: 230px;
        min-height: 230px;
    }

    .service-content {
        min-height: auto;

        padding: 28px 25px 30px;
    }

    .service-content h2 {
        font-size: 16px;
        line-height: 1.3;

        margin-bottom: 12px;
    }

    .service-content p {
        font-size: 12px;
        line-height: 1.5;

        margin-bottom: 20px;
    }

    .service-btn {
        font-size: 11px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 575.98px) {

    .service-image {
        height: 210px;
        min-height: 210px;
    }

    .service-content {
        padding: 25px 20px 27px;
    }

    .service-content h2 {
        font-size: 15px;
    }

    .service-content p {
        font-size: 11px;
        line-height: 1.5;
    }

}

/* ======================================== */
/* ========================================== EXPERTISE SECTION ========================================== */
.expertise-section {
    width: 100%;
    background-color: #ffffff;
    padding: 35px 0 40px;
}

/* ========================================== ROW ========================================== */
.expertise-row {
    align-items: flex-start;
}

/* ========================================== ITEM ========================================== */
.expertise-item {
    width: 100%;
    padding: 0 18px;
    text-align: left;
}

/* ========================================== ICON ========================================== */
.expertise-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.expertise-icon img {
    width: 58px;
    height: 58px;
    display: block;
    object-fit: contain;
}

/* ========================================== TITLE ========================================== */
.expertise-item h3 {
    margin: 0 0 9px;
    color: #087080;
    font-size: 15px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
}

/* ========================================== DESCRIPTION ========================================== */
.expertise-item p {
    max-width: 145px;
    margin: 0;
    color: #777777;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 400;
}

/* ========================================== LARGE DESKTOP ========================================== */
@media (min-width: 1200px) {
    .expertise-section {
        padding-top: 35px;
        padding-bottom: 42px;
    }

    .expertise-item {
        padding-left: 14px;
        padding-right: 14px;
    }

    .expertise-icon {
        width: 68px;
        height: 68px;
    }

    .expertise-icon img {
        width: 62px;
        height: 62px;
    }
}

/* ========================================== TABLET ========================================== */
@media (max-width: 991.98px) {
    .expertise-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .expertise-item {
        margin-bottom: 30px;
    }

    .expertise-icon {
        margin-bottom: 10px;
    }
}

/* ========================================== MOBILE ========================================== */
@media (max-width: 575.98px) {
    .expertise-section {
        padding: 30px 10px;
    }

    .expertise-item {
        padding: 0 10px;
        margin-bottom: 28px;
    }

    .expertise-icon {
        width: 55px;
        height: 55px;
    }

    .expertise-icon img {
        width: 52px;
        height: 52px;
    }

    .expertise-item h3 {
        font-size: 10px;
    }

    .expertise-item p {
        max-width: 150px;
        font-size: 10.5px;
        line-height: 1.3;
    }
}

.food-solutions-title{
    font-size: 1.3rem;
    font-weight: 600 !important;
}