:root
{
    --primary-color: #940000;
    --color-black: #000;
    --color-white: #fff;
    --color-dark: #222;
    --color-light: #f5f5f5;
    --gradient: linear-gradient(135deg, rgb(255, 58, 58), rgb(155 0 0));
    --gradient2: linear-gradient(135deg, var(--primary-color), var(--color-black));
    --gradient3: linear-gradient(135deg, var(--primary-color), #ff6f00);
    --transition-time: 0.3s;
    --gradient4: linear-gradient(0deg, var(--primary-color), #ffdada);
    --shadow-dark: 0 0 5px rgba(0,0,0,0.3);
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h2
{
    font-size: 1.8rem;
}
a, a:hover
{
    text-decoration: none;
}
ul
{
    list-style: none;
}
img
{
    max-width: 100%;
    display: block;
    object-fit: cover;
}
body
{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}
.btn,
.btn:focus
{
    outline: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    transition: var(--transition-time);
}
.light-bg
{
    color: black;
    background-color: var(--color-light);
}
.black-bg
{
    color: white;
    background-color: var(--color-black);
}
.dark-bg
{
    color: white;
    background-color: var(--color-dark);
}
.gradient-bg
{
    background-image: var(--gradient4);
}

.boldText
{
    font-weight: bold;
}

.btnPrimary
{
    color: white;
    font-weight: 500;
    background-image: var(--gradient);
}
.btnPrimary:hover
{
    color: white;
}
.btnPrimary.hoverShadow:hover
{
    box-shadow: 3px 3px 0px var(--color-black);
}



header
{
    font-weight: 500;
    position: relative;
    color: var(--primary-color);
    background-color: var(--color-light);
}
.mainHeader
{
    padding: 15px 20px;
}

.logo
{
    width: 80px;
    /* filter: hue-rotate(156deg) brightness(1.5) contrast(2.5); */
}
header h1
{
    font-weight: 700;
}
header p
{
    margin: 0;
    font-size: 0.84rem;
    color: var(--color-dark);
}
header b
{
    font-size: 0.9rem;
    color: var(--color-dark);
    font-weight: 900;
    letter-spacing: 0.3px;
}
.headerBottom
{
    color: var(--color-white);
    user-select: none;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-dark);
}
.headerBottomMenu
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.detailsBox,
.menuBtn
{
    display: none;
}
.headerLink
{
    cursor: pointer;
    position: relative;
}
.headerLink > a
{
    color: inherit;
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition-time);
    padding: 10px 12px;
}
.headerLink:hover > a,
.headerLink.active > a
{
    background-color: var(--color-black);
}


.dropdown > a
{
    padding-right: 30px;
    pointer-events: none;
    position: relative;
}
.dropdown > a::before
{
    content: "\f078";
    right: 12px;
    top: 50%;
    font-weight: 900;
    position: absolute;
    font-size: 0.8rem;
    transition: var(--transition-time);
    font-family: 'fontAwesome';
    transform: translateY(-50%) rotateX(0);
}
.dropdown.active > a::before
{
    transform: translateY(-50%) rotate(180deg);    
}
.dropdownMenu
{
    top: 100%;
    left: 0;
    padding: 5px;
    /* min-width: 150px; */
    width: 167px;
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: var(--shadow-dark);
    background-color: var(--color-white);
}
.dropdown.active .dropdownMenu
{
    display: block;
}
.dropdownLink
{
    display: block;
    padding: 5px 12px;
    color: var(--color-black);
    transform: var(--transition-time);
    border-bottom: 1px solid #efefef;
}
.dropdownLink:last-child
{
    border: none;
}
.dropdownLink:hover
{
    color: var(--color-white);
    background-color: var(--primary-color);
}







.main
{
    /* min-height: 100vh; */
    position: relative;
}
.homeSlider
{
    position: relative;
}
.homeSlide
{
    position: relative;
}
.homeSlider a
{
    display: block;
    height: 100%;
    width: 100%;
    color: inherit;
    position: relative;
}
.homeSlider img {
    width: 100%;
    display: block;
    aspect-ratio: 16/7;
}
.homeSlider a.btnPrimary
{
    width: max-content;
    margin: auto;
}

.auto-scrolling
{
    display: block;
    margin: 0;
    padding: 18px 0;
    background-color: var(--primary-color);
}
.auto-scrolling a
{
    margin-right: 80px;
    line-height: 1;
    font-size: 0.9rem;
    font-weight: 600;
    vertical-align: middle;
    color: var(--color-white);
    transition: var(--transition-time);
}
.auto-scrolling a:hover
{
    color: var(--color-black);
}

.auto-scrolling a::before,
.auto-scrolling a::after
{
    content: "\f005";
    margin: 0 5px;
    font-size: 0.75rem;
    vertical-align: middle;
    color: rgb(247, 184, 25);
    font-family: "fontAwesome";
}











.contentBox {
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    position: absolute;
    text-align: center;
    color: white;
    transform: translate(-50%, -50%);
    flex-direction: column;
    justify-content: center;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6), 0 0 5px rgba(0,0,0,0.4);
    background-color: none;
}

.contentBox h1
{
    color: white;
    font-size: 5.5vw;
    margin-bottom: 25px;
    font-family: cursive;
}
.paddedSection
{
    padding: 60px 0;
}
.informationCard
{
    height: 100%;
}
.imageBox {
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
    position: relative;
    background-color: var(--color-black);
    box-shadow: 5px 5px 0 var(--primary-color);
}
.imageBox img
{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.imageContent
{
    left: 0;
    bottom: 0;
    z-index: 1;
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
    position: absolute;
    background-color: rgba(0,0,0,0.7);
}
.imageTitle
{
    font-size: 1.3rem;
}
.imagePara
{
    font-size: 0.9rem;
    font-weight: bold;
}
.announcementContainer {
    height: 100%;
    /*color: var(--color-black);*/
    background-color: var(--color-white);
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
}
.announcementContainer.noticeBoard {
    color: white;
}
.announcementContent a {
    font-weight: 500;
    margin-bottom: 9px;
    font-size: 0.9rem;
    color: #dfdfdf;
}
.announcementContent a i {
    font-size: 62%;
    color: orange;
    vertical-align: middle;
}
.announcementContent a:hover {
    color: var(--color-white);
}
.announcementBox {
    border: 10px ridge #f6f6f6;
    border-radius: 6px;
    background-color: #15453f;
    box-shadow: 0 20px 16px -20px rgba(0,0,0,0.3);
}
.announcementHeading {
    padding: 8px 16px;
    font-size: 1.3rem;
    font-weight: 500;
    height: 50px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgb(255 255 255 / 5%);
    /*background-color: var(--color-white);*/
}
.announcementBody {
    padding: 16px;
    width: 100%;
    overflow-y: auto;
    aspect-ratio: 680/247;
    height: calc(100% - 50px);
}
.announcementBody::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: var(--color-light);
}
.announcementBody::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}
.announcementContent {
    display: flex;
    flex-direction: column;
}

.sectionHeading
{
    width: max-content;
    max-width: 100%;
    font-weight: 600;
    background-clip: text;
    color: var(--primary-color);
    -webkit-background-clip: text;
    background-image: var(--gradient2);
    -webkit-text-fill-color: transparent;
}
.black-bg .sectionHeading
{
    background-image: var(--gradient3);
}

.aboutImageContanier {
    height: 100%;
    position: relative;
}
.aboutImageContanier img {
    width: 100%;
    height: 100%;
    z-index: 7;
    aspect-ratio: 6 / 4;
    box-shadow: 5px 5px 0 var(--primary-color);
}


.whyChooseUs
{
    list-style: none;
}
.whyChooseUs li
{
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}
.whyChooseUs li::before
{
    line-height: 1;
    content: '\f005';
    font-size: 0.85rem;
    position: absolute;
    top: 5px;
    left: 0;
    background-clip: text;
    font-family: 'fontAwesome';
    -webkit-background-clip: text;
    background-image: var(--gradient2);
    -webkit-text-fill-color: transparent;
}





.aluminCardContainer {
    padding-bottom: 18px;
}
.aluminCard {
    width: 100%;
    color: black;
    aspect-ratio: 3 / 4;
    background-color: white;
    position: relative;
    transition: var(--transition-time);
}
.aluminCard:hover {
    box-shadow: 4px 4px var(--color-black);
}
.aluminImage {
    height: 100%;
    width: 100%;
    position: relative;
}
.aluminImage img{
    width: 100%;
    height: 100%;
}
.aluminOverlay {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    visibility: hidden;
    position: absolute;
    align-items: center;
    backdrop-filter: blur(3px);
    transition: var(--transition-time);
    background-color: rgba(0,0,0,0.5);
}
.aluminCard:hover .aluminOverlay{
    opacity: 1;
    visibility: visible;
}
.aluminShare {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.aluminShare a{
    height: 32px;
    width: 32px;
    margin: 5px;
    display: flex;
    font-size: 1.2rem;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-time);
    background-color: var(--color-white );
}
.aluminShare a:hover {
    color: white;
    background-color: var(--primary-color);
}
.aluminContent
{
    padding: 7px;
}
.aluminContent .name
{
    font-size: 1.2rem;
    font-weight: 600;
}
.aluminContent .designation
{
    font-size: 0.9rem;
}
.courseCardContainer {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 16px;
}
.courseCard {
    height: 100%;
    position: relative;
    color: var(--color-black);
    background-color: var(--color-white);
}
.courseTitle
{
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px;
    text-align: center;
    color: var(--primary-color);
}
.coursePara
{
    padding: 0 12px 12px;
    font-size: 0.9rem;
    font-weight: 500;
}
.overlayLink
{
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: var(--transition-time);
    background-color: rgba(255,255,255,0.7);
}
.overlayLink:hover
{
    opacity: 1;
}

/*

Achievement Section

*/
.achievmentSlider
{
    padding: 0 25px;
}
.achievementCardContainer {
    padding: 10px;
}
.achievementCard {
    display: flex;
    padding: 12px;
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
}
.achievementImage {
    width: 45%;
    display: flex;
}
.achievementContent {
    width: 55%;
    padding-left: 12px;
}
.achievementCard .name {
    font-size: 1.2rem;
    font-weight: 600;
}




/* 

reviewSection

*/
.reviewSection
{
    font-size: 1rem;
}

.googleLogo
{
    width: 100px;
    max-width: 100%;
    text-align: center;
    margin: auto;
}
.reviewStars
{
    width: max-content;
    display: flex;
    margin: 5px auto;
}
.reviewStars img
{
    width: 25px;
}
.reviewCard
{
    background-color: white;
    padding: 15px;
    position:relative;
    line-height: 1.4;
    transition: 0.5s;
    border-radius: 4px;
    margin: 10px;
    box-shadow: 1px 1px 7px 0px rgb(0 0 0 / 15%), 0px 0px 2px 0px rgb(0 0 0 / 5%);
}
.reviewCard:hover
{
    transform: translateY(-10px);
}
.reviewCard::before
{
    content: "";
    top: 10px;
    right: 10px;
    height: 28px;
    width: 28px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/googleG.svg");
    position: absolute;
}

.reviewProfile
{
    width: 45px;
    margin-right: 10px;
}
.reviewDate
{
    font-size: 12px;
    color: #666666;
}
.reviewCard .reviewStars
{
    padding: 5px 0;
    margin:0;
}
.reviewCard .reviewStars img
{
    width: 15px;
}
.verifiedTick
{
    margin-left: 5px;
}


.reviewText
{
    height: 90px;
    font-size: 0.9rem;
    overflow-y: auto;
}
.reviewText::-webkit-scrollbar{
	width: 4px;
	height: 4px;
}
.reviewText::-webkit-scrollbar-track
{
	background: #E0E0E0;
}
.reviewText::-webkit-scrollbar-thumb
{
    width: 5px;
    background-color: #929292;
}







.imagePopUp {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 100vh;
    display: none;
    padding: 60px 16px;
    position: fixed;
    overflow-y: auto;
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0.6);
}
.imagePopUp.show
{
    display: block;
}
.imagePopUp::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background-color: #efefef;
}
.imagePopUp::-webkit-scrollbar-thumb
{
    background-color: var(--primary-color);
}
.imagePopUpContainer
{
    position: relative;
    width: max-content;
    margin: auto;
    max-width: 100%;
}
.closeBtn
{
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    color: white;
    cursor: pointer;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: black;
    transition: var(--transition-time);
}
.closeBtn:hover
{
    background-color: red;
}
.imagePopUpImg
{
    width: 100%;
    position: relative;
}
.imagePopUpOverlay
{
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: var(--transition-time);
    background-color: rgba(255,255,255,0.7);
}
.imagePopUpOverlay:hover
{
    opacity: 1;
}




.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex !important;
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
    width: 360px;
    max-width: 100%;
    margin: auto;
}
.enquiryForm
{
    width: 100%;
}
.form-control
{
    border-radius: unset;
    margin-bottom: 7px;
}
.form-control:focus
{
    box-shadow: none;
}
.enquiryForm input:not([type="submit"]),
.enquiryForm textarea
{
    outline: none;
    font-size: 0.95rem;
}
.enquiryForm label
{
    margin: 0;
    line-height: 1;
    font-weight: 600;
    font-size: 0.89rem;
}
.enquiryForm input[type="submit"]
{
    width: max-content;
    margin: 15px auto 0;
    padding: 7px 25px;
    height: unset;
    display: block;
    letter-spacing: 1px;
}















































.slickNav
{
    width: 40px;
    top: 50%;
    z-index: 8;
    color: white;
    position: absolute;
    font-size: 25px;
    cursor: pointer;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.6);
    transform: translateY(-50%);
    text-shadow: 0 0 4px rgba(0,0,0,0.45);
}
.slickNav:hover
{
    background-color: rgba(0,0,0,0.9);
}
.navNext
{
    right: 0px;
}
.navPrev
{
    left: 0px;
}
.slickNav.review,
.slickNav.achievment
{
    color: #999;
    width: max-content;
    height: max-content;
    text-shadow: none;
    font-size: 1.2rem;
    background-color: unset;
}
.slickNav.review:hover,
.slickNav.achievment:hover
{
    color: #000;
}
.navNext.review
{
    left: 100%;
}
.navPrev.review
{
    left: unset;
    right: 100%;
}
.navNext.achievmentreview
{
    right: 12px;
}
.navPrev.achievment
{
    left: 12px;
}
.slick-dots
{
    display: flex;
    width: max-content;
    bottom: 10px;
    left: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transform: translateX(-50%);
}
.slick-dotted.slick-slider
{
    margin: 0;
}
.slick-dots li
{
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    background-color: white;
}
.slick-dots li.slick-active
{
    background-color: var(--primary-color);
}
.slick-dots li button::before
{
    display: none;
}


























footer {
    padding-top: 40px;
    background-color: var(--color-light);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.footerMain
{
    color: var(--color-black);
    padding: 12px 20px;
    min-height: 250px;
}
.footerMain p
{
    font-size: 0.8rem;
}
.footerLinksTitle
{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.footerLink
{
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
    color: inherit;
    transition: var(--transition-time);
}
.footerLink:hover
{
    color: var(--primary-color);
}
.socialIcons
{
    padding: 5px 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.socialIcon
{
    height: 28px;
    width: 28px;
    margin: 0 5px 0 0;
    display: flex;
    line-height: 1;
    font-size: 1rem;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    color: var(--primary-color);
    transition: var(--transition-time);
    background-color: var(--color-white);
}
.socialIcon:hover
{
    color: var(--color-white);
    background-color: var(--primary-color);
}
.copyright {
    color: var(--color-white);
    padding: 10px 20px;
    font-size: 0.7rem;
    background-color: var(--primary-color);
}
.copyright a{
    font-weight: 600;
    color: inherit;
}



.whatsappIcon
{
    position: fixed;
    left: 12px;
    bottom: 12px;
    width: 60px;
    height: 60px;
    z-index: 10000;
}
.whatsappIcon img
{
    width: 100%;
    height: 100%;
}





@media screen and (max-width: 1140px)
{}
@media screen and (max-width: 991px)
{
    .headerBottom
    {
        display: flex;
        justify-content: end;
    }
    .menuBtn
    {
        display: block;
        width: max-content;
        cursor: pointer;
        margin: 5px 0;
        padding: 5px 15px;
        border: 1px solid white;
        transition: var(--transition-time);
    }
    .menuBtn:hover
    {
        color: var(--color-black);
        background-color: white;
    }
    .headerBottomMenu {
        top: 0;
        left: 0;
        z-index: 10;
        width: 300px;
        height: 100vh;
        display: block;
        position: fixed;
        max-width: 100%;
        overflow-y: auto;
        transform: translateX(-100%);
        background-color: var(--light);
        transition: var(--transition-time);
        box-shadow: 1px 0 5px rgba(0, 0, 0, 0.27);
    }
    .headerBottomMenu::-webkit-scrollbar
    {
        width: 6px;
        height: 6px;
    }
    .headerBottomMenu::-webkit-scrollbar-thumb
    {
        background-color: var(--primary-color);
    }
    .headerBottomOverlay
    {
        content: "";
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9;
        position: fixed;
        backdrop-filter: blur(5px);
        transition: var(--transition-time);
        background-color: rgba(0,0,0,0.3);
    }
    
    .headerBottomMenu,
    .headerBottomOverlay
    {
        transform: translateX(-100%);
    }

    .headerBottom.open .headerBottomMenu
    {
        transition-delay: 0.2s;
        transform: translate(0);
    }
    .headerBottom.open .headerBottomOverlay
    {
        transform: translate(0);
    }
    .headerLink 
    {
        color: var(--color-black);
    }
    .headerLink.active, 
    .headerLink:hover
    {
        color: var(--color-white);
    }

    .dropdownMenu
    {
        padding: 0;
        width: 100%;
        position: static;
    }
    .detailsBox
    {
        display: block;
        padding: 0 50px 0 0;
    }
    .logoBox {
        padding: 15px 12px;
    }
    .headerMenuCloseBtn
    {
        top: 0;
        right: 0;
        height: 30px;
        width: 30px;
        display: flex;
        cursor: pointer;
        position: absolute;
        align-items: center;
        justify-content: center;
        color: var(--color-black);
        background: var(--color-white);
        transition: var(--transition-time);
    }
    .headerMenuCloseBtn:hover
    {
        color: white;
        background-color: red;
    }
    header h1 {
        font-size: 1.8rem;
    }
    .homeSlider img {
        width: 100%;
        aspect-ratio: 4 / 2;
    }
    
}
@media screen and (max-width: 768px)
{
    header .logo {
        width: 92px;
    }
    header h1 {
        font-size: 1.8rem;
    }
    header p {
        font-size: 0.72rem;
    }
    header b {
        font-size: 0.8rem;
    }
    .announcementBody {
        aspect-ratio: 680/360;
    }
    .informationCard {
        height: 100%;
        padding-bottom: 26px;
    }
}
@media screen and (max-width: 576px)
{
    header h1 {
        font-size: 5vw;
    }
    footer .logo {
        width: 100px;
    }
    .announcementBody {
        max-height: 350px;
        aspect-ratio: unset;
    }
    .aluminCard {
        aspect-ratio: 5 / 6;
    }
    .footerLinksTitle
    {
        margin: 15px 0 6px;
    }
    .reviewSlider
    {
        width: 85%;
        margin: auto !important;
    }
    .homeSlider img {
        aspect-ratio: 13 / 11;
    }
    
    .achievementCard {
        align-items: center;
        flex-direction: column;
    }
    .achievementImage {
        width: 85%;
    }
    .achievementContent {
        padding: 12px 0 0;
        width: 100%;
    }
    
    .whatsappIcon
    {
        width: 50px;
        height: 50px;
    }

}



@keyframes slideFromTop
{
    from
    {
        opacity: 0;
        transform: translateY(-100%);
    }
    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-text h1 {
    margin: 18px 0px;
    text-align: center;
    color: #fff;
    padding: 47px;
    text-shadow: 2px 2px rgba(0,0,0,0.6), 2px 2px 5px rgba(0,0,0,0.4);
}
.page-banner
{
    height:200px;
}

.bu {
  position: relative;
  background-color: #4CAF50;
  border: none;
  font-size: 28px;
  color: #FFFFFF;
  padding: 5px;
  width: 163px;
  border-radius: 5px;
  text-align: center;
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.bu:after {
  content: "";
  background: #f1f1f1;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px !important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s
}

.bu:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
}

.b
{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.bb h3
{
        margin: 0px;
}
.social
{
    display: flex;
    padding-bottom: 27px !important;
}
.pb
{
    /*border-bottom: 1px dotted;*/
    padding: 0px 0px 14px;
}
.social a
{
    margin: 0 14px 0 0;
}
.mb 
{
    padding: 4px 14px 0px;
}
.closse
{
        border: none;
    background: none;
    float: right;
    font-size: 18px;
}
.md
{
    width: 800px !important;
    max-width: 98% !important;
}
.b img
{
    width: 100%;
    padding: 12px;
}
.so
{
    justify-content: center;
}
.principalName
{
    text-align: center;
    margin: 9px 0px 5px;
}
.t th {
    padding: 0.35rem;
}
.t {
    font-size: 13px;
}
#principalPopup {
    z-index: 100000;
}
.about-v2 ul li,
.about-v2 ul {
    list-style: initial;
}
.about-v2 ol li,
.about-v2 ol{
    list-style: decimal !important;
}
.about-v2 ol,
.about-v2 ul {
    padding-left: 28px;
}
.about-v2 img {
    display: initial;
}
.about-v2 table td{
    padding: 6px 12px !important;
}
section.about-v2 {
    padding: 32px 0;
}
    .deans:hover {
            -webkit-box-shadow: 10px 10px 5px -4px rgba(245, 5, 33, 0.55);
            -moz-box-shadow: 10px 10px 5px -4px rgba(245, 5, 33, 0.55);
            box-shadow: 10px 10px 5px -4px rgba(245, 5, 33, 0.55);
            ;
            background: rgb(255,150,150);
            background: linear-gradient(90deg, rgba(255,150,150,1) 0%, rgba(226,130,130,1) 53%, rgba(255,123,130,1) 100%);

        }

