
:root{
    --primary-purple: #590059;
    --secondary-purple: #731a73;
    --secondary-purple-dark: #7c697c;
    --secondary-purple-light: #863f86;
    --tertiary-purple: #9e119e;
    --tertiary-purple-light: #9e559e;
    --purple-text-dark: #2b002b;
    --purple-text-light: #8e818e;
    --primary-black: #1e001e;
    --secondary-black: #464646;
    --grey-dark: #978f97;
    --gray-light:#F6F6F6;
    --white: #ffffff;
    --purple-bullet: #f3d9f3;
}

body {
    margin: 0;
      font-family: "Source Sans 3", sans-serif;
}

img{
    max-width: 100%;
    height: auto;
}

h1 {
    font-family: "Libre Baskerville", serif;
    font-size: 64px;
    line-height: 75px;
    font-weight: 600;
}

h2 {
    font-family: "Libre Baskerville", serif;
    font-size: 48px;
    line-height: 57px;
    font-weight: 600;
}

h3 {
    font-family: "Libre Baskerville", serif;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
}
h4 {
    font-family: "Libre Baskerville", serif;
    font-size: 24px;
    line-height: 39px;
    font-weight: 600;
}
h5 {
    font-family: "Libre Baskerville", serif;
    line-height: 39px;
    font-weight: 600;
}
.body-1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.body-2 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.caption {
    font-size: 12px;
    font-weight: 300;
}

p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    margin: 0;
}

a {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: var(--purple-text-dark);
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
    width: fit-content;
    cursor: pointer;
}

a:hover {
    border-bottom-color: inherit; 
}

img {
    max-width: 100%;
    height: auto;
}

.mobile-hidden {
    display: block;
}

.desktop-hidden {
    display: none;
}

@media screen and (max-width: 767px) {
    .mobile-hidden {
        display: none;
    }
    
    .desktop-hidden {
        display: block;
    }
}

/* Text color classes */

.txt-white {
    color: var(--white);
}

.txt-black {
    color: var(--primary-black);
}

.txt-primary-purple {
    color: var(--primary-purple);
}

/* Background color clasess */

.bg-primary-purple {
    background-color: var(--primary-purple);
}

.bg-secondary-purple-dark {
    background-color: var(--secondary-purple-dark);
}

.bg-secondary-purple-light {
    background-color: var(--secondary-purple-light);
}
.bg-secondary-gray-light {
    background-color: var(--gray-light);
}

.bg-white {
    background-color: var(--white);
}

.bg-neutral-2 {
    background-color: var(--neutral-base-2);
}

@media screen and (max-width: 767px){
    h1 {
        font-size: 44px;
        line-height: 55px;
    }
    
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    h3 {
        font-size: 24px;
        line-height: 30px;
    }
}

/* Navigation */

.secondary-navigation ul {
    list-style: none;
    padding: 10px 0;
}

.primary-navigation .navigation-items .nav-item a:hover {
    border-bottom-color: var(--white);
}

.primary-navigation .navbar-brand .image-container {
    width: 35px;
    height: 41px;
}

.primary-navigation .navigation-items .nav-item.dropdown .dropdown-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border: solid var(--white);
    border-width: 1px 1px 0 0;
    transform: rotate(135deg);
    margin-left: 8px;
}

.primary-navigation .navigation-items .hamburger-menu {
    z-index: 2;
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.primary-navigation .navigation-items .bar,
.primary-navigation .navigation-items .bar:after,
.primary-navigation .navigation-items .bar:before {
    width: 100%;
    height: 2.5px;
    border-radius: 20px;
}

.primary-navigation .navigation-items .bar {
    position: relative;
    transform: translateY(10px);
    background: rgba(255, 255, 255, 1);
    transition: all 0ms 300ms;
}

.primary-navigation .navigation-items .bar.animate {
    background: rgba(255, 255, 255, 0);
}

.primary-navigation .navigation-items .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    background: rgba(255, 255, 255, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-navigation .navigation-items .bar:after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    background: rgba(255, 255, 255, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-navigation .navigation-items .bar:before,
.primary-navigation .navigation-items .bar:after {
   width: 50%;
}

.primary-navigation .navigation-items .bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-navigation .navigation-items .bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.primary-navigation .navigation-items .bar.animate:after,
.primary-navigation .navigation-items .bar.animate:before {
   width: 100%;
}

.show {
    left: 0%;
    opacity: 1;
}

.hide {
    opacity: 0;
    left: 100%;
}

.mobile-navigation {
    background: var(--primary-purple);
    position: fixed;
    top: 68px;
    width: 100vw;
    height: calc(100vh - 68px);
    text-align: center;
    transition: .4s ease;
    z-index: 999;
    overflow: auto;
    /*  transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -webkit-transition: opacity .5s ease;
    transition:left .5s ease-in-out;*/
}

.mobile-navigation .menu--main ul li.menu-item--expanded > a::after {
    content: "";
    width: 8px;
    height: 8px;
    border: solid var(--white);
    border-width: 1px 1px 0 0;
    transform: rotate(135deg);
    margin-left: 15px;
    position: absolute;
    right: 0;
    top: 14px;
    transition: 0.3s all;
}

.mobile-navigation .menu--main ul li.menu-item--expanded > a.active::after {
   transform: rotate(315deg);
}
.mobile-navigation .menu--main ul li .menu li{
    padding: 10px;
    white-space: nowrap;
    color: #fff;
    font-weight: 300;
}
/* .mobile-navigation .menu--main ul li.menu-item--expanded a
.mobile-navigation .nav-item.dropdown .dropdown-toggle.active::after {
    transform: rotate(315deg);
} */
.mobile-navigation .menu--main ul li{
    padding: 8px 0;
    position: relative;
}
.mobile-navigation .menu--main ul li a{
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
    /* opacity: 0; */
    transition: opacity .9s ease-in-out;
}
.mobile-navigation .menu--secondary-menu ul{
    list-style-type: none;
    display: flex;
    justify-content: space-between !important;
    margin: 0;
    padding: 0;
}
.mobile-navigation .menu--secondary-menu li {
    margin: 20px 0 !important;
    margin-right: 0px !important;
}
.mobile-navigation .menu--secondary-menu a{
    text-decoration: none;
    color: white;
    font-size: 14px;
}
.mobile-navigation .search-ct{
    border-bottom: 1px solid #fff;
    padding: 0 15px 25px;
}

.mobile-navigation .search-container {
    display: flex;
    align-items: center;
}

.mobile-navigation .search-input {
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    width: 100%;
    padding-right: 40px;
    height: 42px;
}

.mobile-navigation .search-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 0px;
    position: absolute;
    right: 12px;
}

.mobile-navigation ul {
    list-style: none;
    padding-left: 0;
}

.mobile-navigation ul li {
    text-align: left;
}

.mobile-navigation a {
    font-size: 14px;
    line-height: 19px;
    color: var(--white);
    opacity: 0;
    transition: opacity .9s ease-in-out;
}

.mobile-navigation a:hover,
.mobile-navigation a:focus {
    color: var(--white)
}

.mobile-navigation.show a {
    opacity: 1;
}

.mobile-navigation .nav-item.dropdown .dropdown-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border: solid var(--white);
    border-width: 1px 1px 0 0;
    transform: rotate(135deg);
    margin-left: 15px;
}


/* dropdown */
.menu-item--expanded .menu{
    display: none;
}
@media(max-width:1200px){
    .menu-item--expanded .menu{
        display: initial;
    }
    .navbar-nav > .menu-item--expanded > .menu {
        display: none;
    }
    /* .desk-secondary-menu-list > .menu-item--expanded > .menu {
        display: none;
    } */
}
.primary-navigation .navigation-items .nav-item.menu-item--expanded > a:hover{
    border: 0;
}
.primary-navigation .navigation-items .nav-item.menu-item--expanded .menu{
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    top: 66px;
    /* min-width: 100%; */
}
.primary-navigation .navigation-items .nav-item.menu-item--expanded:hover > .menu{
    display: block;
}
.primary-navigation .navigation-items .nav-item.menu-item--expanded .menu li{
    padding: 0px 20px 0 15px;
    white-space: nowrap;
    margin: 0 !important;
}
.primary-navigation .navigation-items .nav-item.menu-item--expanded .menu li a{
    color: var(--primary-black);
    /* border-bottom: none; */
    padding: 10px 10px 10px 0;
    width:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.primary-navigation .navigation-items .nav-item.menu-item--expanded .menu li a:hover{
    border-bottom-color: transparent !important;
}
.primary-navigation .navigation-items .nav-item.menu-item--expanded .menu li:hover{
    background-color: #f0f0f0;
}
.primary-navigation .navigation-items .nav-item.menu-item--expanded > a::after {
    display: inline-block;
    box-sizing: border-box;
    content: "";
    width: 8px;
    height: 8px;
    border: solid var(--white);
    border-width: 1px 1px 0 0;
    transform: rotate(135deg);
    margin-left: 8px;
    margin-right: 5px;
    top: -2px;
    position: relative;
}
/* .navbar .navbar-nav .nav-item > a:hover {
    background-color: #3d013d5e;
} */
.primary-navigation .navigation-items li {
    padding: 22px 15px;
}

/* Video Banner Section */

.video-hero-banner-section .video-wrapper{
    position: relative;
    width: 100%;
    height: 700px;
}

.video-hero-banner-section .video-wrapper::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.29) 0%, rgba(255, 255, 255, 0) 100%);
}

.video-hero-banner-section .video-wrapper video {
    display: block;
    width: 100%;
    height: 700px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.video-hero-banner-section .video-wrapper .video-heading-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 75px;
    width: 65%;
    margin: 0 auto;
    height: 100%;
    align-items: center;
}

.video-hero-banner-section .video-wrapper .video-heading-container .video-heading{
    color: var(--white);
    text-align: center;
    font-size: 64px;
    line-height: 75px;
    max-width: 950px;
}

@media screen and (max-width: 767px) {
    .video-hero-banner-section .video-wrapper .video-heading-container .video-heading{
        font-size: 48px;
        line-height: 60px;
    }
    .video-hero-banner-section .video-wrapper .video-heading-container{
        width: 100%;
    }
}

/* Announcements Bar */

.announcements-bar {
    background-color: var(--grey-dark);
    padding: 15px 0;
    overflow: hidden;
}

.announcements-bar ul {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    margin-bottom: 0;
}

.announcements-bar ul li {
    font-size: 16px;
    line-height: 22px;
    color: var(--white);   
    margin: 0 15px; 
}

.announcements-bar ul li::marker {
    color: var(--white);
}

@keyframes marquee {
    0% { 
        transform: translate(0, 0); 
    }

    100% { 
        transform: translate(-100%, 0); 
    }
}

/* Explore section  */

/* Explore section  */
.explore-section {
    padding: 60px 0;
}
.explore-section h2  {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 52px;
}
.explore-section .innner-ct {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.explore-section .tabs {
    width: 40%;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.explore-section .tabs li {
    padding: 20px 15px;
    cursor: pointer;
    text-align: left;
    color: #8E818E;
    font-size: 32px;
    padding-left: 0;
    font-family: 'Libre Baskerville", serif';
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.explore-section .tabs li:hover, .explore-section .tabs li.active {
    color: #590059;
}

.explore-section .tabs li img {
    display: none;
}

.explore-section .tabs li.active img{
    display: inline-block;
    margin-left: 10px;
}

.explore-card {
    width: 60%;
    padding: 25px 35px;
    border: 1px solid #863F86;
    border-radius: 8px;
}
.explore-card img {
    width: 100%;
    height: auto;
}

.explore-card .read-more-ct {
    display: flex;
    justify-content: flex-start;
    margin: 20px 0;
}

.explore-card .read-more {
    display: block;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--primary-purple);
    background: var(--white);
    padding: 10px 45px;
    color: var(--purple-text-dark);
    font-size: 16px;
    line-height: 19px;
}

.explore-card .read-more:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.explore-card .read-more img {
    width: 28px;
}

.explore-card .description {
    margin-top: 15px;
    color: #464646;
    line-height: 28px;
}

.accordion.tab-content {
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-out;
}

.accordion.tab-content.active {
    max-height: 1000px;
}

.explore-section .tabs li .accordion-icon {
    display: none;
}

.explore-section #mobileAccordion .acc-content {
    margin-bottom: 25px;
}

.explore-section #mobileAccordion .accordion-button {
    width: 100%;
    padding: 0;
    color: var(--purple-text-light);
    background: transparent;
    box-shadow: none;
    font-size: 20px;
}

.explore-section #mobileAccordion .accordion-button[aria-expanded="true"] {
    color: var(--primary-purple);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='15' viewbox='0 0 24 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 14L12 2L1 14' stroke-width='2' stroke='%238e818e' /%3E%3C/svg%3E");    stroke: var(--purple-text-light);
    transform: rotate(-180deg);
    width: 25px;
    height: 20px;
    background-size: contain;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='15' viewbox='0 0 24 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 14L12 2L1 14' stroke-width='2' stroke='%23590059' /%3E%3C/svg%3E");    
    stroke: var(--primary-purple);
    transform: none;
}

@media screen and (max-width: 1024px) {
    .explore-section .tabs li {
        padding: 15px 15px;
    }
}

@media screen and (max-width: 767px) {
    .explore-section {
        padding: 30px 0 10px;
    }

    .explore-section h2  {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .explore-section .innner-ct {
        flex-wrap: wrap;
    } 

    .explore-section .tabs {
        width: 100%;
    }

    .explore-section .tabs li {
        font-size: 24px;
        padding: 15px 0px !important;
        justify-content: space-between;
    }

    .explore-card {
        width: 100%;
        border-radius: 0px;
        margin-top: 20px;
        background: var(--gray-light);
    }

    .explore-section .tabs .accordion .content {
        margin-bottom: 20px;
    }

    .explore-section .tabs li.active .arrow {
        display: none;
    }

    .explore-section .tabs li .accordion-icon {
        display: block;
        stroke: var(--purple-text-light);
        transform: rotate(180deg);
    }

    .explore-section .tabs li.active .accordion-icon {
        stroke: var(--primary-purple);
        transform: none;
    }
}


/* Stats Section */

.stats-section {
    padding: 50px 0;
}

.stats-section .stats-heading {
    color: var(--primary-black);
    width: 400px;
    margin-bottom: 0
}

.stats-section .stats-container {
    width: 1080px;
    margin: 0 0 0 auto;
    background-color: var(--white);
    border: 1px solid var(--tertiary-purple);
    padding: 40px 0;
    transform: translateY(-15px);
}

.stats-section .stats-container .stats-inner-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.stats-section .stats-container .stats-inner-container .stats-box {
    position: relative;
    width: 26%;
    padding: 20px 30px;
}

.stats-section .stats-container .stats-inner-container .stats-box::after {
    position: absolute;
    content: '';
    height: 75%;
    border-right: 1px solid var(--tertiary-purple);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.stats-section .stats-container .stats-inner-container .stats-box:nth-child(1) {
    width: 21%;
}

.stats-section .stats-container .stats-inner-container .stats-box:nth-child(3) {
    width: 18%;
}

.stats-section .stats-container .stats-inner-container .stats-box:nth-child(4)::after {
    display: none;
}

.stats-section .stats-container .stats-inner-container .stats-box .stat-info-container {
    display: flex;
    align-items: center;
}

.stats-section .stats-container .stats-inner-container .stats-box .stat-info-container .stat-number {
      font-family: "Source Sans 3", sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 76px;
    color: var(--primary-purple);
    margin-right: 5px;
}

.stats-section .stats-container .stats-inner-container .stats-box .stat-info-container .stat-text {
      font-family: "Source Sans 3", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    color: var(--primary-purple);
}

.stats-section .stats-container .stats-inner-container .stats-box .stat-secondary-text {
      font-family: "Source Sans 3", sans-serif;
    font-size: 26px;
    font-weight: 200;
    line-height: 36px;
    color: var(--primary-purple);
}

/* Floating Card Section */

.floating-card-section {
    padding: 80px 0;
}

.floating-card-section .floating-card-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.floating-card-section.reverse .floating-card-container {
    flex-direction: row-reverse;
}

.floating-card-section .floating-card-container .floating-card-left {
    width: 40%;
}

.floating-card-section .floating-card-container .floating-card-left .image-container{
    width: 298px;
    height: 409px;
    background-color: var(--secondary-purple);
}

.floating-card-section.reverse .floating-card-container .floating-card-left .image-container{
    float: right;
}

.floating-card-section .floating-card-container .floating-card-left .image-container img{
    position: absolute;
    top: -50px;
    left: 25px;
    object-fit: cover;
    object-position: center;
}

.floating-card-section.reverse .floating-card-container .floating-card-left .image-container img{
    left: auto;
    right: 25px;
}

.floating-card-section .floating-card-container .floating-card-right {
    width: 60%;
}

.floating-card-section .floating-card-container .floating-card-right .floating-card-info-container {
    background-color: var(--white);
    border: 1px solid var(--primary-purple);
    border-radius: 8px;
    padding: 50px;
    position: relative;
    z-index: 3;
    min-height: 490px;
    display: flex;
    flex-direction: column;
}

.floating-card-section .floating-card-container .floating-card-right .floating-card-info-container .heading {
    color: var(--primary-black);
    font-family: 'Roboto';
    margin-bottom: 30px;
}

.floating-card-section .floating-card-container .floating-card-right .floating-card-info-container .description-container {
    flex-grow: 1;
}

.floating-card-section .floating-card-container .floating-card-right .floating-card-info-container .description-container .description {
    color: var(--secondary-black);
      font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.floating-card-section .floating-card-container .floating-card-right .floating-card-info-container .card-cta {
    background-color: var(--white);
    border: 1px solid var(--primary-purple);
    color: var(--purple-text-dark);
    font-size: 16px;
    line-height: 19px;
    padding: 10px 45px;
    text-decoration: none;
    font-family: 'Roboto';
    display: inline-block;
    width: max-content;
    margin-top: 15px;
    transition: all 0.3s;
}

.floating-card-section .floating-card-container .floating-card-right .floating-card-info-container .card-cta:hover {
    background: var(--primary-purple);
    color: var(--white);
} 

/* Boards Section */

/* Boards Section */

.boards-section {
    background-color: #ffffff;
    padding: 50px 0 60px;
    border-bottom: 1px solid #950095;
    border-top: 1px solid #950095;
}

.boards-section .boards-container .image-container {
   width: fit-content !important;
}
.boards-section h2 {
    margin-bottom: 40px;
    font-weight: 500;
}
.boards-section .slick-track {
    display: flex;
    justify-content: space-between;
}
.boards-section .slick-track:before, .slick-track:after {
    display: block !important;
    content: initial !important;
}
.boards-section .slick-arrow.slick-prev {
    position: absolute;
    top: -78px;
    right: 30px;
    cursor: pointer;
}

.boards-section .slick-arrow.slick-next {
    position: absolute;
    right: 0px;
    top: -78px;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .boards-section {
        padding: 30px 0;
    }

    .boards-section .boards-container .image-container {
        width: 20%;
    }

    .boards-section .boards-container .image-container img {
        max-width: 90%;
        height: auto;
    }
    .boards-section .slick-arrow.slick-prev { 
        right: 40px;
        top: -72px;
    }
    .boards-section .slick-arrow.slick-next {
        right: 10px;
        top: -72px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1024px){
    .boards-section .boards-container .image-container img {
        max-width: 90%;
    }
}

/* Echoes of Experience Section */

.echoes-experience-section {
    /* background-color: var(--secondary-purple); */
    padding: 70px 0;
}

.echoes-experience-section .heading {
    color: var(--primary-black);
    margin-bottom: 35px;
}

.echoes-experience-section .experience-slider .slick-arrow{
    position: absolute;
    display: flex !important;
    cursor: pointer;
    top: -20px
}

.echoes-experience-section .experience-slider .slick-arrow.slick-disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.echoes-experience-section .experience-slider .slick-arrow.slick-prev {
    right: 70px;    
}

.echoes-experience-section .experience-slider .slick-arrow.slick-next {
    right: 35px;
}

.echoes-experience-section .experience-slider  .experience-card-ct {
    padding: 20px;
    position: relative;
    min-height: 450px;
    margin: 0px;
}

.echoes-experience-section .experience-slider  .experience-card-ct .bg-color {
    background-color: #590059;
    height: 365px;
    width: 50%;
    position: absolute;
    left: 0px;
    bottom: 0;
    z-index: -1;
}

.echoes-experience-section .experience-slider .experience-card {
    /* background-color: var(--secondary-purple-light); */
    padding: 70px 20px 30px 20px;
    position: relative;
    border-radius: 8px;
    /* margin-right: 20px; */
    border: 1px solid var(--secondary-purple);
    background-color: var(--white);
}

.echoes-experience-section .experience-slider .experience-card .experience-text-container {
    text-align: center;
    color: var(--primary-black);
    font-size: 18px;
    line-height: 28px;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
}

.echoes-experience-section .experience-slider .experience-card .experience-text-container p {
    margin-bottom: 0
}

.echoes-experience-section .experience-slider .experience-card .experience-text-container .alumni {
    text-align: right;
    margin-top: 30px;
    font-size: 16px;
}

.echoes-experience-section .experience-slider .experience-card .image-container {
    position: absolute;
    top: 20px;
    left: 24px;
}

.echoes-experience-section .experience-slider .experience-card .image-container img,
.echoes-experience-section .experience-slider .experience-card .logo-background-image img {
    object-fit: contain;
}

.echoes-experience-section .experience-slider .experience-card .logo-background-image {
    position: absolute;
    bottom: 25%;
    right: 70px;
    opacity: 0.1;
}

@media(max-width:767px){
    .echoes-experience-section {
        padding: 40px 0;
    }
    .echoes-experience-section .heading {
        margin-bottom: 10px;
        font-weight: 400;
    }
    .echoes-experience-section .experience-slider {
        margin-bottom: 20px;
    }
    .echoes-experience-section .experience-slider .experience-card {
        padding: 70px 10px 25px 10px;
        border-radius: 2px;
    }
    .echoes-experience-section .experience-slider  .experience-card-ct {
        margin-right: initial;
        margin: 0 10px;
        padding: 15px 0 15px 15px;
    }
    .echoes-experience-section .experience-slider .experience-card .experience-text-container p {
        font-size: 16px;
    }
    .echoes-experience-section .experience-slider .experience-card .experience-text-container .alumni {
        font-size: 14px;
    }

    .echoes-experience-section .experience-slider .slick-arrow {
        top: -44px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
    .echoes-experience-section .experience-slider .slick-arrow {
        top: -64px;
    }
}


/* Footer */

.footer-navigation {
    background-color: var(--white);
    border-top: 1px solid var(--primary-purple);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--primary-purple);
}

.footer-navigation .footer-column-heading {
    font-family: 'Roboto';
    font-size: 22px;
    line-height: 34px;
    color: var(--primary-black);
    font-weight: 400;
    margin-bottom: 12px;
}

.footer-navigation .footer-column-list {
    list-style: none;
    padding-left: 0;
}

.footer-navigation .footer-column-list .footer-column-list-item a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--grey-dark);
    margin: 7px 0;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}

.footer-navigation .footer-column-list .footer-column-list-item:first-child {
    margin-top: 0;
}

.footer-navigation .footer-social-links {
    display: flex;
    align-items: center;
}

.footer-navigation .footer-social-links img {
    margin-right: 30px;
}

.footer-navigation .footer-background-image {
    position: absolute;
    bottom: 25px;
    right: -40px;
    opacity: 0.1;
}

.footer-navigation .footer-background-image img {
    object-fit: contain;
}

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

    .footer-navigation {
        padding: 20px 0 10px;
    }

    .footer-navigation .footer-column-heading {
        font-size: 20px;
        line-height: 30px;
    }

    .footer-navigation .footer-column-list .footer-column-list-item {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-navigation .footer-social-links {
        width: 50%;
        padding-left: calc(var(--bs-gutter-x)* .5);
    }
}

.navbar-brand {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 21px;
   
    display: flex;
    border: 0;
    white-space:unset;
}
.navbar-brand:hover{
    border: 0;
    color: var(--white);
}
.nav-logo-text{
    width: 240px;
    font-family: "Libre Baskerville", serif;
    font-size: 16px;
    font-weight: 400;
}
.nav-item a{
    color: var(--white);
    font-weight: 400;
}
.secondary-navigation li a{
    font-family: "Source Sans 3", sans-serif;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    color: var(--primary-purple);
}
.mobileMenuwrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.region-mobile-primary-menu .navbar-nav{
    display: none;
    flex-direction:row !important;
}
.region-primary-menu .navbar-nav{
    display: flex;
}

.footer-social-links a{
    border: 0;
}

.footer-social-links a:hover{
    border: 0;
}


/* Mobile css */
@media screen and (max-width: 767px){
.region-mobile-primary-menu .navbar-nav{
    display: flex !important;
    flex-direction:column !important;
}
.region-primary-menu .navbar-nav{
    display: none;
}
/* .nav-logo-text {
    width: auto;
} */

.primary-navigation .navbar-brand .image-container{
    width: 40px;
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .region-mobile-primary-menu .navbar-nav{
        display: flex !important;
        flex-direction:column !important;
    }
}

.page-node-type-page .sticky-top{
    position: relative;
    z-index: 99;
    padding: 0;
    min-height: 68px;
}


/* system styles admin panel */
.button{
    background-color: var(--white);
    border: 1px solid var(--primary-purple);
    color: var(--purple-text-dark);
    font-size: 16px;
    line-height: 19px;
    padding: 10px 45px;
    text-decoration: none;
    font-family: "Source Sans 3", sans-serif;
    display: inline-block;
    width: max-content;
    margin-top: 15px;
    transition: all 0.3s;
    margin-bottom: 15px;
    margin: 0.5rem;
}
.button:hover {
    background: var(--primary-purple);
    color: var(--white);
} 
.layout-builder-discard-changes{
    margin-bottom: 10px;
}
.form-actions{
    margin: 1rem 0.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.js-form-item-toggle-content-preview{
    margin-top: 10px;
}


.vertical-tabs {
    margin: 1em 0 1em 15em;
    border: 1px solid #ccc;
}

[dir="rtl"] .vertical-tabs {
    margin-right: 15em;
    margin-left: 0;
}

.vertical-tabs__menu {
    float: left;
    width: 15em;
    margin: -1px 0 -1px -15em;
    padding: 0;
    list-style: none;
    border-top: 1px solid #ccc;
}

[dir="rtl"] .vertical-tabs__menu {
    float: right;
    margin-right: -15em;
    margin-left: 0;
}

.vertical-tabs__pane {
    margin: 0;
    border: 0;
}

.vertical-tabs__pane > summary {
    display: none;
}

.vertical-tabs__menu-item {
    border: 1px solid #ccc;
    border-top: 0;
    background: #eee;
}

.vertical-tabs__menu-item a {
    display: block;
    padding: 0.5em 0.6em;
    text-decoration: none;
}

.vertical-tabs__menu-item a:focus .vertical-tabs__menu-item-title,.vertical-tabs__menu-item a:active .vertical-tabs__menu-item-title,.vertical-tabs__menu-item a:hover .vertical-tabs__menu-item-title {
    text-decoration: underline;
}

.vertical-tabs__menu-item a:hover {
    outline: 1px dotted;
}

.vertical-tabs__menu-item.is-selected {
    border-right-width: 0;
    background-color: #f7f7f7;
}

[dir="rtl"] .vertical-tabs__menu-item.is-selected {
    border-right-width: 1px;
    border-left-width: 0;
}

.vertical-tabs__menu-item.is-selected .vertical-tabs__menu-item-title {
    /* color: var(--white); */
}

.vertical-tabs__menu-item-summary {
    display: block;
    margin-bottom: 0;
    line-height: normal;
}
.layout-tabs {
    background-color: var(--secondary-purple-light);
}

.tabs.primary {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0em;
    padding: 0;
    list-style: none;
    flex-wrap: initial;
}

.tabs__tab {
    margin: 0;
    /* background-color: var(--purple-bullet); */
}

.tabs__tab.is-active {
    background-color: var(--purple-bullet);
    color: var(--primary-black);
}

.tabs__tab a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--white);
    background-color: inherit;
}

.tabs__tab a.is-active {
    background-color: inherit;
    color: var(--primary-black);
}

.tabs__tab a:focus,.tabs__tab a:hover {
    outline-offset: -5px;
    background-color: var(--purple-bullet);
    color: var(--primary-black);
}
/* Spotlight Section */

.spotlight-section {
    background-color: #f6f6f6;
    padding: 50px 0;
}

.spotlight-section .heading {
    color: var(--primary-black);
    margin-bottom: 50px;
}

.spotlight-section .spotlight-cards-container {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 25px; */
}

.spotlight-section .spotlight-cards-container .spotlight-card {
    background-color: var(--white);
    border-radius: 7px;
    padding: 20px 15px 15px 20px;
    box-shadow: 0px 6px 17px 0px rgba(244, 237, 244, 0.73);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 15px;
    height: 100%;
    /* width: 48%;
    */
}

.spotlight-section .spotlight-cards-container .spotlight-card .left-section {
    width: 20%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.spotlight-section .spotlight-cards-container .spotlight-card .left-section img {
    aspect-ratio: 1;
    object-fit: cover;
}

.spotlight-section .spotlight-cards-container .spotlight-card .left-section .image-container img {
    object-fit: cover;
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-heading {
    display: -webkit-box;
    font-family: 'Open Sans';
    color: var(--primary-black);
    font-size: 18px;
    line-height: 22px;
    overflow: hidden;
    height: 44px;
    max-height: 44px;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}
.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-heading a {
    border-bottom: none;
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-tags .tag {
    padding: 3px 10px;
    border: 1px solid var(--primary-purple);
    font-size: 12px;
    line-height: 12px;
    color: var(--primary-black);
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-tags .tag a:hover {
    border: 0;
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-heading .heading {
    margin-bottom: 0;
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-description p {
    display: -webkit-box;
    font-family: 'Open Sans';
    color: var(--secondary-black);
    font-size: 14px;
    line-height: 19px;
    /* overflow: hidden;
    height: 76px;
    max-height: 76px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis; */
    margin-top: 3px;
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-description .p {
    margin-bottom: 0;
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px
}

.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-footer .release-date .date {
    font-size: 12px;
    line-height: 16px;
    color: var(--grey-dark);
    font-family: 'Open Sans';
    font-weight: 300;
}
.spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-footer .arrow-container {
    border-bottom: none;
}

.spotlight-section .spotlight-cta-container {
    text-align: center;
    margin-top: 30px
}

.spotlight-section .spotlight-cta-container .spotlight-cta {
    background-color: var(--white);
    border: 1px solid var(--primary-purple);
    color: var(--purple-text-dark);
    font-size: 16px;
    line-height: 19px;
    padding: 10px 45px;
    text-decoration: none;
    font-family: "Source Sans 3", sans-serif;
    display: inline-block;
    width: max-content;
    margin-top: 15px;
    transition: all 0.3s;
}

.spotlight-section .spotlight-cta-container .spotlight-cta:hover {
    background: var(--primary-purple);
    color: var(--white);
}

@media screen and (max-width: 767px) {
    .spotlight-section {
        padding: 30px 0;
    }

    .spotlight-section .heading {
        margin-bottom: 30px;
    }

    .spotlight-section .spotlight-cards-container {
        flex-direction: column;
        justify-content: flex-start;
    }

    .spotlight-section .spotlight-cards-container .spotlight-card {
        width: 100%;
    }

    .spotlight-section .spotlight-cards-container .spotlight-card .left-section {
        width: 30%;
    }

    .spotlight-section .spotlight-cards-container .spotlight-card .left-section .image-container {
        width: 100;
    }

    .spotlight-section .spotlight-cards-container .spotlight-card .left-section .image-container img {
        max-width: 100%;
        height: auto;
    }

    .spotlight-section .spotlight-cards-container .spotlight-card .right-section {
        width: 70%;
    }

    .spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-heading {
        font-size: 16px;
        line-height: 20px;
        /* height: 40px;
        max-height: 40px; */
    }

    /* .spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-heading .heading {
        margin-bottom: 0;
    } */

    .spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-description {
        font-size: 13px;
        line-height: 18px;
        /* height: 72px;
        max-height: 72px; */
    }

    .spotlight-section .spotlight-cards-container .spotlight-card .right-section .card-footer .release-date .date {
        font-size: 10px;
        line-height: 13px;
    }

    .spotlight-section .spotlight-cta-container {
        margin-top: 0;
        margin-bottom: 10px;
    }
}


/* history section  style */
.history-section{
    width: 100%;
    max-height: 700px;
    height: 100%;
    /* background: url('../images/history-sec-bg.png'); */
    padding: 90px 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.background-image-with-slider-section .content-section .content-block {
    width: 100%;
    max-height: 700px;
    height: 100%;
    background: var(--desktop-bg);
    padding: 90px 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.background-image-with-slider-section .content-section .content-block .reverse {
    flex-direction: row-reverse;
}

.background-image-with-slider-section .content-section .slick-track {
    display: flex !important;
}

.background-image-with-slider-section .content-section .slick-slide {
    height: auto;
}

.about-card {
    background-color: #ffffff;
    /* width: 40%; */
    padding: 30px 40px 50px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    min-height: 480px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

.about-history .content-section .content-block:first-child .about-card {
    max-width: 570px;
}

.about-history .content-section .content-block:nth-child(2) .about-card {
    max-width: 610px;
}

.about-card h2 {
    margin: 20px 0;
    font-weight: 400;
}

.about-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #464646;
    line-height: 30px;
}

.content-card-cta {
    background-color: var(--white);
    border: 1px solid var(--primary-purple);
    color: var(--purple-text-dark);
    font-size: 16px;
    line-height: 19px;
    padding: 10px 45px;
    text-decoration: none;
    font-family: "Source Sans 3", sans-serif;
    display: inline-block;
    width: max-content;
    margin-top: 15px;
    transition: all 0.3s;
}

.content-card-cta:hover {
    background: var(--primary-purple);
    color: var(--white);
}

@media screen and (width <= 576px) {
   .background-image-with-slider-section .content-section .about-card {
      margin: 40px 20px 0;
   }
}

@media screen and (max-width: 767px) {
    .history-section { 
        background: linear-gradient(to bottom, white 30%, transparent 30%);
        /* url('../images/history-sec-mobile-bg.png'); */
        max-height: initial;
        padding: 0 0 30px;
        min-height: 1000px;
        background-size: 100% 100% !important;
    }

    .background-image-with-slider-section {
        background: #f6f6f6;
        position: relative;
    }

    .background-image-with-slider-section .content-section {
        padding-top: 60px;
    }

    .background-image-with-slider-section .content-section .content-block {
        background: var(--mobile-bg);
        max-height: initial;
        padding: 0;
        min-height: 1000px;
    }

    .background-image-with-slider-section .content-section .slick-arrow.slick-prev {
        position: absolute;
        top: 40px;
        right: 60px;
    }
    
    .background-image-with-slider-section .content-section .slick-arrow.slick-next {
        position: absolute;
        top: 40px;
        right: 25px;
    }

    .background-image-with-slider-section .content-section .slick-arrow.slick-disabled {
        cursor: not-allowed;
        opacity: 0.3;
    }

    .background-image-with-slider-section .content-section .about-card { 
        width: 100%;
        padding: 20px 20px 35px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px){
    .background-image-with-slider-section .content-section .content-block {
        max-height: none;
        background-position: center;
    }
}


/* Community section  */
.community-section {
    background-color: #F6F6F6;
    padding: 0 0 80px;
}
.community-section .inner-ct {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.img-ct-wrapper {
    width: 45%;
    position: relative;
    margin-top: 40px;
    height: fit-content;
}
.community-section .img-ct {
    width: 100%;
    position: relative;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(to bottom, rgba(89, 0, 89, 0) 10%, #590059 10%);
    z-index: 2;
}
.community-section img {
    position: relative;
    right: 0px;
    top: 0;
    width: 100%;
    z-index: 10;
    transform: translate(25px, -25px);
}
.community-section .about-card {
    width: 100%;
}
.community-section .content-ct-wrapper {
    width: 45%;
}
.community-section .content-ct-wrapper h2 {
    font-size: 42px;
}
@media(min-width:768px) and (max-width:1024px){
    .community-section .content-ct-wrapper {
        width: 48%;
    }
}
@media screen and (max-width:767px){
    .community-section {
        padding: 40px 0;
    }
    .community-section .content-ct-wrapper h2{
        font-size: 28px;
    }
    .community-section .inner-ct {
        flex-direction: column;
        align-items: flex-start;
    }
    .community-section .img-ct-wrapper  {
        width: 95%;
        margin-bottom: 40px;
    }
    .community-secction .img-ct {
        background: linear-gradient(to bottom, rgba(89, 0, 89, 0) 0%, #590059 0%);
    }
    .community-section .content-ct-wrapper {
        width: 100%;
    }
    .community-section .about-card {
        min-height: 460px;
        padding: 20px;
    }
    .community-section img {
        position: relative;
        right: 0px;
        top: 0;
        width: 100%;
        z-index: 10;
        transform: translate(15px, -15px);
    }
}


/* Result section  */
.result-section {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 60px 0;
}
.result-section .container {
    padding: 0px;
}

.result-section .container .row {
   margin-right: auto;
}

.result-section h2 {
    margin-bottom: 30px;
}
.result-section .tabs {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    /* border-bottom: 1px solid #bd93b8; */
    overflow: auto;
    position: relative;
}

.result-section .tabs-container {
   position: relative;
   margin-bottom: 30px;
   -ms-overflow-style: none;
   scrollbar-width: none;
}

.result-section .tabs-container::after {
   content: '';
   width: 100%;
   border-bottom: 1px solid #bd93b8;
   position: absolute;
   bottom: 1px;
   left: 0;
}

.result-section .tab.active::after {
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    background: white;
    left: 0;
    z-index: 2;
}

.tabs-container::-webkit-scrollbar { 
    display: none;
}

.result-section .tab {
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
}
.result-section .tab.active {
    border-bottom: 0px solid #F6F6F6;
}
.result-section .statistics {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    border: 1px solid #bd93b8;
    padding: 30px;
    flex-wrap: wrap;
    border-radius: 4px;
}
.result-section .stat {
    margin: 0 20px;
    width: 28%;
    display: flex;
    justify-content: center;
}
.result-section .stat:nth-child(2){
    border-right: 1px solid #bd93b8;
    border-left: 1px solid #bd93b8;
    padding: 10px;
}
.result-section .stat .number {
    font-size: 48px;
}
.result-section .stat .text {
    font-size: 20px;
    font-weight: 300;
}
.result-section .photos {
    display: flex;
    justify-content: flex-start;
    column-gap: 20px;
    row-gap:40px;
    flex-wrap:wrap;
}
.result-section .photo {
    margin: 0 0px;
    width: 23.75%;
}
.result-section .photo .img-ct {
    margin-bottom: 15px;
}
.result-section .photo img {
    width: 100%;
    object-fit: cover;
}
.result-section .photo .number {
    font-size: 38px;
}
.result-section .photo .name {
    font-size: 20px;
    font-weight: 300;
}
.result-section .tab-content { display: none; }
.result-section .tab-content.active { display: block; }

@media(min-width:768px) and (max-width:1024px){
    .result-section .statistics {
        padding: 15px;
    }
    .result-section .statistics .stat {
        width: 25%;
    }
}
@media screen and (max-width:767px){
    .result-section {
        padding: 40px 10px;
    }
    .result-section .statistics {
        padding: 10px 0px 25px;
        justify-content: start;
    }
    .result-section .stat {
        width: 50%;
        margin: 0 0px;
    }
    .result-section .stat:nth-child(2) {
        border: none;
    }
    .result-section .photos {
        flex-wrap: wrap;
        column-gap: 10px;
    }
    .result-section .photo {
        width: 48%;
    }
    .map-section h2 {
       margin-bottom: 0 !important;
    }
}
@media(min-width:601px) and (max-width:1200px){
    .result-section .photo {
        width: 48%;
    }
    .result-section .photos {
        column-gap: 20px;
    }
}

#mobileAccordion .explore-card .read-more {
   background: var(--white);
}


/* Announcements Section  */

.announcement-section {
    padding: 60px 0 100px;
    border-top: 1px solid var(--secondary-purple-light);
    border-bottom: 1px solid var(--secondary-purple-light);
}

.announcement-section h2,
.echoes-experience-section h2 ,
.spotlight-section h2 {
   font-weight: 400;
   margin-bottom: 0;
}

.announcement-section .announcements-slider {
    margin-top: 60px;
}

.announcement-section .announcements-slider .slick-list {
    margin: 0 -15px;
}

.announcement-section .announcements-slider .announcement-card {
    margin: 0 15px;
    background: var(--white);
    padding: 15px 15px 35px;
    border: 0.5px solid var(--secondary-purple-light);
    border-radius: 4px;
}

.announcement-section .announcements-slider .announcement-card .content-ct {
    margin-top: 20px;
}

.announcement-section .announcements-slider .announcement-card .content-ct h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.announcement-section .announcements-slider .announcement-card .content-ct p {
    font-size: 16px;
    line-height: 28px;
    color: var(--secondary-black);
}

.announcement-section .announcements-slider .announcement-card .content-ct .cta {
    display: inline-block;
    width: 45%;
    border: 1px solid var(--primary-purple);
    background: var(--white);
    color: var(--primary-black);
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    padding: 10px 0;
    margin-top: 15px;
    font-family: "Source Sans 3", sans-serif;
}

.announcement-section .announcements-slider .announcement-card .content-ct .cta:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.announcement-section .announcements-slider .announcement-card .image-ct img {
    width: 100%;
}

.announcement-section .announcements-slider .slick-arrow{
    position: absolute;
    display: flex !important;
    cursor: pointer;
    top: -40px
}

.announcement-section .announcements-slider .slick-arrow.slick-disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.announcement-section .announcements-slider .slick-arrow.slick-prev {
    right: 50px;   
    top: -52px; 
}

.announcement-section .announcements-slider .slick-arrow.slick-next {
    right: 15px;
    top: -52px;
}

@media screen and (max-width: 767px){
    .announcement-section {
        padding: 40px 0 60px;
    }

    .announcement-section .announcements-slider {
        margin-top: 10px;
    }

    .announcement-section .announcements-slider .slick-list {
        margin: 0;
    }

    .announcement-section .announcements-slider .announcement-card {
        margin: 0 5px;
    }
}

/* map section  */

.map-section h2 {
    font-weight: 500;
    margin-bottom: 50px;
}

.map-section {
    padding: 60px 0;
}

.map-section .map-wrapper {
    margin: 65px 0;
}

.map-section .university-list-row a {
    text-decoration: underline;
    font-weight: 600;
}

.map-section .university-list-row a:hover {
    border: none;
}

.map-section .content {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
}

.map-section .left-column {
    flex: 1;
    margin-right: 20px;
}

.map-section h3 {
    font-size: 32px;
    color: #1E001E;
    margin-bottom: 20px;
    font-weight: 500;
}

.map-section .university-list {
    list-style-type: none;
    padding: 0;
    font-size: 1em;
    color: #8E818E;
}

.map-section .university-list li {
    margin-bottom: 5px;
}

.map-section .view-more {
    display: inline-block;
    margin-top: 10px;
    color: #1E001E;
    font-size: 18px;
    font-weight: 600;
}

.map-section .right-column {
    flex: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.map-section .map-container {
    padding: 10px;
    max-width: 900px;
}

.map-section .map-image {
    width: 100%;
    height: auto;
}

.map-section .navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.map-section .slick-arrow.slick-prev {
    position: absolute;
    top: -50px;
    right: 30px;
    cursor: pointer;
}

.map-section .slick-arrow.slick-next {
    position: absolute;
    right: 0px;
    top: -50px;
    cursor: pointer;
}

@media screen and (max-width:767px){
    .map-section {
        padding: 40px 0;
    }
    .map-section .content {
        flex-direction: column;
    }
    .map-section .map-container {
        padding: 10px 0px;
        margin-bottom: 20px;
    }
    .map-section .left-column {
        order: 2;
    }
    .map-section .right-column {
        order: 1;
    }
    .map-section .slick-arrow.slick-prev {
        top: -38px;
    }
    .map-section .slick-arrow.slick-next {
        top: -38px;
    }
}

.connect-with-us-form-section {
    padding: 60px 0;
}

.connect-with-us-form-section h2 {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 50px;
}

.connect-with-us-form-section .webform-flexbox {
    flex-wrap: wrap;
    row-gap: 30px;
}

.connect-with-us-form-section .webform-flexbox .webform-flex{
    min-width: 50%;
}

.form-control {
    background: transparent;
    border-radius: 0;
}

.connect-with-us-form-section .webform-flexbox .js-form-type-textfield label,
.connect-with-us-form-section .webform-flexbox .js-form-type-email label,
.connect-with-us-form-section .webform-flexbox .js-form-type-tel label,
.connect-with-us-form-section .webform-flexbox .js-form-type-select label {
    color: var(--white);
    font-family: "Libre Baskerville", serif;
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 10px;
}

.connect-with-us-form-section .webform-flexbox input.form-text,
.connect-with-us-form-section .webform-flexbox input.form-email,
.connect-with-us-form-section .webform-flexbox input.form-tel,
.connect-with-us-form-section .webform-flexbox select.form-select {
    height: 45px;
    border: 1px solid var(--secondary-black);
    border-radius: 0;
    color: var(--secondary-black);
    padding: 5px 15px;
}

.connect-with-us-form-section .form-actions {
    justify-content: center;
    margin-top: 40px;
    align-items: center;
    flex-direction: column;
    column-gap: 15px;
}

.connect-with-us-form-section .form-actions input.form-submit {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: "Source Sans 3", sans-serif;
}

.connect-with-us-form-section .form-actions input.form-submit:hover {
    background: var(--white);
    color: var(--primary-purple);
}

@media screen and (max-width: 767px) {
    .connect-with-us-form-section {
        padding: 60px 0 40px;
    }

    .connect-with-us-form-section .row {
        width: 100%;
    }

    .connect-with-us-form-section .webform-flexbox .webform-flex{
        margin-bottom: 20px;
    }

    .connect-with-us-form-section .webform-flexbox input.form-text,
    .connect-with-us-form-section .webform-flexbox input.form-email,
    .connect-with-us-form-section .webform-flexbox input.form-tel,
    .connect-with-us-form-section .webform-flexbox select.form-select {
        min-width: 100%;
        max-width: 100%;
    }

    .connect-with-us-form-section .webform-flexbox .js-form-type-textfield,
    .connect-with-us-form-section .webform-flexbox .js-form-type-email,
    .connect-with-us-form-section .webform-flexbox .js-form-type-tel,
    .connect-with-us-form-section .webform-flexbox .js-form-type-select {
        padding: 0;
    }
}

/* -----school song page style------  */
/* comman Breadcrum */
.breadcrumb-ct {
    backdrop-filter: blur(4px);
    background: #ccc2cca3;
    position: absolute;
    width: 100%;
    padding: 3px 0px;
    z-index: 10;
}
.breadcrumb-ct .breadcrumb-item {
    padding:0 3px !important;
}
.breadcrumb-item+.breadcrumb-item::before {
    content:var(--bs-breadcrumb-divider, ">") !important;
    padding: 0 3px 0 0 !important;
    color: var(--primary-black);
}

.breadcrumb-ct .breadcrumb-item a,
.breadcrumb-item.active {
   color: var(--primary-black);
}
/* Song section  */
.image-hero-banner-section {
    position: relative;
}
.image-hero-banner-section .image-wrapper img {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
    z-index: -1;
}
.song-section {
    background-image: url('../images/song-bg-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto auto;
}
.song-section p{
   font-weight: 300;
}
.two-col-content-section .content-ct p {
    column-count: 2;
}
@media(max-width:1180px){
    .image-hero-banner-section .image-wrapper img {
        height: auto;
    }
    .two-col-content-section .content-ct p {
        font-size: 18px;
    }
}
@media(max-width:992px){
    .two-col-content-section .content-ct p {
        font-size: 15px;
    }
}
@media(max-width:767px){
    .two-col-content-section .content-ct p {
        column-count: 1;
        font-size: 18px;
    }
    .breadcrumb-ct {
        display: none;
    }
}
@media(max-width:380px){
    .two-col-content-section .content-ct p {
        font-size: 17px;
    }
}
@media(max-width:370px){
    .two-col-content-section .content-ct p {
        font-size: 15px;
    }
}
@media(max-width:350px){
    .two-col-content-section .content-ct p {
        font-size: 14px;
    }
}
/* Video section */
.video-section .video-ct-with-bg {
    padding: 0px 24px 18px 0;
    position: relative;
    height: 100%;
    margin: 0px;
}
.video-section .video-ct-with-bg .bg-color {
    background-color: var(--secondary-purple-light);
    height: 520px;
    width: 92%;
    position: absolute;
    right: 0px;
    bottom: 0;
    z-index: -1;
}
.video-section .video-ct-with-bg iframe {
    background-color: var(--secondary-purple-light);
    position: relative;
    border: 1px solid var(--secondary-purple);
    background-color: var(--white);
    width: 100%;
    height: 560px;
    left: 0;
    top: 0;
}
@media(max-width:767px){
    .video-section h3 {
        text-align: center;
        line-height: 36px;
    }
    .video-section .video-ct-with-bg {
        height: 100%;
        padding: 0px 14px 8px 0;
    }
    .video-section .video-ct-with-bg .bg-color {
        height: 285px;
    }
    .video-section .video-ct-with-bg iframe {
        height: 285px;
    }
}

/* -----office bearers page style------  */
.w-80 {
    width: 80%;
}
.section-title, .card-title, .card-text {
    color: var(--primary-black);
}
.single-content-section .container {
    background: url('../images/song-bg-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.single-content-section p {
    line-height: 32px;
}
.profile-card {
    border: none;
    background:none;
    margin: 0 12px;
}
.profile-card img {
    border-radius: 0px;
}
.profile-card .card-title {
    line-height: 32px;
}
.profile-card .card-text {
    font-size: 18px;
}
.three-col-profile-slider .slick-arrow{
    position: absolute;
    display: flex !important;
    cursor: pointer;
    top: -52px;
    width: fit-content;
}
.three-col-profile-slider .slick-arrow.slick-disabled {
    cursor: not-allowed;
    opacity: 0.3;
}
.three-col-profile-slider .slick-arrow.slick-prev {
    right: 70px;    
}
.three-col-profile-slider .slick-arrow.slick-next {
    right: 35px;
}
.four-col-profile-ct .col-md-4, .four-col-profile-ct .col-lg-3, .three-col-profile-ct .col-md-4, .three-col-profile-ct .col-md-3 {
    padding:0;
    margin: 0 0 25px 0;
}

.image-hero-banner-section .field--name-field-banner-image {
   width: 100%;
}
@media(max-width:767px){
    .profile-card {
        margin: 0 10px;
    }
    .four-col-profile-ct .col-md-4, .four-col-profile-ct .col-lg-3 {
        margin: 0 0 16px 0;
    }
    .w-80 {
        width: 100%;
    }
    .section-title {
        font-size: 28px;
    }
    .profile-card img {
        max-height: 370px;
        max-width: 100%;
        object-fit: cover;
        object-position: top;
    }
}

/* our-leadership page style  */
.g-50{
    gap: 50px;
}
.image-right-bg-ct {
    width: 100%;
    max-height: 415px;
    position: relative;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(to bottom, rgba(89, 0, 89, 0) 10%, #590059 10%);
    z-index: 2;
}
.image-right-bg-ct img {
    position: relative;
    left: 0px;
    top: 0;
    width: 100%;
    z-index: 10;
    transform: translate(-25px, -0px);
    max-height: 390px;
    object-fit: cover;
    margin-bottom: 25px;
}
.bg-logo {
    background: url('../images/song-bg-logo.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #F6F6F6;
}
.download-link {
    padding: 12px 40px;
}
@media(max-width:1180px){
    .image-right-bg-ct {
        max-height: 575px;
    }
    .image-right-bg-ct img {
        max-height: 550px;
    }
}
@media(max-width:1024px){
    .image-wrapper {
        width:90%;
        display: flex;
    }
    .image-right-bg-ct { 
        width: 100%;
        left: 45px;
    }
    
    .community-section .inner-ct {
       align-items: center;
    }
}
@media(max-width:767px){
    .g-20{
        gap: 0px;
    }
    .image-wrapper {
        width:90%;
        display: flex;
    }
    .image-right-bg-ct { 
        width: 96%;
        left: 35px;
        max-height: 415px;
    }
    .image-right-bg-ct img {
        margin-bottom: 20px;
        transform: translate(-20px, -0px);
        max-height: 390px;
    }
    .download-annual-report-sec .report-title {
        font-size: 20px;
    }
    .download-link {
        padding: 10px 20px !important;
        margin-top: 24px;
    }
}

    /* Awards and Achivements page style  */
.subtab-filter-section #main-tabs {
    gap: 15px;
}
.subtab-filter-section #main-tabs .nav-link {
    color: var(--primary-black);
    background-color: var(--white);
    border-radius: 0;
    padding: 5px 18px;
}
.subtab-filter-section #main-tabs .nav-link.active {
    background-color: var(--primary-purple);
    color: var(--white);
} 
.subtab-filter-section .tab-pane .nav-tabs {
    border-bottom: 1px solid var(--tertiary-purple-light);
}
.subtab-filter-section .tab-pane .nav-tabs .nav-link {
    color: var(--primary-black);
    border: none;
    outline: none;
}
.subtab-filter-section .tab-pane .nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--primary-purple);
    background-color: transparent;
}
.common-news-cards-container .common-news-card {
    background-color: var(--white);
    border-radius: 7px;
    padding: 15px 15px 15px 15px;
    box-shadow: 0px 6px 17px 0px rgba(244, 237, 244, 0.73);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 15px;
    height: 100%;
    width: 100%;
}
.common-news-cards-container .common-news-card .left-section {
    width: 20%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
.common-news-cards-container .common-news-card .left-section img {
    aspect-ratio: 1;
    object-fit: cover;
}
.common-news-cards-container .common-news-card .left-section .image-container img {
    object-fit: cover;
}
 .common-news-cards-container .common-news-card .right-section {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
 .common-news-cards-container .common-news-card .right-section .card-heading {
    display: -webkit-box;
    font-family: 'Open Sans';
    color: var(--primary-black);
    font-size: 18px;
    line-height: 22px;
    overflow: hidden;
    height: 44px;
    max-height: 44px;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}
 .common-news-cards-container .common-news-card .right-section .card-tags .tag {
    padding: 3px 10px;
    border: 1px solid var(--primary-purple);
    font-size: 12px;
    line-height: 12px;
    color: var(--primary-black);
}
 .common-news-cards-container .common-news-card .right-section .card-tags .tag a:hover {
    border: 0;
}
 .common-news-cards-container .common-news-card .right-section .card-heading .heading {
    margin-bottom: 0;
}
 .common-news-cards-container .common-news-card .right-section .card-description p {
    display: -webkit-box;
    font-family: 'Open Sans';
    color: var(--secondary-black);
    font-size: 14px;
    line-height: 19px;
    margin-top: 3px;
}
.common-news-cards-container .common-news-card .right-section .card-description .p {
    margin-bottom: 0;
}
.common-news-cards-container .common-news-card .right-section .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px
}
.common-news-cards-container .common-news-card .right-section .card-footer .release-date .date {
    font-size: 12px;
    line-height: 16px;
    color: var(--grey-dark);
    font-family: 'Open Sans';
    font-weight: 300;
}
@media(max-width:600px){
   .common-news-cards-container {
        flex-direction: column;
        justify-content: flex-start;
    }
    .common-news-cards-container .common-news-card {
        width: 100%;
    }
    .common-news-cards-container .common-news-card .left-section {
        width: 30%;
    }
    .common-news-cards-container .common-news-card .left-section .image-container {
        width: 100;
    }
    .common-news-cards-container .common-news-card .left-section .image-container img {
        max-width: 100%;
        height: auto;
    }
    .common-news-cards-container .common-news-card .right-section {
        width: 70%;
    }
    .common-news-cards-container .common-news-card .right-section .card-heading {
        font-size: 16px;
        line-height: 20px;
    }
    .common-news-cards-container .common-news-card .right-section .card-description {
        font-size: 13px;
        line-height: 18px;
    }
    .common-news-cards-container .common-news-card .right-section .card-footer .release-date .date {
        font-size: 10px;
        line-height: 13px;
    }
}

/* Acccreditations style  */
.img-left-right-content-sec .content-ct h3 {
    line-height: 46px !important;
}
.img-left-right-content-sec .content-ct p {
    font-weight: 400 !important;
}
.img-left-right-content-sec:nth-child(even) {
    background-color: var(--gray-light);
}
.img-left-right-content-sec:nth-child(odd) .content-ct {
    order: 1;
}
.img-left-right-content-sec:nth-child(even) .img-ct {
    order: 2;
}
.img-left-right-content-sec .img-ct {
    overflow: hidden;
}
.img-left-right-content-sec:nth-child(odd) .img-ct {
    padding-right: 40px;
}
.img-left-right-content-sec:nth-child(even) .img-ct {
    padding-left: 40px;
}
@media(max-width:767px){
    .img-left-right-content-sec .content-ct {
        order: 2;
        margin-top: 30px;
    }
    .img-left-right-content-sec .img-ct {
        order: 1;
    }
    .img-left-right-content-sec:nth-child(odd) .img-ct {
       padding: 0 15px !important;
    }
    .img-left-right-content-sec:nth-child(even) .img-ct {
        padding: 0 15px !important;
    }
}

/* club section style  */
.clubs-sports-table-wrapper {
    padding: 40px 0;
}
.clubs-sports-table-wrapper h3, .activities-table-container .accordion-header .accordion-button, .activities-table-container table {
    color: var(--primary-black) !important;
    font-family: "Libre Baskerville", serif;
}
.activities-table-container table td {
    font-family: "Source Sans 3", sans-serif;
}
.clubs-and-sports-card .img-ct{
    width: 100%;
    height: auto;
}
.clubs-and-sports-card .img-ct img {
    width: 100%;
    object-fit:cover;
}
.clubs-and-sports-card .content-ct p {
    color:#464646;
}
.activities-table-container {
    /* max-width: 600px; */
    border: 2px solid var(--tertiary-purple);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}
.activities-table-container table {
    width: 100%;
    border-collapse: collapse;
}
.activities-table-container th, .activities-table-container td {
    padding: 12px;
    text-align: left;
    font-size: 20px;
    width: 33%;
}
@media(min-width:1024px){
    .activities-table-container tr:has(th:nth-child(4)) th, .activities-table-container tr:has(td:nth-child(4)) td {
        width:25% !important;
    }
    .activities-table-container tr:has(th:nth-child(3)):not(:has(th:nth-child(4))) th,  .activities-table-container tr:has(td:nth-child(3)):not(:has(td:nth-child(4))) td {
        width:33% !important;
    }
}
.activities-table-container th {
    background-color: #ffffff;
    font-weight: 500;
}
.activities-table-container td {
    color: var(--purple-text-light) !important;
    font-weight: 400 !important;
}
.activities-table-container tr td:first-child {
    color: var(--primary-black) !important;
    font-weight: 500 !important;
    font-family: "Libre Baskerville", serif;
}
.activities-table-container thead {
    border-bottom: 2px solid #ddd;
}
.activities-table-container .table-title {
    padding: 12px;
    margin: 0 0 12px 0;
}
.activities-table-container tbody tr {
    border-bottom: 0px solid transparent;
}
.activities-table-container .accordion-header .accordion-button {
    background-color: transparent !important;
    color: var(--primary-black);
    font-size: 26px !important;
    box-shadow: none;
}
.activities-table-container .accordion-button::after {
    content: "\002B";
    background-image: none;
    font-size: 40px;
    font-weight: bold;
    height: 52px;
    color: #CFC1CF;
}
.activities-table-container .accordion-button:not(.collapsed)::after {
    content: "\2212";
    background-image: none;
    transform: rotate(0);
}
@media(max-width:767px){
    .clubs-sports-table-wrapper {
        padding: 30px 0;
    }
    .activities-table-container .accordion-header .accordion-button {
        font-size: 20px !important;
        padding: 10px;
        font-weight: 500;
    }
    .activities-table-container th, .activities-table-container td {
        padding: 8px !important;
        font-size: 16px;
        width: auto;
    }
    .activities-table-container .accordion-button::after {
        font-size: 30px;
        height: 40px;
    }
    .activities-table-container .accordion-body {
        padding: 2px;
    }
}

/* House page style  */
.houses-card .img-ct-wrapper  {
    width: 50%;
    position: relative;
    margin-top: 15px;
    height: fit-content;
}
.right-floating-img .img-ct {
    width: 100%;
    position: relative;
    bottom: 0px;
    left: 0px;
    z-index: 2;
    max-height: 410px;
}
.right-floating-img .img-ct img {
    position: relative;
    right: 0px;
    top: 0;
    width: 100%;
    z-index: 10;
    transform: translate(25px, -25px);
    max-height: 410px;
}
.Houses-section .houses-table-wrapper:nth-child(odd) .houses-card .img-ct-wrapper {
    order: 1;
}
.Houses-section .houses-table-wrapper:nth-child(odd) .houses-card .content-ct-wrapper {
    order: 2;
    padding-left: 30px;
}
.Houses-section .houses-table-wrapper:nth-child(even) .houses-card .img-ct-wrapper {
    order: 2;
}
.Houses-section .houses-table-wrapper:nth-child(even) .houses-card .content-ct-wrapper {
    order: 1;
    padding-right: 30px;
}
.Houses-section .houses-table-wrapper:nth-child(even) .houses-card .img-ct-wrapper .right-floating-img .img-ct img {
    transform: translate(-25px, -25px);
}
.houses-table-wrapper .activities-table-container {
    padding: 15px 20px;
}
.houses-table-wrapper .activities-table-container .accordion .accordion-item {
    border:  none;
}
.houses-card h3 {
    margin-bottom: 24px;
    font-size: 48px;
}
.houses-card .sub-title {
    font-size: 20px;
    color: var(--secondary-purple-light);
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}
@media screen and (max-width:767px){
    .houses-table-wrapper .activities-table-container {
        padding: 0px;
    }
    .houses-card .img-ct-wrapper {
        width: 95%;
        margin-bottom: 40px;
    }
    .right-floating-img .img-ct img {
        position: relative;
        right: 0px;
        top: 0;
        width: 100%;
        z-index: 10;
        transform: translate(15px, -15px);
    }
    .Houses-section .houses-table-wrapper:nth-child(even) .houses-card .img-ct-wrapper .right-floating-img .img-ct img {
        transform: translate(15px, -15px);
    }
    .Houses-section .houses-table-wrapper:nth-child(odd) .houses-card .content-ct-wrapper {
        padding-left: 12px;
        order: 2;
    }
    .Houses-section .houses-table-wrapper:nth-child(even) .houses-card .content-ct-wrapper  {
        padding-right: 12px;
        order: 2;
    }
    .activities-table-container .accordion-button::after {
        font-size: 30px;
        height: 42px;
    }
}

@media screen and (max-width: 992px) {
   .houses-card .img-ct-wrapper {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
   .mobile-navigation.show .region-mobile-primary-menu .navbar-nav {
      display: flex !important;
      flex-direction: column !important;
   }
}

.timeline-wrap {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}
@media screen and (max-width: 767px) {
    .timeline-wrap {
        padding: 30px 0 0;
    }
}
.timeline-wrap h1 {
    font-size: 42px;
    text-align: center;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .timeline-wrap h1 {
        font-size: 35px;
    }
}
.timeline-wrap .timeline {
    list-style: none;
    position: relative;
    margin: 50px auto 0;
    width: 90%;
}
.timeline-wrap .timeline:before {
    top: 0;
    bottom: 140px;
    position: absolute;
    content: " ";
    width: 1px;
    border: 1px solid var(--purple-text-light);
    left: 50%;
    margin-left: -1.5px;
}
.timeline-wrap .timeline:before .hexagon {
    width: 100px;
    height: 75px;
    background: red;
    position: relative;
}
.timeline-wrap .timeline .timeline-movement {
    position: relative;
    margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement {
        margin-bottom: 50px;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-left {
    color: #fff;
    text-align: right;
}
.timeline-wrap .timeline .timeline-movement .timeline-item-left:before {
    content: "";
    border-bottom: dashed 1px #db2323;
    width: 110px;
    position: absolute;
    right: 0;
    top: 10px;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-left:before {
        border-bottom: dashed 0px #db2323;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-left .year-box {
    width: 80px;
    height: 40px;
    background-color: #db2323;
    position: absolute;
    right: 110px;
    top: -10px;
    text-align: center;
    line-height: 40px;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-left .year-box {
        position: initial;
        margin: 0 auto;
        display: block;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-left .timeline-panel {
    color: #666;
    padding: 10px;
    position: relative;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    margin-top: 50px;
    margin-right: 40px;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-left .timeline-panel {
        text-align: center;
        background: #1f1e1e;
        padding: 20px 0;
        margin-top: 30px;
        margin-right: 0;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-left .timeline-panel h3 {
    font-size: 28px;
    margin: 10px 0;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-left .timeline-panel h3 {
        margin: 10px;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-left .timeline-panel blockquote {
    margin-bottom: 10px;
    padding: 0px 10px 0;
    border-right: 2px solid #db2323;
    font-size: 15px;
    font-weight: normal;
    font-style: italic;
    opacity: 0.8;
    font-family: "gotham_bookregular";
    color: #fff;
    line-height: 28px;
    border-left: 0;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-left .timeline-panel blockquote {
        border-left: 2px solid #db2323;
        border-right: 0px solid #db2323;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-right {
    color: #fff;
    position: relative;
}
.timeline-wrap .timeline .timeline-movement .timeline-item-right:before {
    content: "";
    /* border-bottom: dashed 1px #db2323; */
    width: 110px;
    position: absolute;
    left: 0;
    top: 10px;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-right:before {
        border-bottom: dashed 0px #db2323;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-right .year-box {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    /* background-color: #db2323; */
    position: relative;
    left: 40px;
    top: 0px;
    text-align: center;
    color: var(--purple-text-light);
    line-height: 40px;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-right .year-box {
        position: initial;
        background-color: var(--white);
        margin: 0 auto;
        display: block;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-right .timeline-panel {
    color: var(--primary-black);
    background-color: var(--gray-light);
    padding: 0px;
    position: relative;
    margin-top: 0px;
}
.timeline-wrap .timeline .timeline-movement .timeline-item-right .timeline-panel blockquote {
    padding: 15px 10px;
    font-style: normal !important;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-right .timeline-panel {
        text-align: center;
        padding: 0px 0;
        margin-top: 12px;
    }
}
.timeline-wrap .timeline .timeline-movement .timeline-item-right .timeline-panel h3 {
    font-size: 28px;
    margin: 10px 0;
}
.timeline-wrap .timeline .timeline-movement .timeline-item-right .timeline-panel p {
    margin-bottom: 0px;
    padding: 0px 10px 0;
    font-size: 20px;
    font-weight: normal;
    opacity: 0.8;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 35px;
}
.timeline-wrap .timeline .timeline-movement-top {
    height: 60px;
}
.timeline-wrap .timeline .timeline-badge {
    width: 32px;
    height: 32px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 40px;
    margin-left: -16.5px;
    border: 3px solid var(--secondary-purple-light);
    z-index: 1;
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .timeline .timeline-badge {
        position: initial;
        margin: 0 auto 10px auto;
        text-align: center;
        display: block;
    }
}
.timeline-wrap .timeline .timeline-future-movement {
    width: 60px;
    height: 58px;
    background: #fff;
    position: absolute;
    font-size: 20px;
    top: -15px;
    transform: translateX(-50%);
    border: 3px solid var(--secondary-purple-light);
    left: 50%;
    padding: 0px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.timeline-wrap .timeline .timeline-future-movement:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 0px solid red;
}
.timeline-wrap .timeline .timeline-future-movement p {
    color: var(--purple-text-light);
    font-size: 18px;
    text-align: center;
    line-height: normal;
}
.timeline-wrap .loadmore_btn {
    display: block;
    text-align: center;
    margin: 0 auto 0;
    background-color: #a31f23;
    width: 100%;
    background: linear-gradient(to bottom, rgba(13, 16, 22, 0.02) 0%, #000000 70%);
    position: absolute;
    height: 400px;
    bottom: 0;
    left: 0;
    z-index: 9;
}
@media screen and (max-width: 767px) {
    .timeline-wrap .loadmore_btn {
        margin: 31% auto 0;
        background: linear-gradient(to bottom, rgba(13, 16, 22, 0.02) 0%, #000000 40%);
        height: 200px;
        bottom: 0;
    }
}
.timeline-wrap .loadmore_btn .btn-primary {
    margin-top: 15%;
}
.timeline_new_block .timeline-item-left.first-item-right-block img {
    display: none;
}
.timeline_new_block .timeline-item-left.second-item-right-block:before {
    display: none;
}
.timeline_new_block .timeline-item-left.second-item-right-block .year-box {
    display: none;
}
@media screen and (max-width: 767px) {
    .timeline_new_block .timeline-item-left.second-item-right-block .year-box {
        display: none !important;
    }
}
.timeline_new_block .timeline-item-left.second-item-right-block h3 {
    display: none;
}
.timeline_new_block .timeline-item-left.second-item-right-block blockquote {
    display: none;
}
@media screen and (max-width: 767px) {
    .timeline_new_block .timeline-item-left.second-item-right-block .timeline-panel {
        margin-top: 0 !important;
    }
}
.timeline-panel img {
    width: 100%;
}
.timeline_new_block .timeline-item-right.first-item-right-block:before {
    display: none;
}
.timeline_new_block .timeline-item-right.first-item-right-block .year-box {
    display: none;
}
.timeline_new_block .timeline-item-right.first-item-right-block h3 {
    display: none;
}
.timeline_new_block .timeline-item-right.first-item-right-block blockquote {
    display: none;
}
.timeline_new_block .timeline-item-right.second-item-right-block img {
    display: none;
}
@media screen and (max-width: 767px) {
    .timeline_new_block .timeline-item-right.second-item-right-block .year-box {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .timeline_new_block .timeline-item-right.second-item-right-block .timeline-panel {
        margin-top: 0 !important;
    }
}
.timeline_new_block .content-row {
    justify-content: center;
}
@media (min-width: 768px) {
    .timeline_new_block:nth-child(odd) .first-item-right-block {
        order: 2;
    }
    .timeline_new_block:nth-child(odd) .second-item-right-block {
        order: 1;
        top: 40px;
    }
    .timeline_new_block:nth-child(even) .first-item-right-block {
        order: 1;
    }
    .timeline_new_block:nth-child(even) .second-item-right-block {
        order: 2;
        top: 40px;
    }
    .timeline_new_block:nth-child(odd) .second-item-right-block .year-box {
        width: 100% !important;
        left: -40px !important;
        text-align: right !important;
    }
    .timeline_new_block:nth-child(odd) .second-item-right-block .timeline-panel p {
        text-align: right;
    }
}
.timeline-item-right .ml-lg-auto {
    padding: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-right {
        padding: 10px 40px;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .timeline-wrap .timeline .timeline-movement .timeline-item-right .year-box {
        left: 0 !important;
    }
}
@media (min-width: 993px) and (max-width: 1200px) {
    .timeline_new_block:nth-child(even) .second-item-right-block .year-box {
        left: 20px !important;
    }
    .timeline_new_block:nth-child(odd) .second-item-right-block .year-box {
        left: -20px !important;
    }
}


/* ------About Us page----------  */
/* mission-principles section  */
.mission-and-principles-section {
    background-color: var(--gray-light);
}
.mission-and-principles-section h3 {
    font-weight: 400;
}
.aboutus-img-cont-card > .row {
    justify-content: space-between;
}
.aboutus-img-cont-card .img-ct-wrapper {
    width: 48%;
}
.aboutus-img-cont-card h3 {
    margin-bottom: 40px;
}
.mission-and-principles-section p {
    color: var(--secondary-black);
}
.mission-and-principles-section .right-floating-img {
    background-color: var(--secondary-purple-light);
}
/* program section  */
.program-section h3 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 400 !important;
}
.program-card {
    background-color: #f8f9fa;
    border: none;
    border-radius: 0;
    padding: 2rem;
}
.program-card .img-ct {
    width: 180px;
    height: 180px;
    margin: 10px auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.program-card .program-logo {
    max-width: 100%;
    height: auto;
}
.program-card .explore-link {
    display: block;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    margin: 20px auto;
    font-size: 20px;
    text-align: center;
}
.program-card .explore-link:after {
    content: ' →';
}
.school-profile  .bg-logo {
    background-color: var(--secondary-purple-light);
}
.school-profile  .report-title {
    color: var(--white);
}
.school-profile .download-link {
    border: none;
}
@media(max-width:1200px){
    .aboutus-img-cont-card h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .program-section h3 { 
        font-size: 28px;
        margin-bottom: 25px;
    }
}
@media(min-width:768px) and (max-width:1024px){
    .aboutus-img-cont-card .img-ct-wrapper {
        width: 95%;
    }
    .aboutus-img-cont-card .content-ct-wrapper {
        width: 95%;
        padding-left: 10px !important;
    }
    .aboutus-img-cont-card .content-ct-wrapper .content-ct {
        padding-top: 30px !important;
    }
    .mission-and-principles-section .houses-table-wrapper:nth-child(even) .aboutus-img-cont-card .img-ct-wrapper {
        order: 1;
    }
    .mission-and-principles-section .houses-table-wrapper:nth-child(even) .aboutus-img-cont-card .img-ct-wrapper .right-floating-img .img-ct img {
        transform: translate(25px, -25px);
    }
    .mission-and-principles-section .right-floating-img .img-ct, .mission-and-principles-section .right-floating-img .img-ct img  {
        max-height: initial;
    }
}
@media(max-width:767px){
    .program-card .img-ct {
        width: 120px;
        height: 120px;
    }
    .program-card  {
        padding: 10px;
    }
    .aboutus-img-cont-card .img-ct-wrapper {
        width: 95%;
    }   
}

.song-section h2 {
    font-weight: 500;
}

/* Club and sports card popup style  */
.clubs-sports-table-wrapper .clubs-and-sports-card .gallery-icon {
    right: 20px;
    top: 10px;
}
.clubs-sports-table-wrapper .clubs-and-sports-card .gallery-icon:hover {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.clubs-sports-table-wrapper .gallery-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}
.clubs-sports-table-wrapper .card-img-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    border: none;
}
.clubs-sports-table-wrapper .card-img-modal  .modal-dialog {
    width: 100%;
    max-width: 100%;
    height: 100%;
    top: 0;
    margin: 0;
    border: none;
}
.clubs-sports-table-wrapper .card-img-modal .modal-content {
    background-color: #f8f9fae8;
    border-radius: 0;
    position: static;
    width: 100%;
    height: 100%;
    border: none;
}
.clubs-sports-table-wrapper .modal-header {
    border-bottom: none;
    padding: 1rem 1rem 0.5rem;
    height: 18%;
    width: 80%;
    margin: auto;
}
.clubs-sports-table-wrapper .modal-body {
    padding: 0 1rem 1rem;
    width: 80%;
    margin: auto;
}
.clubs-sports-table-wrapper .modal-title {
    width: 100%;
    text-align: center;
    font-weight: bold;
}
.clubs-sports-table-wrapper .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}
.clubs-sports-table-wrapper .carousel-control-prev,
.clubs-sports-table-wrapper .carousel-control-next {
    width: 25%;
}
.clubs-sports-table-wrapper .carousel-control-prev-icon,
.clubs-sports-table-wrapper .carousel-control-next-icon {
    border-radius: 50%;
    padding: 1.5rem;
}
.clubs-sports-table-wrapper .carousel-control-prev-icon {
    background:url(../images/slider-prev.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.clubs-sports-table-wrapper .carousel-control-next-icon {
    background:url(../images/slider-next.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.clubs-sports-table-wrapper .carousel-item img {
    max-height: 70vh;
    width: auto;
    margin: 0 auto;
    display: block;
}
@media(max-width:1200px){
    .clubs-sports-table-wrapper .carousel-control-prev, .clubs-sports-table-wrapper .carousel-control-next {
        width: 0%;
    }
    .clubs-sports-table-wrapper .carousel-control-prev {
        left: -20px;
    }
    .clubs-sports-table-wrapper .carousel-control-next {
        right: -20px;
    }
}
@media(max-width:767px){
    .clubs-sports-table-wrapper .modal-header { 
        width: 100%;
    }
    .clubs-sports-table-wrapper .modal-body {
        width: 95%;
    }
    .clubs-sports-table-wrapper .carousel-control-prev, .clubs-sports-table-wrapper .carousel-control-next {
        width: 0%;
    }
    .clubs-sports-table-wrapper .carousel-control-prev {
        left: -12px;
    }
    .clubs-sports-table-wrapper .carousel-control-next {
        right: -12px;
    }
}
/* Resposibility section  */
.responsibility-section {
    background-color: var(--gray-light);
}
.responsibility-section .section-title {
    font-family: "Libre Baskerville", serif;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600 !important;
}
.responsibility-section .resposibility-card {
    background-color: transparent;
    padding: 5px;
}
.responsibility-section .resposibility-card .img-wrapper {
    width: 200px;
    height: 200px;
    padding: 20px;
    border: 2px solid var(--secondary-purple-light);
    border-radius: 4px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.responsibility-section .resposibility-card .img-ct {
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.responsibility-section .resposibility-card .name {
    display: block;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    margin: 20px auto;
    font-size: 20px;
    font-family: "Source Sans 3", sans-serif;
}
@media(max-width:912px){
    .responsibility-section .resposibility-card .img-wrapper {
        width: 100%;
        height: auto;
    }
    .responsibility-section .resposibility-card .img-ct {
        width: 100px;
        height: 100px;
    }
    .responsibility-section .row {
        align-items: flex-start;
    }
    .responsibility-section .resposibility-card .name {
        font-size: 20px;
        line-height: 24px;
        margin: 15px auto;
        text-align: center;
    }
    .responsibility-section .section-title {
        font-size: 28px;
        font-weight: 600 !important;
    }
}

.explore-icon-card {
    padding: 5px;
    width: fit-content;
}
.explore-icon-card .img-wrapper {
    width: 200px;
    height: 200px;
    padding: 20px;
    border: 2px solid var(--secondary-purple-light);
    border-radius: 4px;
    margin: initial ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.explore-icon-card .img-wrapper .img-ct {
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.explore-icon-card .explore-link {
    display: block;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    margin: 20px auto;
    font-size: 19px;
    border-bottom: none;
}
.explore-icon-card .explore-link:after {
    content: ' →';
}
@media(max-width:767px){
    .explore-icon-card {
        width: 100% !important;
    }
    .explore-icon-card .img-wrapper {
        width: 100%;
        height: auto;
        padding: 30px !important;
    }
    .explore-icon-card .img-ct {
        width: 100px !important;
        height: 100px !important;
    }
    .explore-senior-school-section .row {
        align-items: flex-start;
    }
    .explore-senior-school-section .section-title {
        font-size: 28px;
        font-weight: 600 !important;
        line-height: 38px;
    }
    .explore-icon-card .explore-link {
        margin: 10px auto;
        text-align: center;
    }
}


.messages--error em.placeholder {
   cursor: text;
   background: transparent;
   opacity: 1;
}

.page-dropdown {
    border:2px solid var(--tertiary-purple-light);
    padding: 10px;
}
.page-dropdown select {
    border: none;
    outline: none;
}
.page-dropdown .dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    width: 250px;
    color: var(--tertiary-purple-light);
    font-weight: 600;
}
.page-dropdown .dropdown-options {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1;
    border: 2px solid var(--tertiary-purple-light);
}
.page-dropdown .dropdown-options a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    width: 100%;
    border: none;
}
.page-dropdown .dropdown-options a:hover {
    background-color: #978f9747;
}
.page-dropdown .dropdown-icon {
    transition: transform 0.3s ease;
    width: 15px;
}
.page-dropdown .dropdown-icon.open {
    transform: rotate(180deg);
}
.content-dropdown-section p {
    color: var(--secondary-black);
}
.subject-table-container tbody {
    padding-top: 10px;
}
.subject-table-container td {
    padding: 6px 12px;
}
.subject-table-container tr:first-child th {
    padding-bottom: 20px;
    color: var(--primary-black);
}
.subject-table-container tr:first-child td {
    padding-top: 20px;
}
.subject-table-container tr td:first-child {
    color: var(--purple-text-light) !important;
    font-weight: 400 !important;
    font-family: "Source Sans 3", sans-serif;
}
.subject-table-container {
    padding: 0 20px;
}
.subject-table-container .accordion-item {
    border: none;
}
.subject-table-container .accordion-button::after {
    margin-top: -8px;
}
.no-border {
    border: none;
}
@media(max-width:1024px){
    .curriculum-board {
        padding: 40px 0 20px;
    }
    .curriculum-board .slick-arrow.slick-prev, .curriculum-board .slick-arrow.slick-next {
        top: -40px;
    }
}
@media(max-width:767px){
    .subject-table-container {
        padding: 0;
    }
    .subject-table-container th, .subject-table-container td {
        font-size: 15px;
    }
}

/* Facilities page section  */
.content-dropdown-section .header-wrapper h1 {
    font-size: 48px !important;
}
@media(max-width:992px){
    .content-dropdown-section .header-wrapper h1 {
        font-size: 30px !important;
        line-height: 38px;
        text-align: left;
    }
    .page-dropdown {
        margin-left: 20px;
    }
    .page-dropdown .dropdown-button {
        width: 200px;
    }
}
@media(max-width:600px){
    .content-dropdown-section .header-wrapper h1 {
        font-size: 32px !important;
        line-height: 38px;
        text-align: center;
    }
    .page-dropdown {
        margin-left: 0px;
    }
    .page-dropdown .dropdown-button {
        width: 210px;
    }
}

/* School support section  */
.school-support-section h3, .beyond-act-section h3 {
    color: var(--primary-black);
    margin-bottom: 40px;
    font-weight: 500;
}
.school-support-section .support-list {
    padding: 0 20px;
    column-count: 2;
    margin-bottom: 0px;
}
.school-support-section .support-list li {
    font-size: 20px;
    color: var(--secondary-black);
    font-family: "Source Sans 3", sans-serif;
    line-height: 36px;
}

/* beyond page's activities  */
.beyond-activities-card-ct .card-title {
    color: var(--secondary-black);
}
@media(max-width:767px){
    .school-support-section .support-list { 
        column-count: 1;
        padding: 0 20px;
    }
    .school-support-section h3 { 
        margin-bottom: 20px;
    }
}

/* councelling contact details   */
.councelling-contact-container {
    border-radius: 5px;
    padding: 30px 40px 10px;
    width: 100%;
    border: 2px solid var(--tertiary-purple-light);
}
.councelling-contact-details h3 {
    font-weight: 500;
    margin-bottom: 20px;
}
.councelling-contact-items {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid var(--grey-dark);
    align-items: start;
    font-size: 20px;
}
.councelling-contact-items:last-child {
    border-bottom: none;
}
.councelling-contact-items .item-name {
    font-weight: 500;
    color: var(--primary-black);
}
.councelling-contact-items .item-detail {
    display: flex;
    justify-content: start;
    align-items: start;
    color: var(--secondary-black);
}
.councelling-contact-items .item-detail img {
    margin-right: 8px;
    margin-top: 2px;
}
@media(max-width:767px){
    .councelling-contact-container {
        padding: 20px 10px 10px;
        width: 100%;
        overflow-x: auto;
    }
    .councelling-contact-details h3 {
        margin-bottom: 10px;
    }
    .councelling-contact-container .details-ct {
        width: 100%;
    }
    .councelling-contact-items { 
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
@media(min-width:768px) and (max-width:1200px){
    .councelling-contact-container {
        padding: 20px 10px 10px;
    }
    .councelling-contact-items {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 10;
    }
}

.school-profile-download .report-title .field--name-body p {
   font-family: "Libre Baskerville", serif;
   font-size: 28px;
   line-height: 32px;
}

.our-process-section h3 {
    font-weight: 500;
    margin-bottom: 20px;
}
.learning-process-card-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.learning-process-card {
    padding: 5px 40px;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.learning-process-card .img-wrapper {
    width: 180px;
    height: 180px;
    padding: 20px;
    border: 2px solid var(--secondary-purple-light);
    border-radius: 4px;
    margin: initial ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.learning-process-card .img-wrapper .img-ct {
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.learning-process-card h5 {
    display: block;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    margin: 20px auto 5px;
    font-size: 20px;
    line-height: 24px;
    font-family: "Source Sans 3", sans-serif;
    text-align: center;
}
.learning-process-card p {
    color: var(--purple-text-light);
    text-align: center;
    line-height: 34px;
}
@media(max-width:1200px){
    .learning-process-card {
        padding: 5px 20px;
    }
}
@media(max-width:767px){
    .learning-process-card {
        width: 100% !important;
        padding: 5px 20px;
    }
    .learning-process-card .img-wrapper {
        width: 100%;
        height: auto;
        max-width: 180px;
        padding: 30px !important;
    }
    .learning-process-card .img-ct {
        width: 100px !important;
        height: 100px !important;
    }
    .learning-process-card h5 {
        margin: 15px auto 5px;
    }
}

/* Admission page  */
.admission-schedule-container {
    background-color: white;
    border-radius: 8px;
    padding: 30px 40px 10px;
    width: 100%;
    border: 2px solid var(--tertiary-purple-light);
}
.admission-schedule-container .schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--grey-dark);
}
.admission-schedule-container .schedule-item:last-child {
    border-bottom: none;
}
.admission-schedule-container .item-name {
    color: var(--primary-black);
    font-size: 20px;
    font-weight: 500;
    width: 50%;
}
.admission-schedule-container .item-date {
    color: var(--secondary-black);
    font-size: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 400;
    width: 50%;
}
.admission-schedule-container .item-date img {
    margin-right: 10px;
}
.apply-section .admission-process-link  {
    color: var(--tertiary-purple-light);
    border-bottom: 1px solid var(--tertiary-purple-light);
}
.apply-section .button {
    margin: 20px 0 !important;
    border: 1px solid var(--tertiary-purple-light);
}
@media(max-width:992px){
    .admission-schedule-container {
        padding: 20px 20px 10px;
    }
    .admission-schedule-container .schedule-item {
        padding: 15px 0;
    }
    .admission-schedule-container .item-name {
        width: 40%;
        font-size: 18px;
    }
    .admission-schedule-container .item-date {
        width: 60%;
        align-items: flex-start;
        font-size: 18px;
    }
    .admission-schedule-container .item-date img {
        margin-top: 6px;
    }
}

/* Career guidance */
.opportunities-container {
    border-radius: 5px;
    padding: 30px 40px 10px;
    width: 100%;
    border: 2px solid var(--tertiary-purple-light);
}
.opportunity-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid var(--grey-dark);
    align-items: start;
    font-size: 20px;
}
.opportunity-items:last-child {
    border-bottom: none;
}
.opportunity-items .item-name {
    font-weight: 500;
    color: var(--primary-black);
}
.opportunity-items .item-detail {
    display: flex;
    justify-content: start;
    align-items: start;
    color: var(--secondary-black);
}
.opportunity-items .item-detail img {
    margin-right: 8px;
    margin-top: 2px;
}
@media(max-width:767px){
    .opportunities-container {
        padding: 20px 10px 10px;
        width: 100%;
        overflow-x: auto;
    }
    .opportunities-container .details-ct {
        width: 800px;
    }
    .opportunity-items { 
        gap: 10px;
    }
}
@media(min-width:768px) and (max-width:1200px){
    .opportunities-container {
        padding: 20px 10px 10px;
    }
    .opportunity-items {
        grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
    }
    .opportunity-items { 
        gap: 10px;
    }
}
/* contact details  */
.contact-detail-section .contact-container {
    border-radius: 5px;
    padding: 30px 40px;
    width: 100%;
    border: 2px solid var(--tertiary-purple-light);
}
.contact-detail-section .contact-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}
.contact-detail-section .appointment-text {
    margin-left: 10px;
    font-size: 18px;
    color: var(--secondary-black);
    font-family: "Source Sans 3", sans-serif;
}
.contact-detail-section .contact-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 18px;
    color: var(--secondary-black);
    font-family: "Source Sans 3", sans-serif;
}
.contact-detail-section .contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
}
.contact-detail-section .contact-item img {
    margin-right: 8px;
}
@media(max-width:992px){
    .contact-detail-section .contact-container {
        padding: 20px 10px 10px;
    }
    .contact-detail-section h3 {
        margin-bottom: 5px;
    }
    .contact-detail-section .appointment-text {
        margin-left: 0px;
    }
    .contact-detail-section .contact-header , .contact-detail-section .contact-details {
        flex-direction: column;
    }
    .contact-detail-section .contact-item {
        align-items: flex-start;
        width: 100%;
        margin-bottom: 12px;
    }
    .contact-detail-section .contact-item img { 
        margin-top: 5px;
    }
}

/* Event page style  */
.event-card-wrapper .event-date {
    font-size: 20px;
    color: var(--secondary-black);
    font-family: "Source Sans 3", sans-serif;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 12px;
}
.event-card-wrapper .event-date img {
    margin-right: 10px;
    margin-top: -2px;
}

/* Accademics ICSC  */
.ICSE-result-sec .container {
    padding: 0 12px;
}
.ICSC-overview-sec h3 {
    font-weight: 400;
}
.ICSC-overview-sec .image-wrapper .image-ct, .ICSC-overview-sec .image-wrapper .image-ct img {
    max-height: initial !important;
}
.ICSE-result-sec {
    background-color: transparent;
    color: var(--primary-black);
}
.ICSE-result-sec .photos {
    justify-content: flex-start;
}
.ICSE-result-sec .photo {
    width: 32%;
}
@media(max-width:767px){
    .ICSE-result-sec .photos { 
        gap: 10px;
    }
    .result-section .photo {
        width: 48%;
    }
}
@media(min-width:601px) and (max-width:992px){
    .ICSC-overview-sec .image-wrapper .image-ct, .ICSC-overview-sec .image-wrapper .image-ct img  {
        margin: auto;
    }
}
@media(min-width:601px) and (max-width:1200px){
    .ICSE-result-sec .photo {
        width: 48%;
    }
}

.ICSE-result-sec h3 {
    margin-bottom: 40px;
    font-weight: 400;
}
.ICSE-result-sec .tab.active {
    border-bottom: 2px solid var(--primary-black);
    font-weight: 700;
}
.ICSE-result-sec .tab:first-child {
    padding: 10px 10px 10px 0;
}
.ICSE-result-sec .tabs {
    border-bottom: 2px solid var(--tertiary-purple);
    overflow-x: auto;
    margin-bottom: 20px;
}
.ICSE-result-sec .tab {
    white-space: nowrap;
}

.ICSE-school-sec h3 {
    font-weight: 400;
}
.school-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}
.school-card {
    border: 2px solid var(--tertiary-purple);
    border-radius: 4px;
    width: 100%;
}
.school-card .img-ct {
    left: -25px;
    top: -50px;
    width: 100%;
}
.school-card .img-ct img {
    width: 100%;
    object-fit: cover;
}
.school-card .school-cat-name {
    position: absolute;
    bottom: 8px;
    margin: 0;
    padding: 0 0px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 500;
    margin-left: 20px;
    font-size: 20px;
    border-bottom: none;
}
.school-card .school-cat-name:after {
    content: ' →';
}
@media(min-width:601px) and (max-width:990px){
    .ICSC-overview-sec .image-wrapper {
        width: 100%;
    }
}
@media(min-width:992px) and (max-width:1200px){
    .ICSC-overview-sec .image-wrapper {
        width: 33%;
    }
}
@media(max-width:600px){
    .ICSE-result-sec h3 {
        margin-bottom: 18px;
    }
    .ICSE-result-sec {
        padding: 0px;
    }
    .ICSC-overview-sec .image-wrapper {
        width: 100%;
    }
    .school-card-wrapper {
        margin-bottom: 50px;
        padding-right: 0px
    }
    .ICSE-result-sec .tabs {
        overflow-x: auto;
    }
    .result-section .photo .img-ct {
        margin-bottom: 10px;
    }
    .result-section .photo .number {
        font-size: 28px;
        line-height: 36px;
    }
    .ICSE-school-sec h3 {
        margin-bottom: 32px;
    }
}

/* Faq accordion style  */
.accademics-faq-section h3 {
    font-weight: 400;
    margin-bottom: 50px;
}
.faq-acc-container {
    border: 2px solid var(--tertiary-purple);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}
.faq-acc-container .accordion-header .accordion-button {
    background-color: transparent !important;
    color: var(--primary-black);
    font-size: 24px !important;
    box-shadow: none;
}
.faq-acc-container .accordion-body .faq-details {
    font-size: 18px;
    color: var(--primary-black);
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    margin-bottom: 10px;
}
.faq-acc-container .accordion-button::after {
    content: "\002B";
    background-image: none;
    font-size: 40px;
    font-weight: bold;
    height: 52px;
    color: #CFC1CF;
}
.faq-acc-container .accordion-button:not(.collapsed)::after {
    content: "\2212";
    background-image: none;
    transform: rotate(0);
}
@media(max-width:600px){
    .accademics-faq-section h3 { 
        margin-bottom: 30px;
    }
    .faq-acc-container .accordion-header .accordion-button {
        font-size: 20px !important;
        padding: 10px;
        font-weight: 500;
    }
    .faq-acc-container .accordion-button::after {
        font-size: 30px;
        height: 40px;
    }
    .faq-acc-container .accordion-body {
        padding: 0 10px;
    }
}

.common-news-cards-container .common-news-card .card-heading  a, .common-news-cards-container .common-news-card .card-footer .arrow-container {
    border-bottom: none !important;
} 

/* Advaced placement program   */
.why-placement-programs-section .content-list {
    font-size: 20px;
    color: var(--secondary-black);
    font-family: 'Open Sans';
    font-weight: 400;
    margin-bottom: 10px;
}
.why-placement-programs-section h3, .subject-covered-section h3, .how-advance-program-sec h3 {
    font-weight: 400;
    margin-bottom: 30px;
}
.why-placement-programs-section .content-list ul li {
    margin-bottom: 12px;
}
.why-placement-programs-section .content-list ul li a {
    border: none;
    text-decoration: underline;
    word-break: break-all;
}
.why-placement-programs-section .content-list ul li a:hover {
    text-decoration: underline;
}
.two-table-content-section .content-box {
    background-color: var(--gray-light);
    padding: 20px 25px;
    margin: 10px 0;
}
.two-table-content-section .content-box .subject-item {
    border-bottom: 1px solid var(--grey-dark);
    color: var(--secondary-black);
    font-family: 'Open Sans';
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    font-size: 20px;
}
.two-table-content-section .content-box .subject-item .item-name {
    max-width: 70%;
}
.two-table-content-section .content-box .subject-item:last-child {
    border-bottom: none;
}
.how-advance-program-sec .content-para {
    font-size: 20px;
    color: var(--secondary-black);
    font-family: 'Open Sans';
    font-weight: 400;
    margin-bottom: 10px;
}
.advance-placement-schedule-section .admission-schedule-container .schedule-item {
    gap: 20px;
}
@media(max-width:600px){
    .why-placement-programs-section .content-list { 
        font-size: 18px;
    }
    .two-table-content-section .content-box {
        padding: 12px 12px;
    }
    .two-table-content-section .content-box .subject-item { 
        font-size: 18px;
        padding: 12px 8px;
    }
    .advance-placement-schedule-section .admission-schedule-container {
        padding: 10px;
    }
    .advance-placement-schedule-section .admission-schedule-container .item-name {
        width: 50%;
        font-size: 16px;
    }
    .advance-placement-schedule-section .admission-schedule-container .item-date {
        width: 50%;
        align-items: flex-start;
        font-size: 16px;
    }
}
.download-annual-report-sec h3, .download-annual-report-sec p {
    font-weight: 500;
    font-family: "Libre Baskerville", serif;
    font-size: 32px;
    line-height: 38px;
}
@media(max-width:600px){
    .download-annual-report-sec h3, .download-annual-report-sec p {
        font-size: 24px;
        line-height: 36px;
    }
}
.contact-detail-section .contact-item a {
    color: var(--secondary-black);
}

/* top menu dropdown  */
.desk-secondary-menu-list li {
    position: relative;
}
.desk-secondary-menu-list li span {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.desk-tertiary-menu-list {
    display: none;
    position: absolute;
    left: 100%;
    background-color: #fff;
    top: 0 !important;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.desk-secondary-menu-list li:hover .desk-tertiary-menu-list {
    display: block;
}
@media(max-width:1200px){
    .desk-tertiary-menu-list {
        position: relative;
        left: 0%;
        background-color: transparent;
        box-shadow:none !important;
    }
}


/* Media details page  */
.media-detail-section .title-wrapper {
    margin-bottom: 20px;
}
.media-detail-section h1 {
    font-size: 44px;
    line-height: 62px;
    margin-bottom: 20px;
    font-weight: 500;
    display: inline;
}
.media-detail-section .tag-wrapper {
    flex-wrap:wrap;
    gap:10px;
}
.media-detail-section .tag {
    border: 2px solid var(--tertiary-purple);
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
    padding: 2px 15px;
    font-weight: 500;
}
.media-detail-section .date {
    color: var(--grey-dark);
    font-family: "Source Sans 3", sans-serif;
    font-size: 18px;
}
.media-detail-section .share-btn {
    line-height: 20px;
    display: inline-block;
    border-bottom: none;
}
.media-detail-section .media-image-slider .image-container img {
    width: 100%;
}
.media-image-slider .slick-arrow.slick-prev {
    position: absolute;
    top: -45px;
    right: 30px;
    cursor: pointer;
}
.media-image-slider .slick-arrow.slick-next {
    position: absolute;
    right: 0px;
    top: -45px;
    cursor: pointer;
}
.media-image-slider-wrapper .image-source {
    display: block;
    color:#000000;
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
}
.share-media-ct-wrapper {
    display: inline-block;
    top: -8px;
    margin: 10px 0;
}
.share-media-ct {
    border: 1px solid var(--secondary-purple);
    width: max-content;
    padding: 8px;
    position: relative;
    background-color: #ffffff;
    top: 0px;
    left: 0px;
    overflow: hidden;
    display: none;
    margin-bottom: -10px;
}
.share-media-ct a {
    padding: 0 10px;
    border-bottom: none;
}
.share-media-ct img {
    height: 20px;
    max-width: initial;
}
@media(max-width:600px){
    .media-detail-section h1 {
        font-size: 32px;
        line-height: 42px;
    }
    .share-media-ct-wrapper { 
        top: -3px;
    }
}

/* contact us page  */
.contactus-section h1 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 500;
    margin-bottom: 0;
}
.school-contact-card {
    border: 2px solid var(--tertiary-purple); /* Purple border */
    padding: 24px;
    border-radius: 8px;
    margin: 40px auto;
}
.school-contact-card h3 {
    font-weight: 400;
    max-width: 600px;
    line-height: 44px;
}
.school-contact-card span, .school-contact-card a {
    font-size: 20px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
}
.school-contact-card .school-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}
.school-contact-card .school-timings {
   color: var(--primary-black);
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: end;
}
.school-contact-card .school-address {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--secondary-black);
}
.school-contact-card .address-icon {
    margin-right: 8px;
}
.school-contact-card .get-directions {
    margin: 0 10px;
    text-decoration: none;
    color: var(--tertiary-purple);
}
.school-contact-card .divider {
    border: 0;
    height: 2px;
    background-color: var(--grey-dark);
    margin: 25px 0;
}
.school-contact-card .contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.school-contact-card .contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}
.school-contact-card .contact-title {
    margin-right: 8px;
    color: var(--primary-black);
    font-weight: 500 !important;
    width: 150px;
    overflow-wrap: anywhere;
}
.school-contact-card .contact-info {
    color: var(--secondary-black);
}
@media(min-width:601px) and (max-width:992px){
    .school-contact-card .contact-title { 
        width: 180px;
    }
}
@media(max-width:992px){
    .school-contact-card h3 {
        margin-bottom: 20px;
    }
    .school-contact-card .contact-details { 
        grid-template-columns: 1fr;
    }
    .school-contact-card .school-header {
        flex-direction: column;
    }
    .school-contact-card .school-timings {
        align-items: flex-start;
    }
}
@media(max-width:600px){
    .contactus-section h1 { 
        font-size: 36px;
        line-height: 40px;
    }
    .school-contact-card { 
        padding: 15px 10px;
        margin: 30px auto;
    }
    .school-contact-card h3 {
        line-height: 38px;
    }
    .school-contact-card .divider { 
        margin: 20px 0;
    }
    .school-contact-card .contact-title { 
        min-width: 90px;
        width: 90px;
    }
    .school-contact-card span, .school-contact-card a { 
        font-size: 16px;
    }
    .school-contact-card .contact-info img {
        width: 18px;
    }
    .school-contact-card .address-icon {
        margin-right: 4px;
    }
    .school-contact-card .get-directions {
        margin: 0;
    }
}


/* School Uniform page  */
.school-uniform-page h1 { 
    font-size: 48px;
}
.school-uniform-table {
    border: 2px solid var(--tertiary-purple);
    border-radius: 6px;
}
.school-uniform-table .row {
    margin: 0;
}
.school-uniform-table  .left-col, .school-uniform-table  .right-col {
    padding: 0px ;
}
.school-uniform-table .header {
    color: var(--primary-black);
    border-bottom: 1px solid var(--grey-dark);
    padding: 0px 0 20px 0;
    margin-bottom: 20px;
}
.school-uniform-table .header h4 {
    margin: 0;
}
.school-uniform-table .divider {
    border: 0;
    height: 2px;
    background-color: var(--grey-dark);
    margin: 20px 0;
}
.school-uniform-table .detail-ct ul li, .school-uniform-table .detail-ct span {
    color: var(--purple-text-light);
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    font-weight: 400;
}
.school-uniform-table .accordion-item {
    border: none;
}
.common-content-list {
    font-size: 20px;
    color: var(--secondary-black);
    font-family: 'Open Sans';
    font-weight: 400;
    margin-bottom: 10px;
}
.common-content-list h3 {
    margin-bottom: 40px;
}
.common-content-list ul li {
    margin-bottom: 8px;
}
.common-content-list ul li a {
    border: none;
    text-decoration: underline;
}
.common-content-list ul li a:hover {
    text-decoration: underline;
}
@media(min-width:601px) and (max-width:1200px){
    .school-uniform-table .detail-ct {
        padding-right: 10px;
    }
    .school-uniform-page h1 {
        font-size: 38px;
    }
}
@media(max-width:600px){
    .school-uniform-page h1 {
        font-size: 32px;
    }
    .activities-table-container .accordion-header .accordion-button {
        padding: 0 10px;
        font-size: 18px !important;
    }
    .school-uniform-table .header h4 {
        font-weight: 500;
    }
    .school-uniform-table .header { 
        padding: 10px 0 10px 0;
    }
    .common-content-list h3 {
        margin-bottom: 20px;
    }
}
/* Career page  */
.career-list-section h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}
.career-list-section h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}
.career-heading {
    font-size: 24px;
    font-family: "Libre Baskerville", serif;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--primary-black);
    border-bottom: none !important;
}
.career-list-container {
    background-color: white;
    border-radius: 6px;
    padding: 30px 40px 10px;
    width: 100%;
    border: 2px solid var(--tertiary-purple-light);
}
.career-heading span {
    margin-right: 15px;
}
.career-heading img {
    width: 12px;
}
.career-detail ul li, .career-detail span {
    font-size: 20px;
    font-family: "Source Sans 3", sans-serif;
    color: var(--secondary-black);
    font-weight: 400;
}
@media(max-width:600px){
    .career-list-container {
       padding: 15px 10px 10px;
    }
}

/* career form style  */
.form-breadcrumb  {
    background-color: transparent;
}
.form-breadcrumb .breadcrumb {
    justify-content: flex-end;
    margin-top: 8px;
}
.form-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "<") !important;
}
.career-form-section {
    background-color: var(--gray-light);
}
.career-form-section h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}
.career-form-section .form-container {
    margin: 0 auto;
    background-color:  var(--gray-light);
    border-radius: 8px;
  }
  .career-form-section .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
  }
  .career-form-section .form-row div {
    flex: 1;
    margin: 0 0px;
  }
  .career-form-section label {
    display: block;
    margin-bottom: 12px;
    color: var(--secondary-black);
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    font-weight: 400;
  }
  .career-form-section input[type="text"], .career-form-section input[type="email"], .career-form-section input[type="number"] {
    width: 100%;
    padding: 10px;
    border:none;
    outline: none;
    border-bottom: 2px solid  var(--tertiary-purple);
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    height: 45px;
  }
  .career-form-section .file-upload {
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    border: none;
  }
  .career-form-section .file-upload i {
    font-size: 40px;
    color: #7e4576;
  }
  .career-form-section .file-upload p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
  }
  .career-form-section .file-upload input {
    display: none;
  }
  .submit-btn {
    display: inline-block;
    width: 140px;
    height: 45px;
    border: 1px solid var(--primary-purple);
    color: var(--white);
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    padding: 10px 0;
    margin-top: 15px;
    font-family: "Source Sans 3", sans-serif;
    background-color: var(--secondary-purple);
    transition: 0.5s all;
  }
  .submit-btn:hover {
    background-color: transparent;
    color: var(--primary-black);
  }
  .career-form-section .error-message {
    color: #c00000;
    font-size: 16px;
    display: block;
    margin-top: 5px;
}
.career-form-section .file-name-display {
    margin-top: 10px !important;
    font-size: 18px;
    color: var(--primary-black);
}
  @media(max-width:767px){
    .career-form-section h1 {
        font-size: 32px;
    }
    .career-form-section .form-row { 
        flex-direction: column;
    }
    .career-form-section label {
        margin-bottom: 10px;
    }
    .career-form-section .error-message { 
        font-size: 16px;
    }
    .career-form-section .file-name-display { 
        font-size: 16px;
    }
  }
  @media(min-width:768px) and (max-width:1024px){
    .career-form-section label {
        font-size: 16px;
    }
    .career-form-section .error-message { 
        font-size: 16px;
    }
  }

   /* Search popup style  */
   .search-popup {
    position: fixed;
    width: 100%;
    height: 0vh;
    opacity: 0.975;
    z-index: 10000;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    opacity: 0; 
    transition: height 0.5s ease-out, opacity 0.3s ease-out;
  }
  .search-popup.active {
    height: 100vh; 
    opacity: 0.975;
  }
  .search-popup .search-close-icon {
    position: absolute;
    top: 0px;
    right: 25px;
    font-size: 50px;
    border: none;
    line-height: normal;
    color: var(--primary-purple);
  }
.search-popup .container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width:800px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0% 0 10%;
}
.search-popup h3 {
    margin-bottom: 8%;
    font-size: 48px;
}
.search-popup .search-box {
    display: flex;
    margin-bottom: 12%;
    width: 80%;
    padding: 0 20px;
}
.search-popup input[type="text"] {
    flex-grow: 1;
    padding: 0.5rem;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--primary-black);
}
.search-popup button {
    width: 140px;
    height: 42px;
    background-color: transparent;
    border: 1px solid var(--tertiary-purple);
    cursor: pointer;
    margin-left: 30px;
}
.search-popup .links {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.search-popup .links a {
    color: var(--primary-black);
    border-bottom: none;
    font-size: 20px;
    text-decoration: underline;
}
@media(max-width:600px){
    .search-popup h3 {
        font-size: 24px;
    }
    .search-popup .links {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .search-popup .links a {
        font-size: 16px;
        text-decoration: underline;
        margin-bottom: 20px;
    }
}

/* search page  */
.search-box-section h1 {
    font-size: 48px;
    font-weight: 500;
}
.search-box-section .search-box {
    display: flex;
    width: 100%;
}
.search-box-section input[type="text"] {
    flex-grow: 1;
    padding: 0.5rem;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--primary-black);
}
.search-box-section button {
    width: 140px;
    height: 42px;
    background-color: transparent;
    border: 1px solid var(--tertiary-purple);
    cursor: pointer;
    margin-left: 30px;
}
.search-result-item .section-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    flex-wrap: wrap;
}
.search-result-item .section-header .pipe {
    padding: 0 10px;
    font-weight: 600;
}
.search-result-item .section-header h3 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}
.search-result-item .section-header .main-page-link {
    color: var(--primary-black);
    font-family: "Source Sans 3", sans-serif;
    font-weight: 500;
    text-decoration: none;
    font-size: 20px;
}
.search-result-item .section-header .main-page-link img {
    width: 22px;
}
.search-result-item .breadcrumb {
    font-size: 14px;
    color: #6c757d;
}
.search-result-item .details {
    margin-top: 10px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-item .details strong {
    font-weight: bold;
}
.search-result-item .devider {
    border-top: 2px solid var(--secondary-purple);
    margin: 20px 0;
}
@media(max-width:600px){
    .search-box-section h1 {
        font-size: 36px;
    }
    .search-result-item .section-header h3 { 
        font-size: 20px;
    }
}

/* Result and placements page  */
.university-list-row h3 {
    margin-bottom: 30px;
}
.placement-map-slider .university-list-row ul {
    column-count: 4;
    padding: 0;
}
.placement-map-slider .university-list-row ul li {
    color: var(--purple-text-light);
    font-size: 16px;
    line-height: 28px;
    list-style-type: none;
}
/* .placement-result-section .photo {
    width:32%;
} */
@media(max-width:600px){
    .map-section h2 {
        font-size: 24px;
    }
    .university-list-row h3 {
        font-size: 24px;
    }
    .placement-map-slider .university-list-row ul {
        column-count: 1;
    }
    /* .placement-result-section .photo {
        width:48%;
    } */
}
@media(min-width:601px) and (max-width:990px){
    .placement-map-slider .university-list-row ul {
        column-count: 2;
    }
    /* .placement-result-section .photo {
        width:48%;
    } */
}
@media(min-width:991px) and (max-width:1200px){
    .placement-map-slider .university-list-row ul {
        column-count: 3;
    }
    /* .placement-result-section .photo {
        width:48%;
    } */
}

.enquiry-note p {
    color: #CB0000;
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
    font-weight: 400;
    max-width: 60%;
    text-align: center;
    margin: auto;
}
.enquiry-note p a {
    color: #CB0000;
    border-bottom: 1px solid #CB0000;
}
@media(min-width:601px) and (max-width:1200px){
    .enquiry-note p {
        max-width: 80%;
    }
}
@media(max-width:600px){
    .enquiry-note p {
        max-width: 100%;
    }
}

.navbar-nav .search-link {
    border-bottom: none;
}
.desk-secondary-menu-list .nav-item.menu-item--expanded > a::after {
    border: solid #731a73 !important;
    border-width: 2px 2px 0 0 !important;
    transform: rotate(45deg) !important;
    left:20px !important;
    top: -1px !important;
}
@media(max-width:1200px){
    .desk-secondary-menu-list .nav-item.menu-item--expanded > a::after {
        left:initial !important;
        right:initial !important;
        top:16px !important;
        transform: rotate(135deg) !important;
        border: solid var(--white)!important;
        border-width: 2px 2px 0 0 !important;
    }
    .mobile-navigation .menu--main ul li .desk-secondary-menu-list > .menu-item--expanded > a.active::after {
        transform: rotate(315deg) !important;
        top:20px !important;
    }
}

/* Login page stayle  */
#user-login-form
{
    width: 30%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5% auto 10%;
    border: 1px solid var(--tertiary-purple);
    padding: 30px;
    border-radius:4px;
}
#user-login-form label {
    color:var(--primary-black);
    font-weight:500;
}
#user-login-form  .js-form-item {
    width: auto;
}
#user-login-form .form-text {
    height:40px;
    border: 1px solid var(--tertiary-purple);
    width:100%;
}
#user-login-form #edit-actions {
    align-self: flex-end !important;
}
#user-login-form #edit-actions {
    margin-bottom: 0px;
}
@media(max-width:600px){
    #user-login-form {
        width: 95%;
        padding: 20px 10px;
        margin: 20% auto 20%;
    }
}
@media(min-width:601px) and (max-width:1200px){
    #user-login-form {
        width: 50%;
        padding: 20px 10px;
        margin: 15% auto 15%;
    }
}

/* Register page style  */
#user-register-form {
    width: 40%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5% auto 10%;
    border: 1px solid var(--tertiary-purple);
    padding:40px 30px;
    border-radius:4px;
}
#user-register-form label {
    color:var(--primary-black);
    font-weight:500;
}
#user-register-form .js-form-item, #user-register-form .js-form-wrapper {
    width: 100%;
}
#user-register-form .form-text, #user-register-form .form-email {
    height:40px;
    border: 1px solid var(--tertiary-purple);
    width:100%;
}
/* #user-register-form #edit-actions {
    align-self: flex-end !important;
} */
#user-register-form .description {
    font-size: 14px;
    color: #858585;
}
@media(max-width:600px){
    #user-register-form {
        width: 95%;
        padding: 20px 10px;
        margin: 12% auto 12%;
    }
    #user-register-form #edit-actions {
        margin-bottom: 0px;
    }
}
@media(min-width:601px) and (max-width:1200px){
    #user-register-form {
        width: 50%;
        padding: 20px 10px;
        margin: 15% auto 15%;
    }
}

/* reset password page  */
#user-pass
{
    width: 30%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5% auto 10%;
    border: 1px solid var(--tertiary-purple);
    padding: 30px;
    border-radius:4px;
}
#user-pass label {
    color:var(--primary-black);
    font-weight:500;
}
#user-pass  .js-form-item {
    width: auto;
    padding: 0 !important;
}
#user-pass .form-text {
    height:40px;
    border: 1px solid var(--tertiary-purple);
    width:100%;
    padding: 0 !important;
}
#user-pass #edit-actions {
    align-self: flex-end !important;
}
#user-pass .form-submit {
    margin:0 !important;
    margin-top:20px !important;
}
#user-pass #edit-actions {
    margin: 0px;
}
#user-pass p {
    font-size: 14px;
    color: #858585;
}
@media(max-width:600px){
    #user-pass {
        width: 95%;
        padding: 20px 10px;
        margin: 20% auto 20%;
    }
}
@media(min-width:601px) and (max-width:1200px){
    #user-pass {
        width: 50%;
        padding: 20px 10px;
        margin: 15% auto 15%;
    }
}

/* Wellbeing page style  */
.key-offers-table-container {
    padding: 0 30px;
}
.key-offers-table-container .accordion-header .accordion-button {
    font-family: "Source Sans 3", sans-serif;
    font-size: 24px !important;
    font-weight: 500;
    padding: 20px 0;
}
.key-offers-table-container thead {
    border-bottom: none;
    border-style: hidden;
    font-family: "Source Sans 3", sans-serif;
}
.key-offers-table-container .accordion-body {
    padding: 0;
    border-top: 2px solid #ddd;
}
.key-offers-table-container tr:first-child th {
    padding-left: 0px !important;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-top: 20px !important;
    vertical-align: baseline;
}
.key-offers-table-container tr:first-child td {
    padding-left: 0px !important;
    padding-right: 20px;
    padding-top: 15px;
}
@media(max-width:600px){
    .key-offers-table-container {
        padding: 0 10px;
    }
    .key-offers-table-container tr:first-child th {
        padding-right: 10px !important; 
    }
    .key-offers-table-container tr:first-child td { 
        padding-right: 10px !important; 
    }
    .key-offers-table-container tr:first-child td p { 
        font-size:16px !important;
    }
    .key-offers-table-container .accordion-header .accordion-button {
        font-size: 20px !important;
    }
    .key-offers-table-container .accordion-button::after {
        height: 36px;
    }
}

.page-dropdown .dropdown-options a.active {
    background-color: #978f9747;
}

@media(min-width:601px) and (max-width:1200px){
    .student-wellbeing-card-wrapper h3 {
        font-size:24px !important;
    }
}

@media(min-width:1100px){
    .path-frontpage .background-image-with-slider-section .content-section .content-block {
        max-height: initial !important;
    }
}

.maintenance-container  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 0px);
    background-color: var(--gray-light);
    border-top: 10px solid var(--secondary-purple);
}
.maintenance-page .footer-navigation, .maintenance-page .navbar {
    display: none;
}
.maintenance-page .logo-img {
    margin-bottom: 30px;
    padding:0 20px;
}
.maintenance-page h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-purple) !important;
     padding:0 20px;
     text-align: center;
}
.maintenance-page p {
    color: var(--tertiary-purple) !important;
    font-size: 18px;
    line-height: 34px;
     padding:0 20px;
      text-align: center;
}