@import url(./global.css);
@import url(./navbar.css);
@import url(./news-scroll.css);
@import url(./tabber.css);
@import url(./table.css);

* {
    padding: 0;
    margin: 0;
    font-family: var(--main-font);
}

body {
    background-color: #fefffe;
}

a:hover {
    text-decoration: none !important;
}

.main-header {
    width: 100%;
    display: flex;
    /* border: 1px solid red; */
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* background: url(../image/back.png); */
    /* height: 6.2rem; */
}

.left-logo {
    width:7%;
    /* border: 1px solid; */
    padding: 10px 0;
}
.left-logo img {
    width: 100%;
    /* border: 1px solid; */
}

.middle-text {
    width: 70%;
    padding-right: 8rem;
    /* border: 1px solid; */
}

.middle-text h1 {
    font-family: var(--heading-font);
    color: #000000;
    font-size:2rem;
    /* margin: 0%; */
    margin: 0% 2%;
}

.middle-text span {
    font-family: var(--heading-font);
    color: #000000;
    font-size: 1.5rem;
}

.middle-text img {
    width: 100%;
    /* border: 1px solid; */
}

.last-icons {
    width: 45%;
    display: flex;
    /* border: 1px solid; */
    align-content: center;
    flex-wrap: nowrap;
    padding: .31rem;
    justify-content: space-evenly;
    align-items: center;
}

.last-icons img {
    width: 14%;
    cursor: pointer;
}

.first-navbar {
    /* height: 1rem; */
    /* border-bottom: 1px solid white; */
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;

}

.left-side-top {
    width: 90%;
    /* border: 1px solid; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.mobile {
    font-size: .825rem;
    color: #000000;
    font-weight: bold;
}

.mobile i {
    margin-right: 5px;
}

.mobile a {
    /* margin-right: .6rem; */
    color: black;
    /* font-weight: 600; */
}

.mobile a:hover {
    /* margin-right: .6rem; */
    text-decoration: none;
    color: black;
}

.right-side-top {
    display: flex;
    width: 50%;
    justify-content: flex-end;
    align-items: center;
    font-size: .825rem;
    color: #000000;
    font-weight: bold;
    gap: 30px;
}

.right-side-top a {
    text-decoration: none;
    color: #000000;
}

.right-side-top a:hover {
    text-decoration: none;
    color: #000000;
}

.right-side-top i {
    margin: 0 5px;
}

.headings {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--main-color);
    position: relative;
    width: fit-content;
    padding: 10px 0;
}

.headings::after {
    content: "";
    position: absolute;
    top: 90%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--active-color);
    width: 35%;
}

.facilitys {
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.facilitys .inner-image {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}


.inner-image img {
    width: 100%;
    transition: .5s ease;
}

.inner-image img:hover {
    scale: 1.1;
    cursor: pointer;
    transition: .5s ease;
}

.main-vsn {
    text-align: justify;
    text-indent: 100px;
    position: relative;
}

.main-vsn img {
    position: absolute;
    z-index: -1;
    top: -50%;
    scale: .5;
    opacity: .15;
}

.niat-btn {
    color: white;
    /* text-align: right; */
    background: var(--main-color);
    font-size: .85rem;
    width: 100%;
    border: 1px solid #d9d9d9;
    padding: 0.5rem 1rem;
    border-radius: 500px;
    transition: .3s;
}

.niat-btn:hover {
    color: white;
    text-align: right;
    background: #032b52;
    font-size: .85rem;
    text-decoration: none;
    width: 100%;
    border: 1px solid #d9d9d9;
    padding: 0.5rem 1rem;
    border-radius: 500px;
    scale: 1.05;
    transition: .3s;
}

.right-btn {
    width: 100%;
    text-align: right;
}

.inner-image a {
    width: fit-content;
}

.inner-image a:hover {
    width: fit-content;
}

.links-q {
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.link-main {
    width: 47%;
    padding: 0.5rem;
    /* border: 1px solid red; */
    background: linear-gradient(35deg, rgb(212 234 255) 50%, rgb(235 245 255 / 0%) 64%);
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    transition: .5s ease-in;
    border-radius: 600px;
    box-shadow: rgba(0, 0, 0, 0.15) -5px 3px 2.6px;
}

.link-main:hover {
    scale: 1.05;
    transition: .5s ease-in;
    cursor: pointer;
    /* background: linear-gradient(45deg, rgb(11 84 154) 100%, rgb(235 245 255 / 0%) 100%); */

}

.link-main img {
    width: 20%;
    /* border: 1px solid red; */
}

.link-main p {
    margin: 0;
    font-weight: bold;
    padding: 0 1rem;
    color: #464646;
}

.lists {
    /* border: 1px solid red;/ */
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-start;
    gap: 1.5rem;
}

.cource {
    border: 1px solid #e5e5e5;
    width: 100%;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* background-color: var(--main-color); */
    display: flex;
    padding: 1rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;

}

.deactivated-contents {
    position: absolute;
    top: 0%;
    width: 50rem;
    padding: 1rem;
    left: -125%;
    z-index: 99;
    transform: translateX(-50%);
    color: #fff;
    /* background-color: var(--main-color); */
    /* background: linear-gradient(to right, #ff0000, #0000ff); */
    padding: 20px 10px;
    border-radius: 3px;
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: visibility 0s, opacity 0.3s linear;
}

.cource:hover .deactivated-contents {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s linear;
}











.heading-c {
    font-size: 1.5rem;
    font-weight: bold;
    color: #165799;
    /* border: 1px solid; */
    position: relative;
    width: fit-content;
    padding: 6px 0;
}

.heading-c::after {
    content: "";
    position: absolute;
    top: 90%;
    left: 0;
    bottom: 0;
    right: 60%;
    background-color: #018081;
}

.heading-d {
    font-size: 1rem;
    font-weight: bold;
    color: #165799;
    /* border: 1px solid; */
    position: relative;
    width: fit-content;
    padding: 6px 0;
}

.heading-d::after {
    content: "";
    position: absolute;
    top: 95%;
    left: 0;
    bottom: 0;
    right: 70%;
    background-color: #018081;
}

.heading-e {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    width: fit-content;
    padding: 6px 0;
}

.heading-e::after {
    content: "";
    position: absolute;
    top: 90%;
    left: 0;
    bottom: 0;
    right: 60%;
    background-color: #018081;
}


.three-flor {
    overflow: hidden;
    width: 100%;
    padding: 5px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: left;
    flex-direction: column;
}

.main-grid-flor {
    border-radius: 5px;
    overflow: hidden;
    padding: 0.1rem;
    background: #e5f2f2;
    height: 9rem;
    width: 100%;
    overflow: hidden;
    margin: 10px 0px;
    border: 1px solid lightblue;
    display: flex;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.main-grid-flor img {
    width: 25%;
    margin: 1.5%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 1px solid lightblue;
}

.main-grid-box {
    /* border: 1px solid red; */
    width: 100%;
    padding: 5px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.main-grid-box a {
    border-radius: 5px;
    padding: 2px;
    background: #f2faff;
    border: 1px solid;
    width: 45%;
    height: 110px;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.main-grid-box img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.btn-desine {
    background: #165799;
    padding: 3px 15px;
    border-radius: 90px;
    color: white;
    display: flex;
    border: 0;
    justify-content: center;
    align-items: center;
    transition: .2s;
    /* font-size: .8rem; */
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.btn-desine i {
    margin-left: 10px;
}

.btn-desine:hover {
    background: #04294f;
    transition: .2s;
    scale: 1.02;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.arcives {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px;
    /* margin-bottom: 500rem !important; */
}

.arcives::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../image/Library.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.arcives::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: black;
    opacity: 0.7;
}

.main-box-a {
    z-index: 1;
    position: absolute;
    width: 97%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.single-box-a {
    width: 20%;
}

.single-box-a i {
    width: 6rem;
    margin: auto;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    font-size: 3rem;
    height: 6rem;
    background: white;
    color: var(--main-color);
    align-content: center;
    justify-content: center;
    align-items: center;
}



.single-box-a .name-a {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}











.boxes p {
    color: var(--main-color);
    font-weight: bold;
    margin: 0;
    font-size: .9rem;
}



.main-f {
    /* border: 1px solid red; */
    padding: 0.3rem 0;
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.single-f {
    text-decoration: none;
    width: 30%;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
    background-color: var(--light-background);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.4s ease;
}

.single-f img {
    width: 100%;
    height: 7rem;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #cdcdcd;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.single-f h2 {
    margin-top: 0.7rem;
    /* font-weight: bold; */
    text-align: center;
    font-size: 1rem;
    color: var(--main-color);
    /* font-family: var(--heading-font); */
}


.single-f:hover {
    text-decoration: none;
    scale: 1.05;
    transition: 0.4s ease;
    cursor: pointer;
}

.single-f::after {
    content: "+";
    z-index: 999;
    color: rgba(255, 255, 255, 0.658);
    font-size: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 100;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    transform: scale(0);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s ease;
    transform-origin: center;
    background-color: rgba(0, 0, 0, 0.503);
}

.single-f:hover::after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s, transform 0.5s ease;
}

.csd {
    border: 2px solid var(--main-color);
    background-color: var(--light-background);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.csd .carousel-item {
    width: 100% !important;
}

.csd .carousel-item img {
    width: 100% !important;

}

.carousel-caption {
    /* right: 0 !important;
    left: 0 !important; */
    /* width: fit-content; */
    background-color: #9a0b0bb7;
    backdrop-filter: blur(2px);
    padding: 1rem 2rem;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.carousel-caption p {
    font-style: italic;
    color: white;
    opacity: .9;
}

.footers {
    /* background: red; */
    /* height: 218px; */
    padding-top: 1rem;
    /* backgro
    backund: linear-gradient(to bottom, #072c50, #0b549a); */
    background:url(../image/94894176_10046189.jpg);
    background-size: 100% 100%;
    border-top: 1px solid var(--main-color);
}

.upper-footer {
    /* border: 1px solid red; */
    width: 90%;
    border-radius: 5px;
    display: flex;
    margin: auto;
    padding: 0 .5rem;
    flex-wrap: nowrap;
    flex-direction: row;
    background: #ffffffdb;
    justify-content: space-evenly;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.upper-footer h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--main-color);
    position: relative;
    width: fit-content;
    padding: 8px 20px;
}

.upper-footer h3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 90%;
    bottom: 0;
    background-color: var(--active-color);
    width: 5%;
}

.upper-footer p {
    font-size: 1.07rem;
}

.single-box-footer {
    width: 28%;
    border-right: 1px dotted rgb(77, 77, 77);
}

.single-box-footer:last-child {
    border: none;
}

.main-foter {
    display: flex;
    width: 100%;
    /* border: 1px solid white; */
    justify-content: space-evenly;

}

.left-f {
    width: 40%;
    /* border: 1px solid rgb(146, 255, 73); */
}

.middle-f {
    width: 35%;
    /* border: 1px solid rgb(146, 255, 73); */
}

.right-f {
    width: 28%;
    /* border: 1px solid rgb(146, 255, 73); */
}

footer .headings {
    color: white;
}

.map-data {
    width: 100%;
}

.quick-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 19rem;
}

.quick-links li {
    list-style: none;
    color: white;
    margin-bottom: 5px;
    width: 50%;
}

.quick-links a {
    text-decoration: none;
    color: white;
    transition: .3s ease;
}

.quick-links li:hover a {
    text-decoration: none;
    color: var(--active-color);
    margin-left: 5px;
    transition: .3s ease;
}

.quick-links li i {
    margin-right: 5px;
}

.main-footer-white {
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
}

.main-background-ft {
    background: var(--silver);
    width: 100%;
    /* height: 100%; */
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
}

.main-background-ft img {
    width: 30%;
}


.main-background-ft h3 {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #0b3f70;
    font-family: var(--heading-font);
}

.main-background-ft p {
    font-size: 1.1rem;
    text-align: center;
    color: #0b3f70;
}

.call-eamils {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    align-items: center;
}

.call-eamils a {
    color: white;
    background-color: var(--main-color);
    padding: 0.2rem 0.5rem;
    border-radius: 200px;
}

.call-eamils a:hover {
    text-decoration: none;
    color: white;
    background-color: var(--main-color);
    padding: 0.2rem 0.5rem;
    border-radius: 200px;
}

.call-eamils i {
    margin-right: 10px;
    /* border-right: 1px solid white; */
}

.socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
}

.socials a {
    color: var(--main-color);
    background-color: white;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    transition: .5s ease-in-out;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;

}

.socials a:hover {
    transition: .5s ease-in-out;
    text-decoration: none;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;

}

.real-footer {
    background: var(--active-color);
    display: flex;
    justify-content: space-around;
    font-size: .77rem;
    font-weight: bold;
    color: #000000;
}

.real-footer a {
    color: var(--main-color);
}


.custom-ul-li {
    list-style-type: none;
    padding: 0;
}

.custom-ul-li li {
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}

.custom-ul-li li:last-child {
    border-bottom: none;
}

.short-banner {
    position: relative;
    width: 100%;
}

.banner-short {
    width: 100%;
    border-bottom: 2px solid var(--main-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.short-banner p {
    position: absolute;
    z-index: 2;
    font-size: 1.5rem;
    top: 40%;
    font-weight: bold;
    color: #0d4a85;
    left: 50%;
    /* right: 34%; */
}




.glry-grid {
    /* border: 1px solid red; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: space-evenly;
}

.item {
    width: 250px;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    transition: .3s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    transition: .5s ease-in-out;
}

.item img {
    width: 100%;
    transition: .5s ease-in-out;
}

.item:hover img {
    scale: 1.05;
    transition: .5s ease-in-out;
}

.box_10 {
    position: absolute;
    width: 100%;
    height: 50%;
    display: flex;
    bottom: 0;
    background: linear-gradient(to bottom, #61809f00, #0b549a);
    text-align: center;
    color: white;
    padding: 10px;
    /* font-weight: bold; */
    font-size: 1.2rem;
    align-items: flex-end;
    justify-content: center;
    transition: .5s ease-in-out;
}

.item:hover .box_10 {
    height: 100%;
    transition: .5s ease-in-out;
    align-items: center;
}

.glry-grid a {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    width: 24%;
    height: 207px;
    border-radius: 10px;
    overflow: hidden;
}

.contacts {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.main-box {
    border: 1px solid rgb(187 187 187);
    /* position: relative; */
    width: 22%;
    height: 10rem;
    padding: 1rem;
    text-align: center;
    background-color: #ebfdff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.main-box h1 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    padding: 0.2rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: #0b549a;
}

.main-box p {
    font-size: .9rem;
    color: #072c50c4;
    text-align: center;
    font-weight: bold;
    font-style: italic;
}

.main-box a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.3rem 0.7rem;
    font-size: .8rem;
    border-radius: 300px;
    background-color: #0b549a;
    transition: .3s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.main-box a:hover {
    text-decoration: none;
    scale: 1.1;
    transition: .3s;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #073764;
}
.text-principal{
    color :white;
    font-weight: bold;
}

.principal-message {
    border: 1px solid #dddddd;
    padding: 0 10px;
    height: 308px;
    /* background: linear-gradient(to bottom, #73bffe 0%, #b4dbfe 50%, #73bffe 100%); */
    background-image: url(../image/24235983_6857399.jpg);
    background-size: 100% 100%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
}

.image-principal {
    position: absolute;
    width: 120px;
    height: 145px;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.637);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 0 0 5px 5px;
}

.image-principal img {
    width: 100%;
}

.principal-message h1 {
    color: #ffffff;
    margin: 4% 0 0 27%;
    font-size: 2rem;
    /* font-weight: bold; */
    font-family: var(--heading-font);
}

.desgination {
    font-size: 1.3rem;
    color: #f1f1f1;
    font-style: italic;
    font-family: var(--heading-font);
    margin: 1% 0 10% 27%;
}

.yellow-btn {
    text-align: center;
    padding: 5px 10px;
    border: 1px solid #221c00;
    background: linear-gradient(to bottom, #faab7f 0%, #f5cb6d 100%);
    color: black;
    border-radius: 300px;
    margin: 37%;
}

.icons-homepage {
    /* border: 1px solid red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.boxes {
    width: 40%;
    border-radius: 5px;
    height: 118px;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    background: var(--silver);
    background: var(--light-background);
    flex-direction: column;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
    transition: .3s ease-out;
    position: relative;
    overflow: hidden;
}

.boxes i {
    width: 60px;
    height: 60px;
    display: flex;
    background: white;
    color: var(--main-color);
    border-radius: 50%;
    border: 1px solid var(--main-color);
    padding: 1rem;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;

}

.boxes p {
    color: var(--main-color);
    font-weight: bold;
    margin: 0;
}

.boxes:hover {
    /* background-color:#1255b2 ; */
    border-bottom: var(--active-color);
    scale: 1.05;
    transition: .3s;
}

/* .boxes:hover p{
    color: #ffffff
} */
.boxes:hover::after {
    content: "";
    position: absolute;
    top: 95%;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--active-color);
}

.add-form {
    display: flex;
    flex-direction: column;
    border: 1px solid #b85454;
    padding: 10px 20px 0 20px;
    border-radius: 5px;
    background: #fffafa;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.add-form label {
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 0;
    font-size: .9rem;
}

.add-form input, select {
    width: 100%;
    border: 0;
    border: 1px solid #b9b9b9;
    border-radius: 5px;
    padding: 4px;
    margin-bottom: 5px;
    color: var(--main-color);
}

select {
    background-color: white;
    padding: 7px 4px;
}

textarea {
    width: 100%;
    border: 0;
    border: 1px solid #b9b9b9;
    border-radius: 5px;
    padding: 4px;
    margin-bottom: 15px;
    color: var(--main-color);
}

.add-form button {
    width: 150px;
    border: 0px solid var(--main-color);
    background-color: var(--main-color);
    color: white;
    border-radius: 5px;
    padding: 5px;
    margin: 20px auto;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; */
    transition: .3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.add-form button:hover {
    background: #500707;
    transition: .3s ease;
}

.main-profile {
    width: 100%;
    display: flex;
    /* border: 1px solid red; */
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    row-gap: 30px;
}

.main-card-placement {
    width: 300px;
    border: 1px solid #b5b5b5;
    height: 400px;
    border-radius: 10px;
    /* background-color: red; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* .main-profile .carousel-control-prev-icon {
    background: #1255b4 !important;
    padding: .5rem;
   
}
.main-profile .carousel-control-next-icon {
    background: #1255b4 !important;
    padding: .5rem;
   
} */
.card {
    /* --main-color: var(--main-color); */
    /* --submain-color: #f2db0b; */
    --bg-color: #f2faff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    position: relative;
    width: 200px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0px !important;
    overflow: hidden;
    border: 1px solid var(--main-color) !important;
    background: var(--bg-color) !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card__img {
    height: 125px;
    width: 100%;
}

.card__avatar {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(45% - 95px);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.card__title {
    margin-top: -20px;
    font-weight: bold;
    font-size: 1rem;
    color: var(--main-color);
}

.card__subtitle {
    margin-top: 5px;
    font-weight: 600;
    font-size: .8rem;
    font-style: italic;
    color: #1255b2db;
}

.card__wrapper {
    border: 1px solid #a5a5a5;
    margin-top: 10px;
    width: 70%;
    display: flex;
    width: 70%;
    /* border: 1px solid; */
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    justify-content: space-around;
    align-items: center;
    background: var(--silver);
    padding: 10px;
    height: 70px;
    flex-wrap: wrap;
}

.card__wrapper img {
    width: 100%;
}

.card__wrapper p {
    font-size: 1rem;
    color: #b91348;
    font-weight: bold;
}

.card__avatar img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

.highlights {
    /* height: 440px; */
    /* border: 1px solid rgb(0, 68, 255); */
    width: 100%;
    display: flex;
    gap: 3rem;
    /* overflow: hidden; */
    justify-content: space-between;
    flex-direction: column;
}

.highlights .main-box {
    width: 340px;
    height: 110px;
    /* border: 1px solid red; */
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.icons-hi {
    /* border: 1px solid red; */
    width: 30%;
    padding: 10px;
    background-color: var(--main-color);
}

.icons-hi img {
    width: 100%;
}

.right-hi {
    display: flex;
    width: 70%;
    /* border: 1px solid red; */
    padding: 13px;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.numbers {
    color: var(--main-color) !important;
    font-size: 1.6rem !important;
    font-style: normal !important;
    margin: 0%;
    border-right: 3px solid var(--main-color);
    padding-right: 10px;
}

.name-hi {
    font-style: normal !important;
    margin: 0%;
    /* font-size: 1.1rem !important; */
}


.marquee {
    display: flex;
    block-size: var(--marquee-item-height);
    /* margin-block: var(--marquee-item-height); */
    position: relative;
    overflow-x: hidden;
    mask-image: linear-gradient(to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.marquee img {
    object-fit: contain;
}

.marquee__item {
    position: absolute;
    transform: translateX(-50%);
    animation: go linear infinite;
}

.marquee__item:nth-child(4n) {
    border-top-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 1) {
    border-bottom-right-radius: 1rem;
}

.marquee__item:nth-child(4n + 2) {
    border-bottom-left-radius: 1rem;
}

.marquee__item:nth-child(4n + 3) {
    border-top-left-radius: 1rem;
}

@keyframes go {
    to {
        inset-inline-start: calc(var(--marquee-item-width) * -1);
    }
}


.boxes img {
    width: 40%;
}

.inner-header {
    width: 100%;
    border-bottom: 2px solid var(--main-color);
}

.inner-header img {
    width: 100%;
}

.page-navigation {
    width: fit-content;
    height: 40px;
    background: var(--greed-one);
    /* border-top: 1px solid white; */
    position: relative;
    /* font-weight: bold; */
    color: white;
    gap: 10px;
    display: flex;
    padding: 10px 10px 10px 2rem;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.page-navigation a {
    text-decoration: none;
    color: white;
    transition: .3s ease-in-out;
}

.page-navigation a:hover {
    text-decoration: none;
    color: white;
    transition: .3s ease-in-out;
    scale: 1.02;
}

.page-navigation:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 40px solid #9a0b0b;
    border-bottom: 20px solid transparent;
}

.events {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

.left-big-events {
    width: 49%;
    background: white;
    border: 1px solid #dbdbdb;
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.events h3 {
    color: var(--main-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.events i {
    color: var(--main-color);
    margin-right: 1rem;
}

.events h6 {
    color: #3e3e3e;
}

.events p {
    color: black;
}

.events a {
    color: darkred;
}

.image-width-events {
    width: 100%;
    height: 350px;
}

.image-width-events img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-events {
    width: 47%;
    display: flex;

    gap: 20px;
    flex-direction: column;
}

.bg-box {
    padding: 10px;
    width: 100%;
    background: white;
    border: 1px solid #dbdbdb;
    padding: 10px;
    display: flex;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    justify-content: space-between;
}

.image-boxes {
    width: 30%;
    /* border: 1px solid; */
    height: 126px;
}

.image-boxes img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-contents-event {
    width: 65%;
}

.right-contents-event h4 {
    color: var(--main-color);
    font-size: 1rem;
}

.right-contents-event h6 {
    font-size: 1rem;
}

.right-contents-event p {
    font-size: .8rem;
    margin: 0;
}

.right-contents-event a {
    font-size: .8rem;
    color: rgb(155, 0, 0);
}

.center-headings {
    font-size: 1.4rem;
    font-weight: bold;
    width: fit-content;
    color: var(--main-color);
    margin: 0 auto 10px;
    border-bottom: 5px solid var(--active-color);
    text-align: center;
    padding: 5px;
}

.image-border {
    padding: 10px;
    width: 100%;
    background: white;
    border: 1px solid #dbdbdb;
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.inner-page {
    margin-bottom: 2rem;
}


.weather-container {
    background-color: #dce3eaa3;
    padding: 10px;
    display: flex;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 100%;
    justify-content: space-around;
    align-items: center;
}

.weather-container img {
    width: 100px;
}

.temp {
    font-size: 1.4em;
    color: #094278;
    font-weight: bold;
}

.feels-like,
.temp-min-max {
    font-size: 1.1em;
    color: #363636;
}

.description {
    margin-top: 3px;
    font-size: 1.2em;
    color: #000000;
}

.description::first-letter {
    text-transform: uppercase;
}

.vsn-msn {
    position: relative;
    /* border: 1px solid #d5d5d5; */
    width: 500px;
    margin: 0 auto 5rem;
    background: linear-gradient(to bottom, #019f3a, #28b8ce);
    padding: 25px 25px 25px 50px;
}

.vsn-msn img {
    position: absolute;
    width: 130px;
    right: 91%;
    top: -10%;
}

.vsn-msn p {
    color: white;
    /* font-weight: bold; */
    font-size: 1rem;
}

.cources {
    width: 90%;
    display: flex;
    /* overflow: hidden; */
    margin: 0 auto 5rem;
    /* border: 1px solid red; */
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.single-courcebox {
    width: 250px;
    height: 170px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 1px solid #d9d9d9;
    position: relative;
    z-index: 1;
    transition: .5s ease-in-out;

}

.single-courcebox p {
    position: absolute;
    z-index: 2;
    width: 100%;
    color: white;
    margin: 0;
    height: 50%;
    bottom: 0;
    font-weight: bold;
    font-size: 1.2rem;
    padding-bottom: .5rem;
    display: flex;
    text-align: center;
    background: linear-gradient(to bottom, #61809f00, #0b549a);
    align-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    transition: .5s ease-in-out;
}

.single-courcebox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}

.single-courcebox:hover p {
    transition: .5s ease-in-out;
    height: 100%;
    /* font-size: 1.4rem; */
    background: linear-gradient(to bottom, #61809f00, #0b549a);
}

.single-courcebox:hover img {
    scale: 1.05;
    transition: .5s ease-in-out;
}

.hyper-link-box {
    border: 1px solid #1255b2;
    padding: 10px 20px;
    background: white;
    color: #004283;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: .3s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.hyper-link-box:hover {
    transition: .3s;
    text-decoration: none;
    color: white;
    background-color: var(--main-color);
}

.center-btn {
    width: fit-content;
    margin: 2rem auto 1rem;
}

.right-btn {
    width: fit-content;
    float: right;
    margin: 1rem 0rem;
}

.view-all-btn {
    font-size: .8rem;
    background: var(--main-color);
    color: #ffffff;
    font-weight: normal;
    border-radius: 400px;
    padding: 6px 15px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.view-all-btn:hover {
    background: #05224b;
    color: #ffffff;
}

.logo-flex-boxes {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 23px;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem 0 3rem;
}

.single-box {
    /* border: 1px solid #cdcdcd; */
    width: 130px;
    height: 100px;
    border-radius: 5px;
    background: white;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;

}

.single-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faculity-grid-profile {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0 5rem;
}

.single-profile-grid {
    width: 320px;
    height: 140px;
    border: 1px solid #dbdbdb;
    display: flex;
    border-radius: 5px;
    padding: 10px;
    background-size: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    background: url(https://projects.allindiaonline.in/cime.edu.in/images/light-blue-background.jpg);
    background-size: 100%;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.left-images {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border: 2px solid #1255b2;
}

.left-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-content-profile {
    width: 70%;
    padding: 0 0 0 10px;
    display: flex;
    /* border: 1px solid; */
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}

.right-content-profile h3 {
    font-size: 1.1rem;
    color: var(--main-color);
    font-weight: bold;
}

.right-content-profile p {
    font-size: 1rem;
    margin: 0;
    color: rgb(36, 36, 36)
}

.demo-gallery .main-f {
    justify-content: space-evenly;
}

.demo-gallery .single-f {
    width: 240px;
    height: 180px;

}

.demo-gallery .single-f img {
    height: 100%;
}

.news {
    /* border: 1px solid red; */
    width: 100%;
    margin: auto;
}

.news h1 {
    padding: 20px 0;
    text-align: center;
    color: var(--main-color);
    font-size: 40px;
    text-decoration: underline;
}

.news .news-grid {
    padding: 20px;
    /* border: 1px solid red; */
    display: grid;
    grid-template-columns: repeat(2, 550px);
    justify-content: space-evenly;
    align-items: start;
    row-gap: 28px;
}

.news .news-grid .news-box {
    background-color: white;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
        rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

.news .news-grid .news-box .news-sec-img {
    height: 300px;
    position: relative;
}

.news .news-grid .news-box .news-sec-img img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news .news-grid .news-box .news-sec-img p {
    position: absolute;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background-color: #071d3fb6;
    color: white;
    bottom: 10px;
    right: 0;
    padding: 15px 20px;
    font-weight: bold;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.news .news-grid .news-box .news-sec-con {
    padding: 10px;
    text-align: left;
}

.news .news-grid .news-box .news-sec-con h2 {
    color: var(--main-color);
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 10px;
}

.news .news-grid .news-box .news-sec-con p {
    color: rgb(44, 44, 44);
    text-align: justify;
    padding-bottom: 10px;
    line-height: 1.32rem;
}

.news .news-grid .news-box .news-sec-con p a {
    color: darkred;
    font-weight: bold;
}

.alumni-form {
    width: 100%;
}

.succ {
    border-top: 2px solid #090;
    border-bottom: 2px solid #090;
    color: #090;
    padding: 5px 0;
    width: 100%;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    background: #E0F9DF;
    margin: 5px 0;
}

.err {
    border-top: 2px solid #C30;
    border-bottom: 2px solid #C30;
    color: #C30;
    padding: 5px 0;
    width: 100%;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    background: #FDE9E8;
    margin: 5px 0;
}

.error {
    border-bottom: 3px solid #C30;
    color: #C30;
    padding: 15px 0;
    width: 100%;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    background: #FDE9E8;
    margin: 5px 0;
    font-size: 18px;
}

#msg {
    display: none;
    z-index: 99999;
    border: 2px solid #924949;
    position: absolute;
}

#msgcontent {
    display: block;
    background: #f3e6e6;
    padding: 5px;
    min-width: 150px;
    max-width: 250px;
    font-size: 12px;
    position: relative;
}

#msgimg {
    position: absolute;
    width: 37px;
    height: 7px;
    left: 0;
    top: -7px;
    background: url(../image/msg_arrow_top.png) no-repeat;
}

.contacts-2 {
    display: flex;
    /* border: 1px solid red; */
    justify-content: space-between;
    padding: 40px 0 80px;
}

.contacts-boxes {
    position: relative;
    width: 300px;
    background: #ade8f4;
    border-radius: 5px;
    padding: 30px 10px 10px 10px;
    display: flex;
    border: 1px solid #cbcbcb;
    flex-direction: column;
    align-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.contacts-boxes h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: bold;
    color: #424242;
}

.contacts-boxes p {
    font-size: 1rem;
    text-align: center;
}

.contacts-boxes img {
    position: absolute;
    width: 70px;
    height: 70px;
    top: -25%;
    left: 40%;
    object-fit: contain;
    background: #ade8f4;
    padding: 10px;
    border-radius: 50% 50% 0 0;
    border-top: 1px solid #cbcbcb;
}

.big-one {
    width: 400px;
}

#signup-form input[type=file] {
    box-shadow: none;
    border: none;
    color: #000;
    background: none;
    width: 100%;
    padding: 3px 5px;
    float: right;
    border: 1px solid #66a2c2;
    background: #fff;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    -moz-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
}

#signup-form {
    /* padding: 5px 10px; */
    font-size: 14px;
    font-weight: 600;
}

#signup-form .row {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}

#signup-form .row .label {
    float: left;
    width: 100%;
    margin-top: 10px;
    font-weight: bold !important;
}

#signup-form .row .label a, #signup-form .row .label a:visited, #signup-form .row .label a:link {
    color: #0066FF;
}

#signup-form .row .label span {
    font-size: 11px;
    font-weight: normal;
    color: red;
}

#signup-form .row .labelphoto {
    width: 50%;
}

#signup-form .row .labelcaptcha {
    width: 50%;
}

#signup-form .row .sbdetails {
    width: 65%;
}

#signup-form .row .sbattach {
    width: 35%;
}

#signup-form .row .col {
    float: left;
    width: 50%;
    font-weight: normal;
    padding-right: 15px;
    padding: 0;
}

#signup-form input[type=text], #signup-form input[type=password], #signup-form input[type=date] {
    box-shadow: none;
    border: none;
    color: #000;
    background: none;
    width: 100%;
    padding: 7px 10px;
    float: left;
    border: 1px solid #4dd0b9;
    background: #fff;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    -moz-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
}

#signup-form input[type=file] {
    box-shadow: none;
    border: none;
    color: #000;
    background: none;
    width: 96%;
    padding: 3px 5px;
    float: left;
    border: 1px solid #4dd0b9;
    background: #fff;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    -moz-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
}

#signup-form select {
    box-shadow: none;
    border: none;
    color: #000;
    background: none;
    width: 100%;
    padding: 6px 10px;
    float: left;
    border: 1px solid #4dd0b9;
    border-radius: 0;
    background: #fff;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    -moz-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
}

#captchaimg {
    border: 1px solid #4dd0b9;
    padding: 2px 0;
    margin-right: 15px;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    -moz-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
}

#signup-form .row .fname {
    width: 30%;
}

#signup-form .row .gender {
    width: 25%;
}

#signup-form .row .mname {
    width: 30%;
}

#signup-form .row .lname {
    width: 30%;
}

#signup-form .row .zip {
    width: 15%;
}

/*#signup-form .row .gender {
	width:15%;
}*/
#signup-form .row .degree {
    width: 33%;
}

#signup-form .row .dept {
    width: 60%;
}

#signup-form .row .course {
    width: 35%;
}

#signup-form .row .captcha {
    width: 14%;
}

#signup-form .row .captchaimg {
    width: 36%;
    font-size: 11px;
}

#signup-form .row .amount {
    width: 15%;
}

#signup-form .row .sbdate {
    width: 20%;
}

#signup-form .row .refno {
    width: 30%;
}

#signup-form .row .sbattach {
    width: 35%;
}

#signup-form .row .adds {
    width: 100%;
}

.day {
    width: 30% !important;
}

.month {
    width: 40% !important;
}

.yr {
    width: 30% !important;
}

#signup-form .row .rollno {
    width: 20%;
}

#signup-form .row .entrance {
    width: 20%;
}

#signup-form .row .dob {
    width: 30%;
}

#signup-form .row .gender {
    width: 25%;
}

#signup-form .row .cat {
    width: 25%;
}

#signup-form input[type=submit] {
    background: #0e0e66;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #000;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    margin: 0 auto;
}

#signup-form input[type=submit]:hover {
    background: #4dd0b9;
    border: 2px solid #16937d;
}

#signup-form p {
    color: #C00;
    text-align: right;
    font-style: italic;
    margin: 0;
    font-weight: normal;
}

.photo {
    width: 15% !important;
    float: right;
    border: 1px solid #CCC;
    min-height: 180px;
    overflow: hidden;
    /*background:#e4e6e7 url(../images/blank-profile.jpg) center no-repeat; */
    margin-top: 30px;
    position: relative;
    cursor: pointer;
}

#ProfilePhoto {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

#welcomeimg {
    width: 100%;
}

#changephoto {
    background: #666666;
    color: #FFF;
    padding: 5px 0;
    text-align: center;
    display: none;
    font-weight: 600;
}

#sign {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

#signimg {
    height: 100%;
    display: none;
    margin: 0 5px;
    max-width: 300px;
}

#changesign {
    background: #666666;
    color: #FFF;
    padding: 0;
    text-align: center;
    display: none;
    font-weight: 600;
}

.sign {
    border: 1px solid #666666;
    padding: 0 !important;
    margin-right: 10%;
    width: 40% !important;
    position: relative;
}

.custom-row-alumni {
    display: flex !important;
    justify-content: space-between !important;
    width: 85% !important;
    padding: 0 !important;
    gap: 10px !important
}

.text-alumni {
    width: 100% !important;
    height: 6rem;
    box-shadow: none;
    border: none;
    color: #000;
    background: none;
    padding: 7px 10px;
    float: left;
    border: 1px solid #4dd0b9;
    background: #fff;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    -moz-box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    box-shadow: 0px 0px 1px 0px rgba(126, 239, 219, 1);
    border-radius: 0;
}

form i {
    font-size: 1rem;
}

.quick-lists {
    width: 100%;
    display: flex;
    /* border: 1px solid red; */
    flex-direction: column;
    gap: 15px;
}

.quick-lists a {
    padding: 0.6rem 1.2rem 0.6rem 1.5rem;

    width: 100%;

    font-size: 1rem;
    border-radius: 300px;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    background: var(--greed-one);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.quick-lists a:hover {
    color: white;
    cursor: pointer;
    background: #092f53;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;

}

.captcha-desine {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.captcha-desine #captchaimg {
    border: 1px solid #b9b9b9;
    padding: 0;
    border-radius: 5px;
    margin-right: 0;
}


.acd-update {
    margin-bottom: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.acd-update img {
    width: 6%;
}

.acd-update p {
    width: 90%;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin: 0;
}

.acd-update p a {
    color: var(--main-color);
}

.faculty-grid {
    margin: 0;
    display: flex;
    grid-template-columns: repeat(4, 230px);
    gap: 15px;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.faculty-grid .faculty-grid-box {
    /* background-image: url(./asset/image/5333978.jpg) !important; */
    border-radius: 5px;
    background: #fffafa;
    display: flex;
    gap: 0px;
    width: 200px;
    /*height: 435px;*/
    max-height: fit-content;
    backdrop-filter: blur(1px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    /* border: 1px solid red; */
    padding: 5px;
    flex-direction: column;
}

.faculty-grid .faculty-grid-box img {
    width: 100%;
    min-height: 235px;
    max-height: 235px;
    border-radius: 5px;
    text-align: center;
    object-fit: cover;
}

.faculty-grid .faculty-grid-box h3 {
    text-align: center;
    font-weight: bold;
    margin: 5px;
    color: var(--main-color);
    font-size: 1rem;
}

.faculty-grid p {
    margin: 7px 0 0 0;
    font-size: .8rem;
    padding: 0 5px 0 0;
    line-height: .9rem;
    text-align: justify;
    /* overflow: hidden; */
    /* overflow-y: scroll; */
}

.faculty-grid h4 {
    text-align: center;
    font-size: .8rem;
    font-weight: bold;
}

.faculty-grid a {
    text-align: center;
    color: #ffffff;
    text-align: center;
    border-radius: 500px;
    font-size: .8rem;
    padding: 5px 10px;
    margin: 0 auto;
    width: 110px;
    display: flex;
    font-weight: bold;
    justify-content: space-between;
    background: var(--main-color);
    align-items: center;
    transition: .3s;
}

.faculty-grid a:hover {
    transition: .3s;
    color: white;
    background: #052e66;

}

.faculty-grid i {
    margin-top: 1px;
}

.faculty-grid h6 {
    font-size: .8rem;
    text-align: center;
}
.filters {
    width: fit-content;
    border-radius: 500px;
    /* text-align: right; */
    /* float: right; */
    padding: 5px 30px;
    background: var(--greed-one);
    /* border: 1px solid red; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.filters label {
    color: white;
     font-size: .9rem; 
    font-weight: bold;
}
.filters select {
    /* margin: 0; */
    border: none;
    border-radius: 500px !important;
    padding: 0 10px !important;
    height: 2rem !important;
    font-size: .9rem;
    margin-right: 10px;
}
.filters button {
    border-radius: 500px;
    height: 2rem; 
    font-size: .9rem; 
    font-weight: bold;
    color: #072d52;
    background: #f6b004;
    font-weight: bold;
    /* margin-top: 5px; */
    padding: 0 20px;
}
.filters button:hover{
    background: #412f01;
    color: white;
}