@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

:root {
    --main-color: #770000;
    --text-color: #b7b7b7;
    --content-text-color: #76767f;
}

/* Utility Styling */
.main-color {
    color: var(--main-color);
}

.btn-primary {
    background-color: var(--main-color);
    border: var(--main-color);
    border-radius: 1px;
    color: white !important;
    padding: 10px 30px;
}

.btn-primary:hover {
    background-color: #181818;
}

.btn-light {
    border-left: 5px solid var(--main-color);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 1px;
    transition: 0.25s;
}

.btn-light:hover,
.btn-light:focus {
    box-shadow: inset 9.5rem 0 0 0 var(--main-color);
    color: white;
    border-left: 5px solid white;
}

.btn-dark {
    border-left: 5px solid var(--main-color);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 1px;
    transition: 0.25s;
}

.btn-light:hover,
.btn-light:focus {
    box-shadow: inset 9.5rem 0 0 0 var(--main-color);
    color: white;
    border-left: 5px solid white;
}

.btn-dark:hover,
.btn-dark:focus {
    box-shadow: inset 13rem 0 0 0 var(--main-color);
    color: white;
    border-left: 5px solid black;
}

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

.heading {
    font-size: 50px;
}

.sub-heading {
    font-size: 25px;
}

.paragraph {
    font-size: 16px;
    color: var(--content-text-color);
    line-height: 2;
}

.sub-paragraph {
    font-size: 16px;
    color: var(--content-text-color);
    line-height: 2;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

.form-control,
.form-select {
    border-radius: 1px;
    padding: 15px 15px;
}

/* Header Styling */
.header-container {
    -webkit-box-shadow: 7px 2px 56px -17px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 7px 2px 56px -17px rgba(0, 0, 0, 0.41);
    box-shadow: 7px 2px 56px -17px rgba(0, 0, 0, 0.41);
}

.header .main-color {
    font-weight: 700;
}

.icons-container i {
    font-size: 20px;
    margin: 0 10px;
}

.menu-container {
    margin-top: 10px;
    display: none;
}

.menu-container ul {
    list-style: none;
}

.menu-container a {
    text-decoration: none;
    color: black;
}

.menu-container a:hover {
    border-bottom: 3px solid var(--main-color);
}

.menu-container a.active {
    border-bottom: 3px solid var(--main-color);
}

.social-container {
    margin-bottom: 10px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 100px;
}

.sidenav a {
    padding: 18px 0;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav a.active {
    color: white;
}

.sidenav .closebtn {
    position: absolute;
    top: 70px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.news-letter-container {
    padding: 60px 0;
    margin-bottom: 60px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: white;
}

.newsletter {
    padding: 30px;
}

.newsletter h4 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.newsletter .center {
    margin-top: 30px;
}

.news-letter-container .newsletter .btn-light:hover,
.news-letter-container .newsletter .btn-light:hover {
    box-shadow: inset 13rem 0 0 0 black;
}

.news-letter-container .newsletter .btn-light {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

/* Footer Styling */
.footer-container {
    background-color: #181818;
    color: white;
}

.footer-container .paragraph {
    font-size: 15px;
    color: white;
}

.footer {
    padding: 60px 0;
}

.footer-bottom {
    margin-top: 50px;
    background-color: #202020;
    padding: 30px 0;
}

.footer-bottom .paragraph {
    margin-bottom: 20px;
}

/* Services Styling */
.services-container {
    background-color: var(--main-color);
    padding: 60px 35px;
}

.service img {
    margin-bottom: 25px
}

.service h4 {
    font-size: 25px;
    color: white;
    margin-bottom: 25px
}

.service p {
    color: #b7b7b7;
    font-size: 16px;
}

.service .btn-light {
    border-left: 5px solid black;
}

.service .btn-light:hover,
.service .btn-light:focus {
    box-shadow: inset 12rem 0 0 0 black;
    color: white;
    border-left: 5px solid white;
}

/* Showcase Styling */
.showcase-container img {
    width: 100%;
    position: relative;
    filter: brightness(50%);
}

.showcase {
    padding-top: 120px;
    position: absolute;
    top: 1%;
    left: 3%;
}

.showcase h4 {
    font-size: 21px;
    font-weight: 700;
    color: white;
}

.showcase h1 {
    font-size: 40px;
    font-weight: 700;
    color: white;
}

/* Breadcrumb Styling */
.breadcrumbs {
    margin: 30px 0 70px 0;
}

.breadcrumbs a {
    color: #a0a0a0;
}

.breadcrumbs li.active {
    color: var(--main-color);
}

/* About Us Styling */
.aboutus {
    padding: 60px 20px;
}

.aboutus h3 {
    font-size: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--main-color);
}

.aboutus p {
    font-size: 16px;
}

/* Admission Styling */
.admission .admission-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.admission .admission-writeup-container .content {
    background-color: var(--main-color);
    padding: 50px 30px 30px;
}

.admission .admission-writeup-container .content h4,
.admission .admission-writeup-container .content p {
    color: white;
}

.admission .admission-writeup-container .content .btn-light {
    margin-top: 30px;
    border-left: 5px solid black;
}

.admission .admission-writeup-container .content .btn-light:hover,
.admission .admission-writeup-container .content .btn-light:focus {
    box-shadow: inset 12rem 0 0 0 black;
    color: white;
    border-left: 5px solid white;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1215px) {
    .icons-container {
        display: none;
    }

    .menu-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .btn-light {
        padding: 15px 40px;
    }

    .btn-light:hover,
    .btn-light:focus {
        box-shadow: inset 13rem 0 0 0 var(--main-color);
    }

    .btn-dark {
        padding: 15px 40px;
    }

    .btn-dark:hover,
    .btn-dark:focus {
        box-shadow: inset 20rem 0 0 0 var(--main-color);
    }

    .footer-bottom .paragraph {
        margin-bottom: 0 !important;
    }

    .newsletter h4 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
        max-width: 700px;
    }

    .showcase-container img {
        height: 500px;
        object-fit: cover;
    }

    .showcase {
        top: 30%;
    }

    .aboutus {
        padding: 30px 20px;
    }

    .aboutus h3 {
        padding-bottom: 5px;
        border: 0;
    }

    .admission {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .admission .admission-image img {
        width: 450px;
    }

    .admission-writeup-container {
        height: 450px;
    }

    .admission-writeup-container .content {
        height: 100%;
    }

    .news-letter-container .newsletter .btn-light {
        display: block;
        margin-top: 0;
    }
}