@font-face {
    font-family: regular;
    src: url(../fonts/Regular.woff);
}

@font-face {
    font-family: bold;
    src: url(../fonts/Bold.woff);
}

@font-face {
    font-family: custom;
    src: url(../fonts/custom.woff);
}

:root {
    --font1: 'custom';
    --font2: 'regular';
    --font3: 'bold';
    --col1: #286EAE;
    --col2: #686868;
    --col3: #7ede4c;
    --col4: #b6b6b6;
    --col5: #f6ba1e;
    --col6: #f6f6f6;

}

html {}

body {
    font-family: regular;
    color: #425466;
    /* background-color: #c9e9f6; */
    background-color: #FFF;
    letter-spacing: 0px;
    overflow-x: hidden;
    position: relative;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #9d7a45;
    border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #c7984e;
}

section {
    position: relative;
}

a {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #425466;
}

a:hover {
    text-decoration: none;
    color: #99753c;
}

button:focus {
    outline: none;
}

img {
    width: 100%;
}

input {
    outline: none;
}

p {
    margin: 0;
    padding: 0;
    line-height: 24px;
    font-size: 16px;
}

b {
    font-weight: 100;
    font-family: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 100;
    margin: 0;
}

.btn {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn:hover {}

.trans {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cardo,
.cardo2,
.cardo3,
.cardo4,
.cardo5 {
    -webkit-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

header {
    display: flex;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

header:after {
    top: 100%;
}

header .logo {
    width: 18%;
    padding: 0px 30px;
}

header .logo a {
    display: table;
    margin: 0;
    width: 190px;
    position: relative;
}

/*header .logo a:after {*/
/*    content: 'Licensed by MoE-Yanbu, Saudi Arabia. Affiliated to CBSE, New Delhi, India';*/
/*    position: absolute;*/
/*    left: 141%;*/
/*    top: 50%;*/
/*    font-size: 12px;*/
/*    text-align: left;*/
/*    width: 276px;*/
/*    line-height: 15px;*/
/*    font-family: 'bold';*/
/*    transform: translateY(-50%);*/
/*    text-transform: uppercase;*/
    /* color: #a67c42; */
/*    color: var(--col1);*/
/*}*/


header .logo a:after {
    position: absolute;
    left: 141%;
    top: 50%;
    font-size: 12px;
    text-align: left;
    width: 276px;
    line-height: 15px;
    font-family: 'bold';
    transform: translateY(-50%);
    text-transform: uppercase;
    color: var(--col1);
}

/* Full text */
header .logo.full-text a:after {
    content: 'Licensed by MoE-Yanbu, Saudi Arabia. Affiliated to CBSE, New Delhi, India';
}

/* Short text */
header .logo.short-text a:after {
    content: 'Licensed by MoE-Yanbu, Saudi Arabia.';
}


header .top-nav {
    width: 78%;
    display: flex;
    justify-content: flex-end;
    padding: 20px 0px;
    align-items: center;
}

header .top-nav a {
    margin-left: 20px;
    font-size: 15px;
    position: relative;
    letter-spacing: 0px;
}

header .top-nav a.btn {
    text-transform: uppercase;
    font-family: bold;
    letter-spacing: 1px;
    font-size: 12px;
    padding: 14px 30px;
    border-radius: 0;
    /* color: #0d294a;
    border: solid 1px #102a4a; */
    color: var(--col1);
    border: solid 1px var(--col4);
    /* border-radius: 5px; */
}

header .top-nav a.btn:last-child {
    margin-right: 20px;
}

header .top-nav a.btn:hover {
    /* color: #caa45d;
    border-color: #caa45d; */
    color: var(--col3);
    border-color: var(--col3);
}

header .top-nav a span {
    /* color: #99753c; */
    color: var(--col1);
    text-transform: uppercase;
    font-size: 10px;
    display: block;
    font-family: var(--font3);
    position: absolute;
    left: 0;
    top: -16px;
}

.progress-container {
    position: fixed;
    left: 0%;
    top: 75px;
    z-index: 1000;
    width: 100%;
    height: 4px;
}

.progress-bar {
    background-color: #caa45d;
    height: 4px;
}

.left-navbar {
    width: 22%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 9;
    background-color: #ffffff;
    padding-top: 10%;
    overflow: auto;
    max-height: 100vh;
    padding-bottom: 50px;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
}

.left-navbar:before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 20%;
    height: 110px;
    background-color: white;
    z-index: 1;
}

.left-navbar::-webkit-scrollbar {
    display: none;
}

.left-navbar .menucover {
    position: relative;
    border-bottom: solid 1px #3b526c1a;
}

.left-navbar a,
.left-navbar .link {
    display: block;
    padding: 14px 30px;
    font-size: 13px;
    font-family: 'bold';
    cursor: pointer;
    position: relative;
    /* color: #0d294a; */
    color: var(--col2);
    letter-spacing: 0.1px;
}

.left-navbar a {
    /* border-bottom: solid 1px #e0eeff0d; */
    border-bottom: solid 1px #3b526c1a;
}


.left-navbar a:hover,
.left-navbar .link:hover,
.left-navbar .menucover:hover .link.active,
.left-navbar .link.active {
    /* color: #caa45d; */
    color: var(--col1) !important;
}



/* .left-navbar a:hover {
    color: #caa45d;
} */

.left-navbar .link:before {
    content: '';
}

.left-navbar .link:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background-image: url(../img/down-arrow.svg);
    background-size: cover;
    opacity: 0.7;
}





.left-navbar .link.active:after {
    height: 1px;
    background-color: #0d294a;
}

.left-navbar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.left-navbar ul li {}

.left-navbar ul li a {
    padding: 6px 30px;
    font-size: 15px;
    position: relative;
    color: #384d64;
    font-family: 'regular';
    letter-spacing: 0;
}

.left-navbar ul li:last-child a {
    padding-bottom: 20px;
}

.left-navbar ul li a:hover {}

.left-navbar a:last-child {
    border: 0;
}

.left-navbar a.active {
    /* color: #caa45d; */
    color: var(--col1);
    font-family: var(--font3);
}

.left-navbar .social {
    display: flex;
    padding-left: 30px;
    margin-top: 40px;
}

.left-navbar .social a {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    padding: 0px;
    border-radius: 50px;
}

.left-navbar .social a img {}

.left-navbar .social a:hover {
    opacity: 0.9;
}

.content__ {
    padding-left: 22%;
    margin-top: 88px;
}

.mainbanner {
    position: relative;
    overflow: hidden;
    background-color: #0d294a;
    margin-bottom: -1px;
}

.mainbanner video {
    width: 100%;
    margin-bottom: -6px;
    filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    position: relative;
}

.mainbanner .gradient {
    position: absolute;
    left: -30%;
    top: -20%;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: 0px solid #000000;
    background: linear-gradient(45deg, #29bb9c, #1a86e0, #23bde1, #1e89a5, #0e3e61, #8495a6);
    background-size: 600% 100%;
    animation: gradient 10s linear infinite;
    animation-direction: alternate;
    border-radius: 0px 0px 200px 0px;
    -moz-border-radius: 0px 0px 200px 0px;
    -webkit-border-radius: 0px 0px 200px 0px;
    border: 0px solid #000000;
    filter: blur(100px);
    opacity: 0.6;
}

@keyframes gradient {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 100%
    }
}

.mainbanner .video.vd-blur {
    opacity: 0.1;
}

.mainbanner h1 {
    font-family: var(--font1);
    position: absolute;
    z-index: 1;
    top: 30%;
    color: #fff;
    padding-left: 10%;
    font-size: 90px;
    text-transform: uppercase;
}

.mainbanner .news {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
}

.mainbanner .news .head {
    color: #fff;
    font-family: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    width: 20%;
    border-right: solid 1px #ffffff17;
    padding: 10px 20px;
    padding-left: 4%;
}

.mainbanner .news .head i {
    font-size: 14px;
    margin-right: 10px;
}

.mainbanner .news .data {
    display: flex;
    align-items: center;
    width: 100%;
}

.mainbanner .news .data a {
    padding: 30px 20px;
    display: inline-block;
    color: #fff;
    font-size: 17px;
    position: relative;
}

.mainbanner .news .data a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #caa45d;
    transform: translateY(-50%);
    border-radius: 5px;
}

.mainbanner .news .data a:hover {
    color: #caa45d;
}

.mainbanner .news .data marquee {
    width: 100%;
    overflow: hidden;
}

.home__about {}

.home__about .content-intro {
    padding-left: 10%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.home__about .content-intro h2 {
    text-transform: uppercase;
    font-family: var(--font1);
    font-size: 40px;
    color: #0b284a;
}

.home__about .content-intro p {
    padding-top: 5%;
    max-width: 50%;
    font-size: 20px;
}

.home__about .content-intro .btn {
    padding: 10px 0px;
    margin-top: 5%;
    color: #99753c;
    font-family: var(--font3);
    border-radius: 0;
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.home__about .content-intro .btn:before {
    content: '';
    position: absolute;
    left: 102%;
    bottom: 15px;
    width: 20px;
    height: 1px;
    background-color: #99753c;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.home__about .content-intro .btn:hover {
    letter-spacing: 1.2px;
}

.home__about .content-intro .btn:hover:before {
    width: 100px;
}

.home-school-filter {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* background-color: #c9e9f6; */
    background-color: var(--col1);
}

.home-school-filter .item {
    position: relative;
    overflow: hidden;
    width: 33.3333333333%;
}

.home-school-filter .item:hover {}

.home-school-filter .item:hover img {
    opacity: 0.8;
}

.home-school-filter .item:hover h3 {
    color: #99753c;
    color: var(--col5);
}

.home-school-filter .item:last-child {}

.home-school-filter .item,
.home-school-filter .item * {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.home-school-filter .item h3 {
    /* color: #0d294a; */
    color: #FFF;
    text-transform: uppercase;
    font-family: var(--font1);
    font-size: 20px;
    letter-spacing: 1px;
    padding: 20px;
    padding-bottom: 100px;
}

.home-school-filter .item h3 span {
    display: block;
    font-size: 14px;
    font-family: var(--font2);
    letter-spacing: 1px;
    padding-top: 10px;
}

.demonstrate-banner {
    background-color: #0b2a46;
    padding: 15% 0%;
    padding-left: 10%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

.demonstrate-banner * {
    position: relative;
    z-index: 2;
}

.demonstrate-banner.demonstrate-banner2 {
    margin-top: 0px;
    background-position: left center;
}

.demonstrate-banner h4 {
    font-family: var(--font1);
    color: #fff;
    text-transform: uppercase;
    font-size: 50px;
}

.demonstrate-banner p {
    padding-top: 3%;
    max-width: 50%;
    color: #fff;
    font-size: 20px;
    line-height: 27px;
}

.home__activities {
    display: flex;
}

.home__activities .title {
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
    color: #0d294a;
    text-transform: uppercase;
    font-size: 30px;
    font-family: var(--font1);
    position: relative;
    letter-spacing: 4px;
}

.home__activities .title:before {
    content: '';
    background-image: url(../img/lines1.svg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 350px;
    z-index: 0;
}

.home__activities .title span {
    position: relative;
    z-index: 1;
}

.home__activities .slide {
    width: 100%;
}

.home__activities .owl-theme .owl-dots {
    display: none;
}

.home__activities .owl-nav {
    position: absolute;
    right: 0;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
}

.home__activities .owl-carousel .owl-dot,
.home__activities .owl-carousel .owl-nav .owl-next,
.home__activities .owl-carousel .owl-nav .owl-prev {
    margin: 5px 10px;
    font-size: 0;
    width: 34px;
    height: 34px;
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    background-color: #ffffffcc;
    display: block;
    border-bottom: solid 1px #c1c1c1;
    border-radius: 50px;
}

.home__activities .owl-carousel .owl-nav .owl-prev {
    background-image: url(../img/left.png);
}

.home__activities .owl-carousel .owl-nav .owl-next {
    background-image: url(../img/right.png);
}

.home__activities .owl-carousel .owl-nav .owl-next:hover,
.home__activities .owl-carousel .owl-nav .owl-prev:hover {
    background-color: #fff;
}

.home__activities .slide .item {
    position: relative;
    overflow: hidden;
    background-color: #142e4d;
}

.home__activities .slide .item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 41, 74, 0);
    background: -moz-linear-gradient(top, rgba(13, 41, 74, 0) 0%, rgba(13, 41, 74, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(13, 41, 74, 0)), color-stop(100%, rgba(13, 41, 74, 1)));
    background: -webkit-linear-gradient(top, rgba(13, 41, 74, 0) 0%, rgba(13, 41, 74, 1) 100%);
    background: -o-linear-gradient(top, rgba(13, 41, 74, 0) 0%, rgba(13, 41, 74, 1) 100%);
    background: -ms-linear-gradient(top, rgba(13, 41, 74, 0) 0%, rgba(13, 41, 74, 1) 100%);
    background: linear-gradient(to bottom, rgba(13, 41, 74, 0) 0%, rgba(13, 41, 74, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0d294a', endColorstr='#0d294a', GradientType=0);
}

.home__activities .slide .item * {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.home__activities .slide .item h4 {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 20px 30px;
    font-family: var(--font1);
}

.home__activities .slide .item h4 .explore {
    font-family: bold;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    padding-top: 0px;
    position: relative;
    opacity: 0;
}

.home__activities .slide .item h4 .explore:after {
    content: '';
    width: 0px;
    height: 1px;
    position: absolute;
    left: 54px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.home__activities .slide .item:hover h4 {
    color: #caa45d;
}

.home__activities .slide .item:hover .explore {
    opacity: 1;
    padding-top: 20px;
}

.home__activities .slide .item:hover h4 .explore:after {
    width: 50px;
}

.home__admission {
    display: flex;
    margin-top: 10%;
    /* background-color: #0d294a; */
    background-color: var(--col1);
}

.home__admission .section1 {
    display: flex;
    width: 70%;
    flex-direction: column;
}

.home__admission .section1 img {}

.home__admission .section1 p {
    color: #fff;
    position: relative;
    padding: 10%;
    padding-right: 30%;
}

.home__admission .section1 p .btn,
.princple__intro .section2 .btn {
    position: absolute;
    right: -13%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    padding: 17px 50px 15px 50px;
    font-family: var(--font3);
    /* background-color: #9e7b45; */
    background-color: var(--col3);
}

.home__admission .section1 p .btn:hover {
    color: #0d294a;
    background-color: #fff;
}

.home__admission .section2 {
    display: flex;
    width: 30%;
    align-items: center;
    justify-content: center;
}

.home__admission .section2 .title {
    font-family: var(--font1);
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    padding: 0px 30px;
    text-align: center;
}

.princple__intro {
    display: flex;
    align-items: center;
}

.princple__intro .section1 {
    width: 30%;
}

.princple__intro .section1 .p__thumb {
    background-color: #fff;
    margin-left: 25%;
    width: 87%;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
}

.princple__intro .section2 {
    width: 70%;
    padding: 10% 0%;
    padding-left: 15%;
    padding-right: 15%;
}

.princple__intro .section2 .title {
    text-transform: uppercase;
    font-family: var(--font1);
    font-size: 35px;
    line-height: 50px;
    position: relative;
    top: 15px;
    margin-bottom: 10px;
    /* color: #0b284a; */
    color: var(--col1);
}

.princple__intro .section2 .title span {
    /* color: #9e7b45; */
    color: var(--col5);
}

.princple__intro .section2 p {
    padding-top: 6%;
}

.princple__intro .section2 .btn {
    position: static;
    margin-top: 15%;
}

.home__gallery {}

.home__gallery .row {
    margin: 0;
    display: flex;
}

.home__gallery .title {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #0d294a; */
    background-color: var(--col1);
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    font-family: var(--font1);
    position: relative;
}

.home__gallery .title:before {
    content: '';
    background-image: url(../img/lines1.svg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 350px;
    z-index: 0;
}

.home__gallery .title span {
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.home__gallery .lightbox {
    width: 25%;
    padding: 0;
    margin: 0;
    display: flex;
    position: relative;
}

.home__gallery .lightbox:after {
    content: '';
    background-image: url(../img/plus.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transform: translateX(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.home__gallery .lightbox * {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.home__gallery .lightbox:hover img {
    filter: brightness(60%);
}

.home__gallery .lightbox:hover:after {
    opacity: 1;
}

footer {
    /* background-color: #0d294a; */
    background-color: var(--col1);
    color: #fff;
    padding: 10%;
    background-image: url(../img/lines2.svg);
    background-size: 13%;
    background-repeat: no-repeat;
    background-position: right top;
}

footer h4 {
    font-family: var(--font1);
    color: #fff;
    text-transform: uppercase;
    font-size: 40px;
}

footer .apply__nav {
    display: flex;
    padding: 8% 0%;
}

footer .apply__nav a {
    border: solid 1px #9d7a45;
    color: #9e7b45;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0;
    padding: 10px 10px;
    display: block;
    margin-right: 4px;
    font-family: var(--font3);
    text-align: center;
}

footer .apply__nav a:hover {
    color: #fff;
    border: solid 1px #fff;
}

footer .address {}

footer .address h3 {
    margin-bottom: 20px;
    font-size: 17px;
    text-transform: uppercase;
    margin-top: 50px;
    /* color: #caa45d; */
    color: #FFF;
    font-weight: 600;
}

footer .address:first-child a {
    display: inline-block;
}

footer .address:first-child p {
    font-size: 14px;
}

footer .address a {
    display: block;
    /* color: #929da9; */
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}

footer .address a:hover {
    color: #fff;
}

footer .address p {
    /* color: #929da9; */
    color: #FFF;
    font-size: 13px;
    line-height: 30px;
}

footer .address p a {
    /* color: #9e7b45; */
    color: #FFF;
}

footer .address p a:hover {
    color: #fff;
}

footer .address .btn {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: solid 1px #ffffff;
    margin-top: 20px;
    font-size: 13px;
    padding: 6px 40px;
    padding-right: 15px;
    border-radius: 2px;
    background-image: url(../img/mapwhite.svg);
    background-position: 10% 50%;
    background-size: 15px;
    background-repeat: no-repeat;
}

footer .social-cover {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer .social-cover .copy {
    font-size: 13px;
}

footer .social {
    display: flex;
    margin-top: 7%;
}

footer .social a {
    width: 36px;
    height: 36px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff12;
    border-radius: 50px;
}

footer .social a img {
    width: 16px;
}

footer .social a:hover {
    background-color: #ffffff30;
}

.inbanner {
    position: relative;
    padding: 20% 10%;
    background-color: #0d294a;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inbanner h1 {
    font-family: var(--font1);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 45px;
    margin-bottom: 3%;
    letter-spacing: 4px;
}

.inbanner p {
    color: #ffffff;
    width: 50%;
}

.vm {}

.vm .part {
    display: flex;
}

.vm .part .flexcover {
    width: 60%;
    display: flex;
    position: relative;
}

.vm .part .thumb {
    font-family: var(--font1);
    font-size: 40px;
    color: #0d294a;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    animation: vmmove 7s infinite alternate;
}

@keyframes vmmove {
    from {
        background-position: center left;
    }

    to {
        background-position: center right;
    }
}

.vm .part .name {
    font-size: 16px;
    color: #fff;
    width: 180px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    letter-spacing: 3px;
    background-color: #0d294a;
    position: absolute;
    right: 0;
    top: 0;
    height: 180px;
    font-family: bold;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
}

.vm .part:nth-child(2) .name {
    background-color: #99753c;
    right: inherit;
    left: 0;
    border: 0;
}

.vm .part .name img {
    width: 60px;
    margin-bottom: 20px;
    padding: 10px;
}

.vm .part p {
    flex-direction: column;
    width: 60%;
    line-height: 25px;
}

.vm .part i {
    font-style: normal;
    font-family: var(--font1);
    font-size: 25px;
}

.vm .part p b {
    font-family: bold;
}

.vm .part p span {
    max-width: 80%;
    display: table;
    margin: 50px auto;
}

.vm .part h6 {
    margin-bottom: 20px;
    font-size: 20px;
    font-family: 'bold';
}

.aboutus {
    display: flex;
    position: relative;
}

.aboutus p {
    padding-bottom: 10px;
}

.aboutus .thumb {
    background-image: url(../img/aboutbg.jpg);
    position: absolute;
    right: 0%;
    width: 30%;
    height: 100%;
    top: 0;
    background-size: cover;
}

.aboutus p {}

.aboutus p b {}

.aboutus h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: bold;
    font-size: 17px;
    /* color: #99753c; */
    color: var(--col1);
    letter-spacing: 2px;
}

.aboutus h2 span {}

.aboutus .data1 {
    width: 30%;
}

.aboutus .data2 {
    width: 100%;
    padding: 8% 10%;
}

.sp-features {
    width: 100%;
    padding: 10%;
    padding-top: 0;
}

.sp-features h1 {
    text-transform: uppercase;
    font-family: var(--font1);
    margin-bottom: 40px;
    color: #0d294a;
    font-size: 36px;
    line-height: 50px;
}

.sp-features h1 span {
    color: #9b7841;
}

.sp-features .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sp-features .features .item {
    display: flex;
    position: relative;
    width: 48%;
    padding: 15px;
    /* background-color: #fff; */
    background-color: var(--col5);
    align-items: center;
    margin: 10px 0px;
    padding-left: 50px;
    /* box-shadow: 0 13px 27px -5px rgb(147 147 205 / 25%), 0 0px 5px -3px rgb(0 0 0 / 30%);
     border: solid 1px #e2eefd; */
    border-radius: 3px;
    color: #000;

}

.sp-features .features .item:before {
    content: '';
    background-image: url(../img/arrow-right.svg);
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 38%;
    background-position: center;
}

.sp-features .features .item:last-child {}

.msg {}

.msg .data {
    padding: 10%;
}

.msg .data:first-child {
    /* background-color: #fff9ef; */
    background-color: var(--col6);
}

.msg .data:first-child p {}

.msg .data:first-child h4 {}

.msg .data:first-child h4:before {}

.msg .data:last-child {
    position: relative;
}

.msg .data h3 {
    font-family: var(--font1);
    font-size: 40px;
    margin-bottom: 40px;
}

.msg .data p {}

.msg .data p.quote {
    line-height: 20px;
    margin-top: 15px;
}

.msg .data p i {
    font-family: 'bold';
    font-size: 30px;
    /* color: #9f7d47; */
    color: var(--col5);
}

.msg .data p b {
    font-family: var(--font1);
    font-size: 30px;
    /* color: #9f7d47; */
    color: var(--col5);
}

.msg .data h4 {
    text-transform: uppercase;
    font-family: 'bold';
    /* margin-top: 40px; */
    font-size: 13px;
    position: relative;
    padding-top: 40px;
}

.msg .data h4 span {
    /* color: #99753c; */
    color: var(--col1);
    display: block;
    font-size: 24px;
    padding-top: 5px;
}

/* .msg .data h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 1px;
    background-color: #0d294a;
} */

.insidemenu {
    display: flex;
    justify-content: space-between;
    background-color: white;
    position: fixed;
    top: 73px;
    z-index: 1;
    width: 80%;
    left: 20%;
    border-bottom: solid 1px #e2eaf3;
    padding: 0px 0px;
    -webkit-box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
    box-shadow: 0 4px 6px rgb(50 50 93 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
}

.insidemenu a {
    font-size: 14px;
    padding: 16px 0px;
    text-transform: uppercase;
    font-family: 'bold';
    letter-spacing: 1px;
    cursor: pointer;
    border-bottom: solid 2px #fff;
    flex: auto;
    text-align: center;
    margin-bottom: -1px;
}

.insidemenu a.active {
    color: #9f7d47;
    border-bottom: solid 2px #9f7d47;
}

.insidemenu a:hover {}

#scroll0,
#scroll1,
#scroll2,
#scroll3,
#scroll4,
#scroll5,
#scroll6 {
    scroll-margin-top: 88px;
}

.theschool .home-hide,
.academics .home-hide {
    display: none;
}

.academics {}

.academics .title {
    display: flex;
    background-color: #fff;
    position: sticky;
    top: 73px;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #e2eaf3;
    padding: 0px 0px;
    z-index: 1;
    padding-left: 10%;
}

.academics h1 {
    font-family: var(--font1);
    color: #ffffff;
    font-size: 40px;
}

.academics .navbar {
    margin: 0;
    padding: 0;
}

.academics .navbar .navbar-nav {
    display: flex;
    flex-direction: inherit;
}

.academics .navbar .nav-link {
    font-family: 'bold';
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    border-left: solid 1px #e2eaf3;
    padding: 24px 20px;
    border-bottom: solid 4px #fff;
    color: #0d294a;
}

.academics .navbar .nav-link.active {
    border-bottom: solid 4px #99753c;
    color: #99753c;
}

.academics #section1,
.academics #section2,
.academics #section3,
.academics #section4 {
    scroll-margin-top: 72px;
}

.admi #section1,
.admi #section2,
.admi #section3,
.admi #section4 {
    scroll-margin-top: 88px;
}

.academics .data {
    display: flex;
}

.academics .data .thumb {
    width: 50%;
    position: relative;
}

.academics .data .thumb .d-img {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 5%;
    width: 90%;
    top: 50%;
    transform: translateY(-50%);
    height: 75%;
}

.academics .data .text {
    width: 50%;
    padding: 7% 10%;
}

.academics .data h2 {
    margin-bottom: 20px;
    color: #0d294a;
    font-family: 'bold';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 24px;
}

.academics .data p {}

.mpd {
    margin-top: 73px;
}

.mpd h3 {
    background-color: #4a4d50;
    color: #ffffff;
    padding: 40px 0px 40px 0px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 17px;
    text-transform: uppercase;
}

.mpd .pdfcover {
    background-color: #4a4d50;
    padding: 10%;
    padding-top: 0;
}

.mpd .pdf {}

.mpd .pdf iframe {
    width: 100%;
    height: 975px;
}

.contact-banner {
    background-color: #0d294a;
    background-color: var(--col1);
    padding: 13% 70px;
    position: relative;
    background-image: url(../img/lines1.svg);
    background-repeat: no-repeat;
    background-position: 100% 0%;
    background-size: 46%;
}

.contact-banner .thumb {
    background-image: url(../img/contactbg.jpg);
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: left center;
    animation: vmmove 7s infinite alternate;
    clip-path: polygon(50% 0%, 100% 0, 100% 90%, 20% 90%, 20% 70%, 0 70%, 0 0);
}

.contact-banner h1 {
    color: #fff;
    font-family: var(--font1);
    letter-spacing: 5px;
    font-size: 50px;
    margin-bottom: 10px;
}

.contact-banner p {
    width: 40%;
    /* color: #748ca9; */
    color: #FFF;
}

.contact-address {
    background-color: #0d294a;
    position: relative;
    top: -1px;
}

.contact-address .data {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.contact-address .item {
    width: 33.3333333333%;
    padding: 10px 30px 50px 30px;
    padding-left: 70px;
}

.contact-address .item:nth-child(2) {}

.contact-address .item img {
    width: 25px;
    margin-bottom: 40px;
}

.contact-address .item h6 {
    font-family: 'bold';
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 16px;
}

.contact-address .item ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-address .item ul li {
    line-height: 32px;
    font-size: 14px;
    color: #748ca9;
}

.contact-address .item ul li b {}

.contact-address .item ul li a {
    font-size: 15px;
    color: #748ca9;
}

.contact-address .item ul li a:hover {
    color: #fff;
}

.contact-page-form {
    background-image: url(../img/pattern.webp);
    background-color: #0d294a;
}

.contact-page-form form {
    /* background-color: #e0eeff; */
    background-color: var(--col6);
    width: 100%;
    padding: 70px 70px;
}

.contact-page-form form h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #0d294a;
    font-size: 38px;
    font-family: var(--font1);
}

.contact-page-form form .form-control {
    border-radius: 0;
    border: 0;
    background: transparent;
    border-bottom: solid 1px #9cb4d5;
    padding: 25px 0px;
    font-size: 15px;
}

.contact-page-form form .form-control:focus {
    box-shadow: none;
}

.contact-page-form .btn {
    font-family: 'bold';
    text-transform: uppercase;
    border: solid 1px #0d294a;
    margin-top: 30px;
    border-radius: 0;
    background-color: white;
    color: #0d294a;
    letter-spacing: 2px;
    font-size: 12px;
    padding: 15px 65px;
}

.contact-page-form .btnnav {
    display: flex;
    justify-content: flex-end;
}

.contact-banner.career-banner {
    text-align: center;
    height: calc(100vh - 66px);
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    background-image: none;
}

.contact-banner.career-banner * {
    position: relative;
    z-index: 1;
}

.contact-banner.career-banner:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url(../img/career.svg);
    background-position: 50% 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    mix-blend-mode: revert;
    opacity: 0.2;
}

.contact-banner.career-banner p {
    width: auto;
    padding: 0px 20%;
    line-height: 30px;
    margin-bottom: 40px;
}

.contact-banner.career-banner:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url(../img/career.svg);
    background-position: 50% 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    mix-blend-mode: revert;
    opacity: 0.2;
}

.contact-banner.career-banner .connect {
    text-align: center;
}

.contact-banner.career-banner .connect h6 {
    margin-top: 50px;
    /* color: #caa45d; */
    color: var(--col5);
    margin-bottom: 20px;
    /* font-size: 14px; */
    font-size: 16px;
    font-weight: bold;

}

.contact-banner.career-banner .connect .links {
    display: flex;
}

.contact-banner.career-banner .connect .links a {
    color: #fff;
    border: solid 1px #ffffff26;
    padding: 12px 20px;
    border-radius: 2px;
    margin: 0px 5px;
    /* width: 50%; */
    letter-spacing: 1px;
    font-family: 'bold';
}

.contact-banner.career-banner .connect .links a:hover {
    color: #caa45d;
    border: solid 1px #caa45d;
}

.contact-banner.career-banner.exam-banner {
    height: auto;
    padding: 5% 0%;
    margin-top: 73px;
    display: block;
    margin-bottom: -1px;
}

.contact-banner.career-banner.exam-banner:before {
    display: none
}

.contact-banner.career-banner.exam-banner h2 {
    text-transform: uppercase;
    color: #e0eeff;
    letter-spacing: 2px;
    font-size: 20px;
    font-family: var(--font1);
}

.examdata {
    padding: 5% 6%;
    background-color: #fff;
    border-left: solid 1px #e0eeff;
}

.examdata .cover {}

.examdata .btnnav {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.examdata .btnnav .btn {
    text-transform: uppercase;
    font-family: 'bold';
    font-size: 15px;
    letter-spacing: 0px;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #0d294a;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
    border-radius: 4px;
}

.examdata .btnnav .btn img {
    width: 23px;
    margin-left: 15px;
    margin-top: -7px;
}

.examdata .btnnav .btn:hover {
    background-color: #14355a;
}

.examdata table {
    border-top: 0;
    border-color: #dee2e6;
    margin: 0;
    background-color: #FFF;
}

.examdata table .head {
    border-top: 0;
}

.examdata table .head td {
    text-transform: uppercase;
    font-family: 'bold';
    /* color: #caa45d; */
    color: var(--col1);
    font-size: 15px;
    background-color: #fff6;
}

.examdata table td {
    color: #425466;
    padding: 7px 12px;
}

.examdata table td:first-child {}

.examdata .title {
    /* background-color: #ecf5ff; */
    background-color: var(--col5);
    color: #000;
    text-transform: uppercase;
    font-family: 'bold';
    text-align: center;
    font-size: 21px;
    letter-spacing: 1px;
    padding: 14px 0px 12px 0px;
    font-family: 'bold';
}

.examdata tr.last {}

.examdata tr.last td {}

.gmap {
    overflow: hidden;
}

.gmap iframe {
    height: 450px;
    margin-bottom: -7px;
}


.linear-wipe {
    /* background: linear-gradient(to right, #caa45d 20%, #fff 40%, #fff 60%, #caa45d 80%); */
    background: linear-gradient(to right, var(--col3) 20%, #fff 40%, #fff 60%, var(--col3));
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;

}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.linear-wipe2 {
    /* background: linear-gradient(to right, #caa45d 20%, #0d294a 40%, #0d294a 60%, #caa45d 80%); */
    background: linear-gradient(to right, var(--col3) 20%, var(--col1) 40%, var(--col1) 60%, var(--col3) 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine2 {
    to {
        background-position: 200% center;
    }
}

.new-vm {
    /* background-color: #0d2849; */
    background-color: var(--col1);
    background-image: url(../img/lines1.svg);
    background-size: 500px;
}

.new-vm .part {
    display: flex;
    padding: 0% 0%;
}

.new-vm .part .data {
    width: 55%;
    padding: 7% 10%;
    padding-right: 50px;
    /* background-color: #0d2849; */
    background-color: var(--col1);
}

.new-vm .part .data h2 {
    font-family: var(--font1);
    font-size: 36px;
    color: #0d294a;
    margin-bottom: 30px;
}

.new-vm .part .thumb {
    width: 45%;
    overflow: hidden;
    background-position: left center;
    background-size: cover;
    position: relative;
    animation: vmmove 7s infinite alternate;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.new-vm .part .thumb:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.new-vm .part .thumb:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.new-vm .part:nth-child(1) .thumb {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 30% 100%, 30% 50%, 0 50%);
}

.new-vm .part:nth-child(2) .thumb {
    clip-path: polygon(70% 0, 70% 35%, 100% 35%, 100% 100%, 0 100%, 0% 60%, 0 0);
}

.new-vm .part:nth-child(3) .thumb {
    clip-path: polygon(30% 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 24%, 30% 24%);
}

.new-vm .part .thumb img {
    opacity: 0;
}

.new-vm .part p {
    /* color: #748ca9; */
    color: #FFF;
}

.new-vm .part.part1 {}

.new-vm .part.part2 {}

.new-vm .part.part3 {}

.galmenu {
    /* background-color: #e0eeff; */
    background-color: var(--col6);
    padding: 7% 30px 7% 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 78%;
    top: 88px;
    z-index: 1;
    right: 0;
    border-left: solid 1px #e0eeff;
}

.galmenu.moving {
    padding: 15px 30px 15px 4.3%;
    background-image: none;

}

.galmenu.moving .title {
    font-size: 24px;
}

.galmenu.moving ul.filter {
    top: 102px;
}

.galmenu .title {
    font-family: var(--font1);
    font-size: 45px;
    text-transform: uppercase;
}

.galmenu ul.filter {
    flex-direction: column;
    position: fixed;
    width: 29.5%;
    padding-top: 40px;
    z-index: 1;
    overflow: hidden;
    max-height: 40px;
    left: calc(70.5% - 30px);
    top: 27%;
    background-color: #0D294E;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
}

.galmenu ul.filter * {
    -webkit-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
}

.galmenu ul.filter.explore {
    overflow: visible;
    max-height: none;
}

.galmenu ul.filter:after {
    content: '';
    position: absolute;
    right: 12px;
    top: 20px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-image: url(../img/down-white.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.galmenu ul.filter.explore:after {
    background-color: #e0eeff;
    height: 2px;
    top: 21px;
    background-image: none;
}

.galmenu ul.filter.nav-pills .nav-link {
    border-radius: 0;
    height: 40px;
    line-height: 40px;
    padding: 0px 15px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'bold';
    font-size: 12px;
    letter-spacing: 1px;
}

.galmenu ul.filter.nav-pills .nav-link:hover {
    background-color: #0d294a;
    color: #dbc190;
}

.galmenu ul.filter.nav-pills .nav-link.active {
    background-color: #0d294a;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #ffffff;
}

.tab-content {
    background-color: #e0eeff;
    padding-top: 258px;
}

.tab-pane .tz-gallery {}

.tab-pane .tz-gallery .row {
    margin: 0;
    padding: 0px 0px;
}

.tab-pane .tz-gallery .row .lightbox {
    width: 20%;
    overflow: hidden;
    display: block;
    margin-bottom: 0px;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 210px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #0c2645;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    animation: lightmove 2s forwards;
}

@keyframes lightmove {
    from {
        transform: scale(5);
        opacity: 0.5;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.tab-pane .tz-gallery .row .lightbox:hover {
    filter: brightness(50%);
}

.tab-pane .tz-gallery .row .lightbox img {
    opacity: 0;
}

.tab-pane .title {
    color: red;
    position: fixed;
    top: 0;
    left: 22%;
    z-index: 75;
    border: solid 1px red;
    opacity: 1;
    font-size: 50px;
}

.ac {
    /* background-color: #0d294a; */
    background-color: var(--col1);
    display: flex;

}

.ac .data {
    width: 50%;
    flex-direction: column;
    padding: 10%;
    padding-right: 0%;
}

.ac .data h1 {
    font-family: var(--font1);
    color: #ffffff;
    font-size: 40px;
}

.ac .data p {
    padding-top: 20px;
    /* color: #748ca9; */
    color: #FFF;
}

.ac .data .btn {
    background-color: #99753c;
    background-color: var(--col5);
    border: 0;
    padding: 13px 0px;
    text-transform: uppercase;
    font-family: 'bold';
    letter-spacing: 1px;
    font-size: 15px;
    border-radius: 4px;
    margin-top: 50px;
    color: #000000;
}

.ac .data .btn:hover {
    background-color: #af884a;
}

.ac .graphics {
    width: 50%;
    display: flex;
    align-items: center;
    place-content: center;
}

.ac .graphics .item {
    width: 60%;
    height: 57%;
    background-image: url(../img/ac.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 6px;
    border: solid 1px #3c6da7;
    position: relative;
    animation: vert-move 5s infinite alternate;
}

@keyframes vert-move {
    from {
        background-position: center top;
    }

    to {
        background-position: center bottom;
    }
}

.ac .graphics .item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: solid 10px #0d294a;
    border-radius: 5px;
}

.contactpage #section1,
.contactpage #section2,
.contactpage #section3 {
    scroll-margin-top: 88px;
}

.adm-banner {
    background-color: #0d294a;
    background-color: var(--col1);
    margin-top: 75px;
}

.adm-banner .warper {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0px;
}

.adm-banner .warper:nth-child(2),
.adm-banner .warper:nth-child(4) {
    /* background-color: #c9e9f6; */
    background-color: var(--col6);
}

.adm-banner .item {
    width: 50%;
    padding: 0px 10%;
}

.adm-banner .item.fullwidth {
    width: 100%;
    padding: 0% 10%;
}

.adm-banner .item img {
    width: 50px;
    margin-bottom: 30px;
}

.adm-banner h5 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 40px;
    font-family: var(--font1);
    text-transform: uppercase;
}

.adm-banner p {
    /* color: #748ca9; */
    color: #FFF;
    margin-bottom: 30px;
}

.adm-banner .customtable {
    display: flex;
    border: solid 1px #233c581a;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;

}

.adm-banner .customtable .data1 {
    width: 85%;
}

.adm-banner .customtable .data1 .tr {
    display: flex;
    justify-content: space-between;
}

.adm-banner .customtable .data1 .tr:first-child {
    border-bottom: solid 1px #c9e9f66b;
}

.adm-banner .customtable .data1 .tr .td {
    text-align: center;
    border-right: solid 1px #c9e9f66b;
    flex: 1;
    color: #a97b24;
    padding: 20px 0px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.adm-banner .customtable .data1 .tr:last-child .td {
    font-size: 22px;
    background-color: #ffffff05;
    color: #5d646c;
}

.adm-banner .customtable .data1 .tr:last-child .td:first-child {
    font-size: 14px;
    color: #b8924a;
}

.adm-banner .customtable .data2 {
    display: flex;
    place-content: center;
    width: 15%;
    text-align: center;
    align-items: center;
    color: #0d294a;
    text-transform: uppercase;
    font-size: 13px;
}

.adm-banner .pro {}

.adm-banner .pro p {
    position: relative;
    margin-left: 70px;
    padding-bottom: 25px;
    padding-top: 25px;
    margin-bottom: 0;
}

.adm-banner .pro p .icon {
    position: absolute;
    left: -9%;
    top: 21px;
    width: 34px;
    height: 34px;
    background-color: #0d294a;
    border-radius: 50px;
    border: solid 1px #ffffff1a;
}

.adm-banner .pro p .icon:after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #caa45d;
    position: absolute;
    border-radius: 50px;
    left: 43%;
    top: 42%;
}

.adm-cover {
    padding-bottom: 100px;
}

.adm-btn {
    background-color: #0d294a;
    color: #fff;
    border-radius: 7px;
    text-transform: uppercase;
    padding: 20px 100px;
    display: table;
    margin: 0px auto;
    font-family: 'bold';
    letter-spacing: 1px;
    font-size: 12px;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
    border: solid 1px #99753c;
}

.adm-btn:hover {
    color: #fff;
    background-color: #193d66;
}

.onlinefee {
    background-color: #c9e9f6;
    background-color: var(--col6);
}

.onlinefee h5 {
    margin-bottom: 50px;
}

.onlinefee .databox {
    display: flex;
    align-items: center;
    background-color: #ffffffd9;
    border-radius: 10px;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
}

.onlinefee .data {
    width: 50%;
}

.onlinefee .data:first-child {
    padding-left: 50px;
}

.onlinefee .data h4 {
    text-transform: uppercase;
    font-family: 'bold';
    font-size: 15px;
    letter-spacing: 1px;
}

.onlinefee .data h3 {
    font-size: 18px;
    margin-top: 9px;
}

.onlinefee .atm {
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
    border: solid 1px #ffffff73;
    width: 70%;
    height: 180px;
    margin: 0px auto;
    border-radius: 10px;
    background-color: #0d294a;
    display: flex;
    place-content: center;
    align-items: center;
    background: rgba(13, 41, 74, 1);
    background: -moz-linear-gradient(-45deg, rgba(13, 41, 74, 1) 0%, rgba(33, 75, 122, 1) 50%, rgba(0, 55, 117, 1) 51%, rgba(12, 59, 112, 1) 71%, rgba(13, 41, 74, 1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(13, 41, 74, 1)), color-stop(50%, rgba(33, 75, 122, 1)), color-stop(51%, rgba(0, 55, 117, 1)), color-stop(71%, rgba(12, 59, 112, 1)), color-stop(100%, rgba(13, 41, 74, 1)));
    background: -webkit-linear-gradient(-45deg, rgba(13, 41, 74, 1) 0%, rgba(33, 75, 122, 1) 50%, rgba(0, 55, 117, 1) 51%, rgba(12, 59, 112, 1) 71%, rgba(13, 41, 74, 1) 100%);
    background: -o-linear-gradient(-45deg, rgba(13, 41, 74, 1) 0%, rgba(33, 75, 122, 1) 50%, rgba(0, 55, 117, 1) 51%, rgba(12, 59, 112, 1) 71%, rgba(13, 41, 74, 1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(13, 41, 74, 1) 0%, rgba(33, 75, 122, 1) 50%, rgba(0, 55, 117, 1) 51%, rgba(12, 59, 112, 1) 71%, rgba(13, 41, 74, 1) 100%);
    background: linear-gradient(135deg, rgba(13, 41, 74, 1) 0%, rgba(33, 75, 122, 1) 50%, rgba(0, 55, 117, 1) 51%, rgba(12, 59, 112, 1) 71%, rgba(13, 41, 74, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0d294a', endColorstr='#0d294a', GradientType=1);
}

.onlinefee .atm img {
    margin: 0;
    width: 150px;
}

.cca {}

.cca .ban {
    padding: 10% 10%;
    position: relative;
    background-image: url(../img/ccabg.png);
    background-position: center bottom;
    background-size: 100%;
}

.cca .ban h1 {
    font-family: var(--font1);
    text-transform: uppercase;
    font-size: 28px;
}

.cca .cover {
    padding: 0% 10%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.cca .row {
    justify-content: space-between;
    padding-bottom: 50px;
}

.cca .row .item {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cca .row .item h5 {
    color: #0d294a;
    font-family: 'bold';
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
}

.cca .row .item p {}

.cca .row .item .thumb {
    position: relative;
}

.cca .row .item .thumb:before {
    content: '';
    background-color: white;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 100%;
    animation: beforemove 3s infinite alternate;
    margin: 0;
    filter: blur(100px);
    border: solid 1px #fff;
}

.cca .row .item .thumb:after {
    content: '';
    background-color: #ffffffdb;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 100%;
    animation: beforemove 3s infinite alternate;
    margin: 0;
}

@keyframes beforemove {
    from {
        width: 110%;
        top: -30px;
    }

    to {
        width: 110%;
        left: 0%;
    }
}

.cca .row .item .thumb1:before {
    background-color: #1cb496;
}

.cca .row .item .thumb2:before {
    background-color: #e24a3b;
}

.cca .row .item .thumb3:before {
    background-color: #9655af;
}

.cca .row .item .thumb4:before {
    background-color: #f0b232;
}

.cca .row .item .thumb5:before {
    background-color: #526bdf;
}

.cca .row .item .thumb6:before {
    background-color: #3cbbcc;
}

.cca .row .item .thumb img {
    border-radius: 10px;
    z-index: 2;
    position: relative;
    border-radius: 100%;
    animation: imgmove 3s infinite alternate;
    box-shadow: 0 40px 81px -16px rgb(50 50 93 / 25%), 0 24px 48px -24px rgb(0 0 0 / 30%);
}

@keyframes imgmove {
    from {
        margin-top: 0px;
    }

    to {
        margin-left: 30px;
    }
}

a.made {
    text-transform: capitalize;
    /* color: #91a4bb; */
    color: #FFF;
    font-size: 12px;
}

a.made:hover {
    color: #fff;
}

.paymentinfo {
    text-align: center;
    display: block;
    background-color: #ffecd9;
    width: 80%;
    margin: 0px auto;
    margin-top: 5%;
    border-radius: 10px;
    padding: 20px 10px;
    font-size: 15px;
    color: #8b5927;
}

.paymentinfo a {
    color: #0d294a;
}

.crew {
    /* background-color: #fff9ef; */
    background-color: var(--col6);
    padding: 10%;
}

.crew h3 {
    font-family: var(--font1);
    font-size: 40px;
    margin-bottom: 50px;
}

.crew .data {
    display: flex;
    flex-wrap: wrap;
}

.crew .data .item {
    background-color: #fff;
    text-align: center;
    padding: 20px;
    width: 33.3333333333%;
    margin-bottom: 30px;
    border: solid 1px #fff9ef;
}

.crew .data.four .item {
    width: 25%;
}



.crew .data .item .thumb {
    width: 50px;
    margin-bottom: 10px;
}

.crew .data .item p {
    font-family: 'bold';
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 18px;
    margin-bottom: 2px;
}

.crew .data .item h6 {
    font-size: 14px;
    /* color: #95763d; */
    color: var(--col2);
}

.crew .subtitle {
    text-transform: uppercase;
    font-family: 'bold';
    font-size: 17px;
    margin-top: 90px;
    padding: 15px 0px 12px 0px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.footerbox {
    display: flex;
    justify-content: space-between;
}

.circulars-wraper {
    padding: 7% 10%;
}

.circulars-wraper .item {
    background-color: #fff;
    display: block;
    text-align: center;
    border-radius: 5px;
    padding-bottom: 30px;
    padding: 20px;
    margin: 10px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.circulars-wraper .item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.25);
}

.circulars-wraper .item h6 {
    color: #0d294a;
    font-size: 15px;
    padding-bottom: 20px;
    font-family: 'Segoe UI', " -apple-system", BlinkMacSystemFont, "Roboto", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight: 500;
}

.circulars-wraper .item img {
    width: 44px;
    margin-bottom: 25px;
    margin-top: 25px;
}


@media only screen and (max-width: 1200px) {
    header .top-nav a.btn {
        padding: 14px 10px;
    }
}

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

    .circulars-wraper .item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .circulars-wraper .item img {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .circulars-wraper {
        padding: 20px;
        padding-bottom: 10px;
    }

    .footerbox {
        flex-direction: column;
    }

    .crew .subtitle {
        margin-top: 30px;
        text-align: center;
    }

    .crew h3 {
        font-size: 30px;
        margin-bottom: 40px;
        text-align: center;
    }

    .crew {
        background-color: #fff9ef;
        padding: 50px 20px;
    }

    .crew .data {
        justify-content: space-between;
    }

    .crew .data .item,
    .crew .data.four .item {
        width: 48%;
        margin-bottom: 15px;
    }


    .paymentinfo {
        width: 91%;
        padding: 5%;
        font-size: 16px;
        margin-top: 10%;
    }

    footer .address .btn {
        margin-bottom: 30px;
    }

    a.made {
        margin-top: 20px;
        display: table;
    }

    .left-navbar a.mobbtn {
        color: #fff;
        background-color: #1d3756;
        margin: 10px auto;
        width: 90%;
        text-transform: uppercase;
        font-size: 12px;
        padding: 13px 0px;
        letter-spacing: 1px;
    }

    .cca .cover {
        padding: 0% 20px;
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .cca .row .item .thumb {
        width: 90%;
        margin: 0px auto;
        margin-bottom: 40px;
    }

    .cca .row.rowreverse {
        flex-direction: column-reverse;
    }

    .cca .row .item .thumb:after {
        top: 9px;
        left: -16px;
        width: 110%;
        height: 100%;
    }

    .cca .row .item .thumb:before {
        animation: none;
    }

    .cca .row .item .thumb:after {
        animation: none;
    }

    .cca .row .item .thumb img {
        animation: none;
    }

    .cca .ban {
        margin-top: 30px;
        padding: 10% 20px;
        padding-top: 100px;
        background-repeat: no-repeat;
    }

    .cca .ban:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 50%;
        background-color: #0d2b4a;
        z-index: -1;
    }

    .cca .row .item {
        width: 100%;
    }

    .cca .row {
        flex-wrap: wrap;
    }

    .cca .ban h1 {
        font-size: 29px;
        position: relative;
        top: -55px;

    }

    .adm-cover {
        padding: 50px 0px;
        background-color: #ffffff7a;
    }

    .onlinefee .atm {
        width: 70%;
        height: 120px;
        position: relative;
        top: 5px;
    }

    .onlinefee .atm img {
        margin: 0 !important;
        width: 130px !important;
    }

    .onlinefee .data:first-child {
        padding: 20px;
    }

    .onlinefee .data {
        width: 100%;
    }

    .onlinefee .data h3 {
        font-size: 15px;
    }

    .onlinefee .databox {
        flex-wrap: wrap;
    }

    .adm-banner .pro p .icon {
        left: -14%;
        top: 20px;
        width: 30px;
        height: 30px;
    }

    .adm-banner .pro p {
        margin-left: 40px;
        padding-bottom: 20px;
        padding-top: 20px;
        margin-bottom: 0;
        font-size: 14px;
    }

    .adm-banner .customtable .data1 .tr:last-child .td {
        font-size: 14px;
        font-family: 'bold';
    }

    .adm-banner .customtable .data1 .tr .td {
        font-size: 12px;
    }

    .adm-banner .customtable .data2 {
        width: 100%;
        border-top: solid 1px #ccc;
        padding: 20px 0px;
        color: #666;
    }

    .adm-banner .customtable .data1 {
        width: 100%;
    }

    .adm-banner .customtable {
        flex-wrap: wrap;
    }

    .adm-banner .item.fullwidth {
        padding: 0% 20px;
    }

    .adm-banner {
        margin-top: 119px;
        margin-bottom: -1px;
    }

    .adm-banner .warper {
        padding: 50px 0px;
    }

    .adm-banner .item {
        width: 100%;
        padding: 0px 20px;
    }

    .adm-banner h5 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .adm-banner .item img {
        width: 40px;
        margin-bottom: 20px;
    }

    .tab-pane .tz-gallery .row .lightbox {
        width: 33.3333333333%;
        height: 100px;
    }

    .ac {
        flex-direction: column-reverse;
        padding: 50px 20px;
    }

    .ac .graphics .item {
        width: 100%;
        height: 200px;
    }

    .academics .ac .data {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .ac .data h1 {
        font-size: 22px;
    }

    .ac .graphics {
        width: 100%;
        margin-bottom: 20px;
    }

    .ac .data .btn {
        padding: 13px 0px;
        font-size: 13px;
        margin-top: 15px;
    }

    .mpd {
        margin-top: 99px;
    }

    .left-navbar:before {
        display: none;
    }

    header .logo a:after {
        bottom: -36px;
        left: 0;
        min-width: 280px;
        top: inherit;
        transform: none;
        font-size: 11px;
        max-width: 290px;
    }

    .mainbanner {
        height: auto;
        min-height: 90vh;
    }

    .mainbanner .news {}

    .mainbanner .news .head {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0;
        padding-top: 15px;
        font-size: 16px;
        padding-bottom: 10px;
    }

    .mainbanner .news .data {
        width: 100%;
    }

    .mainbanner .news .data a {
        padding: 0px 20px 20px 20px;
        font-size: 14px;
        position: relative;
    }

    .mainbanner .news .data a:before {
        top: 39%;
        background-color: #ffffff;
    }

    .mainbanner .news .data a:hover {
        color: #ffe1b2;
    }

    .examdata .title {
        font-size: 16px;
        letter-spacing: 0px;
        padding: 7px 0px 5px 0px;
    }

    .examdata table td {
        padding: 5px 12px;
        font-size: 14px;
    }

    .examdata table .head td {
        font-size: 12px;
    }

    .examdata {
        padding: 0;
        border-left: 0;
    }

    .contact-banner.career-banner.exam-banner h2 {
        font-size: 14px;
    }

    .contact-banner.career-banner.exam-banner {
        padding: 50px 0% 30px 0px;
        margin-top: 30px;
    }

    .examdata .btnnav {
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .examdata .btnnav .btn {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .galmenu {
        top: 82px;
        width: 100%;
        background-color: #ddeafc;
        padding: 0;
        overflow-x: hidden;
    }

    .galmenu .title {
        display: none;
    }

    .galmenu ul.filter {
        width: 100vw;
        left: 0;
        top: 130px;
    }

    .galmenu ul.filter.nav-pills .nav-link {
        font-size: 13px;
    }

    .galmenu.moving ul.filter {
        top: 130px;
    }

    .tab-content {
        margin-top: 34px;
        padding-top: 38px;
    }

    .contact-banner.career-banner {
        height: calc(100vh - 111px);
    }

    .contact-banner.career-banner p {
        font-size: 14px;
        padding: 0px 0%;
        line-height: 24px;
        margin-bottom: 0px;
    }

    .contact-page-form form {
        padding: 50px 20px;
    }

    .contact-banner.career-banner:before {
        background-size: 700px;
    }

    .contact-banner.career-banner .connect {
        width: 100%;
    }

    .contact-banner.career-banner .connect .links {
        display: block;
    }

    .contact-banner.career-banner .connect .links a {
        width: auto;
        display: block;
        margin-bottom: 10px;
        padding: 10px 20px;
        font-size: 13px;
    }

    footer .address p {
        font-size: 15px;
    }

    .contact-banner .thumb {
        position: static;
        height: 160px;
        clip-path: none;
        width: 100%;
        margin-bottom: 40px;
    }

    .new-vm .part {
        flex-wrap: wrap;
    }

    .new-vm .part {
        flex-direction: column-reverse;
    }

    .new-vm .part:nth-child(2) {
        flex-direction: column;
    }

    .new-vm .part .data {
        width: 100%;
        padding: 40px 20px;
    }

    .new-vm .part .thumb {
        width: 100%;
        clip-path: none !important;
    }

    .contact-banner h1 {
        font-size: 30px;
        padding: 0px 20px;
    }

    .contact-banner p {
        font-size: 15px;
        width: 100%;
        padding: 0px 20px;
    }

    .contact-banner {
        padding: 0;
    }

    .contact-address .data {
        flex-direction: column;
    }

    .contact-address .item {
        width: 100%;
        border-bottom: solid 1px #254062;
        padding: 40px 20px 30px 20px;
    }

    .contact-address .item h6 {
        margin-bottom: 20px;
    }

    .contact-address .item:last-child {
        border-bottom: 0;
    }

    .contact-address .item img {
        width: 30px;
        margin-bottom: 20px;
    }

    .contact-address .item ul li {
        font-size: 13px;
    }

    .contact-page-form .btn {
        padding: 15px 20px;
        width: 100%;
    }

    .insidemenu {
        display: none;
    }

    .cardo,
    .cardo2,
    .cardo3,
    .cardo4,
    .cardo5 {
        -webkit-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
        transform: none !important;
    }

    header:before,
    header:after {
        display: none;
    }

    header .logo a {
        width: 140px;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    header .logo.small a {}

    header .top-nav a {
        display: none;
    }

    header .top-nav a.btn {
        padding: 10px 10px;
    }

    .content__ {
        padding-top: 11px;
        padding-left: 0;
    }

    header {
        padding: 11px 0px 40px 0px;
    }

    header .top-nav {
        padding: 16px 20px;
        width: auto;
    }

    header .logo {
        width: auto;
        padding: 0px 20px;
    }

    p {
        line-height: 25px;
    }

    .mainbanner h1 {
        font-size: 50px;
        top: inherit;
        bottom: 15%;
        padding-left: 7.5%;
    }

    .mainbanner video {
        width: auto;
        max-height: 90vh;
        position: absolute;
        right: 0%;
        margin-bottom: -7px;
        min-height: 90vh;
        top: 0;
    }

    .home__about {
        background-image: none;
    }

    .home__about .content-intro {
        padding: 90px 20px;
    }

    .home__about .content-intro p {
        font-size: 20px;
        padding-top: 10%;
        max-width: 100%;
    }

    .home__about .content-intro h2 {
        font-size: 38px;
    }

    .home-school-filter {
        width: 100%;
        border: 0;
        flex-wrap: wrap;
    }

    .home-school-filter .item {
        width: 100%;
    }

    .home-school-filter .item h3 {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: solid 4px white;
    }

    .home-school-filter .item img {
        margin-top: -25%;
    }

    .demonstrate-banner h4 {
        font-size: 35px;
    }

    .demonstrate-banner p {
        max-width: 100%;
    }

    .demonstrate-banner {
        padding: 30% 20px;
        margin-top: 0%;
    }

    .home__activities {
        display: block;
        margin-top: 0;
    }

    .home__activities .title {
        width: 100%;
        padding: 25px 0px;
    }

    .home__activities .slide {
        width: 100%;
        border-left: solid 0px #f4f9ff;
    }

    .home__admission {
        margin-top: 0;
        flex-direction: column-reverse;
        padding: 12% 0%;
    }

    .home__admission .section1 {
        width: 100%;
    }

    .home__admission .section1 p .btn {
        position: static;
        margin-top: 20px;
        transform: none;
        display: table;
    }

    .home__admission .section1 p {
        padding: 7% 20px;
    }

    .home__admission .section2 {
        display: block;
        width: 100%;
        text-align: left;
        padding-bottom: 40px;
    }

    .home__admission .section2 .title {
        font-size: 28px;
        padding: 0px 20px;
        text-align: left;
    }

    .home__activities .owl-carousel .owl-dot,
    .home__activities .owl-carousel .owl-nav .owl-next,
    .home__activities .owl-carousel .owl-nav .owl-prev {
        border: solid 1px #0d294a;
        border-right: 0;
    }

    .princple__intro {
        flex-direction: column;
        padding-top: 0;
    }

    .princple__intro .section1 {
        background-size: 200px;
        width: 100%;
        background-image: url(../img/lines2.svg);
    }

    .princple__intro .section2 {
        width: 100%;
        padding: 3% 20px 10% 20px;
    }

    .princple__intro .section1 .p__thumb {
        margin-left: 20px;
        width: 60%;
        margin-top: 70px;
    }

    .princple__intro .section2 .title {
        font-size: 38px;
    }

    .princple__intro .section2 p {
        padding-top: 7%;
    }

    .home__gallery .row {
        flex-wrap: wrap;
    }

    .home__gallery .title {
        width: 100%;
        font-size: 20px;
        padding: 30px 0px;
    }

    .home__gallery .lightbox:last-child {
        display: none;
    }

    .home__gallery .lightbox {
        width: 33.3333333333%;
    }

    footer {
        padding: 20% 20px;
        background-size: 100px;
    }

    footer h4 {
        font-size: 30px;
    }

    footer .apply__nav {
        justify-content: space-between;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    footer .apply__nav a {
        padding: 4px 5px;
        width: 32%;
        text-align: center;
        margin-top: 5px;
    }

    footer .address {
        margin-top: 0px;
    }

    footer .address h3 {
        margin-bottom: 20px;
        margin-top: 30px;
    }

    footer .social-cover {
        display: block;
        margin-top: 20px;
    }

    footer .social {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    footer .social-cover .copy {
        font-size: 14px;
        opacity: 0.7;
    }

    .trigger {
        width: 50px;
        height: 50px;
        margin-right: 20px;
        padding: 3px;
        position: relative;
    }

    .trigger img {}

    .trigger.trigger-close:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/close.svg);
        background-position: center;
        background-size: 75%;
        background-color: #fff;
        background-repeat: no-repeat;
        animation: closemove 0.6s forwards;
    }

    @keyframes closemove {
        from {
            transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
        }

        to {
            transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
        }
    }

    .left-navbar {
        width: 100%;
        left: inherit;
        top: 65px;
        height: 100%;
        right: -100%;
        z-index: 10;
        opacity: 0;
        height: calc(100vh - 66px);
        padding-top: 5%;
        -webkit-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
        overflow: scroll;
        padding-bottom: 50px;
    }

    .left-navbar a {
        font-size: 14px;
        padding: 9px 30px;
    }

    .left-navbar.left-navbar-active {
        right: 0%;
        opacity: 1;
    }

    .left-navbar .social {
        display: none;
    }

    .left-navbar .social a {
        width: 38px;
        height: 38px;
        border: solid 1px #bfbfbf;
        border-radius: 20px;
    }

    .callus {
        position: fixed;
        left: 0;
        top: 100px;
        z-index: 9;
        /* background-color: #9e7b45; */
        background-color: var(--col1);
        color: #fff;
        width: 100vw;
        padding: 4px 20px;
        border: 0;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .callus span {}

    .book {
        font-family: bold;
        color: #fff;
        display: block;
        font-size: 12px;
        background-color: #0d294a;
        letter-spacing: 2px;
        border-radius: 4px;
        padding: 16px 20px;
        text-align: center;
        margin-top: 20px;
    }

    .inbanner {
        height: 90vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0px 20px;
        padding-bottom: 30%;
        margin-top: 0;
    }

    .inbanner p {
        width: auto;
        font-size: inherit;
    }

    .inbanner h1 {
        font-size: 34px;
    }

    .aboutus {
        display: block;
    }

    .aboutus .thumb {
        display: none;
    }

    .aboutus .data2 {
        width: 100%;
        padding: 50px 20px 30px 20px;
    }

    .vm .part {
        flex-direction: column;
    }

    .vm .part .name {
        position: static;
        border: 0;
        width: 100%;
        height: auto;
        display: block;
        text-align: left;
        padding: 10px 20px 6px 20px;
    }

    .vm .part:nth-child(2) .name {
        border: 0;
    }

    .vm .part .flexcover {
        width: 100%;
        flex-wrap: wrap;
    }

    .vm .part p span {
        max-width: 100%;
        margin: 30px auto;
    }

    .vm .part p {
        width: 100%;
        padding: 0px 20px;
    }

    .vm .part .thumb {
        width: 100%;
        height: 152px;
    }

    .vm .part:nth-child(2) {
        flex-direction: column-reverse;
    }

    .vm .part:nth-child(1) .flexcover {
        flex-direction: column-reverse;
    }

    .vm .part .name img {
        margin-bottom: 0px;
        margin-right: 10px;
        width: 50px;
    }

    .sp-features {
        background-image: none;
        padding: 0px 20px 30px 20px;
    }

    .sp-features .features {
        width: 100%;
        padding: 20px 0px;
    }

    .sp-features h1 {
        margin-bottom: 0px;
        font-size: 24px;
        line-height: 40px;
    }

    .msg .data h3 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .sp-features .features .item {
        width: 100%;
        margin: 3px 0px;
        font-size: 15px;
    }

    .msg .data {
        padding: 50px 20px;
    }

    .msg .data p b {
        font-size: 20px;
    }

    .msg .data p i {
        font-size: 20px;
    }

    .msg .data h4 span {
        font-size: 20px;
    }

    .left-navbar .link {
        padding: 9px 30px;
        position: relative;
    }

    .left-navbar .link:after {}

    .left-navbar .link.menuhead {}

    .left-navbar .link.menuhead.active {
        border-color: white;
    }

    .left-navbar .link.menuhead.active:after {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        background-image: url(../img/trans-arrow2.svg);
    }

    .left-navbar .collapse {}

    .left-navbar .collapse a {
        font-size: 15px;
    }

    .left-navbar .collapse * {
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .left-navbar .link:hover {
        color: #99753c;
    }

    .academics .data {
        flex-direction: column-reverse;
    }

    .academics .data .text {
        width: 100%;
        padding: 20px;
    }

    .academics .data .thumb {
        width: 100%;
        padding: 0px 20px;
    }

    .academics .data .thumb .d-img {
        position: static;
        width: 100%;
        height: 200px;
        transform: none;
        border-radius: 5px;
    }

    .academics {
        padding-top: 20px;
    }

    .mpd .pdfcover {
        padding: 0%;
    }

    .mpd h3 {
        font-size: 15px;
        padding: 20px 0px 20px 0px;
    }
}