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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #f5f7ff;
}


/* =====================================================
   PAGE BANNER
===================================================== */

.page-banner {
    position: relative;
    height: 300px;
    background-image: url("/public/assets/img/Seminar-Hall.jpg");
    background-size: cover;
    overflow: hidden;
	display: flex;
    align-items: flex-end;
    justify-content: center;
    background-position: center center;
}

.banner-overlay {
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.45);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-title {
    position: relative;
    width: fit-content;
    min-width: 400px;
    margin: 0 auto 10px;
    padding: 2px 60px 5px;
    background: rgba(12, 43, 91, 0.78);
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
}
.page-banner h1 {
    margin: 0;

    font-size: 62px;
    font-weight: 400;

    color: #eeeeee;

    text-shadow:
        2px 2px 0 #222,
        -1px -1px 0 #222,
        1px -1px 0 #222,
        -1px 1px 0 #222;
}


/* =====================================================
   COMPUTER LAB SECTION
===================================================== */

.computer-lab-section {
    padding: 32px 0 80px;
    background: #f5f7ff;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: 38px;
    font-weight: 700;

    margin-bottom: 22px;
    color: #050505;
}


/* =====================================================
   HEADING DECORATION
===================================================== */

.heading-decoration {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

.heading-decoration span {
    display: block;

    width: 50px;
    height: 3px;

    background: #063da8;
}

.heading-decoration i {
    width: 24px;
    height: 24px;

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

    color: #063da8;

    font-size: 21px;
}


/* =====================================================
   CONTENT
===================================================== */

.computer-content {
    margin-top: 50px;
}


/* =====================================================
   LEFT TEXT
===================================================== */

.lab-text {
    padding-right: 25px;
}

.lab-text p {
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 7px;
    color: #18243a;
    text-align: left;
}


/* =====================================================
   IMAGE
===================================================== */

.lab-image-wrapper {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.lab-image {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
}


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

@media (max-width: 991.98px) {

    .page-banner {
        height: 210px;
    }

   .banner-title {
        min-width: auto;

        padding: 5px 45px;

        font-size: 38px;
    }
    .page-banner h1 {
        font-size: 50px;
    }

    .computer-lab-section {
        padding: 30px 0 60px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .lab-text {
        padding-right: 10px;
    }

    .lab-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .lab-image {
        height: 330px;
    }

    .lab-image-wrapper {
        border-radius:
            80px
            0
            80px
            0;
    }
}


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

@media (max-width: 767.98px) {

    .page-banner {
        height: 170px;

        background-position: center;
    }

    .page-banner h1 {
        font-size: 36px;
        text-align: center;
    }

    .banner-title {
        width: 90%;

        margin-bottom: 10px;

        padding: 5px 15px;

        font-size: 28px;
    }

    .computer-lab-section {
        padding: 25px 0 50px;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .heading-decoration {
        gap: 8px;
    }

    .heading-decoration span {
        width: 42px;
        height: 2px;
    }


    /* Text */
    .lab-text {
        padding-right: 0;
        margin-bottom: 25px;
    }

    .lab-text p {
        font-size: 15px;
        line-height: 1.7;

        text-align: left;

        margin-bottom: 10px;
    }


    /* Image */
    .lab-image-wrapper {
        border-radius:
            60px
            0
            60px
            0;
    }

    .lab-image {
        height: 280px;
    }

}


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

@media (max-width: 480px) {

    .page-banner {
        height: 140px;
    }

    .page-banner h1 {
        font-size: 30px;
    }

   .banner-title {
        font-size: 23px;

        padding: 4px 10px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .heading-decoration span {
        width: 35px;
    }

    .lab-text p {
        font-size: 14px;
        line-height: 1.65;
    }

    .lab-image {
        height: 230px;
    }

    .lab-image-wrapper {
        border-radius:
            45px
            0
            45px
            0;
    }
}