/*Global CSS Starts Here*/

/* Global Colors */
:root {
    --themePrimary: #000000;
    --themeSecondary: #f7941d;
    --white: #ffffff;
    --whiteText: #ffffff;
    --pink: #FF0468;
    --text: #404040;
    --heading: #0000000;
    --darkText: #0000000;
    --whiteBorder: #FFFFFF;
    --grayBg: #F1F2F4;
    --darkCardBg: #272727;
}

/* Global Colors */

body {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: var(--themePrimary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    line-height: 1;
}

p,
li {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
}

a {
    font-size: 16px;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: all .5s;
}

a:hover {
    text-decoration: none;
    transition: all .5s;
}

img {
    margin-bottom: 0px;
    object-fit: cover;
    max-width: 100%;
}

a span {
    vertical-align: middle;
}

/*Global CSS Ends Here*/

/*Common CSS Starts Here*/
.m-b-0 {
    margin-bottom: 0px !important;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-t-50 {
    margin-top: 50px;
}

.custom-container {}

.common-btn {
    background: none;
    border: 2px solid var(--themeSecondary);
    color: var(--white);
    padding: 10px 40px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 25px;
}

.common-btn:hover {
    background: var(--themeSecondary);
    color: var(--whiteText);
}

.row-reverse {
    flex-direction: row-reverse;
}

.line {
    margin-top: 0px;
    margin-bottom: 0px;
}

.line hr {
    margin: 0px;
}

h1 {
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 20px;
}

h2 {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 20px;
    text-align: left;
}

h3 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
}

h4 {
    font-size: 30px;
    line-height: 36px;
    text-align: left;
    margin-bottom: 20px;
}

h5 {
    font-size: 26px;
    line-height: 32px;
    text-align: left;
    margin-bottom: 20px;
}

h6 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
}

input, textarea{
    outline: 0;
}

.custom-container {
    max-width: 90%;
    margin: auto;
}

header {
    background-color: var(--themePrimary);
    position: relative;
    z-index: 9999999;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding-left: 50px;
}

.logo-col img {
    width: 200px;
}

.logo-col {
    padding: 20px 0px;
}

.menu-col {
    display: flex;
    align-items: center;
}

.changeIcon {
    background-color: var(--themeSecondary) !important;
}

.login-menu a img {
    width: 20px;
}

.main-menu button {
    margin-left: 30px;
    background: none;
    border: none;
    width: 100px;
    height: 100px;
    transition: all .5s;
}

.main-menu button:hover {
    background: var(--themeSecondary);
    transition: all .5s;
}

.login-menu a {
    color: #fff;
}

.main-menu button img {
    width: 30px;
}

.menu-box {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    visibility: hidden;
}

.menu-box {
    background-color: var(--themePrimary);
    transition: all .6s;
    position: fixed;
    left: 0;
    top: -150%;
    height: calc(100vh);
    width: 100%;
    z-index: 9;
}

.showMenu {
    top: 0;
    left: 0;
    transition: all .6s;
    z-index: 99;
    visibility: visible;
}

.inner-menu-list-col {
    margin-top: 200px;
    position: relative;
    max-width: 800px;
    margin-left: 5%;

}

.inner-menu-list-col .sub-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    padding-left: 0;
    margin-top: 15px;
}
ul li {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.inner-menu-list-col ul {
    padding: 0;
    margin: 0;
}

.inner-menu-list-col ul li {
    margin:30px 0px;
}

.inner-menu-list-col ul li a {
    color: var(--whiteText);
    font-size: 22px;
    text-transform: uppercase;
/*     margin: 15px 0px; */
}

.mainmenu-item {
    font-size: 28px !important;
}

.inner-menu-list-col ul li a:hover {
    width: 500px;
}

.inner-menu-list-col ul li {
    list-style: none;
}

.menuDropdown {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.sub-menu li {
    margin-bottom: 30px !important;
}

.sub-menu li a {
    text-transform: inherit !important;
}

.inner-menu-list-col ul li:first-child .sub-menu::before {
    content: "";
    display: block;
    height: 3px;
    width: 200%;
    background: var(--themeSecondary);
    left: -210%;
    position: absolute;
    top: 13px;
}

.inner-menu-list-col ul li:nth-child(2) .sub-menu::before {
    content: "";
    display: block;
    height: 3px;
    width: 200%;
    background: var(--themeSecondary);
    left: -210%;
    position: absolute;
    top: 73px;
}

.inner-menu-list-col ul li:nth-child(3) .sub-menu::before {
  content: "";
  display: block;
  height: 3px;
  width: 50%;
  background: var(--themeSecondary);
  left: -60%;
  position: absolute;
  top: 150px;
}

.inner-menu-list-col ul li:nth-child(4) .sub-menu::before {
    content: "";
    display: block;
    height: 3px;
    width: 200%;
    background: var(--themeSecondary);
    left: -210%;
    position: absolute;
    top: 193px;
}

.inner-menu-list-col ul li:nth-child(5) .sub-menu::before {
    content: "";
    display: block;
    height: 3px;
    width: 200%;
    background: var(--themeSecondary);
    left: -210%;
    position: absolute;
    top: 253px;
}


.inner-menu-list-col ul li:nth-child(1) .sub-menu {}

.inner-menu-list-col ul li:nth-child(2) .sub-menu {
    padding-top: 2px;
}

.inner-menu-list-col ul li:nth-child(3) .sub-menu {
    padding-top: 4px;
}

.inner-menu-list-col ul li:nth-child(4) .sub-menu {
    padding-top: 6px;
}

.inner-menu-list-col ul li:nth-child(5) .sub-menu {
    padding-top: 8px;
}

.showMenu {
    display: block !important;
}


.banner-section {
    /* background-color: var(--themePrimary); */
    display: flex;
}
.banner-slider-wrapper{
    height:80vh;
}

.banner-slider .item {}

.banner-slider .owl-item {
    /* transform: scale(1)!important; */
    transition: .6s ease;
    -webkit-box-shadow: 15px 13px 15px -3px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 15px 13px 15px -3px rgba(0, 0, 0, 0.24);
    box-shadow: 15px 13px 15px -3px rgba(0, 0, 0, 0.24);
    margin-bottom: 20px;
}

.banner-slider {
    margin-bottom: 100px;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    float: none !important;
}

.banner-slider .active.center {
    /* transform: scaleX(1.5)!important;
    margin-left: 90px;
  margin-right: 100px !important; */
}

.banner-slider .item p {}



.banner-slider .tracklist {
    /* display: none; */
}

.banner-slider .item.slider-col img {
    height: 100%;
}

.banner-text-col {
    /* background-color: var(--themePrimary); */
    /* background-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0)); */
    background-color: var(--themePrimary);
    background: linear-gradient(270deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 30%);
    /* background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(71, 71, 71, 0) 72%, #1c1c1c 89%, black 100%); */
    z-index: 5;
    position: relative;
    flex-shrink: 0;
    position: absolute;
    max-width: 880px;
    top: 0;
    height: 100%;
    display: flex;
    /* align-items: center; */
    padding-left: 100px;
    padding-right: 150px;
}

.banner-text-col h1 {
    color: var(--whiteText);
    font-weight: 300;
    font-size: 72px;
    line-height: 78px;
    margin-bottom: 30px;
}

.banner-text-col p {
    color: var(--whiteText);
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.banner-text-col a {
    border: 2px solid var(--themeSecondary);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--whiteText);
    font-size: 22px;
    display: inline-flex;
    align-items: center;
}
.banner-text-wrapper{
    height: 80vh;
    display: flex;
    align-items: center;
}
.banner-text-col a img {
    margin-left: 20px;
    position: relative;
    top: 2px;
}

.banner-text-col a:hover {
    background: var(--themeSecondary);
}

.banner-slider {
    width: 100%;
}

.banner-section {
    position: relative;
}

.banner-slider-wrapper {
    background: var(--themePrimary);
}

.banner-slider-wrapper {
    width: 80%;
    margin-left: auto;
}

.banner-slider .item.slider-col {
    height: 100%;
}

.banner-slider .item {
    box-shadow: none;
}

.banner-slider .owl-item {
    box-shadow: none;
}

.banner-slider .item.slider-col img {
    border-radius: 25px;
    transition: .6s ease;
}

.banner-slider .owl-stage .owl-item {
    height: 80vh;
    overflow: hidden;
    transition: .6s ease;
}

.banner-slider .active.center img {
    transform: scaleY(1.05);
    transition: .6s ease;
}

.banner-slider .item.slider-col {
    height: 80vh;
    overflow: hidden;
    border-radius: 25px;
}

.banner-slider .item.slider-col img {
    width: 100% !important;
    transition: .6s ease;
    object-fit: cover;
    object-position: center;
}

.banner-slider .active.center {
    transition: .6s ease;
    width: 500px !important;
}


.banner-section .owl-nav {
    display: none;
}

.stats-card-col {
    background: var(--darkCardBg);
    padding: 60px;
    border-radius: 15px;
}

.stats-col {
    display: flex;
    align-items: center;
    color:#fff;
}
.stats-col br{
    display: none;
}
.stats-col img {
    height: 70px;
    margin-right: 15px;
}

.stats-col p {
    color: var(--whiteText);
    margin-bottom: 0px;
    display:flex;
}

.stats-col i {
    color: var(--whiteText);
    font-style: normal;
    font-size: 50px;
    line-height: 1;
    display: flex;
}
p:empty{
    display: none;
}
.stats-col small {
    color: var(--whiteText);
    font-style: normal;
    font-size: 50px;
    line-height: 1;
    display: block;
    position: relative;
    top:-6px;
}
.counter-suffix{
    display: flex;
}
.stats-section {
    background-color: var(--themePrimary);
    margin-top:70px;
}

.about-section {
    background-color: var(--themePrimary);
}

.feature-section {
    background-color: var(--themePrimary);
}

.alumni-form-section {
    background-color: var(--themePrimary);
    padding: 100px 0px;
}

.alumni-card-col {
    /* background-image: url(../images/mp4/gray-bg.gif); */
    padding: 30px 60px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: repeat-x;
    background:var(--darkCardBg);
    animation: animatedBackground 10s linear infinite alternate;
}

@keyframes animatedBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 0;
    }
}

.alumn-field-col input[type="text"] {
    border: none;
    background: none;
    width: 100%;
    outline: 0;
    color: var(--whiteText);
}

.alumn-field-col input[type="tel"] {
    border: none;
    background: none;
    outline: 0;
    width: 100%;
    color: var(--whiteText);
}

.alumni-form-right-col .row {
    align-items: center;
}

.alumni-form-col {
    margin-left: 30px;
}

.alumn-field-btn-col {
    border: 2px solid var(--whiteBorder);
    background: none;
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alumn-field-btn-col input[type="submit"] {
    color: var(--whiteText);
    background: none;
    font-size: 22px;
    border: none;
}

.alumn-field-btn-col img {
    margin-left: 15px;
}

.alumn-field-btn-col:hover {
    background-color: var(--themeSecondary);
}

.alumni-card-col .row {
    align-items: center;
}

.alumn-field-col {
    border: 2px solid var(--whiteBorder);
    border-radius: 15px;
    margin: 10px 0px;
    padding: 1px 10px;
}

.alumn-field-col span {
    font-size: 12px;
    color: var(--whiteText)
}

.partner-school-section {
    background-color: #191919;
    overflow: hidden;
}
.alumni-form-left-col{
    max-width: 400px;
}
.alumni-form-left-col h2 {
    text-transform: uppercase;
    color: var(--whiteText);
}

.partner-school-section {
    padding: 20px 0 80px 0;
}

.partner-school-left-col h3 {
    color: var(--themeSecondary);
    margin-bottom: 0;
    font-size: 30px;
}

.partner-school-section .row {
    align-items: center;
}

.partner-school-section hr {
    margin: 0;
    border-color: var(--themeSecondary);
    opacity: 1;
}

.partner-school-section .row {
    padding: 30px 0px;
}

.partner-school-section .owl-nav {
    display: none;
}

.feature-section {
    padding-top: 50px;
}

.feature-section .heading-col h2 {
    color: var(--whiteText);
    margin-bottom: 30px;
}

.feature-img-col img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
}

.feature-img-col {
    border-radius: 15px;
    margin-right: 40px;
}
.fplc-box{
    padding-left:10px;
    margin-bottom: 25px;
}
.feature-list-col {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
	color:#fff;
}
.fplc-box p{
    margin-bottom: 5px;
}
.upcoming-slide-wrapper{
    padding:70px 0px 100px;
}
.fplc-box p a{
    color:#fff;
}
.feature-list-col span {
    display: flex;
    width: 33.33%;
    align-items: center;
}

.feature-list-col img {
    height: 20px;
    margin-right: 10px;
    object-fit:contain;
}

.feature-list-col span p {
    margin-bottom: 0;
    color: var(--whiteText);
}
.feature-text-col{
    color:#fff;
}
.feature-text-col ul {
    color: var(--whiteText);
    margin-bottom: 20px;
}

.feature-text-col h4 {
    color: var(--whiteText);
}

.program-section {
    background: var(--grayBg);
    padding: 50px 0px;
}

.program-section-card {
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 25px;
    padding: 50px 100px;
}

.program-col-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.program-col-menu ul li {
    list-style: none;
    margin-bottom: 25px;
}

.program-col-menu ul li button {
    background: none;
    border: 1px solid var(--themePrimary);
    width: 35px;
    height: 35px;
    font-size: 20px;
    border-radius: 100%;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}
.program-col-left-tab-content h5{
    margin-bottom: 10px;
}
.about-text-col h2 {}

.about-text-colul li {
    font-size: 16px;
}

.program-col-right-tab-content img {
    width: 100%;
    border-radius: 25px;
    height: 370px;
}

.rc-col {
    display: none;
}

.about-section {
    padding: 100px 0px;
}

.about-section .heading-col {
    text-align: center;
    max-width: 800px;
    margin: auto;
    /* margin-bottom: 60px; */
    margin-bottom: 10px;
}

.lc-col {
    display: none;
}

.lc-col p {
    margin-bottom: 2px;
    font-size: 18px;
}

.tabActive {
    background-color: var(--themeSecondary) !important;
}

.about-col {
    max-width: 850px;
    margin: auto;
}

.about-col .video-col .vid-img {
    height: 500px;
    border-radius: 25px;
}

.about-video-col {
    border-radius: 25px;
    overflow: hidden;
    margin-left: 30px;
    margin-top:20px;
}

.about-section .heading-col h2 {
    color: var(--whiteText);
    text-align: center;
}

.about-section .heading-col h6 {
    color: var(--whiteText);
}

.bottom-program-col {
    padding-top: 60px;
}

.program-right-col {
    margin-left: 30px;
}

.video-col {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-col img {
    width: 100%;
    border-radius: 25px;
}

.about-col {
    overflow: hidden;
    position: relative;
}

/* .about-col::after {
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 80%);
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -20px;
    height: 80px;

} */

.about-video-col {
    position: relative;
    overflow: hidden;
}

.about-video-col::after {
    /* background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 80%);
    content: none;
    display: block;
    width: 100%;
    position: absolute;
    bottom: -20px;
    height: 80px; */

}

.video-play-button {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.24);
}

.video-play-button button {

    z-index: 1;
    border: 2px solid var(--whiteBorder);
    padding: 10px 20px;
    width: 180px;
    height: 100px;
    border-radius: 10px;
    margin: auto;
    background: none;
    transition: all .5s;
}

.video-play-button img {
    width: 80px;
    border-radius: 0 !important;
}

.video-play-button button:hover {
    background: var(--themeSecondary);
    border-color: var(--themeSecondary);
    transition: all .5s;
}

.top-footer {
    padding: 100px 0px 40px 0px;
}

.footer-left-col {
    text-align: center;
}

.footer-left-col img {
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-left-col ul li a img {
    width: 40px;
    transition: all .5s;
    height: auto !important;
}

.footer-left-col ul li a:hover img {
    transform: scale(1.1);
    transition: all .5s;
}

.footer-right-col {
    display: flex;
}

.footer-left-col ul {
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.footer-left-col ul li {
    display: inline-block;
    margin: 0px 10px;
}

.footer-left-col ul li img {
    height: 20px;
}

.footer-col {
    width: 33.33%;
}

.footer-col ul {
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-col ul li img {
    width: 20px;
    margin-right: 5px;
}

.footer-col ul li a {
    color: #9D9D9C;

}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-col h6 {
    color: var(--pink);
    margin-bottom: 10px;
}

.bottom-footer {
    text-align: center;
    border-top: 1px solid #9D9D9C;
}

.bottom-footer-col ul {
    padding: 0;
    margin: 0;
}

.bottom-footer-col ul li {
    list-style: none;
    display: inline-block;
    margin: 0px 10px;
    padding: 30px 0px;
}

.bottom-footer-col ul li a {
    font-size: 12px;
    color: var(--darkText);
}

.bottom-footer-col ul li a:hover {
    text-decoration: underline;
}

.marquee-slider1 .owl-stage {
    transition-timing-function: linear !important;
}

.enquiry-btn {
    background: none;
    border: 2px solid var(--themeSecondary);
    color: var(--white);
    padding: 7px 40px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 25px;
    transition: all .5s;
}

.enquiry-btn:hover {
    background: var(--themeSecondary);
    color: var(--whiteText);
    transition: all .5s;
}

.enquiry-btn img {
    visibility: hidden;
    height: 0;
    transition: all .5s;
}

.enquiry-btn:hover img {
    visibility: visible;
    transition: all .5s;
    height: 15px;
    margin-left: 15px;
}

footer {
    background-color: var(--white);
}

.inner-menu-list-col {
    display: block;
}

.mobilemenu-accordian {
    margin-top: 150px;
    padding: 10px 5%;
    display: none;
    overflow-y: scroll;
    max-height: 500px;
    padding-bottom: 100px;
}

.mobilemenu-accordian .accordion {
    --bs-accordion-bg: transparent !important;
    --bs-accordion-border-color: transparent !important;
}

.mobilemenu-accordian .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
    border: none;
}

.mobilemenu-accordian .accordion-item:first-of-type .accordion-button {
    background: none;
    box-shadow: none;
    border: none;
}

.mobilemenu-accordian .accordion-item:first-of-type .accordion-button {
    color: var(--whiteText);
    font-size: 24px;
}

.mobilemenu-accordian .accordion-button:not(.collapsed)::after {
    transform: unset;
    /* background: none; */
}

.mobilemenu-accordian .accordion-button {
    color: var(--white);
    font-size: 24px;
    padding: 5px 0px;
    text-transform: uppercase;
}

.mobilemenu-accordian .accordion-button:focus {
    background: none;
    box-shadow: none;
    border: none;
}

.mobilemenu-accordian .mob-sub-menu {
    padding-left: 0px;
    margin: 0;
}

.mobilemenu-accordian .mob-sub-menu li {
    list-style: none;
    margin-bottom: 10px;
}

.mobilemenu-accordian .accordion-item {
    border-bottom: 1px solid var(--whiteBorder);
}

.mobilemenu-accordian .accordion-body {
    padding: 0;
    padding-bottom: 10px;
}

.mobilemenu-accordian .mob-sub-menu li a {
    color: var(--whiteText);
    font-size: 18px;
}

.mobilemenu-accordian .accordion-button:not(.collapsed) {
    color: var(--themeSecondary);
}

.mobilemenu-accordian .accordion-item:last-of-type {
    border: none;
}

.about-banner-section {
    height: 80vh;
}

.about-banner-section .row {
    align-items: center;
}

.banner-video-col {
    position: relative;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-left-col h1 {
    color: var(--whiteText);
    font-size: 52px;
    line-height: 61px;
}

.about-banner-left-col p {
    color: var(--themeSecondary);
    font-size: 27px;
    font-weight: 400;
}

.banner-video-play-button {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.24);
}

.banner-video-play-button button {
    z-index: 1;
    border: 2px solid var(--whiteBorder);
    padding: 10px 20px;
    width: 180px;
    height: 100px;
    border-radius: 10px;
    margin: auto;
    background: none;
    transition: all .5s;
}

.banner-video-play-button button:hover {
    background: var(--themeSecondary);
    border-color: var(--themeSecondary);
    transition: all .5s;
}

.banner-video-play-button .vid-img {
    height: 500px;
    border-radius: 25px;
}

.banner-video-col button img {
    width: 80px;
    border-radius: 0 !important;
}

.about-banner-section {
    display: flex;
    align-items: center;
}

.about-experience-section {
    background-color: #F3F4F6;
}

.about-experience-section {
    padding: 60px 0px;
}

.about-experience-section .heading-col {
    text-align: center;
    margin: auto;
    margin-bottom: 55px;
    max-width: 1000px;
}

.about-experience-section .heading-col h2 {
    text-align: center;
    margin-bottom: 35px;
}
.about-experience-section .heading-col p{
    font-size: 20px;
}
.about-exp-col img {
    height: 230px;
    border-radius: 25px;
    object-fit: cover;
    margin-bottom: 30px;
    width: 100%;
}

.about-exp-col h6 {
    margin-bottom: 10px;
    font-size: 24px;
}

.about-exp-col p {
    margin-bottom: 0;
    font-size: 15px;
}

.about-feature-video-col {
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
}

.about-features-section {
    padding: 60px 0px 20px;
}

.heading-col h3 {
    text-align: center;
    color: var(--whiteText);
    margin-bottom: 20px;
    font-size: 36px;
}

.about-features-list {
    /* max-width: 900px; */
    margin: auto;
}
.about-features-list .row .col-md-4:nth-child(1){
    margin-bottom: 100px;
}
.about-features-list .row .col-md-4:nth-child(2){
    margin-bottom: 100px;
}
.about-features-list .row .col-md-4:nth-child(3){
    margin-bottom: 100px;
}
.about-feature-list-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-list-col img {
    height: 70px;
    object-fit: contain;
    margin-right:10px;
}

.about-feature-list-col p {
    font-size: 22px;
    /* margin-left: 20px; */
    color: var(--whiteText);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-section {
    padding-bottom: 60px;
}

.faq-list-col {
    margin-left: 50px;
}

.faqaccordion {}

.faq-heading-col {
    padding-right: 50px;
}

.faq-heading-col h2 {
    color: var(--themeSecondary);
    font-size: 40px;
}

.faqaccordion h2 .accordion-button {
    color: var(--whiteText);
    font-size: 22px;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faqaccordion h2 .accordion-button img{
    flex-shrink: 0;
    transition:  all .5s;
    width: 20px;
}
.faqaccordion h2 .accordion-button::after{
    content: none;
}

.faqaccordion .accordion-item {
    border-bottom: 2px solid var(--themeSecondary);
}

.accordion-body {
    color: #fff;
    padding-bottom: 20px;
}

.ban-vid-img {
    width: 100%;
}

.bpc-col {
    display: none;
}
.bpc-col ul li{
    font-size: 18px;
}
.fs-wrapper{
    max-width: 1150px;
    margin: auto;
}
.program-page-section {
    background-color: var(--themePrimary);
    padding-bottom: 80px;
}

.pcc-bottomcol-wrapper {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.pcc-bottom-col {
    display: flex;
    align-items: center;
}

.pcc-bottom-col img {
    height: 20px;
    margin-right: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

.pcc-bottom-col i {
    font-size: 13px;
    font-style: normal;
    color: var(--themeSecondary);
}

.pcc-bottom-col small {
    color: var(--whiteText);
    font-size: 13px;
}
.pcc-bottom-col small a{
	color: var(--whiteText);
	font-size: 13px;
}
.pcc-bottom-col span {
    line-height: 1;
}

.program-card-col {
    margin: 20px 0px;
    border: 1px solid #aaa;
    padding: 30px;
    background-color: #191919;
}

.program-card-col hr {
    background: var(--whiteText);
    border-color: var(--whiteText);
}

.pcc-top-col {
    display: flex;
}

.pcc-img-col {
    width: 200px;
    height: 150px;
    max-width: 200px;
    min-width: 200px;
    flex-shrink: 0;
    margin-right: 30px;
}

.pcc-img-col img {
    width: 100%;
    height: 100%;
}

.pcc-txt-col h3 {
    color: var(--whiteText);
    margin-bottom: 10px;
}

.pcc-txt-col h5 {
    color: var(--whiteText);
    margin-bottom: 10px;
}

.pcc-txt-col p {
    color: var(--whiteText);
    font-size: 18px;
}

.program-filter-col {
    padding: 20px;
    margin-top: 20px;
}

.program-filter-col button {
    background: #191919;
    border: none;
    padding: 10px 60px;
    border-radius: 50px;
    color: var(--whiteText);
    border: 1px solid var(--text);
    transition: all .5s;
}

.program-filter-col button img {
    width: 20px;
    margin-right: 10px;
}

.program-filter-col button:hover {
    background-color: var(--themeSecondary);
    transition: all .5s;
}

.pagination-col {
    margin-top: 40px;
}

.pagination-col ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.pagination-col ul li {
    list-style: none;
    margin: 10px;
    flex-shrink: 0;
}

.pagination-col ul li a {
    padding: 10px;
    border-radius: 100%;
    display: block;
    width: 35px;
    height: 35px;
    color: var(--whiteText);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-col ul li a:hover {
    background-color: var(--themeSecondary);
}


.pagination-col ul li a.paginate-active {
    background-color: var(--themeSecondary);

}

.details-banner-section {
    background-image: url(../images/jpg/program-banner-image.jpg);
    height: 1000px;
    background-size: cover;
    width: 100%;
}

.detailsHeader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: none;
}

.details-banner-section {
    position: relative;
}

.details-banner-overlay {
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.details-banner-col .custom-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding:0px 35px 0 50px;
}

.details-banner-col {
    height: 100%;
    width: 100%;
}

.details-banner-text-col {
    padding-right: 250px;
}

.details-banner-text-col h1 {
    color: var(--whiteText);
    font-size: 67px;
    line-height: 76px;
}

.details-banner-text-col p {
    color: var(--whiteText);
    font-size: 24px;
    line-height: 1.45;
}

.details-banner-form-col {
    background: #272727;
    border-radius: 15px;
    padding: 20px 30px;
}

.details-banner-form-heading-col h4 {
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
}

.details-banner-form-heading-col {
    text-align: center;
    margin-bottom: 30px;
}

.details-banner-form-heading-col p {
    font-size: 16px;
    opacity: .4;
}

.details-form-col {
    display: flex;
    margin-bottom: 20px;
    background: #f3f4f6;
    width: 100%;
    padding: 0px 10px;
    border-radius: 20px;

}

.details-form-col img {
    width: 20px;
    height: auto;
    object-fit: contain;
    margin-right: 5px;
}

.details-form-col input{
    width: 100%;
    background: none;
    border: none;
    padding: 10px;
    color: var(--text) !important;
}
.details-form-col select {
    width: 100%;
    background: none;
    border: none;
    padding:14px 10px;
    color: var(--text) !important;
}

.details-form-col input[type="text"]::placeholder {
    color: var(--text) !important;
}

.dfc-submit-btn {
    border: 1px solid var(--themePrimary);
    background: none;
    transition: all .5s;
    margin-top: 35px;
}
.dfc-submit-btn:hover{
    border-color: var(--themeSecondary);
    color: var(--themeSecondary);
    transition: all .5s;
}
.dfc-submit-btn:hover input{
    color: var(--themeSecondary) !important;
    transition: all .5s;
}
.dfc-submit-btn input{
    font-size: 20px;
}
.details-banner-col .row {
    align-items: center;
}

.fpr-top-col {
    text-align: center;
}

.fpr-top-col h2 {
    text-align: center;
}

.feature-program-left-col {
    border: 1px solid var(--whiteBorder);
    border-radius: 20px;
    padding: 20px;
}

.feature-program-left-col h4 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--whiteText);
}

.feat-program-col {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}
.program-list-col{
    position: relative;
}
#errEmpty{
    color: red;
    top: 100px;
    left: 10%;
    position: absolute;
}
.feat-program-col img {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 350px;
}

.feat-program-col {
    position: relative;
}

.feat-text-col {
    position: absolute;
    bottom: 10px;
    z-index: 9;
}

.feat-text-col a{
    transition: all .5s;
}

.feat-text-col a img {
    height: 15px;
    object-fit: contain;
    margin-left: 10px;
    transition: all .5s;
}
.feat-text-col a:hover{
    background-color: var(--themePrimary);
    color: var(--whiteText);
    transition: all .5s;
}
.feat-text-col a:hover img{
    display: none;
    transition: all .5s;
}
.feature-program-section {
    padding: 100px 0px;
}

.feature-program-right-col {
    padding-left: 40px;
}
.feature-program-right-col ul{
    /* text-align:left; */
}
.feature-program-right-col ul li{
    list-style:none;
}
.fpr-top-col {
    margin-bottom: 40px;
}

.fpr-top-col h2 {
    color: var(--whiteText);
    margin-bottom: 30px;
}

.fpr-top-col p {
    color: var(--whiteText);
    font-size: 18px;
}

.fpr-stat-col {
    /* max-width: 600px; */
    margin: auto;
    padding-top: 40px;
    margin-bottom: 70px;
}

.fpr-stat-col {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.fpr-stat p {
    color: var(--themeSecondary);
    font-size: 70px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fpr-stat p small{
    position: relative;
    top:-6px;
}
.fpr-stat span {
    color: var(--whiteText);
    font-size: 20px;
    display: block;
}

.upc-heading-col h3 {
    font-size: 40px;
    color: var(--whiteText);
    text-align: center;
    margin-bottom: 40px;
}

.ups-col {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    text-align: center;
}
.ups-col img{
    height:400px !important;
}
.ups-col span {
    position: absolute;
    bottom: 0;
}

.ups-col::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 0%, rgb(91, 91, 91) 100%);
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    top: 0;
    bottom: 0;
}

.ups-col span {
    z-index: 2;
    padding: 20px 10px;
    display: block;
    left: 0;
    right: 0;
}

.ups-col span h6 {
    margin-bottom: 0px;
    color: var(--whiteText);
    text-transform: uppercase;
}

.ups-col span p {
    margin-bottom: 0px;
    color: var(--whiteText);
}

.ups-col a {
    background-color: var(--white);
    padding: 5px 20px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 25px;
    color: var(--themePrimary);
    border: 1px solid var(--themePrimary);
}
.ups-col a:hover{
    background: var(--themePrimary);
    color: var(--whiteText);
}
.ups-col a:hover img{
    display: none;
}
.ups-col span a img {
    height: 15px !important;
    object-fit: contain !important;
    margin-left: 10px !important;
}

.feature-vid-col {
    max-width: 800px;
    margin: auto;
    margin-top: 100px;
}

.feat-program-col::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgb(89, 136, 255) 0%, rgba(89, 136, 255, 0) 0%, rgb(89, 136, 255) 80%);
}

.feat-text-col {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.feat-text-col h4 {
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
}

.feat-text-col h4 {
    margin-bottom: 0;
    color: var(--whiteText);
}

.feat-text-col p {
    margin-bottom: 0;
    color: var(--whiteText);
}

.feat-text-col a {
    background-color: var(--white);
    padding: 5px 20px;
    margin-top: 15px;
    align-items: center;
    display: inline-flex;
    border-radius: 25px;
    color: var(--themePrimary);
    border: 1px solid var(--themePrimary);

}

.fpbt-img-col {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.fpbt-img-col::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
/*     background: linear-gradient(180deg, rgb(89, 136, 255) 0%, rgba(89, 136, 255, 0) 0%, rgb(89, 136, 255) 80%); */
}

.feature-program-left-col p {
    color: var(--whiteText);
}

.fpbt-img-col img {
    width: 100%;
    height: 350px;
}

.fpbt-img-col {
    /* margin-bottom: 20px; */
}

.feat-program-bottom-text-col {
    border: 1px solid var(--whiteBorder);
    border-radius: 20px;
}

.fbt-txt-col {
    padding: 20px;
}

.feat-rating-col {
    display: flex;
    margin-bottom: 30px;
}

.feat-rating-col button {
    border: none;
    background: none;
}

.fbt-txt-col h5 {
    color: var(--whiteText);
    margin-bottom: 0px;
}

.feat-social-col {
    border: 1px solid var(--whiteBorder);
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 15px;
}

.feat-social-col img {
    height: 25px;
}

.feat-text-col {
    text-align: center;
}

.feat-text-col h4 {
    text-align: center;
}

.owl-carousel .owl-item img {
    height: 80px;
}
.participating-school-slider-col{
    height: 80px;
}
.slider-col{
    height: 80px;
}
.feature-vid-col h3 {
    text-align: center;
    color: var(--whiteText);
    margin-bottom: 40px;
}

.feature-vid-col .vid-img {}

.feature-vid-col .video-col {}

.past-program-tab-section {}

.ppt-heading h3 {
    text-align: center;
    color: var(--whiteText);
}

.past-program-tab-col {
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.past-program-tab-col .nav-tabs {
    border: none;
    text-align: center;
    justify-content: center;
    margin-bottom: 40px;
}

.past-program-tab-col .nav-item {
    margin: 0px 10px;
}

.past-program-tab-col .nav-item button {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: var(--themeSecondary); */
    background: none;
    border: 1px solid var(--whiteBorder);
    color: var(--whiteText);
}
.past-program-tab-col .nav-link.active{
    background-color: var(--themeSecondary);
    color: var(--whiteText);
    border-color: var(--themeSecondary);
}
.past-program-tab-row-col {
    display: flex;
    gap: 10px;
    margin: 10px 0px;
}
.reverseRowTab{
    flex-direction: row-reverse;
}
.past-program-content-col {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--text);
    border-radius: 10px;
    height:250px;
}

.past-program-content-col img {
    width: 65%;
    border-radius: 10px;
}

.past-program-col {
    width: 50%;
}

.past-program-content-col span {
    flex-shrink: 0;
    width: 35%;
    background-color: var(--themeSecondary);
    border-radius: 10px;
    text-align: left;
    position: relative;
    padding: 10px;
}

.past-program-content-col span i {
    font-style: normal;
    color: var(--whiteText);
}

.past-program-content-col span h6 {
    text-align: left;
    color: var(--whiteText);
    position: absolute;
    margin-bottom: 10px;
    bottom: 0;
    font-size:18px;
    line-height:19px;
}

.ppcc-col-rev {
    flex-direction: row-reverse;
}

.detailsHeader.fixed {
    background-color: var(--themePrimary);
}

.contact-page-section {
    padding: 100px 0px;

}

.contact-inner-col {
    padding: 50px;
    border: 1px solid #aaa;
    border-radius: 15px;
}

.contact-inner-col h1 {
    color: var(--whiteText);
    margin-bottom: 20px;
    font-size: 38px;
}

.cp-field-col {
    margin-bottom: 10px;
}

.cp-field-col input[type="text"],
.cp-field-col input[type="email"],
.cp-field-col input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: none;
    background: none;
    /* outline: 0; */
    color:#fff;
    border-bottom: 1px solid #aaa;
}

.cp-field-col input[type="text"]::placeholder {
    color: #aaa;
    opacity: 1;
}
.cp-field-col input[type="email"]::placeholder {
    color: #aaa;
    opacity: 1;
}

.cp-field-col input[type="tel"]::placeholder {
    color: #aaa;
    opacity: 1;
}
.cp-field-col textarea::placeholder {
    color: #aaa;
    opacity: 1;
}
.cp-field-col textarea{
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.cp-field-col textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

.cp-field-col textarea {
    width: 100%;
    padding: 10px;
    border: none;
    background: none;
    height: 100px;
    border: 1px solid #aaa;
    color: #fff;
}

.cp-field-col input[type="submit"] {
    background: none;
    color: var(--whiteText);
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 20px;
    border-color: var(--themeSecondary);
    border-radius: 50px;
    transition:all .5s;
}

.cp-field-col input[type="submit"]:hover{
    background-color: var(--themeSecondary);
    transition:all .5s;
}
.contact-page-form-col{
    /* padding-right: 100px; */
}
.contact-page-map-col{
    padding-left: 50px;
}
.cp-form-col{
	background-color: #272727;
	border-radius: 20px;
  	padding: 20px;
}
.cp-form-col iframe{
    min-height:790px;
}
.cpmc-top-col {
    /* background-image: url(../images/jpg/cp-image-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 20px;
    background-color: #272727;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.cpmc-top-col ul {
    padding: 0;
    margin: 0;
}

.cpmc-top-col ul li {
    list-style: none;
}
.cpmc-top-col ul li:last-child{
    margin: 0;
}
.cpmc-top-col ul li img {
    width: 25px;
    margin-right: 15px;
    flex-shrink: 0;
    height: auto;
    object-fit: contain;
}

.cpmc-top-col ul li a {
    color: var(--whiteText);
    display: flex;
}
.cpmc-top-col ul li a span{
    font-size: 20px;
}
.cpmc-bottom-col {
}

.cpmc-bottom-col img {
    width: 100%;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    height: 200px;
}

.upcoming-program-slider {
    position: relative;
}

.upcoming-program-slider .owl-prev {
    position: absolute;
    left: -30px;
    top: 170px;
}

.upcoming-program-slider .owl-next {
    position: absolute;
    right: -30px;
    top: 170px;
}

.show-filter {
    display: none;
}

.showColumn {
    display: block;
}

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 14px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
    width: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-col {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.switch-col p {
    margin-bottom: 0;
    margin-left: 15px;
    color: var(--whiteText);
    font-size: 13px;
}

.filterList-col h6 {
    color: var(--themeSecondary);
    margin-bottom: 0;
    font-size: 15px;
    margin-bottom: 10px;
}

.filterList-col {
    margin: 30px 0px;
}

.filter-manual-price-col {
    display: flex;
    gap: 10px;
}

.filter-manual-price-col input {
    width: 30%;
    padding: 5px;
    background: none;
    border: 2px solid var(--text);
    height: 35px;
    font-size: 13px;
    border-radius: 5px;
    color:#fff;
}

.filter-manual-price-col button {
    width: 20%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 35px;
}

.filter-manual-price-col input::placeholder {
    color: var(--whiteText);
}

.addStyleParent {
    border: 1px solid var(--whiteBorder);
    border-radius: 20px;

}
.menuListBox{
    transition: all .5s;
}
.inner-menu-list-col ul li a:hover{
    color: var(--themeSecondary);
}
.details-form-col input[type="tel"]::placeholder{
    color: var(--text);
}
.details-form-col input[type="email"]::placeholder{
    color: var(--text);
}
.banner-video-play-button::after {
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 80%);
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -20px;
    height: 80px;
}
.about-exp-col{
    margin-right: 20px;
    margin-left: 20px;
}
.about-feature-video-col::after {
    /* background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 80%); */
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -20px;
    height: 80px;
}
.mobilemenu-accordian .accordion-button::after {
    content:none;
}
.mobilemenu-accordian .accordion-button{
    display: flex;
    justify-content: space-between;
}
.mobilemenu-accordian .accordion-button img{
    flex-shrink: 0;
    width: 20px;
    transition: all .5s;
}

/* 
.mobilemenu-accordian .accordion-button img{
    transform: rotate(180deg);
    transition: all .5s;
}
.mobilemenu-accordian .accordion-button:first-child img{
    transform: rotate(0deg);
    transition: all .5s;
} */
.download-brochure-popup .modal{
    z-index: 9999999;
}

.download-brochure-popup .modal-content{
    border-radius: 0;
    background-color: var(--themePrimary);
}


.download-brochure-popup .modal-header{
    color:var(--whiteText);
	border:none;
	padding:0;
}
.download-brochure-popup .modal-header .btn-close{
	color:var(--whiteText);
  opacity: 1;
  z-index: 2;
}
.download-brochure-popup .modal-header .btn-close i{
	color: var(--whiteText);
  opacity: 1;
}
.download-brochure-popup .modal-body{
	padding:20px;
	background: #272727;
	border-radius:15px;
}
.download-brochure-popup .modal.show .modal-dialog{
	height:auto;
	max-width:500px;
}
.modal-header .btn-close{
	font-size:25px;
	color:var(--whiteText);
  opacity: 1;
  z-index: 2;
}
.download-brochure-form-col{

}
.dbf-field-col{
    margin:20px 0px;
}
.dbf-field-col input[type="text"]{
    width: 100%;
    padding:10px;
    border: 1px solid var(--whiteBorder);
    background: none;
    border-radius: 5px;
    color: var(--whiteText);
}

.dbf-field-col input[type="email"]{
    width: 100%;
    padding:10px;
    border: 1px solid var(--whiteBorder);
    background: none;
    border-radius: 5px;
    color: var(--whiteText);
}
.dbf-field-col input[type="tel"]{
    width: 100%;
    padding:10px;
    border: 1px solid var(--whiteBorder);
    background: none;
    border-radius: 5px;
    color: var(--whiteText);
}

.dbf-field-col input[type="submit"]{
    width: 100%;
    padding:10px;
    background: none;
    color: var(--themeSecondary);
    border: 1px solid var(--themeSecondary);
    border-radius: 50px;
}
.dbf-field-col input[type="submit"]:hover{
    background: var(--themeSecondary);
    color: var(--whiteText);
}
.lc-col a{
    color: var(--themeSecondary);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin-top: 10px;
    padding:10px 20px;
    border-radius: 25px;
    border: 1px solid var(--themeSecondary);
}
.lc-col a img{
    width: 8px;
    flex-shrink: 0;
    height: auto !important;
    object-fit: contain;
    margin-left: 8px;
}
.lc-col a:hover{
    background-color: var(--themeSecondary);
    color: var(--themePrimary);
}
.about-features-section .heading-col{
    margin-bottom: 50px;
}
.faq-wrapper{
    max-width: 1100px;
    margin:auto;
}
.contact-page-box{
    max-width: 1200px;
    margin: auto;
}
.partner-school-section .owl-carousel .owl-item img{object-fit:contain;}










/*Responsive CSS Starts Here*/
/* @media(max-width:1440px) {
    .banner-slider-wrapper {
        width: 80%;
    }
}

@media(max-width:1360px) {
    .banner-slider-wrapper {
        width: 70%;
    }

    .banner-text-col {
        max-width: 700px;
    }
} */

@media(max-width:1199px) {
    .stats-col img {
        height: 50px;
    }

    .contact-page-map-col{
        padding-left: 50px;
    }

    .contact-page-form-col{
/*         padding-right: 50px; */
    }

    .stats-col i {
        font-size: 40px;
    }

    .stats-col small{
        font-size: 40px;
        top:-4px;
    }

    .details-banner-text-col h1{
        font-size: 47px;
        line-height: 56px;
    }

    .details-banner-text-col p{
        font-size: 20px;
    }
}

@media(max-width:991px) {
    .banner-section {
        flex-direction: column-reverse;
    }
	.about-banner-section{
		padding-bottom:20px;
	}
    .details-banner-form-col iframe{
        min-height:500px !important;
    }
    .stats-section{
        margin-top:0;
    }
    .program-page-section{
        margin-top: 40px;
    }

    .about-banner-section{
        height: auto;
        margin-bottom: 30px;
    }
    .filter-manual-price-col{
        margin: 30px 0px;
    }
    .banner-text-wrapper{
        height: auto;
    }
    .footer-col ul li a{
        font-size: 14px;
    }
    .faq-list-col{
        margin-left: 0;
    }

    .banner-slider-wrapper {
        width: 100%;
    }
    .past-program-content-col{
        height:auto;
    }
    .past-program-col{
        width:100%;
    }
    .banner-text-col {
        max-width: 100%;
        position: relative;
    }

    .banner-slider .active.center {
        width: 150%;
    }

    .banner-slider {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .banner-text-col {
        padding-left: 5%;
        padding-right: 5%;
        margin-bottom: 80px;
        margin-top: 100px;
    }

    .stats-card-col {
        padding: 20px;
    }

    .stats-col {
        padding: 20px;
    }

    .program-right-col {
        margin-left: 0;
        margin-top: 30px;
    }

    .about-video-col {
        margin-left: 0;
        margin-top: 30px;
    }

    .feature-text-col {
        margin-top: 30px;
    }

    .alumni-form-col {
        margin-left: 0;
    }

    .partner-school-left-col h3 {
        margin-bottom: 30px;
    }

    .program-section-card {
        padding: 30px;
    }

    .stats-col {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .stats-col p{
        text-align:center;
    }

    .counter-suffix{
        justify-content:center;
    }

    .stats-col img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .inner-menu-list-col {
        display: none;
    }

    .mobilemenu-accordian {
        display: block;
    }
	.pcc-img-col{
		max-width:unset;
		margin-bottom:25px;
	}
    .about-banner-section {
        flex-direction: column;
    }

    .banner-video-col {
        padding-left: 0;
    }

    .about-banner-section {
        height: 100%;
        padding-bottom: 20px;
    }

    .about-banner-left-col {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .about-exp-col {
        margin-bottom: 40px;
    }

    .about-experience-section {
        padding-bottom: 60px;
    }

    .about-feature-list-col img {
        width: 50px;
    }

    .cpmc-top-col {
        margin-left: 0;
    }

    .cpmc-bottom-col {
        margin-left: 0;
    }

    .contact-inner-col {
        padding: 30px;
    }

    .details-banner-section {
        padding: 70px 0px;
    }

    .details-banner-text-col {
        padding-right: 0;
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .feature-program-right-col {
        padding-left: 0;
        margin-top: 50px;
    }

    .fpr-top-col {
        margin-bottom: 50px;
    }

    .past-program-content-col img {
        width: 50%;
    }

    .past-program-content-col span {
        width: 50%;
    }

    .past-program-content-col span h6 {
        bottom: 0px;
        position: relative;
    }

    .fpbt-img-col img {
        height: 350px;
        object-position: top;
    }

    .feat-program-col img {
        height: 350px;
        object-position: top;
        border-radius: 25px;
    }

    .past-program-content-col {
        flex-direction: column;
    }

    .past-program-content-col img {
        width: 100%;
    }

    .past-program-content-col span {
        width: 100%;
    }

    .bottom-footer-col ul li {
        padding: 0;
    }

    .bottom-footer-col {
        padding: 10px;
    }

    .about-exp-col{
        padding: 0;
    }

    .filterList-col{
        width: 30%;
        flex-shrink: 0;
    }
    .showColumn{
        display: flex;
        flex-wrap: wrap;
    }
    .program-list-col{
        margin-top: 40px;
        position: relative;
    }

    .contact-page-form-col{
        padding-right: 0;
        margin-bottom: 50px;
    }

    .contact-page-map-col{
        padding-left: 0;
    }

    .stats-col p{
        justify-content: center;
    }
}

@media(max-width:767px) {
    .footer-right-col {
        flex-wrap: wrap;
    }
    .details-banner-text-col{
        margin-top: 0;
    }
    .footer-col {
        width: 50%;
        margin-top: 20px;
    }

    .program-col-menu ul {
        gap: 10px;
    }

    .about-col .video-col .vid-img {
        height: 300px;
    }

    .bottom-program-col {
        padding-top: 40px;
    }

    .program-col-right-tab-content img {
        height: 300px;
    }

    .feature-img-col img {
        height: 300px;
    }

    .about-feature-list-col {
        justify-content: left;
    }

    .pcc-bottom-col {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .pcc-bottom-col img {
        margin-bottom: 8px;
        /* margin-right: 0; */
    }

    .banner-text-col h1{
        font-size: 52px;
        line-height: 58px;
    }

    .banner-text-col p{
        font-size: 20px;
    }

    .about-features-list .row .col-md-4{
        margin-bottom: 0 !important;
    }

    .about-feature-list-col{
        margin:15px 0px;
    }
    .about-features-section{
        padding-bottom: 0;
    }
    .alumni-form-section{
        padding:70px 0px;
    }
    .partner-school-section{
        padding-bottom: 60px;
    }

    .about-exp-col{
        margin: 0;
        margin-bottom: 30px;
    }

    .details-banner-col .custom-container{
        padding:20px;
    }

    .fpr-stat-col{
        flex-direction: column;
    }
}

@media(max-width:576px) {
    .header{
        padding-left: 30px;
    }
    .banner-slider .active.center {
        height: 50vh;
    }
	.contact-inner-col{
		padding:10px;
	}
    .banner-slider .owl-stage .owl-item {
        height: 50vh;
    }
	.pcc-bottomcol-wrapper{
		flex-wrap:wrap;
	}
	.pcc-img-col{
		width:100%;
	}
    .banner-slider .active.center img {
        transform: scaleY(1);
    }

    .banner-slider .active.center {
        width: 325px !important;
    }

    .alumni-card-col {
        padding: 30px;
    }

    .filterList-col{
        width: 40%;
    }
    .video-play-button img {
        width: 40px;
    }

    .pcc-top-col {
        flex-direction: column;
    }

    .pcc-img-col {
        margin-right: 0;
        width: 100%;
        height: 200px;
        margin-bottom: 10px;
    }

    .past-program-content-col img {
        height: 120px;
    }

    .upcoming-program-slider .owl-prev {
        left: 10px;
        top: 45%;
    }

    .upcoming-program-slider .owl-next {
        position: absolute;
        right: 10px;
        top: 45%;
    }

    .banner-slider .item.slider-col {
        height: 100%;
    }
    .about-banner-left-col h1{
        font-size: 42px;
        line-height: 51px;
    }
    .about-banner-left-col p{
        font-size: 20px;
    }

    .feature-img-col{
        margin-right: 0;
    }
    .banner-slider-wrapper{
        height:50vh;
    }
    .top-footer{
        padding-top: 70px;
    }
	footer{
		padding:0px 20px;
	}
    .pcc-bottom-col img{
        margin-bottom: 8px;
    }
}

@media(max-width:425px) {
    .banner-slider .owl-stage .owl-item {
        height: 30vh;
    }
    .banner-slider-wrapper{
        height: 30vh;
    }
	.cp-form-col{
		padding:10px;
	}
    .banner-text-col a {
        font-size: 18px;
    }

    .banner-text-col h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .video-play-button button {
        width: 110px;
        height: 70px;
    }

    .about-feature-list-col {
        margin: 20px 10px;
    }

    .heading-col h3 {
        margin-bottom: 40px;
    }

    .pcc-bottom-col img {
        margin-right: 10px;
    }

    .pcc-bottomcol-wrapper {
        flex-wrap: wrap;
    }

    .pcc-bottom-col {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: left;
        text-align: left;
    }

    .header{
        padding-left: 10px;
    }

    .filterList-col{
        width: 50%;
    }

    .pcc-bottom-col img{
        margin-bottom: 0;
    }
}

@media(max-width:375px) {
    .footer-col {
        width: 100%;
    }
	.footer-right-col{
		text-align:center;
	}
    .main-menu button {
        margin-left: 10px;
    }

    .main-menu button {
        width: 50px;
        height: 50px;
    }
	.logo-col img{
		width:140px;
	}
	.bottom-footer-col ul li:nth-child(even){
		display:none;
	}
    .stats-col {
        padding: 20px 0px;
    }
    .filterList-col{
        width: 100%;
    }
    .cpmc-top-col ul li a span{
        font-size: 15px;
    }
}

@media(max-width:320px) {}

/*Responsive CSS Ends Here*/