/* =========================================
   GENERAL
========================================= */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111b3f;
    background: #ffffff;
}


/* =========================================
   LABORATORY BANNER
========================================= */

.laboratory-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background-image: url("/public/assets/img/Laboratory.jpg");
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* Blue transparent title background */

.laboratory-banner-overlay {
    width: 430px;

    margin-bottom: 10px;

    padding: 0 20px;

    background: rgba(15, 52, 105, 0.75);

    text-align: center;
}


.laboratory-banner h1 {
    margin: 0;

    padding: 0;

    color: #ffffff;

    font-size: 52px;
    font-weight: 700;

    line-height: 1.05;
}


/* =========================================
   MAIN SECTION
========================================= */

.laboratory-section {
    padding: 42px 0 44px;

    background: #ffffff;
}


/* =========================================
   DECORATIVE DIVIDER
========================================= */

.section-divider {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 24px;
}


.section-divider span {
    width: 80px;
    height: 3px;

    background: #00247d;

    display: block;
}


.section-divider i {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #00247d;

    font-size: 20px;

    background: #ffffff;
}


/* =========================================
   INTRODUCTION
========================================= */

.laboratory-intro {
    max-width: 1080px;

    margin: 0 auto 12px;
}


.laboratory-intro p {
    margin: 0 0 5px;

    font-size: 16px;

    line-height: 1.9;

    color: #151b32;
}


/* =========================================
   TABLE
========================================= */

.laboratory-table-wrapper {
    max-width: 1100px;

    margin: 0 auto;

    border-left: 1px solid #555;
    border-top: 1px solid #555;
}


/* Space between tables */

.second-table {
    margin-top: 10px;
}


/* =========================================
   TABLE HEADER
========================================= */

.lab-header {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 15px;

    background: #000957;

    border-right: 1px solid #555;
    border-bottom: 1px solid #555;

    color: #ffffff;

    text-align: center;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================
   TABLE CELLS
========================================= */

.lab-cell {
    min-height: 51px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 12px 15px;

    background: #ffffff;

    border-right: 1px solid #555;
    border-bottom: 1px solid #555;

    color: #202438;

    text-align: center;

    font-size: 14px;

    line-height: 1.6;
}


.lab-cell-tall {
    min-height: 74px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .laboratory-banner {
        height: 210px;
    }

    .laboratory-banner-overlay {
        width: 380px;
    }

    .laboratory-banner h1 {
        font-size: 46px;
    }

    .laboratory-section {
        padding-top: 35px;
    }

    .laboratory-intro {
        max-width: 90%;
    }

    .laboratory-table-wrapper {
        max-width: 90%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .laboratory-banner {
        height: 170px;

        background-position: center center;
    }


    .laboratory-banner-overlay {
        width: 280px;

        margin-bottom: 8px;

        padding: 5px 10px;
    }


    .laboratory-banner h1 {
        font-size: 34px;
    }


    .laboratory-section {
        padding: 30px 0 35px;
    }


    .section-divider {
        margin-bottom: 20px;
    }


    .section-divider span {
        width: 55px;
        height: 2px;
    }


    .section-divider i {
        font-size: 17px;
    }


    .laboratory-intro {
        max-width: 100%;
    }


    .laboratory-intro p {
        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 8px;
    }


    /*
       On mobile the two columns
       become separate rows
    */

    .laboratory-table-wrapper {
        max-width: 100%;

        margin-left: 12px;
        margin-right: 12px;
    }


    .lab-header {
        min-height: 48px;

        font-size: 13px;
    }


    .lab-cell {
        min-height: 55px;

        font-size: 13px;

        padding: 12px 10px;
    }


    .lab-cell-tall {
        min-height: 70px;
    }


    .second-table {
        margin-top: 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .laboratory-banner {
        height: 145px;
    }


    .laboratory-banner-overlay {
        width: 235px;
    }


    .laboratory-banner h1 {
        font-size: 29px;
    }


    .laboratory-section {
        padding-top: 25px;
    }


    .section-divider span {
        width: 45px;
    }


    .laboratory-table-wrapper {
        margin-left: 8px;
        margin-right: 8px;
    }


    .lab-header {
        font-size: 12px;
        padding: 10px 8px;
    }


    .lab-cell {
        font-size: 12px;
        padding: 10px 7px;
    }

}