@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* {
    font-family: "Plus Jakarta Sans", sans-serif;
} */
:root {
    --transition: all 0.3s ease-in-out;
    --mainfont: 'Plus Jakarta Sans';
    --opensans: "Open Sans", sans-serif;
    --lato: "Lato", sans-serif;
    --white: #FFFFFF;
    --black: #000000;
    --darkgrey: #2E2E2E;
    --lightgrey: #EEEEEE;
    --mehroon-gradient: linear-gradient(180deg, #9F0203 0%, #9F0203 100%);
    --text-color: #2e2e2e;
    --background-grey: #F2F3F7;
    --theme-color: #9e0203;
    --light-red: #C30405;
    --btn-red: #a40e1a;
    --btn-blue: #276EB5;
    --blue: #124578;
    --bg-secondary-theme: #eeeeee;
    --footer-bg-color: #0b0b0b;
    --top-header-height: 0px;
    --navbar-height: 0px;
    --header-total-height: 0px;
    --font10: 10px;
    --font12: 12px;
    --font14: 13px;
    --font16: 15px;
    --font18: 16px;
    --font21: 18px;
    --font24: 21px;
    --font40: 26px;
    --font48: 32px;
    --font60: 45px;
    --pl-pr-75: 0 7.5rem;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* overflow: hidden; */
    font-family: var(--mainfont);
}
html, body, main, header, footer {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
body {
    font-size: var(--font18);
    color: var(--darkgrey);
}
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    border-radius: 10px;
    font-size: var(--font16);
    line-height: 1;
    padding: 0 1.25rem;
    min-height: 2.75rem;
    font-family: var(--mainfont);
    font-weight: bold;
    /* text-transform: uppercase; */
    border: 0.1rem solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.btn-bg-theme, .btn-bg-theme:hover {
    background-color: var(--btn-red);
    color: var(--white);
}
.btn-bg-blue, .btn-bg-blue:hover {
    background-color: var(--btn-blue);
    color: var(--white);
}
.btn-bg-dark, .btn-bg-dark:hover {
    background: linear-gradient(to bottom, #2E2E2E, #434343);
    color: var(--white);
}
.btn-bg-white, .btn-bg-white:hover {
    background-color: var(--white);
    color: var(--theme-color);
}
.btn:hover::after {
    transform: translateX(0.5rem);
    color: inherit;
}
.btn::after {
    content: "\2192";
    font-size: 1.5rem;
    position: relative;
    top: -4px;
    transition: transform 0.35s ease, color 0.35s ease;
}
.radius-btn {
    border-radius: 50px;
}
.font-bold {
    font-weight: bold;
}
.fw-light {
    font-weight: 300;
}
.fs-60 {
    font-size: var(--font60);
}
.fs-30 {
    font-size: var(--font24);
}
.font-lato {
    font-family: var(--lato);
}
.text-justify p {
    text-align: justify;
}
h1 {
    font-size: var(--font60);
    font-weight: 700;
}
h2 {
    font-size: var(--font48);
    font-weight: 700;
}
h3 {
    font-size: var(--font24);
    font-weight: 400;
}
h4 {
    font-size: var(--font18);
}
p {
    font-size: inherit;
    line-height: 1.4;
}
.fs_40 {
    font-size: var(--font24);
}
a {
    text-decoration: none;
    color: inherit;
}
.text-red {
    color: var(--theme-color);
}
h2.text-red span {
    color: var(--darkgrey);
}
.subtitle {
    font-size: var(--font24);
    font-weight: 400;
}
img {
    max-width: 100%;
}
.pt-pb-10 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pt-10 {
    padding-top: 60px;
}
.pb-10 {
    padding-bottom: 60px;
}
.fw-bold {
    font-weight: 700;
}
.bg-red {
    background-color: var(--theme-color);
}
.bg-blue {
    background-color: var(--blue);
}
.bg-lightgrey {
    background-color: var(--lightgrey);
}
.bg-bg-grey {
    background-color: var(--background-grey);
}
.line_after, .line_dark_after, .vertical_line_before {
    position: relative;
    &:after {
        content: '';
        position: absolute;
        left: 0;
        background-size: contain !important;
    }
}
.line_after {
    padding-bottom: 1.5rem;
    &:after {
        bottom: 0;
        width: 80%;
        height: 5px;
        background: url(../images/heading-line.svg) no-repeat left center;
    }
}
.line_dark_after {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    &:after {
        bottom: 0;
        width: 80%;
        height: 5px;
        background: url(../images/heading-line-dark.svg) no-repeat left center;
    }
}
.vertical_line_before {
    padding-left: 2rem;
    &:after {
        top: 0;
        width: 2px;
        height: 100%;
        background: url(../images/vertical-line.svg) no-repeat center;
    }
}
.arrow_list {
    list-style: none;
    padding-left: 0;
    li {
        position: relative;        
        padding-left: 35px;
        margin-top: 10px;
        &:before {
            content: '';
            position: absolute;
            top: 4px;
            left: 0;
            width: 20px;
            height: 20px;
            background: url(../images/aeroplane.svg) no-repeat center;
            background-size: contain;
        }
    }
}

.title_shadow_text {
    position: relative;
    overflow: hidden;
    span.shadow_text {
        font-size: 160%;
        white-space: nowrap;
        color: inherit;
        position: absolute;
        left: 50%;
        bottom: -10%;
        transform: translateX(-50%);
        opacity: 0.1;
    }
}


.main-container {
    position: relative;
    padding: 0 120px;
    margin: 0 auto;
}
header, footer {
    ul {
        padding-left: 0;
        margin-bottom: 0;
    }
    li {
        list-style: none;
    }
}

header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    transition: var(--transition);
    /* &:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
    } */
    .header-top-bar {
        text-align: center;
        position: relative;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9;
        &:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(86 86 86);
            opacity: 0.3;
        }
    }
    .top_header_flex {
        width: 100%;
        display: flex;
        align-items: center;
        color: #fff;
        padding: 10px 0;
    }
    .top_tagline {
        margin: 0 auto;
        width: 100%;
        font-size: var(--font14);
        padding-left: 150px;
    }
    .header-social-icons {
        margin-left: auto;
        img {
            width: 25px;
            margin: 0 5px;
        }
    }
    .container-fluid {
        padding: 0rem 2.5rem;
        position: relative;
    }
    .navbar-brand {
        display: flex;
        align-items: center;
        a.site_logo {
            padding-right: 20px;
            margin-right: 20px;
            border-right: 1px solid #FFFFFF80;
        }
        a.site_logo img {
            width: 160px;
        }
        a.gcp_logo img {
            width: 80px;
        }
    }
}
header:not(.scrolled) {
    nav.navbar {
        border-top: 1px solid rgb(255 255 255 / 12%);
        border-bottom: 1px solid rgb(255 255 255 / 12%);
        padding: 0;
    }
}
#site-header {
    li.hdr_apply_btn .btn {
        font-size: var(--font12);
    }
	.main_menu ul.menu_ul > li.nav-item > a {
		font-size: var(--font12);
		font-weight: 600;
		color: var(--white);
		position: relative;
		line-height: 50px;
		text-transform: capitalize;
		transition: color 0.3s ease;
		i {
		    font-size: 80%;
		    padding-left: 4px;
		    position: relative;
		    /* top: 2px; */
		}
	}
	.main_menu ul.menu_ul > li.nav-item .sub-menu {
        position: absolute;
        z-index: 500;
        background-color: var(--white);
        transition: all 0.3s ease;
        margin-top: 19px;
        opacity: 0;
        visibility: hidden;
        border-radius: 15px;
        font-size: var(--font16);
        a:hover {
            color: var(--theme-color);
        }
	}
    .main_menu ul.menu_ul > li.nav-item .discover_megamenu {
        width: 600px;
        padding: 20px;
        overflow: hidden;
    }
    .main_menu ul.menu_ul > li.nav-item .academic_megamenu, .main_menu ul.menu_ul > li.nav-item .admission_megamenu {
        width: 600px;
        padding: 0;
        overflow: hidden;
    }
    .main_menu ul.menu_ul > li.nav-item .global_megamenu {
        width: 300px;
        padding: 20px;
    }
	.main_menu ul.menu_ul > li.nav-item .sub-menu > ul > li {
		line-height: 1;
	}
	.main_menu ul.menu_ul > li.nav-item .sub-menu > ul > li > a {
		display: inline-block;
		padding: 10px 0;
		font-size: var(--font16);
		color: #555555;
		transition: color 0.3s ease;
		text-decoration: none;
		text-transform: capitalize;
	}
	.main_menu ul.menu_ul > li.nav-item .sub-menu.mega-menu { 
	    left: 50%;
	    transform: translateX(-50%);	
	}
    .menu_nav_col {
        align-self: center;
        .link_list {
            padding: 10px;
            p {
                margin: 8px 0;
            }
            a:hover {
                text-decoration: underline;
            }
        }
    }
    .admission_megamenu .menu_nav_col{
        .link_list {
            padding-left: 25px;
            padding-right: 0;
        }
    }
    .global_megamenu .menu_nav_col{
        padding-top: 0;
        .link_list {
            padding-left: 0;
            padding-right: 0;
            padding-top: 0;
        }
    }
}
header {
    .sub-menu {
        .img_text {
            padding: 2rem;
            padding-bottom: 100% !important;
            text-align: center;
            color: #fff;
            border-radius: 8px;
            height: 100%;
        }
        h3 {
            font-size: var(--font24);
        }
        .discover_menu_icon_list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1rem;
            .list_item {
                background: var(--theme-color);
                width: 125px;
                height: 125px;
                max-width: 47%;
                border-radius: 8px;
                display: flex;
                font-size: var(--font16);
                font-weight: 600;
                flex-direction: column;
                color: var(--white);
                padding: .75rem;
                justify-content: space-between;
                img {
                    width: 40px;
                    margin-left: auto;
                }
            }
        }
    }
}
header.scrolled {
    top: calc(-1 * var(--top-header-height));
    background: #000;
}

.breadcrumb_search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
ul.breadcrumb {
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 0;
    padding: 12px;
    overflow: auto;
    flex-wrap: nowrap;
}
ul.breadcrumb li {
    font-size: var(--font16);
    font-weight: 400;
    white-space: nowrap;
}
ul.breadcrumb li:not(:first-child) {
    position: relative;
    padding-left:40px;
    font-weight: 600;
    &:before {
        content: '';
        position: absolute;
        left: 10px;
        top: 2px;
        width: 20px;
        height: 20px;
        background: url(../images/breadcrumb-arrow.svg) no-repeat center;
        background-size: 16px;
    }
}
.breadcrumb_search .search_form {
    display: none;
    width: 300px;
    border: 1px solid #CCCCCC;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    input.form-control {
        border: 0;
        outline: none !important;
        box-shadow: none !important;
    }
    button.srch_btn {
        background: transparent;
        border: 0;
        width: 48px;
        height: 48px;
        padding: 0;
    }
}

.owl-carousel {
    .owl-nav button.owl-prev, .owl-nav button.owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .owl-nav button.owl-prev {
        left: -65px;
    }
    .owl-nav button.owl-next {
        right: -65px;
    }

    .owl-dots {
        text-align: center;
        margin-top: 1rem;
        .owl-dot {
            width: 10px;
            height: 10px;
            border-radius: 30px;
            background-color: var(--theme-color);
            transition: .4s all;
            margin: 5px 3px;
            span {
                display: none;
            }
        }
        .owl-dot.active {
            width: 30px;
            height: 10px;
        }
    }
}
.owl-carousel.dot-white {
    .owl-dots {
        .owl-dot {
            background-color: #fff;
        }
    }
}

.main-banner .banner-content {
    max-width: 950px;
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.inner-banner .banner-content {
    max-width: 800px;
    width: 100%;
    position: absolute;
    top: 55%;
    left: 0;
    padding: 0 134px;
    transform: translateY(-50%);
}
.banner-small-content .banner-content {
    max-width: 700px;
}
.inner-banner h1 span {
    font-weight: 400;
    display: block;
}
.owl-global-program {
    .item {
        background-color: var(--theme-color);
    }
}
.sec-gp-negative-space .owl-global-program {
    .item {
        background-color: var(--light-red);
    }
}
.owl-partner-model {
    .item {
        background-color: var(--btn-blue);
    }
}
.owl-global-program, .owl-partner-model {
    figure {
        margin: 0;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }
    figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s all;
    }
    h4 {
        text-align: center;
        margin: 0;
        padding: 1rem 8px;
        font-size: var(--font18);
        font-weight: 700;
    }
    .item:hover {
        figure img {
            transform: scale(1.10);
        }
    }
}

.sec-best-education {
    .max_wid_data {
        max-width: 800px;
    }
    table {
        margin-bottom: 0;
    }
    table th, table td {
        font-weight: 400;
        font-size: var(--font12);
        padding: 15px;
        background: transparent;
        border: 0;
    }
    table th {
        font-weight: 700;
    }
    table td {
         padding: 10px 15px;
    }
    .table_bg {
        padding: 10px;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
    }
    .table_col_blue .table_bg {
        background: #144579;
    }
    .table_col_blue th, .table_col_blue td {
        color: #fff;
    }
}

.sec-regional-focus {
    .div_inner {
        background-color: var(--theme-color);
        padding: 2.5rem 2.5rem 2.5rem 0;
        position: relative;
        &:before {
            content: '';
            position: absolute;
            height: 100%;
            top: 0;
            left: -9999px;
            right: 0;
            background: var(--theme-color);
            z-index: 0;
        }
    }
    table {
        margin-bottom: 0;
    }
    table th, table td {
        font-weight: 400;
        font-size: var(--font14);
        padding: 12px 15px; 
    }
    table th {
        font-weight: 700;
        text-align: center;
        width: 180px;
        background: var(--light-red);
        color: #fff;
        border-color: var(--theme-color);
        vertical-align: middle;
    }
}

.sec-eligibility {
    .sec_padding {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 300px;
        background: var(--theme-color);
        mix-blend-mode: multiply;
    }
    table {
        margin-bottom: 0;
    }
    table th, table td {
        font-weight: 400;
        font-size: var(--font14);
        padding: 15px 20px; 
        border: 1px solid #11111124;
    }
    table th {
        font-weight: 700;
        background: var(--theme-color);
        color: #fff;
        border-color: var(--light-red);
    }
}

.nav-tabs {
    border: 0;
    li {
        margin: 10px;
    }
    button.nav-link {
        background: #EEEEEE;
        border: 1px solid #CCCCCC !important;
        font-weight: 700;
        font-size: var(--font18);
        color: var(--darkgrey);
        padding: 10px 25px;
        border-radius: 8px;
    }
    button.nav-link.active {
        background: var(--theme-color);
        color: var(--white);
        border: 1px solid var(--theme-color) !important;
    }
}
.dept_wrapper {
    display: flex;
    flex-wrap: wrap;
    .img_box, .content_box {
        width: 100%;
    }
    .content_box {
        background-color: var(--white);
        padding: 50px;
    }
    h4 {
        color: var(--theme-color);
        font-weight: 400;
        font-size: var(--font24);
        small {
            color: var(--darkgrey);
            display: block;
            font-size: var(--font16);
            margin-top: 7px;
        }
    }
}

.bg-half-top:before {
    content: '';
    width: 100%;
    height: calc(50% + 60px);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--theme-color);
    z-index: -1;
}
.bg-half-bottom:before {
    content: '';
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--theme-color);
    z-index: 0;
}
.sec-map-bg .map_img {
    position: absolute;
    object-fit: contain;
    height: 100%;
    width: 100%;
    mix-blend-mode: multiply;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.sec-map-bg.bg-blue img.map_img {
    mix-blend-mode: soft-light;
}

.global_connect {
    h4 {
        margin: 1rem 0;
        font-size: 12px;
        font-weight: 600;
        width: 110%;
    }
    .gc_row {
        padding-top: 90px;
        padding-bottom: 35px;
        justify-content: space-around;
    }
    .gc_item {
        width: 200px;
        text-align: center;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .gc_item:nth-child(even) {
        top: 11px;
    }
    .gc_item:nth-child(odd) {
        flex-direction: column-reverse;
        color: #fff;
        top: -93px;
    }
    .gc_img_icon {
        position: relative;
    }
    .gc_icon {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 66px;
        width: 45px;
    }
    .gc_item:nth-child(odd) .gc_icon {
        bottom: 64px;
        top: auto;
    }
}

footer {
    background-color: var(--darkgrey);
    font-family: var(--opensans);
    font-size: var(--font12);
    h4 {
        font-weight: 700;
        font-size: var(--font18);
        margin-bottom: 10px;
    }
    .ftr_column {
        width: 22%;
        margin-bottom: 2rem;
    }
    .ftr_column.column_2 {
        width: 18%;
    }
    .ftr_column.column_4 {
        width: 16%;
    }
    .ftr_nav_items a {
        display: block;
        margin-bottom: 5px;
        transition: .4s all;
    }
    .ftr_nav_items a:hover {
        /* color: var(--theme-color); */
        transform: translateX(7px);
        text-decoration: underline;
    }
    .ftr_social {
        gap: 8px;
        img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            transition: .4s all;
        }
        a:hover img {
            transform: translateY(-10px);
        }
    }
    .ftr_contact a {
        position: relative;
        margin-bottom: 1rem;
        padding-left: 40px;
        display: block;
        img {
            position: absolute;
            left: 0;
            top: 4px;
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        small {
            display: block;
            color: var(--theme-color);
            font-weight: 600;
        }
    }
    .footer-copyright {
        border-top: 1px solid #ffffff82;
        padding-top: 1rem;
        display: flex;
        justify-content: space-between;
        opacity: 50%;
        font-size: var(--font12);
        p {
            margin-bottom: 0;
        }
    }
    .footer-copyright .footer-links {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: #fff;
        a:hover {
            text-decoration: underline;
            /* color: var(--theme-color); */
        }
    }
}


.sec-why-cgc-university .data_text .digit_no {
    color: #276EB5;
    opacity: 0.5;
    font-weight: 700;
    text-align: center;
    font-size: 4rem;
    position: absolute;
    left: 0;
    top: 50%;
    line-height: 1;
    transform: translateY(-50%);
}
.sec-why-cgc-university .data_text {
	margin: 4rem 0;
	position: relative;
    padding-left: 100px;
}
.sec-why-cgc-university .data_text img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.max_heading_width {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.max_carousel_width {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}
.form-wrapper {
    background-color: #fff;
    box-shadow: 0px 3px 20px #0000001A;
    padding: 40px;
}
form {
    .form-group {
        margin-bottom: 1.5rem;
    }
    .form-control {
        border: 1px solid #CCCCCC;
        outline: none !important;
        box-shadow: none !important;
        border-radius: 11px;
        height: 55px;
        padding: 11px 20px;
        font-size: var(--font16);
    }
    label {
        font-size: var(--font18);
        margin-bottom: 8px;
    }
    textarea {
        height: auto !important;
    }
}


button.videoDisplay {
    outline: none;
    box-shadow: none;
    border: 0;
}
.videopopup .modal-content {
    background: #a00534;
}
.videopopup .modal-body {
    padding: 5px;
}
.videopopup button.btn-close {
    background-color: rgb(255 255 255);
    opacity: 1;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    position: absolute;
}

.common_fig_data {
    color: var(--white);
    .col_inner {
        background-color: var(--theme-color);
    }
    p {
        text-align: center;
        margin: 0;
        padding: 1rem 8px;
        font-size: var(--font16);
        font-weight: 700;
    }
    figure {
        margin: 0;
        width: 100%;
        height: 300px;
        overflow: hidden;
    }
    figure img {
        width: 100%;
        height: 100%;
        object-position: top;
        object-fit: cover;
        transition: .4s all;
    }
    .col_inner:hover {
        figure img {
            transform: scale(1.10);
        }
    }
}

.support_service_row .col_inner {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--btn-red);
    box-shadow: 0px 3px 20px #0000001A;
}


.sec-academic-themes {
    .academic_list {
        width: calc(100% + 134px - 3.5rem);
        padding-left: 2rem;
    }
    .list_item {
        background-color: var(--btn-red);
        padding: 2rem;
        margin: 1.5rem 0;
    }
    .list_item img {
        margin-bottom: 1rem;
    }
    .list_item p {
        margin: 0;
        font-size: var(--font16);
    }
}


.sec-worlwide-network.pt-10 {
    padding-bottom: 700px;
}

.tieups_data {
    display: flex;
    flex-wrap: wrap;
}
.tieups_data .tieup_item {
    width: 50%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.tieups_data .tieup_item:nth-child(odd) {
    padding-right: 2rem;
    border-right: 2px dashed #000;
}
.tieups_data .tieup_item:nth-child(even) {
    padding-left: 2rem;
}
.tieups_data .tieup_item:first-child, .tieups_data .tieup_item:nth-child(2) {
    border-bottom: 2px dashed #000;
}
.tieups_data .item_inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.tieups_data h3 {
    font-size: var(--font48);
    span {
        display: block;
        padding: 8px 12px;
        border-radius: 5px;
        background-color: var(--theme-color);
        color: var(--white);
        font-weight: 500;
        font-size: var(--font16);
        margin-top: 8px;
    }
}

.tieups_col_white {
    .tieups_data .tieup_item:nth-child(odd) {
        border-right: 2px dashed var(--white);
    }
    .tieups_data .tieup_item:first-child, .tieups_data .tieup_item:nth-child(2) {
        border-bottom: 2px dashed var(--white);
    }
    img {
        filter: brightness(0) invert(1);
    }
    h3 span {
        display: block;
        padding: 0;
        border-radius: 0;
        background-color: transparent;
    }
}

.sec-global-programs-offered, .sec-gp-negative-space {
    margin-top: -100px;
}
.partnership_model {
    margin-bottom: -85px;
}

.student_gain_wrapper {
    .sg_row {
        padding-top: 10px;
        padding-bottom: 10px;
        justify-content: space-around;
    }
    .sg_item {
        width: 240px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
    }
    .sg_img_icon {
        position: relative;
    }
    img.sg_icon {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 86px;
        width: 65px;
    }
    .sg_item:nth-child(even) {
        img.sg_icon {
            top: auto;
            bottom: 85px;
        }
    }
    h4 {
        color: var(--theme-color);
        margin: 8px 0;
        font-weight: 700;
    }
    p {
        font-size: var(--font16);
    }
}

.sec-international-affair.pb-10 {
    padding-top: 150px;
}

.sec-mou-international .flex_figures {
	display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}
.sec-mou-international .flex_figures figure {
	border-bottom: 2px dotted #ccc;
    border-right: 2px dotted #ccc;
    padding: 40px 0;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
.sec-mou-international .flex_figures figure.highlight {
    border-right: 0;
}
.sec-mou-international .flex_figures figure.last-row  {
	border-bottom: 0;
}
.sec-mou-international .flex_figures figure img {
    width: 100%;
    display: block;
    cursor: pointer;
}
.mou_tabs_wrapper .nav-pills .nav-link {
    background: transparent;
    border-radius: 0;
    border: 0;
    text-align: center;
    font-size: var(--font18);
    font-weight: 400;
    color: var(--darkgrey);
    margin: 0 auto;
}
.mou_tabs_wrapper .nav-pills .nav-link.active {
    color: var(--theme-color);
    font-weight: 600;
}
.mou_tabs_wrapper .nav-pills .nav-link img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}
.mou_tabs_wrapper .owl-nav button {
    background: transparent !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.student-testimonials-slider p, .student-testimonials-slider h6 {
    color: var(--text-color);
}
.student-testimonials-slider .story-box {
    background-color: #eeeeee;
    padding: 1.25rem;
    width: 100%;
    height: 100%;
    font-size: var(--font12);
}
.student-testimonials-slider figure img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    min-width: 50px;
}
.student-testimonials-slider .student-name-company h6 {
  font-size: var(--font21);
  color: var(--theme-color);
  font-weight: 600;
}
.student-testimonials-slider .student-name-company p {
    font-size: var(--font12);
}
.student-testimonials-slider .text span {
    margin-bottom: 1rem;
    display: block;
}
.student-testimonials-slider .student-name-company {
    border-left: 1px solid #2E2E2E66;
    padding-left: 1rem;
    margin-top: 1rem;
}

.owl-facilities .item_inner {
    padding-top: 100%;
    position: relative;
    .item_content {
        padding: 1.75rem;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    h3 {
        font-size: var(--font40);
        font-weight: 700;
    }
    p {
        font-size: var(--font16);
        margin-bottom: 0;
    }
}
.owl-excellence .item_inner {
    padding: 1.75rem;
    padding-top: 50%;
    h3 {
        font-size: var(--font24);
        font-weight: 700;
        margin-bottom: 10px;
    }
    p {
        font-size: var(--font16);
    }
}

.common-placement-package {
    .pkg-students .col-item {
        padding: 1rem;
        border-left: 1px dashed #fff;
        border-bottom: 1px dashed #fff;
        p {
            font-size: var(--font16);
        }
    }
    .pkg-students .col-item:first-child, 
    .pkg-students .col-item:nth-child(4) {
        border-left: none;
    }
    .pkg-students .col-item:last-child, 
    .pkg-students .col-item:nth-child(5)  {
        border-bottom: none;
    }
    .pkg-students .col-item h3 {
        font-size: var(--font48);
        white-space: nowrap;
        span {
            font-size: var(--font24);
        }
    }
}
.placement-pckg-dark {
    .pkg-students .col-item {
        padding: 1rem;
        border-left: 1px dashed #000;
        border-bottom: 1px dashed #000;
    }
}
    
.sec-placement-package .img-col {
    margin-top: -25px;
}

.sec-cgc-accomodation {
    .bg-stripe {
        margin-bottom: 2rem;
        background: var(--theme-color);
        color: #fff;
        position: relative;        
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
        padding: 3rem;
        p {
            position: relative;
        }
    }
    .bg-stripe:before {
        content: '';
        position: absolute;
        height: 100%;
        top: 0;
        right: -9999px;
        left: 0;
        background: var(--theme-color);
        z-index: 0;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
    }
}

.international-fee-table {
    table, table td {
        border: 1px solid #11111166;
    }
    table td, table th {
        font-size: var(--font16);
        padding: 15px 25px;
    }
    table th {
        border: 1px solid #fff;
        background-color: var(--theme-color);
        color: var(--white);
        font-weight: 700;
    }
    table td[colspan] {
        background-color: var(--background-grey);
    }
    td.tbl_heading {
        text-align: center;
    }
}

.owl-student-stories {
    .item {
        display: flex;
        background-color: var(--btn-red);
    }
    .img_box, .content_box {
        width: 50%;
    }
    .img_box img {
        height: 100%;
        object-fit: cover;
    }
    .content_box {
        padding: 2rem;
        align-self: center;
        h4 {
            font-size: var(--font24);
            small {
                display: block;
                font-size: var(--font14);
                margin-top: 5px;
            }
        }
    }
}

.wide-network-red {
    &:before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background-color: var(--theme-color);
    }
    .tieups_data .tieup_item {
        border-color: var(--white);
        img {
            filter: brightness(0) invert(1);
        }
    }
    .tieups_col {
        color: var(--white);
    }
}


.sec-financial-eligibility .sec_flex_col {
    display: flex;
    flex-wrap: wrap;
}
.sec-financial-eligibility .col_width {
    width: 100%;
    img {
        margin-bottom: 1.5rem;
    }
}
.sec-financial-eligibility .second_col {
    padding-left: 5rem;
    position: relative;
    padding-top: 4rem;
    &:before, &:after {
        content: '';
        left: 0;
        position: absolute;
        height: 300px;
        bottom: 0;
        background-color: var(--blue);
    }
    &:before {
        width: 100%;
    }
    &:after {
        right: -9999px;
        z-index: 0;
    }
}

.admisn_process {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem;
}
.admisn_process ul {
    padding-left: 0;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    &:before {
        content: '';
        position: absolute;
        left: 20px;
        top: 41px;
        width: calc(100% - 40px);
        height: 2px;
        background-color: #CCCCCC;
        z-index: 0;
    }
}
.admisn_process ul li {
    width: 20%;
    padding: 1rem;
    position: relative;
    z-index: 1;
    .li_inner {
        max-width: 220px;
        font-size: var(--font16);
    }
    .step_number {
        color: var(--blue);
        text-transform: uppercase;
        font-size: var(--font14);
        display: block;
        margin: 15px 0 10px;
    }
    svg {
        padding: 5px;
        width: 50px;
        height: 50px;
        background-color: #fff;
    }
    svg path {
        fill: #CCCCCC;
    }
}
.admisn_process ul li.active {
    svg path {
        fill: #008C76;
    }
}

.cgcuet-education-phase {
    .col_padding {
        position: relative;
        display: flex;
        align-items: center;
        background-color: var(--theme-color);
        &:before {
            content: '';
            position: absolute;
            height: 100%;
            top: 0;
            left: -9999px;
            right: 0;
            background: var(--theme-color);
            z-index: 0;
        }
        .cgcuet_col {
            padding-right: 2rem;
            position: relative;
        }
    }
    .col_inner {
        height: 100%;
        width: 100%;
        background: #fff;
        box-shadow: 0px 2px 30px #00000024;
        border-radius: 16px;
        overflow: hidden;
    }
    .col_hdr {
        background-color: var(--theme-color);
        padding: 1rem 2rem;
    }
    .col_body {
        padding: 2rem;
        p {
            padding-bottom: 1rem;
            border-bottom: 1px solid #11111124;
        }
    }
}
.tabs_with_accordion_wrapper {
    margin-bottom: -100px;
    .accordion-body {
        border: 1px solid #11111166;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0px 2px 30px #00000026;
        padding: 2rem;
        table {
            margin: 1rem 0 0;
            border: 1px solid #11111124;
        }
        table caption {
            background: var(--theme-color);
            font-size: var(--font21);
            color: #fff;
            text-align: center;
            font-weight: 700;
            padding: 1rem;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        table td, table th {
            padding: 10px 15px;
            font-size: var(--font14);
            border: 1px solid #11111124;
        }
        table th {
            font-size: var(--font16);
            font-weight: 700;
        }
        table p {
            margin-bottom: 8px;
        }
    }
}
ul#accordionTab {
    li {
        margin: 1rem 0 0;
        width: 100%;
    }
    button.nav-link {
        width: 100%;
        border: 1px solid #11111166;
        background: var(--white);
        font-size: var(--font12);
        font-weight: 400;
        display: flex;
        align-items: center;
        padding: 10px;
        text-align: left;
        gap: 1rem;
        box-shadow: 0px 2px 15px #00000026;
        img {
            width: 40px;
            padding-right: 10px;
            border-right: 1px solid #11111166;
        }
    }
    button.nav-link.active {
        background: var(--theme-color);
        color: var(--white);
        img {
            filter: brightness(0) invert(1);
            border-color: var(--white);
        }
    }
}

.scholarship-terms {
    padding-top: 200px;
    ol li {
        margin: 10px 0;
        font-size: var(--font18);
    }
}


.countries-offering-degrees {
    &:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50%;
        background-color: var(--blue);
    }
    .col_inner {
        background-color: var(--white);
        border-radius: 16px;
        box-shadow: 0px 2px 30px #00000026;
        padding: 2rem;
    }
    .scroll_para {
        height: 200px;
        overflow: auto;
        p {
            font-size: var(--font16);
            strong {
                display: block;
            }
        }
    }
}


.sec-partner-forum .all-figures {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    img {
        max-width: 20%;
    }
}
.international-academic-venture {
    .tieups_col {
        max-width: 550px;
    }
    .col-bg {
        background-color: var(--theme-color); 
        mix-blend-mode: multiply;
        position: relative;
        &:before {
            content: '';
            position: absolute;
            height: 100%;
            top: 0;
            right: -9999px;
            left: 0;
            background: var(--theme-color); 
            z-index: 0;
        }
    }
    .contnet_box {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 2rem;
        position: relative;
    }
}

.sec-international-collaboration {
    &:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: var(--theme-color);
        mix-blend-mode: multiply;
    }
}

.owl-collaboration {
    height: 100%;
    font-family: var(--lato);
    .owl-stage-outer, .owl-stage, .owl-item {
        height: 100%;
    }
    .item {
        height: 100%;
        padding: 1rem;
        padding-bottom: 3rem;
        padding-top: 100%;
    }
    .owl-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }
    h4 {
        font-size: var(--font24);
        position: relative;
        padding-bottom: 13px;
        margin-bottom: 1rem;
        &:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 2px;
            background-color: var(--white);
            left: 0;
            bottom: 0;
        }
    }
    p {
        font-size: var(--font16);
    }
}

.sec-cgc-legacy:before {
    content: '';
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 0;
}

.legacy_tier_placement {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    .ltp_item {
        width: calc(100% / 6);
    }
    .ltp_item:not(:first-child) {
        padding-left: 1.5rem;
        border-left: 1px dashed #fff;
    }
    h2 {
        font-size: var(--font40);
        font-weight: 400;
        sub {
            bottom: 0;
            font-size: 60%;
        }
    }
    p {
        margin-bottom: 0;
        line-height: 1.35;
        font-size: var(--font14);
    }
}

.exposure-pgm-list {
    position: relative;
    &:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 2px;
        height: calc(100% - 200px);
        border-left: 2px dashed #2E2E2E;
        transform: translate(-50%, -50%);
    }
    .epl-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
        &:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--theme-color);
            transform: translate(-50%, -50%);
        }
    }
    .epl-img, .epl-text {
        width: 50%;
        padding: 1.5rem 3rem;
    }
    h4 {
        font-size: var(--font24);
    }
    p{
        margin-bottom: 0;
    }
    .epl-img {
        text-align: right;
    }
    .epl-img img {
        border-radius: 8px;
    }
}

.owl-testimonial-single {
    figure {
        position: relative;
        &:after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: var(--theme-color);
            opacity: 0.7;
            transition: .4s all;
        }
    }
    .owl-item.center {
        figure:after {
            width: 0%;
        }
    }
    .img_height {
        object-fit: cover;
        min-height: 240px;
    }
}
.testimonial-output {
    p {
        position: relative;
        line-height: 1.6;
        font-size: var(--font16);
        padding-left: 30px;
        padding-right: 30px;
        &:before, &:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            display: inline-block;
        }
        &:before {
            background: url(../images/quote-left.svg) no-repeat left center;
            background-size: contain;
            margin-left: -40px;
            top: -10px;
        }
        &:after {
            background: url(../images/quote-right.svg) no-repeat left center;
            background-size: contain;
            bottom: 0px;
            margin-left: 10px;
        }
    }
}

.sec-worldwide-network {
    .col-bg {
        background-color: var(--theme-color);
        mix-blend-mode: multiply;
        position: relative;
        &:before {
            content: '';
            position: absolute;
            height: 100%;
            top: 0;
            left: -9999px;
            right: 0;
            background: var(--theme-color);
            z-index: 0;
        }
    }
    .tieups_col_white {
        h3 span {
            background-color: var(--white);
            color: var(--theme-color);
            padding: 8px 12px;
            border-radius: 5px;
        }
    }
    .content_left_box {
        position: relative;
        padding-top: 60px;
        padding-right: 50px;
    }
    .content_right_box {
        padding: 30px;
        padding-right: 0;
    }
}

.meet_conference_list {
    .col-inner {
        width: 100%;
        height: 100%;
        border: 1px solid #CCCCCC;
        box-shadow: 0px 3px 20px #0000001A;
        figure {
            overflow: hidden;
            min-height: 180px;
        }
        figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .4s all;
        }
        .text_pad {
            padding: .5rem 1rem;
        }
        h3 {
            font-weight: 300;
            font-size: var(--font24);
        }
        p {
            font-weight: 300;
            font-size: var(--font16);
        }
    }
    .col-inner:hover figure img {
        transform: scale(1.10);
    }
}

.sec-alumni-advantage {
    .col-left, .col-right {
        mix-blend-mode: multiply;
        position: relative;
        display: flex;
        align-items: center;
        &:before {
            content: '';
            position: absolute;
            height: 100%;
            top: 0;
            z-index: 0;
        }
    }
    .col-left {
        background-color: var(--darkgrey);
        &:before {
            left: -9999px;
            right: 0;
            background: var(--darkgrey);
        }
    }
    .col-right {
        background-color: var(--blue);
        &:before {
            right: -9999px;
            left: 0;
            background: var(--blue);
        }
    }
    .content_box {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .col-left .content_box {
        padding-right: 30px;
    }
    .col-right .content_box {
        padding-left: 30px;
    }
}

.alma-mater-list {
    .col-inner {
        width: 100%;
        height: 100%;
    }
    .fig_overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0%;
        padding-left: 1rem;
        padding-right: 1rem;
        background-color: rgb(158 2 3 / 90%);
        transition: .5s all;
        font-size: var(--font14);
        .icon-quote {
            opacity: 40%;
            width: 50px;
        }
        p {
            margin-bottom: 8px;
        }
    }
    figure img.w-100 {
        height: 100%;
        object-fit: cover;
    }
    img.logo_pos {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 90px;
    }
    figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        color: #fff;
        padding: 1rem;
        h4 {
            font-size: var(--font24);
            margin-bottom: 5px;
        }
        p {
            font-size: var(--font16);
            margin-bottom: 0;
        }
    }
    .col-inner:hover .fig_overlay {
        height: 100%;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.mou-accordion {
    .accordion-item {
        border: none;
        border-bottom: 1px solid #dcdcdc;
    }
    .accordion-button {
        outline: none;
        display: flex;
        justify-content: space-between;
        font-size: var(--font21);
        box-shadow: none;
        border: none;
        font-weight: bold;
        padding: 25px 0;
    }
    .accordion-button img.flag-icon {
        width: 50px;
        margin-right: 15px;
    }
    .accordion-button span:first-child {
        width: 100%;
    }
    .accordion-button span.theme-color {
        white-space: nowrap;
        padding-right: 20px;
    }
    .accordion-button:not(.collapsed) {
        background: var(--white) !important;
        color: var(--theme-color);
        border-bottom: 1px solid #dcdcdc;
    }
    .accordion-button::after {
        background-image: url('../images/icon-plus.svg');
        background-position: center;
    }
    .accordion-button:not(.collapsed)::after {
        background-image: url('../images/icon-minus.svg');
    }
    .accordion .accordion-body {
        padding: 0 0 10px 0;
    }
    .flex_figures figure img {
        padding: 0 10px;
    }
}
.img-gallery {
    text-align: center;
    margin: 20px 0 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.img-gallery .button {
    display: inline-block;
    border-radius: 10px !important;
    background-color: var(--text-color);
    margin: 3px;
}
.img-gallery .button a {
    color: #929292;
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 1rem;
}
.img-gallery .button.is-checked.active {
    background-color: var(--theme-color);
    outline: 0;
    display: inline-block;
    border-radius: 10px !important;
}
.img-gallery .button.is-checked.active a {
    color: var(--white);
}
.grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.grid figure {
    margin: 0;
    overflow: hidden;
}
.grid img {
    width: 350px;
    cursor: pointer;
    transition: transform 0.3s;
    height: 100%;
}
.lightbox {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox.show {
    opacity: 1;
    transform: scale(1);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.lightbox-img {
    max-width: 100%;
    max-height: 60vh;
    margin-bottom: 20px;
    object-fit: contain;
}

.thumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.thumb-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 90vw;
}

.thumb-track {
    display: flex;
    gap: 10px;
    transition: transform 0.4s ease;
}

.thumb-track img {
    width: 70px;
    flex-shrink: 0;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, border 0.3s ease;
}

.thumb-track img.highlighted {
    opacity: 1;
    border: 2px solid #00ffff;
}

#thumbPrev,
#thumbNext {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}