@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --primary-color: #615ecb;
    --secondary-color: #eb8261;
    --third-color: #f4f1fa;
    --black: #272e39;
    --default: #75727b;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Urbanist", sans-serif;
}

a {
    text-decoration: none;
}

a:active {
    background-color: transparent;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
}

img,video {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

p {
    position: relative;
    font-family: 'Mulish', sans-serif;
    color: var(--black);
    font-weight: 500;
    text-align: justify;
    margin-bottom: 15px;
    font-size: 17px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.dropdown-item:focus {
    background-color: transparent;
}
.dropdown-item:active {
    background-color: transparent;
    color: var(--black);
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.word-wrap {
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.sec-title {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 26px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    padding-left: 25px;
    padding-top: 7px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.sec-title .sub-title:before {
    position: absolute;
    content: '';
    background: #f9e0d8;
    width: 25px;
    height: 25px;
    left: 0px;
    top: 0px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
            clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
}
.sec-title.light .sub-title {
    color: var(--secondary-color);
}
.sec-title.light .sub-title:before {
    background: rgba(255, 255, 255, 0.10);
}
.sec-title h2 {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 58px;
    font-weight: 600;
    margin: 0px;
}
.sec-title.light h2 {
    color: #fff;
}

.sec-title h3 {
    font-size: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0px;
}
.sec-title p {
    text-align: center;
    margin-top: 15px;
}

header {
    background-color: var(--primary-color);
    box-shadow: 0 6px 15px 0 #0000000d;
}


.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999999999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: 0;
    text-indent: -9999em;
    -ms-transform: translateZ(0);
}
.loader video {
    width: 100%;
}
.lead{
  font-size:13px;
}

#unmute-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
    font-size: 20px;
}


/* //////// */

/* Popup  */
.custom-model-main {
	text-align: center;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0; /* z-index: 1050; */
	-webkit-overflow-scrolling: touch;
	outline: 0;
	opacity: 0;
	-webkit-transition: opacity 0.15s linear, z-index 0.15;
	-o-transition: opacity 0.15s linear, z-index 0.15;
	transition: opacity 0.15s linear, z-index 0.15;
	z-index: -1;
	overflow-x: hidden;
	overflow-y: auto;
  }
  
  .model-open {
	z-index: 9999;
	opacity: 1;
	overflow: hidden;
  }
  .custom-model-inner {
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: -webkit-transform 0.3s ease-out;
	-o-transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	display: inline-block;
	vertical-align: middle;
	width: 800px;
	margin: 30px auto;
	max-width: 97%;
}
.custom-model-wrap {
	display: block;
	width: 100%;
	position: relative;
	background-color: #fff;
	border: 1px solid #999;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
	background-clip: padding-box;
	outline: 0;
	text-align: left;
	padding: 70px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-height: calc(100vh - 70px);
	  overflow-y: auto;
}
.custom-model-wrap .event-img {
    width: 40%;
    margin: 0 auto 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    overflow: hidden;
    box-shadow: 0 0 14px 0 #00000012;
}
.pop-up-content-wrap h2 {
    font-weight: 700;
    font-size: 40px;
    color: #000;
    text-align: center;
    text-transform: capitalize;
}
.pop-up-content-wrap p {
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    color: #000;
}
.pop-up-content-wrap .btn-box {
    text-align: center;
}
  .model-open .custom-model-inner {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	position: relative;
	z-index: 999;
  }
  .model-open .bg-overlay {
	background: rgba(0, 0, 0, 0.6);
	z-index: 99;
  }
  .bg-overlay {
	background: rgba(0, 0, 0, 0);
	height: 100vh;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-transition: background 0.15s linear;
	-o-transition: background 0.15s linear;
	transition: background 0.15s linear;
  }
  .close-btn {
	position: absolute;
	right: 0;
	top: -40px;
	cursor: pointer;
	z-index: 99;
	font-size: 30px;
	color: #fff;
  }
  
  
  @media screen and (min-width:800px){
	  .custom-model-main:before {
		content: "";
		display: inline-block;
		height: auto;
		vertical-align: middle;
		margin-right: -0px;
		height: 100%;
	  }
  }
  @media screen and (max-width:799px){
	.custom-model-inner{margin-top: 45px;}
  }
  


.modal {
    margin-top: 100px;
    width: 90%;
    transform: translateX(-50%);
    left: 50%;
}
.modal .close-btn {
    color: #000;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 40px;
    line-height: 20px;
}
.modal-header {
    justify-content: flex-end;
}
.modal .modal-body {
    padding: 50px;
}
.modal-body h2 {
    font-weight: 700;
    font-size: 40px;
    color: #000;
    text-transform: capitalize;
}
.modal-body p {
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    color: #000;
}


.alert-cookie-policy{
    display: none;
    border-radius: 0;
    position: fixed;
    bottom:0;
    top:auto;
    left:0;
    right: 0;
    z-index: 999;
}
.alert-cookie-policy .wrap {
    display: flex;
    align-self: center;
    justify-content: space-between;
}
.alert-cookie-policy .alert{
    border-radius: 0;
}
.alert-cookie-policy p {
    margin: 0;
}
.alert-cookie-policy .btn-accept {
    background-color: var(--primary-color);
    color: #fff;
}


/* -----------------
Top Bar
--------------------*/

.top-bar {
    /* border-bottom: 2px solid #00000008; */
    background-color: #ffffff00;
    padding: 8px 50px;
}

.top-bar .info-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 46px;
}
.top-bar .info-list li:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 12px;
    right: -25px;
}
.top-bar .info-list li a {
    position: relative;
    display: inline-block;
    font-size: 17px;
    color: #fff;
}
.header-top .info-list li a:hover {
    color: var(--secondary-color);
}
.top-bar .info-list li:last-child::before {
    width: 0;
}

.top-bar .social-links {
    float: right;
}
.top-bar .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 28px;
}
.top-bar .social-links li:last-child {
    margin-right: 0;
}
.top-bar .social-links li h5 {
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}
.top-bar .social-links li:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 12px;
    right: -15px;
}
.top-bar .social-links li:first-child:before,
.top-bar .social-links li:last-child:before {
    width: 0;
}
.top-bar .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #fff;
}








/* .header-upper */
.header-upper {
    background-color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 20px 50px;
    border-bottom: 1px solid #e7e3ee;
}
.header-upper .left-column {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-upper .logo-box {
    position: relative;
    margin-right: 61px;
}
.header-upper .logo-box img {
    width: 350px;
}
/* .header-upper .logo-box:before {
    position: absolute;
    content: '';
    background: #e7e3ee;
    width: 1px;
    height: 54px;
    top: -7px;
    right: -31px;
} */
.header-upper .award-box {
    position: relative;
    padding: 0px 0px 0px 0px;
}
.header-upper .award-box .award-image {
    /* position: absolute; */
    left: 0px;
    top: -4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.header-upper .award-box h5 {
    display: block;
    font-size: 18px;
    line-height: 20px;
    color: #75727b;
    font-weight: 500;
    margin: 0;
}

.header-upper .right-column {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.header-upper .right-column .support-box {
    position: relative;
    display: block;
    padding-left: 62px;
    margin-right: 42px;
}
.header-upper .right-column .support-box:before {
    position: absolute;
    content: '';
    background: #e7e3ee;
    width: 1px;
    height: 54px;
    top: -3px;
    right: -21px;
}
.header-upper .right-column .support-box .icon-box {
    background-color: var(--secondary-color);
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    width: 48px;
    height: 48px;
    line-height: 52px;
    font-size: 30px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}
.header-upper .right-column .support-box h5 {
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}
.header-upper .right-column .support-box h5 a {
    display: inline-block;
    font-size: 18px;
    color: #272e39;
}
.header-upper .right-column .phone {
    position: relative;
    margin-right: 40px;
}
.header-upper .right-column .phone h3 {
    display: block;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}
.header-upper .right-column .phone h3 a {
    display: inline-block;
    font-size: 24px;
    color: var(--black);
}
.header-upper .right-column .theme-btn {
    padding: 13px 30px;
}
.theme-btn.btn-one {
    background: #f4f1fa;
    color: #272e39;
}
.theme-btn.btn-one:hover {
    color: #fff;
}






/* -----------------
Navbar
--------------------*/

.navbar {
    padding: 0px 40px;
    background-color: #fff !important;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    /* border-bottom: 1px solid #e7e3ee; */
}

.fixed-header {
    background-color: #fff !important;
    width: 100%;
    z-index: 999;
    position: fixed;
    top: -1px;
    -webkit-box-shadow: 0 -2px 18px 0 #0000001c;
            box-shadow: 0 -2px 18px 0 #0000001c;
}

/* .navbar {
  padding: 0;
  background-color: #fff !important;
  border-bottom: 1px solid #e7e7e7;
} */



.navbar .navbar-collapse {
    position: relative !important;
    padding-right: 1.5rem;
    margin-right: 1rem;
}

.navbar-nav>li {
    margin: 0 10px;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav li .nav-link {
    padding: 26px 0px 26px 20px !important;
    color: #272e39 !important;
    font-weight: 600;
    font-size: 17px;
    text-transform: capitalize;
    position: relative;
}
.navbar-nav li .nav-link:before {
    position: absolute;
    content: "\f5da";
    font-family: 'FontAwesome';
    font-size: 16px;
    left: 0px;
    top: 26px;
    opacity: 0;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar-nav li .nav-link.active:before, 
.navbar-nav li:hover .nav-link:before {
    opacity: 1;
}

.navbar-nav li .nav-link.active,
.navbar-nav li:hover .nav-link {
    color: var(--secondary-color) !important;
}




.dropdown-menu li {
    padding: 0 30px;
}
.dropdown-menu li a {
    padding: 14px 0px;
    font-weight: 500;
    font-size: 17px;
    color: var(--black);
    text-transform: capitalize;
    position: relative;
    transition: all 500ms ease;
    border-bottom: 1px solid #e7e3ee;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.dropdown-menu li a:before {
    position: absolute;
    content: '';
    background-image: url("../images/icon-1.png");
    width: 11px;
    height: 16px;
    left: 0px;
    top: 18px;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.dropdown-menu li a:hover:before {
    opacity: 1;
}


.dropdown-menu,
.sub-dropdown-menu {
    border-bottom: 0px solid var(--primary-color);
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: #fff;
    border-radius: 25px 25px 0px 25px;
    padding: 10px 0 !important;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
            box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.dropdown-menu li a,
.sub-dropdown-menu li a {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f4f4f4;;
}

.dropdown-menu li a:hover,
.sub-dropdown-menu li a:hover {
    background-color: transparent;
    color: var(--secondary-color);
    padding-left: 18px;
    border-color: var(--secondary-color);
}

.dropdown-menu li:last-child a {
    border-bottom: 0px solid;
}


/* hover styles */
/* .navbar-nav li .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}

.navbar-nav li:hover .nav-link::before {
    transform-origin: bottom left;
    transform: scaleX(1);
} */

.dropdown-menu li a .menu-item {
    position: relative;
}

/* .dropdown-menu li a .menu-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.6s;
}

.dropdown-menu li a .menu-item:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
} */

@media only screen and (min-width: 992px) {
    .dropdown .dropdown-menu {
        display: block;
    }

    .sub-dropdown:hover .sub-dropdown-menu {
        display: block;
    }

    
    .dropdown-menu {
        /* width: 250px; */
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(10px);
            -ms-transform: translateY(10px);
                transform: translateY(10px);
        transition: 600ms ease-in;
        -moz-transition: 600ms ease-in;
        -webkit-transition: 600ms ease-in;
        -ms-transition: 600ms ease-in;
        -o-transition: 600ms ease-in;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }
}








/* -----------------
Banner Area
--------------------*/
.banner-section {
    position: relative;
}
.banner-section .slide-item {
    position: relative;
    padding: 180px 0px 190px 0px;
    overflow: hidden;
}
.banner-section .slide-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #272e39;
    top: 0px;
    right: 0px;
    opacity: 0.5;
    z-index: 1;
}
.banner-section .slide-1 .content-box {
    opacity: 0;
    visibility: hidden;
}
.banner-section .slide-1::before {
    opacity: 0;
}
.banner-section .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); */
    -webkit-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
}
.banner-carousel .active .slide-item .image-layer {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}
.banner-carousel .content-box {
    position: relative;
    width: 100%;
    max-width: 650px;
    z-index: 5;
}
.banner-carousel .content-box h2 {
    position: relative;
    display: block;
    font-size: 55px;
    line-height: 60px;
    font-weight: 800;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 30px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-carousel .active .content-box h2 {
    opacity: 1;
    -webkit-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.banner-carousel .content-box h2 span {
    position: relative;
    /* display: block; */
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 1);
}
.banner-carousel .content-box .lower-box {
    position: relative;
    display: block;
    padding-left: 115px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.banner-carousel .active .content-box .lower-box {
    opacity: 1;
    -webkit-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.banner-carousel .content-box .lower-box .icon-box {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: -4px;
    width: 75px;
    height: 75px;
    line-height: 80px;
    font-size: 35px;
    color: #fff;
    text-align: center;
    border-radius: 50% 50% 0px 50%;
    background: var(--secondary-color);
}

.banner-carousel .content-box .lower-box .text {
    position: relative;
    display: block;
    font-size: 19px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 31px;
    max-width: 360px;
}
.btn-two {
    background-color: var(--primary-color);
    fill: var(--primary-color);
}
.theme-btn.btn-two {
    color: #fff;
    background: var(--primary-color);
}
.theme-btn:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
            transform: scale(0, 0);
    -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
            transform-origin: right bottom;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.theme-btn:before {
    background: var(--secondary-color);
}
.theme-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    text-align: center;
    padding: 16px 40px;
    text-transform: capitalize;
    border-radius: 35px 35px 0px 35px;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.theme-btn:hover:before {
    -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1);
}
.banner-section .owl-nav {
    position: absolute;
    top: 50%;
    right: 77px;
    height: 315px;
    margin-top: -150px;
}
.banner-section .owl-nav button.owl-prev {
    top: 0px;
}
.banner-carousel .owl-nav button {
    position: absolute;
    left: 0px;
    display: inline-block;
    font-size: 30px !important;
    color: #fff !important;
    cursor: pointer !important;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.banner-section .owl-nav button.owl-next {
    bottom: 0px;
}
.banner-section .owl-dots {
    position: absolute;
    right: 58px;
    top: 50%;
    margin-top: -90px;
    height: 120px;
    counter-reset: slides-num;
}
.banner-section .owl-dots button {
    top: 0px;
    left: 0px;
    counter-increment: slides-num;
    font-size: 24px !important;
    line-height: 50px !important;
    color: #fff !important;
    font-weight: 600 !important;
}
.banner-section .owl-dots .owl-dot {
    display: block !important;
    margin-right: 0px;
}
.banner-section .owl-dots .owl-dot {
    display: block;
    margin-bottom: 20px;
}
.banner-section .owl-dots .owl-dot span {
    position: relative;
    display: block;
    width: 1px;
    height: 35px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.20);
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.banner-section .owl-dots .owl-dot.active span {
    width: 3px;
    background: #fff;
}
.banner-section .owl-dots button.active:before {
    opacity: 1;
}

.banner-section .owl-dots button.active:before {
    position: absolute;
    content: "0" counter(slides-num);
    left: -35px;
    line-height: 50px;
}



/* .about-section */
.about-section {
    padding: 100px 0;
}
.about-section .sec-title {
    margin-bottom: 20px;
}
.about-section .content .theme-btn {
    margin-top: 10px;
}
.about-section .img-box {
    position: relative;
}
.about-section .img-box .exp-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
}
.about-section .img-box .exp-box h2 {
    display: block;
    font-size: 180px;
    line-height: 150px;
    color: #fff;
    font-weight: 700;
}
.about-section .img-box .exp-box h6 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.about-section .inner {
    padding-left: 30px;
}
.about-section .inner .content h4 {
    font-family: 'Mulish', sans-serif;
    color: var(--secondary-color);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-section .inner .content ul {
    display: block;
    margin-bottom: 32px;
}
.about-section .inner .content ul li {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    color: #272e39;
    padding-left: 60px;
    margin-bottom: 16px;
}
.about-section .inner .content ul li:last-child {
    margin-bottom: 0px;
}
.about-section .inner .content ul li:before {
    content: "";
    position: absolute;
    background: url(../images/arrow-1.png);
    background-repeat: no-repeat;
    font-size: 26px;
    color: #272e39;
    left: 13px;
    top: 7px;
    font-weight: 400;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.about-section .inner .content ul li:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 0px 50%;
    background: var(--secondary-color);
}




/* about2-section */
.about2-section {
    /* padding: 60px 0; */
    /* background-color: #eb8261; */
}
.about2-section .inner {
    border-radius: 20px;
    background-color: #eb8261;
    padding: 60px;
}
.about2-section .sec-title {
    margin-bottom: 20px;
}
.about2-section .sec-title .sub-title span {
    color: #fff;
}
.about2-section .sec-title h2 {
    color: #fff;
    font-size: 39px;
    line-height: 40px;
}
.about2-section .wrap {
    padding-right: 80px;
}
.about2-section .content p {
    color: #fff;
}
.about2-section .img-box {
    position: relative;
}
.about2-section .img-box img {
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 20px;
}
.about2-section .img-box:hover img {
    -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
            transform: scale(1.03);
}

.about2-section .img-box .text-box {
    position: absolute;
    left: -55px;
    bottom: 30px;
    border-radius: 15px;
    background: var(--primary-color);
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    text-align: center;
    z-index: 3;
    padding: 2px 25px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition-delay: 500ms;
         -o-transition-delay: 500ms;
            transition-delay: 500ms;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@-webkit-keyframes animaiton-vertical {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-15px);
                transform: translateY(-15px);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes animaiton-vertical {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-15px);
                transform: translateY(-15px);
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

.about2-section .img-box .text-box h4 {
    font-size: 50px;
    font-weight: 700;
    margin-top: 7px;
    margin-right: 15px;
}
.about2-section .img-box .text-box p {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}



/* curricula-section */
.curricula-section {
    padding: 80px 0 40px;
}

.curricula-section .inner {
    padding: 0;
    border-radius: 20px;
}
.curricula-section .item {
    margin-bottom: 50px;
}
.curricula-section .item.last {
    border-right: 0;
}
.curricula-section .item .img-box {
    border-radius: 15px;
    overflow: hidden;
    background-color: #f0f0ff;
    border: 2px solid #e5e5ff;
    /* -webkit-box-shadow: 0 0 18px 0 #0000001a;
            box-shadow: 0 0 18px 0 #0000001a; */
}
.curricula-section .item .text.right {
    padding-left: 20px;
}
.curricula-section .item .text.left {
    padding-right: 40px;
}
.curricula-section .item .text h3 {
    text-align: left;
    color: #615ecb;
    margin: 0 0 15px 0;
    font-size: 35px;
    font-weight: 700;
}
.curricula-section .item .text p {
    text-align: justify;
    margin: 0;
    font-size: 17px;
    font-weight: 500;
}








/* video-section */
.video-section {
    position: relative;
}
.video-section img {
    width: auto;
    display: inline-block;
}
.video-section .pattern-layer {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 280px;
    height: 280px;
    background-repeat: no-repeat;
    z-index: 1;
}
.video-section .inner {
    position: relative;
    width: 100%;
    background: #fff;
    margin-bottom: -93px;
    z-index: 1;
}
.video-section .outer-container {
    position: relative;
    padding: 0px 140px;
}
.video-section .box-one {
    position: relative;
    display: block;
    margin-right: 30px;
    width: 100%;
}
.video-section .box-one .inner-box {
    position: relative;
    display: block;
    padding: 70px 30px 70px 150px;
    border-top-left-radius: 30px;
    background: var(--secondary-color);
}
.video-section .box-one .inner-box .icon-box {
    position: absolute;
    display: inline-block;
    left: 50px;
    top: 50px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #fff;
    text-align: center;
    border-radius: 50% 50% 0px 50%;
}
.video-section .box-one .inner-box .light-icon {
    position: absolute;
    right: 40px;
    bottom: 0px;
    opacity: 0.2;
}
.video-section .box-one .inner-box .count-outer {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 42px;
    font-family: 'Urbanist', sans-serif;
    color: #fff;
    font-weight: 600;
    color: #fff;
    padding-top: 0px;
}
/* .video-section .box-one .inner-box .count-outer:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 10px;
    height: 10px;
    left: 0px;
    top: 0px;
} */
.video-section .box-one .inner-box .count-outer h3 {
    font-size: 30px;
    font-weight: 600;
}
.video-section .box-one .inner-box .count-outer .text {
    font-size: 20px;
    margin-left: 6px;
}
.video-section .box-one .inner-box p {
    color: #fff;
}

.video-section .box-two .inner-box {
    position: relative;
    display: block;
    padding: 50px 30px 50px 100px;
}
.video-section .box-two .inner-box .icon-box {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 40px;
    width: 70px;
    height: 70px;
    line-height: 75px;
    font-size: 26px;
    background: #e7e7ff;
    text-align: center;
    border-radius: 50% 50% 0px 50%;
    color: var(--primary-color);
}
.video-section .box-two .inner-box h3 {
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 9px;
}
.video-section .box-two .inner-box h3 a {
    display: inline-block;
    color: #272e39;
}
.video-section .box-two .inner-box p {
    margin-bottom: 16px;
}
.video-section .box-two .inner-box .link a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    color: #272e39;
    font-weight: 600;
}
.video-section .box-two .inner-box .link a:hover {
    color: var(--secondary-color);
}
.video-section .box-two .inner-box .link a span {
    position: relative;
    padding-right: 23px;
}
.video-section .box-two .inner-box .link a span:before {
    position: absolute;
    content: "\f054";
    font-family: 'FontAwesome';
    font-size: 14px;
    top: -2px;
    right: 0px;
    font-weight: 400;
    color: var(--secondary-color);
}

.video-section .video-inner {
    position: relative;
    padding: 293px 0px 200px 0px;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
}
.video-section .video-inner .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
}
.video-section .video-inner .video-btn {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 84px;
    background: #fff;
    text-align: center;
    font-size: 20px;
    color: var(--secondary-color);
    border-radius: 50%;
}
.video-section .video-inner .video-btn:before, 
.video-section .video-inner .video-btn:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.video-section .video-inner .video-btn:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}





/* .facilities-section */
.facilities-section {
    padding: 80px 0px ;    
    background-image: url("../images/shape-5.png");
    background-position: 1400px 600px;
    background-repeat: no-repeat;
    position: relative;
}
.facilities-section .background-overlay {
    background-image: url("../images/shape-2.png");
    background-position: 250px 850px;
    background-repeat: no-repeat;
    opacity: 1;
    -webkit-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    -o-transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.facilities-section .item {
    position: relative;
    display: block;
    border-radius: 10px 10px 0px 40px;
    padding-top: 10px;
}
.facilities-section .item-one {
    background: var(--secondary-color);
}
.facilities-section .item-two {
    background: var(--primary-color);
}

.facilities-section .item-one:hover .inner-box {
    border-color: var(--secondary-color);
}
.facilities-section .item-two:hover .inner-box {
    border-color: var(--primary-color);
}
.facilities-section .item .inner-box {
    position: relative;
    display: block;
    background: #fff;
    overflow: hidden;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid #e7e3ee;
    padding: 30px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.facilities-section .item .inner-box .icon-box .icon img {
    width: 70px;
}
.facilities-section .item .inner-box .icon-box {
    position: relative;
    display: inline-block;
    font-size: 70px;
    line-height: 70px;
    padding-right: 44px;
    margin-bottom: 34px;
    z-index: 1;
}
.facilities-section .item .inner-box .icon-box:before {
    position: absolute;
    content: '';
    width: 70px;
    height: 70px;
    border-radius: 50% 50% 0px 50%;
    right: 11px;
    bottom: 0px;
    z-index: -1;
}
.facilities-section .item-one .inner-box .icon-box:before {
    background: #f4f1fa;
}
.facilities-section .item-two .inner-box .icon-box:before {
    background: #faecf0;
}
.facilities-section .item-three .inner-box .icon-box:before {
    background: #fdeff9;
}

.facilities-section .item .inner-box .icon-box .count-text {
    position: absolute;
    right: 0px;
    bottom: 0px;
    font-size: 24px;
    line-height: 19px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}
.facilities-section .item-one .inner-box .icon-box .count-text {
    color: var(--primary-color);
}
.facilities-section .item-two .inner-box .icon-box .count-text {
    color: var(--secondary-color);
}
.facilities-section .item-three .inner-box .icon-box .count-text {
    color: #bf529f;
}
.facilities-section .item .inner-box .img-box {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.facilities-section .item .inner-box h3 {
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 15px;
}
.facilities-section .item .inner-box h3 a {
    display: inline-block;
    color: #272e39;
    font-size: 27px;
}
.facilities-section .item-one .inner-box h3 a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}
.facilities-section .item-two .inner-box h3 a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}
.facilities-section .item .inner-box .link a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    color: #272e39;
    font-weight: 600;
    margin-bottom: 0px;
}
.facilities-section .item .inner-box .link a:before {
    position: absolute;
    content: '';
    background: #e7e3ee;
    width: 35px;
    height: 1px;
    left: -51px;
    top: 15px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.facilities-section .item .inner-box .link a span {
    position: relative;
    padding-right: 24px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.facilities-section .item .inner-box .link a span:before {
    position: absolute;
    content: "\f054";
    font-family: 'FontAwesome';
    font-size: 16px;
    top: -2px;
    right: 0px;
    font-weight: 400;
}
.facilities-section .item .inner-box .link a span:after {
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    top: 11px;
    right: 13px;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.facilities-section .item .inner-box .link a span:after {
    background: var(--secondary-color);
}
.facilities-section .item .inner-box .link a:hover span {
    padding-right: 58px;
}
.facilities-section .item .inner-box .link a:hover span:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
}

.facilities-section .bottom-content {
    margin-top: 40px;
}
.facilities-section .bottom-content p {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

.facilities-section .owl-dots {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 47px;
}

.facilities-section .owl-dots button {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #e6e2ef !important;
    border-radius: 50% 50% 0px 50%;
    cursor: pointer;
    margin: 0px 25px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.facilities-section .owl-dots button.active {
    background: var(--secondary-color) !important;
}
.facilities-section .owl-dots button:before {
    position: absolute;
    content: '';
    background: #e7e3ee;
    width: 50px;
    height: 1px;
    top: 7px;
    right: -60px;
}
.facilities-section .owl-dots button:last-child:before {
    opacity: 0;
    z-index: -9;
}







/* campus-section */
.campus-section {
    position: relative;
    padding: 0px 140px;
}
.campus-section .sec-title.light .sub-title {
    color: #fff;
}
.campus-section .sec-title h2 {
    text-transform: capitalize;
}
.campus-section .outer-container {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    padding-top: 140px;
}
.campus-section .outer-container .bg-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.campus-section .inner-box {
    position: relative;
    display: block;
    border-top-left-radius: 30px;
    background: #615ebbf0;
    padding: 70px 70px 85px 70px;
    margin-left: 100px;
    margin-right: 15px;
}
.campus-section .inner-box .sec-title {
    padding-left: 0px;
    margin-bottom: 39px;
}
.campus-section .inner-box .content p {
    color: #fff;
}
.campus-section .nav-tabs {
    position: relative;
    padding-right: 100px;
    border: none;
}
.campus-section .nav-tabs:before {
    position: absolute;
    content: '';
    background: #3a4250;
    width: 8px;
    height: 100%;
    top: 0px;
    right: 0px;
    border-radius: 20px;
}
.campus-section .nav-tabs .nav-item {
    width: 100%;
}
.campus-section .nav-tabs .nav-link {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    padding: 18px 20px 15px 100px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.campus-section .nav-tabs .nav-link.active {
    background: #fff;
    border-top-right-radius: 30px;
}
.campus-section .nav-tabs .nav-link:before {
    position: absolute;
    content: '';
    background: #697180;
    width: 4px;
    height: calc(0% - 0px);
    bottom: 10px;
    right: -98px;
    border-radius: 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.campus-section .nav-tabs .nav-link.active:before {
    height: calc(100% - 20px);
    top: 10px;
}
.campus-section .nav-tabs .nav-link .count-text {
    position: absolute;
    left: -100px;
    top: 0px;
    width: 100px;
    height: 112px;
    line-height: 106px;
    text-align: center;
    border-top-right-radius: 30px;
    font-size: 30px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    background: #fff;
    opacity: 0;
}
.campus-section .nav-tabs .nav-link.active .count-text {
    opacity: 1;
}
.campus-section .nav-tabs .nav-link h3 {
    display: block;
    font-size: 24px;
    text-align: left;
    line-height: 34px;
    font-weight: 600;
    color: #9ca4af;
    margin-bottom: 0px;
}
.campus-section .nav-tabs .nav-link.active h3 {
    color: #272e39;
}
.campus-section .nav-tabs .nav-link a {
    position: relative;
    display: inline-block;
    font-size: 30px;
    float: left;
    color: #9ca4af;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.campus-section .nav-tabs .nav-link.active a {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}
.campus-section .nav-tabs .nav-link.active a {
    color: var(--secondary-color);
}

.campus-section .tabs-content {
    position: relative;
    display: block;
    margin-top: 321px;
    background: #fff;
    border-top-right-radius: 30px;
    margin-left: -39px;
    padding: 42px 45px 50px 45px;
}
.campus-section .tabs-box .tab-pane {
    position: relative;
    display: none;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}
.campus-section .tabs-box .tab-pane.active {
    -webkit-transform: scale(1) translateY(0px);
        -ms-transform: scale(1) translateY(0px);
            transform: scale(1) translateY(0px);
}
.campus-section .tabs-box .tab-pane.active {
    display: block;
}
.campus-section .tabs-box .tab-pane {
    -webkit-transform: scale(0.9, 0.9) translateY(0px);
        -ms-transform: scale(0.9, 0.9) translateY(0px);
            transform: scale(0.9, 0.9) translateY(0px);
}
.campus-section .tabs-content h3 {
    display: block;
    font-size: 50px;
    line-height: 46px;
    text-transform: capitalize;
    color: #ff9573;
    font-weight: 400;
}
.campus-section .tabs-content p {
    margin-bottom: 20px;
}
.campus-section .tabs-content .list-item {
    position: relative;
    display: block;
    margin-bottom: 37px;
}
.campus-section .tabs-content .list-item li {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 28px;
    color: #272e39;
    margin-bottom: 8px;
    padding-left: 28px;
}
.campus-section .tabs-content .list-item li:before {
    position: absolute;
    content: '';
    background-image: url("../images/icon-1.png");
    width: 11px;
    height: 16px;
    left: 0px;
    top: 6px;
    background-repeat: no-repeat;
}
.campus-section .tabs-content .list-item li:last-child {
    margin-bottom: 0px;
}











/* .events-section  */
.events-section {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
}
.events-section:before {
    position: absolute;
    content: '';
    background: #f1f1ff;
    width: 100%;
    height: 525px;
    left: 0px;
    top: 0px;
    z-index: -1;
}
.events-section .outer-container {
    padding: 0px 140px;
}
.events-section .heading-content h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
}
.events-section .left-content h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--secondary-color);
}
.events-section .project-tab {
    position: relative;
}
.events-section .project-tab .shape {
    position: absolute;
    left: 135px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    background-repeat: no-repeat;
}
.events-section .left-content {
    position: relative;
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    border-radius: 30px 30px 0px 30px;
    padding: 19px 40px 20px 40px;
}
.events-section .tab-btn-box {
    position: relative;
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    border-radius: 30px 30px 0px 30px;
    padding: 19px 40px 20px 40px;
}
.events-section .tab-btn-box .tab-btns li {
    width: 100%;
}
.events-section .tab-btn-box .tab-btns li .tab-btn {
    position: relative;
    display: block;
    font-size: 18px;
    text-align: left;
    width: 100%;
    line-height: 28px;
    background: transparent;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    padding: 14px 0px 12px 0px;
    border: none;
    border-bottom: 1px solid #e7e3ee !important;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.events-section .tab-btn-box .tab-btns li:last-child .tab-btn {
    border-bottom: none !important;
}
.events-section .tab-btn-box .tab-btns li .tab-btn.active {
    color: var(--secondary-color);
}

.events-section .project-tab .tab-content {
    position: relative;
    display: block;
    /* margin-right: -700px; */
}

.events-section .project-tab .tab-pane.active {
    position: relative;
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.events-section .item .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
}
.events-section .item .inner-box .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}
.events-section .item .inner-box .img-box:before {
    position: absolute;
    content: '';
    background: #272e39;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
    opacity: 0;
    border-radius: 30px 30px 0px 30px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.events-section .item:hover .inner-box .img-box:before {
    opacity: 0.5;
}
.events-section .item .inner-box .img-box img {
    width: 100%;
    border-radius: 30px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.events-section .item:hover .inner-box .img-box img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    border-radius: 30px 30px 0px 30px;
}
.events-section .item .inner-box .content {
    position: absolute;
    left: 20px;
    bottom: 0px;
    width: calc(100% - 40px);
    z-index: 2;
    padding-right: 0px;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.events-section .item:hover .content {
    bottom: 20px;
    opacity: 1;
}
.events-section .item .inner-box .content .text-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 20px 30px 21px 30px;
    border-radius: 30px 30px 0px 30px;
}
.events-section .item .inner-box .content .text-box h6 {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 9px;
    z-index: 1;
    color: var(--secondary-color);
}
/* .events-section .item .inner-box .content .text-box h6:before {
    position: absolute;
    content: '';
    background: #f4f1fa;
    width: 100%;
    height: 10px;
    left: 0px;
    bottom: 3px;
    z-index: -1;
} */
.events-section .item .inner-box .content .text-box h3 {
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}
.events-section .item .inner-box .content .text-box h3 a {
    display: inline-block;
    color: #272e39;
}
.events-section .item .inner-box .content .text-box h3 a:hover {
    color: var(--primary-color);
}
.events-section .item .inner-box .content .link {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 100%;
    background: #fff;
    border-top-right-radius: 30px;
    text-align: center;
    padding-top: 29px;
}
.events-section .item .inner-box .content .link a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #a39eac;
}







/* chairman-section */
.chairman-section {
    position: relative;
    padding: 140px 0px 60px;
}
.chairman-section .outer-container {
    position: relative;
    padding: 0px 140px;
}
.chairman-section:before {
    position: absolute;
    content: '';
    background: #fff7f4;
    width: 625px;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
}
.chairman-section .sec-title {
    margin-bottom: 20px;
}
/* .chairman-section .big-text {
    position: absolute;
    left: 125px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    font-family: 'Urbanist', sans-serif;
    text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.08);
    font-weight: 900;
    text-transform: uppercase;
    writing-mode: tb;
    color: #fff;
} */
.chairman-section .img-box {
    position: relative;
    display: block;
    margin-right: 70px;
}
.chairman-section .img-box .img {
    position: relative;
    display: block;
    border-radius: 500px 500px 0px 500px;
}
.chairman-section .img-box .img img {
    width: 100%;
    border-radius: 300px 300px 0px 300px;
}
/* .chairman-section .img-box .info {
    position: absolute;
    right: 30px;
    bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 20px 20px 0px 20px;
}
.chairman-section .img-box .info .name {
    margin-bottom: 10px;
}
.chairman-section .img-box .info .name:last-child {
    margin-bottom: 0;
}
.chairman-section .img-box .info .name h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #615ecb;
} */
.chairman-section .img-box .info .name p {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}
.chairman-section .img-box .btn-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.chairman-section .img-box .btn-box .theme-btn {
    background: #fff;
}
.chairman-section .content .b-text {
    font-weight: 800;
    color: var(--primary-color);
}
.chairman-section .content h5 {
    font-family: 'Mulish', sans-serif;
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.chairman-section .content-box {
    position: relative;
    display: block;
}
.chairman-section .content .info {
    margin-top: 40px;
}
.chairman-section .content .info h6 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1px;
}

.chairman-section .content .info h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1px;
}
.chairman-section .content .info p {
    font-size: 18px;
    font-weight: 400;
}




/* appointment-section */
.appointment-section {
    position: relative;
    padding: 0px 140px;
}
.appointment-section .sec-title h2 {
    text-transform: capitalize;
}
.appointment-section .sec-title.light .sub-title {
    color: #fff;
}
.appointment-section:before {
    position: absolute;
    content: '';
    background: #f4f1fa;
    width: 625px;
    height: 50%;
    left: 0px;
    top: 0px;
}
.appointment-section .outer-container {
    position: relative;
    background: #726eeb;
    border-radius: 30px 30px 0px 30px;
    overflow: hidden;
    padding: 70px 0px;
}
.appointment-section .image-layer {
    position: absolute;
    right: 140px;
    bottom: -80px;
    z-index: 1;
    width: 21%;
}
.appointment-section .sec-title {
    z-index: 2;
}

.appointment-section .btn-box {
    margin-top: 40px;
}

#ee-form-2 {
    margin-top: 40px;
    border-radius: 20px;
    padding: 20px;
    display: none;
}
#ee-form-2 .ee-form-header {
    display: none;
}
#ee-form-2 .ee-form-widget label[for$=iAgree] span {
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    color: #000;
}
#ee-form-2 .ee-form-widget .controls {
    justify-content: flex-start;
}

#ee-form-2 form input[type='text'],
#ee-form-2 form input[type='tel'],
#ee-form-2 form input[type='email'],
#ee-form-2 form input[name='ee-form-2-form-2-captcha'] {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    background: #f4f1fa;
    border-radius: 10px;
    border: 2px solid #f4f1fa;
    font-size: 17px;
    color: #75727b;
    padding: 10px 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

#ee-form-2 form .select2-selection {
    text-align: left;
    background: #f4f1fa;
    border-radius: 10px;
    border: 2px solid #f4f1fa;
    font-size: 17px;
    color: #75727b;
    padding: 4px 20px;
    height: 40px;
}

#ee-form-2 #ee-form-2-form-2-submit {
    padding: 15px 40px;
    font-size: 17px;
    background-color: var(--primary-color) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 40px 40px 0 40px !important;
}
#ee-form-2 #ee-form-2-form-2-submit:hover {
    background-color: var(--secondary-color) !important;
}
#ee-form-2 .ee-form-widget .ee-row {
    text-align: left;
    margin-top: 10px;
}
#ee-form-2 .ee-form-widget label.error {
    font-size: 14px;
}


.appointment-section .form-inner {
    position: relative;
    display: block;
    background: #fff;
    padding: 40px 35px;
    border-radius: 30px 30px 0px 30px;
    z-index: 2;
}
.appointment-section .form-inner .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}
.appointment-section .form-inner .form-group input[type='text'], 
.appointment-section .form-inner .form-group input[type='email'], 
.appointment-section .form-inner .form-group textarea, 
.appointment-section .form-inner .form-group .nice-select {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #f4f1fa;
    border-radius: 20px 20px 0px 20px;
    border: 2px solid #f4f1fa;
    font-size: 17px;
    color: #75727b;
    padding: 10px 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.appointment-section .form-inner .form-group input[type='text']:focus, 
.appointment-section .form-inner .form-group input[type='email']:focus, 
.appointment-section .form-inner .form-group textarea:focus, 
.appointment-section .form-inner .form-group .nice-select:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.appointment-section .form-inner .form-group textarea {
    height: 140px;
    resize: none;
}
.appointment-section .form-inner .theme-btn {
    width: 100%;
    margin-top: 20px;
    border: none;
}
.appointment-section .content-box {
    position: relative;
    display: block;
    padding-left: 0px;
}
.appointment-section .shape {
    position: absolute;
    right: -40px;
    bottom: -390px;
    width: 770px;
    height: 770px;
    border-radius: 50%;
    background: var(--secondary-color);
}
.appointment-section .inner-box .icon-box {
    position: relative;
    display: inline-block;
    font-size: 60px;
    line-height: 60px;
    color: #fff;
    margin-bottom: 26px;
}
.appointment-section .inner-box .icon-box img {
    width: 70px;
}
.appointment-section .inner-box .info-list {
    margin-bottom: 29px;
}
.appointment-section .inner-box .info-list li {
    position: relative;
    display: block;
    margin-bottom: 26px;
}
.appointment-section .inner-box .info-list li h6 {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.appointment-section .inner-box .info-list li h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
}
.appointment-section .inner-box .info-list li h4 a {
    display: inline-block;
    color: #fff;
}
.appointment-section .inner-box .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 35px;
}
.appointment-section .inner-box .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #fff;
}
.appointment-section .inner-box .social-links li:before {
    position: absolute;
    content: '';
    background: #ffbaca;
    width: 4px;
    height: 4px;
    top: 11px;
    right: -19px;
    border-radius: 50%;
}
.appointment-section .inner-box .social-links li:last-child::before {
    width: 0;
}


/* appointment-page-sec */
.appointment-page-sec::before {
    width: 0;
}

.appointment-page-sec #ee-form-2 {
    margin-top: 0;
}
.appointment-page-sec .inner {
    background-color: #fff;
    overflow: hidden;
    border-radius: 20px;
}
.appointment-page-sec .img-box {
    height: 100%;
}
.appointment-page-sec .img-box img {
    height: 100%;
    object-fit: cover;
}



.inner-banner {
    position: relative;
    z-index: 2;
}
.inner-banner .inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.inner-banner .content-box {
    position: absolute;
    left: 0;
    z-index: 9;
}
.inner-banner .content-box .caption-title {
    color: #fff;
    font-weight: 600;
    font-size: 3vw;
}





/* about-school */
.about-school {
    padding: 100px 0;
}
.about-school .sec-title {
    margin-bottom: 20px;
}


/* vision-mission */
.vision-mission {
    padding: 0 0 20px;
}
.vision-mission .inner {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 30px;
}
.vision-mission .img-box {
    overflow: hidden;
    border-radius: 20px;
}
.vision-mission .content h3 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}
.vision-mission .content p {
    color: #fff;
}



/* about-school-two */
.about-school-two {
    padding: 80px 0 100px;
}
.about-school-two .sec-title {
    margin-bottom: 20px;
}
.about-school-two .sec-title h3 {
    font-size: 26px;
}
.about-school-two .img-box {
    position: relative;
    display: block;
    padding-right: 10px;
    padding-left: 280px;
    margin-left: 0px;
}
.about-school-two .img-box .image-shape {
    position: absolute;
    left: -140px;
    top: -70px;
    width: 280px;
    height: 280px;
    background-repeat: no-repeat;
}
.about-school-two .img-box .image {
    border-radius: 30px 30px 0px 30px;
    overflow: hidden;
}
.about-school-two .img-box .image-2 {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}







/* principals-desk */
.principals-desk {
    position: relative;
    padding: 140px 0px 60px;
}
.principals-desk .outer-container {
    position: relative;
    padding: 0px 140px;
}
.principals-desk:before {
    position: absolute;
    content: '';
    background: #fff7f4;
    width: 625px;
    height: 100%;
    right: 0px;
    top: 0px;
    z-index: -1;
}
.principals-desk .sec-title {
    margin-bottom: 20px;
}
/* .principals-desk .big-text {
    position: absolute;
    left: 125px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    font-family: 'Urbanist', sans-serif;
    text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.08);
    font-weight: 900;
    text-transform: uppercase;
    writing-mode: tb;
    color: #fff;
} */
.principals-desk .img-box {
    position: relative;
    display: block;
    margin-left: 70px;
}
.principals-desk .img-box .img {
    position: relative;
    display: block;
    border-radius: 500px 500px 0px 500px;
}
.principals-desk .img-box .img img {
    width: 100%;
    border-radius: 300px 300px 0px 300px;
}
/* .principals-desk .img-box .info {
    position: absolute;
    right: 30px;
    bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 20px 20px 0px 20px;
}
.principals-desk .img-box .info .name {
    margin-bottom: 10px;
}
.principals-desk .img-box .info .name:last-child {
    margin-bottom: 0;
}
.principals-desk .img-box .info .name h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #615ecb;
} */
.principals-desk .img-box .info .name p {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}
.principals-desk .img-box .btn-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.principals-desk .img-box .btn-box .theme-btn {
    background: #fff;
}
.principals-desk .content .b-text {
    font-weight: 800;
    color: var(--primary-color);
}
.principals-desk .content h5 {
    font-family: 'Mulish', sans-serif;
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.principals-desk .content-box {
    position: relative;
    display: block;
}
.principals-desk .content .info {
    margin-top: 40px;
}
.principals-desk .content .info h6 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1px;
}

.principals-desk .content .info h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1px;
}
.principals-desk .content .info p {
    font-size: 18px;
    font-weight: 400;
}





/* directors-message */
.directors-message {
    position: relative;
    padding: 140px 0px 60px;
}
.directors-message .outer-container {
    position: relative;
    padding: 0px 140px;
}
.directors-message:before {
    position: absolute;
    content: '';
    background: #fff7f4;
    width: 625px;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
}
.directors-message .sec-title {
    margin-bottom: 20px;
}
/* .directors-message .big-text {
    position: absolute;
    left: 125px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    font-family: 'Urbanist', sans-serif;
    text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.08);
    font-weight: 900;
    text-transform: uppercase;
    writing-mode: tb;
    color: #fff;
} */
.directors-message .img-box {
    position: relative;
    display: block;
    margin-right: 70px;
}
.directors-message .img-box .img {
    position: relative;
    display: block;
    border-radius: 500px 500px 0px 500px;
}
.directors-message .img-box .img img {
    width: 100%;
    border-radius: 300px 300px 0px 300px;
}

.directors-message .img-box .info .name p {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}
.directors-message .img-box .btn-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.directors-message .img-box .btn-box .theme-btn {
    background: #fff;
}
.directors-message .content .b-text {
    font-weight: 800;
    color: var(--primary-color);
}
.directors-message .content h5 {
    font-family: 'Mulish', sans-serif;
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.directors-message .content-box {
    position: relative;
    display: block;
}
.directors-message .content .info .name {
    margin-bottom: 10px;
}
.directors-message .content .info .name p {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.directors-message .content .info .name:last-child {
    margin-bottom: 0;
}
.directors-message .content .info .name h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #615ecb;
}






/* why-northfield */
.why-northfield {
    padding-top: 80px;
}
.why-two {
    position: relative;
}
.why-two .content {
    margin-bottom: 20px;
}
.why-two .content h3 {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    color: var(--primary-color);
}
.why-two .content p {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
}
.why-two .inner {
    margin-bottom: 40px;
}
.why-two .inner .img-box {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.why-two .inner .text {
    background: var(--primary-color);
    position: relative;
    z-index: 2;
    display: block;
    padding: 30px 40px;
    margin-top: 50px;
    border-radius: 20px;
    box-shadow: 0px 12px 30px 4px #0000003d;
}
.why-two .inner .text.right {
    margin-left: -110px;
}
.why-two .inner .text.left {
    margin-right: -110px;
    background-color: var(--secondary-color);
}
.why-two .inner .text h3 {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 10px;
}
.why-two .inner .text p {
    color: #fff;
    margin-bottom: 0px;
}




/* northfield-team */
.northfield-team {
    padding: 100px 0px;
}
.northfield-team .sec-title {
    margin-bottom: 20px;
}
.northfield-team .row-2 {
    margin-top: 80px;
}
.northfield-team .img-box {
    border-radius: 300px 300px 0 300px;
    overflow: hidden;
    border: 5px solid #fff;
}
.northfield-team .img-box.left {
    margin-right: 40px;
}
.northfield-team .img-box.right {
    margin-left: 40px;
}
.northfield-team .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.northfield-team .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.northfield-team .content .sub-head {
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
}

.northfield-team .row-3 {
    margin-top: 80px;
}
.northfield-team .item {
    position: relative;
    display: block;
    border-radius: 10px 10px 0px 40px;
    padding-top: 10px;
    margin-bottom: 30px;
}
.northfield-team .item-one {
    background: var(--secondary-color);
}
.northfield-team .item-two {
    background: var(--primary-color);
}

.northfield-team .item-one:hover .inner-box {
    border-color: var(--secondary-color);
}
.northfield-team .item-two:hover .inner-box {
    border-color: var(--primary-color);
}
.northfield-team .item .inner-box {
    position: relative;
    display: block;
    background: #fff;
    overflow: hidden;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid #e7e3ee;
    padding: 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.northfield-team .item .inner-box .img-box {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}
.northfield-team .item .inner-box h3 {
    display: block;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.northfield-team .item .inner-box p {
    text-align: center;
}
.northfield-team .bottom-content {
    margin-top: 10px;
}
.northfield-team .bottom-content p {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}



/* curriculum-section */
.curriculum-section {
    padding: 100px 0px;
}
.curriculum-section .sec-title {
    margin-bottom: 20px;
}
.curriculum-section .img-box {
    position: relative;
    display: block;
    margin-right: 40px;
    padding-right: 70px;
    padding-bottom: 140px;
}
.curriculum-section .img-box .image {
    border-radius: 30px 30px 0px 30px;
    overflow: hidden;
}
.curriculum-section .img-box .image-2 {
    position: absolute;
    right: 0px;
    bottom: 0px;
}




/* schooling-levels */
.schooling-levels {
    padding: 100px 0px;
    background-color: #f1f1ff;
}
.schooling-levels .item {
    background-color: var(--primary-color);
    padding: 50px 30px 30px 30px;
    border-radius: 30px 30px 0px 30px;
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    min-height: 225px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}
.schooling-levels .item:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    box-shadow: 0 10px 25px 0 #00000052;
}
.schooling-levels .item-col {
    background-color: var(--secondary-color);
}
.schooling-levels .row-2 .item {
    min-height: 300px;
}
.schooling-levels .item .icon-box {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    z-index: 1;
}
.schooling-levels .item .icon-box:before {
    position: absolute;
    content: '';
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50% 50% 0px 50%;
    left: 0;
    top: -15px;
    z-index: -1;
}
.schooling-levels .item .icon-box .icon {
    margin-left: 14px;
    width: 70px;
}
.schooling-levels .item .icon-box .icon img {
    width: 50px;
}
.schooling-levels .item .content p {
    color: #fff;
}



/* mosaic-collage */
.mosaic-collage {
    padding: 100px 0px;
    background-color: #f1f1ff;
}
.mosaic-collage .sec-title {
    margin-bottom: 20px;
}
.mosaic-collage .img-box {
    border-radius: 30px 30px 0px 30px;
    overflow: hidden;
    margin-left: 40px;
    border: 5px solid #fff;
}
.mosaic-collage .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.mosaic-collage .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}





/* facilities-page-sec */
.facilities-page-sec {
    background-image: none;
}
.facilities-page-sec .item {
    margin-bottom: 30px;
}
.facilities-page-sec .item .inner-box .img-box {
    margin-bottom: 0;
    border: 5px solid #fff;
}
.facilities-page-sec .item-one .inner-box {
    background-color: #fff7f4;
}
.facilities-page-sec .item-two .inner-box {
    background-color: #f1f1ff;
}
.facilities-page-sec .bottom-content {
    margin-top: 10px;
}

.facilities-page-sec .videos-sec {
    margin-bottom: 40px;
}
.facilities-page-sec .videos-sec .video-box {
    margin-bottom: 30px;
}
.facilities-page-sec .videos-sec .video-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.facilities-page-sec .videos-sec .video-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.facilities-page-sec .videos-sec .video-box .video-btn {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: block;
}
.facilities-page-sec .videos-sec .video-box .video-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);

}
.facilities-page-sec .videos-sec .video-box .video-btn .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.facilities-page-sec .videos-sec .video-box h4 {
    text-align: center;
    margin-top: 10px;
    font-size: 23px;
    font-weight: 600;
}



/* affiliations-section */
.affiliations-section {
    padding: 100px 0px;
    background-color: #f1f1ff;
}
.affiliations-section .sec-title {
    margin-bottom: 20px;
}
.affiliations-section .img-box {
    border-radius: 30px 30px 0px 30px;
    overflow: hidden;
    margin-right: 40px;
    border: 5px solid #fff;
}
.affiliations-section .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.affiliations-section .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.affiliations-section .logos-wrap {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    width: 70%;
}
.affiliations-section .logos-wrap .item .logo {
    border-radius: 15px;
    overflow: hidden;
}
.affiliations-section .logos-wrap .item h4 {
    text-align: center;
    margin-top: 10px;
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 700;
}



/* resource-and-research */
.resource-and-research {
    padding: 100px 0px;
}
.resource-and-research .sec-title {
    margin-bottom: 20px;
}
.resource-and-research .img-box {
    border-radius: 300px 300px 0 300px;
    overflow: hidden;
    margin-left: 40px;
    border: 5px solid #fff;
}
.resource-and-research .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.resource-and-research .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}



/* extracurricular-section */
.extracurricular-banner .content-box {
    top: -155px;
}
.extracurricular-section {
    padding: 100px 0px;
}
.extracurricular-section .sec-title {
    margin-bottom: 20px;
}
.extracurricular-section .row-2 {
    margin-top: 80px;
}
.extracurricular-section .img-box {
    border-radius: 300px 300px 0 300px;
    overflow: hidden;
    border: 5px solid #fff;
}
.extracurricular-section .img-box.left {
    margin-right: 40px;
}
.extracurricular-section .img-box.right {
    margin-left: 40px;
}
.extracurricular-section .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.extracurricular-section .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.extracurricular-section .content .sub-head {
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
}

.extracurricular-section .row-3 {
    margin-top: 80px;
}
.extracurricular-section .item {
    position: relative;
    display: block;
    border-radius: 10px 10px 0px 40px;
    padding-top: 10px;
    margin-bottom: 30px;
}
.extracurricular-section .item-one {
    background: var(--secondary-color);
}
.extracurricular-section .item-two {
    background: var(--primary-color);
}

.extracurricular-section .item-one:hover .inner-box {
    border-color: var(--secondary-color);
}
.extracurricular-section .item-two:hover .inner-box {
    border-color: var(--primary-color);
}
.extracurricular-section .item .inner-box {
    position: relative;
    display: block;
    background: #fff;
    overflow: hidden;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid #e7e3ee;
    padding: 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.extracurricular-section .item .inner-box .img-box {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}
.extracurricular-section .item .inner-box h3 {
    display: block;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.extracurricular-section .item .inner-box p {
    text-align: center;
}
.extracurricular-section .bottom-content {
    margin-top: 10px;
}
.extracurricular-section .bottom-content p {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}




/* life-at-section */
.life-at-section {
    padding: 100px 0px;
}
.life-at-section .sec-title {
    /* margin-bottom: 20px; */
}
.life-at-section .img-box {
    border-radius: 300px 300px 0 300px;
    overflow: hidden;
    border: 5px solid #fff;
}
.life-at-section .img-box.left {
    margin-right: 40px;
}
.life-at-section .img-box.right {
    margin-left: 40px;
}
.life-at-section .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.life-at-section .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.life-at-section .content .sub-head {
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.events-page-sec {
    background: #f1f1ff;
    padding-bottom: 80px;
}
.events-page-sec .item {
    margin-bottom: 35px;
}




/* life-at-two */
.life-at-two {
    padding: 100px 0px;
}
.life-at-two .sec-title {
    margin-bottom: 20px;
}
.life-at-two .sec-title h2 {
    font-size: 35px;
    line-height: 42px;
    color: var(--primary-color);
}
.life-at-two .img-box {
    border-radius: 30px 30px 0px 30px;
    overflow: hidden;
    margin-right: 40px;
    border: 5px solid #fff;
}
.life-at-two .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.life-at-two .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


/* life-at-three */
.life-at-three {
    padding: 0 0 100px;
}
.life-at-three .sec-title {
    margin-bottom: 20px;
}
.life-at-three .row-2 {
    margin-top: 80px;
}
.life-at-three .img-box {
    border-radius: 300px 300px 0 300px;
    overflow: hidden;
    border: 5px solid #fff;
}
.life-at-three .img-box.left {
    margin-right: 40px;
}
.life-at-three .img-box.right {
    margin-left: 40px;
}
.life-at-three .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.life-at-three .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.life-at-three .content .sub-head {
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
}







/* programs-section */
.programs-section {
    padding: 100px 0px;
}
.programs-section .sec-title {
    margin-bottom: 30px;
}
.programs-section .row-2 {
    margin-top: 80px;
}
.programs-section .video-box {
    border-radius: 20px;
    overflow: hidden;
}
.programs-section .v-left {
    margin-right: 20px;
}
.programs-section .v-right {
    margin-left: 20px;
}
.programs-section .bf-content {
    margin-top: 30px;
}
.programs-section p a {
    color: var(--primary-color);
}
.programs-section .img-box {
    border-radius: 300px 300px 0 300px;
    overflow: hidden;
    border: 5px solid #fff;
}
.programs-section .img-box.left {
    margin-right: 40px;
}
.programs-section .img-box.right {
    margin-left: 40px;
}
.programs-section .img-box img {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.programs-section .img-box:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.programs-section .content .sub-head {
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
}

.programs-section .row-3 {
    margin-top: 80px;
}
.programs-section .item {
    position: relative;
    display: block;
    border-radius: 10px 10px 0px 40px;
    padding-top: 10px;
    margin-bottom: 30px;
}
.programs-section .item-one {
    background: var(--secondary-color);
}
.programs-section .item-two {
    background: var(--primary-color);
}

.programs-section .item-one:hover .inner-box {
    border-color: var(--secondary-color);
}
.programs-section .item-two:hover .inner-box {
    border-color: var(--primary-color);
}
.programs-section .item .inner-box {
    position: relative;
    display: block;
    background: #fff;
    overflow: hidden;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid #e7e3ee;
    padding: 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.programs-section .item .inner-box .img-box {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}
.programs-section .item .inner-box h3 {
    display: block;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.programs-section .item .inner-box p {
    text-align: center;
}
.programs-section .bottom-content {
    margin-top: 10px;
}
.programs-section .bottom-content p {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}



.programs-benefits {
    padding: 0 0 80px;
}
.programs-benefits .item {
    position: relative;
    display: block;
    border-radius: 10px 10px 0px 40px;
    padding-top: 10px;
    margin-bottom: 30px;
}
.programs-benefits .item-one {
    background: var(--secondary-color);
}
.programs-benefits .item-two {
    background: var(--primary-color);
}

.programs-benefits .item-one:hover .inner-box {
    border-color: var(--secondary-color);
}
.programs-benefits .item-two:hover .inner-box {
    border-color: var(--primary-color);
}
.programs-benefits .item .inner-box {
    position: relative;
    display: block;
    background: #fff;
    overflow: hidden;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid #e7e3ee;
    padding: 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.programs-benefits .item .inner-box .img-box {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}
.programs-benefits .item .inner-box h3 {
    display: block;
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px;
    text-align: center;
}
.programs-benefits .item .inner-box p {
    text-align: center;
}
.programs-benefits .bottom-content {
    margin-top: 10px;
}
.programs-benefits .bottom-content p {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}








/* ----------------------
Contact Section
------------------------*/
.contact-section {
    padding: 100px 0;
}
.contact-section .sec-title {
    margin-top: 80px;
}
.contact-section .img-box {
    border-radius: 15px;
    overflow: hidden;
}
.contact-section .con-inner .content {
    margin-right: -110px;
    background-color: var(--secondary-color);
    position: relative;
    z-index: 2;
    display: block;
    padding: 30px 40px;
    margin-top: 50px;
    border-radius: 20px;
}
.contact-section .con-inner .content p {
    color: #fff;
}

.contact-section .contact-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact-section .contact-form {
    padding: 40px;
    background: #f4f1fa;
    border-radius: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #fff;
    border-radius: 20px 20px 0px 20px;
    border: 2px solid #f4f1fa;
    font-size: 17px;
    color: #75727b;
    padding: 10px 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-form textarea {
    height: 150px;
    padding: 15px;
}
.contact-form select {
    color: #696969;
} 

.contact-form fieldset {
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    color: #222;
    border: 2px solid var(--secondary-color);
    background: #fff;
    -webkit-box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
    outline: none;
}

.contact-form button {
    font-size: 17px;
    border: none;
    display: block;
    width: 100%;
}

.contact-form button:hover {
    opacity: 0.9;
}

.contact-form textarea {
    padding: 20px;
}

.contact-form ::-webkit-input-placeholder {
    /* Edge */
    color: #7c7c7c;
}

.contact-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #7c7c7c;
}

.contact-form ::-moz-placeholder {
    color: #7c7c7c;
}

.contact-form ::-ms-input-placeholder {
    color: #7c7c7c;
}

.contact-form ::placeholder {
    color: #7c7c7c;
}

.contact-section .contact-box {
    width: 100%;
    padding-left: 40px;
}

.contact-section .contact-box .contact-info h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-section .contact-box .contact-info ul li {
    padding: 0px 0px 40px 60px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.7;
    color: #fff;
}

.contact-section .contact-box .contact-info ul li:last-child {
    padding-bottom: 0;
}

.contact-section .contact-box .contact-info ul li:first-child {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.contact-section .contact-box .contact-info ul li i {
    color: #fff;
    border-radius: 50px;
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    position: absolute;
    text-align: center;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-right: 20px;
    line-height: 40px;
    left: 0px;
}

.contact-section .contact-box .contact-info ul li p {
    color: #000 !important;
    font-size: 17px;
    margin: 0 !important;
    font-weight: 700;
}

.contact-section .contact-box .contact-info ul li a {
    color: #000;
    font-weight: 700;
    font-size: 17px;
}

.contact-section .contact-box .contact-info h4 {
    font-size: 17px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}

form fieldset .radio {
    margin-top: 10px;
    position: relative;
}

form fieldset .radio li {
    margin: 0 10px;
}

.contact-form input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

form fieldset .radio li label {
    width: auto;
}


.svg-fill-color-light {
    fill: #fff !important;
}

/* -----------------
Footer Section
--------------------*/
footer {
    background: #fff;
    padding: 70px 0;
}

footer .row-2 {
    margin-top: 50px;
}

footer .footer-content {
    padding: 0px 0;
}

footer .widget h2 {
    color: #272e39;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 30px;
    margin-right: 15px;
    padding-bottom: 10px;
    position: relative;
}
footer .widget h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: #e7e3ee;
    width: 100%;
    height: 1px;
}

footer .widget p {
    color: var(--black);
    margin: 0;
}
footer .widget-about .logo-box {
    margin-bottom: 30px;
}
footer .widget-about p {
    text-align: justify;
    font-weight: 500;
    font-size: 17px;
}

footer .widget-about h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 26px;
}
footer .widget-about h4 span {
    position: relative;
    display: inline-block;
    z-index: 1;
}
footer .widget-about h4 span:before {
    position: absolute;
    content: '';
    background: #f4f1fa;
    width: 100%;
    height: 10px;
    left: 0px;
    bottom: 3px;
    z-index: -1;
}
footer .widget-about .map-box {
    position: relative;
    display: block;
    padding: 0px 0px 0px 50px;
    margin-top: 20px;
}
footer .widget-about .map-box .icon-box {
    position: absolute;
    display: inline-block;
    left: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #f4f1fa;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    color: var(--secondary-color);
}
footer .widget-about .map-box h6 {
    display: block;
    font-size: 18px;
    line-height: 40px;
    font-weight: 600;
}
footer .widget-about .map-box h6 a {
    color: #272e39;
}
footer .quick-links {
    padding-left: 30px;
}
footer .widget-links .nav-links ul {
    padding: 0;
    list-style-type: none;
}

footer .widget-links .nav-links ul li {
    position: relative;
    display: block;
    margin-bottom: 12px;
}
footer .widget-links .nav-links ul li a {
    position: relative;
    display: inline-block;
    font-size: 17px;
    color: var(--black);
    font-weight: 500;
    padding-left: 29px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
footer .widget-links .nav-links ul li a:hover {
    padding-left: 54px;
    color: var(--secondary-color);
}
footer .widget-links .nav-links ul li a:before {
    position: absolute;
    content: "\f054";
    font-family: "FontAwesome";
    font-size: 15px;
    left: 0px;
    top: 0px;
    color: var(--secondary-color);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
footer .widget-links .nav-links ul li a:hover:before {
    left: 30px;
}
/* footer .widget-links .nav-links ul li a:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 1px;
    left: 7px;
    top: 10px;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    background: var(--secondary-color);
}
footer .widget-links .nav-links ul li a:hover:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
} */

/* footer .widget-links .nav-links ul li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    padding-right: 15px;
    color: var(--secondary-color);
    font-size: 12px;
} */

footer .widget-links .nav-links ul li:hover a,
footer .widget-links .nav-links ul li:hover a:before {
    color: var(--primary-color);
    background-color: transparent;
}

footer .widget-contact .contact-info ul {
    padding: 0;
}

footer .widget-contact .contact-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; */
    position: relative;
    color: #fff;
    padding-bottom: 30px;
    padding-left: 60px;
}
footer .widget-contact .contact-info ul .address {
    align-items: flex-start !important;
}
footer .widget-contact .contact-info ul li i {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: #f5dfd7;
    color: #e85222;
    font-size: 16px;
    margin-right: 10px;
    text-align: center;
    border-radius: 60px;
    line-height: 40px;
}

footer .widget-contact .contact-info ul li p {
    display: -ms-grid;
    display: grid;
    text-align: left;
    color: var(--black);
    font-size: 17px;
    font-weight: 500;
}

footer .widget-contact .contact-info ul li a {
    color: var(--black);
    font-size: 17px;
    font-weight: 500;
}

footer .widget-contact .contact-info ul li a.email {
    margin-top: 10px;
}

footer .widget-contact .map-box {
    border-radius: 10px;
    overflow: hidden;
}


/* ----------------------
Footer Bottom Section
------------------------*/
.footer-bottom {
    background: var(--primary-color);
    padding: 30px 0;
}

.footer-bottom p,
.footer-bottom p a {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
}

.footer-bottom .copyrights {
    float: left;
}

.footer-bottom .design {
    float: right;
}


/* ----------------------
Go To Top
------------------------*/

.scroll-top {
    width: 60px;
    height: 60px;
    line-height: 65px;
    overflow: hidden;
    border: none;
    position: fixed;
    bottom: -80px;
    right: 50px;
    font-size: 25px;
    border-radius: 50%;
    z-index: 9999;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: var(--secondary-color);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.scroll-top i {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #ffffff;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.scroll-top .arrow-top {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.scroll-top .arrow-bottom {
    -webkit-transform: translate(-50%, 80px);
        -ms-transform: translate(-50%, 80px);
            transform: translate(-50%, 80px);
}
.scroll-top:hover .arrow-top {
    -webkit-transform: translate(-50%, -80px);
        -ms-transform: translate(-50%, -80px);
            transform: translate(-50%, -80px);
}
.scroll-top:hover .arrow-bottom {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.scroll-top.show {
    bottom: 55px;
}









.whatsapp-name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
    color: #fff;
}

#whatsapp-chat {
    box-sizing: border-box !important;
    outline: none !important;
    position: fixed;
    width: 380px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 190px;
    right: 30px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
}

a.blantershow-chat {
    background: #189d0e;
    color: #fff;
    position: fixed;
    display: flex;
    font-weight: 600;
    text-transform: uppercase;
    justify-content: space-between;
    z-index: 98;
    opacity: 1;
    visibility: visible;
    bottom: 130px;
    right: 30px;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

a.blantershow-chat.show {
    opacity: 1;
    visibility: visible;
}

.blantershow-chat i {
    font-size: 36px;
    line-height: 20px;
    padding-right: 10px;
}

a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
    background: #009688;
    background: #095e54;
    color: #fff;
    padding: 20px;
}

.header-chat h3 {
    margin: 0 0 10px;
}

.header-chat p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding-left: 10px;
}

.header-chat .head-home {
    display: flex;
    align-items: center;
}

.info-avatar {
    position: relative;
}

.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
    background-color: #fff;
    padding: 5px;
}

a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 0.5s;
}

a.informasi:hover {
    background: #f1f1f1;
}

.info-chat span {
    display: block;
}

#get-label,
span.chat-label {
    font-size: 12px;
    color: #888;
}

#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

#get-label,
#get-nama {
    color: #fff;
}

span.my-number {
    display: none;
}

.blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 14px;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #ddd;
}

.blanter-msg a {
    background-color: #189d0e;
    color: #fff;
    width: 100%;
    padding: 10px 30px;
    border-radius: 60px;
    font-size: 15px;
}

.blanter-msg a i {
    font-size: 16px;
}

textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
}

a#send-it {
    width: 30px;
    font-weight: 700;
    padding: 10px 10px 0;
    background: #eee;
    border-radius: 10px;
}

a#send-it svg {
    fill: #a6a6a6;
    height: 24px;
    width: 24px;
}

.first-msg {
    background: transparent;
    padding: 30px;
    text-align: center;
}

.first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
}

.start-chat .blanter-msg {
    display: flex;
    justify-content: center;
}

#get-number {
    display: none;
}

a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
}

@keyframes ZpjSY {
    0% {
        background-color: #b6b5ba;
    }

    15% {
        background-color: #111111;
    }

    25% {
        background-color: #b6b5ba;
    }
}

@keyframes hPhMsj {
    15% {
        background-color: #b6b5ba;
    }

    25% {
        background-color: #111111;
    }

    35% {
        background-color: #b6b5ba;
    }
}

@keyframes iUMejp {
    25% {
        background-color: #b6b5ba;
    }

    35% {
        background-color: #111111;
    }

    45% {
        background-color: #b6b5ba;
    }
}

@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
}

@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
}

.whatsapp-hide {
    display: none;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-show {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-message-container {
    display: flex;
    z-index: 1;
}

.whatsapp-message {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: #e6ddd4;
    position: relative;
}

.whatsapp-chat-body::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("../images/whatsapp-pattern.png");
}

.dAbFpq {
    display: flex;
    z-index: 1;
}

.eJJEeC {
    background-color: white;
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
    position: relative;
    display: flex;
}

.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: #9e9da2;
    animation-name: ZpjSY;
}

.dRvxoz {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: #b6b5ba;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
}

.kAZgZq {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.kAZgZq::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
}

.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}

.captcha-img {
    display: flex;
}

.captcha-img img {
    width: 200px;
}

#captcha_reload i {
    color: #000000;
    font-size: 22px;
    line-height: 40px;
    padding-left: 10px;
}

#captcha-field {
    margin: 0;
}

#captcha-error {
    text-align: center;
}

#captcha-error p {
    margin: 0;
}

#captcha_reload i {
    color: #000;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

#captcha-field {
    margin-top: 0px;
}

#captcha_image {
    width: 80%;
    height: 100%;
    margin: 0 0px 0 0;
    text-align: center;
}

#success_message {
    text-align: center;
    background-color: #dff2d5;
    padding: 5px 10px;
    border: 1px solid #399d04;
    margin-top: 20px;
}

#success_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.help-block.error,
#file-error p {
    color: #f00;
    font-size: 14px;
}

#employment_type-error {
    position: absolute;
    top: 100%;
}

#error_message {
    text-align: center;
    background-color: #f2d5d5;
    padding: 5px 10px;
    border: 1px solid #9d0404;
    margin-top: 20px;
}

#error_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}




@media only screen and (max-width: 1749px) {

}
@media only screen and (max-width: 1366px) {
    .events-section .project-tab .tab-content {
        margin-right: -140px;
    }
    .principals-desk:before {
        width: 285px;
    }
    .directors-message:before {
        width: 355px;
    }
    .chairman-section:before {
        width: 325px;
    }
    .extracurricular-banner .content-box {
        top: -100px;
    }
    .appointment-section .image-layer {
        position: absolute;
        right: 90px;
        bottom: -80px;
        z-index: 1;
        width: 28%;
    }
}
@media only screen and (max-width: 1199px) {
    .navbar .header-contact-info {
        display: none;
    }
    .header-upper .logo-box:before {
        width: 0;
    }
    .header-upper .award-box {
        display: none;
    }
    .header-upper .right-column .support-box,
    .header-upper .right-column .phone {
        display: none;
    }
    .whychoose-section .left .item:nth-child(2) {
        right: 0px;
    }
    .whychoose-section .right .item:nth-child(2) {
        left: 0px;
    }
    .campus-section, 
    .appointment-section {
        padding: 0px;
    }
}


@media only screen and (max-width: 991px){
    .loader-mask {
        display: none;
    }
    .top-bar .container-fluid {
        text-align: center;
    }
    .top-bar .info-list li {
        float: none;
    }
    .top-bar .social-links li,
    .top-bar .social-links {
        float: none;
    }
    .header-upper .right-column .theme-btn {
        display: none;
    }
    .header-upper .left-column {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .header-upper .logo-box {
        margin-right: 0px;
    }
    .navbar {
        padding: 30px 0;
    }
    .navbar-light .navbar-toggler {
        background: var(--primary-color);
        border: none;
        -webkit-box-shadow: none;
                box-shadow: none;
        margin: auto;
    }
    .navbar-light .navbar-toggler-icon {
        background-image: none;
        line-height: 30px;
    }
    .navbar-light .navbar-toggler-icon::before {
        content: "\f0c9";
        font-family: FontAwesome;
        color: #fff;
        font-size: 20px;
    }
    .navbar-nav li .nav-link:before {
        display: none;
    }
    .navbar-nav {
        padding-top: 20px;
    }
    .navbar-nav li .nav-link {
        padding: 15px 0 !important;
    }
    .banner-carousel .content-box h2 {
        font-size: 50px;
        line-height: 60px;
    }
    .about-section .inner {
        padding-left: 0px;
    }
    .about2-section .wrap {
        padding-right: 0px;
        margin-bottom: 40px;
    }
    .about2-section .img-box .text-box {
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .curricula-section .item .text.right {
        padding-left: 0px;
        margin-top: 40px;
    }
    .curricula-section .item .text.left {
        padding-right: 0px;
        margin-bottom: 40px;
    }
    .video-section .outer-container {
        padding: 0px;
    }
    .video-section .pattern-layer {
        display: none;
    }
    .chairman-section:before {
        background: #fff;
    }
    .chairman-section .outer-container {
        padding: 0px 60px;
    }
    .chairman-section .content-box {
        margin-top: 40px;
    }
    .campus-section .inner-box {
        border-radius: 30px;
        margin-left: 0;
        margin-right: 0;
    }
    .campus-section .tabs-content {
        border-radius: 30px;
    }
    .whychoose-section .img-box {
        margin: 30px 0px 50px 0px;
    }
    .whychoose-section .big-text {
        display: none;
    }
    .campus-section .tabs-content {
        margin-left: 0px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .events-section:before {
        background: #fff;
    }
    .working-section .inner-box {
        margin-bottom: 50px;
    }
    .events-section .project-tab .tab-content {
        margin-right: 0;
        margin-top: 40px;
    }
    .events-section .outer-container {
        padding: 0px 60px;
    }
    .testimonial-section .content-box {
        margin-bottom: 30px;
    }
    .appointment-section .outer-container {
        padding: 70px 0px
    }
    .appointment-section .shape {
        display: none;
    }
    .appointment-section .image-layer {
        display: none;
    }
    .appointment-section .inner-box {
        padding-top: 40px;
        padding-left: 0px;
    }
    .chairman-section .img-box {
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .vision-mission .vision-content {
        margin-top: 20px;
    }
    .vision-mission .mission-content {
        margin-bottom: 30px;
    }
    .about-school-two .img-box .image-shape {
        display: none;
    }
    .principals-desk {
        padding: 140px 0px 140px;
    }
    .principals-desk:before {
        width: 0;
    }
    .principals-desk .img-box {
        margin-top: 50px;
        margin-left: 0px;
    }
    .principals-desk .img-box .img img {
        border-radius: 500px 500px 0px 500px;
    }
    .directors-message {
        padding: 140px 0px 140px;
    }
    .directors-message:before {
        width: 0;
    }
    .directors-message .img-box {
        margin-bottom: 50px;
        margin-right: 0px;
    }
    .directors-message .img-box .img img {
        border-radius: 500px 500px 0px 500px;
    }
    .why-two .inner .text.right {
        margin-left: 0;
        margin-top: 10px;
    }
    .why-two .inner .text.left {
        margin-right: 0;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .why-two .inner .text {
        box-shadow: none;
    }
    .northfield-team .img-box {
        border-radius: 500px 500px 0 500px;
    }
    .northfield-team .img-box.left {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .northfield-team .img-box.right {
        margin-left: 0;
        margin-top: 40px;
    }
    .curriculum-section .img-box {
        position: relative;
        display: block;
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 30px;
    }
    .curriculum-section .img-box .image-2 {
        position: relative;
    }
    .schooling-levels .item {
        min-height: auto;
    }
    .schooling-levels .row-2 .item {
        min-height: auto;
    }
    .schooling-levels .item .icon-box:before {
        width: 70px;
        height: 70px;
        top: -20px;
    }
    .schooling-levels .item .icon-box .icon {
        margin-left: 11px;
        margin-top: -10px;
    }
    .affiliations-section .img-box {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .resource-and-research .img-box {
        border-radius: 500px 500px 0 500px;
        margin-left: 0;
        margin-top: 50px;
    }
    .extracurricular-section .img-box.left {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .extracurricular-section .img-box {
        border-radius: 500px 500px 0 500px;
    }
    .extracurricular-section .row-2 {
        margin-top: 40px;
    }
    .extracurricular-section .img-box.right {
        margin-left: 0;
        margin-top: 40px;
    }
    .life-at-section .img-box.right {
        margin-left: 0;
        margin-top: 40px;
    }
    .life-at-section .img-box {
        border-radius: 500px 500px 0 500px;
    }
    .life-at-two {
        padding: 100px 0px 60px;
    }
    .life-at-two .img-box {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .life-at-three .img-box.right {
        margin-left: 0;
        margin-top: 40px;
    }
    .life-at-three .img-box {
        border-radius: 500px 500px 0 500px;
    }
    .mosaic-collage .img-box {
        margin-left: 0;
        margin-top: 40px;
    }
    .facilities-page-sec .item .inner-box {
        padding: 20px;
    }
    .facilities-page-sec .item .inner-box .img-box {
        margin: 20px 0;
    }
    .contact-section .contact-form {
        padding: 20px;
    }
    .contact-section .content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .contact-section .con-inner .content {
        margin-right: 0;
        margin-top: 0;
    }


    footer {
        padding: 70px 0 0;
    }
    footer .quick-links {
        padding-left: 0px;
    }
    footer .widget {
        margin-bottom: 30px;
    }
    .footer-bottom .copyrights,
    .footer-bottom .design {
        float: none;
        text-align: center;
    }
    .footer-bottom p, 
    .footer-bottom p a {
        text-align: center;
    }
    footer .widget-contact .map-box {
        width: 90%;
    }
    .contact-section .contact-box {
        padding-left: 0px;
        margin-top: 50px;
    }
    .alert-cookie-policy .wrap {
        flex-direction: column;
        justify-content: center;
    }
    .alert-cookie-policy p {
        text-align: center;
    }
    .alert-cookie-policy .btn-wrap {
        text-align: center;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 767px){
    .custom-model-inner {
        width: 85%;
    }
    .custom-model-wrap .event-img {
        width: 60%;
    }
    .pop-up-content-wrap h2 {
        font-size: 30px;
    }
    .pop-up-content-wrap p {
        font-size: 21px;
    }
    .sec-title h2 {
        font-size: 36px;
        line-height: 46px;
    }
    .sec-title h2 br {
        display: none;
    }
    .top-bar .social-links li:first-child {
        display: block;
    }
    .top-bar .social-links li {
        margin: 0 10px 0 10px;
    }
    .top-bar .info-list li {
        margin: 0 10px 0 10px;
    }
    .banner-carousel .slide-item {
        padding: 95px 0px 100px 0px;
    }
    .banner-carousel .content-box h2 {
        font-size: 50px;
        line-height: 60px;
    }
    .banner-carousel .content-box h2 span {
        display: inline-block;
    }
    .banner-section .owl-nav, 
    .banner-section .owl-dots {
        display: none;
    }
    .about2-section .inner {
        padding: 30px;
    }
    .video-section .outer-container {
        padding: 0px 15px;
    }
    .video-section .box-one .inner-box {
        padding: 30px;
    }
    .video-section .box-two .inner-box {
        padding: 30px;
    }
    .video-section .box-one {
        margin-right: 0;
    }
    .video-section .row {
        gap: 0;
    }
    .video-section .box-two .inner-box .icon-box {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    .video-section .box-two .inner-box h3,
    .video-section .box-one .inner-box .count-outer h3 {
        font-size: 26px;
        line-height: 30px;
    }
    .facilities-section .owl-dots button:before {
        width: 0;
    }
    .facilities-section .owl-dots button {
        margin: 0 10px;
    }
    .growth-section .growth-inner .box .img-box {
        display: none;
    }
    .growth-section .growth-inner .progress-box {
        position: relative;
        right: 0px;
        bottom: 0px;
        width: 100%;
        margin-top: 30px;
    }
    .campus-section .inner-box {
        padding: 30px;
    }
    .campus-section .nav-tabs .nav-link .count-text {
        display: none;
    }
    .working-section .inner-content .shape {
        display: none;
    }
    .working-section .inner-box {
        margin-bottom: 110px;
    }
    .events-section .outer-container {
        padding: 0px 20px;
    }
    .chairman-section .accordion-box {
        padding: 20px 0;
    }
    .chairman-section:before,
    .appointment-section:before {
        width: 100%;
    }
    .vision-mission .inner {
        padding: 20px;
    }
    .about-school-two .img-box {
        padding-right: 0;
        padding-left: 0;
    }
    .about-school-two .img-box .image-2 {
        position: relative;
        left: 0px;
        top: 0;
        transform: none;
    }
    .schooling-levels .item {
        flex-direction: column;
    }
    .schooling-levels .item .icon-box .icon {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }
    .programs-section .v-left {
        margin-right: 0px;
        margin-bottom: 30px;
    }
    .programs-section .v-right {
        margin-left: 0px;
        margin-top: 30px;
    }
    
}

@media only screen and (max-width: 575px){
    
    .inner-banner .content-box {
        left: 10%;
    }
    .inner-banner .content-box .caption-title {
        font-size: 3.2vw;
    }
    .banner-carousel .content-box .lower-box {
        padding-left: 0px;
    }
    .banner-carousel .content-box .lower-box .icon-box {
        position: relative;
        top: 0px;
        margin-bottom: 20px;
    }
    .video-section .auto-container {
        padding: 0;
    }
    .video-section .box-one .inner-box .icon-box {
        position: relative;
        left: 0px;
        top: 0px;
        margin-bottom: 20px;
    }
    .video-section .box-one .inner-box {
        padding-left: 30px;
    }
    .growth-section .growth-inner .box {
        padding: 70px 30px;
    }
    .campus-section .nav-tabs {
        padding-right: 0px;
    }
    .campus-section .nav-tabs .nav-link {
        padding-left: 30px;
    }
    .campus-section .nav-tabs:before,
    .campus-section .nav-tabs .nav-link.active:before {
        display: none;
    }
    .working-section {
        padding: 30px 0px 62px 0px;
    }
    .chairman-section .outer-container {
        padding: 0px 30px;
    }
    .testimonial-section .testimonial-slider .item .img-box {
        position: relative;
    }
    .testimonial-section .bx-controls.bx-has-controls-direction {
        display: none;
    }
    .testimonial-section .testimonial-slider .item {
        padding-left: 0;
    }
    .testimonial-section .testimonial-slider .item .inner-box .icon-box {
        position: relative;
        top: 0px;
        margin-bottom: 30px;
    }
    .testimonial-section .testimonial-slider .item .inner-box {
        padding-left: 30px;
    }
    .testimonial-section .testimonial-slider .item .inner-box h4 {
        z-index: 1;
        position: relative;
    }
    .testimonial-section .content-box .inner-box {
        display: block;
    }
    .testimonial-section .content-box .inner-box .single-item {
        margin-right: 0px;
    }
    .testimonial-section .content-box .inner-box .tag {
        margin-top: 15px;
        -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    .affiliations-section .logos-wrap {
        flex-direction: column;
        width: 100%;
    }
    .contact-section .con-inner .content {
        padding: 25px;
    }


    .scroll-top.show {
        bottom: 115px;
    }
    .scroll-top {
        width: 40px;
        height: 40px;
        line-height: 65px;
        right: 40px;
        font-size: 16px;
        border: 1px solid #fff;
    }
}


