/* @import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200&display=swap');
* {

    font-family: 'Josefin Sans', sans-serif;
    font-weight: bolder !important;
}
.text-primary {
    color: var(--theme-color) !important;
}
.heading{
   color:var(--theme-color);
}
h3.heading {
    font-size: 20px;
    display: inline-block;
    padding: 3px;
    /* border-radius: 4px; */
    border-bottom:2px solid var(--theme-color);
    text-transform: uppercase;
}

.partician-line {
    border-left: 1px solid red;
}
a.active {
    color: var(--theme-color);
}
.btn-custom {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}
.btn-custom:hover,
.btn-custom:focus {
    background: var(--theme-color);
    color: #fff;
}
.btn-custom-invert {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff;
    text-decoration: none;
}
.btn-custom-invert:hover,
.btn-custom-invert:focus {
    background: #fff;
    color: var(--theme-color);
}
/*----Banner-Slider--*/
#bannerSlider .carousel-image-box {
    width: 100%;
    height: calc( 100vh - 30px );
    background-size: 100%;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#bannerSlider .carousel-image-box img {
    width:100%;
    /* height: 100%; */
    animation: zoomin 24s ease infinite;
}
@keyframes zoomin {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
      }
  }
#bannerSlider .carousel-image-box-caption {
    background: rgba(0,0,0,0.4);
    background: linear-gradient(to bottom, var(--theme-color) 0%, rgba(0,0,0,0) 30%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
    position: absolute;
    top: 0;
    left: 0;
}
#bannerSlider .carousel-image-box-caption h2 {
    font-size: 48px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    text-align: center;
}
#bannerSlider .carousel-image-box-caption h3 {
    font-size: 24px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.carousel-indicators button {
    background-color: var(--theme-color) !important;
}
#bannerSlider .carousel-control-next-icon,
#bannerSlider .carousel-control-prev-icon {
    background:  var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
@media screen and (max-width: 1100px) {

#bannerSlider .carousel-image-box {
    height: auto !important;
}

#bannerSlider .carousel-image-box-caption h2 {
    font-size: 20px;
}
#bannerSlider .carousel-image-box-caption h3 {
    font-size: 16px;
}

}
/*----Banner-Slider--*/
/*----Menu-Bar--*/
.header {
    position: relative;
}
.top-fixed {
    position: fixed !important;
}
.top-menu {
    display: flex;
    align-items: center;
    position: absolute;
    padding:0 15px;
    padding-top: 10px;
    top: 0;
    left: 0;
    z-index: 9;
}
.school-logo img {
    width: 100px;
    height: 100px;
    margin: 0 15px;
}
.menu-list-left,
.menu-list-right {
    flex-grow: 1;
}
.menu-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
}
.menu-list-right ul {
    justify-content: start;
}
.menu-list ul li {
    /* display: flex;
    flex-direction: column; */
    position: relative;
}
.menu-list ul li a {
    display: block;
    padding: 4px 8px;
    /* color: var(--theme-color); */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}
.menu-list ul li a:hover {
    color: #fff;
    background: rgba(0,0,0,0.5);
}
.menu-list ul li a i {
    margin-left: 5px;
}
.menu-list ul ul {
    display: none;
    position: absolute;
    width: 200px;
    background: #fff;
    border-radius:10px;
    z-index: 5;
}
.menu-list ul ul li {
    display: block;
    width: 100%;
    z-index: 10;
    /* text-transform: capitalize !important; */
    text-transform: uppercase;
}
.menu-list ul ul li a {
    color: #000;
    border-radius: 0;
}
.menu-list ul ul li a:hover {
    color: #fff;
    background: var(--theme-color);
}
.top-menu-mobile {
    display: none;
}
.close-btn {
    display: none;
}

/*---------Top bar login Button -------------*/
.top-login-btn{
    border: 2px solid;
    padding: 2px 6px 2px 7px;
    border-radius: 7px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    cursor: pointer;
}
.top-login-btn:hover{
    border: 2px solid;
    padding: 2px 6px 2px 7px;
    border-radius: 7px;
    font-size: 14px;
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 767px) {

.top-menu {
    background: #fff;
    display: block;
    padding: 0;
    position: fixed;
    left: auto;
    right: 0;
    width: 250px;
    height: 100vh;
    margin-right: -250px;
    z-index: 99;
    transition: 0.2s;
    overflow: auto;
}
.menu-list ul {
    display: block;
}
.menu-list ul li a {
    border-bottom: 1px solid #ccc;
    color: #333;
    border-radius: 0;
}
.menu-list ul ul {
    position: relative;
    width: 100%;
}
.school-logo {
    display: none;
}
.close-btn {
    display: block;
}
.overlap {
    background: rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 98;
    display: none;
}
.top-menu-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding-top: 10px;
}
.school-logo-mobile img {
    width: 60px;
    height: 60px;
}

}
/*----Menu-Bar--*/
/*----Event-Box----*/
.event-box {
    width: 100%;
    height: 250px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    background-size: 110%;
    background-position: center center;
    transition: 0.5s;
    position: relative;
}
.event-box:hover {
    background-size: 115%;
}
.event-upper {
    background: rgba(0,0,0,0.1);
    /* flex-grow: 1; */
    padding: 5px 5px 0px;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    /* padding: 5px; */
    border-radius: 6px 6px 0 0;
}
.event-date {
    background: var(--theme-color);
    color: #fff;
    /* position: absolute; */
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 15px;
    font-size: 14px;
}
.event-date:first-child {
    margin-left: 0;
}
.event-lower {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 80%);
    padding: 5px;
    /* padding-top: 50px; */
    border-radius: 0 0 6px 6px;
}
.event-lower-2 {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 80%);
    padding: 5px;
    border-radius: 0 0 6px 6px;
    height: 180px;
    overflow-y: auto;
}
.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}
.event-title a {
    color: #fff;
    text-decoration: none;
}
.event-description {
    color: #fff;
    text-align: justify;
}
.event-link {
    background: rgba(0,0,0,0.1);
    display: block;
    width: 100%;
    height: 100%;
}
.sub-galley-box {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: column; */
    /* justify-content: flex-start; */
    /* flex-wrap: wrap; */
}
/* .sub-galley-box .event-box
 {
    border-radius: 0;
}
.sub-galley-box .event-box:nth-child(1),
.sub-galley-box .event-box:nth-child(1) .event-link {
    border-radius: 6px 0 0 0;
}
.sub-galley-box .event-box:nth-child(2),
.sub-galley-box .event-box:nth-child(2) .event-link {
    border-radius: 0 6px 0 0;
}
.sub-galley-box .event-box:nth-child(3),
.sub-galley-box .event-box:nth-child(3) .event-link {
    border-radius: 0 0 0 6px;
}
.sub-galley-box .event-box:nth-child(4),
.sub-galley-box .event-box:nth-child(4) .event-link {
    border-radius: 0 0 6px 0;
} */
@media screen and (max-width:1000px) {
.event-box {
    width: 100% !important;
}
}
/*----Event-Box----*/
/*----Imp-Dates----*/
#impDatesSlider {
    height: 250px;
    overflow: auto;
}
.imp-dates-wrapper {
    /* background: red; */
    /* border-bottom: 1px solid #000; */
    display: flex;
    align-items: flex-start;
}
.imp-dates-wrapper:first-child {
    margin-bottom: 20px;
}
.imp-dates-date {
    background: var(--theme-color);
    padding: 5px;
    /* outline: 10px solid var(--theme-color); */
    margin: 10px;
    /* border: 2px dashed #fff; */
    color: #fff;
    text-align: center;
    line-height: 0.6cm;
    border-radius: 6px;
    flex-shrink: 0;
}
.imp-dates-day {
    font-size: 18px;
}
.imp-dates-details {
    padding: 0 10px;
    width: 100%;
}
.imp-dates-title {
    font-size: 16px;
}
.imp-dates-discription {
    font-size: 12px;
    text-align: justify;
}
/*----Imp-Dates----*/
/*----office-bearers----*/
.office-bearers-wrapper {
    background: #fff;
    padding: 40px 20px;
}
#bearersSlider .carousel-indicators {
    position: relative;
    display: block;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
}
#bearersSlider .carousel-indicators button {
    background-color: #efefef !important;
    width: 100%;
    height: auto;
    text-indent: 0;
    margin: 0;
    border: none;
    display: flex;
    align-items: center;
    padding: 5px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid var(--theme-color);
}
/* #bearersSlider .carousel-indicators li {

} */
#bearersSlider .carousel-indicators button:first-child {
    margin-top: 0;
}
#bearersSlider .carousel-indicators button .thumbnail {
    width: 60px;
    height: 60px;
    background-size: 100%;
    margin-right: 10px;
    border-radius: 50%;
}
.bearers-profile {
    background: #efefef;
    padding: 10px;
    border-radius: 6px;
}
.bearers-profile .bearers-profile-img {
    border-radius: 6px;
    width: 244px;
     /* height: 262px; */
     /* height: 279px; */
    background-size: 169% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    transition: 0.2s;
    margin-right: 10px;
    float: left;
    /* border-radius:50%; */
}
.bearers-profile .bearers-profile-details {
    float: right;
    width: calc(100% - 273px);
}
.bearers-profile h2 {
    font-size: 18px;
}
.bearers-profile h3 {
    font-size: 16px;
}
.bearers-profile p {
    font-size: 14px;
    text-align: justify;
    margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
.bearers-profile .bearers-profile-img {
    width: 100%;
    /* height: 250px; */
    float: none;
}
.bearers-profile .bearers-profile-details {
    float: none;
    width: 100%;
}
}
/*----office-bearers----*/
/*----Birth-Day-&-Thought----*/
.view-box-wrapper {
    height: 300px;
    width: 100%;
    background-size: 100% 300px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 6px;
}
/* #birthDaySlider .carousel-item {
    width: 220px;
} */
.small-box {
    width:160px;
    /* height:250px; */
    /* background: #fff; */
    border: 2px solid;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    border-radius: 6px;
}
.small-box img {
    border-radius: 5px 5px 0 0;
}
.carousel-item-caption h5 {
    font-size: 16px;
    margin: 0;
}
/* .student-birthday {
    width: 120px;
    margin-left: 18%;
}
.student-birthday img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
} */
/*----Birth-Day-&-Thought----*/
/*----Topper-Siders----*/
.toppersSlider .carousel-control-next,
.toppersSlider .carousel-control-prev /*, .carousel-indicators */ {
    filter: invert(100%);
}
.toppersSlider .items-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.student-box {
    background: #fff;
    width: 130px;
    height: 220px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    border-radius: 6px;
    margin-bottom: 10px;
}
.student-box .student-picture {
    width: 100%;
    height: 150px;
    background-size:cover;
    background-position: top center;
    border-radius: 6px 6px 0 0;
}
.student-box .student-details {
    text-align: center;
}
.student-box .student-details h5 {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
}
.student-box .student-details h6 {
    font-size: 12px;
    margin: 0;
}
/*----Topper-Siders----*/

.school-logo img {
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(0,0,0,0.4);
    /* box-shadow: 0 0 6px 2px #70adc9; */
}
/*--Login-Box--*/
.login-img {
    height: 220px;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}
.uab_name {
    font-size: 24px;
    color: var(--theme-color);
    text-align: center;
    display: flex;
    justify-content: center;
}
.uab_name div {
    padding: 2px;
    border-bottom: 1px solid var(--theme-color);
    /* border-radius: 6px; */
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.uab_name div img {
    margin-right: 10px;
}
/*--Gallery--*/
.gallery-box .event-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;

}
.gallery-box .pics-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--theme-color);
    width: 25px;
    height: 25px;
    font-size: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
}
@media screen and (max-width:767px) {
#gallerySlider .event-box {
    margin: 15px;
    width: auto !important;
}
#gallerySlider .event-box:first-child {
    margin-bottom: none;
}
}
/*--Gallery--*/
/*--Top-Bar--*/
.top-bar {
    background: var(--theme-color);
    color: #fff;
    padding: 5px 0;
}
/* .top-bar {
    background: var(--theme-color);
    display: flex;
    justify-content: end;
    align-items: center;
    color: #fff;
    padding: 5px;
}
.top-bar div {
    margin-left: 10px;
}
.top-bar div i {
    margin-right: 5px;
}
@media screen and (max-width:767px) {
.top-bar {
    justify-content: center;
}
} */
/*--Top-Bar--*/
/*--Footer--*/
.footer {
    background: #333;
    padding: 10px;
}
.useful-link {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.useful-link a {
    display: block;
    color: #fff;
    background: rgba(0,0,0,0.4);
    margin: 3px 3px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 15px;
    transition: 0.3s;
    text-transform:capitalize;
    font-size: 12px;
}
.useful-link li:first-child a {
    margin-left: none;
}
.useful-link a:hover {
    background: var(--theme-color);
}
.socia-icon {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background: #e6e6e6;
    color: #000;
    text-decoration: none;
    transition: 0.2s;
}
.socia-icon:hover {
    text-decoration: none;
    color: #e6e6e6;
    background: #000;
}
.socia-icon.fb {
    background: #1877f2;
    color: #fff;
}
.socia-icon.fb:hover {
    color: #1877f2;
    background: #fff;
}
.socia-icon.tw {
    background: #1da1f2;
    color: #fff;
}
.socia-icon.tw:hover {
    color: #1da1f2;
    background: #fff;
}
.socia-icon.yt {
    background: #ff0000;
    color: #fff;
}
.socia-icon.yt:hover {
    color: #ff0000;
    background: #fff;
}
.socia-icon.ig {
    background: #833ab4;
    color: #fff;
}
.socia-icon.ig:hover {
    color: #833ab4;
    background: #fff;
}
/*--Footer--*/
/*-------------------Breadcrumb-------------------*/
.breadcrumb-wrapper {
    height: 50vh;
    background-size: 130%;
    background-position:center center;
}
.breadcrumbs-inner {
    background: rgb(0 0 0 / 32%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.breadcrumb-wrapper h2 {
    background: var(--theme-color);
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 22px;
}
.breadcrumb {
    justify-content: center;
    color: #fff;
}
.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}
.breadcrumb li.active {
    color: #fff;
}
.breadcrumb li.active::before {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .breadcrumb-wrapper {
        height: 30vh;
        background-size: 130%;
        background-position:center center;
    }
}
/*-------------------Breadcrumb-------------------*/
.section p {
    text-align: justify;
}
.section h2:not(.accordion-header) {
    font-size: 24px;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}
.section h2:not(.accordion-header):after {
    content: '';
    background: var(--theme-color);
    position: absolute;
    width: 100%;
    height: 1.5px;
    bottom: -5px;
    left: 0;
}
.img-wrapper {
    width: 100%;
    background-size: 100%;
    background-position: center center;
    border-radius: 6px;
    position: relative;
    transition: background-size 0.5s;
}
.img-wrapper:hover {
    background-size: 105%;
}
.img-wrapper img {
    width: 100%;
    visibility: hidden;
}
.img-wrapper .inner-wrapper {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 0;
    transition: background 0.5s;
}
.img-wrapper .inner-wrapper:hover {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}
@media screen and (max-width: 767px) {
    .img-wrapper {
        width: 100% !important;
        height: 100% !important;
    }
}
@media screen and (max-width: 767px){
    .img-wrapper-fixed {
        width: 100px !important;
        height: 100px !important;
    }
}
.blank_box {
    background: #fff;
    border-radius: 6px;
    margin: 15px 0;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
    padding: 15px;
}

.circle-number-style {
    list-style-type: none;
    padding: 0;
    padding-left: 10px;
}
.circle-number-style li {
    display: flex;
    text-align: justify;
}
.circle-number-style .number-circle {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 3px 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    background: #fff;
    border:1px solid var(--theme-color);
    color: var(--theme-color);
}
.gallery-wrapper {
    width: 100%;
    height: 200px;
    background-size: 110%;
    background-position: center center;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}
.gallery-wrapper:hover {
    background-size: 120%;
}
.gallery-wrapper a.gallery-upper,
.gallery-wrapper a.gallery-bottom {
    display: block;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-decoration: none;
}
.gallery-wrapper a.gallery-upper {
    flex-grow: 1;
    border-radius: 6px 6px 0 0;
    position: relative;
}

.gallery-wrapper a.gallery-upper .gallery-counter {
    background: var(--theme-color);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    position: absolute;
    right: 10px;
    top: 10px;
}
.gallery-wrapper a.gallery-bottom {
    border-radius: 0 0 6px 6px;
}

.card-img {
    width: 100%;
    height: 250px;
    background-size: 100% 100%;
    background-position: center center;
    transition: 0.5s;
}
.card-text {
    height: 65px;
    overflow: hidden;
    position: relative;
}
.card-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20px;
    background-image: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
}
.contact-info {
    display: flex;
}
.contact-icon {
    flex-shrink: 0;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    transition: 0.5s;
}
.contact-info:hover .contact-icon {
    font-size: 28px;
}
.contant-details {
    padding: 0 15px;
}
.contant-details h3 {
    font-size: 22px;
    font-weight: bold;
}
.contant-details a {
    color: var(--theme-color);
    text-decoration: none;
}
.patron-wrapper {
    background-size:2000px;
    background-attachment: fixed;
    background-position: center center;
    margin: 75px 0 20px;
}
.patron-inner {
    background:rgba(0,0,0,0.1);
    padding: 20px;
}
.parton-img {
    /* background:#fff;
    border-radius: 50%; */
    margin-bottom: 15px;
    margin-top: -80px;
}
.patron-inner p {
    text-align: justify;
}
.patron-inner i {
    color: var(--theme-color);
    font-size: 32px;
}
@media screen and (max-width: 767px) {
    .img-osm-fluid {
        width: 100%;
    }

}

.blank-box{
    padding: 15px;
    border:rgb(28 27 59 / 34%) 2px dashed ;
    border-radius: 10px;
    /* box-shadow: 0px 1px 18px 0px rgb(28 27 59 / 34%); */
}
.blank_box{
    padding: 10px;
    box-shadow: 0px 1px 8px 0px var(--theme-color);
    /* -webkit-box-shadow: 1px 1px 4px 4px rgba(65,57,168,0.9);
    -moz-box-shadow: 1px 1px 4px 4px rgba(65,57,168,0.9);
    box-shadow: 1px 1px 4px 4px rgba(65,57,168,0.9); */
}

.video-width{
    z-index: 100!important;
  }

  video{
    width:100%;
}
.c-h-color{
    padding: 18px;
    background-color: var(--theme-color);
    color: white;
    text-align: center;
}
.c-h-color span{
    color: white;
    font-size: 22px;
    margin-right: 10px;
    border-right: 1px solid;
    padding-right: 17px;
}
.overlay{
    padding: 5px;
    /* background-color: #bc63308c; */
    background-color: white;
}


.thumbnailss{
    border-radius: 50%;
}

