@font-face {
    font-family: "poppins_medium";
    src: url("../fonts/Poppins/Poppins-Regular.ttf");
}

:root {
    --msc-font-regular: "libre";
    --msc-font-bold: "libre_bold";
    --msc-font-medium: "poppins_medium";
    /* --msc-font-thin: "poppins_thin"; */
    --msc-font-italic: "libre_italic";
    /* --msc-font-extra-bold: "poppins_extra_bold"; */
    /* --msc-font-bold: "poppins_bold"; */
    /* --msc-font-black: "poppins_bold"; */
    /* --msc-font-extra-light: "poppins_extra_light"; */
    /* --msc-font-semi-bold: "poppins_semi_bold"; */
    /* --msc-source-regular:"poppins_regular"; */
    /* --msc-source-medium:"sourceMedium";
    --msc-source-bold:"sourceBold";
    --msc-source-semi-bold:"sourceSemiBold";
    --msc-source-extra-bold:"sourceExtraBold";
    --msc-source-light:"sourceLight"; */
    --msc-theme-dark: #000000;
    --msc-theme-light-text: #555555;
    --msc-theme-primary: #E7CF00;
    --msc-theme-secondary: #fdce87;
    --msc-theme-primary-hover: #4b8cdc;
    --msc-theme-blue: #1B3058;
    --msc-theme-blue-hover: #0a50a6;
    --msc-theme-purple:rgba(70, 77, 238, 0.1);
    --msc-theme-purple-hover:#464dee;
    --msc-theme-warning: #fad903;
    --msc-theme-warning-hover: #fcbe07;
    --msc-theme-info: #1574ab;
    --msc-theme-info-hover: #2981B4;
    --msc-theme-danger: #CB2128;
    --msc-theme-danger-logout: #ff2a1a;
    --msc-theme-danger-hover: #b4191e;
    --msc-theme-light-danger:#edb8ba6a;
    --msc-theme-success: #00a444;
    --msc-theme-success-hover: #059340;
    --msc-theme-light: #BBBDBF;
    --msc-theme-transparent: #ffffff00;
    --msc-bg-scheme-top-bar: #0c7ca5;
    --msc-theme-white: #fff;
    --msc-theme-orange:#F67A2F;
    --msc-toast-success: #008416d6;
    --msc-toast-danger: #c52f06ec;
    --msc-toast-warning: #ffd900ec;
    --msc-toast-primary: #078df4d4;
    --msc-theme-cyan:#0fb0f5;
    --msc-theme-light-grey:#FBFBFB;
    --msc-new-theme-primary:#7D0A05;
    --msc-btn-warning-gradient: linear-gradient(45deg, var(--msc-theme-warning), var(--msc-theme-warning-hover));
    --msc-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body,
html {
    overflow-x: hidden;
     font-family: var(--msc-font-regular); 
}


.msc-lib-img img{
margin:14px 15px 0px 0px !important;
}
.msc-library-text-content{
text-align:justify;
}
.msc-text-primary{
  color: var(--msc-theme-primary) !important;
}
.msc-bg-primary{
  background-color: var(--msc-theme-primary) !important;
}
.msc-black-bg{
  background-color: var(--msc-theme-dark) !important;
}
::selection {
    background: rgb(94, 202, 228);
    color: #151515;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
a{
    transition: all .3s var(--msc-transition);
    text-decoration: none;
    color: var(--msc-theme-dark);
    
}

p {
    margin: 0;
}

.msc-new-theme-bg{
    background-color: var(--msc-new-theme-primary) !important;
    }
    .msc-text-white{
        color: var(--msc-theme-white) !important;
    }
/* Toast */
.msc-toast-container{
    position: fixed;
    top: 0;
    width: 25%;
    right: 0;
    z-index: 9999;
    height: auto;
    /* background-color: var(--msc-theme-white); */
  }
  .msc-toast-container .msc-toast{
    background-color: #fff;
    margin: 10px;
    padding: 10px;
    z-index: 99999;
    position: relative;
    transition: all .3s var(--msc-transition);
    border-radius: 10px;
    box-shadow: 0px 0px .4rem #12121267;
  }
  .msc-toast-container .msc-toast .msc-toast-title{
    font-family: var(--msc-font-medium);
    color: #fff !important;
  }
  .msc-toast-title > h5{
  color: #fff;
  }
  .msc-toast-container .msc-toast.msc-toast-success{
    background-color: var(--msc-toast-success) !important;
    color: var(--msc-theme-white);
  }
  .msc-toast-container .msc-toast.msc-toast-danger{
    background-color: var(--msc-toast-danger);
    color: var(--msc-theme-white) !important;
  }
  .msc-toast-container .msc-toast.msc-toast-warning{
    background-color: var(--msc-toast-warning) !important;
    color: var(--msc-theme-dark);
  }
  .msc-toast-container .msc-toast.msc-toast-primary{
    background-color: var(--msc-toast-primary);
    color: var(--msc-theme-white);
  }
  .msc-toast-container .msc-toast.msc-toast-primary .msc-toast-close{
    color: var(--msc-theme-white);
  }
  .msc-toast-container .msc-toast.msc-toast-danger .msc-toast-close{
    color: var(--msc-theme-white);
  }
  .msc-toast-container .msc-toast.msc-toast-success .msc-toast-close{
    color: var(--msc-theme-white);
  }
  .msc-toast-container .msc-toast .msc-toast-close{
    position: absolute;
    right: 10px;
    top: 5px;
  }
  
  /* Toast */
  

.btn:focus, .btn:active{
    border-color: transparent !important;
}
.msc-font-bold {
    font-family: var(--msc-font-bold) !important;
}

.msc-font-medium {
    font-family: var(--msc-font-medium) !important;
}

.msc-font-regular {
    font-family: var(--msc-font-regular) !important;
}

.msc-font-thin{
    font-family: var(--msc-font-thin) !important;

}
.msc-font-italic{
    font-family: var(--msc-font-italic) !important;
}
.msc-font-extra-bold{
    font-family: var(--msc-font-extra-bold) !important;

}
.msc-font-bold{
    font-family: var(--msc-font-bold) !important;
}
.msc-font-black{
    font-family: var(--msc-font-black) !important;

}
.msc-font-semi-bold{
    font-family: var(--msc-font-semi-bold) !important;

}

.msc-font-patua{
    font-family: var(--msc-font-patua);
}
.msc-text-orange{
    color: var(--msc-theme-orange) !important;
}

.msc-text-theme-primary {
    color: var(--msc-theme-primary);
}

a.msc-text-theme-primary {
    color: var(--msc-theme-info);
}

.msc-text-theme-danger{
    color: var(--msc-theme-danger);
}

a.msc-text-theme-danger {
    color: var(--msc-theme-danger);
}

a.msc-text-theme-danger:hover {
    color: var(--msc-theme-danger-hover);
}

.msc-text-theme-danger {
    color: var(--msc-theme-danger);
}

.msc-text-theme-blue {
    color: var(--msc-theme-blue);
}

.msc-text-theme-warning {
    color: var(--msc-theme-warning);
}

.msc-text-theme-danger:hover {
    color: var(--msc-theme-danger-hover);
}

a.msc-text-theme-primary:hover {
    color: var(--msc-theme-primary);
}

.text-cyan{
    color: var(--msc-theme-cyan) !important;
}

/* MY BUTTONS */


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

/* Toast */
.msc-toast-container{
  position: fixed;
  top: 0;
  width: 25%;
  right: 0;
  z-index: 9999;
  height: auto;
  /* background-color: var(--msc-theme-white); */
}
.msc-toast-container .msc-toast{
  background-color: #fff;
  margin: 10px;
  padding: 10px;
  z-index: 99999;
  position: relative;
  transition: all .3s var(--msc-transition);
  border-radius: 10px;
  box-shadow: 0px 0px .4rem #12121267;
}
.msc-toast-container .msc-toast .msc-toast-title{
  font-family: var(--msc-font-medium);
  color: #fff !important;
}
.msc-toast-title > h5{
color: #fff;
}
.msc-toast-container .msc-toast.msc-toast-success{
  background-color: var(--msc-toast-success) !important;
  color: var(--msc-theme-white);
}
.msc-toast-container .msc-toast.msc-toast-danger{
  background-color: var(--msc-toast-danger);
  color: var(--msc-theme-white) !important;
}
.msc-toast-container .msc-toast.msc-toast-warning{
  background-color: var(--msc-toast-warning) !important;
  color: var(--msc-theme-dark);
}
.msc-toast-container .msc-toast.msc-toast-primary{
  background-color: var(--msc-toast-primary);
  color: var(--msc-theme-white);
}
.msc-toast-container .msc-toast.msc-toast-primary .msc-toast-close{
  color: var(--msc-theme-white);
}
.msc-toast-container .msc-toast.msc-toast-danger .msc-toast-close{
  color: var(--msc-theme-white);
}
.msc-toast-container .msc-toast.msc-toast-success .msc-toast-close{
  color: var(--msc-theme-white);
}
.msc-toast-container .msc-toast .msc-toast-close{
  position: absolute;
  right: 10px;
  top: 5px;
}

/* Toast */



/* TOPBAR */
.msc-college-sub-text-content{
    font-size: 20px !important;
}

.msc-college-sub-text-content{
    font-size: 25px;
}

.msc-header-contact-details-wrapper{
    display: flex;
    align-items: baseline;
}
.msc-header-top-bar-icons-wrapper{
  padding: 12px;
  /* border-right: 1px solid #fff; */
  /* transform: skew(-15deg); */
}
.msc-topbar-items {
  padding: 12px 75px;
  margin: 0px 12px;
}
.msc-topbar-news-wrapper{
position:relative;
color: var(--msc-theme-dark);
background-color: var(--msc-theme-primary) !important;
}
.msc-topbar-slider-text{
    color: var(--msc-theme-dark);
}
.msc-topbar-slider-text{
    padding: 12px 0px;
}
.msc-topbar-slider-text span{
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
}
.msc-topbar-news-wrapper::before {
    content: "";
    position: absolute;
    height: 200px;
    width: 103px;
    background-color: var(--msc-theme-primary);
    bottom: 0%;
    left: -12%;
    clip-path: polygon(65% 4%, 92% 37%, 95% 106%, 0% 100%);
}

.msc-topbar-news-wrapper::after {
    content: "";
    position: absolute;
    height: 100px;
    width: 132px;
    background-color: var(--msc-theme-primary);
    left: 25rem;
    bottom: 0rem;
    /* rotate: 120deg; */
}


/* SECONDARY */
.msc-topbar-contact-items{
    margin: 0px 10px;
}
.msc-secondary-topbar-socials a{
    margin:0px 7px;
}
.msc-topbar-contact-items-img{width: 30px;}
.msc-header-marquee-icon{
    width: 30px;
}
.msc-logo-header-section-news-slider{
    position: relative;
}
.msc-logo-header-section-news-slider::before {
    content: "Notice";
    color: var(--msc-theme-white);
    position: absolute;
    background-color: var(--msc-theme-danger);
    width: max-content;
    height: 20px;
    left: -18px;
    z-index: 123;
    top: 5px;
    padding: 0px 24px 23px 14px;
    transform: rotate(-41deg);
    border-radius: 11px;
}
.msc-secondary-topbar-contact-wrapper{
    display: flex;
    justify-content: space-evenly;
}
.msc-topbar-content-items-wrapper{
    padding: 5px 12px;
    margin: 0px 12px;
}
.msc-secondary-topbar-socials {
    display: flex;
    justify-content: flex-end;
    padding: 0 37px 0px 0px;
}
.msc-secondary-topbar-socials-img{
    width: 30px;
}
.msc-secondary-topbar-socials-img-yt{
    width: 30px;
    height: 20px;
}


.msc-header-main-logo-wrapper {
    display: flex;
    flex-direction: row;
    /* justify-content: flex-end; */
}
.msc-header-main-logo{
    width: 150px;
}

#msc-secondary-topbar{
    box-shadow: 1px 1px 1rem #eee;
}
/* SECONDARY */


/* Marquee Section */


.msc-logo-header-section-news-slider {
    max-height: 110px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(231 207 0) 0px 0px 0px 3px;
    border-radius: 12px;
    overflow: hidden;
    padding: 0px 26px;
}


/* Marquee Section */
/* Navbar */
.msc-resp-logo-header-navbar{
    display: none !important;
}
.msc-resp-navbar-contact-details{
    display: none !important;
}
#msc-header-nav-links{
    background-color: var(--msc-theme-blue);
    padding-bottom: 4px;
}
.msc-nav-links-wrapper{
    padding: 18px 18px 1px 18px;
}
.msc-nav-links-items{
    color: #FFF108 !important;
    padding: 18px 12px;
}


.msc-nav-links-items {
    padding: 11px;
    color: #FFF108 !important;
    text-decoration: none;
}
.dropdown {
    position: relative;
    display: inline-block;
}



.dropdown-content {
    display: none;
    position: absolute;
    color: #fff;
    background-color: #f2f8d5;
    min-width: max-content;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1234;
    top: calc(100% + 10px);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
    grid-template-columns: repeat(2, auto);
    grid-gap: 7px 14px;
    /* right: -22rem !important; */
    animation: slide-down 0.3s ease forwards;
}


/* Define keyframes for slide-down animation */
@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px); /* Start position above dropdown */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* End position at normal position */
    }
}

.dropdown:nth-last-child(-n+5) > .dropdown-content,
.dropdown:last-child > .dropdown-content {
    right: -5rem; 
}

    .dropdown-content .msc-dropdown-item {
    display: block;
    color: #213d85;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 14px;
}

    .dropdown-content .msc-dropdown-item:hover{
        background-color: var(--msc-theme-blue);
    }
    .dropdown-content .msc-dropdown-item:hover {
        background-color: var(--msc-theme-blue);
        color: #FFF108;
        border-radius: 5px;
    }
.msc-nav-links-items:hover + .dropdown-content,
.dropdown-content:hover {
    display: none;
    opacity: 1;
}

.dropdown-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.dropdown-content.active {
    display: grid; 
    opacity: 1;
}


.msc-nav-links-items:hover {
    transition: background-color 0.3s ease;
}

.dropdown:hover .dropdown-toggle {
    transition: background-color 0.3s ease;
}


/* Navbar */
/* TOPBAR */



/* Main-Section */

/* MODAL */
.msc-modal-body{
    padding: 0 !important;
    overflow-y: visible !important;
}
.msc-modal-close-btn{
    position: absolute;
    right: -1rem;
    top: -0.5rem;
}
/* MODAL */

/* QUICK-LINKS */
.msc-quick-links-wrapper {
    padding: 24px 12px 2px 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 12px;
    margin: 30px  0 12px 18px;
    background-color: var(--msc-theme-light-grey);
}

.msc-quick-links-items{
    padding: 12px 0px;
    border-bottom: 1px solid #ddd;
}
.msc-quick-links-items:last-of-type{
    border-bottom: none !important;
}
.msc-quick-link-title{
    font-size: 24px;
    font-weight: 900;
}

/* QUICK-LINKS */

/* BAnners */
.msc-banner-slider-main img{
    border-radius: 12px;
}
/* BAnners */



/* OUR Promise */

.msc-our-promise-wrapper {
    border-radius: 40px;
    background-color: hsl(0, 0, 90%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
}
 .msc-our-promises-icon{
    width: 100px;
 }
 .msc-promise-item{
    display: flex;
    justify-content: center;
    align-items: center;
 }

/* OUR Promise */


/* ALUMINI */
#msc-our-alumini-section{
    background-color: var(--msc-theme-blue);
}

.msc-alumini-section-wrapper{
    margin: 20px 0px 0px 0px;
}
.msc-alumini-header-wrapper {
    padding: 60px 0px 18px 0px;
}
.msc-our-alumini-sub-header{
    color: var(--msc-theme-white);
    font-weight: 700;
}
.msc-our-alumini-header{
    color: var(--msc-theme-white);
    font-weight: 700;
}
.msc-primary-btn {
    border: none;
    padding: 8px 10px 8px 12px;
    background-color: #fff301;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
}

.msc-alumini-box-wrapper {
    background-color: var(--msc-theme-white);
    padding: 8px 11px 15px 8px;
    margin: 12px;
    border-radius: 12px;
    /* min-height: 257px; */
    background: radial-gradient(35.36% 35.36% at 100% 25%,#0000 66%,#ffffff 68% 70%,#0000 72%) 10px 10px/calc(2*10px) calc(2*10px),
    radial-gradient(35.36% 35.36% at 0    75%,#0000 66%,#ffffff 68% 70%,#0000 72%) 10px 10px/calc(2*10px) calc(2*10px),
    radial-gradient(35.36% 35.36% at 100% 25%,#0000 66%,#ffffff 68% 70%,#0000 72%) 0 0/calc(2*10px) calc(2*10px),
    radial-gradient(35.36% 35.36% at 0    75%,#0000 66%,#ffffff 68% 70%,#0000 72%) 0 0/calc(2*10px) calc(2*10px),
    repeating-conic-gradient(#fbf6f6 0 25%,#0000 0 50%) 0 0/calc(2*10px) calc(2*10px),
    radial-gradient(#0000 66%,#ffffff 68% 70%,#0000 72%) 0 calc(10px/2)/10px 10px
    #fbf6f6;
    /* min-height: 380px; */
}

.msc-secondary-btn{
        padding: 9px;
        border: none;
        border-radius: 12px;
        color: #000;
        background-color: var(--msc-theme-orange);
        color: var(--msc-theme-white);

}
.msc-alumini-name-content{
    font-size: 20px;
    text-align: center;
    padding: 5px;
color: var(--msc-theme-blue);
text-transform: uppercase;
}
.msc-passing-year-text{
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 8px;
    border-radius: 15px;
}
.msc-alumini-image {
    border-radius: 12px;
    aspect-ratio: 4 / 4;
    max-height: 146px;
    object-fit: contain !important;
    width: 100% !important;
}

.msc-alumini-dummy-image {
    width: 100%;
    border-radius: 10%;
    height: 100%;
    object-fit: contain !important;
    aspect-ratio: 4/4;
}

.msc-institition-name {
    border: .5px solid var(--msc-theme-blue);
    font-weight: 800;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
    font-size: 16px;
    padding: 12px;
    background-color: var(--msc-theme-blue);
    border-radius: 13px;
    color: #fff;
}

.msc-alumini-image-wrapper {
    background-color: transparent;
    padding: 12px;
    border-radius: 16px;
    height: 150px;
    overflow: hidden;
}

/* ALUMINI */


/* DESK SECTION */
/* .msc-principal-director-section .container .row .col-md-6:first-child{
    position: relative;
}
.msc-principal-director-section .container .row .col-md-6:first-of-type::after{
position: absolute;
content: "";
background-color: #000;
left: 1rem;
bottom: 30px;
} */
.msc-principal-image-wrapper img{
    border-radius: 25px;
    width: 120px;
    aspect-ratio: 4/4;
}
.msc-principal-director-section .container .row > .col-md-6:nth-child(1){
    position: relative;
}
.msc-principal-director-section .container .row > .col-md-6:nth-child(1)::after {
    position: absolute;
    content: "";
    background-color: var(--msc-theme-orange);
    width: .5px;
    height: 12rem;
    right: 25px;
    bottom: 71px;
    border-radius: 8px;
}
.msc-principal-personal-wrapper{
    padding: 10px 0px;
}

.msc-principal-name {
    font-size: 16px;
    padding: 12px 0px 0px 0px;
}
.msc-principal-designation {
    font-size: 13px;
}   

.msc-profile-read-more-btn-wrapper{
    padding: 21px 0px;
}
/* DESK SECTION */


/* Campus Section */
.msc-campus-image{
    /* max-width: 100%;     */
    max-height: 300px;
    border-radius: 30px;
}
/* Campus Section */
/* Gallery */
.msc-gallery-about-wrapper .container .row > .col-md-6:nth-child(1){
    position: relative;
}
.msc-home-gallery-image-box{
        background-image: linear-gradient(#fcf0e1, #fff);
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 12px;
        border-radius: 12px;
        margin: 0px 0px 12px 0px;
        transition: .3s all;
    
}
.msc-gallery-about-wrapper .container .row > .col-md-6:nth-child(1)::after {
    position: absolute;
    content: "";
    background-color: var(--msc-theme-orange);
    width: .5px;
    height: 21rem;
    right: 0;
    bottom: -2px;
    border-radius: 8px;
}
.msc-gallery-image-title {
        font-size: 20px;
        text-overflow: ellipsis;
        overflow: hidden;
        text-wrap: nowrap;
    
}
.msc-gallery-wrapper{
    padding: 0px 12px 0px 0px;
}
.msc-home-gallery-image-box {
    text-align: center;
    margin: 20px 0px;
}
.msc-home-gallery-img{
    width:100%;
    max-height: 303px;
    border-radius: 18px;
}
#swiper-3{
    position: relative;
}
#msc-slider-next-btn {
    color: #fff301;

}
#msc-slider-prev-btn{
    color: #fff301;
    
}
/* Gallery */
/* Main-Section */



/* New  */


/* Footer */
.msc-footer-border-top{
    border-top: 4px solid var(--msc-new-theme-primary) !important;
}
.msc-footer-logo-content{
    margin: 12px 0px;
}

.msc-cts-gts-text {
    font-size: 24px;
    /* font-weight: 800; */
    padding: 24px 0px;
    /* -webkit-font-smoothing: smooth; */
    font-smooth: always;
}
.msc-get-socials-icons{
    margin: 14px 0px;
}
.msc-get-socials-text-icons-wrapper{
    display: flex;
    justify-content: end !important;
}
.msc-footer-icons {
    width: 30px;
    margin: 10px 5px;
}

.msc-footer-logo{
    width: 150px;
}

.msc-footer-links-items {
    padding: 4px 0px;
    margin: 3px 0px;
    font-size: 15px;
}

.msc-footer-links-wrapper{
    padding: 12px 0px;
}
.msc-footer-top-header{
    font-size: 24px;
}
.msc-footer-contact-icons{
 width: 25px;
}
.msc-footer-links-address-icon{
    /* width: 30px; */
}
.msc-footer-about-text-content{
    padding: 11px 0px;
}
.msc-footer-input{
    width: 100%;
    background-color: var(--msc-theme-light-grey);
    border: .5px solid var(--msc-theme-light-danger);
    outline: none;
    padding: 8px 8px;
    margin-bottom: 8px;
    transform: skewX(-24deg);
}
.msc-form-group-wrapper{
    position: relative;
}
.msc-footer-submit-btn{
    position: absolute;
    padding: 4px 5px;
    border: none;
    background-color: var(--msc-theme-orange);
    transform: skewX(-24deg);
    right: .5rem;
    top: 4px;
}

#msc-footer-input-section{
    border-bottom:8px solid var(--msc-theme-orange);
}

#msc-footer-msc-org-section{
    background-color: var(--msc-theme-dark);
    color: var(--msc-theme-white);
    padding: 12px;
    /* margin: 10px 0px 0px 0px; */
}

/* @media print{
    .msc-quick-links-wrapper{
        display: none;
    }
} */
/* Footer */

/* ABOUT US PAGE */
.msc-about-us-section-header{
    font-size:38px;
}
/* ABOUT US PAGE */


/* GALLERY PAGE */
.msc-gallery-page-img-main{
    border-radius: 15px;
    width: 300px;
    margin: 12px 0px 12px 18px;
}
.msc-gallery-images-wrapper{
    transform: translateY(-30px);
}
.msc-book-cat-box-warpper{
    background-color:#f1f1f1;
    padding: 12px 10px 12px 12px;
    margin: 12px 0px;
    border-radius: 12px;
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
}
.msc-book-cat-name{
    display: inline-block;
    margin-top: 10px;
}

.msc-cat-name-wrapper{
    display: flex;
    align-items: center;
}
.msc-qty-box-wrapper {
    text-align: right;
    width: max-content;
    padding: 11px 17px;
    /* color: var(--msc-theme-white); */
    border-radius: 30px;
    background-color: var(--msc-theme-primary);
}
/* GALLERY PAGE */


/* HERO */
.msc-hero-background {
    /* background-image: url("../../img/app/hero.jpg"); */
    background-blend-mode: lighten;
    background-color: #fffffff4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100 100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #000;
}
/* HERO */



/* E-Library_page */
.msc-subject-box-wrapper {
    background: linear-gradient(to bottom, #D5FAFD, #fff);
    padding: 0px 6px 7px 6px;
    margin: 24px 45px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: relative;
    transition: 0.4 ease-out;
    border-radius: 4px;
    min-height: 288px;
    border-radius: 19px;
    transition: 0.1s ease-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 185px 0px;
}
.msc-language-text{
    font-size: 36px;
    font-weight: 900;
}
.msc-subject-icons-box{
position: absolute;
top: -3rem;
left:7rem;
}

.msc-subject-icons {
    width: 120px;
}
.msc-subject-text-wrapper {
    padding: 15px 0px 50px 0px;
}
.msc-language-text{
    padding: 20px 0px;
}


#msc-subject-box:nth-child(odd) .msc-subject-box-bottom-links-wrapper{
    background-image: linear-gradient(to right, #F67A2F, #FA5959);
    border-radius: 15px;
}
#msc-subject-box:nth-child(even) .msc-subject-box-bottom-links-wrapper{
    background-image: linear-gradient(to right, #213D85, #3F5CA6 );
    border-radius: 15px;
}
.msc-main-link-wrapper{
    padding: 12px;
}
.msc-main-link{
    color: var(--msc-theme-white) !important;
}
/* E-Library_page */

/* NAAC  Page*/

.mac-search-bar{
    padding: 18px 0px 0px 0px;
}

#msc-naac-search-bar-input{
    width: 25%;
}
.msc-naac-table thead{
    background-color: var(--msc-theme-primary);
}

.msc-naac-table-wrapper{
    position: relative;
    z-index: 123;
    border-radius: 6px;
    /* background-color: #fff !important; */
}
.msc-naac-table-wrapper::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 45px;
    top: -10px;
    /* left: 0; */
    z-index: -123;
    bottom: 0;
    right: -12px;
    background-color: var(--msc-new-theme-primary);
    border-radius: 6px;
}
.msc-naac-table-wrapper::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 45px;
    /* top: 14px; */
    left: -1rem;
    z-index: -123;
    bottom: -11px;
    right: -12px;
    background-color: var(--msc-theme-blue);
    border-radius: 6px;
}
/* NAAC Page */




/* Contact us page */
.msc-contact-details-box {
    padding: 15px 17px;
    margin: 12px;
}
.msc-contact-page-icons{
    width: 30px;
    aspect-ratio: 4/4;
    margin: 2px 6px 2px 0px;
}
.msc-contact-details-main{
    /* font-size: 23px; */
}

.msc-contact-submit-btn{
    font-size: 16px;
    font-weight: 500 !important;
}
.msc-form-control {
    padding: 11px;
    border: 1px solid #c6c0c0;
    border-radius: 6px;
    outline: #c6c0c0;
    display: block;
    width: 100%;
    position: relative;
}
.msc-form-label{
    display: block;
    font-family: var(--msc-font-semi-bold) !important;
    color: var(--msc-theme-blue);
    margin: 8px 0px;
}
.msc-submit-btn{
    border: none;
    padding: 12px 12px 8px 12px;
    background-color: var(--msc-theme-orange);
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1.2px;
    font-family: var(--msc-font-regular) !important;
}

.msc-contact-us-wrapper{
    position: relative;
    z-index: 123;
    /* background-color: var(--msc-theme-white); */
}
.msc-contact-form-box-wrapper{
    background-color: var(--msc-theme-white);
    margin: 40px 0px;
    border-radius: 12px;
}
.msc-contact-us-wrapper::before {
    position: absolute;
    content: "";
    top: -1px;
    left: -1px;
    z-index: -123;
    height: 313px;
    width: 584px;
    background-color: var(--msc-theme-orange);
}

/* Contact us page */

/* Hamburger */
.msc-ham-burger{
    /* display: none; */
}
/* Hamburger */


/* GALLEY CATEGORY */
.msc-gallery-cat-dummy{
    width: 85%;
}
.msc-gallery-category-box-wrapper {
    background-image: linear-gradient(#fcf0e1, #fff);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 12px;
    border-radius: 12px;
    margin: 30px 6px 16px 6px;
    transition: .3s all;
    min-height: 323px;
}
.msc-gallery-category-box-wrapper:hover{
    transform: translateY(-12px);
}
.msc-gallery-category-name-title{
        font-weight: 600;
        font-size: 18px;
        /* color: var(--msc-theme-orange); */
        text-align: center;
}
.msc-orange-btn{
    padding: 12px;
    border-radius: 12px;
    /* background-image: linear-gradient(to right var(--msc-theme-orange), var(--msc-theme-white)); */
    background-color: var(--msc-theme-orange);
    color: #fff;
}
/* GALLEY CATEGORY */

/* Updates Page */
.msc-study-items-wrapper{
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    background-image: linear-gradient(#e1f2fc, #fff);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.msc-downloads-content-wrapper {
    display: flex;
    /* justify-content: space-evenly; */
    padding: 12px 0px;
}
.msc-e-rsc-content{
 padding: 12px;
 border-radius: 12px;   
    background-image: linear-gradient(#e1f2fc, #fff);
}
.msc-erc-box-bottom-links-wrapper{
        background-image: linear-gradient(to right, #F67A2F, #FA5959);
        border-radius: 15px;
        padding: 12px 12px 6px 12px;
        width: max-content;
}
.msc-erc-box-bottom-links-wrapper h5{
    color: #fff !important;
}
.msc-study-material-header {
  text-overflow: ellipsis !important;
  text-wrap: nowrap;
  overflow: hidden;
}

  .msc-download-now-image {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 20px;
    height: 100px;
    margin: 0px !important;
    text-align: center;
    display: flex;
    justify-content: center;
    
}
  .msc-download-now-image-main {
    
    padding: 6px;
}

.msc-study-material-header {
  font-size: 18px;
}

.msc-download-image-btn{
    text-align: center;
    padding: 6px 44px;
    width: 145px;
}
.msc-study-items-wrapper:hover{
  transform: translateY(-12px);
  transition: .5s all;
}

/* Updates Page */

/* Profile Page */
.msc-principal-img-wrapper {
    border-radius: 15px;
    width: 320px;
    height: 325px;
    overflow: hidden;
    border-radius: 50px;
    margin: 12px 6px;
}
.msc-princi-img-profile{
    width: 100%;
    aspect-ratio: 4/4;
}
/* Profile Page */


/* NAV-Pages */
.msc-nav-page-links-wrapper {
    padding: 12px 18px 4px 18px;
    margin: 12px;
    border: .5px solid #ddd;
    border-radius: 12px;
    background-image: linear-gradient(#fdf9f3, #fff);
    height: 120px;
}
.msc-nav-page-links-wrapper h3{
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
    color: var(--msc-theme-dark) !important;
    line-height:97px;
}

#ham-toggle{
    display: none;
}
/* NAV-Pages */

/* MEDIA QUERIES */
@media screen and (max-width: 760px){
    /*.msc-lib-img img{*/
    /*    margin:0 !important;*/
    /*}*/
    .msc-topbar-resp{
        display: none;
    }
    .msc-hroi-marquee-text{
        font-size: 12px !important;
    }
    .msc-hori-badge{
        padding: 5px !important;
        font-size: 12px;
        font-weight: 100 !important;
    }
    .msc-top-marquee{
        height: 35px !important;
    }
    .msc-hroi-marquee-text{
    
            display: inline-block;
            margin: 0px 10px 0px 0px;
            padding: 12px 8px 7px 0px !important;
            border-right: .5px solid #eee;
        
    }

    .msc-toast-container{
        position: fixed;
        top: 0;
        width: 75%;
        right: 0;
        z-index: 9999;
        height: auto;
        /* background-color: var(--msc-theme-white); */
      }
    .msc-resp-clg-name-navbar{
        padding: 0px 18px;
        font-size:15px;
    }
.msc-resp-logo-header-navbar span{
    font-size: 9px !important;
}

.msc-new-header::before {
    position: absolute;
    content: "";
    background-color: var(--msc-theme-blue);
    width: 60px;
    height: 3px;
    border-radius: 50px;
    left: 0.7rem !important;
    top: 0.65rem;
}
.msc-new-header::after {
    position: absolute;
    content: "";
    background-color: var(--msc-theme-blue);
    width: 60px;
    height: 3px;
    border-radius: 50px;
    right: 0.7rem !important;
    top: 0.65rem;
}
    .msc-resp-header-logo {
        display: inline-block;
        /* width: 100px; */
    }
    .msc-contact-form-box-wrapper {
        background-color: var(--msc-theme-white);
        margin: 40px 0px 0px 0px;
        border-radius: 12px;
    }
    .msc-links-banner-wrapper .container .row  .col-md-3{
        order: 2;
    }
    .msc-quick-link-title {
        font-size: 21px;
        font-weight: 900;
    }
    .msc-cat-name-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }
    .msc-banner-slider-main{
        height: auto !important;
    }
    .msc-banner-main-img{
        height: auto !important;
    }
    .msc-library-header{
        margin-top:0 !important;
    }
    .msc-resp-logo-header-navbar{
        display: flex !important;
    }
    .msc-vertical-notice-item{
        font-size: 10px !important;
    }
    .msc-marquee-badge{
        font-size: 12px;
        padding: 5px !important;
        font-weight: 100;
    }
    .breadcrumb-item {
font-size: 11px;
    }
    .msc-about-us-wrapper {
        text-align: justify;
    }
    .msc-logo-header-section-news-slider {
        max-height: 110px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(231 207 0) 0px 0px 0px 3px;
        border-radius: 12px;
        overflow: hidden;
        padding: 0px 20px;
        margin: 0px 0px 16px 0px;
    }
    .msc-header-main-logo-wrapper {
        margin: 1px 0px 10px 0px;
        display: flex;
        flex-direction: row;
        /* justify-content: flex-end; */
    }
    .msc-marqee-header{
        padding: 5px;
    }
    .msc-resp-navbar-contact-details{
        display: block !important;
    }
    /* .msc-topbar-news-wrapper{
     display: none;
    } */
    .msc-header-container-wrapper .container-fluid .row .col-md-4{
        padding: 0;
    }
    .msc-topbar-news-wrapper::before {
        content: "";
        position: absolute;
        height: 200px;
        width: 103px;
        background-color: var(--msc-theme-primary);
        bottom: 0%;
        left: -12%;
        clip-path: polygon(65% 4%, 92% 37%, 95% 106%, 0% 100%);
        display: none;
    }
    .msc-topbar-news-wrapper::after {
        content: "";
        position: absolute;
        height: 200px;
        width: 103px;
        background-color: var(--msc-theme-primary);
        bottom: 0%;
        left: -12%;
        clip-path: polygon(65% 4%, 92% 37%, 95% 106%, 0% 100%);
        display: none;
    }
    .msc-topbar-content-items-wrapper {
        padding: 5px 10px;
        margin: 0px 0px;
    }
    .msc-topbar-items{
        padding: 0 !important;
    }
    .msc-header-top-bar-icons-wrapper{
        border: none !important;
        text-align: center;
    }
    .msc-topbar-content-items-wrapper{
        display: flex;
    }
    .msc-topbar-contact-items-img{
        display: none;
    }
    .msc-topbar-contact-items{
        margin: 0 !important;
        font-size: 12px;
    }
    .msc-secondary-topbar-socials{
        display: none;
    }
    .msc-header-main-logo {
        width: 135px;
        aspect-ratio: 4/4;
        /* height: 66px; */
        object-fit: contain;
    }
    #msc-logo-header{
        padding:12px 0 !important;
    }
    .msc-header-contact-details-wrapper{
        flex-direction: row !important;
    }
    .msc-facebook-box{
        width:270px;
         height:550px;
         border:none;overflow:hidden; border-radius:20px;
    }
    .msc-header-main-college-name {
        font-size: 13px;
        margin-top: 0 !important;
    }
    .msc-college-sub-text-content-naac{
        font-size: 14px;
    }
    .msc-iso-certi-text{
        font-size: 9px !important;
    }
    .msc-header-contact-number{
        font-size: 12px;
    }
    .msc-header-email{
        font-size: 12px;
    }
    .msc-header-contact-number{
        margin: 2px 21px !important;
    }
    .msc-header-cont-det-main{
        display: flex !important;
        align-items: start;
        justify-content: flex-start !important;
    }
    .msc-college-sub-text-content{
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }

.msc-activity-inner-box{    
        padding: 0px 12px !important;
        border-top: 4px solid #FF8700;
        border-bottom: 4px solid #FF8700;
        border-right: .5px solid #eee;
        border-left: .2px solid #eee;
        /* padding: 12px 0; */
        border-radius: 25px;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}


.msc-activity-hub-box-icon-wrapper {
    background-image: url('../../img/app/icons.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 55px !important;
    margin: 12px;
}

.msc-activity-hub-box-title-wrapper {
    background-image: url('../../img/app/Vector.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 37px !important;
}

.msc-news-events-title-header {
    font-size: 16px !important;
}

.msc-view-more-btn {
    background-color: #fff;
    border-radius: 0;
    color: #000;
    padding: 12px;
    border: 0px;
    font-size: 11px;
}

.msc-news-event-title-wrapper {
    margin-top: 14px !important;
}


.msc-main-event-title {
    color: var(--msc-theme-blue) !important;
    font-weight: bold;
    font-size: 14px !important;
}

.msc-main-event-text-wrapper{
    font-size: 14px;
}
.msc-sub-event-text{
    color: var(--msc-theme-blue) !important;
    font-weight: bold;
    font-size: 12px !important;
}

.msc-footer-links-wrapper {
    margin: 12px 0px 0px 0px !important;
}

.msc-main-event-image img{
    min-height: auto !important;
}

#msc-news-events-section {
    background-color: #fff;
    background: linear-gradient(45deg, #C58784, rgba(125, 10, 5, 0.66), #CEA3A1);
    border-radius: 2px;
    border: 1px solid #eee;
    margin: 18px 0px !important;
}
.msc-footer-link-item {
    color: #fff;
    /* padding: 35px; */
    font-size: 23px;
    display: block;
    padding: 12px 1px !important;
}

.msc-svg {
    width: 30px !important;
    height: 30px !important;
}
.msc-activity-title {
    padding: 7px !important;
}
.msc-activity-hub-icon-parent i {
font-size: 22px !important;
}


    .msc-nav-links-items {
        display: block;
        color: black !important;
        border-bottom: 0.1px solid #375ab52b;
    }
    .msc-nav-links-wrapper {
        padding: 18px 0px 1px 0px;
    }
    .msc-navbar{
        padding:0 !important;
    }
    #msc-header-nav-links {
        transition: .3s all;
        z-index: 1234;
        left: -202%;
        position: fixed;
        top: 0;
        width: 80%;
    }
    #msc-header-nav-links {
        background-color: #ffffff;
    }
    .dropdown {
        position: relative;
        display: block;
        /* display: none; */
    }
    .msc-page-header{
            color: var(--msc-theme-orange);
            font-size: 15px;
        
    }
    .msc-page-wrapper {
        margin: 0px;
        padding: 19px 0px !important;
        text-align: justify;
        border-radius: 15px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .msc-date-notice{
        font-size: 14px !important;
    }
    .dropdown:hover .dropdown-content{
        display: none;
    }
    .msc-menu{
        left: 0% !important;
        transition: .3s all;
        z-index: 123;
        width: 80%;
        top: 0;
        height: 100vh !important;
        /* position: fixed; */
       }




       /* Hamburger */
  .msc-ham-burger {
    padding: 0px 0px 0px 0px;
}
  .visuallyHidden {
    position: absolute; 
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height: 1px; width: 1px; 
    margin: -1px; padding: 0; border: 0; 
}
.hamburger {
  margin: 0 auto;
  margin-top: 23px;
  width: 21px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.hamburger .bar {
  padding: 0;
  width: 21px;
  height: 1.5px;
  background-color: var(--msc-theme-dark);
  display: block;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  position: absolute;
}
.bar1 {
  top: 2px;
}

.bar2,
.bar3 {
  top: 9.5px;
}

.bar3 {
  right: 0;
}

.bar4 {
  bottom: 11px;
}

.checkbox1:checked + label > .hamburger1 > .bar1 {
    transform: rotate(45deg);
    transform-origin: 10%;
    width: 30px;
  }
  .checkbox1:checked + label > .hamburger1 > .bar2 {
    transform: translateX(-40px);
    background-color: transparent;
  }
  
  .checkbox1:checked + label > .hamburger1 > .bar3 {
    transform: translateX(40px);
    background-color: transparent;
  }
  
  .checkbox1:checked + label > .hamburger1 > .bar4 {
    transform-origin: 5%;
    transform: rotate(-45deg);
    width: 29px;
  }

.msc-quick-links-wrapper {
    padding: 24px 12px 2px 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 12px;
    margin: 24px  0 0px -2px;
    background-color: var(--msc-theme-light-grey);
}
.msc-principal-director-section .container .row > .col-md-6:nth-child(1)::after {
    position: absolute;
    content: "";
    background-color: var(--msc-theme-orange);
    width: .5px;
    height: 20rem;
    right: 3px;
    bottom: 0px;
    border-radius: 8px;
    /* display: none !important; */
}
#mscTableSearchBarContainer{
    width: 75% !important;
}
.msc-study-material-header {
    font-size: 12px;
}
.msc-study-material-date{
    font-size: 12px;
}
.msc-updates-download-now-wrapper h6{
    font-size: 12px;
    text-overflow: ellipsis !important;
    text-wrap: nowrap;
    overflow: hidden;
    
}
.msc-gallery-category-box-wrapper {
    background-image: linear-gradient(#fcf0e1, #fff);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 12px;
    border-radius: 12px;
    margin: 0px 0px 12px 0px;
    transition: .3s all;
    min-height: 225px;
}
.msc-gallery-image-content {
    height: 130px !important;
    aspect-ratio: 4/3;
}

.msc-gallery-image-title{
    font-size: 15px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
}
.msc-prev-next-btn {
    border: none;
    padding: 6px 6px !important;
    border-radius: 12px;
    background-color: var(--msc-theme-orange);
    color: #fff;
    font-size: 12px;
}
.msc-subject-icons-box {
    position: absolute;
    top: -3rem;
   left:9.5rem;
}
.msc-contact-details-box{
    padding: 6px !important;
    margin: 6px !important;
}
.msc-contact-details-main {
    font-size: 10px;
    padding: 8px 0px 0px 0px;
}
.msc-contact-page-icons {
    width: 24px;
    aspect-ratio: 4/4;
    margin: 2px 6px 2px 0px;
}
.msc-contact-details-main-address {
    font-size: 10px;
}
.msc-subject-box-wrapper {
    background: linear-gradient(to bottom, #D5FAFD, #fff);
    padding: 32px 6px 7px 6px;
    margin: 45px 0px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: relative;
    transition: 0.4 ease-out;
    border-radius: 4px;
    min-height: 288px;
    border-radius: 19px;
    transition: 0.1s ease-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 185px 0px;
}
.msc-subject-icons {
    width: 100px;
}
.msc-gallery-category-name-title {
    font-weight: 600;
    margin: 0 !important;
    font-size: 17px;
    /* color: var(--msc-theme-orange); */
    text-align: center;
}

.msc-cat-name-title-wrapper{

        padding: 12px 0 0px 0px !important;
    
}
.msc-banner-wrapper{
    margin: 12px 0px !important;
    padding: 0 !important;
}
#msc-our-promise-section{
    margin: 12px !important;
}
.msc-our-promise-header{
    margin: 12px !important;
    padding: 6px !important;
}
.msc-promise-item{
    display: flex;
    flex-direction: column;
}
.msc-alumini-header-wrapper{
   padding: 30px 0px 15px 0px !important; 
}
.msc-our-alumini-sub-header{
    display: inline !important;
}
.msc-our-alumini-header{
    display: inline !important;
}

.msc-alumini-box-wrapper {
    background-color: #f9f9f9 !important;
    padding: 14px;
    margin: 12px;
    border-radius: 12px;
    min-height: 257px;
    /* width: 138px; */
    margin: 12px 0px;
}
.msc-alumini-image {
    border-radius: 12px;
    /* max-width: 193px; */
    /* aspect-ratio: 4/4; */
    aspect-ratio: 3 / 3;
    /* max-height: 126px; */
    height: auto;
    width: 100% !important;
}
#msc-slider-next-btn {
    color: #fff301;
    display: none;
}
#msc-slider-prev-btn{
    display: none;
}
.msc-home-gallery-img{
    width:100%;
    max-height: 200px;
    border-radius: 18px;
}
.msc-about-us-content-wrapper{
        padding: 0 !important;
        text-align: justify;
        word-break: break-word;
}
.msc-institition-name {
    font-weight: 800;
    text-overflow: ellipsis;
    /* text-wrap: nowrap; */
    overflow: hidden;
    font-size: 13px;
}
.msc-alumini-name-content {
    font-size: 17px;
    text-align: center;
    padding: 5px;
    margin-bottom: 0 !important;
}
.msc-primary-btn {
    border: none;
    padding: 9px;
    background-color: #fff301;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
}
.msc-principal-text {
    text-align: justify;
    word-break: break-all;
    font-size: 10px;
}
.msc-desk-header {
    font-size: 14px;
    padding: 6px  11px 6px 0px!important;
    margin: 0 !important;
    /* text-align: left; */
    text-align: center !important;
    /* padding: 0 !important; */
}
.msc-view-more-alumni-wrapper {
    text-align: left !important;
    /* margin: 12px 0px !important; */
    padding: 4px 0px 11px 4px;
}
.msc-alumini-section-wrapper {
    padding: 0 !important;
}
.msc-main-text-content {
    padding: 0 !important;
    margin-top: 12px !important;
    text-align: justify;
    word-break: break-word;
}
.msc-principal-image-wrapper {
    text-align: center;
}
.msc-principal-name {
    font-size: 14px;
    padding: 12px 0px 0px 0px;
    text-align: center;
}
.msc-principal-designation {
    font-size: 13px;
    text-align: center;
}
.msc-profile-read-more-btn-wrapper {
    margin: 0 !important;
    text-align: center;
    padding:12px 0px 12px 0px ;
}
.msc-pop-up-modal-content{
        height: max-content;
        border: 0;
        border-radius: 0;
        margin-top: 93px;
        padding: 18px;
        background-color: transparent;
    
}
.msc-prinipal-personal-wrapper{
    text-align: center !important;
}
.msc-footer-contents-warapper .container-fluid{
    padding: 0 !important;
}
.msc-cts-gts-text {
    font-size: 18px;
    /* font-weight: 800; */
    padding: 12px 0px;
}
.msc-get-socials-text-icons-wrapper {
    display: flex;
    justify-content: start !important;
    display: none;
}
.msc-come-to-learn-wrapper{
    display: none;
}
.msc-footer-img-text-wrapper{
    padding: 12px;
}
.msc-footer-logo-content{
    font-size: 14px;
}
.msc-quick-link-about-us{
    padding: 12px 12px 0px 12px;
}
.msc-footer-links-wrapper{
    margin-bottom: 0px;
    padding-top: 0px;
}
.msc-footer-top-header{
    font-size: 18px;
}
.msc-footer-about-us-wrapper{
    padding: 0px 12px;
}
.msc-footer-about-text-content {
    padding: 0px 0px 8px 0px;
    font-size: 11px;
}
.msc-footer-input {
    width: 100%;
    background-color: var(--msc-theme-light-grey);
    border: .5px solid var(--msc-theme-light-danger);
    outline: none;
    padding: 4px 5px;
    margin-bottom: 8px;
    transform: skewX(-21deg);
}
.msc-btm-hkmv-name{
    text-align: center !important;
    font-size: 11px;
}
.msc-btm-msc-name{
    text-align: center !important;
    font-size: 11px;
}
}
/* MEDIA QUERIES */


/* Small Media Queries */
@media screen and (max-width: 1400px) and (min-width:768px){
    .msc-header-top-bar-icons-wrapper {
        padding: 9px;
        border-right:none;
        /* transform: skew(-15deg); */
    }
    .msc-topbar-items {
        padding: 12px 20px;
        margin: 0px 12px;
    }
    .msc-navbar{
        padding-left: 0 !important;
    }
    .msc-nav-links-items {
        padding: 6px;
        font-size: 15px !important;
        color: #FFF108;
        text-decoration: none;
    }
    
    .msc-principal-name {
        font-size: 14px;
        padding: 12px 0px 0px 0px;
    }
    .msc-footer-top-header {
        font-size: 18px;
    }
    .msc-header-main-college-name{
        font-size: 20px;
    }
    .msc-college-sub-text-content{
        font-size: 15px;
    }
    .msc-header-main-logo {
        width: 139px;
    }
    .msc-logo-header-section-news-slider {
        max-height: 86px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(231 207 0) 0px 0px 0px 3px;
        border-radius: 12px;
        overflow: hidden;
        padding: 0px 26px;
    }
    .msc-principal-director-section .container .row > .col-md-6:nth-child(1)::after {
        position: absolute;
        content: "";
        background-color: var(--msc-theme-orange);
        width: .5px;
        height: 12rem;
        right: 7px;
        bottom: 10px;
        border-radius: 8px;
    }
    .msc-passing-year-text {
        background-color: #000;
        color: #fff;
        display: inline-block;
        padding: 8px;
        border-radius: 15px;
        font-size: 10px;
    }

    .msc-gallery-about-wrapper .container .row > .col-md-6:nth-child(1)::after {
        position: absolute;
        content: "";
        background-color: var(--msc-theme-orange);
        width: .5px;
        height: 22rem;
        right: 0;
        bottom: 92px;
        border-radius: 8px;
    }
    .msc-about-us-content-wrapper{
        padding: 0 !important;
    }
    .msc-footer-links-items {
        padding: 4px 0px;
        margin: 3px 0px;
        font-size: 11px;
    }
    .msc-footer-about-text-content {
        padding: 11px 0px;
        font-size: 13px;
    }
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1183px;
    }
    .msc-gallery-about-wrapper .container .row > .col-md-6:nth-child(1)::after {
        position: absolute;
        content: "";
        background-color: var(--msc-theme-orange);
        width: .5px;
        height: 22rem;
        right: 0;
        bottom: 21px;
        border-radius: 8px;
    }

    .msc-sub-event-text {
        font-size: 10px !important;
        color: var(--msc-theme-blue);
        font-weight: bolder;
    }

}
/* Small Media Queries */