:root {
    --gold: #BE8405;
    --dark-gray: #333333;
    --light-gray: #999999;
    --white: #ffffff;
    --light-blue: #a18f5e;
    --light: #F8F8F8;
    --pink: #F38181;

    --heading-gold: #a18f5e;
    --heading-red: #eb1c23;
    --golden-bg: #a18f5e;
    --black-bg: #000;


}

.community-name {
    color: var(--gold);
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../webfonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Montserrat-Regular;
    src: url('../webfonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('../webfonts/roboto/roboto-bold.ttf');
}

@font-face {
    font-family: Roboto-Regular;
    src: url('../webfonts/roboto/roboto-regular.ttf');
}

@font-face {
    font-family: Roboto-Ligiht;
    src: url('../webfonts/roboto/roboto-light.woff');
}

@font-face {
    font-family: Roboto-Italic;
    src: url('../webfonts/roboto/roboto-italic.ttf');
}

@font-face {
    font-family: Kaushan;
    src: url('../webfonts/kaushan/KaushanScript-Regular.ttf');
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--white);
}

a, a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0;
}

/*Backgrounds Colors*/
.bg-blue {
    background-color: var(--light-blue) !important;
}

/*Text Colors*/
.text-gold {
    color: var(--heading-gold) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--dark-gray) !important;
}

.text-red-heading {
    color: var(--heading-red) !important;
}

/*Main Menu*/
#main-menu .logo {
    aspect-ratio: 3/1;
    max-width: 200px;
    max-height: 60px;
}

#main-menu .no-gutters-space {
    --bs-gutter-x: 0rem;
}

#main-menu .navbar-nav {
    font-size: 12px;
    font-family: 'Roboto-Regular';
    padding-right: 40px;
}

#main-menu .navbar-nav .nav-link {
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    padding-right: 29px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Roboto-Ligiht';
}

#main-menu .navbar-nav .nav-link.active,
#main-menu .navbar-nav .nav-link:hover {
    /* color: #E1A218; */
}

#main-menu .navbar-nav .nav-link.active::after,
#main-menu .navbar-nav .nav-link:hover::after {
    content: '';
    position: absolute;
    border-bottom: 4px solid #E1A218;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    color: #E1A218;
}

.dropdown-menu {
    /* background-color: #333333; */
    background-color: rgba(51, 51, 51, .75);
    color: #fff;
    border-radius: 0px;
}

.dropdown-menu .dropdown-item {
    color: var(--white);
    background-color: inherit;
}

.dropdown-menu .dropdown-item:hover {
    color: #E1A218;
    background-color: inherit;
}

.dropdown-menu li {
    position: relative;
    color: var(--white);
    padding-left: 6px;
    font-size: 13px;
    padding-top: 12px;
    font-family: 'Roboto-Regular';
}

.dropdown-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    border-bottom: 2px solid var(--white);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    color: var(--white);
}

/*Hero Banner*/
.hero-banner {
    position: relative;
}

.hero-banner-img {
    position: relative;
    aspect-ratio: 1/.6;
}

.hero-banner-img img {
    width: 100%;
    height: 100%;
    display: block;
}

.overlay-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for the desired transparency */
    pointer-events: none; /* Ensures the overlay doesn't interfere with user interactions */
}

.hero-banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: Montserrat-Bold;
}

.hero-banner-text h1 {
    font-size: 6vw;
}

.hero-banner-text h1:last-of-type {
    position: relative;
    margin-bottom: 6vw;
}

.hero-banner-text h1:last-of-type::after {
    content: '';
    position: absolute;
    background-color: var(--white);
    height: 3px;
    width: 15%;
    bottom: -1rem;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-banner-text .btn-admission {
    color: var(--gold);
    border: 3px solid var(--white);
    padding: .5rem 2rem;
    text-transform: uppercase;
}

.hero-banner-text .btn-admission:hover {
    color: #000000;
    background-color: var(--gold);
    border: 3px solid #EB1C23;
    padding: .5rem 2rem;
    text-transform: uppercase;
}

/*Spacing*/
.space-between {
    margin-top: 40px;
}

/*.commandant-image {*/
/*    aspect-ratio: 1/.85;*/
/*}*/

.commandant-image img {
    background-position: center;
    background-size: cover;
    /*height: 100%;*/
}

.commandant-message h2 {
    font-size: 52px;
    font-family: Montserrat-Bold;
}

.commandant-message p {
    color: var(--light-gray);
    font-size: 22px;
    font-family: Roboto-Regular;
    text-align: justify;
}

.commandant-name {
    text-align: right;
}

.commandant-name p {
    font-size: 20px;
    text-align: right;
}

.our-motto {
    aspect-ratio: 5/1;
}

.our-motto img {
    width: 100%;
    height: 100%;
}

.vision-mission-card {
    border-radius: 0;
    border: 0;
    height: 100%;
}

.vision-mission {
    display: flex;
    flex-direction: column;
}

.vision-mission h2 {
    font-size: 45px;
    text-align: center;
    margin: 2rem 0;
    font-family: Montserrat-Bold;
    text-transform: uppercase;
}

.vision-mission p {
    font-family: Roboto-Regular;
    font-size: 22px;
    text-align: justify;
}

.vision-mission-image {
    aspect-ratio: 1/.25;
    width: 165px;
    height: 160px;
    margin: 0 auto;
}

.vision-mission-image img {
    width: 100%;
    height: 100%;
}

.why-us {
    padding: 2rem 0;
    aspect-ratio: 1/.35;
    background-image: url("../img/why-lgcc.png");
    background-size: cover;
    color: var(--white);
}

.why-us ul li {
    font-size: 17px;
    margin-bottom: .5rem;
    font-family: Roboto-Regular;
}

.why-us ul li::marker {
    color: var(--golden-bg);
}

.why-us-border {
    position: relative;
}

.why-us-border h2 {
    font-family: Montserrat-Bold;
    font-size: 44px;
}

.faculty-staff h2 {
    font-family: Montserrat-Bold;
    font-size: 44px;
}

.why-us-border::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 80%;
    background-color: var(--golden-bg);
    top: 10%;
    right: -8px;

}

.location-details {
    text-align: center;
}

.location-details h3 {
    font-family: Kaushan;
}

.location-details h2 {
    color: var(--dark-gray);
    position: relative;
    display: inline;
    font-size: 54px;
    font-family: Montserrat-Bold;
}

.location-details h2::after {
    content: '';
    position: absolute;
    width: 60px;
    background-color: var(--golden-bg);
    height: 3px;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.location-details p {
    font-size: 22px;
    font-family: Roboto-Ligiht;
    text-align: justify;
}

.aca-logos {
    text-align: center;
}

.aca-logos img {
    width: 160px;
    height: 160px;
}

.what-we-do {
    text-align: center;
}

.what-we-do h3 {
    font-style: italic;
    font-size: 36px;
    font-family: Kaushan;
}

.what-we-do h2 {
    position: relative;
    font-size: 38px;
    font-family: Montserrat-Bold;
}

.what-we-do h2::after {
    content: '';
    position: absolute;
    width: 92px;
    background-color: var(--golden-bg);
    height: 5px;
    bottom: -32px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cadet-image {
    margin-top: 36px;
    aspect-ratio: 5/2;
}

.cadet-image img {
    width: 100%;
    height: 100%;
}

.map-image {
    aspect-ratio: 5/2;
}

.map-image img {
    width: 100%;
    height: 100%;
}

.people-says {
    background-image: url("../img/people-say.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
}

.people-says-heading {
    text-align: center;
}

.people-says-heading h3 {
    font-family: Kaushan;
}

.people-says-heading h2 {
    position: relative;
    font-size: 38px;
    font-family: Montserrat-Bold;
}

.people-says-heading h2::after {
    content: '';
    position: absolute;
    width: 92px;
    background-color: var(--gold);
    height: 4px;
    bottom: -32px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.people-designation {
    position: relative;
    display: inline-block;
    font-family: Roboto-Italic;
}

.people-designation::after {
    content: '';
    position: absolute;
    width: 100%;
    background-color: var(--gold);
    height: 3px;
    bottom: -10px;
    left: 0;
}

.people-details {
    font-family: Roboto-Regular;
    text-align: justify;
}

.people-details img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
}

.our-stories-heading {
    text-align: center;
}

.our-stories-heading h3 {
    font-family: Kaushan;
}

.our-stories-heading h2 {
    color: var(--dark-gray);
    position: relative;
    display: inline;
    font-size: 40px;
    font-family: Montserrat-Bold;
}

.our-stories-heading h2::after {
    content: '';
    position: absolute;
    width: 80px;
    background-color: var(--golden-bg);
    height: 3px;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.story-card {
    border: 0;
    border-radius: 0;
}

.story-image {
    width: 100%;
    position: relative;
}

.story-image img {
    aspect-ratio: 1.58/1;
}

.story-date {
    position: absolute;
    bottom: 20px;
    background-color: var(--light-blue);
    left: -10px;
    padding: 1rem;
    color: var(--white);
}

.story-date h6 {
    font-size: 24px;
    font-family: Montserrat-Bold;
}

.story-date p {
    font-size: 14px;
    font-family: Roboto-Italic;
}

.story-info {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #E5E5E5;
}

.story-info h5 {
    font-size: 16px;
    margin: .75rem 0;
    font-family: Montserrat-Regular;
}

.story-info p {
    font-size: 15px;
    color: var(--light-gray);
    font-family: Roboto-Regular;
}

.story-icons span {
    font-size: 13px;
    color: var(--light-gray);
    font-family: Roboto-Italic;
}

.story-icons .fa {
    color: var(--light-blue);
}

.square .news-event-banner img {
    height: 350px;
}

/* news and events detail  */
.news-detail .square img {
    float: left;
    margin: 5px;
    /* height: 350px; */
    padding-right: 15px
}

.news-detail p {
    text-align: justify;
    font-size: 25px;
}

.date-detail span {
    background-color: #a18f5e;
    border-radius: 20px;
    font-size: 25px;
    padding: 5px 20px;
    color: #fff
}

.single-post-comments {
    margin-top: 30px;
    margin-bottom: 60px;
    padding: 0 3%;
}

.single-post-comments img {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    float: left;
    margin: 5px 15px;
    border: 3px solid #efefef;
    padding: 8px
}

.media-body p {
    font-size: 16px !important;
    margin-top: 10px
}

.comment-meta h5 {
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 2px;
}

.comment-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 5px;
}

.btn-reply a {
    color: #888;
    font-size: 14px;
}

.btn-reply {
    margin-left: 10px;
}

/* academic year  */

.academic-banner {
    position: relative;
}

.academic-banner-img img {
    width: 100%;
    height: 100%;
}

.academic-banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: Montserrat-Bold;
}

.academic-banner-text .btn-admission {
    color: var(--gold);
    border: 3px solid var(--white);
    padding: .5rem 2rem;
    text-transform: uppercase;
}


.academic-content h2 {
    font-family: Montserrat-Bold;
    font-size: 35px;
    color: #333333;
    margin-top: 10px;
}

.academic-content p {
    color: #333333;
    font-size: 23px;
    margin-top: 10px;
    font-family: Roboto-Regular;
    text-align: justify;
}

.academic-content p span {
    color: #333333;
    font-size: 23px;
    font-family: Roboto-Bold;

}

/* admission  */
.table-responsive thead tr {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-responsive .table td, table th {
    border: 1px solid #dee2e6 !important;
    font-family: 'Roboto';
    font-size: 23px;
}

.admission-banner {
    position: relative;
}

.admission-banner-img img {
    width: 100%;
    height: 100%;
}

.admission-banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: Montserrat-Bold;
}

.admission-banner-text h2 {
    font-family: Montserrat-Bold;
    font-size: 35px;
}

.admission-banner-text .btn-admission {
    color: var(--gold);
    border: 3px solid var(--white);
    padding: .5rem 2rem;
    text-transform: uppercase;
}

.admission-content h2 {
    font-family: Montserrat-Bold;
    font-size: 35px;
    color: #333333;
    margin-top: 10px;
}

.admission-content p {
    color: #333333;
    font-size: 23px;
    margin-top: 10px;
    font-family: Roboto-Regular;
    text-align: justify;
}

.admission-content p span {
    color: #333333;
    font-size: 23px;
    font-family: Roboto-Bold;

}

.admission-content .ordered-list-content {
    font-size: 23px;
    font-family: 'Roboto-Regular';
}

.admission-content .ordered-list-content .circle {
    list-style: circle;
}

.admission-content .ordered-list-content .listed {
    list-style: decimal;
}

.admission-content .ordered-list-content-circle, .admission-content .ordered-list-content-listed {
    font-size: 23px;
    font-family: 'Roboto-Regular';
    color: #333333;
}

.admission-content .ordered-list-content-circle {
    list-style: circle;
}

.admission-content .ordered-list-content-listed {
    list-style: decimal;
}

.contact-us p {
    color: #333333;
    font-size: 23px;
    margin-top: 10px;
    font-family: Roboto-Regular;
}

.contact-us h2 {
    font-family: Montserrat-Bold;
    font-size: 35px;
    color: #333333;
    margin-top: 10px;
}

.contact-page input, textarea {
    padding: 10px 40px;
    width: 100%;
    font-family: 'Roboto-Regular';
    font-size: 20px;
}

.submit-message input {
    background-color: #707070 !important;
    border: 0px;
    border-radius: 10px;
    font-family: 'Roboto-Regular';
    font-size: 18px;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    border: 1px solid #707070;
    padding: 12px 10px;
}

.social-icons-contact ul li a {
    color: #707070 !important;
    font-size: 35px;
}

.social-icons-contact h2 {
    font-size: 35px;
    font-family: Montserrat-Bold;
    color: #333333;
}

.daily-routine-banner {
    font-family: Montserrat-Bold;
    font-size: 35px;
}

/*Footer*/
#footer {
    background-color: var(--light-blue);
    padding: 3rem 0;
}

#footer h3 {
    font-family: Roboto-Regular;
    font-size: 12px;
}

#footer .view-more {
    font-family: Roboto-Italic-Light;
}

.footer-image {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light);
}

.footer-image img {
    width: 80%;
    aspect-ratio: 3/1;
    margin-bottom: 2.5rem;
}

.footer-image p {
    font-size: 11px;
    font-family: Montserrat-Regular;
}

.footer-image p strong {
    font-size: 15px;
    font-family: Montserrat-Bold;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    color: var(--white);
}

.footer-social-icons p {
    font-family: Roboto-Italic;
}

.footer-social-icons .nav-link {
    color: var(--white);
    padding: 0 .5rem;
    font-size: 18px;
}

.footer-form .form-control {
    border: 0;
    border-radius: 0;
    font-size: 12px;
}

.footer-form .form-control::placeholder {
    font-family: Roboto-Italic;
}

.footer-form .btn-subscribe {
    background-color: #1B134B;
    color: var(--white);
    border-radius: 0;
    font-size: 12px;
    font-family: Montserrat-Bold;
}

.footer-upcoming-events {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-upcoming-events img {
    width: 210px;
    height: 90px;
    object-fit: cover;
    margin-right: .5rem;
}

.footer-upcoming-events .text {
    font-size: 10px;
    font-family: Roboto-Regular;
}

.footer-upcoming-events .date {
    font-size: 12px;
    font-family: Roboto-Regular;
}

.footer-gallery img {
    width: 100%;
}

.copy-right {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light);
    text-align: center;
    color: var(--white);
    font-family: Roboto-Regular;
    font-size: 12px;
}

#main-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media screen and (max-width: 1200px) {
    .why-us-border::after {
        right: 0;
    }
}

@media screen and (max-width: 992px) {
    #main-menu {
        position: relative;
        background-color: var(--golden-bg);

    }
}

@media screen and (max-width: 576px) {
    #main-menu .logo {
        max-width: 125px;
        max-height: 40px;
    }

    .commandant-message p {
        text-align: start;
    }

    .why-us-border::after {
        width: 0;
    }

    .commandant-message h2 {
        font-size: 35px;
    }

    .vision-mission h2 {
        font-size: 30px;
    }

    .vision-mission-image {
        width: 100px;
        height: 100px;
    }

    .people-details img {
        width: 75px;
        height: 75px;
    }

    .hero-banner-text h1:last-of-type::after {
        bottom: -8px;
    }

    .admission-content p {
        text-align: inherit;
    }

    .vision-mission p {
        text-align: left;
    }

    .location-details p {
        text-align: left;
    }

}

@media screen and (max-width: 768px) {
    .why-us-border::after {
        display: none;
    }

    .people-details {
        text-align: left;
    }

    .square .news-event-banner img {
        height: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .people-details {
        text-align: left;
    }
}

.glimpse-gallery img{
    width: 361px;
    height: 271px;
}

.glimpse-gallery img:hover {
    box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .5);
    transform: scale(1.02);
}

.glimpse-links .page-item.active .page-link{
    background: #a18f5e;
    border-color: #a18f5e;
    color: #dee2e6;
    font-family: Roboto-Regular;
}

.glimpse-links .page-link{
    color: #a18f5e;
    font-family: Roboto-Regular;
}
