/*Course listing*/

/* .mid{width:100%; max-width:1550px; margin:0 auto; position:relative;} */

/*Static side logo transform*/
.static-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: iconTwist 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes iconTwist {
    0% {
        transform: rotate(-12deg);
    }

    50% {
        transform: rotate(12deg);
    }

    100% {
        transform: rotate(-12deg);
    }
}

#school-dropdown {
    padding: 20px;
    padding-right: 50px;
    background-color: #052df1;
    border: 0;
    font-size: clamp(22px, 1.9vw, 36px);
    color: white;
    background-image: url("../images/dropdown-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 0px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #school-dropdown {
        max-width: 260px;
        font-size: 18px;
        padding: 20px 0px;
    }
}

.item-wrapper.hoverable {
    transition: transform 0.3s ease;
}

.item-wrapper.hoverable:hover {
    transform: scale(1.05);
}

.tge-subpage-header-obj.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.tge-subpage-header-obj.centered img {
    max-width: 100%;
    height: auto;
}

.cus-dropdown.course-listing { background-color: black; color: white; }

.course-listing-wrapper.loading > div { color: white; }

/*image mask*/
.course-shape {
    width: auto;
    height: 400px;
    display: block;
}

/*Custom dropdown*/

.bb-1 {
border-bottom: 1px solid #3F3F3F;
}

.outer-filter {
    transition: 0.3s all ease;
    position: sticky;
    top: 70px;
    width: calc(100% - 2rem);
    z-index: 9;
    padding: 0 1rem;
}

.filter {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    transition: 0.3s all ease;
    max-width: 1510px;
    margin: 0 auto;
    align-items: center;
    padding: 24px 3rem 28px;
    position: relative;
}

.filter-top {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.alphabet-filter {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    color: white;
}
.alphabet-letter {
    cursor: pointer;
}
.alphabet-letter:hover, .alphabet-letter.active {
    border-bottom: white 1px solid;
}

    .filter h2{
        font-size: clamp(1rem, 0.5443rem + 0.9494vw, 1.375rem);
    }


    .filter hw {
        font-size: clamp(1.625rem, 1.3212rem + 0.6329vw, 1.875rem);
    }


.filter .cus-dropdown {
	width: 31.4%;
}

.filter .catalogue-wrapper {
	width: 20%;
}

.filter .catalogue-wrapper input {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: #000000;
	color: #ffffff;
	cursor: pointer;
}

#course-student-search-input {
    background: #FFF;
    color: #000;
}

.cus-dropdown {
	position: relative;
	cursor: pointer;
	font-family: 'OpenSauceSans', sans-serif !important;
	
  }

/* .cus-dropdown:after { */
    /* content: 'VIEW'; */
    /* display: block; */
    /* position:absolute; */
    /* left: -50px; */
    /* top: 9px; */
    /* color: white; */
/* } */


    .cus-dropdown:before {
        content: '';
        background: url(../images/dropdown-arrow.png);
        display: block;
        height: 20px;
        width: 20px;
        background-repeat: no-repeat;
        position: absolute;
        top: 27px;
        right: 20px;
        background-size: contain;
    }



    .cus-dropdown input,
    #course-student-search-input {
        box-sizing: border-box;
        padding: 10px 20px;
        height: 60px;
        border: none;
        cursor: pointer;
        /*font-size: 16px;
        border-radius: 30px;*/
        font-family: 'OpenSauceSans', sans-serif !important;
        width: 100%;
    }

    #course-student-search-input {
        width: 68.6%;
        background-color: white;
        color: black;
    }

    .cus-dropdown.course-listing input {
        background-color: black;
        color: white;
    }

    .cus-dropdown input:focus,
#course-student-search-input:focus	{
        outline: none;
    }

  .cus-dropdown input::placeholder,
#course-student-search-input::placeholder  {
	color: #000;
  }

.cus-dropdown ul{
	display: none;
	position: absolute;
	z-index:997;
	left: 0;
	top: 60px;
	margin:0;
	width: 100%;
	background: #fff;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-color: #000000;
    /* border-radius: 8px; */
  }

    .cus-dropdown li {
        box-sizing: border-box;
        padding: 10px 20px 10px;
        list-style: none;
        position: relative;
        z-index: 999;
        color: #000000;
        font-family: 'OpenSauceSans', sans-serif !important;
		
        /* font-size: 16px; */
    }

        .cus-dropdown li:first-child {
            margin-top: 10px;
        }
        .cus-dropdown li:last-child {
            padding: 10px 20px 10px;
            margin-bottom: 10px;
        }


.cus-dropdown li:hover {
	background: #a9a9a9;
  }

.cus-dropdown ul:before{
	position:fixed;
	z-index:998;
	top:0;
	left:0;
	background:transparent;
	content: "";
	width:100%;
	height:100%;
  }

.highlight-message-wrapper .message-slide-item .text-wrapper .class-name {
    -webkit-text-stroke: 6px #dfff3c !important;
    color: black !important;
    /*font-size: 24px !important;*/
}

.mid{width:100%; margin:0 auto; position:relative; max-width: 1760px;}
.mid.search { margin-top: 130px; }
.mid.course-banner.celebrate { margin-top: 150px; }

.mid.congratulatory {
    margin: 0 auto 100px auto;
}
/* .mid .banner{background-image:url(../images/banner.jpg); background-position:top right; background-repeat:no-repeat; height:375px;}
.mid .banner .title{background:linear-gradient(45deg, #FFFFFF 7%, #001489 7%, #001489 92%, transparent 92.5%); height:100%; width:40%; font-weight: 800; font-style: normal; font-size:225%; line-height:111.11%; color:#FFFFFF; text-transform:uppercase; position:relative;}
.mid .banner .title span{position:absolute;bottom:15%;right:10%; width:75%; text-align:right} */
.mid .banner{

	height: 358px;
	position: relative;
}

    .mid.course-banner .banner {
        height: 400px;
        position: relative;
    }



    .mid .banner .heading-wrapper-outer-cnt{
        max-width: 1300px;
        width: 100%;
        margin: 0 auto;
        margin-top: 200px;
    }
     /*.mid .banner .heading-wrapper-outer-cnt { margin-top: 50px; }*/

    /*.mid .banner .heading-wrapper-outer-cnt.message { margin-top: 200px; }*/
    .mid .banner .heading-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 358px;
        /*top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;*/
    }

    .mid.course-banner .banner .heading-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 1rem;
    }
	.mid.course-banner .banner .heading-wrapper .tge-subpage-header-obj img{
		max-width: 395px;
		width: 100%;
        height: auto;
        object-fit: contain;
	}
	.mid.course-banner .banner .heading-wrapper .tge-subpage-header-obj {
		align-self: center;
	}
	.mid.course-banner .banner .heading-wrapper .white-line {
		border-top: 1px solid white;
		height: 1px;
		width: 100vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: min(570px, 50%);
	}

    .message-h2 {
        margin-bottom: 45px;
    }

    .msg-h2-sm {
        font-size: 28px;
        font-weight: 500;
    }

    .message-h2 h2:not(.msg-h2-sm) {
        font-size: clamp(32px, 4vw, 46px);
    }

    .intro-wrapper h2 { margin-bottom: 20px; margin-left: 0; }

    
	@media screen and (min-width: 767px) {
    .mid .banner .heading-wrapper.text-right h1 {
		text-align: right;
	}
	.mid.course-banner .banner .heading-wrapper.text-right {
		align-items: end;
	}
	.mid.course-banner .banner .heading-wrapper.text-right .tge-subpage-header-obj {
		left: unset;
		right: -125px;
	}

	.mid.course-banner .banner .heading-wrapper.text-right .white-line {
		left: unset;
		right: min(570px, 50%);
	}
	}
	
	
    .mid .banner .mast-banner-text {
        font-family: "Bricolage Grottesque", sans-serif;
        position: absolute;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        font-size: clamp(1.625rem, 1.3212rem + 0.6329vw, 1.875rem);
        color: #F3EFA1;
        font-weight: 400;
		text-align: center;
        /*text-shadow: 0px 4px 4px rgba(0,0,0,0.2)*/
    }
.heading-wrapper .catalogue-wrapper {
    margin-top: 20px;
}
.heading-wrapper input {
    box-sizing: border-box;
    background: #F3EFA1;
    border-radius: 30px;
    padding: 15px 45px;
    color: #000000;
    cursor: pointer;
    border: 1px solid #F3EFA1;
    /* font-size: 16px; */
    transition: 0.3s all;
}

    .heading-wrapper input:hover {
        box-sizing: border-box;
        background: white !important;
        border-radius: 30px;
        padding: 15px 45px;
        color: black!important;
        cursor: pointer;
        border: 1px solid #F3EFA1;
        /* font-size: 16px; */
    }

    .heading-wrapper input.dynamic-green:hover {
        background: white !important;
        color: black !important;
        border: 1px solid #1AE584;
    }

h4#fypTitleDiv { margin-bottom: 20px; }

#fyplistingDiv a {
    transition: transform 0.3s ease-in-out;
}

#fyplistingDiv a:hover {
    transform: scale(1.05);
}

.mid .banner .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: contain;
    width: 100%;
    height: 100%;
    filter: opacity(0.5);
}

.ceremony-title-wrapper{
    position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}
.ceremony-title-wrapper p {
	margin: 0;
	padding: 0;
}
.dsneon-green {
    color: #1AE584!important;
}

.ceremony-title-wrapper h2 {
    text-align: center;
    color: #FFF;
	font-family: 'OpenSauceSans', sans-serif !important;
    font-weight: 600;
	margin: 0;
}

.mid .full-bleed-section{
    width: 100%;
    margin: 0 auto;
	box-sizing: border-box;
    padding: 0 4rem;
    max-width: 1640px;
}

@media screen and (max-width: 480px) {
    .mid .full-bleed-section {
        padding: 0 1rem;
    } 
}

.mid .banner .top-stars-wrapper {
    position: absolute;
    top: 30px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
}

.mid .banner .top-stars-wrapper img {
	width: 100%;
}

.mid .banner .bot-stars-wrapper {
	position: absolute;
	bottom: 30px;
	max-width: 1300px;
	margin: 0 auto;
	width: 100%;
	left: 50%;
    transform: translate(-50%, 0);
}

.mid .banner .bot-stars-wrapper img {
	width: 100%;
}

.mid .banner h1 {
	color: #ffffff;
font-size: clamp(1.625rem, -1.2611rem + 6.0127vw, 4rem);	max-width: min(550px, 45%);
}

.mid .wrapper {
    max-width: 1640px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 4rem;
    margin-top: 50px;
}

.mid .student-list { margin-top: 0 !important; }

@media screen and (max-width: 1000px) {
    .mid .wrapper {
        padding: 0 60px;
    }
}

.mid.message .wrapper { max-width: 1300px; }

.mid .wrapper .cnt {
    width: 100%;
    margin: 50px auto;
    box-sizing: border-box;
}


.mid.course-banner .wrapper .cnt {
    margin: 0 auto;
    padding-bottom: 3rem;
}

.mid.course-banner .wrapper .cnt.message {
    padding-bottom: 5rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.mid.course-banner.celebrate .wrapper .cnt {
    margin: 0 auto;
    padding-bottom: calc(100px + 2rem);
}

.mid .wrapper .cnt .filter .btn{width:308px; border:1px solid #000000; }
.mid .wrapper .cnt .filter select{width: calc(100% - 308px); border:1px solid #000000; padding: 9.5px 50px 9px; }



.mid.congratulatory .wrapper {
	padding: 0 1rem;
}

.faculty-message-wrapper .inner-wrapper {
	padding: 2rem 0 5rem 0;
	display: flex;
	flex-wrap: wrap;
	/* grid-template-columns: 280px 280px; */
    gap: 48px clamp(48px, 25vw, 180px);
    justify-content: center;
}

.image-wrapper.course-logo {
    display: flex;
    justify-content: center;
}

.image-wrapper.course-logo img {
    width: auto;
    height: 300px;
}

.faculty-message-wrapper .inner-wrapper .message-item {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    gap: 24px;
}
.faculty-message-wrapper .inner-wrapper .message-item .item-wrapper {
	position: relative;
}
.faculty-message-wrapper .inner-wrapper .message-item .bg{
	width: 280px;
	height: 280px;
	aspect-ratio: 1/1;
}
.faculty-message-wrapper .inner-wrapper .message-item .text{
	position:absolute;
	bottom: 80px;
	left: 50%;
	transform:translateX(-50%);
    height: 120px;
}
/* .mid .wrapper .cnt .listing h3 {margin:0; line-height:25px}
.mid .wrapper .cnt .listing p {margin:0;}
.mid .wrapper .cnt .listing .row {text-align:center; margin: 0 -5px; display:flex; align-items:center; justify-content:center}
.mid .wrapper .cnt .listing .column {float: left; width: 25%; padding-top:40px}
.mid .wrapper .cnt .listing .card {text-align: left; height:250px}
.mid .wrapper .cnt .listing .card .student {width:270px; margin-bottom:10px} */


.mid .wrapper .cnt .course-listing-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    /*margin-top: 50px;*/
    margin-bottom: 1rem;
	/* min-height: calc(100vh - 692px); */
}



.mid .wrapper .cnt .course-listing-wrapper .course-item {
	width: calc((100% - 80px)/4);
	margin-right: 20px;
	margin-bottom: 2rem;
	display: none;
}

@media screen and (max-width: 1025px) {
    .mid .wrapper .cnt .course-listing-wrapper .course-item {
        width: calc((100% - 80px)/3);
    } 
}

.mid .wrapper .cnt .course-listing-wrapper .course-item.active {
 	/* display: block; */
}

.mid .wrapper .cnt .course-listing-wrapper .course-item .img-wrapper {
    max-height: fit-content;
    max-width: none;
    /* height: 100%; */
    border-radius: 0px;
}

.mid .wrapper .cnt .course-listing-wrapper .course-item .img-wrapper a {
	display: block;
    width: 100%;
    height: 100%;
   
}

.mid .wrapper .cnt .course-listing-wrapper .course-item img {
    width: 100%;
    height: auto;
    /* min-width: 100%;
    min-height: 100%; */
    object-fit: cover;
    border-radius: 0px;
	aspect-ratio: 1/1 !important;
}

.pd-tp-20{
    padding-top: 20px;
}

.course-listing-wrapper .course-item img {
    transition: 0.3s ease;
    transform: translateY(0px);
}

.course-listing-wrapper .course-item:hover img {
    transform: translateY(-8px);
}





/* .mid .wrapper .cnt .course-listing-wrapper .course-item:nth-child(4n) {
	margin-right: 0;
} */

.mid .wrapper .cnt .course-listing-wrapper .info-wrapper {
	margin-top: 4px;
}
.mid .wrapper .cnt .course-listing-wrapper .info-wrapper h3 {
	line-height: 1;
    margin-bottom: 0.5rem;
}
.mid .wrapper .cnt .course-listing-wrapper .info-wrapper h3 a {
    font-size: clamp(1.125rem, 0.8212rem + 0.6329vw, 1.375rem);
    color: white;
    font-weight: 200;
    position: relative;
    font-family: "OpenSauceSans", sans-serif;
}

/*.mid .wrapper .cnt .course-listing-wrapper .info-wrapper h3 a:after {
    content: '';
    position: absolute;
    background-color: white;
    height: 1px;
    width: 0;
    left: 0;
    bottom: -1px;
    transition: 0.3s;
}*/

/*.mid .wrapper .cnt .course-listing-wrapper .course-item:hover .info-wrapper h3 a:after {
    width: 100%;
}*/
.mid .wrapper .cnt .course-listing-wrapper .info-wrapper p {
	margin-bottom: 0;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mid .wrapper .cnt .course-listing-wrapper.loading::before,
#loadMore.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  margin: -20px 0 0 -20px; 
  border: 2.5px solid white; 
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  z-index: 9999;	
}
#loadMore.loading::before {
	left: unset;
	right: -70px;
	top: calc(50% + 4px);
}
.explore {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    margin-top: 50px;
	margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* font-size: 16px; */
    color: #F57F27;
	line-height: 133%;
	text-underline-offset: 4px;
    text-transform: capitalize;
}

    .explore span {
        position: relative;
    }

    .explore span:after {
        content: '';
        position: absolute;
        background-color: #F57F27;
        height: 1px;
        width: 0;
        left: 0;
        bottom: 0px;
        transition: 0.3s;
    }

        .explore span:hover:after {
            width: 100%;
        }

/*Course detail*/





.mid .student-banner .info{ width:100%; margin:0 auto; box-sizing:border-box;}
.mid .student-banner .info span.title{font-weight: 800; font-style: normal; font-size:225%; line-height:111.11%; color:#FFFFFF; text-transform:uppercase; display:block; }
.mid .student-banner .info span.course{color:#FFFFFF; display:block;}
.mid .student-banner .info .student-social { padding-bottom:15px;}
.mid .student-banner .info .student-social a {display:inline-block; }
.mid .student-banner .info .student-social a:hover {opacity:0.7;}
.mid .student-banner .info .student-social a:last-child {padding-right:0; }

.mid .wrapper .cnt .write-up{display:flex;}
.mid .wrapper .cnt .write-up .desc{width:65%; border-right: 1px solid #000; padding: 0 5% 0 0; box-sizing:border-box;}
.mid .wrapper .cnt .write-up .awards{width:35%; box-sizing:border-box; padding: 0 0 0 5%;}
.mid .wrapper .cnt .write-up .awards .ttl{font-weight:800; margin-bottom: 15px;}

.mid .wrapper .cnt .gallery-listing {width:100%; padding:50px 0;}
.mid .wrapper .cnt .gallery-listing .row { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.mid .wrapper .cnt .gallery-listing .row .column {-ms-flex: 32%; flex: 32%; max-width: 33%; padding: 0 4px; }
.mid .wrapper .cnt .gallery-listing .row .column img {margin-top: 8px; vertical-align: middle;	width: 100%;}

.mid .wrapper .cnt .gallery-listing {display: grid; grid-template-columns: 1fr 1fr 1fr;  grid-gap: 17px;}
.mid .wrapper .cnt .gallery-listing img.feature {grid-row:1/span 2; grid-column:span 2;}
.mid .wrapper .cnt .gallery-listing img {width:100%;}

.mid .wrapper .cnt .load-more{width:173px; margin:0 auto;}
.mid .wrapper .cnt .load-more a {display:flex; align-items:center; text-decoration:none; color:#000; text-transform:uppercase;}
.mid .wrapper .cnt .load-more a:hover { font-weight:500; color:#001489; }
.mid .wrapper .cnt .load-more a:hover img{ opacity:0.7; }



/***Student details page***/
.mid-student p{margin-top:0; font-family: "OpenSauceSans", sans-serif; font-size: 16px; line-height:150%; margin-bottom: 16px;}
.mid-student span{margin-top:0; font-family: "OpenSauceSans", sans-serif; 
/* font-size:22px; */
 line-height:150%; margin-bottom: 16px;}

.mid-student .btn {text-align:center; padding:10px 0; background-color:#000000; color:#ffffff; font-family: 'OpenSauceSans', sans-serif !important; outline:0; border:none; cursor:pointer;-webkit-appearance: none; border-radius: 0;}
.mid-student .btn:hover { background-color:#ffffff; color:#000000; border:1px solid #000000; }

/*.mid-student .btn:focus, .btn:active, select:focus, select:active, input:focus, input:active {outline:0; border:none;}*/

.mid-student {width:100%; margin:0 auto; position:relative; font-family: "OpenSauceSans", sans-serif; 
/* font-size:16px; */
 line-height:150%;}
.mid-student .student-banner{ 
    width:100%; 
    margin:0 auto; 
    position:relative; 
    display: flex; 
    align-items: flex-start;
    box-sizing: border-box;
    padding: 0 4rem; 
    max-width: 1300px; 
    margin-top: 128px; 
    flex-direction: column;
    row-gap: 24px;
}
.mid-student .student-banner .tge-obj-250 {
    width: 320px;
    height: 320px;
    position: absolute;
	z-index: -1;
}
.mid-student .student-banner .tge-obj-250 img {
    object-fit:contain;
    width: 100%;
    height: 100%;
}
.mid-student .student-banner .tge-obj-250.tge-obj-student-wrapper-1 {
    left: -12%;
    top: 55%;
    width: 320px;
    height: 320px;
}
.mid-student .student-banner .tge-obj-250.tge-obj-student-wrapper-3 {
    left: 0;
    top: 0;
}
.mid-student .student-banner .tge-obj-250.tge-obj-student-wrapper-2 {
	right: -12%;
    top: -24px;
}
.mid-student .student-banner .flex-wrapper {
	gap: 48px;
	width: 100%;
	margin:  0 auto;
	position: relative;
display: grid;
grid-template-columns: 400px 1fr;
}
.mid-student .student-banner .flex-wrapper .white-line {
	border-top: 1px solid white;
	height: 1px;
	width: 100vw;
	position:absolute;
	left: 0;
	top: 64px;
	z-index: -2;
}
.mid-student .student-banner .profileImg {
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.mid-student .student-banner .profileImg img.profilePic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: url(#shape-1);
}

.mid-student .student-banner .bot-stars-wrapper {
	position: absolute;

	bottom: 0;
	max-width: 1300px;
	margin: 0 auto;
	width: 100%;
}

.mid-student .student-banner .bot-stars-wrapper img {
	width: 100%;
}

.mid-student .student-banner .circle-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 400px;
}

.mid-student .student-banner .circle-wrapper img {
	width: 100%;
}

.mid-student .student-banner .info{ margin:0 auto; padding:0 0 24px 0; box-sizing:border-box;}
.mid-student .student-banner .info span.title{font-family: 'OpenSauceSans', sans-serif !important; margin-bottom: 10px; font-weight: 200; font-style: normal; 
font-size: clamp(1.625rem, 0.8655rem + 1.5823vw, 2.25rem); line-height:111.11%; color:#FFFFFF; text-transform:uppercase; display:block; }
.mid-student .student-banner .info span.course{color:#FFFFFF; display:block;font-family: "OpenSauceSans", sans-serif; font-size: 16px;}
.mid-student .student-banner .info .student-social { padding-bottom:15px;display: flex;flex-direction: row; gap: 15px;}
.mid-student .student-banner .info .student-social a {display:inline-block; background: #ffffff; border-radius: 50%; width: 38px; height: 38px;display: flex;flex-direction: row;justify-content: center;align-items: center;}
.mid-student .student-banner .info .student-social a:hover {opacity:0.7;}
.mid-student .student-banner .info .student-social a:last-child {padding-right:0; }

.mid-student .wrapper { padding-top: 64px; max-width:1300px; width:100%; margin:0 auto; box-sizing:border-box;}
.mid-student .wrapper .cnt{ 
	max-width: 1300px; 
	width:100%; 
	margin:0px auto; 
	box-sizing:border-box;
}
.mid-student .student-section-heading {
	display: block;
    font-size: clamp(1rem, 0.5443rem + 0.9494vw, 1.375rem);
	font-family: "OpenSauceSans", sans-serif !important;
	text-decoration: none;
	color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 16px;
	position:relative;
}
.mid-student .biography, .mid-student .awards-events {
	margin-bottom: 24px;
}
.mid-student .biography h4 {
	text-align:left;
}
.mid-student .biography p {
    margin-bottom: 0;
	text-align:left
}
.mid-student .wrapper .cnt .write-up {
    display: flex;
	flex-direction: column;
	gap: 50px;
    margin-bottom: 50px;
}
.mid-student .wrapper .cnt .write-up.s100 {display:block;}
.mid-student .wrapper .cnt .write-up .s70 {width:70%}
.mid-student .wrapper .cnt .write-up .s60 {width:60%}
.mid-student .wrapper .cnt .write-up .s50 {width:50%}
.mid-student .wrapper .cnt .write-up .s40 {width:40%}
.mid-student .wrapper .cnt .write-up .s30 {width:30%}
.mid-student .wrapper .cnt .write-up .s100 {width:100%; border-right: none !important; padding:0 !important;}

.mid-student .wrapper .cnt .write-up .desc{box-sizing:border-box; padding: 0 0 0 5%; }


.mid-student .wrapper .cnt .write-up .desc  .ttl a { 
	font-family: 'OpenSauceSans', sans-serif !important;
	/* font-size: 28px; */
	font-weight: bold;
	text-decoration: none;
	color: #FFF;
	text-transform: uppercase;

	display: block;
	margin-bottom: 15px;
}


.mid-student .wrapper .cnt .write-up .desc .acc {
	border-bottom: 1px solid #000000;
    margin-bottom: 30px;
}



.mid-student .write-up .awards-events { gap:24px; }
.mid-student .wrapper .cnt .write-up .awards-events .ttl{font-weight:800; margin-right:20px;}
.mid-student .wrapper .cnt .write-up .awards-events .ttl a{
	font-family: 'OpenSauceSans', sans-serif !important;
	/* font-size: 28px; */
	font-weight: bold;
	text-decoration: none;
	color: #000000;
	text-transform: uppercase;

	display: block;
	margin-bottom: 30px;
	position: relative;
	text-decoration: underline;
	text-underline-offset: 15px;
	text-decoration-thickness: 1px;
}

.mid-student .write-up .awards-events .ttl a:after {
	content: '';
	background: url('../images/dropdown-arrow.png') no-repeat;
	width: 30px;
	height: 15px;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.5s ease;
}
.mid-student .write-up .awards-events .ttl a.active:after {
	transform: rotate(180deg);
}

.mid-student .write-up .awards-events .acc-cnt{display:none;}
.mid-student .write-up .awards-events .acc-cnt.opened{ display: block; color: white; }
.mid-student .write-up .awards-events .acc-cnt.close{display:none;}

.mid-student .write-up .awards-events #accAwardsInfo span,
.mid-student .write-up .awards-events #accEventsInfo span {
	padding-left: 15px;
	position: relative;
}
.mid-student .write-up .awards-events #accAwardsInfo span::before,
.mid-student .write-up .awards-events #accEventsInfo span::before {
	position: relative;
content: '';
display: block;
	left: -15px;
	top: 19px;
	width: 5px;
height: 5px;
background: #FFF;
border-radius: 50%;
}
.mid-student .write-up .awards-events span{display:block; padding-bottom:5px;margin-bottom: 0px;font-family: "OpenSauceSans", sans-serif; font-size: 16px; font-weight: 200;}
.mid-student .write-up .awards-events .year{padding-top:10px; font-weight:600;}
.mid-student .write-up .awards-events .year:first-child{padding-top:0;}

.mid-student .wrapper .cnt .listing {width:100%; padding:0;}
.mid-student .wrapper .cnt .listing .row { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.mid-student .wrapper .cnt .listing .row .column {-ms-flex: 32%; flex: 32%; max-width: 33%; padding: 0 4px; }
.mid-student .wrapper .cnt .listing .row .column img {margin-top: 8px; vertical-align: middle;	width: 100%;}

.mid-student .wrapper .cnt .listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
/* .mid-student .wrapper .cnt .listing img.feature {grid-row:1/span 2; grid-column:span 2;} */
/*.mid-student .wrapper .cnt .listing a.feature,
.mid-student .wrapper .cnt .listing div.feature {grid-row:1/span 2; grid-column:span 2;}*/
.mid-student .wrapper .cnt .listing img {width:100%; display:inline; border-radius: 0px;}
.mid-student .wrapper .cnt .listing a {display:none;}

.mid-student .wrapper .cnt .load-more{width:fit-content; margin:50px auto;text-align: center;}

.mid-student .wrapper .cnt .load-more a {display:inline-block; padding: 18px 49px; text-decoration:none; color:#fff; text-transform:uppercase; position: relative;  background-color: #000; transition: 0.5s ease all; font-weight: bold;}

.mid-student .wrapper .cnt .load-more a:hover { font-weight:bold; background-color:#3C499D; color: #FFF;}

    /* .mid-student .wrapper .cnt .load-more a:after { */
        /* content: ''; */
        /* position: absolute; */
        /* background-color: white; */
        /* height: 1px; */
        /* width: 0; */
        /* left: 0; */
        /* bottom: 2px; */
        /* transition: 0.3s; */
    /* } */
    /* .mid-student .wrapper .cnt .load-more a:hover:after { */
        /* width: 100%; */
    /* } */
    /* .mid-student .wrapper .cnt .load-more a:hover img { */
        /* opacity: 0.7; */
    /* } */

.mid-student .filter {display:flex;}
.mid-student .filter .btn{width:308px; border:1px solid #000000; }
.mid-student .filter .btn:hover{border:1px solid #001489; }
.mid-student .filter select{width: calc(100% - 308px); border:1px solid #000000; padding: 11px 30px 11px 70px; background-image:url(../images/arrow-down.svg); background-repeat:no-repeat; background-position: 3% center; -webkit-appearance: none; -moz-appearance: none; height:100%; cursor:pointer; text-transform:uppercase; color:#000000;}


.mid-student .gallery-heading {
font-size: clamp(1.625rem, 0.8655rem + 1.5823vw, 2.25rem);
	font-family: 'OpenSauceSans', sans-serif !important;
	font-weight: 200;
}
#fypFlipbookDiv p {
	padding:0;
	margin: 0;
}
#fypFlipbookDiv p a {
	box-sizing: border-box;
    background: #000;
    color: #fff;
    cursor: pointer;
    padding: 13px 30px;
	/* font-size: 18px; */
	font-weight: 400;
	text-transform: uppercase;
    display: block;
    width: fit-content;
	transition: all 0.3s;
	margin: 0;
}

#fypFlipbookDiv p a:hover {
    /*background: #000000;
    color: #ffffff;*/
    transform: scale(1.05);
}

/*Congratulative Messages*/
.dropdown-selected-text {
    display: none;
}
.heading-star-wrapper .flex-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin: 50px auto 30px auto;
    box-sizing: border-box;
    padding: 0 1rem;
}

.heading-star-wrapper img {
	width: 100%;
}

.heading-star-wrapper h3 {
	/* font-size: 32px; */
	font-weight: 400;
}

.heading-star-wrapper h1 {
	/* font-size: 90px; */
	text-transform: uppercase;
}

.heading-star-wrapper.bot .flex-wrapper {
	justify-content: space-between;
}

.heading-star-wrapper.bot .flex-wrapper .flex-left {
	width: 40%;
}

.heading-star-wrapper.bot .flex-wrapper .flex-right {
	width: 60%;
}

.intro-wrapper {
	max-width: 800px;
	margin-bottom: 50px;
    margin-left: 20px;
    text-align:left;
}

.intro-wrapper .share-btn {
	border: 1px solid #000000;
	width: fit-content;
	margin:  0 auto;
	box-sizing: border-box;
	padding: 15px 30px;
	color: #ffffff;
	background: #000000;
	font-weight: bold;
	/* font-size: 16px; */
	cursor: pointer;
	transition: all 0.3s;
}

.intro-wrapper .share-btn:hover {
	color: #000000;
	background: #ffffff;
}
.highlight-message-wrapper h2,
.message-wrapper h2{
    text-align: center;
    margin: 0 auto;
}

.highlight-message-wrapper {
    padding: 1rem 4rem;
    margin-bottom: 120px;
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item[data-swiper-slide-index="0"] {
    background: url('../images/tge-message-bg1-green.png') no-repeat center;
    background-size: contain;
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item[data-swiper-slide-index="1"] {
    background: url('../images/tge-message-bg2-green.png') no-repeat center;
    background-size: contain;
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item[data-swiper-slide-index="2"] {
    background: url('../images/tge-message-bg3-green2.png') no-repeat center;
    background-size: contain;
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item {
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item.swiper-slide-active {
    transform: scale(1);
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item.swiper-slide-prev {
    transform: scale(0.8);
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item.swiper-slide-next {
    transform: scale(0.8);
}

@media (max-width: 767px) {
    .highlight-message-wrapper .message-slide-item:nth-child(3n+1) {
        background: url('../images/tge-message-bg1-green.png') no-repeat center;
        background-size: contain;
    }

    .highlight-message-wrapper .message-slide-item:nth-child(3n+2) {
        background: url('../images/tge-message-bg2-green.png') no-repeat center;
        background-size: contain;
    }

    .highlight-message-wrapper .message-slide-item:nth-child(3n) {
        background: url('../images/tge-message-bg3-green2.png') no-repeat center;
        background-size: contain;
    }

    .mid .wrapper { padding: 0 1rem; }
    .intro-wrapper { margin-left: 20px; }
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item {
    box-sizing: border-box;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    height: 350px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.highlight-message-wrapper .highlight-inner-wrapper {
    border-radius: 6px;
}

.highlight-message-wrapper .highlight-inner-wrapper .message-slider-wrapper {
    width: 100%;
	margin: 0;
	box-sizing: border-box;
    padding-top: 2rem !important;
}

.highlight-message-wrapper .highlight-inner-wrapper .message-slider-wrapper .message-slide-item {
	box-sizing: border-box;
    padding: 0;
}
.highlight-message-wrapper .text-wrapper p {
    font-size: clamp(16px, 1.5vw, 20px);
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
    padding: 20px;
    text-shadow: none;
    color: #1a1aff;
    -webkit-text-stroke: 6px #CCFF01;
    paint-order: stroke fill;
    max-height: 42px;
    overflow: hidden;
}

.dfa-txt { max-width: 195px; }

@media and screen (max-width: 1300px) {
    .highlight-message-wrapper .text-wrapper p {
        max-height: 55px;
    }
}

.highlight-message-wrapper .text-wrapper p.inactive {
    max-height: 100px;
    overflow: hidden;
}
.highlight-message-wrapper .text-wrapper p.read-more {
    cursor: pointer;
    font-size: clamp(18px,1.5vw, 24px);
}

.highlight-message-wrapper .swiper-button-next:after {
	content: '';
	background-image: url('../images/swiper-right.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 60px;
	height: 68.6px;
	display: block;
	position: absolute;
	top: 30%;
	right: -10px;
	transform: translateX(-6px);
	transition: transform 0.3s ease;
}

.highlight-message-wrapper .swiper-button-prev:after {
	content: '';
	background-image: url('../images/swiper-left.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 60px;
	height: 68.8px;
	display: block;
	position: absolute;
	top: 30%;
	left: -10px;
	transform: translateX(6px);
	transition: transform 0.3s ease;
}

.highlight-message-wrapper .swiper-button-prev:hover:after {
	transform: translateX(0);
}
.highlight-message-wrapper .swiper-button-next:hover:after {
	transform: translateX(0);
}


.highlight-message-wrapper h2 {
	margin-bottom: 1rem;
	margin-top: 1rem;
	width: fit-content;
	position: relative;
}

/* Enlarge highlight message slider for >767px */
@media screen and (min-width: 768px) {
    .highlight-message-wrapper {
        padding: 2rem 0;
        /*transform: scale(1.25) !important;*/
    }
    .highlight-message-wrapper h2, 
    .highlight-message-wrapper div.text-wrapper,
    .highlight-message-wrapper .swiper-button-prev,
    .highlight-message-wrapper .swiper-button-next {
        transform: scale(0.8) !important;
    }
    .highlight-message-wrapper .highlight-inner-wrapper .message-slider-wrapper {
        padding-top: 0 !important;
    }
    .highlight-message-wrapper .text-wrapper p {
        padding: 20px 8px;
    }
    .highlight-message-wrapper .swiper-button-prev,
    .highlight-message-wrapper .swiper-button-next {
        top: calc(50% - 22px);
        left: auto;
        right: auto;
    }
    .highlight-message-wrapper .swiper-button-prev {right: 85%;}
    .highlight-message-wrapper .swiper-button-next {left: 85%;}

}


.mid .wrapper .cnt .message-wrapper {
	margin: 50px 0;
	
}

.mid .wrapper .cnt .message-wrapper h2 {
	width: fit-content;
	position: relative;
}



.message-wrapper h2 {
	margin-bottom: 3rem;
}

.message-wrapper .flex-wrapper {
    gap: 45px;
    row-gap: 45px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.message-wrapper .flex-wrapper .message-slide-item {
    width: calc((100%/3) - 30px);
    background-color: #CCFF01;
    box-sizing: border-box;
    padding: 30px;
}
.message-slide-item.message-listing .text-wrapper p, .message-slide-item.message-listing .text-wrapper div {
    color: black;
    text-shadow: none;
    -webkit-text-stroke-width: 0px !important;
}

@media screen and (max-width: 1100px) {
    .message-wrapper .flex-wrapper .message-slide-item { width: calc((100%/2) - 30px); }
}

@media screen and (max-width: 850px) {
    .message-wrapper .flex-wrapper .message-slide-item {
        width: 100%;
    }
}

.message-wrapper .flex-wrapper .message-slide-item .text-wrapper p {
	font-size: clamp(16px, 2vw, 18px) !important;
    font-weight: 400;
}
.swiper-wrapper .message-wrapper .flex-wrapper .message-slide-item .text-wrapper p {
    font-size: clamp(16px, 1.2vw, 22px) !important;
}

.message-wrapper .flex-wrapper .message-slide-item .text-wrapper .inactive {
	max-height: 185px;
	overflow: hidden;
}

.highlight-message-wrapper .message-slider-wrapper .message-slide-item .text-wrapper {
	opacity: 1;
	transition: opacity 0.15s ease 0.15s;
}
.highlight-message-wrapper .message-slider-wrapper .message-slide-item.text-hidden .text-wrapper {
	opacity: 0;
	transition: opacity 0.15s ease;
}
.highlight-message-wrapper .message-slider-wrapper .message-slide-item {
	opacity: 1;
	transition: opacity 0.3s ease;
}
.highlight-message-wrapper .message-slider-wrapper .message-slide-item.hidden {
	opacity: 0;
}

.highlight-message-wrapper .swiper-button-next:after {
    content: '';
    background-image: url('../images/slider-right-white-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 30%;
    right: -150px;
    transform: translateX(-6px);
    transition: transform 0.3s ease;
}

.highlight-message-wrapper .swiper-button-prev:after {
    content: '';
    background-image: url('../images/slider-left-white-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 30%;
    left: -150px;
    transform: translateX(6px);
    transition: transform 0.3s ease;
}

/* .message-wrapper .flex-wrapper .message-slide-item .read-more {
	font-family: 'OpenSauceSans', sans-serif !important;
	font-weight: 700;
	cursor: pointer;
	margin-top: 15px;
	position: relative;
	width: fit-content;
}

.message-wrapper .flex-wrapper .message-slide-item .read-more:after {
	content: '';
	display: block;
	background: url('../images/readmore-down-arrow.png') no-repeat;
	width: 16px;
	height: 8px;
	background-size: contain;
	position: absolute;
    right: -25px;
    top: 8px;	
} */
.highlight-message-wrapper .message-slide-item .class-name {
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: bold;
    text-align: center;
    color: #1a1aff;
    -webkit-text-stroke: 6px #CCFF01;
    paint-order: stroke fill;
    text-shadow: none !important;
    font-family: 'OpenSauceSans', sans-serif !important;
}

.highlight-message-wrapper .message-wrapper .message-slide-item .class-name {
    text-align:left;
}

.readmore-inner-popup .class-name {
    /* font-size: 14px; */
    font-weight: 600;
    text-align: left;
}

.message-slide-item .read-more {
    width: fit-content;
    margin: 0 auto 10px auto;
    padding: 0 !important;
    text-transform: uppercase;
    font-size: clamp(14px, 0.8vw, 18px);
    color: white;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    font-family: 'OpenSauceSans', sans-serif !important;
}
.message-slide-item .read-more:after {
	content: '';
	position: absolute;
	background-color: black;
	height: 1px;
	width: 0;
	left: 0;
	bottom: 0px;
	transition: 0.3s;
}
.message-slide-item .read-more:hover:after {
	width: 100%;
}

.message-wrapper.celebrate {
    position: relative;
}
.message-wrapper.celebrate .bg-objects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.message-wrapper.celebrate .tge-obj-250 {
    width: 26%;
    height: auto;
    position: absolute;
    z-index: -1 ;
	max-width: 40vh;
}
.message-wrapper.celebrate .tge-obj-250 img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.message-wrapper.celebrate .tge-obj-menu-wrapper-5 {
    left: 37%;
    bottom: -10%;
}
.message-wrapper.celebrate .tge-obj-menu-wrapper-3 {
    right: -10%;
    top: -5%;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.message-wrapper.celebrate .tge-obj-menu-wrapper-4 {
    left: -20%;
    top: 35%;
}

.mid.celebrate .message-load-more {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}


/*Show*/

.stars-parent-wrapper.align-right {
	text-align: right;
	margin-top: 30px;
	margin-bottom: 30px;
}


.stars-parent-wrapper.align-left {
	text-align: left;

	margin-bottom: 30px;
}

.ceremony-wrapper {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 64px;
}

.ceremony-wrapper video {
	width: 100%;
}

.ceremony-wrapper .flex-wrapper{
    gap: 20px;
}

.ceremony-wrapper .flex-wrapper .flex-left {
    position: relative;
}

.ceremony-wrapper .flex-wrapper .flex-left .flex-inner-wrapper {
	padding-top: 20%;
}

.ceremony-wrapper .flex-wrapper .iframe-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 0px;
}
.ceremony-wrapper .flex-wrapper .iframe-container .iframe-responsive{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}


    .ceremony-wrapper .title-text-wrap p:first-child,
    .ceremony-wrapper .title-text-wrap p:last-child {
        margin: 0!important;
    }
.full-bleed-section .stars-parent-wrapper {
    max-width: 1300px;
    margin: 30px auto;
}


.container {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%; 
  }

  .responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
  }

  .real-time-intro {
	max-width: 806px;
	margin: 120px auto 25px auto;
	
  }

    .real-time-intro h3 {
        text-align: center;
        color: #F3EFA1;
        font-size: clamp(1rem, 0.5443rem + 0.9494vw, 1.375rem);
        font-family: "Bricolage Grottesque", sans-serif;
        font-weight: 400;
    }

  .real-time-intro .flex-wrapper {
	gap: 80px;
  }

  .real-time-intro .flex-left {
	position: relative;

  }

  /*.real-time-intro .flex-left:after {
	content: '';
	background: url('../images/star-icon.png') no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	position: absolute;
	right: -45px;
    top: 16%;
}*/

  .school-tab-menu-wrapper {
	box-sizing: border-box;
	padding: 0 24px;
	margin: 50px auto;
	background: unset;
    max-width: 1500px;
  }

  .school-tab-menu-wrapper ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	 justify-content: center; 
	align-items: center;
	/*gap: 50px;*/
	overflow-y: hidden;
  }
.school-tab-menu-wrapper ul::-webkit-scrollbar {
  height: 6px;
}
.school-tab-menu-wrapper ul::-webkit-scrollbar-thumb {
  background-color: #FFF;
  border-radius: 4px;
}
.school-tab-menu-wrapper ul::-webkit-scrollbar-track {
  background: #ccc;
}

.school-tab-menu-wrapper ul li {
    font-size: clamp(15px, 1.9vw, 34px);
    font-weight: bold;
    color: #FFF;
    cursor: pointer;
    /*text-transform: uppercase;*/
    width: fit-content;
    padding: 12px 10px;
    text-align: center;
    transition: 0.3s all;
    white-space: nowrap;
    border-bottom: 8px solid #ccff01;
    overflow-x: visible;
}

.courses-listing h3 {
    text-align: center;
    font-size: clamp(26px, 1.9vw, 36px);
    color: #FFF;
    padding: 25px 35px;
    width: 100%;
    /*opacity: 0.5;*/
    cursor: unset;
    margin-bottom: 50px;
    font-weight: 700 !important;
}

.school-tab-menu-wrapper ul li.active,
.school-tab-menu-wrapper ul li:hover {
    color: #000;
    opacity: 1;
    border-bottom: 8px solid #ccff01;
    background-color: #ccff01;
}



    .school-tab-menu-wrapper ul li:first-child {
    }
	/*.school-tab-menu-wrapper ul li:nth-child(2) {
		padding: 0 48px;
	}*/

  /*Playlist wrapper*/
  .matter-carousel .swiper-wrapper{
  display: flex;
  flex-direction: column;
  gap: 24px; /* optional spacing */
}

.matter-carousel.swiper-initialized .swiper-wrapper {
  flex-direction: row; /* Swiper will override with its styles */
  gap: unset;
}
.matter-carousel.swiper-initialized .swiper-wrapper .swiper-slide{
	cursor: pointer;
	  transition: transform 0.3s ease;
	  transform: scale(0.7);
}
.matter-carousel.swiper-initialized .swiper-wrapper .swiper-slide.swiper-slide-active {
	  transform: scale(1);
	  z-index: 10;
}
.matter-carousel .swiper-wrapper .container.player {
  pointer-events: none;
  cursor: pointer;
}

.matter-carousel .swiper-wrapper .swiper-slide-active .container.player{
  pointer-events: auto; /* only enable interaction when centered */
}
.vt-show-wrap{
    justify-content: space-between;
}

#loading-gui #loading-background{
    border-radius: 0px!important;
}
.playlist-wrapper {
    justify-content: space-between;
    gap: 25px;
}


    .playlist-wrapper img {
        width: 100%;
        object-fit: cover;
        /*max-height: 100px;*/
        display: block;
        border-radius: 0px;
    }

    .playlist-wrapper .img-wrapper {
        position: relative;
        max-width: 209px;
        
    }

  
  .playlist-wrapper .overlay-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.5;
	border-radius: 0px;
  }

  .playlist-wrapper .vid-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	display: none;
  }

  .playlist-wrapper .vid-sel-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	/* font-size: 13px; */
	font-family: 'OpenSauceSans', sans-serif !important;
	display: none;
  }


  .playlist-wrapper .playlist-item .vid-play-btn {
	display: block;
    width: 35px;
  } 
  .playlist-wrapper .playlist-item.active .vid-sel-wrapper {
	display: block;
  } 
  .playlist-wrapper .playlist-item.active .vid-play-btn {
	display: none;
  }

    .playlist-wrapper .text-wrapper {
        position: absolute;
        z-index: 1;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
    }

    .playlist-wrapper .text-wrapper p{
        margin-bottom: 0;
        /* font-size: 15px; */
    }

.playlist-main-vid #loading-gui h1 {
    /* font-size: 26px!important; */
}
.courses-wrapper {
    max-width: 1920px;
    margin: 2rem 0 4rem 0;
    box-sizing: border-box;
    padding: 0 3rem;
    width: 100%;
}

  .courses-listing {
	display: none;
	
  }

    /* .courses-listing h3 { */
        /* position: relative; */
        /* width: fit-content; */
        /* text-align: center; */
        /* color: #F3EFA1; */
        /* font-size: clamp(1rem, 0.5443rem + 0.9494vw, 1.375rem); */
        /* font-family: "Bricolage Grottesque", sans-serif; */
        /* font-weight: 400; */
        /* margin: 60px auto 25px; */
    /* } */

  /*.courses-listing h3:after {
		content: '';
		background: url('../images/star-icon.png') no-repeat;
		background-size: contain;
		width: 30px;
		height: 30px;
		position: absolute;
		right: -45px;
		top: 8px;
	}*/

    .courses-listing.active {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }


  .courses-nav-wrapper {
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1rem;
    margin-bottom: 2rem;
  }

  .courses-nav-wrapper.fine-art { 
      justify-content: center; 
      column-gap: 5rem;
      max-width: 1640px;
  }

    .courses-nav-wrapper.design-show-p {
        gap: 1rem;
    }

  /*.courses-listing h3 {
	text-align: center;
	margin-bottom: 30px;
	font-size: clamp(1.625rem, 1.3212rem + 0.6329vw, 1.875rem);
  }*/

  .courses-nav-wrapper .course-item {
	width: calc((100% - 4rem)/3);
	min-height:280px;
    margin-bottom: 30px;
  }

.courses-nav-wrapper .course-item.fine-art { 
    width: calc((100% - 4rem)/2); 
    max-width: 500px;
}

@media (max-width: 767px) {
    .courses-nav-wrapper .course-item.fine-art {
        width: calc(100% - 4rem);
    }
}

@media (max-width: 480px) {
    .courses-nav-wrapper .course-item.fine-art { width: calc(100% - 1rem); }
}

    @media (max-width: 1240px) {
        .courses-nav-wrapper .course-item {
            width: calc((100% - 1rem) / 2);
        }
    }

    @media (max-width: 930px) {
        .courses-nav-wrapper .course-item {
            width: 100%;
        }

        .courses-nav-wrapper {
            gap: 1.5rem;
        }
    }

    .courses-nav-wrapper .course-item .text-wrapper a:after {
		content: '';
		position: absolute;
		background-color: white;
		height: 2px;
		width: 0;
		left: 0;
		bottom: 0px;
		transition: 0.3s;

	}
	.courses-nav-wrapper .course-item:hover .text-wrapper a:after {
		/* width: 100%; */
	}

    .courses-nav-wrapper .course-item .text-wrapper a {
        text-decoration: none;
        transition: all 0.3s;
        /* font-size: 20px; */
		font-size: clamp(1.25rem, 1.0981rem + 0.3165vw, 1.375rem);
		position:relative;
		padding-bottom: 8px;
		display: inline-block;
		position: relative;
    }

        .courses-nav-wrapper .course-item .text-wrapper a span {
            /* font-size: 16px; */
        }
.courses-nav-wrapper .course-item .text-wrapper a {
  position: relative;
  text-decoration: none;
  display: inline;
  background-image: linear-gradient(white, white);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%; /* bottom */
  transition: background-size 0.3s ease;
  line-height:1.8;
}

.courses-nav-wrapper .course-item:hover .text-wrapper a {
  background-size: 100% 2px; /* full underline */
}
  
  
  .courses-nav-wrapper .course-item .img-wrapper {
	  width: 100%;
  }
  .courses-nav-wrapper .course-item .text-wrapper {
	/* height: 20%; */
  }

    .courses-nav-wrapper .course-item .text-wrapper p a span {
        display: none;
        color: #F3EFA1;
        transition: 0.3s all;
        margin-top: 5px;
    }
    .courses-nav-wrapper.design-show-p .course-item .text-wrapper p a span {
        color: #1AE584 !important;
    }

    .courses-nav-wrapper .course-item .text-wrapper p a span {

        position: relative;
        width: max-content;
        /*text-decoration: underline;
        text-underline-offset: 3px;*/
    }
        .courses-nav-wrapper .course-item .text-wrapper p a span:after {
            content: '';
            position: absolute;
            background-color: #F3EFA1;
            height: 1px;
            width: 0;
            left: 0;
            bottom: 4px;
            transition: 0.3s;
			display: none;
        }
    .courses-nav-wrapper.design-show-p .course-item .text-wrapper p a span:after {
        background-color: #1AE584 !important;
    }
        .courses-nav-wrapper .course-item:hover .text-wrapper p a span:after {
            width: 100%;
        }

    /*.courses-nav-wrapper .course-item a:hover {
	text-decoration: underline;
  }*/

.course-item a {
    position: relative;
    display: flex;
    /*justify-content: center;*/
}

.course-gen-img{
    position: relative;
}
.course-hovered-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.course-gen-text {
    opacity: 1;
    max-width: 240px;
    object-fit: contain !important;
    aspect-ratio: unset;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

@media screen and (max-width: 600px) {
    .course-gen-text { max-width: 200px; }
}
@media screen and (max-width: 480px) {
    .course-gen-text { max-width: 160px; }
}

.course-gen-hovered-img {
    position: relative;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.course-item a:hover .course-gen-hovered-img {
    transform: scale(1.1);
    opacity: 1;
}
.course-item a:hover .course-gen-text {
    opacity: 1;
    z-index: 999;
}

.courses-nav-wrapper .course-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0px;
    aspect-ratio: 1/1 !important;
}

  .courses-nav-wrapper .course-item p {
	font-weight: bold;
	margin-top: 10px;
	position: relative;
	width: fit-content;
    margin-bottom: 1rem;
  }

  /*.courses-nav-wrapper .course-item p:after {
	content: "";
	position: absolute;
	display: block;

    top: 2px;

	right: -35px;
	background: url('../images/circled-right-arrow.png') no-repeat;
	width: 26px;
	height: 26px;
	background-size: contain;
  }*/

/**Search result**/
.mid.search .banner {
	min-height: 175px;
	height: 175px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
}

.mid.search .banner .title {
    background: unset;
    width: 95%;
    text-align: left;
    max-width: 1300px;
    margin: 0 auto;
    display: block;
}

.mid.search .banner .title span {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    width: 100%;
    text-align: left;
    font-weight: 400;
	font-size:225%;
	color:#ffffff;
}


.mid.search h2.search-result-text {
	font-weight: 500;
}

.mid.search .search-result-text span {
	font-weight: 500;	
}


/* .mid.message .cnt {
    padding-bottom: calc(100px + 2rem) !important;
} */
.mid.message .widget-zone .intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}
.mid.message .widget-zone .intro p,
.mid.message .widget-zone .msg p {
	font-size: 16px;
}
.mid.message .widget-zone .intro h2 {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.mid.message .widget-zone .intro .text {
    width: 55%;
}
.mid.message .widget-zone .intro .img {
    width: 40%;
    max-width: 600px;
    height: auto;
}
.mid.message .widget-zone .intro img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mid.message .widget-zone .msg {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 4rem;
}


/*----------------- Responsiveness -----------------*/
  

@media screen and (max-width: 1540px) {

}

@media screen and (max-width: 1350px) {
    .mid.course-banner .banner {
        padding-inline: 1rem;
    }
}

@media screen and (max-width: 1315px) {
    .mid .full-bleed-section {
        width: unset;
        margin: 0 auto;
    }

    .flex-row.vt-show-wrap{
        flex-direction: column;
    }

    .vt-show-wrap .flex-left {
        order: 2;
        margin-top: 20px;
    }

    .vt-show-wrap .flex-right {
        order: 1;
    }

    .vt-show-wrap .flex-right.w80p {
        width: 100%;
    }

    .playlist-wrapper .w100p{
        width: 25%;
    }

    .playlist-wrapper.flex-col {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .playlist-wrapper {
        gap: 20px;
    }

    .vt-show-wrap .flex-left .playlist-wrapper .flex-left {
        margin-top: unset;
    }

    .playlist-wrapper .img-wrapper {
        position: relative;
        max-width: unset; 
    }


}

@media screen and (max-width: 1280px) {

	
	
}

@media screen and (max-width: 1055px) {

}

@media screen and (max-width: 1024px) {
	
	.mid-student .student-banner .flex-wrapper {
		grid-template-columns: 1fr;
	}
	
	.mid-student .student-banner .info {
		padding: 12px 0 24px 0;
	}
}

@media screen and (max-width: 998px) {
    .playlist-wrapper.flex-col {
        flex-wrap: wrap;

    }

    .playlist-wrapper .w100p {
        width: calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 960px) {

	
}

@media screen and (max-width: 882px){
    /* .cus-dropdown:after {
        content: '';
        display: block;
        position: absolute;
        left: -50px;
        top: 9px;
        color: white;
    } */
}

@media screen and (max-width: 876px) {
}

@media screen and (max-width: 825px) {
}

@media screen and (max-width: 820px) {
}

@media screen and (max-width: 767px ){
    .mid .full-bleed-section { padding: 0 2rem; }

    .school-tab-menu-wrapper ul li.active,
    .school-tab-menu-wrapper ul li:hover {
        color: #fff;
        opacity: 1;
        background-color: #052df1;
    }

    .image-wrapper.course-logo img {
        width: auto;
        height: 250px;
    }

    .a-design-logo.blue-body.hidden, .a-fine-art-logo.blue-body.hidden {
        display: none;
    }

    .mid.course-banner .banner .heading-wrapper .tge-subpage-header-obj img {
        width: 300px;
    }

    .highlight-message-wrapper .message-slider-wrapper {
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem;
        padding: 50px 1rem 0 !important;
        margin-bottom: 30px !important;
        box-sizing: border-box;
    }

    .highlight-message-wrapper .message-slider-wrapper .swiper-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        transform: none !important;
        width: 100% !important;
        gap: 2rem;
        margin-left: 0 !important;
    }

    .highlight-message-wrapper .message-slider-wrapper .message-slide-item {
        width: 85% !important;
        max-width: 400px;
        margin-right: 0 !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        transform: scale(1) !important; /* kill the is-active scale on mobile */
    }

    .highlight-message-wrapper .swiper-button-next,
    .highlight-message-wrapper .swiper-button-prev {
        display: none !important;
    }

	
	.mid .wrapper .cnt .course-listing-wrapper { width: 100%; }

    .mid.course-banner .matter-carousel .swiper-wrapper {
        flex-direction: column;
        row-gap: 1rem;
    }

    .mid.message .widget-zone .msg {
        margin-bottom: 3rem;
    }

    .highlight-message-wrapper h2 {
        margin-bottom: 3rem;
    }

    .mid .wrapper .cnt .message-wrapper {
        margin: 2rem 0;
        margin-bottom: calc(2rem + 56px);
    }

    .mid.course-banner .banner {
        height: 200px;
        position: relative;
    }
    .mid.course-banner .banner .heading-wrapper {
        height: 200px;
    }
    .mid.course-banner .banner {
        padding-inline: 0;
    }
	
	.ceremony-wrapper {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
	
    #course-student-search-input {
        width: 100%;
    }
    .mid.celebrate .cnt {
        padding-bottom: 4rem;
    }
    .mid.course-banner .wrapper .cnt {
        padding-bottom: 4rem;
        padding-top: 1rem;
    }
    .mid.course-banner.celebrate .wrapper .cnt {
        padding: 0 1rem 5rem;
    }
    .mid.message .widget-zone .intro {
        width: 100%;
        flex-direction: column-reverse;
        gap: 20px;
        margin-bottom: 20px;
    }
    .mid.message .widget-zone .intro div {
        width: 100% !important;
    }

.faculty-message-wrapper .inner-wrapper {
	grid-template-columns: 1fr;
    gap: 48px;
    justify-content: center;
}

.mid-student .student-banner .profileImg {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    max-width: 600px;
    margin: auto;
}
.mid-student .student-banner {
	margin-top: 120px;
}


    .courses-nav-wrapper.design-show-p {
        gap: 1rem;
    }
    .courses-nav-wrapper {
        gap: 1rem;
        margin-bottom: 2rem;
        padding-inline: 16px;
    }
    .dropdown-selected-text {
        display: block;
    }
    .courses-wrapper {
        margin: 0 0 4rem 0;
        padding: 0 1rem;
    }
	.mid-student .biography h4 {
		text-align: left;
	}
	.mid-student .awards-events {
		flex-direction: column;
		gap: 30px;
	}
	.mid-student .wrapper .cnt .write-up .s50 {
		width: 100%;
	}
#fypFlipbookDiv p a {
	/* font-size: 16px; */
	padding: 8px 22px;
}
.mid-student .gallery-heading {
	/* font-size: 26px; */
}
.cus-top-margin-50 {
	margin-top: 50px;
}

	/*Course Listing*/

	.cus-dropdown input {
		padding: 10px 20px;
	}

	.cus-dropdown li {
		padding: 10px 20px;
	}

    .filter, .filter-top {
        flex-direction: column;
        /*grid-gap: 20px;*/
        padding: 1rem 0;
        align-items: flex-start;
    }
    .filter-top {padding: 0;}
    .filter {
        grid-gap: 10px;
    }

	.filter .cus-dropdown {
		width: 100%;
	}

    .alphabet-filter {
        gap: 20px;
        overflow-x: scroll;
        justify-content: flex-start;
        margin-top: 0;
    }
	
	.alphabet-filter::-webkit-scrollbar {
    height: 4px;
}

	  /* Track */
	  .alphabet-filter::-webkit-scrollbar-track {
		box-shadow: inset 0 0 5px white; 
		border-radius: 10px;
	  }
	   
	  /* Handle */
	  .alphabet-filter::-webkit-scrollbar-thumb { 
		background: white; 
		border-radius: 10px;
	  }
	  
	  /* Handle on hover */
	  .alphabet-filter::-webkit-scrollbar-thumb:hover {
		background: white; 
	  }

	.filter .catalogue-wrapper {
		width: 100%;
		height: 50px;
	}
	.mid .wrapper .cnt .course-listing-wrapper {
		margin-bottom: 1rem;
        column-gap: 1rem;
	}

	.mid .wrapper .cnt .course-listing-wrapper .course-item .img-wrapper {
		max-height: unset;
	}

    .mid .wrapper .cnt .course-listing-wrapper .course-item {
        width: calc((100% - 1rem) / 2);
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .mid.course-banner .outer-filter h2 {
        text-align: center;
        margin: 0 auto;
    }

	.mid .wrapper .cnt .course-listing-wrapper .info-wrapper p {
		margin-bottom: 0;
	}

	/*Ceremony*/

	.ceremony-wrapper .flex-wrapper .flex-left .flex-inner-wrapper {
		padding-top: 0;
	}
		
	.ceremony-wrapper .flex-wrapper {
		flex-direction: column;	
	}

	.ceremony-wrapper .flex-wrapper .flex-left {
		width: 100%;
		margin-bottom: 50px;
	}

	.ceremony-wrapper .flex-wrapper .flex-right {
		width: 100%;
	}

	.ceremony-wrapper .video-wrapper .iframe-container {
	  position: relative;
	  width: 100%;
	  overflow: hidden;
	  padding-top: 56.25%; /* 16:9 Aspect Ratio */
	}
	.ceremony-wrapper .video-wrapper .iframe-container .iframe-responsive{
	  position: absolute;
	  top: 0;
	  left: 0;
	  bottom: 0;
	  right: 0;
	  width: 100%;
	  height: 100%;
	  border: none;
	}

	/*Realtime*/

	.real-time-intro .flex-left:after {

		right: 50%;
		top: unset;
		bottom: -50px;
	}


	.real-time-intro .flex-wrapper {
		gap: 80px;
		flex-direction: column;
		box-sizing: border-box;
		padding: 0 1rem;
	}

	.real-time-intro .flex-left {
		width: 100%;
	}

	.real-time-intro .flex-right {
		width: 100%;
	}
	.real-time-intro h2 {
        margin-top: 60px;
        margin-bottom: 12px;
        padding: 0;
	}


    .school-tab-menu-wrapper ul {
        flex-direction: column;
        display: none;
        width: calc(100% - 2rem);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid #FFF; 
        top: 2rem;
        overflow: hidden;
        z-index: 9;
    }

    .school-tab-menu-wrapper ul li {
        font-weight: normal;
        margin: 0;
        position: relative;
        width: 100%;
        font-size: clamp(14px, 4vw, 18px);
        padding: 1.5rem 0;
        padding-inline: 1rem;
        background: #052df1;
        color: #FFF;
        text-align: left;
        opacity: 1;
        border-bottom: 1px solid white !important;
    }
    /*.school-tab-menu-wrapper ul li:nth-child(2) {
		padding: 0;
        padding-inline: 1rem;
	}*/
            
    .dropdown-selected-text {
        /* font-size: 20px; */
        color: #FFF;
        position: relative;
    }

    .school-tab-menu-wrapper {
        position: relative;
        text-align: left;
        margin: 20px auto 100px;
    }
    .outer-tab-s {
        border-bottom: 1px solid #FFF;
        padding-bottom: 16px;
        cursor: pointer;
    }
    .dropdown-selected-text::after {
        content: '';
        background: url('../images/dropdown-arrow.png') no-repeat;
        width: 25px;
        height: 11px;
        top: 3px;
        right: 0px;
        display: block;
        position: absolute;
        transition: transform 0.3s;
    }

    .dropdown-selected-text.active::after {
        transform: rotate(180deg);
    }


	.courses-nav-wrapper .course-item {
		width: 100%;
		min-height: unset;
	}
	
	 .courses-nav-wrapper .course-item p {
		 width: 100%;
         margin: 0;
	 }
    .course-item a .course-gen-text {
        opacity: 1;
    }
  .courses-nav-wrapper .course-item a {
	max-width: unset;
}
	.courses-nav-wrapper .course-item p:after {

		right: 0;
	}		

	.courses-nav-wrapper .course-item .img-wrapper a {
		max-width: 100%;
	}

	.courses-listing h3:after {
		right: calc(50% - 15px);
		bottom: -35px;
		top: unset;
	}

	.courses-listing h3 {
		margin: 55px 0 20px 0;
        padding: 0;
        text-align: center;
	}
	.full-bleed-section .stars-parent-wrapper {
		margin: 30px auto 0 auto;
	}



	.playlist-wrapper .text-wrapper {
		margin-left: 5px;
	}
	
	.playlist-wrapper {
		gap: 20px;
	}
	.real-time-intro {
		margin: 1rem 0 0 0;
	}
	/*Congratulative Message*/
	.heading-star-wrapper .flex-wrapper {
		padding:  0 1rem;
	}
	.heading-star-wrapper h3 {
		/* font-size: 24px; */
	}


	.heading-star-wrapper h1 {
		/* font-size: 24px; */
	}

	.highlight-message-wrapper {
		margin-top: 1rem;
	}
	

	.message-wrapper .flex-wrapper {
		margin-bottom: 1rem;
        row-gap: 16px;
	}

    /* Congratulative messages section */
    .message-wrapper.celebrate .bg-objects {
        display: none;
    }
    .mid.celebrate .wrapper {
        padding: 0;
    }

    .cnt .intro-wrapper { margin-left: 0; } 

    .mid.celebrate .intro-wrapper {
        padding: 0 1rem;
    }
    .message-wrapper.celebrate {
        padding: 0 1rem;
    }
    .highlight-message-wrapper .highlight-inner-wrapper .message-slider-wrapper {
        padding: 0 !important;
    }

    .highlight-message-wrapper {
		padding: 0;
        padding-bottom: 0;
	}
    .highlight-message-wrapper h2, .message-wrapper.celebrate h2 {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem;
    }
    .message-wrapper.celebrate h2 {
        padding: 0;
        margin-bottom: 2rem;
    }
	.highlight-message-wrapper .swiper-button-next,
	.highlight-message-wrapper .swiper-button-prev	{
		top: unset;
		bottom: 20px;
	}
	.highlight-message-wrapper .swiper-button-next {
		right: unset;
		left: 60%;
	}
	.highlight-message-wrapper .swiper-button-prev {
		left: unset;
		right: 60%;
	}
	.highlight-message-wrapper .message-slider-wrapper {
		margin-bottom: 1rem;
		box-sizing: border-box;
		padding-top: 1rem;
		overflow: visible;
	}
	.highlight-message-wrapper .swiper-wrapper {
		margin-left: 0 !important;
	}
	.highlight-message-wrapper .message-slider-wrapper .message-slide-item {
		margin: 0;
        margin-bottom: 40px;
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 1 / 1;
		max-height: 500px;
		transform: scale(1);
		transition: transform 0.3s ease;
	}
	.highlight-message-wrapper .message-slide-item.swiper-slide-active {
		transform: scale(1.2);
	}
	.highlight-message-wrapper .message-slide-item .text-wrapper {
		max-width: 500px;
	}

	/*Student Profile*/
	.mid-student .wrapper .cnt .write-up .awards-events .ttl a {
		font-family: 'OpenSauceSans', sans-serif !important;
		/* font-size: 20px; */
	}

	.mid-student .student-banner .flex-wrapper {
		align-items: flex-start;
		width: 100%;
		max-width: unset;
		padding: 0 0rem;
		flex-direction: column;
		grid-template-columns: 1fr;
        gap: 0;
	}
    .mid-student .student-banner .info {
        padding: 24px 0;
    }
	.mid-student .student-banner .tge-obj-250.tge-obj-student-wrapper-1 {
		left: unset;
		right: -1%;
		top: 80%;
		width: 250px;
		height: 250px;
	}
	.mid-student .student-banner .tge-obj-250.tge-obj-student-wrapper-3 {
		display: none;
	}

	.mid-student .student-banner {
		height: 100%;
		padding: 0 1rem;
	}

	.mid-student .wrapper .cnt .write-up {
		flex-direction: column;
		box-sizing: border-box;
		padding: 0 1rem;
	}

	.mid-student .wrapper .cnt .write-up .awards-events {
		width: 100%;
	}

	.mid-student .wrapper .cnt .write-up .desc {
		width: 100%;
	}

	.mid-student .wrapper .cnt .write-up .desc {

		padding: 0;
	}

	.mid-student .wrapper .gallery-heading {
		box-sizing: border-box;
		padding: 0;
	}

	.mid-student .wrapper .cnt .listing {
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
		padding: 0;
        margin-bottom: 30px;
	}
	
	/*Search result*/
	.mid.search .banner {
		min-height: 0;
		height:auto;
	}
	
	.mid.search .banner .title span {
		padding: 15px 0rem;
	}

	.mid.search .banner .title {
		min-height: unset;
		width: 100%;
	}
	
	.mid.search .banner .title span{
		display:inline-block;
        width: unset;
	}
	
	.mid .wrapper .cnt .message-wrapper h2:after {
		right: 0;
	}
	
	
}


@media screen and (max-width: 600px) {
/* 
    .explore span:after,
    .courses-nav-wrapper .course-item .text-wrapper p a span:after,
    .mid-student .wrapper .cnt .load-more a:after {
        content: '';
        height: 0px;
    }


    .highlight-message-wrapper .highlight-inner-wrapper .message-slider-wrapper .message-slide-item {
        padding: 0 25px;
    }
    .mid .banner {
        height: 215px;
    }
    .mid .banner h1 {
        color: #ffffff;
    }
    .heading-wrapper input {

        padding: 13px 25px;

    }
        .heading-wrapper input:hover {

            padding: 13px 25px;
        }

    .bb-1 {
        border-bottom: unset;
        box-sizing: border-box !important;
        padding: 1rem 1rem !important;
        position: relative;
    }

        .bb-1::after {
            content: '';
            background: #3f3f3f;
            height: 1px;
            width: 92%;
            bottom: 0;
            left: 50%;
            position: absolute;
            transform: translateX(-50%);
        }

    .flipbooks-listing{
    }
    .mid-student .wrapper .gallery-heading {
        box-sizing: border-box;
        padding: 0;
    }

        .mid .banner .mast-banner-text {
            width: 80%;
        }
    .mid-student .wrapper .cnt .load-more {
        margin: 20px auto 50px;
    }

    .ceremony-wrapper .flex-wrapper .flex-left {
        margin-bottom: 10px;
    }
    .real-time-intro {
        margin: 3rem 0 0 0;
    }
        
    .playlist-wrapper .playlist-item .vid-play-btn {

        width: 22px;
    }
    .playlist-wrapper .text-wrapper p {
        margin-bottom: 0;
    } */

}   


@media screen and (max-width: 500px) {
    .mid .wrapper .cnt .course-listing-wrapper .course-item {
        width: 100%;
    }

    .courses-nav-wrapper .course-item {
        width: 100%;
    }

    .mid.course-banner .banner .heading-wrapper .tge-subpage-header-obj img {
        width: 260px;
    }
}

@media screen and (max-width: 480px) {
    /* .mid-student .student-banner .tge-obj-250.tge-obj-student-wrapper-2 {
        display: none!important;
    }
    .mid-student .student-banner .info {
        margin: 0;
    }
    .mid .wrapper .cnt .course-listing-wrapper .course-item .img-wrapper {
        max-height: unset;
        max-width: unset;
    } */

    .dfa-txt { max-width: 130px; }

    .image-wrapper.course-logo img {
        width: 250px;
        height: auto;
    }

    .faculty-message-wrapper .inner-wrapper .message-item .text {
        bottom: 85px;
        width: 250px;
        height: auto;
    }

    .highlight-message-wrapper .text-wrapper p { max-height: 55px; padding: 0; }
    .highlight-message-wrapper .text-wrapper p.read-more { font-size: 18px; }
    .highlight-message-wrapper .message-slide-item .text-wrapper .class-name { font-size: 18px !important; }
}


@media screen and (max-width: 430px) {

}

@media screen and (max-width: 414px) {

}

@media screen and (max-width: 390px) {
	
}

@media screen and (max-width: 360px) {

	

}

@media screen and (max-width: 310px) {

}