/* =========================================
   GLOBAL RESET
========================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #102944;
    line-height: 1.55;
}

.container,
.wrap {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================
   TOP BAR
========================================= */

.top {
    background: #062d54;
    color: #fff;
    padding: 9px 4%;
    font-size: 12px;

    display: flex;
    justify-content: space-between;
}


/* =========================================
   HEADER
========================================= */

.site-header,
header {
    background: #fff;
    border-bottom: 1px solid #e7edf2;
}

.nav {
    width: min(1180px, 92%);
    margin: auto;
    min-height: 78px;

    display: flex;
    align-items: center;
    gap: 25px;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 75px !important;
    height: 75px !important;
    max-width: 75px !important;
    max-height: 75px !important;
    object-fit: contain;
    display: block;
}

.logo b {
    display: flex;
    flex-direction: column;
}

.logo b small {
    font-size: 12px;
    font-weight: 400;
}

.logo b em {
    font-size: 11px;
    font-weight: 400;
}

/* =========================================
   NAVIGATION
========================================= */

nav {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex: 1;
}

nav a {
    color: #142b43;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}


/* =========================================
   BUTTONS
========================================= */

.apply,
.btn {
    padding: 11px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.apply,
.red {
    background: #e51c26;
    color: #fff;
}

.blue {
    background: #0759a7;
    color: #fff;
}

.btn {
    border: 1px solid #1767b2;
    color: #0759a7;
    background: #fff;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.nav button {
    display: none;
}


/* =========================================
   HERO SECTION
========================================= */

.hero {
    background: linear-gradient(
        90deg,
        #e9f7ff,
        #d9effc
    );

    min-height: 410px;
}

.hero .wrap {
    min-height: 410px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
}

.hero label,
.inner label,
.center label,
.about label {
    color: #e51c26;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: bold;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 12px 0;
}

.hero h1 strong,
h2 strong,
.inner h1 strong {
    color: #075bc0;
}

.hero p {
    max-width: 620px;
    color: #586b7e;
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-img {
    height: 100%;

    display: grid;
    place-items: center;

    position: relative;

    background: url("../images/hero.svg")
        center / contain no-repeat;
}

.hero-img > div {
    width: 290px;
    height: 290px;

    border-radius: 50% 50% 10px 10px;

    background: linear-gradient(
        #c4e9fa,
        #fff
    );

    display: grid;
    place-items: center;

    text-align: center;

    color: #0759a7;
    font-size: 28px;
}

.hero-img aside {
    position: absolute;
    right: 0;
    top: 80px;

    background: #fff;
    padding: 18px;

    border-radius: 10px;

    box-shadow: 0 10px 30px #1234 1;
}


/* =========================================
   COMMON SECTION
========================================= */

.sec {
    padding: 62px 0;
}


/* =========================================
   ABOUT SECTION
========================================= */

.aboutgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.75fr;

    gap: 25px;

    align-items: center;
}

.about p {
    color: #617287;
}

.building {
    height: 210px;

    border-radius: 10px;

    background: linear-gradient(
        #9bd1ee,
        #eef9ff
    );

    display: grid;
    place-items: center;

    text-align: center;

    color: #0759a7;
    font-size: 32px;
    font-weight: bold;
}

.building small {
    font-size: 10px;
}


/* =========================================
   ABOUT POINTS
========================================= */

.points {
    display: grid;
    gap: 10px;
}

.points b {
    background: #eef8ff;
    padding: 13px;

    border-radius: 7px;

    font-size: 13px;
}


/* =========================================
   COURSES SECTION
========================================= */

.courses {
    background: #f7fbfe;
}

.center {
    text-align: center;
    margin-bottom: 25px;
}

.center h2 {
    font-size: 34px;
    margin: 5px;
}


/* =========================================
   COURSE GRID
   4 COLUMNS
========================================= */

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.course-card,
.grid4 article {
    background: #fff;

    border: 1px solid #e0e9f0;
    border-radius: 8px;

    min-height: 165px;

    padding: 18px;

    text-align: center;

    box-shadow: 0 4px 15px #1232;
}


/* =========================================
   COURSE ICON
========================================= */

.ci {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    margin: auto;

    background: #e8f5ff;
    color: #075bc0;

    display: grid;
    place-items: center;

    font-size: 28px;
}


/* =========================================
   COURSE TEXT
========================================= */

.grid4 h3 {
    font-size: 13px;
    line-height: 1.3;
}

.grid4 a {
    color: #075bc0;

    text-decoration: none;

    font-size: 12px;
    font-weight: bold;
}


/* =========================================
   STATISTICS
========================================= */

.stats {
    background: #06457f;
    color: #fff;
}

.statsgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.statsgrid div {
    text-align: center;

    padding: 20px;

    border-right: 1px solid #fff5;
}

.stats b {
    display: block;
    font-size: 34px;
}

.stats span {
    font-size: 13px;
}


/* =========================================
   CLINICAL & PRACTICAL CLASSES
   3 COLUMNS
========================================= */

.grid3 {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.grid3 article {
    text-align: center;
}


/* =========================================
   CLINICAL IMAGES
========================================= */

.photo {
    height: 175px;

    border-radius: 8px;

    background-image: url("../images/xray.svg");

    background-size: cover;
    background-position: center;

    display: flex;

    align-items: end;
    justify-content: center;
}

.photo.xray {
    background-image: url("../images/xray.svg");
}

.photo.pathology {
    background-image: url("../images/pathology.svg");
}

.photo.ot {
    background-image: url("../images/ot.svg");
}

.photo.dental {
    background-image: url("../images/dental.svg");
}

.photo.dialysis {
    background-image: url("../images/dialysis.svg");
}

.photo.ct {
    background-image: url("../images/ct.svg");
}

.photo span {
    background: #fff;

    padding: 7px 12px;

    border-radius: 20px;

    margin-bottom: 10px;

    font-weight: bold;
    font-size: 12px;
}


/* =========================================
   STUDENTS SECTION
========================================= */

.students {
    background: #eff9ff;
}

.studentgrid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.studentgrid article,
.info {
    background: #fff;

    border: 1px solid #dfeaf1;

    border-radius: 10px;

    padding: 22px;
}

.studentgrid p {
    color: #5f7184;
    font-size: 13px;
}

.studentgrid small {
    display: block;

    color: #64778a;

    font-size: 11px;
}


/* =========================================
   FOOTER
========================================= */

.footer,
footer {
    background: #082943;
    color: #dce9f3;
}

.foot {
    width: min(1180px, 92%);

    margin: auto;

    padding: 45px 0;

    display: grid;

    grid-template-columns:
        1.3fr
        0.8fr
        1fr
        1fr;

    gap: 35px;
}

.foot h2,
.foot h4 {
    color: #fff;
}

.foot a {
    display: block;

    color: #dce9f3;

    text-decoration: none;

    font-size: 13px;

    margin: 6px 0;
}

.foot p {
    font-size: 13px;
}


/* =========================================
   COPYRIGHT
========================================= */

.copy {
    text-align: center;

    border-top: 1px solid #fff2;

    padding: 16px;

    font-size: 11px;
}


/* =========================================
   INNER PAGE
========================================= */

.inner {
    background: #edf7ff;

    padding: 55px 0;
}

.inner h1 {
    font-size: 42px;

    margin: 8px 0;
}


/* =========================================
   TWO COLUMN
========================================= */

.twocol,
.formgrid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;
}


/* =========================================
   FORM
========================================= */

.form {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.form input,
.form select,
.form textarea {
    width: 100%;

    padding: 11px;

    border: 1px solid #d6e1e9;

    border-radius: 6px;

    margin-top: 5px;

    font: inherit;
}


/* =========================================
   CAREER
========================================= */

.career {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.career article {
    padding: 25px;

    border: 1px solid #e0e9f0;

    border-radius: 10px;
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 900px) {

    .nav button {
        display: block;

        margin-left: auto;

        background: none;

        border: 0;

        font-size: 23px;
    }


    nav {
        display: none;

        position: absolute;

        top: 120px;

        left: 0;
        right: 0;

        background: #fff;

        padding: 18px;

        flex-direction: column;

        z-index: 5;
    }


    nav.open {
        display: flex;
    }


    .logo {
        min-width: 0;
    }


    .hero .wrap,
    .aboutgrid,
    .twocol,
    .formgrid {
        grid-template-columns: 1fr;
    }


    .hero-img {
        display: none;
    }


    .grid4 {
        grid-template-columns: repeat(2, 1fr);
    }


    .grid3 {
        grid-template-columns: repeat(2, 1fr);
    }


    .studentgrid {
        grid-template-columns: 1fr;
    }


    .foot {
        grid-template-columns: 1fr 1fr;
    }


    .top span {
        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 560px) {

    .grid4,
    .grid3,
    .career,
    .foot {
        grid-template-columns: 1fr;
    }


    .hero h1 {
        font-size: 36px;
    }


    .inner h1 {
        font-size: 34px;
    }


    .statsgrid {
        grid-template-columns: 1fr 1fr;
    }


    .statsgrid div {
        border-bottom: 1px solid #fff5;
    }


    .logo b {
        font-size: 21px;
    }

}