/* =========================================================
   RMW COLLEGE - MODERN WEBSITE
   ========================================================= */

:root {

    --green: #123f32;
    --green-dark: #0b2c24;
    --green-light: #1e5a47;

    --gold: #c7a15a;
    --gold-light: #e2c889;

    --cream: #f5f2e9;
    --cream-dark: #ebe6d9;

    --white: #ffffff;
    --black: #17201d;
    --gray: #69736f;
    --border: #e4e6df;

    --container: 1240px;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--black);

    background: var(--white);

    line-height: 1.7;

}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}


.container {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin: auto;

}


/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {

    background: var(--green-dark);

    color: rgba(255,255,255,.85);

    font-size: 12px;

}


.top-inner {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.top-left,
.top-right {

    display: flex;

    align-items: center;

    gap: 20px;

}


.top-bar span,
.top-bar a {

    white-space: nowrap;

}


.top-bar i {
    margin-right: 5px;
}


.top-right a:hover {
    color: var(--gold-light);
}


/* =========================================================
   HEADER
   ========================================================= */

.college-header {

    background: var(--white);

    border-bottom: 1px solid var(--border);

}


.header-inner {

    min-height: 105px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.college-brand {

    display: flex;

    align-items: center;

    gap: 16px;

}


.brand-logo {

    width: 68px;

    height: 68px;

    border: 2px solid var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--green);

    font-weight: 800;

    font-size: 18px;

    overflow: hidden;

}


.brand-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.brand-text span {

    display: block;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.brand-text h1 {

    color: var(--green);

    font-size: 28px;

    line-height: 1.1;

    margin: 3px 0;

}


.brand-text p {

    color: var(--gray);

    font-size: 13px;

}


.header-right {

    display: flex;

    align-items: center;

    gap: 30px;

}


.header-contact {

    display: flex;

    gap: 25px;

}


.header-contact-item {

    display: flex;

    align-items: center;

    gap: 10px;

}


.header-contact-item > i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 50%;

}


.header-contact-item small {

    display: block;

    color: var(--gray);

    font-size: 9px;

    letter-spacing: 1.5px;

}


.header-contact-item strong {

    display: block;

    font-size: 12px;

}


.header-button {

    padding: 13px 19px;

    background: var(--green);

    color: white;

    font-size: 12px;

    font-weight: 700;

    display: flex;

    gap: 10px;

    align-items: center;

}


.header-button:hover {

    background: var(--gold);

    color: var(--green-dark);

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {

    background: var(--green);

    color: white;

}


.nav-inner {

    display: flex;

    align-items: center;

}


.nav-menu {

    display: flex;

    align-items: center;

}


.nav-menu > a,
.nav-dropdown > a {

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 17px 18px;

    font-size: 13px;

    font-weight: 600;

    transition: .25s;

}


.nav-menu > a:hover,
.nav-dropdown > a:hover,
.nav-menu > a.active {

    background: var(--green-light);

    color: var(--gold-light);

}


.nav-dropdown {

    position: relative;

}


.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 210px;

    background: white;

    color: var(--black);

    box-shadow: 0 15px 35px rgba(0,0,0,.15);

    padding: 8px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition: .2s;

    z-index: 100;

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu a {

    display: block;

    padding: 10px 13px;

    font-size: 13px;

}


.dropdown-menu a:hover {

    background: var(--cream);

    color: var(--green);

}


.nav-search {

    margin-left: auto;

}


.nav-search button {

    border: 0;

    background: transparent;

    color: white;

    font-size: 16px;

    cursor: pointer;

}


.mobile-menu-button {

    display: none;

    border: 0;

    background: transparent;

    width: 40px;

    height: 40px;

    cursor: pointer;

}


.mobile-menu-button span {

    display: block;

    width: 24px;

    height: 2px;

    background: white;

    margin: 5px auto;

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

}


.hero-slider {

    height: 650px;

    position: relative;

    overflow: hidden;

}


.hero-slide {

    position: absolute;

    inset: 0;

    background-position: center;

    background-size: cover;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity .8s ease,
        visibility .8s ease,
        transform 5s ease;

}


.hero-slide.active {

    opacity: 1;

    visibility: visible;

    transform: scale(1);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,35,28,.92) 0%,
            rgba(7,35,28,.72) 45%,
            rgba(7,35,28,.18) 100%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    color: white;

    padding-bottom: 20px;

}


.hero-label {

    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 20px;

}


.hero-content h2 {

    font-size: clamp(48px, 6vw, 88px);

    line-height: .98;

    max-width: 850px;

    font-weight: 700;

    letter-spacing: -3px;

}


.hero-content h2 span {

    color: var(--gold-light);

    font-style: italic;

    font-family: Georgia, serif;

    font-weight: 400;

}


.hero-content p {

    max-width: 550px;

    font-size: 16px;

    margin-top: 25px;

    color: rgba(255,255,255,.82);

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 30px;

}


.hero-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 21px;

    border: 1px solid rgba(255,255,255,.55);

    color: white;

    font-size: 12px;

    font-weight: 700;

}


.hero-button:hover {

    background: white;

    color: var(--green);

}


.hero-button.primary {

    background: var(--gold);

    border-color: var(--gold);

    color: var(--green-dark);

}


.hero-button.primary:hover {

    background: white;

    border-color: white;

}


.hero-controls {

    position: absolute;

    z-index: 4;

    bottom: 38px;

    right: 40px;

    display: flex;

    align-items: center;

    gap: 15px;

}


.hero-controls button {

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255,255,255,.4);

    background: transparent;

    color: white;

    cursor: pointer;

}


.hero-controls button:hover {

    background: white;

    color: var(--green);

}


.hero-counter {

    color: white;

    font-size: 12px;

}


.hero-scroll {

    position: absolute;

    z-index: 5;

    bottom: 40px;

    left: 40px;

    color: rgba(255,255,255,.8);

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 10px;

    letter-spacing: 2px;

}


/* =========================================================
   QUICK ACCESS
   ========================================================= */

.quick-access-wrap {

    position: relative;

    z-index: 10;

    margin-top: -48px;

}


.quick-access {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: white;

    box-shadow: 0 15px 40px rgba(20,40,30,.12);

}


.quick-item {

    min-height: 95px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-right: 1px solid var(--border);

}


.quick-item:last-child {
    border-right: 0;
}


.quick-icon {

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 50%;

}


.quick-item small {

    display: block;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--gray);

}


.quick-item strong {

    display: block;

    font-size: 14px;

    color: var(--green);

}


.quick-item > i:last-child {

    margin-left: auto;

    color: var(--gold);

}


.quick-item:hover {

    background: var(--green);

    color: white;

}


.quick-item:hover strong {

    color: white;

}


.quick-item:hover small {

    color: rgba(255,255,255,.65);

}


/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.section-space {

    padding: 105px 0;

}


.section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 22px;

}


.section-label span {

    color: var(--gold);

}


.section-label.light {

    color: var(--gold-light);

}


.section-title {

    color: var(--green);

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

}


.section-title em,
h2 em {

    color: var(--gold);

    font-family: Georgia, serif;

    font-weight: 400;

}


/* =========================================================
   INTRO
   ========================================================= */

.intro-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

}


.intro-heading h2 {

    color: var(--green);

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    letter-spacing: -3px;

}


.intro-heading em {

    display: block;

    color: var(--gold);

    font-family: Georgia, serif;

    font-weight: 400;

}


.intro-content {

    padding-top: 10px;

    max-width: 680px;

}


.intro-content p {

    color: var(--gray);

    margin-bottom: 20px;

}


.intro-content .lead {

    font-size: 19px;

    line-height: 1.65;

    color: var(--black);

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--green);

    font-size: 12px;

    font-weight: 800;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 5px;

    margin-top: 12px;

}


/* =========================================================
   PRINCIPAL
   ========================================================= */

.principal-section {

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--green);

    color: white;

}


.principal-image {

    min-height: 590px;

    position: relative;

    overflow: hidden;

}


.principal-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.principal-caption {

    position: absolute;

    bottom: 35px;

    left: 35px;

    background: white;

    color: var(--green);

    padding: 18px 22px;

}


.principal-caption span {

    display: block;

    font-size: 9px;

    letter-spacing: 2px;

    color: var(--gray);

}


.principal-caption strong {

    display: block;

    font-size: 18px;

}


.principal-content {

    padding: 90px 9%;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

}


.principal-content h2 {

    font-size: clamp(38px, 4vw, 60px);

    line-height: 1.05;

    margin-bottom: 25px;

}


.principal-content p {

    color: rgba(255,255,255,.72);

    max-width: 600px;

    margin-bottom: 14px;

}


.outline-button {

    margin-top: 20px;

    border: 1px solid rgba(255,255,255,.5);

    color: white;

    padding: 13px 20px;

    display: inline-flex;

    gap: 12px;

    font-size: 12px;

    font-weight: 700;

}


.outline-button:hover {

    background: white;

    color: var(--green);

}


/* =========================================================
   ACADEMICS
   ========================================================= */

.academics-section {

    background: var(--cream);

}


.section-top {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;

}


.section-top > p {

    max-width: 420px;

    color: var(--gray);

}


.academic-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.academic-card {

    position: relative;

    background: white;

    padding: 42px 35px;

    min-height: 350px;

    overflow: hidden;

    transition: .3s;

}


.academic-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 20px 40px rgba(20,40,30,.12);

}


.academic-card.featured {

    background: var(--green);

    color: white;

}


.academic-number {

    position: absolute;

    right: 25px;

    top: 15px;

    font-size: 70px;

    font-family: Georgia, serif;

    color: rgba(18,63,50,.07);

}


.featured .academic-number {

    color: rgba(255,255,255,.08);

}


.academic-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    margin-bottom: 30px;

}


.academic-card h3 {

    font-size: 25px;

    margin-bottom: 15px;

}


.academic-card p {

    color: var(--gray);

    font-size: 14px;

}


.featured p {

    color: rgba(255,255,255,.68);

}


.academic-card > span {

    position: absolute;

    bottom: 30px;

    left: 35px;

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

}


.featured > span {

    color: var(--gold-light);

}


/* =========================================================
   UPDATES
   ========================================================= */

.updates-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}


.notice-panel {

    border: 1px solid var(--border);

}


.panel-heading {

    padding: 25px;

    background: var(--cream);

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.panel-heading span {

    font-size: 9px;

    letter-spacing: 2px;

    color: var(--gold);

    font-weight: 800;

}


.panel-heading h3 {

    font-size: 24px;

    color: var(--green);

}


.panel-heading > i {

    color: var(--gold);

    font-size: 20px;

}


.notice-item {

    min-height: 95px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 15px 20px;

    border-top: 1px solid var(--border);

}


.notice-date {

    width: 50px;

    text-align: center;

    color: var(--green);

}


.notice-date strong {

    display: block;

    font-size: 23px;

    line-height: 1;

}


.notice-date span {

    font-size: 8px;

    letter-spacing: 1px;

    color: var(--gold);

}


.notice-text {

    flex: 1;

}


.notice-text h4 {

    font-size: 14px;

}


.notice-text p {

    color: var(--gray);

    font-size: 11px;

}


.notice-item > i {

    color: var(--gold);

}


.notice-item:hover {

    background: var(--cream);

}


.events-panel {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.event-feature {

    position: relative;

    height: 310px;

    overflow: hidden;

}


.event-feature img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.event-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    color: white;

    background:
        linear-gradient(
            transparent 20%,
            rgba(7,35,28,.9)
        );

}


.event-overlay span {

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 2px;

}


.event-overlay h3 {

    font-size: 27px;

    max-width: 400px;

    line-height: 1.1;

    margin: 8px 0 15px;

}


.event-overlay a {

    font-size: 11px;

    color: white;

}


.mini-events {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.mini-event {

    border: 1px solid var(--border);

    display: flex;

    gap: 14px;

    padding: 16px;

}


.mini-date {

    text-align: center;

    min-width: 45px;

}


.mini-date strong {

    display: block;

    font-size: 22px;

    color: var(--green);

    line-height: 1;

}


.mini-date span {

    font-size: 8px;

    color: var(--gold);

}


.mini-event span {

    font-size: 8px;

    color: var(--gold);

    letter-spacing: 1px;

}


.mini-event h4 {

    font-size: 13px;

    line-height: 1.3;

}


/* =========================================================
   GALLERY
   ========================================================= */

.campus-section {

    background: var(--cream);

}


.campus-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 45px;

    gap: 50px;

}


.campus-heading p {

    max-width: 420px;

    color: var(--gray);

}


.gallery-grid {

    display: grid;

    grid-template-columns: 1.2fr .8fr .8fr;

    grid-template-rows: 250px 250px;

    gap: 15px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}


.gallery-item:hover img {

    transform: scale(1.06);

}


.gallery-large {

    grid-row: span 2;

}


.gallery-wide {

    grid-column: span 2;

}


.gallery-overlay {

    position: absolute;

    inset: auto 0 0 0;

    padding: 22px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.8)
        );

}


.gallery-overlay span {

    display: block;

    font-size: 8px;

    color: var(--gold-light);

    letter-spacing: 2px;

}


.gallery-overlay strong {

    display: block;

    font-size: 18px;

}


/* =========================================================
   SERVICES
   ========================================================= */

.services-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 40px;

    margin-bottom: 40px;

}


.services-heading p {

    max-width: 400px;

    color: var(--gray);

}


.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);

}


.service-card {

    padding: 35px;

    min-height: 170px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    transition: .25s;

}


.service-card i {

    color: var(--gold);

    font-size: 20px;

    margin-bottom: 22px;

}


.service-card h3 {

    color: var(--green);

    font-size: 18px;

    margin-bottom: 4px;

}


.service-card span {

    font-size: 11px;

    color: var(--gray);

}


.service-card:hover {

    background: var(--green);

}


.service-card:hover h3,
.service-card:hover span {

    color: white;

}


/* =========================================================
   IMPORTANT LINKS
   ========================================================= */

.links-section {

    background: var(--green);

    color: white;

    padding: 90px 0;

}


.links-inner {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

}


.links-small {

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;

}


.links-inner h2 {

    font-size: 42px;

    line-height: 1.1;

    margin-top: 15px;

}


.links-inner h2 em {

    display: block;

    color: var(--gold-light);

}


.important-links {

    display: grid;

    grid-template-columns: 1fr 1fr;

}


.important-links a {

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.15);

    display: flex;

    justify-content: space-between;

    color: rgba(255,255,255,.8);

    font-size: 13px;

}


.important-links a:hover {

    color: var(--gold-light);

}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {

    background: var(--gold);

    color: var(--green-dark);

}


.cta-inner {

    min-height: 240px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.cta-inner > div > span {

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 800;

}


.cta-inner h2 {

    font-size: 48px;

    line-height: 1;

    margin-top: 10px;

}


.cta-inner h2 em {

    font-family: Georgia, serif;

    font-weight: 400;

}


.cta-button {

    background: var(--green);

    color: white;

    padding: 16px 23px;

    display: inline-flex;

    gap: 12px;

    font-size: 12px;

    font-weight: 700;

}


.cta-button:hover {

    background: white;

    color: var(--green);

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    background: #0a211b;

    color: white;

    padding-top: 70px;

}


.footer-main {

    display: grid;

    grid-template-columns: 1.5fr repeat(4, 1fr);

    gap: 45px;

    padding-bottom: 60px;

}


.footer-logo {

    width: 55px;

    height: 55px;

    border: 1px solid var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold-light);

    font-weight: 800;

}


.footer-brand h3 {

    margin-top: 15px;

    font-size: 22px;

}


.footer-brand > p {

    color: rgba(255,255,255,.6);

    font-size: 12px;

}


.footer-description {

    max-width: 230px;

    margin-top: 15px;

}


.social-links {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.social-links a {

    width: 32px;

    height: 32px;

    border: 1px solid rgba(255,255,255,.2);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

}


.social-links a:hover {

    background: var(--gold);

    color: var(--green);

}


.footer-column h4 {

    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 1.5px;

    margin-bottom: 20px;

}


.footer-column a {

    display: block;

    color: rgba(255,255,255,.6);

    font-size: 12px;

    margin-bottom: 10px;

}


.footer-column a:hover {

    color: white;

}


.footer-contact p {

    color: rgba(255,255,255,.6);

    font-size: 12px;

    margin-bottom: 13px;

}


.footer-contact i {

    width: 20px;

    color: var(--gold);

}


.footer-bottom {

    min-height: 70px;

    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,.45);

    font-size: 10px;

}


.footer-bottom-links {

    display: flex;

    gap: 20px;

}


.footer-bottom-links a:hover {

    color: white;

}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {

    background: var(--green);

    color: white;

    padding: 80px 0;

}


.page-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.6);

    font-size: 11px;

    margin-bottom: 25px;

}


.page-breadcrumb a:hover {

    color: var(--gold-light);

}


.page-hero h1 {

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1;

    letter-spacing: -2px;

}


/* =========================================================
   INNER PAGE
   ========================================================= */

.inner-page {

    padding: 90px 0;

}


.inner-layout {

    display: grid;

    grid-template-columns: 1fr 300px;

    gap: 80px;

}


.page-content {

    max-width: 850px;

}


.page-content h2 {

    color: var(--green);

    font-size: 48px;

    line-height: 1.05;

    margin-bottom: 30px;

}


.page-content h3 {

    color: var(--green);

    font-size: 25px;

    margin: 35px 0 15px;

}


.page-content p {

    color: var(--gray);

    margin-bottom: 20px;

}


.page-principal-image {

    width: 300px;

    height: 360px;

    object-fit: cover;

    margin-bottom: 30px;

}


.sidebar-box {

    background: var(--cream);

    padding: 25px;

}


.sidebar-box > span {

    display: block;

    font-size: 9px;

    letter-spacing: 2px;

    color: var(--gold);

    font-weight: 800;

    margin-bottom: 15px;

}


.sidebar-box a {

    display: block;

    padding: 12px 0;

    border-bottom: 1px solid var(--border);

    color: var(--green);

    font-size: 12px;

}


.sidebar-box a:hover {

    color: var(--gold);

    padding-left: 5px;

}


.page-notices a {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);

}


.page-notices strong {

    width: 120px;

    color: var(--gold);

    font-size: 10px;

}


.page-notices span {

    flex: 1;

    color: var(--green);

    font-weight: 600;

}


.page-notices i {

    color: var(--gold);

}


.contact-details {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 20px;

    margin-top: 40px;

}


.contact-details > div {

    border: 1px solid var(--border);

    padding: 25px;

}


.contact-details i {

    display: block;

    color: var(--gold);

    font-size: 22px;

    margin-bottom: 15px;

}


.contact-details strong {

    color: var(--green);

}


.contact-details p {

    margin-top: 7px;

    font-size: 12px;

}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {

    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 42px;

    height: 42px;

    border: 0;

    background: var(--gold);

    color: var(--green);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 999;

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .header-contact {
        display: none;
    }

    .nav-menu > a,
    .nav-dropdown > a {
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

}


@media (max-width: 850px) {

    .top-left {
        display: none;
    }

    .top-inner {
        justify-content: center;
    }

    .top-right {
        gap: 13px;
    }


    .header-inner {
        min-height: 85px;
    }

    .brand-logo {
        width: 55px;
        height: 55px;
    }

    .brand-text h1 {
        font-size: 22px;
    }

    .header-button {
        display: none;
    }


    .mobile-menu-button {
        display: block;
        order: 1;
    }


    .nav-inner {
        min-height: 55px;
    }


    .nav-menu {

        position: absolute;

        top: 198px;

        left: 0;

        right: 0;

        background: var(--green-dark);

        display: none;

        flex-direction: column;

        align-items: stretch;

        z-index: 200;

        box-shadow: 0 15px 30px rgba(0,0,0,.2);

    }


    .nav-menu.open {
        display: flex;
    }


    .nav-menu > a,
    .nav-dropdown > a {
        padding: 14px 25px;
    }


    .dropdown-menu {

        position: static;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        background: rgba(255,255,255,.05);

        color: white;

    }


    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }


    .nav-search {
        margin-left: auto;
        margin-right: 15px;
    }


    .hero-slider {
        height: 570px;
    }


    .hero-content h2 {
        font-size: 55px;
    }


    .quick-access {
        grid-template-columns: 1fr 1fr;
    }


    .quick-item:nth-child(2) {
        border-right: 0;
    }


    .intro-grid,
    .principal-section,
    .updates-grid,
    .links-inner {
        grid-template-columns: 1fr;
    }


    .intro-grid {
        gap: 35px;
    }


    .principal-image {
        min-height: 450px;
    }


    .academic-grid {
        grid-template-columns: 1fr;
    }


    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px 250px;
    }


    .gallery-large {
        grid-row: span 2;
    }


    .gallery-wide {
        grid-column: span 2;
    }


    .services-grid {
        grid-template-columns: 1fr 1fr;
    }


    .inner-layout {
        grid-template-columns: 1fr;
    }


    .page-sidebar {
        order: -1;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;
    }


    .footer-brand {
        grid-column: span 2;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(
            var(--container),
            calc(100% - 28px)
        );
    }


    .top-right a:nth-child(-n+3) {
        display: none;
    }


    .header-right {
        display: none;
    }


    .brand-text h1 {
        font-size: 20px;
    }


    .brand-text p {
        font-size: 11px;
    }


    .nav-menu {
        top: 170px;
    }


    .hero-slider {
        height: 570px;
    }


    .hero-content {
        padding-left: 10px;
        padding-right: 10px;
    }


    .hero-content h2 {
        font-size: 47px;
        letter-spacing: -2px;
    }


    .hero-content p {
        font-size: 14px;
    }


    .hero-scroll {
        display: none;
    }


    .hero-controls {
        right: 15px;
        bottom: 20px;
    }


    .quick-access {
        grid-template-columns: 1fr;
    }


    .quick-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }


    .quick-item:last-child {
        border-bottom: 0;
    }


    .section-space {
        padding: 75px 0;
    }


    .section-top,
    .campus-heading,
    .services-heading,
    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }


    .section-title {
        font-size: 42px;
    }


    .principal-content {
        padding: 70px 25px;
    }


    .principal-content h2 {
        font-size: 43px;
    }


    .mini-events {
        grid-template-columns: 1fr;
    }


    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 230px);
    }


    .gallery-large,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }


    .important-links {
        grid-template-columns: 1fr;
    }


    .cta-inner {
        padding: 55px 0;
    }


    .cta-inner h2 {
        font-size: 42px;
    }


    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }


    .contact-details {
        grid-template-columns: 1fr;
    }


    .page-content h2 {
        font-size: 40px;
    }


    .page-notices a {
        gap: 10px;
    }


    .page-notices strong {
        width: 85px;
    }

}