/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Gotham Black';
    src: url('../fonts/Gotham Black.ttf');
}

/* CSS root  */
:root{
    --primaryColor : #51B848;
    --secondaryColor: #4F51A3;
    --greenColor: #4DB749;
    --white: #fff;
    --offwhite: #f5f5f5;
    --black: #000;
    --dark: #343843;
    --naviBlue: #393F5B;
    --textColor1: #3C3F5C;
    --textColor2: #1E1F3D;
	--headingColor: #494B8A;
    --grayColor: #818385;
    --primaryFont: "Montserrat", sans-serif;
    --gothamFont: 'Gotham Black';
}

*{
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none !important;
    font-family: var(--primaryFont);
}

html{
    width: 100%;
    height: 100%;
}
body{
    width: 100%;
	background-color: var(--white) !important;
    font-size: 16px !important;
    color: var(--textColor1) !important;
	font-family: var(--primaryFont);
    font-weight: normal !important;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin: 0 !important;
}
h2, .h2 {
    letter-spacing: 0 !important;
}

h3 {
    font-size: 26px;
    padding-bottom: 10px;
}
.blog-pg-content h3 {
    font-size: 26px;
    padding-bottom: 10px;
}
.blog-pg-content ul li {
    font-size: 14px;
    font-weight: 500;
}
ol li {
    font-size: 16px;
}
p {
    font-size:16px;
}

#welcome-screen{
    width: 100%;
    height: 100vh;
    padding: 5%;
    align-items: center;
    justify-content: center;
    background: var(--dark) url('../images/AU Building-new.webp') no-repeat top center;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    transition: all ease-out 0.5s;
    z-index: -1;
    display: none;
}
.home #welcome-screen ~ *{
    z-index: 1;
}
#welcome-screen{
    display: none;
}
.home #welcome-screen{
    display: flex;
}
.home #header{
    background: transparent;
    margin-top: 100vh;
}
.home #header:before{
    display: none;
}
.home #header.static-header:before{
    display: block;
}
.home #header.static-header{
    background: var(--dark) url('../images/header-full-bg.png') no-repeat center;
    background-size: cover;
    margin-top: 0;
    transition: all ease-out 0.5s;
}
.welcome-screen-logo{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 5%;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: -1 !important;
}
.home .welcome-screen-logo{
    display: flex;
}
#header{
    background: var(--dark) url('../images/header-full-bg.png') no-repeat center;
    background-size: cover;
    padding: 10px 0;
    position: relative;
    z-index: 3 !important;
}

#header:before{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}
#header .container, #header >*{
    position: relative;
    z-index: 1;
}
.site-logo img {
    max-width: 50px;
}
#header .navigation-left ul{
    text-align: right;
}
#header .navigation-left ul,
#header .navigation-right ul{
    padding-left: 0;
    margin-bottom: 0;
    margin-left: 0 !important;
}
#header .navigation-left ul li,
#header .navigation-right ul li{
    display: inline-block;
    padding: 5px 35px;
    position: relative;
}
#header .navigation-left ul li:not(:last-child):after,
#header .navigation-right ul li:first-child:after{
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 18px;
    width: 3px;
    background-color: var(--white);
}
#header .navigation-left ul li.btn-menu:after,
#header .navigation-right ul li.btn-menu:after{
    display: none;
}
#header .navigation-right ul li.btn-menu{
    padding-left: 0;
}
#header .navigation-left ul li a,
#header .navigation-right ul li a{
    color: var(--white);
    font-family: var(--primaryFont);
    font-size: 20px;
    font-weight: 700;
}
#header .navigation-left ul li a.active,
#header .navigation-right ul li a.active,
#header .navigation-left ul li a:hover,
#header .navigation-right ul li a:hover{
    color: var(--primaryColor);
}
#header .navigation-right ul li.btn-menu a {
    background: var(--primaryColor);
    color: var(--white);
    font-size: 18px;
    padding: 10px 15px !important;
    border-radius: 30px;
}
#header .navigation-left ul li:first-child, #header .navigation-right ul li:first-child{
    padding-left: 0 !important
}
#header .navigation-left ul li:last-child, #header .navigation-right ul li:last-child{
    padding-right: 0 !important
}
#header .navigation-left ul li.current-menu-item a,
#header .navigation-right ul li.current-menu-item a,
#header .navigation-left ul li.current-page-ancestor a,
#header .navigation-right ul li.current-page-ancestor a {
    color: var(--primaryColor);
}
/* Header CSS End Here*/

/* Secondary Navigation CSS Start Here*/
.secondary-navigation{
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
    position: relative;
    z-index: 3 !important;
}
.secondary-navigation nav > ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0 !important;
}
.secondary-navigation nav > ul > li{
    display: inline-flex;
    padding: 2px 25px;
    position: relative;
    align-items: center;
}
.secondary-navigation nav > ul > li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    width: 5px;
    height: 5px;
    background: var(--primaryColor);
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translate(50%, 0px);
}
.secondary-navigation nav > ul > li > a{
    color: var(--secondaryColor);
    font-family: var(--primaryFont);
    font-size: 16px;
    font-weight: 700;
    display: block;
    line-height: 1.25;
    padding: 8px 15px;
    max-width: 150px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.secondary-navigation nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
    height: 2px;
    bottom: -2px;
    /* transform: rotate(270deg); */
    text-align: center;
    opacity: 0;
    background-color: var(--primaryColor);
}
.secondary-navigation nav > ul > li.current-page-ancestor a,
.secondary-navigation nav > ul > li.current_page_item > a,
.secondary-navigation nav > ul > li.current_page_item > a::before {
    color: var(--primaryColor);
}
.secondary-navigation nav > ul > li.current-page-ancestor a::before,
.secondary-navigation nav > ul > li.current_page_item > a::before {
    opacity: 1;
}
.secondary-navigation nav ul li > ul.sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0px 1px 6px  -2px rgba(0,0,0,0.4);
    border-radius: 0 0 5px 5px;
    min-width: 180px;
    padding-left: 0;
    margin-bottom: 0;    transition: all ease-in-out 800ms;
    opacity: 0;
    margin: 0 !important;
display: none;
}
.secondary-navigation nav ul li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
display: block;
}
.secondary-navigation nav ul li > ul.sub-menu > li{
    padding: 5px;
    display: inline-block;
    width: 100%;
}
.secondary-navigation nav ul li > ul.sub-menu > li a{
    color: var(--secondaryColor);
    font-family: var(--primaryFont);
    font-size: 14px;
    font-weight: 500;
    display: block;
    line-height: 1.4;
    padding: 5px 15px 5px 10px;
}

/** UG Main Hero  **/
.au-ug-pg-hero{   
    background-size: cover;
    min-height: 400px;
    position: relative;
}
.au-ug-pg-hero::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.36);
}
.au-ug-pg-hero > *{
    position: relative;
    z-index: 1;
}
.au-ug-hero-top {
    padding: 25px 0px;
    display: inline-block;
    width: 100%;
    margin-bottom: 5%;
}
.au-ug-hero-top h2 {
    color: var(--white);
    font-size: 34px;
    font-family: var(--primaryFont);
    font-weight: 500;
    margin-bottom: 10px !important;
}
.au-ug-hero-top h1 {
    color: var(--white);
    font-size: 34px;
    font-family: var(--primaryFont);
    font-weight: 900;
}
.banner-boxcard {
    /* background-color: var(--primaryColor); */
    /* padding: 22px 38px; */
}
.banner-boxcard{
    /* max-width: 620px; */
}
.banner-boxcard h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
}
.banner-boxcard p{
    color: var(--white);
    font-size: 20px;
    font-family: var(--primaryFont);
    font-weight: 500;
    line-height: 1.35;
}
.au-ug-hero-bottom h4{
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 40px !important;
}
.faculty-horizontal-tab{
    display: flex;
    flex-wrap: wrap;
}
.faculty-tab-item{
    height: 700px;
    width: 20%;
    display: flex;
	background-color: var(--white);
}
.faculty-tab-item.active {
    width: 60%;
    position: relative;
    z-index: 2;
}
.faculty-tab-item.shrink {
    width: 10%;
    position: relative;
    z-index: 2;
}
@media(min-width: 768px){
    .faculty-tab-item.active {
        order: 1 !important;
    }
    .faculty-tab-item.shrink {
        order: 2;
    }
}
.faculty-bg-block {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    min-height: 400px;
}
.faculty-short-info{
    display: flex;
    align-items: flex-end;
    padding: 8% 8% 15% 8%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: visible;
    transition: all ease-in-out 350ms;
    cursor: pointer;
    overflow: hidden;
}
.faculty-bg-block:hover .faculty-short-info{
    opacity: 1;
    visibility: visible;
}
.faculty-name {
    color: #fff;
    font-family: var(--primaryFont);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}
.faculty-designation {
    color: var(--white);
    font-size: 16px;
    font-family: var(--primaryFont);
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
}
.faculti-position {
    color: var(--white);
    font-size: 16px;
    font-family: var(--primaryFont);
    font-weight: 700;
    line-height: 1.35;
}
.faculty-tab-item.active .faculty-bg-block {
    width: 33.25%;
}
.faculty-information-data{
    display: none;
    opacity: 0;
    visibility: hidden;
    width: calc(100% - 33.25%);
    padding: 15px 25px;
    max-height: 100%;
    overflow: auto;
}
.faculty-tab-item.active .faculty-information-data{
    display: block;
    visibility: visible;
    opacity: 1;
}
.faculty-info-head {
    border-bottom: 3px solid var(--white);
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.four-tabs .faculty-tab-item {
    width: 25%;
}
.four-tabs .faculty-tab-item.active{
    width: 60%;
}
.four-tabs .faculty-tab-item.shrink{
    width: 13.33%;
}
.hero-cta {
    transform: translate(0px, 0px);
    background: var(--offwhite);
    position: relative;
    z-index: 2 !important;
    display: inline-block;
    width: 100%;
    margin-bottom: -5px;
}
.hero-cta .container {
    transform: translate(0px, -50%);
    position: relative;
}
.cta-block {
    background: var(--white);
    border-radius: 30px;
    padding: 28px 15px;
    box-shadow: 0px 1px 15px -5px rgba(0, 0, 0, 0.2);
}
.cta-card-title {
    color: var(--textColor1);
    font-family: var(--primaryFont);
    font-weight: 700;
    font-size: 18px;
}
.cta-card-block:not(:last-child) {border-right: 2px solid #3F4268;}
.ug-second-section {
    padding: 60px 0 60px;
    display: inline-block;
    width: 100%;
}
.icon-left-heading {
    font-family: var(--gothamFont);
    font-size: 40px;
    color: var(--secondaryColor);
    line-height: 1.15;
}
.faculty--pop-subhead {
    font-size: 20px;
    line-height: 1.25;
    color: var(--greenColor);
    font-family: var(--primaryFont);
    font-style: italic;
    margin-bottom: 20px;
}
.faculty-info-inner .description p {
    font-size: 12px;
    color: var(--black);
    font-family: var(--primaryFont);
    font-weight: 400;
}
.member-name {
    color: var(--secondaryColor);
    font-family: var(--primaryFont);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
}
.member-name span {
    color: var(--greenColor);
}
.member-designation {
    color: var(--greenColor);
    font-size: 16px;
    font-family: var(--primaryFont);
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
}
.member-info-head {
    border-bottom: 2px solid var(--greenColor);
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.member-position {
    color: var(--greenColor);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}
.faculty-short-info-inner {
    max-width: 325px;
}
.logo-box {
    min-width: 85px;
    max-width: 85px;
}
.position-logo {
    gap: 5px;
}
.section-above-heading{
    text-align: center;
    position: absolute;
    top: 22px;
    left: 15px;
    right: 15px;
    overflow: hidden;
    z-index: 1;
}
.section-title h2{
    color: var(--white);
    font-size: 34px;
    font-family: var(--gothamFont);
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding: 0px 15px;
}
.section-title h2:before,
.section-title h2:after{
    content: '';
    position: absolute;
    width: 1000%;
    height: 2px;
    background-color: var(--white);
    top: 0;
    bottom: 0;
    margin: auto;
}
.section-title h2:before{
    right: 100%;
}
.section-title h2:after{
    left: 100%;
}
.section-subtitle {
    color: var(--white);
    font-size: 20px;
    font-family: var(--primaryFont);
    font-weight: 400;
    font-style: italic;
}
.faculty-tab-item.shrink .faculty-name{
    font-size: 12px;
}
.faculty-tab-item.shrink .faculty-designation{
    font-size: 10px;
}
.faculty-tab-item.shrink .faculti-position{
    font-size: 12px;
}
.gradient-one{
    background: var(--secondaryColor);
    background: linear-gradient(45deg, var(--secondaryColor), var(--dark));
}
.blurb-row .icon-blurb-col {
    width: 20%;
}
.atria-features{
    padding: 10px 0 35px 0;
}
.blurb-icon {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    margin: auto;
}
.blurb-icon img {
    max-height: 100%;
    max-width: 100%;
}
.blurb-title h4 {
    color: var(--white);
    text-align: center;
    font-family: var(--primaryFont);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 10px;
}
.blurb-title {
    width: 100%;
    display: inline-block;
    padding: 0px 0 15px;
}

/* Animation */
.zoom-in img:hover {
    transform: scale(1.1); /* Zoom in effect */
    transition: transform 0.3s ease-in-out; /* Smooth transition */
}
.ug-second-section{
	background-color: var(--offwhite);
	display: inline-block;
	width: 100%;
}
.ug-second-section p{
	text-align: justify;
}
.text-para p{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}
.heading h2{
	color: var(--headingColor);
	font-family: var(--primaryFont);
	font-size: 40px;
	font-weight: 700;
}
.spotlight-section{
	padding: 45px 0;
	display: inline-block;
	width: 100%;
}
.spotlight-article{
	background: url('../images/spotlight-bg.png') no-repeat center;
	background-size: cover;
	min-height: 300px;
	margin-top: 125px;
	display: inline-block;
	width: 100%;	
	padding-bottom: 75px;
}
.article-cat {
    color: var(--white);
    font-size: 22px;
}
.article-title h3 {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}
.article-excerpt {
    color: var(--offwhite);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.25;
}
.spotlight-carousel {
    margin-top: -75px !important;
    position: relative;
}
.spotlight-slide-content {
    padding-top: 95px;
    padding-left: 25px;
    padding-bottom: 20px;
}
.btn-style1 {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white) !important;
    display: inline-block;
    position: relative;
    padding: 7px 85px 7px 25px;
    line-height: 1.5;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-style1:after {
    width: 60px;
    background: #fff;
    content: '';
    position: absolute;
    right: -2px;
    height: calc(100% + 4px);
    top: -2px;
    z-index: 1;
}
.btn-style1:before {
    content: '';
    width: 14px;
    height: 14px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #63667F;
    display: inline-block;
    position: absolute;
    right: 25px;
    z-index: 3;
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    margin: auto;
}
.spotlight-content-area {
    max-width: 575px;
}
.owl-theme .owl-nav button {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background: transparent !important;
    margin: auto !important;
    font-size: 0px !important;
    border-radius: 0 !important;
}
.owl-theme .owl-nav button.owl-prev {
    left: -50px;
}
.owl-theme .owl-nav button.owl-next {
    right: -50px;
}
.owl-theme .owl-nav button span {
    width: 25px;
    height: 25px;
    display: inline-block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.owl-theme .owl-nav button.owl-prev span {
    transform: rotate(225deg);
}
.owl-theme .owl-nav button.owl-next span {
    transform: rotate(45deg);
}
.media-type {
    font-size: 24px;
    font-weight: 300;
    color: var(--textColor2);
    margin-bottom: 10px;
}
.media-title h4 {
    color: var(--naviBlue);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    margin: 10px 0 !important;
}
.media-info {
    width: 100%;
    margin-top: 15px;
}
.media-excerpt {
    color: var(--naviBlue);
    font-size: 16px;
    line-height: 1.35;
}
.btn-style1.btn-style-dark {
    border-color: var(--naviBlue);
    color: var(--naviBlue) !important;
}
.btn-style1.btn-style-dark::after {
    background: var(--naviBlue);
}
.btn-style1.btn-style-dark:before{
    border-color: #fff;
}
.other-articles {
    padding-bottom: 50px;
}
.excellence-box {
    padding: 5px !important;
    display: flex;
}
.excellence-blurb {
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.excellence-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.excellence-img {
    width: 100%;
    min-height: 400px;
}
.excellence-text {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    background-color: rgba(0,0,0,0.34);
}
.excellence-text h3{
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}
.section-heading h2{
    color: var(--headingColor);
    font-size: 40px;
    font-weight: 700;
    font-family: var(--primaryFont);
    margin-bottom: 15px !important;
}
.section-heading p {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.35;
}
.excellence-section {
    padding: 60px 0;
    background-color: #fff;
}
.button-rounded{
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.5;
    display: inline-block;
    background: var(--naviBlue);
    color: var(--white) !important;
    font-weight: 600;
    min-width: 175px;
    text-align: center;
    text-transform: uppercase;
}
.button-rounded-xs{
    border-radius: 30px;
    padding: 3px;
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1.5;
    display: inline-block;
    background: var(--naviBlue);
    color: var(--white) !important;
    font-weight: 600;
    min-width: 90px;
    text-align: center;
    text-transform: uppercase;
}
.button-rounded.green-bg{
    background: var(--primaryColor);
}
.button-rounded.blue-bg{
    background: var(--secondaryColor);
}
.parallax-bg{
    min-height: 300px;
    background-attachment: fixed;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.parallax-bg:before{
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    background: rgba(0,0,0,0.53);
}
.parallax-bg>*{
    position: relative;
    z-index: 1;
    padding: 70px 0;
}
.gallery-item-card {
    height: 450px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-featured {
    width: 100%;
    height: 100%;
}
.gallery-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item-info {
    background: rgb(57 63 91 / 80%);
    padding: 25px 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    transform: translate(0, 100%);
    transition: all ease-in-out 500ms;
}
.gallery-item-card:hover .gallery-item-info{
    transform: translate(0, 0);
}
.gallery-cat {
    color: var(--offwhite);
    font-size: 16px;
    font-weight: 800;
}
.gallery-cat-desc {
    color: var(--offwhite);
    font-size: 16px;
    line-height: 1.35;
}
#footer{
    background-color: var(--secondaryColor);
    padding: 50px 0px 15px;
    border-top: 10px solid var(--primaryColor);
    position: relative;
    z-index: 1;
}
footer#footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
.logo-text {
    font-size: 20px;
    display: inline-block;
    color: var(--white);
    font-weight: 700;
}
.footer-logo a {
    display: flex;
    gap: 5px;
    align-items: center;
}
.footer-column .footer-menu ul{
    padding-left: 0 !important;
    margin-bottom: 0;
}
.footer-menu ul {
    font-size: 0;
    margin-left: 0 !important;
    position: 0;
}
.footer-menu ul li{
    display: inline-block;
    width: 50%;
    padding: 5px 15px;
    position: relative;
}
.footer-menu ul li a:before{
    content: '';
    width: 6px;
    height: 6px;
    border-width: 1px 1px 0 0;
    border-style: solid;
    border-color: var(--offwhite);
    transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    left: -15px;
    top: 6px;
    transition: all ease-in-out 350ms;
}
.footer-menu ul li a{
    font-size: 14px;
    color: var(--offwhite);
    position: relative;
    transition: all ease-in-out 350ms;
}
.footer-menu ul li a:hover{
    color: var(--primaryColor);
}
.footer-menu ul li a:hover:before{
    border-color: var(--greenColor);
}
.copyright {
    font-size: 14px;
    color: var(--offwhite);
    margin-top: 35px;
    line-height: 1.35;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 15px;
}
.design-credit {
    font-size: 14px;
    color: var(--offwhite);
    line-height: 1.35;
}
.design-credit a {
    font-size: 14px;
    color: var(--offwhite);
    line-height: 1.35;
}
.design-credit a:hover {
    color: var(--primaryColor);
}
.footer-address{
    font-weight: normal;
    font-size: 14px;
    color: var(--offwhite);
    line-height: 1.35;
}
.footer-address a, .footer-address a:hover{ 
    color: var(--primaryColor);
}
.faculty-blurbs {
    display: flex;
    flex-wrap: wrap;
}
.faculty-blurb {
    height: 450px;
    width: 20%;
    display: flex;
}
.heading-w-icon h2 {
    color: var(--headingColor);
    font-size: 40px;
    font-weight: 700;
    font-family: var(--primaryFont);
}
.section-heading-w-icon p {
    font-size: 24px;
    color: var(--headingColor);
    font-weight: 500;
    margin-bottom: 0;
}
.section-space{
    padding: 50px 0;
}
.page-menu ul {
    padding-left: 0 !important;
    margin-left: 0;
    text-align: center;
    font-size: 0;
}
.page-menu ul li {
    display: inline-block;
    padding: 5px 30px;
    position: relative;
}
.page-menu ul li a {
    font-size: 32px;
    font-weight: 400;
    color: var(--secondaryColor);
    position: relative;
}
.page-menu ul li a.active {
    color: var(--primaryColor);
}
.page-menu ul li:not(:last-child):after {
    content: '';
    position: absolute;
    right: -3px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: var(--primaryColor);
    top: 0;
    bottom: 0;
    margin: auto;
}
.photo-masonry .masonry-item{
    padding: 5px;
}
.photo-masonry .masonry-item img {
    width: 100% !important;
}
.photo-masonry .masonry-item .img-figure {
    width: 100% !important;
}
.video-item{
    padding: 5px !important;
}
.video-item-inner{
    height: 250px;
    position: relative;
    overflow: hidden;
}
.video-item-inner .img-figure {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.video-item-inner .img-figure:before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(255,255,255,0.08);
    z-index: 1;
}
.video-item-inner .img-figure img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.video-item-inner {
    height: 300px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #fafafa;
}
img.play-icon {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: 80px !important;
    height: 80px !important;
    right: 0;
    left: 0;
    margin: auto !important;
}
.page-menu ul li a.active:after {
    content: '>';
    position: absolute;
    bottom: -20px;
    display: block;
    font-weight: 600;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    transform: rotate(270deg);
    width: 20px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    display: none;
}
.top-content p {
    font-size: 16px;
    color: var(--black);
    line-height: 1.45;
    font-weight: normal;
}
.gray-text{
    color: var(--grayColor) !important;
}
.gallery-grid {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}
.gallery-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.gallery-grid-item.big{
    grid-column: span 2;
	grid-row: span 2;
}
.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-grid-item a.button-rounded {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    height: 50px;
    width: 175px;
    line-height: 1.75;
}
.page-in2-col-hero{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 75px 0;
    z-index: 1;
}
.page-in2-col-hero:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.page-in2-col-hero .content-para p{
    font-size: 16px;
    text-align: justify;
}
.timeline-view-section{
    position: relative;
    z-index: 0;
}
.timeline-view{
    background: url('../images/programme-design/gradient-honeykomb-patterm.png') no-repeat center;
    background-size: cover;
    min-height: 100vh;
}
.timeline-wrap{
   padding: 50px 0; 
}
.timeline-content h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px !important;
}
.timeline-content p{
    color: var(--white);
    font-size: 16px;
    font-family: var(--primaryFont);
    font-weight: 400;
    text-align: justify;
}
.timeline-heading-img h3 {
    color: var(--greenColor);
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0px 0px 40px #00F0FF;
}
.timeline-heading-img h2 {
    color: var(--greenColor);
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0px 0px 40px #00F0FF;
}
.timeline-featured img {
    max-width: 300px;
    max-height: 300px;
}
.timeline-row{
    padding-top: 5%;
    padding-bottom: 5%;
}
.timeline-row:nth-child(odd) {
    flex-direction: row-reverse;
}
.timeline-heading-img,
.timeline-content{
    padding-left: 45px !important;
    padding-right: 45px !important;
    position: relative;
}
.timeline-wrap{
    position: relative;
    overflow: hidden;
}
.timeline-pen {
    position: fixed !important;
    height: 45vh;
    width: 35px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.timeline-pen .line{
    width: 2px;
    background: var(--offwhite);
    height: 100%;
}
.time-line-top-heading{
    position: relative;
    z-index: 2;
    padding: 50px 0;
}
.timeline-pen .pen {
    height: 79px;
    width: 100%;
    margin-top: -7px;
}
.timeline-data,
.timeline-content-desc{
    max-width: 480px;
    margin: auto;
    display: block;
}
.page-in2-col-hero .video-item-inner {
    height: 340px;
    border-width: 2px;
}
.hero-box-content {
    background: rgb(73 75 138 / 63%);
    padding: 35px;
    max-width: 600px;
}
.inbox-content-hero{
    position: relative;
    z-index: 1;
}
.hero-box-content h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: var(--primaryFont);
    color: var(--white);
    margin-bottom: 30px !important;
}
.hero-box-content h1 {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--primaryFont);
    color: var(--white);
}
.bg-cover{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.inbox-content-hero {
    padding: 6% 0;
}
.text-small{
    font-size: 13px;
    color: var(--black);
    font-weight: normal;
    font-family: var(--primaryFont);
}
.content-section{
    position: relative;
    z-index: 1;
    background: var(--white);
}
.admission-faq {
    background-image: url('../images/honeycomb-pattern.png');
    /* background: url(../images/programme-design/gradient-honeykomb-patterm.png) no-repeat center; */
    background-size: cover;
    background: rgb(79,81,162);
    background: -moz-linear-gradient(0deg, rgba(66,69,116,1) 4%, rgba(66,69,116,1) 89%);
    background: -webkit-linear-gradient(0deg, rgba(66,69,116,1) 4%, rgba(66,69,116,1) 89%);
    background: linear-gradient(0deg, rgba(66,69,116,1) 4%, rgba(66,69,116,1) 89%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#424574",endColorstr="#424574",GradientType=1);
}
.timeline-view.timeline-area {
    background: rgb(79,81,162);
background: -moz-linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(66,69,116,1) 89%);
background: -webkit-linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(66,69,116,1) 89%);
background: linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(66,69,116,1) 89%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4f51a2",endColorstr="#424574",GradientType=1);
}
.timeline-area:before,
.admission-faq:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/honeycomb-pattern.png') repeat center;
    background-size: 100% auto;
}
.timeline-area > *,
.admission-faq > *{
    position: relative;
    z-index: 1;
}
.au-faq button.accordion-button {
    background: rgb(59 62 124 / 95%);
    font-size: 18px;
    color: var(--white);
    font-family: var(
    --primaryFont);
    font-weight: 700;
    padding: 13px 25px;
    line-height: 1.45;
}
.au-faq .accordion-body {
    padding: 15px 25px;
    background: var(--offwhite);
    font-size: 16px;
}
.admission-faq h3 {
    font-size: 32px;
    font-family: var(--primaryFont);
    font-weight: 700;
    color: var(--white);
    max-width: 1000px;
    margin: auto !important;
}
.timeline-pen .circle {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 20px #51B848;
}
.au-faq .accordion-button.collapsed::after {
    background: transparent !important;
    content: '+';
    font-weight: 300;
    font-size: 30px !important;
    line-height: 20px;
}
.au-faq .accordion-button::after {
    background: transparent !important;
    content: '-';
    font-weight: 300;
    font-size: 30px !important;
    line-height: 20px;
}
.career-tab-menu ul {
    padding-left: 0 !important;
    margin: 0;
    font-size: 0;
    border-radius: 20px;
    box-shadow: 6px 8px 8px rgba(0,0,0,0.2);
}
.career-tab-menu ul li {
    width: 50%;
    display: inline-block;
    padding-bottom: 0 !important;
}
.career-tab-menu ul li a.active {
    background: var(--primaryColor);
    color: var(--white);
}
.career-tab-menu ul li a {
    color: var(--primaryColor);
    font-size: 24px;
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-family: var(--primaryFont);
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 25px;
}
.dark-text{
    color: var(--dark);
}
.gray-text{
    color: var(--grayColor);
}
.blue-text{
    color: var(--secondaryColor) !important;
}
.career-tab-control ul{
    padding-left: 0 !important;
    margin-left: 0 !important;
    border-bottom: 0 !important;
}
.career-tab-button {
    width: 33.33%;
    padding: 5px 5px;
    list-style: none;
}
.career-tab-button button {
    padding: 10px 35px;
    display: inline-block;
    text-align: center;
    border: 1px solid var(--secondaryColor) !important;
    border-radius: 15px !important;
    background: var(--white);
    transition: all ease-in-out 300ms;
    width: 100%;
    height: 100%;
}
.career-tab-button button .text{
    font-family: var(--gothamFont);
    font-weight: normal !important;
    font-size: 24px;
    line-height: 1.2;
    color: var(--secondaryColor) !important;
}
.career-tab-button button.active {
    background: var(--secondaryColor) !important;
}
.career-tab-button button.active .text{
    color: var(--white) !important;
}
.tab-content> .tab-pane.show {
    opacity: 1;
}
.career-content-top {
    background-color: #edeef6;
    padding: 65px 0;
}
.symbol-arrows{
    display: flex;
    justify-content: center;
    transition: all ease-in-out 300ms;
}
.symbol-arrows .left-icon {
    width: 25px;
    height: 30px;
    border-top: 30px solid #F2F2F3;
    border-left: 25px solid transparent;
    display: block;
}
.symbol-arrows .right-icon {
    width: 25px;
    height: 30px;
    border-top: 30px solid #E7E8E9;
    border-right: 25px solid transparent;
    display: block;
}
.au-symbol-arrows{
    display: flex;
    transition: all ease-in-out 300ms;
}
.au-symbol-arrows .left-icon{
    width: 25px;
    height: 30px;
    border-bottom: 30px solid #449945;
    border-left: 25px solid transparent;
    display: block;
}
.au-symbol-arrows .right-icon{
    width: 25px;
    height: 30px;
    border-bottom: 30px solid #4db749;
    border-right: 25px solid transparent;
    display: block;
}
.career-tab-button button.active .symbol-arrows {
    transform: rotate(180deg);
}
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.partner-featured-card {
    padding: 10px;
    width: 25%;
}
.partner-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 155px;
    max-width: 200px;
    width: 100%;
    margin: auto;
}
.partner-img img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.careers-partners {
    padding: 30px 0;
}
.partner-heading h2 {
    color: var(--primaryColor);
    font-size: 36px;
    font-weight: 700;
    display: inline-block;
    padding: 5px 15px;
    min-width: 220px;
}
section.career-spotlight {
    padding-right: 5%;
    padding-bottom: 5%;
}
.career-spotlight .spotlight-article {
    padding-left: 5%;
    box-shadow: 5px 5px 12px rgba(0,0,0,0.25);
}
.career-tab-button button small {
    font-size: 18px;
    display: inline-block;
    width: 100%;
    line-height: 1;
}
.icon-left-heading small {
    display: inline-block;
    width: 100%;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
}
.img-l-heading{
    display: flex;
}
.img-l-heading span.text {
    color: var(--grayColor);
    font-size: 40px;
    font-weight: 700;
    font-family: var(--gothamFont);   
    line-height: 1.1;
}
.img-l-heading .icon img {
    width: 64px !important;
}
.spotlight-slide-featured{
    position: relative;
}
.img-l-heading .icon {
    width: 64px !important;
    min-width: 64px;
    margin-right: 10px;
    margin-top: 10px;
}
.spotlight-slide-featured-inner {
    position: relative;
    width: 100%;
}
.spotlight-slide-featured .overlay {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0px;
    right: 0px;
    background: rgba(0,0,0,0.58);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.spotlight-slide-featured .overlay img.play-btn{
    margin: auto !important;
    width: 125px !important;
    min-height: auto !important;
}
.career-blurb-card{
    background: rgb(79,81,162);
    background: -moz-linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(52,56,67,1) 89%);
    background: -webkit-linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(52,56,67,1) 89%);
    background: linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(52,56,67,1) 89%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4f51a2",endColorstr="#343843",GradientType=1);
    padding: 25px;
}
.career-blurb-featured {
    width: 100%;
    margin: -80px 0 0 -60px;
    display: inline-block;
    background-color: #EDEDED;
    /*height: 300px;*/
    aspect-ratio: 1/0.58;
}
.career-blurb-featured img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.career-blurb-content {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.career-blurb-content h4 {
    color: var(--white);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 15px !important;
}
.career-blurb-content p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
}
.career-blurb {
    padding: 50px 45px !important;
}
.company-career-cards {
    margin-top: 30px;
}

.btn-style1:before,
.btn-style1:after{
    transition: all ease-in-out 350ms;
}
.btn-style1:hover:before {
    /* transform: rotate(45deg) translate(30px, -30px); */
}
.btn-style1:hover:after {
    transform: translate(1px, -5px);
    width: 100%;
}
.btn-style1 span{
    position: relative;
    z-index: 2;
}
.btn-style1:hover{
    color: var(--dark) !important;
}
.btn-style1.btn-style-dark:hover{
    color: var(--white) !important;
}
.button-rounded{
    position: relative;
}
.button-rounded:before {
    content: '';
    position: absolute;
    border-color: #bababa;
    border-width: 1px;
    border-style: solid;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50px;
    top: -5px;
    left: -5px;
    transform: scale3d(0,0,0);
    z-index: -1;
    transition: all ease-in-out 350ms;
}
.button-rounded:hover:before {
    transform: scale3d(1,1,1);
}
.career-blurb2 {
    background: #fff !important;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.career-blurb2 {
    background: #fff !important;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
}
.career-blurb2 .career-blurb-content {
    margin-top: 40px;
    min-height: 150px;
}
.career-blurb2 .career-blurb-content h4,
.career-blurb2 .career-blurb-content p {
    color: var(--secondaryColor);
}
.career-blurb2 .career-blurb-featured {
    box-shadow: 1px 4px 4px rgba(0,0,0,0.25);
}


/*** Hexagons ***/
#hexGrid {
    width: 100%;
    margin: 0 auto 100px;
    padding: 0.866% 0;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
}  
#hexGrid:after {
    content: "";
    display: block;
    clear: both;
}
.hex {
    position: relative;
    list-style-type: none;
    float: left;
    overflow: hidden;
    visibility: hidden;
    outline: 1px solid transparent;  /* fix for jagged edges in FF on hover transition */
    transform: rotate(-60deg) skewY(30deg) translatez(-1px);
}
.hexIn {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
    transform: skewY(-30deg) rotate(60deg);
    position: absolute;
    visibility: visible;
    outline: 1px solid transparent;
    cursor: pointer;
}  
  
/*** HEX CONTENT ***/
.hex img {
    left: -100%;
    right: -100%;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    position: absolute;
    transition: filter 350ms ease-out;
}
.faculty-info {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 15px 15px 55px 15px;
    left: 0;
}
.spotlight-slide-featured img {
    width: 100% !important;
    object-fit: cover;
    min-height: 500px;
    max-height: 500px;
}
.faculty-memer-name {
    border-bottom: 2px solid #fff;
    display: inline-block;
    margin-bottom: 5px;
}
.faculty-memer-name h5 {
    font-size: 18px;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px !important;
}
.faculty-member-designation {
    font-size: 12px;
    color: #fff;
    max-width: 80%;
    margin: auto;
    line-height: 1.25;
}
.faculty-modal .modal-dialog {
    max-width: 900px;
}
.faculty-modal .modal-content {
    border-radius: 25px;
}
.faculty-modal .modal-dialog .modal-header {
    padding: 0px;
    border: none;
    position: relative;
}
.faculty-modal .modal-dialog .modal-header button.btn-close {
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 1;
}
.faculty-modal .modal-dialog .modal-body {
    padding: 15px;
}
.faculty-modal-content p {
    font-family: var(--primaryFont);
    font-size: 13px;
    font-weight: normal;
    line-height: normal;
    color: #000;
}
.faculty-name-block {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondaryColor);
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 5px;
}
.faculty-name-block span {
    color: var(--primaryColor);
}
.faculty-name-block::after {
    content: '';
    position: absolute;
    left: 0;
    width: 85%;
    background: var(--primaryColor);
    height: 1px;
    bottom: 0;
}
.faculty-desgination-block {
    font-size: 18px;
    color: var(--primaryColor);
    font-style: italic;
}
.faculty-pic-profile {
    max-width: 430px;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 10px;
    background: rgb(77,183,73);
    background: -moz-linear-gradient(180deg, rgba(77,183,73,1) 48%, rgba(255,255,255,1) 48%, rgba(255,255,255,1) 52%, rgba(79,81,163,1) 52%);
    background: -webkit-linear-gradient(180deg, rgba(77,183,73,1) 48%, rgba(255,255,255,1) 48%, rgba(255,255,255,1) 52%, rgba(79,81,163,1) 52%);
    background: linear-gradient(180deg, rgba(77,183,73,1) 48%, rgba(255,255,255,1) 48%, rgba(255,255,255,1) 52%, rgba(79,81,163,1) 52%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4db749",endColorstr="#4f51a3",GradientType=1);
}
.faculty-pic-profile img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 10px solid #fff;
    width: 100%;
    object-fit: cover;
}
.faculty-modal-right-col{
    padding: 25px 45px 25px 25px!important;
}

/*** HOVER EFFECT ***/
.hex:hover img {
    filter: grayscale(0);
}
  
/*** SPACING AND SIZING ***/
  
  @media (min-width:1201px) {  /* <- 2-3  hexagons per row */
    .hex {
      width: 32.666%;    /* = (100-2) / 3 */
      padding-bottom: 37.720%;    /* =  width / sin(60) */
    }
    .hex:nth-child(5n+1),
    .hex:nth-child(5n+2) {
      transform: translateX(50%) rotate(-60deg) skewY(30deg);
    }
    .hex:nth-child(5n+3),
    .hex:nth-child(5n+4),
    .hex:nth-child(5n+5) {
      margin-top: -8.564%;
      margin-bottom: -8.564%;
    }
    .hex:nth-child(5n+2),
    .hex:nth-child(5n+4) {
      margin-right: 1%;
      margin-left: 1%;
    }
    .hex:nth-child(5n+1) {
      margin-left: 0.5%;
    }
    .hex:nth-child(5n+3),
    .hex:nth-child(5n+6) {
      clear: left;
    }
  }
  
  @media (max-width: 1200px) {  /* <- 1-2  hexagons per row */
    .hex {
      width: 49.5%;    /* = (100-1) / 2 */
      padding-bottom: 57.158%;    /* =  width / sin(60) */
    }
    .hex:nth-child(3n+1) {
      transform: translateX(50%) rotate(-60deg) skewY(30deg);
    }
    .hex:nth-child(3n+2),
    .hex:nth-child(3n+3) {
      margin-top: -13.423%;
      margin-bottom: -13.423%;
    }
    .hex:nth-child(3n+1) {
      margin-left: 0.5%
    }
    .hex:nth-child(3n+3) {
      margin-left: 1%;
    }
    .hex:nth-child(3n+2),
    .hex:nth-child(3n+4) {
      clear: left;
    }
  }
  
  @media (max-width: 400px) {
    #hexGrid {
      font-size: 13px;
    }
  }
  
/* End Hexagons */


.pagination {justify-content: center;}
.pagination .page-numbers {
    min-width: 30px;
    height: 30px;
    background: var(--secondaryColor);
    margin: 3px;
    text-align: center;
    padding: 3px;
    line-height: 24px;
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
}
.pagination .page-numbers.current {
    background: var(--primaryColor);
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
    background: transparent;
    color: var(--secondayColor);
    font-size: 14px;
}
.secondary-navigation nav ul li > ul.sub-menu >li >.sub-menu {
    left: 100%;
    top: 0;
    border-radius: 0 5px 5px 0;
    padding-left: 0 !important;
}
.secondary-navigation nav ul li > ul.sub-menu > li.menu-item-has-children:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--secondaryColor);
    border-right: 2px solid var(--secondaryColor);
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}
.secondary-navigation nav ul li > ul.sub-menu > li {
    border-bottom: 1px solid rgba(0,0,0,0.10);
}
.secondary-navigation nav ul li > ul.sub-menu > li:hover {
    background: var(--primaryColor);
}
.secondary-navigation nav ul li > ul.sub-menu > li:hover > a {
    color: #fff;
}
.secondary-navigation nav ul li > ul.sub-menu > li.menu-item-has-children:hover:after {
    border-top-color: var(--white);
    border-right-color: var(--white);
}

.inner-pg-banner {
    height: 75vh;
    min-height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4% 3%;
}
.banner-boxi-text h1 {
    background: #fff;
    display: inline;
    font-size: 55px;
    line-height: 1.5;
    font-weight: 700;
}
.inline-right-icons-text {
    color: var(--grayColor);
    font-size: 46px;
    line-height: 1.1;
    font-family: var(--gothamFont);
    font-weight: 700;
}
.inline-right-icons-text .au-symbol-arrows {
    display: inline-flex;
}
.right-cell-corner-block {
    background: rgb(79 81 163 / 10%);
    position: relative;
    padding: 3% 5% !important;
}
.text-small{
    font-size: 13px;
    color: #000;
    line-height: 1.35;;
}
.overview-section {
    padding: 80px 0;
}
.spotlight-article2 .spotlight-slide-featured-inner {
    border: 5px solid #fff;
}
.career-spotlight .spotlight-article.spotlight-article2 {
    box-shadow: 5px 0px 20px rgba(0,0,0,0.35);
}
.right-corner-section {
    padding-left: 5%;
}
.right-corner-inner {
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.right-corner-overlay{
    padding: 5% 0 5% 5%;
    background-color: rgba(0,0,0,0.7);
}
.content-area-box p{
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}
.collarboration-pg-banner,
.career-pg-banner{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.collarboration-pg-banner{
    height: 350px;
}
.banner-overlay{
    background-color: rgba(0,0,0,0.45);
    height: 100%;
    width: 100%;
}
.collaboration-tabs {
    padding: 50px 0;
}
.tab-menu-nav ul{
    margin: 0 !important;
    border: none;
    background: #fff;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.20);
}
.tab-menu-nav ul li {
    list-style: none;
}
.tab-menu-nav ul li.nav-item.tab-nav-button {
    width: 33.33%;
    padding: 0;
}
.nav-item.tab-nav-button button {
    font-size: 24px;
    width: 100%;
    border: none;
    border-radius: 15px;
    color: var(--secondaryColor);
    font-weight: 600;
    line-height: 1.25;
    padding: 15px;
    height: 100%;
}
.nav-item.tab-nav-button button.active {
    background: var(--secondaryColor);
    color: #fff;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    font-weight: 600;
}
.collaboration-inner {
    padding: 50px 0;
}
.industry-card-in {
    box-shadow: 3px 3px 5px rgba(0,0,0,0.25);
    border-radius: 2px;
    padding: 20px;
    text-align: center;
    height: 100%;
}
.industry-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}
.industry-card {
    padding: 35px !important;
}
.industry-img{
    width: 100%;
    margin-bottom: 10%;
}
.profile-description p {
    font-size: 12px;
    padding-top: 10px;
}
.two-columns-full-section {
    padding-top: 70px;
    padding-bottom: 10px;
    background: #fff;
}
.two-columns-full-inner {
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.10);
    background: #f1f1f1;
    min-height: 350px;
    padding: 50px 0;
}
.img-wrap {
    width: 100%;
    min-height: 500px;
    height: 100%;
    background: #ccc;
    margin-top: -100px;
    border: 5px solid #fff;
}
.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-col-block {
    max-width: 500px;
}
.content-col h2 {
    font-size: 30px;
    color: var(--secondaryColor);
    margin-bottom: 15px !important;
}
.content-col p {
    font-size: 18px;
    line-height: 1.45;
    color: #101010;
    text-align: justify;
}
.collarboration-pg-banner h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px !important;
}
.collarboration-pg-banner a {
    color: #fff;
    text-decoration: underline !important;
    font-size: 24px;
    font-weight: 400;
}
.manangement-short-info-in .member-info-head {border-bottom: none;}
.manangement-short-info-in .member-name {
    border-bottom: 2px solid var(--primaryColor);
    margin-bottom: 8px;
    padding-bottom: 5px;
}

.side-bar{
    background: #1b1a1b;
    backdrop-filter: blur(15px);
    width: 250px !important;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -250px;
    overflow-y: auto;
    transition: 0.6s ease;
    transition-property: left;
    z-index: 9;
    padding: 0 !important;
}
.side-bar::-webkit-scrollbar {
    width: 0px;
}
.side-bar.active{
    left: 0;
}
.side-bar .menu{
    width: 100%;
    margin-top: 30px;
}
.side-bar .menu .item{
    position: relative;
    cursor: pointer;
    padding: 1px 0 !important;
}
.side-bar .menu .menu-item a{
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    line-height: 30px;
}
.side-bar .menu > .menu-item > a{
    font-size: 16px;
    font-weight: 600;
}
.side-bar .menu >.menu-item > a:hover,
.side-bar .menu >.menu-item > a.active{
    background: var(--primaryColor);
    transition: 0.3s ease;
}
.side-bar .menu .item i{
    margin-right: 15px;
}
.side-bar .menu .item a .dropdown {
    position: absolute;
    right: 6px;
    margin: 7px;
    transition: 0.3s ease;
    top: 5px;
}
.side-bar .menu .item .sub-menu{
    background: #262627;
    display: none;
    margin: 0 !important;
}
.side-bar .menu .item .sub-menu li{
    list-style: none !important;
    padding: 1px 0 !important;
}
.side-bar .menu > .menu-item > .sub-menu > li > a{
    font-size: 16px;
}
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li > a{
    font-size: 14px;
}
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li > ul li a {
    font-size: 13px;
}
.rotate{
    transform: rotate(90deg);
}
.close-btn {
    position: absolute;
    color: var(--primaryColor);
    font-size: 18px;
    right: 10px;
    cursor: pointer;
    top: 10px;
    font-weight: 400;
    width: 30px;
    text-align: center;
    border: 1px solid;
    border-radius: 50px;
    height: 30px;
}
.menu-btn{
    position: relative;
    color: #fff;
    font-size: 28px;
    margin: -50px 0 0 0px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}
.menu-sidebar-header img {
    max-width: 35px;
    display: block;
}
.menu-sidebar-header {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.side-bar .menu > .menu-item.current-menu-parent > a,
.side-bar .menu > .menu-item.current-menu-item > a,
.side-bar .menu > .menu-item.current-menu-ancestor > a{
    background: var(--primaryColor);
}
.side-bar .menu > .menu-item > .sub-menu > li > a:hover,
.side-bar .menu > .menu-item > .sub-menu > li >  a.active,
.side-bar .menu > .menu-item > .sub-menu > li.current-menu-parent > a,
.side-bar .menu > .menu-item > .sub-menu > li.current-menu-item > a {
    background: var(--secondaryColor) !important;
}
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li > a:hover,
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li > a.active,
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li.current-menu-parent > .sub-menu > a,
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li.current-menu-item > a{
    background: var(--naviBlue);
}
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li > ul > li a:hover,
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li > ul > li a.active,
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li > ul > li.current-menu-parent > .sub-menu > a,
.side-bar .menu > .menu-item > .sub-menu > li > .sub-menu > li > ul > li.current-menu-item > a{
    color: var(--primaryColor);
    font-weight: 500;
}
.individual-member-section{
    padding: 100px 0;
}
.blog-pg-detail {
    padding: 50px 0;
}
.post-title {
    font-size: 38px;
    font-weight: 700;
    color: #4f52a2;
    line-height: 1.25;
}
.blog-pg-content p {
    font-size: 14px;
    color: #58595b;
    line-height: 1.5;
    font-weight: 500;
}
.blog-pg-content h2 {
    font-size: 30px;
    color: #4f52a2;
    margin-bottom: 15px !important;
}
.blog-pg-content {
    width: 100%;
    margin-top: 60px;
}
.post-date{
    font-size: 18px;
    color: #4f52a2;
    font-weight: 500;
    margin-top: 12px;
}
.blog-pg-detail .img-l-heading span.text {
    font-size: 48px;
}
.blog-pg-detail .img-l-heading {
    align-items: center;
}
.footer-socials ul li {
    list-style: none;
    display: inline-block;
}
.footer-socials ul {
    margin: 25px 0 !important;
}
.footer-socials ul li a img {
    width: 20px;
}
.footer-socials ul li a {
    display: block;
    padding: 5px;
    background: rgba(0,0,0,0.15);
    border-radius: 3px;
    height: 40px;
    width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-socials ul li {
    padding: 3px;
}
.footer-socials ul li a:hover {background: rgba(0,0,0,0.25);}
#homepage-hero-slider .item {
    padding: 0 0 150px;
    min-height: 600px;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
#homepage-hero-slider .item:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}
#homepage-hero-slider .owl-nav {margin: 0;}
#homepage-hero-slider .owl-nav button.owl-prev {
    left: 0;
}
#homepage-hero-slider .owl-nav button.owl-next {
    right: 0;
}
.heading-w-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.heading-w-logo span img {
    max-width: 100px;
    max-height: 50px;
}

.overview-child-menu{
    padding: 50px 0 20px;
}
.overview-child-menu h2{
    font-weight: 900;
    font-size: 60px;
    color: var(--secondaryColor);
    margin-bottom: 0px !important;
}
.overview-menu-cols {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin: 0 -5% !important;
}
.overview-menu-item{
    padding: 15px;
    width: 16.66%;
}
.overview-menu-link{
    filter: grayscale(1) opacity(0.5);
    transition: all ease 0.5s;
}
.overview-menu-link:hover,
.overview-menu-link.active{
    filter: grayscale(0) opacity(1);
}
.overview-menu-item .img img {
    max-width: 100px;
    margin: auto;
    display: block;
}
.overview-menu-item h5 {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #4F51A3;
    font-size: 20px;
}
.spotlight-slide {
    padding: 5px;
}
.our-faculty{
    background: #fff;
    padding-top: 0px;
}
.sub-page-title {
    display: flex;
    gap: 15px;
    align-items: center;
}
.subpage-title-icon img {
    max-width: 50px;
}
.subpage-title-icon {
    min-width: 50px;
}

.secondary-navigation nav>ul.menu> li.current-page-ancestor > a {
    color: var(--secondaryColor);
}
.secondary-navigation nav>ul.menu> li.current-page-ancestor > a::before {
    opacity: 0;
}
.secondary-navigation nav>ul.menu> li.current-menu-ancestor > a {
    color: var(--primaryColor);
}
.secondary-navigation nav>ul.menu> li.current-menu-ancestor > a::before {
    opacity: 1;
}

#return-to-top {
    position: fixed;
    bottom: 110px;
    right: 20px;
    background: var(--secondaryColor);
    width: 50px;
    height: 50px;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1 !important;
    border: 2px solid var(--primaryColor);
    display: none;
}
span.icon--up {
    width: 18px;
    height: 18px;
    border-width: 5px 5px 0 0;
    border-style: solid;
    border-color: #fff;
    display: inline-block;
    transform: rotate(-45deg);
    border-radius: 4px;
    margin-top: 5px;
}
#return-to-top:hover {
    background: var(--primaryColor);
}
#return-to-top .scroll-up {
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
#homepage-hero-slider {
    z-index: 2 !important;
}
.welcome-content {
    position: absolute;
    bottom: 100px;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.35;
    width: 100%;
    left: 0;
    padding: 0 25px;
}
.welcome-screen-logo img {
    max-width: 750px;
    width: 70%;
}
.faculty-cta-inner {
    max-width: 800px;
}
.faculty-cta-inner h3 {
    margin-bottom: 8px !important;
}
.faculty-cta-inner p {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 25px;
}
.faculty-cta-inner p a {
    color: var(--greenColor);
}
.coe-banner {
    max-height: 620px;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #dddef7;
    padding: 85px 0;
    position: relative;
}
.coe-banner .container{
    position: relative;
    z-index: 1;
}
.coe-banner:before{
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.coe-banner h3{
    color: var(--offwhite);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 500;
}
.coe-banner h2 {
    color: var(--offwhite);
    font-size: 48px;
    line-height: 1.35;
    font-weight: 700;
    margin: 15px 0 !important;
}
.coe-banner h4{
    color: var(--offwhite);
    font-size: 28px;
    line-height: 1.35;
    font-weight: 400;
}
.coe-banner-content {
    max-width: 760px;
}
.coe-content-section{
    padding: 75px 0 50px;
}
.coe-content-section p{
    font-size: 20px;
}
.cta-block.ctb-block2 {
    background: var(--offwhite);
    box-shadow: 5px 8px 8px rgba(0, 0, 0, 0.2);
}
.team-card {
    padding: 15px 0;
    height: 100%;
}
.team-card-inn {
    height: 100%;
    background: #e8e8e8;
}
.team-card-profile {
    width: 100%;
    aspect-ratio: 1/0.875;
    background: var(--offwhite);
    overflow: hidden;
}
.team-profile-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.team-card-info {
    background: #E8E8E8;
    width: 100%;
    padding: 20px;
}
.profile-name {
    font-size: 12px;
    color: var(--secondaryColor);
    font-weight: 700;
}
.profile-detail {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(0,0,0,0.5);
}
.section-heading2 h2 {
    font-size: 52px;
    color: #1C2D41;
    margin-bottom: 10px !important;
}
.section-heading2 p {
    color: #000;
    font-size: 24px;
}
.coe-team-section {
    padding: 25px 0 25px;
}
.coe-logo-section{
    background: rgb(79,81,162);
    background: -moz-linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(55,69,107,1) 89%);
    background: -webkit-linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(55,69,107,1) 89%);
    background: linear-gradient(180deg, rgba(79,81,162,1) 4%, rgba(55,69,107,1) 89%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4f51a2",endColorstr="#37456b",GradientType=1);
    padding: 25px 0;
}
.coe-logo-title h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}
.coe-logo-title {
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}
.coe-logo-card {
    padding: 40px 25px;
}
.coe-logo-featured {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coe-logo-featured img {
    max-height: 100%;
    max-width: 100%;
}
.join-us-section{
    background: url('../images/coe/joinus-bg.png') no-repeat center;
    padding: 45px 0;
    position: relative;
}
.join-us-section:before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}
.join-us-content{
    position: relative;
    z-index: 1;
}
.join-us-content p{
    font-size: 20px;
    color: #fff;
}
.logo-section-text {
    padding: 50px 0 15px;
}

.logo-section-text h3 {
    font-size: 32px;
    color: var(--secondaryColor);
    margin-bottom: 10px !important;
}
.logo-section-text p {
    color: #1C2D41;
    font-size: 18px;
}
.project-slider-section {
    background: rgb(79 81 163 / 20%);
    padding: 50px 0;
}
.project-slide-info {
    background: var(--white);
    padding: 35px 45px 35px 25px;
    margin-left: -85px;
    width: 110%;
    min-height: 200px;
}
.project-slide-info h4 {
    font-size: 20px;
    line-height: 1.25;
    color: var(--secondaryColor);
    margin-bottom: 5px !important;
}
.project-slide-info p {
    font-size: 15px;
    color: #1C2D41;
    line-height: 1.4;
}
.project-slide-info-outer{
    padding-top: 5%;
    padding-bottom: 5%;
}
.project-slider .item-inn {
    min-height: 350px;
}
.project-slide-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.project-slide-img-in {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.project-slider.owl-theme .owl-nav button span {
    border-top: 2px solid var(--secondaryColor);
    border-right: 2px solid var(--secondaryColor);
}
.project-slider.owl-theme .owl-nav button.owl-prev{
    left: -100px;
}
.project-slider.owl-theme .owl-nav button.owl-next{
    right: -100px;
}
.item-inn,
.item-inn > .row {
    display: flex;
}
.card-block-section .section-heading{
    padding: 40px 0;
}
.card-block-in {
    padding: 30px;
    background: rgb(0 0 10 / 4%);
    width: 100%;
}
.card-block-box-out {
    padding: 15px;
}
.card-block-box{
    padding: 25px;
    background: rgb(0 0 10 / 8%);
    height: 100%;
}
.card-block-box h4 {
    font-size: 25px;
    color: #1C2D41;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 5px !important;
}
.card-block-box h5{
    color: #52585F;
    font-size: 16px;
    margin-bottom: 5px !important;
}
.card-block-box h6{
    font-size: 12px !important;
    color: #4F51A3;
    font-weight: 600;
    margin-bottom: 5px !important;
}
.card-block-box ul {
    margin-bottom: 0;
}
.card-block-box ul li {
    font-size: 16px;
    color: #52585F;
    font-weight: 500;
    padding-bottom: 3px !important;
}
.card-block-text ul li {
    font-size: 12px;
}
.card-block-text p{
    font-size: 12px;
}
.button-rounded.xl {
    padding: 15px 25px;
    font-size: 24px;
    border-radius: 50px;
    font-weight: 700;
}
.card-block-in .button-rounded {
    transform: translate(0px, 60px);
}

.tag-area-inn {
    padding-top: 25px;
    padding-left: 15%;
}
.tag-area-inn h3 {
    font-size: 32px;
    font-weight: 600;
    color: #51b848;
    text-transform: uppercase;
}
.tag-area-inn ul li {
    list-style: none !important;
    padding: 5px;
    display: inline-block;
}
.tag-area-inn ul {
    margin-left: 0 !important;
    font-size: 0;
}
.tag-area-inn ul li a {
    border-radius: 30px;
    background-color: #ededed;
    padding: 6px 13px;
    display: block;
    font-size: 20px;
    line-height: normal;
    color: #393f5b;
}
.card-blurb-section {
    padding: 100px 0 50px;
}
.card-blurb-wrap {
    padding: 25px !important;
}
.card-blurb-featured{
	position: relative;
	z-index: 1;
}
.blurb-featured-hero {
    background: aliceblue;
    background: -moz-linear-gradient(180deg, rgba(79, 81, 162, 1) 0%, rgba(55, 69, 107, 1) 89%);
    background: -webkit-linear-gradient(180deg, rgba(79, 81, 162, 1) 0%, rgba(55, 69, 107, 1) 89%);
    background: linear-gradient(180deg, rgba(79, 81, 162, 1) 0%, rgba(55, 69, 107, 1) 89%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4f51a2",endColorstr="#37456b",GradientType=1);
    width: 62.75%;
    padding: 25px;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.15);
    margin-bottom: -35px;
    margin-left: -25px;
}
.card-blurb-body {
    background: #DCDCED;
    padding: 50px 22px;
}
.card-blurb-body-in h3 {
    color: #1C2D41;
    font-weight: 700;
    font-size: 25px;
}
.blurb-featured-hero img {
    max-height: 175px;
    display: block;
    margin: auto;
}
.blurb-featured-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 225px;
}
.card-blurb-content p {
    color: #52585F;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}