/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    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;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #3376C3;
}

html::-webkit-scrollbar-thumb {
    background-color: #FF914D;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-size: 18px;
    font-family: 'Nunito Sans Regular';
    font-weight: 400;
    color: #202020;
}

a,
a:hover,
a:focus {
    color: #FF914D;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Georgia Bold';
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.container-fluid {
    padding: 0 70px;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #FF914D;
    transition: all .5s;
    z-index: 9;
}
.popup .popup__content .close:hover {
    background-color: #3376C3;
}

.popup .popup__content .close:hover span {
    background-color: #FFF;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: url(../img/what-we-do-slider2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: start;
}

.right {
    padding: 30px;
    text-align: left;
    background: #F5F5F5;
}

/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}

.pb-80 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

p {
    color: #202020;
    font-family: 'Nunito Sans Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.title {
    color: #124F93;
    font-family: 'Georgia Bold';
    font-size: 38px;
    font-style: normal;
    font-weight: normal;
    line-height: 88.372%;
    margin-bottom: 20px;
}
.section-title {
    color: #124F93;
    font-family: 'Georgia Bold';
    font-size: 53px;
    font-style: normal;
    font-weight: normal;
    line-height: 105.66%;
    margin-bottom: 8px;
}
.sub-title{
    color: #FF914D;
    font-family: 'Nunito Sans Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 122.727%;
    text-transform: uppercase;
}
.dec{
    color: #0B3151;
    text-align: center;
    font-family: 'Nunito Sans Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 135%;
}
.btn-group{
    display: flex;
    align-items: center;
    gap: 20px;
}
.primary-btn {
    color: #FFF;
    font-family: 'Nunito Sans Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
    padding: 15px 30px;
    border-radius: 30px;
    background: #FF914D;
    text-align: center;
    box-shadow: 0px 6px 0px 0px #C25411;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.primary-btn:hover{
    box-shadow: 0px 3px 0px 0px #C25411;
    transform: translateY(4px);
    color: #fff;
}
.primary-btn:focus{
    color: #FFF;
}
.secondary-btn{
    background: #3376C3;
    box-shadow: 0px 6px 0px 0px #135BAF;
    &:hover{
        box-shadow: 0px 3px 0px 0px #135BAF;
    }
}
.form-control {
    font-family: 'Nunito Sans Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 17px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 20px 18px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #DDD;
    outline: none;
}
.form-control:focus {
    border-color: #3376C3;
}
form .btn-group {
    justify-content: center;
}
form .primary-btn {
    font-size: 22px;
    padding: 15px 40px;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    background: #FF914D;
    transition: 0.5s;
    border: none;
    &:hover{
        background: #3376C3;
    }
}
.form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    .form-icon{
        position: absolute;
        right: 10px;
    }
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control::placeholder {
    color: #000;
    font-family: 'Nunito Sans Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 94.444%;
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes spin {
    0%{
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}
/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}
.slideInDown {
    animation-name: slideInDown;
}
.slideInLeft {
    animation-name: slideInLeft;
}
.slideInRight {
    animation-name: slideInRight;
}
/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}
/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}
.zoomReverseIn {
    animation-name: zoomReverseIn;
}
/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}
.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
/*******************************
	Menu
*******************************/
.flex-box {
    display: flex;
    align-items: center;
    .primary-btn{
        border-radius: 60px;
        background: #3376C3;
        padding: 12px 22px;
        box-shadow: unset;
        &:hover{
            /* box-shadow: 0px -5px 0px 0px #1f4d82; */
            background: #FF914D;
            transform: translateY(3px);
            color: #fff;
        }
    }
}

header.sticky {
    background: #FFF;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.45s ease-out;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding-block: 10px;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
.main-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 26px;
    z-index: 999;
    transition: ease-in-out .4s;

}
nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
#menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60px;
    background: #FFF;
    padding-inline: 10px;
}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 10px;
    position: relative;
    &::before{
        position: absolute;
        content: '';
        width: 0;
        height: 2px;
        background: #FF914D;
        left: 12px;
        bottom: 20px;
        transition: 0.5s;
    }
}
.has-sub{
    margin-right: 8px;
}
#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 25px 2px;
    display: inline-block;
    color: #054881;
    font-family: 'Nunito Sans Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

  
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}
.hamburger{
    display: none;
}

#menu .main-menu ul li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 7px;
    width: 25px;
    height: 1px;
    background: rgb(237, 143, 0);
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #FF914D;
}


#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease;
    &::before{
        width: 16px;
    }
}


#menu>.main-menu>ul>li.has-sub>a::before {
    top: 32px;
    right: -10px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #054881;
    border-left: 2px solid #054881;
    transform: rotate(225deg);
}

#menu>.main-menu>ul>li.has-sub:hover>a::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #FF914D;
    border-left-color: #FF914D;
}

/* #menu>.main-menu>ul>li.has-sub:hover>a::before {
    transform: rotate(-316deg);
    top: 36px;
} */

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: 200px;
    background: #ffffff;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: #FFF;
    transition: all .25s ease
    
}
#menu .main-menu ul ul li a{
    background: #ffffff;
    color: #000;
}

#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    /*height: 40px;*/
    /*display: flex;*/
    /*align-items: center;*/
    height: auto;
    display: block;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 7px 20px;
    width: auto;
    font-size: 19px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    white-space: normal;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a,
#menu .main-menu ul ul li:hover {
    color: #fff;
    background-color: #FF914D;
}

#menu .main-menu ul ul li .has-sub> a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}
#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}

#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333;
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }
    nav {
        width: 100%
    }
    #menu {
        width: 100%
    }
    #menu ul {
        width: 100%;
        display: none;
    }
    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: #085FA9;
        transform: translateX(-100%);
        transition: all .4s;
        top: 80px;
        left: 0;
    }
    .main-menu {
        align-items: start;
        flex-direction: column;
    }
    #menu .main-menu.open {
        transform: translateX(0%);
        overflow: auto;
    }
    #menu .main-menu ul li {
        width: 100%;
        border-top: 1px solid #e4e4e42e;
    }
    .main-menu ul{
        padding: 30px;
    }
    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }
    #menu .main-menu ul li a{
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
        font-size: 15px;
    }
    .flex-box{
        width: 100%;
        justify-content: center;
    }
    #menu .main-menu ul ul li a{
        color: #ffffff;
        padding-block: 10px;
        background: #094b83;
    }
    #menu .main-menu ul ul li{
        background: unset;
    }
    #menu>.main-menu>ul>li {
        float: none;
    }
    #menu ul ul li a {
        padding-left: 25px;
    }

    #menu ul ul li:hover {
        background: #FFF;
    }

    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff;
    }

    #menu .main-menu ul ul {
        box-shadow: none;
        background: #ffffff4d;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 10px;
        top: 0;
        cursor: pointer;
        z-index: 12399994;
        display: block;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #060761;
        border-bottom: 2px solid #060761;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #060761;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #060761;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #060761;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer;
        background: #ffffff2f;

    }


    #menu ul ul .submenu-button {
        height: 34px;
        width: 40px;
        right: 0;
    }
#menu .main-menu ul ul li.has-sub>a:after{
    display: none;
}
    #menu .submenu-button:after {
        position: absolute;
        top: 17px;
        right: 24px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }
    #menu>.main-menu>ul>li.has-sub>a::before{
            display: none;
        }

    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 20px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    header.sticky {
        padding-block: 3px;
    }
    #menu>.main-menu>ul>li:hover>a, #menu .main-menu ul li.current-menu-item a {
        color: #FF914D;
        scale: unset;
    }
    header.sticky{
        #menu .main-menu{
            top: 54px;
        }
    }
}

.menu-white {
    position: relative;
    background: #FFF;
    box-shadow: 0px 7px 11px 0px rgba(0, 0, 0, 0.06);
}


.menu-white #menu>.main-menu>ul>li>a {
    color: #1E1E1E;
}

.menu-white #menu>.main-menu>ul>li:hover>a,
.menu-white #menu .main-menu ul li.current-menu-item a {
    color: #95C12B;
}

.menu-white #menu>.main-menu>ul>li.has-sub>a::before {
    border-top: 1px solid #1E1E1E;
    border-left: 1px solid #1E1E1E;
}

.menu-white #menu>.main-menu>ul>li.has-sub:hover>a::before,
.menu-white #menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #95C12B;
    border-left-color: #95C12B;
}


.menu-white .serch-box input {
    border: 1px solid #D6D6D6;
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(7.5px);
}
.fixed-btn {
    position: fixed;
    right: 50px;
    top: 30%;
    z-index: 9;
}
.enq-btn {
    color: #FFF;
    font-family: 'Nunito Sans Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 0px 14px 14px 0px;
    background: linear-gradient(180deg, #FF914D 0%, #E55800 100%);
    padding: 20px 15px;
    transform-origin: right center;
    transition: 0.8s;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    img{
        width: 20px;
        height: 18px;
        transform: rotate(180deg);
    }
    &:hover{
        scale: 1.1;
        color: #FFF;
        margin-right: 10px;
    }
}
.fixed-contact{
    position: fixed;
    right: 10px;
    top: 80%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    a:hover{
        scale: 1.1;
    }
}
.call{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #20A131;
    border-radius: 50%;
    outline: 3px solid #20a1315d;
}
/******************************
            Banner  
*******************************/
.banner{
    background: url(../img/banner-bg.webp), linear-gradient(180deg, #FFF2D9 0%, #FFE9E5 94%);
    background-repeat: repeat;
    padding-bottom: 386px;
    padding-top: 268px;
    position: relative;
    height: 1020px;
    clip-path: polygon( 0% 0%,100% 0%,100% 100%,100% 100%,99.492% 99.667%,98.062% 98.756%,95.851% 97.4%,93.003% 95.733%,89.659% 93.886%,85.961% 91.993%,82.051% 90.186%,78.071% 88.599%,74.163% 87.364%,70.469% 86.615%,70.469% 86.615%,65.855% 86.386%,61.598% 86.866%,57.608% 87.91%,53.797% 89.375%,50.075% 91.117%,46.353% 92.993%,42.543% 94.858%,38.555% 96.57%,34.299% 97.985%,29.688% 98.958%,29.688% 98.958%,26.046% 99.107%,22.159% 98.633%,18.175% 97.68%,14.242% 96.39%,10.507% 94.906%,7.119% 93.371%,4.227% 91.928%,1.977% 90.721%,0.519% 89.892%,0% 89.583%,0% 0% );
    .container{
        display: flex;
        flex-wrap: wrap;
    }
}
.banner-content{
    width: 60%;
    h1{
        font-size: 58px;
        line-height: 117.241%;
        color: #0F6ED7;
        font-weight: normal;
        margin-bottom: 17px;
        span{
            color: #000;
        }
    }
    .dec{
        text-align: left;
        margin-bottom: 25px;
    }
}
.circle-sky-blue{
    position: absolute;
    left: 0;
    bottom: 0;
    animation: bounce 5s ease-in-out infinite;
}
.jupiter{
    position: absolute;
    left: 15%;
    top: 20%;
    animation: bounce 5s ease-in-out infinite;
}
.line-plane{
    position: absolute;
    left: 0;
    bottom: 30%;
    animation: bounce 7s ease-in-out infinite;
}
.tringle-blue{
    position: absolute;
    right: 0;
    bottom: 0;
}
.tringle-small-a{
    position: absolute;
    left: 30%;
    top: 17%;
    animation: spin 7s ease-in-out infinite;
}
.tringle-small-c{
    position: absolute;
    left: 25%;
    bottom: 10%;
    animation: spin 5s ease-in-out infinite;
}
.tringle-orange{
    position: absolute;
    right: -30px;
    bottom: -200px;
    width: 100%;
    height: auto;
    z-index: -1;
    animation: bounce 5s ease-in-out infinite;
}
.banner-img{
    width: 40%;
    position: absolute;
    bottom: 80px;
    right: 10%;
}
.banner-book{
    position: absolute;
    left: -25px;
    bottom: 100px;
    animation: bounce 5s ease-in-out infinite;
}
.pencil{
    position: absolute;
    bottom: 40%;
    left: -80px;
    animation: bounce 8s ease-in-out infinite;
}
.pen-pot{
    position: absolute;
    bottom: -10px;
    right: 40px;
    animation: bounce 9s ease-in-out infinite;
}
.red-cross{
    position: absolute;
    right: 15%;
    top: 34%;
    animation: bounce 5s ease-in-out infinite;
}
.tringle-scale{
    position: absolute;
    left: 40%;
    top: 30%;
    animation: bounce 8s ease-in-out infinite;
}
.magnifying-glass{
    position: absolute;
    left: 20%;
    top: 15%;
    animation: bounce 9s ease-in-out infinite;
}
.tringle-small-b{
    position: absolute;
    left: 35%;
    top: 15px;
    animation: spin 9s ease-in-out infinite;
}
/******************************
        What We Do
*******************************/
.what-we-do{
    position: relative;
    .bottom-btn{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: -50px;
        .primary-btn{
            padding: 15px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 4px 0px 0px #C25411;
            &:hover{
                box-shadow: 0px 2px 0px 0px #C25411;
            }
        }
    }
    .btn-group{
        position: relative;
        justify-content: center;
        margin-top: 50px;
        &::before,
        &::after{
            position: absolute;
            content: '';
            width: 30%;
            height: 1px;
            background: #5B86AC;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        &::after{
            right: 0;
            left: unset;
        }
    }
    .tringle-small-a{
        position: absolute;
        left: 20%;
        top: 10%;
    }
    .tringle-small-b{
        position: absolute;
        right: 20%;
        top: 20%;
        left: unset;
    }
}
.dash-line{
    position: absolute;
    left: 10%;
    top: 30%;
    animation: bounce 7s ease-in-out infinite;
}
.wave-shape{
    position: absolute;
    top: -150px;
    left: 0;
    z-index: -1;
}
.what-item-content{
    border-radius: 97px;
    background: #F4F5F9;
    padding: 13px;
    transition: 0.8s;
}
.what-item-img{
    border-radius: 97px;
    border: 4px solid #FFF;
    overflow: hidden;
    margin-bottom: 15px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.what-item-text{
    h5{
        color: #085FA9;
        font-family: 'Nunito Sans ExtraBold';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 110%;
        margin-bottom: 5px;
    }
}
.what-we-do-slider{
    .slick-list{
        margin: 0 -50px;
    }
    .slick-slide{
        margin: 140px 50px;
    }
    .slick-center{
        scale: 1.3;
        transition: 0.8s;
        .what-item-content{
            border-radius: 97px;
            background: #085FA9;
            box-shadow: 0px 6px 0px 0px #084C87;
        }
        .what-item-text{
            h5, p{
                color: #FFF;
            }
        }
    }
}
.slick-arrow {
    width: 49px;
    height: 49px;
    z-index: 1;
    background: #FFF1E9;
    box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.15);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border-radius: 50%;
}
.slick-arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-left: 2px solid;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    color: #000;
}
.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}
.slick-arrow:hover,
.slick-arrow:focus {
    background-color: #FF914D;
    box-shadow: 0px 6px 4px #FF914D;
}
.slick-arrow:hover::before,
.slick-arrow:focus::before{
    color: #FFF;
}
/******************************
        Why Choose Us
*******************************/
.why-choose{
    position: relative;
    padding-top: 80px;
    background: linear-gradient(180deg, #D7ECFD 1.96%, #F3F5F6 101.75%); 
    clip-path: polygon( 0% 1.964%,0% 1.964%,0.207% 2.081%,0.8% 2.395%,1.742% 2.857%,2.993% 3.413%,4.514% 4.011%,6.265% 4.6%,8.207% 5.128%,10.302% 5.542%,12.51% 5.792%,14.792% 5.824%,14.792% 5.824%,17.182% 5.582%,19.614% 5.091%,22.077% 4.415%,24.562% 3.621%,27.057% 2.773%,29.552% 1.937%,32.036% 1.177%,34.5% 0.558%,36.933% 0.146%,39.323% 0.006%,39.323% 0.006%,41.542% 0.146%,43.58% 0.498%,45.483% 1.01%,47.295% 1.63%,49.063% 2.306%,50.83% 2.985%,52.643% 3.617%,54.545% 4.149%,56.583% 4.529%,58.802% 4.705%,58.802% 4.705%,61.162% 4.63%,63.333% 4.32%,65.361% 3.829%,67.294% 3.215%,69.18% 2.531%,71.065% 1.833%,72.999% 1.176%,75.027% 0.616%,77.197% 0.207%,79.557% 0.006%,79.557% 0.006%,82.09% 0.164%,84.781% 0.727%,87.531% 1.596%,90.238% 2.671%,92.804% 3.853%,95.128% 5.043%,97.109% 6.141%,98.648% 7.049%,99.645% 7.666%,100% 7.894%,100% 95.972%,100% 95.972%,99.68% 96.122%,98.781% 96.524%,97.394% 97.103%,95.61% 97.788%,93.52% 98.505%,91.215% 99.18%,88.786% 99.74%,86.324% 100.112%,83.921% 100.223%,81.667% 100%,81.667% 100%,79.528% 99.404%,77.582% 98.534%,75.781% 97.465%,74.075% 96.27%,72.417% 95.023%,70.759% 93.799%,69.051% 92.671%,67.247% 91.712%,65.296% 90.998%,63.151% 90.601%,63.151% 90.601%,61.028% 90.575%,59.077% 90.868%,57.256% 91.41%,55.521% 92.13%,53.829% 92.956%,52.138% 93.817%,50.402% 94.643%,48.581% 95.362%,46.629% 95.903%,44.505% 96.196%,44.505% 96.196%,42.144% 96.27%,39.78% 96.196%,37.415% 95.991%,35.049% 95.672%,32.685% 95.255%,30.322% 94.756%,27.962% 94.193%,25.606% 93.582%,23.256% 92.938%,20.911% 92.28%,20.911% 92.28%,17.092% 91.477%,13.627% 91.245%,10.526% 91.469%,7.802% 92.036%,5.465% 92.829%,3.528% 93.736%,2.002% 94.64%,0.897% 95.428%,0.226% 95.985%,0% 96.196%,0% 1.964% );
    .tringle-small-a{
        left: 25%;
        top: 22%;
    }
    .jupiter{
        left: 15%;
        top: 30%;
    }
    .line-plane{
        right: 15%;
        left: unset;
        top: 20%;
    }
    .magnifying-glass{
        bottom: 10%;
        left: 20%;
        top: unset;
    }
}
.mb-60{
     margin-bottom: 60px;
}
.why-choose-middle-img{
    position: relative;
    .dash-circle{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .why-choose-middle{
        position: absolute;
        bottom: 25px;
        right: -80px;
    }
    .tringle-scale{
        top: 25%;
        right: 20%;
        left: unset;
    }
}
.why-text{
    text-align: right;
    h4{
        color: #1A1A1A;
        font-family: 'Nunito Sans ExtraBold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 81.818%;
        margin-bottom: 10px;
    }
    p{
        margin: 0;
    }
}
.why-choose-card{
    position: relative;
    margin-block: 40px;
    z-index: 1;
    transform: translateX(20px);
    &:hover{
        h4{
            color: #ed8f00;
        }
        .why-icon{
            background: #ed8f00;
            box-shadow: 0px 4px 0px 0px #C25411;
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.why-icon{
    position: absolute;
    right: -135px;
    top: 50%;
    transform: translateY(-50%);
    width: 119px;
    height: 120px;
    background: #054881;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 0px 0px #063C6B;
    transition: 0.5s;
    img{
        transition: 0.5s;
    }
}
.why-choose-content{
    .row{
        .col-lg-3:nth-child(1){
            .col-lg-12:nth-child(2){
                .why-choose-card{
                    transform: translateX(-40px);
                }
            }
        }
        .col-lg-3:nth-child(3){
            .why-choose-card{
                transform: translateX(-20px);
            }
            .why-icon{
                left: -135px;
                right: unset;
            }
            .why-text{
                text-align: left;
            }
            .col-lg-12:nth-child(2){
                .why-choose-card{
                    transform: translateX(40px);
                }
            }
        }
    }
}
/******************************
        NCERT
*******************************/
.ncert{
    position: relative;
    .red-cross{
        left: 20%;
        top: 25%;
    }
    .tringle-small-a {
        left: unset;
        right: 22%;
        top: 25%;
    }
}
.ncert-card{
    position: relative;
    border-radius: 37px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0px 13px 12px -3px rgba(0, 0, 0, 0.33);
    transition: 0.5s;
    height: 100%;
    &:hover{
        scale: 1.05;
    }
}
.ncert-top{
    background: linear-gradient(180deg, #FF914D 0%, #FFD1B4 99.75%);
    clip-path: polygon( 0% 27.075%,0% 27.075%,0.148% 22.684%,0.575% 18.518%,1.259% 14.633%,2.176% 11.085%,3.304% 7.93%,4.618% 5.224%,6.096% 3.022%,7.715% 1.38%,9.451% 0.354%,11.28% 0%,88.72% 0%,88.72% 0%,90.549% 0.354%,92.285% 1.38%,93.904% 3.022%,95.382% 5.224%,96.696% 7.93%,97.824% 11.085%,98.741% 14.633%,99.425% 18.518%,99.852% 22.684%,100% 27.075%,100% 100%,100% 100%,99.276% 99.629%,97.239% 98.623%,94.094% 97.139%,90.045% 95.338%,85.298% 93.377%,80.055% 91.417%,74.523% 89.616%,68.906% 88.132%,63.407% 87.126%,58.232% 86.755%,58.232% 86.755%,53.501% 87.087%,49.139% 87.993%,45.053% 89.341%,41.152% 90.998%,37.342% 92.832%,33.534% 94.71%,29.633% 96.498%,25.55% 98.064%,21.19% 99.276%,16.463% 100%,16.463% 100%,14.441% 100.138%,12.284% 100.218%,10.074% 100.25%,7.893% 100.245%,5.823% 100.213%,3.945% 100.164%,2.342% 100.107%,1.095% 100.055%,0.288% 100.015%,0% 100%,0% 27.075%);
    padding: 30px 20px;
    h4{
        color: #FFF;
        font-family: 'Nunito Sans ExtraBold';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 113.333%;
    }
}
.ncert-bottom{
    padding: 20px;
    padding-bottom: 30px;
    ul{
        list-style-type: disc;
        padding-left: 20px;
        li{
            font-family: 'Nunito Sans Bold';
            font-size: 17px;
            font-style: normal;
            font-weight: normal;
            line-height: 123.529%;
            margin-block: 10px;
            &::marker{
                color: #054881;
            }
            a{
                color: #054881;
            }
            &:hover{
                a{
                    color: #FF914D;
                }
            }
        }
    }
    .btn-group{
        width: 100%;
        bottom: -30px;
        left: 0;
        justify-content: center;
        position: absolute;
    }
}
/**********************
    About Us
**********************/
.about-us{
    position: relative;
    .tringle-scale{
        top: 10%;
        left: 15%;
    }
    .magnifying-glass {
        left: 47%;
        top: 10%;
    }
    .tringle-small-a {
        left: 15%;
        bottom: 30%;
        top: unset;
    }
    .red-cross{
        bottom: 30%;
        left: 46%;
        top: unset;
        right: unset;
    }
}
.counter{
    margin-top: 60px;
}
.counter-item{
    display: flex;
    gap: 9px;
    align-items: start;
    p{
        color: #000;
        font-family: 'Nunito Sans Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 150%;
        text-transform: uppercase;
    }
    h4{
        color: #000;
        font-family: 'Nunito Sans Bold';
        font-size: 58px;
        font-style: normal;
        font-weight: normal;
        line-height: 115.517%;
    }
    &:hover{
        .counter-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
/******************************
        Demo Classes
*******************************/
.demo-class{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
    }
    .contact-form{
        border-radius: 36px;
        background: #F5F5F5;
        padding: 30px;
    }
    .demo-class-boy{
        position: absolute;
        right: 138px;
        bottom: 66px;
    }
    .line-plane{
        left: 160px;
        bottom: unset;
        top: 15%;
    }
    .jupiter{
        left: 10%;
        top: unset;
        bottom: 30%;
    }
    .red-cross {
        right: 10%;
        top: 34%;
    }
}
.demo-class-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/******************************
     Testimonial
*******************************/
.testimonial{
    position: relative;
    padding-bottom: 60px;
    .jupiter {
        left: 10%;
        top: 25%;
    }
    .tringle-small-a {
        left: 40%;
        top: 25%;
    }
    .tringle-small-b {
        left: 12%;
        bottom: 15px;
        top: unset;
    }
    .line-plane {
        right: 20%;
        top: 10%;
        bottom: unset;
        left: unset;
    }
}
.testi-title{
    color: #000;
    font-family: 'Nunito Sans Bold';
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 120%;
    margin-bottom: 20px;
}
.testimonial-slider{
    p{
        font-style: italic;
        font-size: 20px;
    }
    .slick-dots{
        text-align: left;
    }
    .slick-dots{
        .slick-active{
            background: #054881;
        }
        li{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-inline: 10px;
            background: #D9D9D9;
        }
        li button {
            opacity: 0;
            width: 100%;
        }
        &::before{
            width: 100%;
        }
    }
}
.profile-img{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    outline: 1px dashed #000;
    outline-offset: 5px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        
    }
    
}
.testi-profile{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    p{
        font-size: 17px;
    }
}
.profile-name{
    color: #000;
    font-family: 'Nunito Sans Bold';
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    line-height: 164.706%;
}
.testimonial-img{
    position: relative;
    display: flex;
    align-items: start;
    gap: 50px;
    img{
        object-fit: contain;
        border-radius: 64px;
    }
}
.tringlefull-blue{
    position: absolute;
    left: 50px;
    top: 30px;
    z-index: -1;
    animation: bounce 8s ease-in-out infinite;
}
/******************************
       Featured Blogs
*******************************/
.featured-blogs{
    background: linear-gradient(180deg, #FFEEE3 1.96%, #FFF9F5 101.75%);
    clip-path: polygon( 0% 1.964%,0% 1.964%,0.207% 2.081%,0.8% 2.395%,1.742% 2.857%,2.993% 3.413%,4.514% 4.011%,6.265% 4.6%,8.207% 5.128%,10.302% 5.542%,12.51% 5.792%,14.792% 5.824%,14.792% 5.824%,17.182% 5.582%,19.614% 5.091%,22.077% 4.415%,24.562% 3.621%,27.057% 2.773%,29.552% 1.937%,32.036% 1.177%,34.5% 0.558%,36.933% 0.146%,39.323% 0.006%,39.323% 0.006%,41.542% 0.146%,43.58% 0.498%,45.483% 1.01%,47.295% 1.63%,49.063% 2.306%,50.83% 2.985%,52.643% 3.617%,54.545% 4.149%,56.583% 4.529%,58.802% 4.705%,58.802% 4.705%,61.162% 4.63%,63.333% 4.32%,65.361% 3.829%,67.294% 3.215%,69.18% 2.531%,71.065% 1.833%,72.999% 1.176%,75.027% 0.616%,77.197% 0.207%,79.557% 0.006%,79.557% 0.006%,82.09% 0.164%,84.781% 0.727%,87.531% 1.596%,90.238% 2.671%,92.804% 3.853%,95.128% 5.043%,97.109% 6.141%,98.648% 7.049%,99.645% 7.666%,100% 7.894%,100% 95.972%,100% 95.972%,99.68% 96.122%,98.781% 96.524%,97.394% 97.103%,95.61% 97.788%,93.52% 98.505%,91.215% 99.18%,88.786% 99.74%,86.324% 100.112%,83.921% 100.223%,81.667% 100%,81.667% 100%,79.528% 99.404%,77.582% 98.534%,75.781% 97.465%,74.075% 96.27%,72.417% 95.023%,70.759% 93.799%,69.051% 92.671%,67.247% 91.712%,65.296% 90.998%,63.151% 90.601%,63.151% 90.601%,61.028% 90.575%,59.077% 90.868%,57.256% 91.41%,55.521% 92.13%,53.829% 92.956%,52.138% 93.817%,50.402% 94.643%,48.581% 95.362%,46.629% 95.903%,44.505% 96.196%,44.505% 96.196%,42.144% 96.27%,39.78% 96.196%,37.415% 95.991%,35.049% 95.672%,32.685% 95.255%,30.322% 94.756%,27.962% 94.193%,25.606% 93.582%,23.256% 92.938%,20.911% 92.28%,20.911% 92.28%,17.092% 91.477%,13.627% 91.245%,10.526% 91.469%,7.802% 92.036%,5.465% 92.829%,3.528% 93.736%,2.002% 94.64%,0.897% 95.428%,0.226% 95.985%,0% 96.196%,0% 1.964% );
    padding-block: 100px;
    position: relative;
    .btn-group{
        justify-content: center;
        margin-top: 30px;
    }
    .tringle-scale {
        left: 30%;
        bottom: 8%;
        top: unset;
    }
    .tringle-small-a {
        right: 20%;
        top: 20%;
        left: unset;
    }
}
.featured-img{
    overflow: hidden;
    position: relative;
    overflow: hidden;
    border-radius: 41px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -5px;
        transition: 0.4s;
    }
    &::before{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        inset: 0;
        border-radius: 41px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.68) 100%);
        z-index: 1;
    }
    &:hover{
        img{
            scale: 1.05;
        }
    }
}
.featured-text{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 2;
    p{
        color: #FFF;
    }
}
.date{
    color: #FFF;
    font-family: 'Nunito Sans Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 14px;
}
.featured-blog-title{
    color: #FFF;
    font-family: 'Nunito Sans ExtraBold';
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 115%;
    margin-bottom: 5px;
    &:hover{
        color: #FF914D;
    }
}
.side-blog-content{
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-radius: 34px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08);
    img{
        border-radius: 34px;
    }
}
.featured-blog-text{
    width: 70%;
    .date{
        color: #000;
    }
    .featured-blog-title{
        color: #1A1A1A;
        &:hover{
            color: #FF914D;
        }
    }
    p{
        color: #202020;
    }
}
.blog-btn{
    color: #054881;
    font-family: 'Nunito Sans Bold';
}
/******************************
        FAQ
*******************************/
.faq{
    position: relative;
    .dec{
        text-align: left;
    }
    .jupiter {
        left: 30%;
        top: 40%;
    }
    .book{
        position: absolute;
        left: 15%;
        bottom: 20%;
        animation: bounce 7s ease-in-out infinite;
    }
    .tringle-small-a {
        left: 45%;
        top: 55%;
    }
    .line-plane {
        left: 41%;
        top: 0%;
    }
    .tringle-small-b {
        left: 45%;
        top: 55%;
    }
    .line-plane {
        position: absolute;
        left: 41%;
        top: 0%;
        animation: bounce 7s ease-in-out infinite;
    }
}
  .accordion__item {
    margin-bottom: 15px;
    transition: .5s;
    border-radius: 23px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08);
    padding: 20px;
  }
  
  .accordion__item:hover {
    transform: translateY(-5px)
  }
  
  .accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 10px 30px 10px 0px;
    color: #1A1A1A;
    font-size: 21px;
    text-decoration: none;
    font-family: 'Nunito Sans Bold';
    border-radius: 3px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: normal;
  }
  
  .accordion__title::after {
    content: ' ';
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    border-radius: 2px;
    right: 10px;
    top: 18px;
    transition: all .5s;
    transform: rotate(-45deg);
  }
  .accordion__title.accordion-active::after {
    transform: rotate(135deg);
    content: '';
    top: 22px;
  }
  .accordion__title::before{
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #054881;
    right: 0px;
    row-gap: 18px;
    border-radius: 50%;
  }
  .accordion__item .accordion-active {
    border-color: #fff;
  }
  
  .accordion__item .accordion__content {
    font-family: 'Nunito Sans Regular';
    padding: 5px 12px 10px 12px;
    padding-left: 0;
    line-height: 150%;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 18px;
    display: none;
    color: #202020;
  }
/******************************
        Tution
*******************************/
.tution{
    .container{
        background: linear-gradient(180deg, rgba(5, 72, 129, 0.59) 0%, #054881 100%), url(../img/offer-bg.webp);
        background-repeat: no-repeat;
        background-size: cover;
        padding-block: 130px;
        border-radius: 66px;
    }
    .section-title, .dec{
        color: #FFF;
    }
    .jupiter {
        left: 20%;
        bottom: 0;
        top: unset;
    }
    .tringle-small-b {
        left: 10%;
        top: 20%;
    }
    .tringle-small-a {
        right: 10%;
        top: 20%;
        left: unset;
    }
}
/******************************
        Footer
*******************************/
footer{
    clip-path: polygon( 0% 6.695%,0% 6.695%,0.205% 6.642%,0.772% 6.514%,1.634% 6.358%,2.721% 6.224%,3.964% 6.158%,5.294% 6.207%,6.642% 6.421%,7.939% 6.846%,9.116% 7.53%,10.104% 8.521%,10.104% 8.521%,11.567% 9.999%,13.163% 10.846%,14.825% 11.173%,16.484% 11.093%,18.074% 10.717%,19.526% 10.159%,20.774% 9.529%,21.749% 8.941%,22.383% 8.505%,22.61% 8.335%,22.61% 8.335%,22.961% 8.128%,23.949% 7.561%,25.477% 6.718%,27.448% 5.683%,29.764% 4.538%,32.329% 3.368%,35.044% 2.255%,37.814% 1.282%,40.54% 0.533%,43.125% 0.092%,43.125% 0.092%,46.179% 0.05%,49.02% 0.502%,51.702% 1.322%,54.278% 2.382%,56.801% 3.555%,59.323% 4.713%,61.897% 5.728%,64.577% 6.473%,67.415% 6.822%,70.465% 6.646%,70.465% 6.646%,72.477% 6.262%,74.235% 5.788%,75.803% 5.256%,77.245% 4.7%,78.624% 4.151%,80.004% 3.643%,81.447% 3.208%,83.018% 2.879%,84.78% 2.689%,86.797% 2.671%,86.797% 2.671%,88.263% 2.861%,89.903% 3.292%,91.639% 3.903%,93.394% 4.632%,95.09% 5.418%,96.652% 6.199%,98.001% 6.913%,99.06% 7.5%,99.752% 7.897%,100% 8.043%,100% 100%,0% 100%,0% 6.695% );
    position: relative;
    background: #054881;
    height: 520px;
}
.footer-content{
    padding-top: 70px;
    width: 100%;
    height: 90%;
    position: absolute;
    inset: 0;
    top: 15px;
    display: flex;
    align-items: center;
    background: #161616;
    clip-path: polygon( 0% 2.273%,0% 2.273%,0.205% 2.219%,0.772% 2.091%,1.634% 1.936%,2.721% 1.802%,3.964% 1.736%,5.294% 1.785%,6.642% 1.999%,7.939% 2.424%,9.116% 3.108%,10.104% 4.098%,10.104% 4.098%,11.567% 5.62%,13.163% 6.587%,14.825% 7.091%,16.484% 7.226%,18.074% 7.085%,19.526% 6.76%,20.774% 6.346%,21.749% 5.935%,22.383% 5.62%,22.61% 5.494%,22.61% 5.494%,22.961% 5.367%,23.949% 5.019%,25.477% 4.498%,27.448% 3.853%,29.764% 3.134%,32.329% 2.389%,35.044% 1.666%,37.814% 1.015%,40.54% 0.485%,43.125% 0.125%,43.125% 0.125%,46.179% 0.01%,49.02% 0.266%,51.702% 0.797%,54.278% 1.507%,56.801% 2.297%,59.323% 3.073%,61.897% 3.738%,64.577% 4.194%,67.415% 4.347%,70.465% 4.098%,70.465% 4.098%,72.477% 3.715%,74.235% 3.241%,75.803% 2.709%,77.245% 2.153%,78.624% 1.604%,80.004% 1.096%,81.447% 0.661%,83.018% 0.333%,84.78% 0.143%,86.797% 0.125%,86.797% 0.125%,88.263% 0.315%,89.903% 0.746%,91.639% 1.357%,93.394% 2.086%,95.09% 2.871%,96.652% 3.651%,98.001% 4.366%,99.06% 4.952%,99.752% 5.349%,100% 5.495%,100% 100%,0% 100%,0% 2.273% );
    .logo{
        img{
            filter: brightness(0) invert(1);
        }
        margin-bottom: 10px;
    }
    p,a{
        color: #F6F6F6;
    }
    a:hover{
        color: #FF914D;
    }
    ul{
        li{
            margin-bottom: 16px;
        }
    }
    .dec{
        text-align: left;
    }
}
.social-links{
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    a{
        width: 46px;
        height: 44px;
        border-radius: 11px;
        border: 2px solid #BFBFBF;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        &:hover{
            background: #d66118;
            border: 2px solid #d66118;
        }
    }
}
.footer-title{
    color: #FFF;
    font-family: 'Nunito Sans Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 81.818%;
    margin-bottom: 13px;
}
.footer-bar{
    display: inline-block;
    width: 23px;
    height: 3px;
    background: #FF914D;
    margin-bottom: 12px;
}
.copyright{
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-block: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    p{
        margin: 0;
    }
}
/******************************************
             Responsive 
********************************************/
@media (max-width: 1600px),
(max-width: 1560px) {
    .form-control{
        padding: 16px 18px;
    }
    .banner{
        height: 970px;
    }
    .banner-content {
        h1 {
            font-size: 54px;
        }
    }
    .tringle-blue {
        width: 10%;
    }
    .pen-pot {
        bottom: -30px;
        right: 12px;
    }
    .red-cross {
        right: 2%;
        top: 34%;
    }
    .jupiter {
        left: 5%;
        top: 25%;
    }
    .line-plane {
        left: 0;
        bottom: 20%;
        width: 10%;
    }
    .wave-shape {
        top: -140px;
    }
    .about-us {
        .tringle-scale {
            left: 8%;
        }
        .tringle-small-a {
            left: 9%;
            bottom: 30%;
        }
    }
    .demo-class{
        height: 1000px;
        .demo-class-boy {
            right: 86px;
            bottom: 70px;
            width: 50%;
        }
        .line-plane {
            left: 80px;
            top: 11%;
        }
        .jupiter {
            left: 3%;
            top: unset;
            bottom: 30%;
        }
    }
    .testimonial {
        .jupiter {
            left: 7%;
            top: 20%;
        }
        .line-plane {
            right: 18%;
        }
        .tringle-small-b {
            left: 8%;
        }
    }
}
@media (max-width: 1440px),
(max-width: 1366px) {
    .title{
        font-size: 32px;
    }
    .right {
        padding: 20px;
    }
    .form-control{
        padding: 14px 8px;
        font-size: 14px;
    }
    .form-control::placeholder {
        color: #000;
        font-size: 14px;
    }
    form .primary-btn {
        font-size: 16px;
        padding: 10px 30px;
    }
    .sec-gap{
        padding: 40px 0;
    }
    p{
        font-size: 15px;
    }
    .primary-btn{
        font-size: 15px;
        padding: 12px 22px;
    }
    .flex-box {
        .primary-btn {
            padding: 8px 16px;
        }
    }
    .sub-title{
        font-size: 16px;
    }
    .section-title{
        font-size: 40px;
    }
    .dec{
        font-size: 16px;
    }
    .logo{
       width: 200px;
    }
    #menu{
        padding-inline: 7px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 8px;
    }
    #menu>.main-menu>ul>li>a{
        font-size: 15px;
        padding: 16px 2px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 21px;
    }
    #menu > .main-menu > ul > li {
        &::before {
            left: 12px;
            bottom: 12px;
        }
    }
    #menu ul ul li a{
        font-size: 14px;
    }
    header.sticky{
        padding-block: 2px;
    }
    .banner {
        padding-bottom: 320px;
        padding-top: 170px;
        height: 760px;
        h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }
        .dec{
            margin-bottom: 15px;
        }
    }
    .banner-img{
        bottom: 60px;
        right: 15%;
    }
    .jupiter {
        left: 3%;
        top: 25%;
    }
    .line-plane {
        bottom: 25%;
        width: 9%;
    }
    .banner-book {
        left: -50px;
    }
    .red-cross {
        right: 0%;
        top: 32%;
    }
    .tringle-orange {
        right: -50px;
        bottom: -160px;
    }
    .pen-pot {
        bottom: -30px;
        right: -10px;
    }
    .wave-shape {
        top: -110px;
    }
    .what-item-text {
        h5 {
            font-size: 24px;
        }
    }
    .what-we-do {
        .bottom-btn {
            .primary-btn {
                padding: 12px;
            }
        }
    }
    .what-we-do-slider {
        .slick-slide {
            margin: 90px 50px;
            margin-bottom: 125px;
        }
    }
    .why-text {
        h4 {
            font-size: 20px;
        }
    }
    .why-icon {
        right: -110px;
        width: 99px;
        height: 100px;
    }
    .why-choose-content {
        & .row {
            & .col-lg-3:nth-child(3) {
                .why-icon {
                    left: -110px;
                }
            }
        }
    }
    .why-choose-card {
        margin-block: 50px;
    }
    .why-choose {
        .magnifying-glass {
            bottom: 4%;
            left: 16%;
        }
        .tringle-small-a{
            left: 33%;
            top: 31%;
        }
    }
    .demo-class {
        height: 850px;
        .demo-class-boy {
            right: 63px;
            bottom: 49px;
        }
    }
    .ncert-top {
        padding: 20px 15px;
        h4 {
            font-size: 24px;
        }
    }
    .ncert-bottom {
        padding: 15px;
        & ul {
            li {
                font-size: 15px;
            }
        }
    }
    .counter-item {
        h4 {
            font-size: 46px;
        }
        p{
            font-size: 14px;
        }
    }
    .testi-title{
        font-size: 28px;
    }
    .testimonial{
        p{
            font-size: 17px;
        }
    }
    .profile-text{
        p{
            font-size: 15px;
        }
    }
    .profile-name{
        font-size: 15px;
    }
    .testimonial-img{
        img{
            width: 46%;
        }
        .tringlefull-blue{
            width: 50%;
            top: 60px;
        }
    }
    .testimonial-slider{
        .slick-list{
            margin: 0 -20px;
        }
        .slick-slide{
            margin: 0 20px;
        }
    }
    .side-blog-content{
        padding: 10px;
    }
    .featured-blog-text {
        width: 85%;
    }
    .featured-blog-title{
        font-size: 28px;
    }
    .accordion__item {
        margin-bottom: 10px;
        padding: 12px;
        border-radius: 15px;
    }
    .accordion__item .accordion__title{
        font-size: 18px;
    }
    .accordion__item .accordion__content{
        font-size: 16px;
    }
    .social-links{
        a{
            width: 36px;
            height: 35px;
            padding: 8px;
        }
    }
    footer{
        height: 490px;
    }
    .footer-title{
        font-size: 18px;
    }
    .footer-content{
        p,a{
            font-size: 16px;
        }
    }
}
@media (max-width: 1024px){
    .form-control {
        padding: 12px 8px;
        font-size: 13px;
    }
    .form-control::placeholder{
        font-size: 13px;
    }
    .section-title {
        font-size: 32px;
    }
    .dec {
        font-size: 16px;
    }
    .title{
        font-size: 26px;
        margin-bottom: 10px;
    }
    p{
        font-size: 14px;
    }
    .primary-btn {
        font-size: 14px;
        padding: 11px 18px;
    }
    .popup .popup__content {
        width: 60%;
    }
    .logo {
        width: 190px;
    }
    #menu {
        padding-inline: 9px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 13px;
        padding: 17px 0px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        right: -8px;
        top: 22px;
        width: 6px;
        height: 6px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 8px;
    }
    #menu ul ul li a{
        font-size: 16px;
    }
    .banner{
        padding-bottom: 290px;
        h1 {
            font-size: 38px;
        }
    }
    .circle-sky-blue {
        bottom: -40px;
    }
    .tringle-orange {
        bottom: -100px;
    }
    .jupiter {
        left: 1%;
        top: 17%;
    }
    .red-cross {
        right: -7%;
    }
    .banner-book {
        left: -90px;
        bottom: 60px;
    }
    .magnifying-glass {
        left: 37%;
        top: 15%;
    }
    .tringle-small-b {
        left: 67%;
        top: -60px;
    }
    .pen-pot {
        right: -30px;
    }
    .wave-shape {
        top: -88px;
    }
    .what-item-text {
        h5 {
            font-size: 19px;
        }
    }
    .what-item-img {
        border-radius: 35px;
        margin-bottom: 8px;
    }
    .what-item-content {
        border-radius: 33px;
    }
    .what-we-do-slider {
        .slick-center {
            .what-item-content {
                border-radius: 33px;
            }
        }
        .slick-list{
            margin: 0 -40px;
        }
        .slick-slide{
            margin: 100px 40px;
            margin-bottom: 115px;
        }
    }
    .why-choose-middle-img {
        .why-choose-middle {
            bottom: 30px;
            right: -50px;
        }
    }
    .why-icon {
        right: -92px;
        width: 79px;
        height: 79px;
        padding: 18px;
    }
    .why-choose-card {
        position: relative;
        margin-block: 40px;
        z-index: 1;
        transform: translateX(25px);
    }
    .why-text{
        h4{
            line-height: 110.818%;
            font-size: 17px;
            margin-bottom: 3px;
        }
    }
    .why-choose-content {
        & .row {
            & .col-lg-3:nth-child(1) {
                & .col-lg-12:nth-child(2) {
                    .why-choose-card {
                        transform: translateX(-23px);
                    }
                }
            }
            .col-lg-3:nth-child(3) {
                .why-icon {
                    left: -90px;
                }
            }
            .col-lg-3:nth-child(3) {
                .col-lg-12:nth-child(2) {
                    .why-choose-card {
                        transform: translateX(25px);
                    }
                }
            }
        }
    }
    .why-choose{
        .line-plane {
            right: 12%;
            left: unset;
            top: 20%;
        }
        .magnifying-glass {
            bottom: 4%;
            left: 2%;
        }
    }
    .ncert-top {
        padding: 15px;
        h4 {
            font-size: 22px;
        }
    }
    .ncert-bottom {
        padding: 5px;
        padding-bottom: 25px;
        ul {
            li {
                font-size: 13px;
            }
        }
        .btn-group{
            bottom: -20px;
        }
    }
    .ncert {
        .red-cross {
            left: 12%;
        }
        .tringle-small-a {
            right: 16%;
        }
    }
    .about-us {
        .tringle-scale {
            left: 3%;
        }
        .magnifying-glass {
            left: 44%;
        }
    }
    .demo-class {
        height: 790px;
        .demo-class-boy {
            right: -2px;
            bottom: 59px;
        }
        .contact-form{
            padding: 20px;
        }
        .line-plane {
            left: 20px;
            top: 8%;
        }
        .jupiter{
            left: -1%;
        }
        .red-cross {
            right: 8%;
            top: 20%;
        }
    }
    .testimonial {
        p{
            font-size: 15px;
        }
        .line-plane {
            right: 12%;
        }
        .jupiter {
            left: 2%;
            top: 15%;
        }
    }
    .testi-profile{
        justify-content: space-between;
    }
    .profile-img {
        width: 58px;
        height: 58px;
    }
    .profile-text{
        .profile-name{
            font-size: 14px
        }
        p{
            font-size: 12px;
        }
    }
    .featured-text{
        padding: 20px;
    }
    .date{
        font-size: 15px;
        margin-bottom: 5px;
    }
    .featured-blog-title{
        font-size: 20px;
    }
    .featured-blog-text{
         p{
            margin-bottom: 5px;
        }
    }
    .side-blog-content {
        gap: 15px;
    }
    .accordion__item .accordion__title {
        font-size: 17px;
    }
    .accordion__item .accordion__content {
        font-size: 15px;
    }
    .accordion__item {
        margin-bottom: 8px;
        padding: 8px;
    }
    .tution {
        .container {
            padding-block: 100px;
        }
    }
    footer{
        height: 420px;
    }
    .footer-content {
        p, a {
            font-size: 15px;
        }
        ul {
            li {
                margin-bottom: 10px;
            }
        }
        .dec {
            margin-bottom: 10px;
        }
    }
    .copyright {
        margin-top: 0;
        padding-block: 10px;
    }
}
@media (max-width: 992px){
    .main-menu{
        gap: 0;
    }
    .main-menu ul {
        padding: 15px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
    }
    .enq-btn{
        font-size: 14px;
        padding: 20px 10px;
    }
    .flex-box{
        .primary-btn{
            background: #FF914D;
            color: #FFF;
        }
    }
    #menu>.main-menu>ul>li>a {
        font-size: 15px;
        padding: 17px 0px;
    }
    #menu > .main-menu > ul > li{
        &::before{
            top: 40px;
        }
    }
    #menu .main-menu ul ul {
        transform: unset;
        padding: 0;
    }
    .popup .popup__content {
        width: 50%;
    }
    .left{
        background: #FFF;
        padding: 5px;
    }
    p{
        font-size: 16px;
    }
        .fixed-btn {
        right: 37px;
    }
    .section-title{
        font-size: 28px;
    }
    #menu {
        padding-block: 5px;
    }
    .banner{
        padding-bottom: 240px;
        height: 670px;
        h1{
            font-size: 36px;
        }
    }
    .jupiter {
        top: 19%;
    }
    .line-plane {
        bottom: 20%;
        width: 12%;
    }
    .banner-book {
        bottom: 20px;
    }
    .red-cross {
        right: -14%;
    }
    .tringle-small-b {
        left: 85%;
    }
    .magnifying-glass {
        top: 0%;
    }
    .sec-gap {
        padding: 30px 0;
    }
    .what-we-do {
        .tringle-small-b {
            right: 11%;
            top: 15%;
        }
        .tringle-small-a {
            top: 5%;
        }
        .btn-group{
            margin-top: 20px;
            &::before, &::after {
                width: 23%;
            }
        }
        .bottom-btn{
            .primary-btn{
                padding: 10px;
            }
        }
    }
    .dash-line {
        left: 0%;
        top: 13%;
    }
    .what-we-do-slider {
        .slick-slide {
            margin-bottom: 125px;
        }
    }
    .mb-60{
        margin-bottom: 30px;
    }
    .why-choose-content{
        .row{
            .col-lg-6{
                display: none;
            }
            .col-lg-3:nth-child(1) {
                .col-lg-12:nth-child(2) {
                    .why-choose-card {
                        transform: unset;
                    }
                }
            }
            .col-lg-3:nth-child(3) {
                .why-choose-card {
                    transform: unset;
                }
                .why-text{
                    text-align: center;
                }
                .why-icon {
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                }
                .col-lg-12:nth-child(2) {
                    .why-choose-card {
                        transform: unset;
                    }
                }
            }
        }
    }
    .why-choose-card {
        transform: unset;
        padding-top: 80px;
        margin-block: 0;
        margin-bottom: 20px;
    }
    .why-text {
        text-align: center;
    }
    .why-icon{
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 64px;
        height: 61px;
        padding: 16px;
    }
    .why-choose {
        padding-bottom: 70px;
        padding-top: 70px;
        .jupiter {
            left: 1%;
            top: 18%;
        }
        .tringle-small-a {
            left: 45%;
        }
        .line-plane {
            top: 10%;
        }
        .magnifying-glass {
            left: 46%;
            bottom: 3%;
        }
    }
    .ncert{
        .red-cross{
            left: 0;
            top: 13%;
        }
        .tringle-small-a {
            top: 15%;
        }
    }
    .ncert-top{
        border-radius: 30px 30px 0 0;
        h4{
            font-size: 20px;
        }
    }
    .ncert-bottom {
        padding: 10px;
        ul {
            li {
                font-size: 14px;
            }
        }
    }
    .about-us {
        .magnifying-glass {
            right: 8%;
            left: unset;
        }
        .red-cross {
            bottom: 24%;
            left: unset;
            right: 3%;
        }
        .tringle-small-a {
            left: 3%;
            bottom: 50%;
        }
    }
    .counter {
        margin-top: 30px;
    }
    .counter-item {
        h4 {
            font-size: 38px;
        }
    }
    .demo-class{
        .container{
            align-items: start;
            margin-top: 100px;
        }
        .demo-class-boy {
            right: 7px;
            bottom: 73px;
            width: 35%;
        }
        .jupiter{
            left: 1%;
            bottom: 10%;
        }
    }
    .testimonial{
        padding-bottom: 20px;
        .line-plane{
            top: -4%;
        }
        .jupiter {
            top: 0%;
        }
        .tringle-small-a {
            left: 19%;
        }
        .tringle-small-b {
            left: unset;
            right: 10%;
            bottom: 100px;
        }
    }
    .testi-profile{
        justify-content: center;
    }
    .testimonial-img{
        display: none;
    }
    .testi-text{
        text-align: center;
    }
    .testi-title{
        margin-bottom: 5px;
    }
    .testimonial-slider{
        .slick-dots{
            text-align: center;
        }
    }
    .featured-blogs{
        padding-bottom: 160px;
        .jupiter {
            top: 12%;
        }
        .tringle-small-a {
            top: 7%;
        }
    }
    .featured-text{
        .date{
            font-size: 16px;
        }
    }
    .featured-blog-title {
        font-size: 24px;
    }
    .faq {
        .line-plane {
            right: 12%;
            left: unset;
        }
        .tringle-small-a {
            top: -5%;
        }
        .book {
            bottom: -6%;
        }
        .jupiter {
            left: 5%;
            top: -7%;
        }
    }
    .accordion__item .accordion__content {
        font-size: 16px;
    }
    .tution {
        border-radius: 40px;
        .container {
            padding-block: 60px;
        }
    }
    footer {
        height: 655px;
    }
    .footer-title{
        margin-bottom: 9px;
    }
    .footer-content {
        top: 25px;
        p, a {
            font-size: 16px;
        }
    }
    .copyright{
        padding-block: 15px;
    }
}

@media (max-width: 575px){
    .enq-btn {
        font-size: 13px;
        padding: 14px 7px;
    }
    .fixed-btn{
        right: 30px;
    }
    .wp{
        width: 82%;
    }
    .fixed-contact{
        right: -3px;
    }
    .popup .popup__content {
        width: 90%;
    }
    .call{
        width: 30px;
        height: 30px;
        padding: 9px;
    }
    .title{
        font-size: 22px;
    }
    .section-title{
        font-size: 24px
    }
    p{
        font-size: 14px;
    }
    .primary-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
    .dec{
        font-size: 14px
    }
    .banner{
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 85%, 20% 87%, 40% 90%, 60% 88%, 80% 85%, 100% 87%, 100% 100%, 0% 100%);
        padding-top: 130px;
        padding-bottom: 210px;
        height: 560px;
        h1{
            font-size: 28px;
        }
    }
    .banner-img {
        bottom: -6px;
        right: 25%;
        width: 50%;
        z-index: 1;
    }
    .tringle-orange{
        bottom: -30px;
        width: 60%;
        right: 0;
    }
    .pen-pot {
        bottom: -10px;
        right: -20px;
        width: 15%;
    }
    .magnifying-glass {
        top: 25%;
        width: 16%;
        left: 20%;
    }
    .line-plane {
        bottom: 27%;
        width: 20%;
    }
    .banner-book{
        display: none;
    }
    .tringle-small-b {
        left: unset;
        right: -25%;
    }
    .tringle-small-c {
        left: 12%;
    }
    .tringle-scale{
        display: none;
    }
    .red-cross{
        width: 20%;
        right: -25%;
    }
    .pencil{
        display: none;
    }
    .jupiter {
        top: 20%;
        width: 10%;
    }
    .banner-content{
        width: 100%;
        text-align: center;
        .dec{
            text-align: center;
        }
        .btn-group{
            justify-content: center;
        }
    }
    .what-we-do-slider{
        padding-inline: 50px;
    }
    .what-item-content {
        padding: 6px;
    }
    .what-item-text{
        font-size: 17px
    }
    .what-we-do{
        .bottom-btn{
            margin-bottom: -25px;
            .primary-btn{
                padding: 5px;
            }
        }
    }
    .slick-arrow{
        width: 39px;
        height: 39px;
        box-shadow: none;
        &:hover,
        &:focus{
            box-shadow: none;
        }
    }
    .slick-next, .slick-prev{
        top: 30%;
    }
    .slick-next{
        right: -5px;
    }
    .slick-prev{
        left: -5px;
    }
    .what-we-do {
        .tringle-small-a {
            left: 10%;
        }
        .tringle-small-b {
            right: 9%;
            top: 17%;
        }
        .dash-line {
            left: 0%;
            top: 150px;
            width: 20%;
        }
        .btn-group{
            &::before, &::after{
                display: none;
            }
        }
    }
    .what-we-do-slider {
        .slick-slide {
            margin: 65px 40px;
            margin-bottom: 90px;
        }
    }
    .why-choose {
        padding-bottom: 100px;
        .line-plane {
            display: none;
        }
        .jupiter {
            top: 10%;
        }
        .magnifying-glass {
            display: none;
        }
        .tringle-small-a {
            left: 85%;
            top: 8%;
        }
    }
    .ncert {
        .red-cross {
            display: none;
        }
    }
    .about-us {
        .magnifying-glass {
            right: 2%;
            top: 2%;
        }
        .tringle-small-a {
            right: 5%;
            left: unset;
            bottom: 38%;
        }
        .red-cross{
            display: none;
        }
    }
    .counter-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        h4{
            font-size: 28px;
        }
        p{
            font-size: 12px;
        }
    }
    .counter-icon{
        img{
            width: 60%;
        }
    }
    .demo-class {
        height: 885px;
        .contact-form {
            padding: 10px;
            border-radius: 16px;
        }
        .demo-class-boy {
            display: none;
        }
    }
    .testimonial {
        .tringle-small-a {
            left: 3%;
            top: 20%;
        }
        .tringle-small-b {
            bottom: 120px;
        }
        p{
            font-size: 14px;
        }
    }
    .testimonial {
        .line-plane {
            top: -13%;
        }
    }
    .testi-title {
        font-size: 20px;
    }
    .profile-img{
        width: 38px;
        height: 38px;
    }
    .profile-text{
        p, .profile-name{
            font-size: 12px;
        }
    }
    .featured-blogs {
        padding-bottom: 205px;
        clip-path: polygon(0% 1.964%, 0.207% 2.081%, 0.8% 2.395%, 1.742% 2.857%, 2.993% 3.413%, 
        4.514% 4.011%, 6.265% 4.6%, 8.207% 5.128%, 10.302% 5.542%, 12.51% 5.792%, 
        14.792% 5.824%, 17.182% 5.582%, 19.614% 5.091%, 22.077% 4.415%, 
        24.562% 3.621%, 27.057% 2.773%, 29.552% 1.937%, 32.036% 1.177%, 
        34.5% 0.558%, 36.933% 0.146%, 39.323% 0.006%, 41.542% 0.146%, 
        43.58% 0.498%, 45.483% 1.01%, 47.295% 1.63%, 49.063% 2.306%, 
        50.83% 2.985%, 52.643% 3.617%, 54.545% 4.149%, 56.583% 4.529%, 
        58.802% 4.705%, 61.162% 4.63%, 63.333% 4.32%, 65.361% 3.829%, 
        67.294% 3.215%, 69.18% 2.531%, 71.065% 1.833%, 72.999% 1.176%, 
        75.027% 0.616%, 77.197% 0.207%, 79.557% 0.006%, 82.09% 0.164%, 
        84.781% 0.727%, 87.531% 1.596%, 90.238% 2.671%, 92.804% 3.853%, 
        95.128% 5.043%, 97.109% 6.141%, 98.648% 7.049%, 99.645% 7.666%, 
        100% 7.894%, 100% 100%, 0% 100%);
        padding-bottom: 40px;
    }
    .featured-blog-title {
        font-size: 22px;
    }
    .side-blog-content{
        flex-direction: column;
        border-radius: 13px;
        img{
            border-radius: 13px;
        }
    }
    .featured-text{
        padding: 13px;
    }
    .featured-img{
        border-radius: 13px;
            &::before {
            border-radius: 13px;
        }
    }
    .side-blog-img{
        width: 100%;
        img{
            width: 100%;
            object-fit: cover;
        }
    }
    .featured-blog-text{
        width: 100%;
        padding-inline: 15px;
    }
    .accordion__item .accordion__title {
        font-size: 16px;
        padding: 5px 30px 5px 0px;
    }
    .accordion__item .accordion__content {
        font-size: 14px;
    }
    .accordion__title::after {
        top: 13px;
    }
    .accordion__title.accordion-active::after {
        top: 17px;
    }
    .faq{
        .mb-20{
            text-align: center;
            p{
                text-align: center;
            }
        }
        .book{
            display: none;
        }
        .jupiter{
            display: none;
        }
        .tringle-small-a{
            left: 13%;
        }
        .line-plane {
            right: 5%;
            top: -7%;
        }
    }
    .tution {
        .container {
            padding-block: 40px;
            border-radius: 0;
            padding-bottom: 150px;
        }
        .jupiter {
            left: 20%;
            bottom: -20px;
        }
    }
    footer{
        background: #05488138;
        height: 970px;
        margin-top: -152px;
        .logo{
            margin-inline: auto;
        }
    }
    .social-links{
        justify-content: center;
    }
    .footer-content{
        text-align: center;
        bottom: 20px;
        top: unset;
        height: 94%;
        .dec{
            text-align: center;
            margin-bottom: 5px;
        }
        p, a{
            font-size: 14px;
        }
        ul{
            li{
                margin-bottom: 6px;
            }
        }
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: -8px;
    }
    .footer-bar{
        margin-bottom: 0;
    }
    .copyright{
        flex-direction: column;
        text-align: center;
    }
}