* {
    margin: 0;
    padding: 0;
}

:root {
    --color-white-100: hsl(206, 5%, 100%);
    --color-white-200: hsl(206, 5%, 90%);
    --color-white-300: hsl(206, 5%, 80%);
    --color-white-400: hsl(206, 5%, 60%);
    --color-white-500: hsl(206, 5%, 50%);
    --color-black-100: hsl(213, 23%, 8%);
    --color-black-200: hsl(214, 21%, 6%);
    --color-black-300: hsl(210, 21%, 6%);
    --color-black-400: hsl(216, 22%, 4%);
    --color-black-500: hsl(220, 18%, 3%);
    --color-pink-100: hsl(326, 85%, 90%);
    --color-pink-200: hsl(327, 87%, 80%);
    --color-pink-300: hsl(329, 86%, 70%);
    --color-pink-400: hsl(330, 81%, 60%);
    --color-pink-500: hsl(333, 71%, 50%);
    --color-orange-500: hsl(30.94deg 100% 50.2%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.special-gothic-regular {
    font-family: "Special Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.delius-regular {
    font-family: "Delius", cursive;
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black-500);
    background-color: var(--color-white-100);
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

p {
    font-size: 15.5px;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

img.vert-move {
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
}

img.vert-move {
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.elearninglink {
    position: absolute;
    right: 20px;
    width: 70px;
    top: 84px;
    transition: all 0.5s ease;
    z-index: 3;
}

.fixedheader .elearninglink {
    top: 73px;
}

header {
    transition: all 0.5s ease;
}

.header-top {
    padding: 10px 0;
}

.header-upper {
    background: #f68631;
}

.top-header-list-left {
    display: flex;
    align-items: center;
}

.top-header-list-left li {
    display: inline-block;
    padding: 5px 10px;
}

.top-header-list-left li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

.top-header-list-left li a i {
    color: #360a6f;
    font-size: 20px;
    padding-right: 5px;
}

.top-header-list-right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.top-header-list-right li {
    display: inline-block;
    padding: 0 1px;
}

.top-header-list-right li a {
    line-height: normal;
}

.top-header-list-right li:nth-child(1) a {
    font-size: 24px;
    display: block;
    /* background: #005cd1; */
    padding: 2px 5px;
    color: #fff;
}

.top-header-list-right li:nth-child(2) a {
    padding: 2px 5px;
    /* background: #ff0000; */
    color: #ffffff;
    font-size: 24px;
    display: block;
}

.top-header-list-right li:nth-child(3) a {
    padding: 2px 5px;
    /* background: #ff38ae; */
    color: #ffffff;
    font-size: 24px;
    display: block;
}

.top-header-list-right li:nth-child(4) a {
    color: #ffffff;
    font-size: 24px;
    /* background: #d50606; */
    padding: 2px 5px;
    display: block;
}

.top-header-list-right li:last-child {
    border: none;
}

.header-bottom {
    /* background: #062669; */
    transition: all 0.5s ease;
}

.container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-orange-500);
    display: inline-block;
    width: 250px;
}

.header {
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    /* box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100); */
    /* position: fixed; */
    padding: 15px 0px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    transition: all 0.5s ease;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 4rem;
    margin: 0 auto;
    position: relative;
    z-index: 999;
}

.fixedheader {
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    padding: 10px 0;
    background: #ffffffeb;
}

@media screen and (max-width: 1120px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: var(--shadow-medium);
        background-color: #360a6f;
        transition: all 0.5s ease;
    }
    .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
}

.menu-item {
    position: relative;
    display: inline-block;
    margin-left: .3rem;
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.05rem;
    column-gap: 0.05rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: #062669;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}

.menu-link:hover {
    outline: none;
    color: var(--color-orange-500);
}

.btn-alumni {
    border-radius: 5px;
    padding: 8px 12px;
    background: var(--color-orange-500);
    border: none;
    font-weight: 600;
    color: #360a6f;
    font-size: 14px;
    margin: 2px;
}

.btn-alumni:focus {
    outline: none;
    border: none;
}
.btn-pay{
    border-radius: 5px;
    padding: 8px 12px;
    background: #360a6f;
    border: none;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    margin: 2px;
}

.btn-pay:focus {
    outline: none;
    border: none;
}

.submenu {
    position: absolute;
    top: 2.35rem;
    left: 0;
    min-width: 16rem;
    height: auto;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
    transition: all 0.3s ease-in-out;
}

.submenu-item {
    display: block;
    margin-top: 0.7rem;
}

.submenu-link {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: #173473;
    transition: all 0.35s ease;
}

.submenu-link:hover {
    outline: none;
    color: var(--color-orange-500);
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: var(--color-orange-500);
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

@media screen and (max-width: 1280px) and (min-width: 1121px) {
    .wrapper {
        -moz-column-gap: 0.5rem;
        column-gap: 0.5rem;
    }
    .menu-item {
        margin-left: 0;
    }
    .menu-link {
        column-gap: 0;
        font-size: 0.8rem;
    }
}

@media only screen and (min-width: 1121px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media screen and (max-width: 1120px) and (min-width: 768px) {
    #burger {
        position: absolute;
        right: 130px;
    }
}

@media only screen and (max-width: 1120px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }
    .menu-item {
        display: block;
        margin: 0 auto;
    }
    .menu-link {
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
        color: #fff;
    }
    .submenu-link {
        color: #a1a1a1;
    }
	.menu-link>i.bx {
        position: absolute;
        z-index: -1;
        right: 23px;
    }
}

@media only screen and (max-width: 1120px) {
    .submenu {
        position: relative;
        top: -0.5rem;
        left: 2.5rem;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
    }
}

@media only screen and (max-width: 1120px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 1120px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.hero-slider-section {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-slider {
    width: 100%;
    /* height: 620px; */
    position: relative;
    z-index: 0;
}

.hero-slider .container {
    position: relative;
    z-index: 1;
}

.hero-slider .owl-item h2 {
    font-family: "Delius", cursive;
    font-size: 3rem;
    font-weight: 800;
    color: #ff8401;
}

.hero-slider .owl-item h3 {
    font-family: "Delius", cursive;
    font-size: 2.3rem;
    font-weight: 800;
    color: #062669;
}

.hero-slider .owl-item p {
    font-size: 15px;
}


/* .hero-slider .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.hero-slider .owl-item.active h3 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.hero-slider .owl-item.active p {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.hero-slider .owl-item.active img {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    animation-delay: 0.3s;
} */

.hero-slider .owl-nav .owl-next {
    position: absolute;
    right: 55px;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease;
}

.hero-slider:hover .owl-nav .owl-next {
    opacity: 1;
}

.hero-slider .owl-nav .owl-next i,
.hero-slider .owl-nav .owl-prev i {
    color: #fff;
    background: #062669a3 !important;
    padding: 13px 5px 10px !important;
    font-size: 30px !important;
    line-height: 25px !important;
}

.hero-slider .owl-nav .owl-prev {
    position: absolute;
    left: 55px;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease;
}

.hero-slider:hover .owl-nav .owl-prev {
    opacity: 1;
}


/**************** Announcement section *******************************/

.announcement-section .cus-row .col-sm-4 {
    background: #f68631;
}

.announcement-section .cus-row .col-sm-8 {
    background: #fff6d3;
}

.announcement-section h3 {
    font-size: 19px;
    text-align: center;
    margin: 0;
    padding: 11px 0;
    font-weight: 600;
    color: #fff;
}

.home-welcome-section {
    padding: 5rem 0;
    background: #ebe9d6;
    position: relative;
    -webkit-clip-path: ellipse(92% 64% at 50% 36%);
    clip-path: ellipse(92% 64% at 50% 36%);
    z-index: 1;
}

.home-welcome-section h1 {
    font-size: 2rem;
    color: #062669;
    font-weight: 800;
}

.home-welcome-section h1 span {
    display: block;
    font-size: 1.8rem;
    color: #f68631;
}

.admision-enq-btn {
    background: #ff740a;
    padding: 15px 24px;
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.admision-enq-btn:hover {
    color: #fff;
    background: #360a6f;
}

.feature-section {
    padding: 18rem 0 8rem;
    margin-top: -8%;
    position: relative;
}

.feature-section .container {
    z-index: 1;
    position: relative;
}

.feature-section:before {
    position: absolute;
    content: '';
    background: rgb(6 38 105 / 86%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.feature-content {
    text-align: center;
}

.feature-content img {
    width: 100px;
    margin: 0 auto;
}

.feature-content h3 {
    font-size: 19px;
    color: #fff;
    padding: 15px 0;
    margin: 0;
}

.home-admission-open-section {
    padding: 5rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.home-admission-open-section h2 {
    font-size: 1.8rem;
    color: #062669;
    font-weight: 800;
}

.home-admission-open-section h2 span {
    color: #f68631;
}

.home-admission-open-section p {
    margin-bottom: 8px;
    text-align: justify;
}

.rotate-image {
    position: absolute;
    top: 35%;
    left: -150px;
    width: 350px;
    /* height: 120px; */
    margin: -60px 0 0 -60px;
    -webkit-animation: spin 20s linear infinite;
    -moz-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

.rotate-image-2 {
    position: absolute;
    top: 35%;
    right: -200px;
    width: 350px;
    /* height: 120px; */
    margin: -60px 0 0 -60px;
    -webkit-animation: spin 20s linear infinite;
    -moz-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.home-success-section {
    padding: 6rem 0 20rem;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 1px 2px 0px #000;
}

.section-title img {
    width: 150px;
    margin: 0 auto;
}

.principal-desk-section {
    padding: 5rem 0 5rem;
    position: relative;
}

.principal-desk-section .inner-content h2 {
    font-size: 2rem;
    color: #360a6f;
    font-weight: 800;
    margin-bottom: 20px;
}

.ai-robotics-section {
    padding: 8rem 0 5rem;
    position: relative;
    background: #ddd;
}

.ai-inner-content h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
}

.ai-inner-content h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: #ffffff;
    left: 0;
    bottom: -15px;
}

.ai-inner-content p {
    margin-bottom: 30px;
}

.ai-inner-content .know-more-btn {
    color: #fff;
    background: #360a6f;
}

.ai-inner-content .know-more-btn:hover {
    color: #fff;
    background: #ff740a
}

.cus-ai-row .col-md-6:nth-child(2) .ai-images {
    margin-top: -50px;
}

.ai-images {
    padding: 15px 0;
}

.ai-images img {
    border: 2px solid #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
    transition: all 0.5s ease;
}

.ai-images img:hover {
    transform: scale(1.05);
}

.know-more-btn {
    background: #ff740a;
    padding: 10px 24px;
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.know-more-btn:hover {
    color: #fff;
    background: #360a6f;
}

.why-smil-section {
    position: relative;
    overflow: hidden;
}

.why-smil {
    background: #06276a;
    padding: 120px 30px;
    color: #fff;
}

.why-smil h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
}

.image-background-section {
    position: relative;
    height: 350px;
}

.rocket-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.facilities-section {
    position: relative;
    margin-top: -270px;
    padding-bottom: 1rem;
}

.facilities-carousel .facilities-inner {
    border-radius: 15px;
    background: #fff;
    box-shadow: 1px 1px 5px #a5a5a5;
    margin: 10px 10px;
    overflow: hidden;
}

.facilities-carousel .facilities-inner img.thum-img {
    clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
}

.facilities-carousel .facilities-inner .content {
    padding: 15px;
    min-height: 320px;
    padding-top: 30px;
    padding-bottom: 20px;
    display: grid;
}

.facilities-carousel .facilities-inner .content img.icon {
    width: 61px;
    margin-top: -66px;
    position: relative;
    z-index: 1;
    background: #fff;
    border: 2px solid #ed6a00;
    padding: 5px;
    border-radius: 10px;
}

.facilities-carousel .facilities-inner .content h4 {
    font-size: 1.5rem;
    color: #ed0000;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 20px;
    position: relative;
}

.facilities-carousel .facilities-inner .content h4:after {
    content: '';
    position: absolute;
    width: 65px;
    height: 2px;
    background: #ed0000;
    left: 0;
    bottom: -9px;
}

.facilities-carousel .facilities-inner .content p {
    text-align: justify;
}

.faciliti-more-btn {
    display: flex;
    justify-content: end;
}

.faciliti-more-btn a {
    display: inline-block;
    transition: all 0.5s ease;
}

.faciliti-more-btn a:hover {
    transform: scale(1.1);
}

.facilities-carousel .owl-nav .owl-next span {
    position: absolute;
    right: -10px;
    top: 50%;
    background: #06276a36;
    padding: 11px 13px 13px !important;
    border-radius: 5px;
    font-size: 50px;
    color: #fff;
    line-height: 20px;
    transform: translateY(-50%);
}

.facilities-carousel .owl-nav .owl-prev span {
    position: absolute;
    left: -10px;
    top: 50%;
    background: #06276a36;
    padding: 11px 13px 13px !important;
    border-radius: 5px;
    font-size: 50px;
    color: #fff;
    line-height: 20px;
    transform: translateY(-50%);
}

.facilities-carousel:hover .owl-nav .owl-prev span,
.facilities-carousel:hover .owl-nav .owl-next span {
    background: #06276af7;
}

.home-gallery-section {
    position: relative;
    overflow: hidden;
    padding: 10rem 0 5rem;
}

.border-bg {
    position: absolute;
    top: 0;
    width: 100%;
}

.dark h2 {
    color: #06276a;
    text-shadow: 1px 1px 0px #ababab;
}

.masonry img {
    border-radius: 10px;
    transition: all 0.5s ease;
    box-shadow: 1px 1px 5px #000;
}

.masonry img:hover {
    transform: scale(1.05);
}

.testimonial-section {
    position: relative;
    padding: 5rem 0 3rem;
}

.testimonial-section .row .col-md-4:nth-child(1) {
    padding-top: 90px;
}

.testimonial-section .row .col-md-4:nth-child(3) {
    padding-top: 90px;
}

.testimonial-content .inner-box {
    background: #ffffff;
    position: relative;
    box-shadow: 1px 1px 5px #7d7d7d;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #fe6309;
}

.testimonial-content .inner-box img.quote-icon {
    width: 48px;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #fe6309;
}

.testimonial-content .inner-box .text {
    font-size: 16px;
    text-align: center;
    display: block;
    padding: 50px 15px;
}

.testimonial-content .inner-box .author-info {
    background: #fe6309;
    padding: 50px 20px;
    text-align: center;
    border-radius: 25px;
}

.testimonial-content .inner-box .image-box img {
    width: 100px;
    margin: -88px auto 0;
    border-radius: 15px;
    border: 2px solid #fff;
    z-index: 1;
    position: relative;
}

.testimonial-content .inner-box h5 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

.testimonial-content .inner-box .designation {
    color: #fff;
    font-weight: 600;
}

.blog-section {
    padding: 0rem 0 5rem;
    position: relative;
    background: #fff9c8;
}

.blog-border-bg {
    width: 100%;
}

.blog-section .container {
    padding-top: 5rem;
}

.blog-inner-content h2 {
    font-size: 2rem;
    color: #360a6f;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
}

.blog-inner-content h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: #ffffff;
    left: 0;
    bottom: -15px;
}

.blog-inner-content p {
    margin-bottom: 30px;
}


/* entire container, keeps perspective */

.flip-container {
    perspective: 1000;
}


/* flip the pane when hovered */

.flip-container:hover .flipper,
.flip-container.hover .flipper {
    transform: rotateY(180deg);
}

.flip-container,
.front,
.back {
    width: 100%;
    height: 230px;
    margin: 1em auto;
}


/* flip speed goes here */

.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}


/* hide back of pane during swap */

.front,
.back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    color: cornSilk;
    text-align: left;
    box-shadow: -5px 5px 5px #aaa;
    border: 2px solid #ffffff;
    border-radius: 10px;
    overflow: hidden;
}


/* front pane, placed above back */

.front {
    z-index: 2;
    /* for firefox 31 */
    transform: rotateY(0deg);
    background: cornflowerBlue;
}


/* back, initially hidden pane */

.back {
    transform: rotateY(180deg);
    background: #fff;
    padding: 15px;
    border-color: #fe6309;
}

.back h4 a {
    display: block;
    color: #fe6309;
    text-align: left;
}

.back h4 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.back p {
    line-height: 1.2;
    font-size: 14px;
    text-align: justify;
    color: #000;
}

.back span {
    font-size: 14px;
    color: #fb0000;
    text-align: left;
    font-weight: 600;
    background: #fffc74;
    padding: 3px 9px;
}

.back .link-btn {
    display: inline-block;
    background: #fbfbfb;
    padding: 4px 5px;
    font-size: 20px;
    float: right;
    line-height: 19px;
    color: #360a6f;
    border: 2px solid #360a6f;
    transition: all 0.5s ease;
}

.back .link-btn:hover {
    background: #360a6f;
    color: #fff;
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    font-size: 2rem;
    color: #360a6f;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #ff740a;
}

.accordion button {
    position: relative;
    display: flex;
    text-align: left;
    width: 100%;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #ff740a;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #ff740a;
    border: 1px solid #ff740a;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 1.5em;
	padding-right:50px;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 22px;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: #ff740a;
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    overflow: auto;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    padding: 1.5em;
}

footer {
    padding: 5rem 0 0;
    background: #06276a;
}

.footer-contact {
    background: #fff;
    padding: 15px;
    height: 100%;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.footer-contact .brand {
    margin-bottom: 10px;
}

.footer-contact p b {
    color: #ff740a;
}

.footer-links {
    padding: 15px 15px 0;
}

.footer-links h4 {
    color: #fff;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.footer-links ul {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #fff;
    font-size: 15px;
    padding: 6px 5px;
    transition: all 0.5s ease;
    display: block;
}

.footer-links ul li a:hover {
    color: #fe6309;
}

.border-right {
    border-right: 2px solid #fbfdf34d;
}

.footer-social-link li {
    display: inline-block;
}

.footer-social-link li a .bxl-facebook {
    background: #093999;
    font-size: 27px;
    padding: 3px;
    border-radius: 7px;
}

.footer-social-link li a .bxl-youtube {
    background: #cb0000;
    font-size: 27px;
    padding: 3px;
    border-radius: 7px;
}

.footer-social-link li a .bxl-instagram-alt {
    background: linear-gradient(45deg, #f5771d, #ff18d8, #9360ff);
    font-size: 27px;
    padding: 3px;
    border-radius: 7px;
}

.footer-social-link li a .bxl-pinterest-alt {
    background: #b70606;
    font-size: 27px;
    padding: 3px;
    border-radius: 7px;
}

.footer-middle {
    padding: 2rem 0;
    border-top: 2px solid #ffffff0a;
    background: #072259;
}

.populer_search_title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.populer_search li {
    display: inline-block;
    position: relative;
}

.populer_search li:after {
    content: "";
    position: absolute;
    right: -4px;
    width: 2px;
    height: 11px;
    background: #ffffff29;
    top: 50%;
    transform: translateY(-50%);
}

.populer_search li:last-child:after {
    content: none;
}

.populer_search li a {
    color: #b5b5b5;
    padding: 2px 6px;
    font-size: 14px;
}

.populer_search li a:hover {
    color: #fe6309;
}

.footer-bottom {
    padding: 1rem 0;
    text-align: center;
    border-top: 2px solid #ffffff14;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.footer-bottom p a {
    color: #fe6309;
}


/******** scroll top css *************/

.back-to-top {
    background-color: #ff8100;
    text-decoration: none;
    cursor: pointer;
    width: 56px;
    height: 56px;
    z-index: 999;
    position: fixed;
    right: 32px;
    bottom: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 100%;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.4);
}

.back-to-top:hover {
    background-color: #06276a;
}

.back-to-top:active {
    box-shadow: none;
    background-color: #06276a;
}

.back-to-top svg.icon__arrow-up {
    fill: #fff;
    width: 32px;
    height: 32px;
}


/* #scrollbutton {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#scrollbutton::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    font-weight: 900;
    line-height: 50px;
    color: #fff;
}

#scrollbutton:hover {
    cursor: pointer;
    background-color: #072259;
}

#scrollbutton:active {
    background-color: #072259;
}

#scrollbutton.show {
    opacity: 1;
    visibility: visible;
} */

.social-media-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 9;
}

.social-media-sidebar li a {
    transition: all 0.5s ease;
}

.social-media-sidebar li a:hover {
    padding-left: 25px !important;
}

.whatsapp_icon {
    position: fixed;
    top: 0px;
    left: -124px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 18px;
    border-top-right-radius: 9px;
    border-bottom-right-radius: 10px;
    z-index: 9;
    background: rgb(10, 181, 49);
    padding: 10px 13px;
    transition: all 0.5s ease;
}

.whatsapp_icon i {
    margin-left: 8px;
    font-size: 22px;
}

.whatsapp_icon:hover {
    left: 0px;
    color: rgb(255, 255, 255);
}

.admission-enquiry-btn {
    display: inline-block;
    position: fixed;
    right: -5px;
    z-index: 9;
    top: 40%;
    height: 30px;
}

.admission-enquiry-btn img {
    height: 200px;
}

#admissionOpen .modal-content {
    border-radius: 20px;
}

#admissionOpen .modal-body {
    padding: 30px 50px 50px;
}

#admissionOpen .modal-body img {
    margin: 0 auto;
}

#admissionOpen .modal-body .modal-title {
    font-size: 1.7rem;
    text-align: center;
    margin: 15px 0 0px;
    font-weight: 800;
    color: #067d16;
}

#admissionOpen .modal-body p {
    text-align: center;
    font-size: 14px;
    color: #000;
}

#admissionOpen .btn-close {
    position: absolute;
    right: 10px;
    top: 12px;
    color: #ffffff;
    background: #e90505;
    line-height: 1;
    opacity: 1;
}

#admissionOpen .btn-close:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

#admissionOpen .form-label {
    font-size: 15px;
    color: #371308;
    font-weight: 600;
}

#admissionOpen .form-label span {
    color: #ff0000;
}

#admissionOpen .form-control,
#admissionOpen .form-select {
    background-color: #e1e1e1;
    border: none;
    padding: 10px;
    font-size: 14px;
}

#admissionOpen .form-control:focus,
#admissionOpen .form-select:focus {
    outline: none;
    border: none;
    box-shadow: none;
    background: #e6e7af;
}

#admissionOpen .btn {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 7px 40px;
    border: none;
    background: #d36410;
    margin-top: 25px;
    transition: all 0.5s ease;
}

#admissionOpen .btn:hover {
    background-color: #072259;
}

.modal-backdrop.show {
    opacity: .7;
}

@media (min-width: 1500px) {
    .container {
        min-width: 1400px;
    }
}


/*--------------------- Inner Page css ------------------------*/

.inner-banner-section {
    clip-path: ellipse(92% 64% at 50% 36%);
    padding: 200px 0;
    position: relative;
}

.inner-banner-section:before {
    content: '';
    position: absolute;
    background: #0000009e;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.inner-banner-section .container {
    position: relative;
    text-align: center;
}

.inner-banner-section h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
}

.inner-banner-section h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
}

.inner-banner-section ul li {
    display: inline-block;
    font-size: 1rem;
    color: #ff8401;
    padding: 0 3px;
}

.inner-banner-section ul li a {
    display: block;
    padding: 5px 15px;
    color: #939393;
    position: relative;
}

.inner-banner-section ul li a:after {
    content: '|';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.inner-page-section {
    padding: 5rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.inner-page-section h1 {
    font-size: 2rem;
    color: #062669;
    font-weight: 800;
    margin-bottom: 20px;
}

.inner-page-section h2 {
    color: #f68631;
    font-size: 1.8rem;
    font-weight: 800;
}

.inner-page-section h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
}

.inner-page-section h4 {
    color: #062669;
    font-size: 1.2rem;
    font-weight: 600;
}

.inner-page-section p {
    margin: 10px 0;
    text-align: justify;
}

.inner-page-section ul {
    padding-left: 15px;
}

.inner-page-section ul li {
    line-height: 2;
    list-style: disc;
    padding: 5px 0;
}

.inner-page-section ol {
    padding-left: 15px;
}

.inner-page-section ol li {
    line-height: 1.5;
    list-style: decimal;
}

.salient-features-slider .salient-features {
    text-align: center;
    background: #ffe7cd;
    padding: 15px;
    border-radius: 13px;
}

.salient-features-slider .salient-features img {
    width: 100px;
    margin: 10px auto;
}

.salient-features-slider .salient-features p {
    text-align: center;
    font-size: 14px;
}

h2.dark-blue {
    color: #062669;
}

.padding-sm {
    padding: 5rem 0 2rem;
}

.admisiion-open-form {
    background: #062e81;
    padding: 40px 20px;
}

.admisiion-open-form label {
    font-size: 14px;
    color: #fff;
}

.admisiion-open-form label span {
    color: red;
}

.admisiion-open-form input {
    height: 40px;
    border: none;
    border-radius: 0;
    background: #ffd96a;
    border: 2px solid #ffd96a;
}

.admisiion-open-form input:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #e9a30c;
}

.admisiion-open-form select {
    height: 40px;
    border: none;
    border-radius: 0;
    background-color: #ffd96a;
    border: 2px solid #ffd96a;
}

.admisiion-open-form select:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #e9a30c;
}

.admisiion-open-form .btn {
    background: #ff4901;
    padding: 9px 30px;
    border: none;
    border-radius: 0;
    display: block;
    width: 60%;
    text-transform: uppercase;
    margin: 26px auto 0;
}

.download-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #222;
    background: #ffdebb;
    padding: 15px 80px 15px 45px;
    border-radius: 30px;
    margin: 15px 0px;
}

.download-btn i {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #06276a;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    text-align: center;
}

.syllabus_div_back {
    background: #ff8401;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.syllabus_div_back.light-bg {
    background: #ffefda;
}

.syllabus_div_back:hover {
    background: #fdb306;
}

.syllabus_div_back p {
    text-align: center;
    font-weight: 600;
}

.syllabus_div_back img {
    width: 100px;
    margin: 0 auto;
}

.syllabus_div_back .download-btn {
    padding: 5px 43px 5px 19px;
    background: #fff6b4;
}

.syllabus_div_back .download-btn i {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #990000;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    text-align: center;
}

.round-img {
    border-radius: 15px;
}

.notice-page ul {
    padding-left: 15px;
}

.notice-page ul li {
    list-style: disc;
    padding: 5px 0;
    text-align: justify;
}

.tc-form {
    background: #7d0505;
    padding: 59px 30px;
    border-radius: 16px;
}

.tc-form label {
    font-size: 14px;
    color: #fff;
}

.tc-form label span {
    color: red;
}

.tc-form input {
    height: 40px;
    border: none;
    border-radius: 0;
    background: #ffd96a;
    border: 2px solid #ffd96a;
}

.tc-form input:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #e9a30c;
}

.tc-form .btn {
    background: #ff4901;
    padding: 9px 30px;
    border: none;
    border-radius: 0;
    display: block;
    width: 60%;
    text-transform: uppercase;
    margin: 26px auto 0;
}

.transport-page .rout-list {
    padding: 0;
}

.transport-page .rout-list li {
    display: inline-block;
    position: relative;
    padding-left: 27px;
    padding-right: 10px;
}

.transport-page .rout-list li:before {
    content: "\f058";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    font-weight: 900;
    line-height: 50px;
    color: #05731e;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.transport-form {
    background: #ffe0af;
    padding: 40px 20px;
    border-radius: 31px;
}

.transport-form h3 {
    color: #063785;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.transport-form label {
    font-size: 14px;
    color: #313131;
    font-weight: 600;
}

.transport-form label span {
    color: red;
}

.transport-form input {
    height: 40px;
    border: none;
    border-radius: 0;
    background: #ffffff;
    border: 2px solid #ffffff;
}

.transport-form input:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #e9a30c;
}

.transport-form textarea {
    border: none;
    border-radius: 0;
    background: #ffffff;
    border: 2px solid #ffffff;
}

.transport-form textarea:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #e9a30c;
}

.transport-form .btn {
    background: #ff4901;
    padding: 9px 30px;
    border: none;
    border-radius: 0;
    display: block;
    width: 60%;
    text-transform: uppercase;
    margin: 26px auto 0;
}

.awards_back {
    background: #ffdeba;
    padding: 35px 30px;
    margin: 12px 0;
    border-radius: 18px;
    box-shadow: 2px 2px 2px #733d0359;
    transition: all 0.5s ease;
}

.awards_back:hover {
    transform: scale(1.02);
}

.awards_back h3 {
    color: #cd3c02;
}

.awards_back p em {
    color: #062669;
    font-size: 17px;
}

.contact-page ul {
    padding: 0;
}

.contact-page ul li {
    display: flex;
    align-items: start;
    line-height: 1.8;
    padding: 10px 0;
}

.contact-page ul li i {
    margin-right: 11px;
    margin-top: 5px;
    font-size: 25px;
    color: #ff8401;
}

.contact-page ul li a {
    display: block;
    color: #670505;
    font-weight: 600;
}

.cr_inner {
    background: #ffe0c2;
    padding: 30px;
    margin: 15px 0;
    border-radius: 19px;
    box-shadow: 2px 2px 2px #733d0359;
    transition: all 0.5s ease;
}

.cr_inner:hover {
    transform: scale(1.02);
}

.carr_apply {
    background: #ff4901;
    padding: 9px 15px;
    border: none;
    border-radius: 5px;
    display: block;
    text-transform: uppercase;
    margin: 26px auto 0;
    color: #fff;
}

.carr_apply:focus {
    outline: none;
    box-shadow: none;
    ;
}

#careerModal .modal-content {
    border-radius: 20px;
}

#careerModal .modal-body {
    padding: 30px 30px 30px;
}

#careerModal .modal-body img {
    margin: 0 auto;
}

#careerModal .modal-body .modal-title {
    font-size: 1.7rem;
    text-align: center;
    margin: 15px 0 0px;
    font-weight: 800;
    color: #067d16;
}

#careerModal .modal-body p {
    text-align: center;
    font-size: 14px;
    color: #000;
}

#careerModal .btn-close {
    position: absolute;
    right: 10px;
    top: 12px;
    color: #ffffff;
    background: #e90505;
    line-height: 1;
    opacity: 1;
}

#careerModal .btn-close:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

#careerModal .form-label {
    font-size: 15px;
    color: #371308;
    font-weight: 600;
}

#careerModal .form-label span {
    color: #ff0000;
}

#careerModal .form-control,
#careerModal .form-select {
    background-color: #e1e1e1;
    border: none;
    padding: 10px;
    font-size: 13px;
}

#careerModal .form-control:focus,
#careerModal .form-select:focus {
    outline: none;
    border: none;
    box-shadow: none;
    background: #e6e7af;
}

#careerModal .btn {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 7px 40px;
    border: none;
    background: #d36410;
    transition: all 0.5s ease;
}

#careerModal .btn:hover {
    background-color: #072259;
}

.curriculams-content .icons-img {
    background: #ff8401;
    padding: 19px;
    border-radius: 13px;
    text-align: center;
    min-height: 190px;
    margin: 10px 0;
    transition: all 0.5s ease;
}

.curriculams-content .icons-img img {
    width: 80px;
    margin: 0 auto;
}

.curriculams-content .icons-img h5 {
    font-size: 17px;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.curriculams-content .icons-img:hover {
    background: #032f8b;
}

.curriculams-content .icons-img:hover h5 {
    color: #fff;
}

.robotics-facilitie .single-item {
    background: #ffffff;
    padding: 17px;
    border-radius: 15px;
    box-shadow: 0 0 6px #b1b1b1;
    min-height: 424px;
    margin: 5px;
}

.robotics-facilitie .single-item img {
    border-radius: 15px;
    margin-bottom: 15px;
}

.robotics-facilities-content h3 {
    font-size: 1.2rem;
    color: #062669;
    font-weight: 700;
}

.robotics-facilities-content p {
    font-size: 15px;
}

.robotics-facilitie .owl-nav .owl-next {
    position: absolute;
    right: 0px;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease;
}

.robotics-facilitie:hover .owl-nav .owl-next {
    opacity: 1;
}

.robotics-facilitie .owl-nav .owl-next i,
.robotics-facilitie .owl-nav .owl-prev i {
    color: #fff;
    background: #062669a3 !important;
    padding: 13px 5px 10px !important;
    font-size: 30px !important;
    line-height: 25px !important;
}

.robotics-facilitie .owl-nav .owl-prev {
    position: absolute;
    left: 0px;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease;
}

.robotics-facilitie:hover .owl-nav .owl-prev {
    opacity: 1;
}

.technologies-focus .content {
    text-align: center;
}

.technologies-focus .content img {
    border-radius: 18px;
    margin: 12px 0;
}

.technologies-focus .content h4 {
    font-weight: 800;
}

.single-blog-content {
    background: #fff2e5;
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid #ffd7ad;
    transition: all 0.5s ease;
}

.single-blog-content .post-date {
    font-size: 15px;
    color: #ff8401;
    margin-bottom: 17px;
}

.single-blog-content .post-date i {
    margin-right: 9px;
}

.single-blog-content h3 a {
    color: #10157d;
    font-size: 1.4rem;
    font-weight: 700;
}

.single-blog-content p {
    font-size: 15px;
}

.single-blog-content .btn {
    background: #ff8401;
    padding: 8px 15px;
    margin: 15px 0;
    color: #fff;
    font-weight: 600;
    transition: all 0.5s ease;
}

.single-blog-content .btn i {
    margin-left: 12px;
}

.single-blog-content:hover {
    transform: scale(1.01);
}

.single-blog-content:hover .btn {
    background: #10157d;
}

.blog-details-page img {
    margin: 0 auto;
}

.blog-post-date {
    background: #a4ff8e;
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.blog-post-date i {
    margin-right: 5px;
}

.recent-post {
    margin: 30px 0 15px;
}

.recent-post h3 {
    color: #062669;
    font-size: 1.5rem;
}

.recent-post ul {
    padding: 0;
}

.recent-post ul li {
    display: block;
}

.recent-postes {
    background: #e4eeff;
    padding: 32px 15px 15px;
    border-radius: 11px;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 0.5s ease;
}

.recent-postes .post-date {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    position: absolute;
    right: 0px;
    top: 0px;
    background: #ff0000;
    padding: 1px 10px;
    border-radius: 10px;
    border-bottom-right-radius: 0;
}

.recent-postes .post-date i {
    margin-right: 5px;
}

.recent-postes a {
    line-height: 1.5;
    font-size: 18px;
    display: block;
    font-weight: 600;
    color: #ff4901;
}

.recent-postes p {
    line-height: 1.3;
    font-size: 14px;
}

.recent-postes:hover {
    transform: scale3d(1.01, 1.01, 1.01);
}

#loadadmissionOpen .modal-body{
	background: #ffae16;
}
#loadadmissionOpen .btn-close{
	position: absolute;
    right: 10px;
    top: 10px;
    background: #ff0000;
    opacity: 1;
	line-height: 1;
	color:#fff;
}
#loadadmissionOpen h5{
	font-size: 1.4rem;
    font-weight: 600;
    color: #fff;	
	margin-top:15px;
}
#loadadmissionOpen p{
	font-size: 14px;
    color: #000;
}
#loadadmissionOpen label{
	color: #050f99;
    font-size: 15px;
    font-weight: 600;
}
#loadadmissionOpen .form-control, #loadadmissionOpen .form-select{
	padding: 8px;
    border: none;
    background: #ededed;
	box-shadow:none;
}
#loadadmissionOpen .btn-primary{
	background: #032a9d;
    padding: 10px 39px;
    border: none;
	margin-top:20px;
}
.faculty-details{
	background: #f7f7f7;
    padding: 30px 20px;
    text-transform: uppercase;
    position: relative;
	margin:10px 0;
	transition:all 0.5s ease;
}
.faculty-details h4{
	font-size: 1.2rem;
    font-weight: 700;
	color: #2f07a5;
}
.faculty-details h6{
	font-size: 1rem;
    font-weight: 500;
    color: #616161;
}
.faculty-details p{
	font-size: 1rem;
    font-weight: 500;
    color: #000;
}
.faculty-details:before{
	position:absolute;
	content:'';
	width: 100px;
    height: 100px;
    background: #ff8401;
    top: -2px;
    left: -2px;
    z-index: -1;
	transition:all 0.5s ease;
}
.faculty-details:after{
	position:absolute;
	content:'';
	width: 100px;
    height: 100px;
    background: #049ccb;
    bottom: -2px;
    right: -2px;
    z-index: -1;
	transition:all 0.5s ease;
}
.faculty-details:hover{
	background:#fffaf3
}
.faculty-details:hover:before{
	width: 100%;
    height: 100%;
}
.faculty-details:hover:after{
	width: 100%;
    height: 100%;
}

.inner-page-section .pagination {
        text-align: center;
    justify-content: center;
}
.inner-page-section ul.pagination{
    padding-left: 0;
        align-items: center;
}
.inner-page-section ul.pagination .page-item .page-link {
    border: none;
    color: #818181;
    padding: 3px 13px;
}
.inner-page-section ul.pagination .page-item.active .page-link{
    color: #fff;
    background-color: #ff8401;
}
.inner-page-section ul.pagination  .page-item{
  display:inline-block;
}

.thank-you-inner{
    text-align: center;
}
.thank-you-inner p{
    text-align: center;
    font-size: 20px;
}
.thank-you-inner .home-btn{
    background: #ef7f1a;
    padding: 7px 20px;
    color: #fff;
}
.thank-you-inner img{    
width: 200px;
 margin: 0 auto;
}
.career-form-back {
    padding: 20px 15px;
    border: 1px solid #ddd;
    border-radius: 16px;
}

.career-form .modal-title {
    font-size: 1.7rem;
    text-align: center;
    margin: 15px 0 0px;
    font-weight: 800;
    color: #067d16;
}

.career-form p {
    text-align: center;
    font-size: 14px;
    color: #000;
}

.career-form .btn-close {
    position: absolute;
    right: 10px;
    top: 12px;
    color: #ffffff;
    background: #e90505;
    line-height: 1;
    opacity: 1;
}

.career-form .btn-close:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.career-form .form-label {
    font-size: 15px;
    color: #371308;
    font-weight: 600;
}

.career-form .form-label span {
    color: #ff0000;
}

.career-form .form-control,
.career-form .form-select {
    background-color: #e1e1e1;
    border: none;
    padding: 15px 10px;
    font-size: 13px;
}

.career-form .form-control:focus,
.career-form .form-select:focus {
    outline: none;
    border: none;
    box-shadow: none;
    background: #e6e7af;
}

.career-form .btn {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 7px 40px;
    border: none;
    background: #ff8100;
    transition: all 0.5s ease;
    color: #fff;
}

.career-form .btn:hover {
    background-color: #072259;
}
.inner-page-section .tu_blk a{
	display: block;
    padding: 15px;
    background: #ffe5d1;
    border-radius: 12px;
	text-align:center;
}
.inner-page-section .tu_blk a h6{
	color: #4b4b4b;
    margin: 10px 0;
    text-align: center;
}
.gallery-page-section .nav{
	display: flex;
    justify-content: center;
}
.gallery-page-section .nav li{
	display: inline-block;
}
.gallery-page-section .nav li .nav-link.active{
	background: none;
    color: #939393;
    font-weight: 800;
    font-size: 1.7rem;
    border-bottom: 3px solid #939393;
    border-radius: 0;
    padding: 5px 20px;
    line-height: 1;
}
.gallery-page-section .nav li .nav-link.active{
	background: none;
    color: #ff8402;
    font-weight: 800;
    font-size: 1.7rem;
    border-bottom: 3px solid #ff8402;
    border-radius: 0;
    padding: 5px 20px;
    line-height: 1;
}
.gallery-page-section .tab-content h5{
	font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0c0c0c;
}

.alumni-form {
    background: #f7f7f7;
    padding: 20px;
    box-shadow: 1px 1px 6px #dddddd;
}

.alumni-form .form-control {
    padding: 8px 15px;
    outline: none;
    box-shadow: none;
    border: 1px solid #0b255b;
    font-size: 14px;
    color: #a74f00;
}

.alumni-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #01096b;
}

.alumni-form .form-label span {
    color: #e90808;
}

.alumni-form .btn {
    font-size: 18px;
    padding: 8px 40px;
    margin: 0 auto;
    color: #fff;
    background-color: #ff8401;
    border-color: #ff8401;
}
.pay-now-btn{
	display:none;
}
/*=================================================*/


/*=================================================*/


/*=================================================*/


/*============ Responsive Css =====================*/


/*=================================================*/


/*=================================================*/

@media (max-width:767px) {
    p {
        font-size: 14px;
    }
    .home-welcome-section {
        padding: 3rem 0;
        clip-path: ellipse(100% 60% at 50% 39%);
    }
    .home-welcome-section h1 {
        font-size: 1.5rem;
    }
    .home-welcome-section h1 span {
        font-size: 1.3rem;
    }
    .feature-section {
        padding: 8rem 0 3rem;
        margin-top: -30%;
    }
    .home-admission-open-section h2 {
        font-size: 1.5rem;
    }
    .home-success-section {
        padding: 3rem 0 11rem;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .principal-desk-section {
        padding: 3rem 0;
    }
    .principal-desk-section .inner-content h2 {
        font-size: 1.5rem;
    }
    .know-more-btn {
        font-size: 14px;
    }
    .ai-robotics-section {
        padding: 3rem 0;
    }
    .ai-inner-content h2 {
        font-size: 1.5rem;
    }
    .why-smil-section {
        padding: 3rem 0 0;
    }
    .why-smil {
        padding: 47px 30px;
        margin-top: 15px;
    }
    .why-smil h2 {
        font-size: 1.5rem;
    }
    .image-background-section {
        height: 310px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .blog-section .container {
        padding-top: 3rem;
    }
    .blog-inner-content h2 {
        font-size: 1.5rem;
    }
    .home-gallery-section {
        padding: 5rem 0 3rem;
    }
    .testimonial-section {
        padding: 3rem 0;
    }
    .testimonial-section .row .col-md-4:nth-child(1) {
        padding-top: 10px;
    }
    .testimonial-section .row .col-md-4:nth-child(2) {
        padding-top: 40px;
    }
    .testimonial-section .row .col-md-4:nth-child(3) {
        padding-top: 40px;
    }
    .faq-section {
        padding: 3rem 0;
    }
    .faq-section h2 {
        font-size: 1.5rem;
    }
    .accordion button {
        font-size: 1rem;
    }
    .border-right {
        border: none;
    }
    .inner-banner-section {
        padding: 100px 0;
    }
    .inner-banner-section h2 {
        font-size: 2rem;
    }
    .inner-page-section {
        padding: 3rem 0;
    }
    .inner-page-section h1 {
        font-size: 1.6rem;
    }
    .inner-page-section h2 {
        font-size: 1.4rem;
    }
    .inner-page-section h3 {
        font-size: 1.2rem;
    }
	.btn-pay{
	display:none;
	}
	.pay-now-btn{
            display: inline-block !important;
            position: fixed;
            z-index: 9;
            max-width: 100%;
            bottom: 20%;
            right: 19px;
        }
        .pay-now-btn img{
            height: 74px;
        }
}