@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap);

html {
    font-size: 16px;
    overflow-x: hidden
}

body {
    position: relative;
    font-family: Poppins, sans-serif;
    background: #fff;
    overflow-x: hidden
}

@font-face {
    font-family: 'Neutra Text';
    src: url('../fonts/NeutraText-Bold.eot');
    src: url('../fonts/NeutraText-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/NeutraText-Bold.woff2') format('woff2'), url('../fonts/NeutraText-Bold.woff') format('woff'), url('../fonts/NeutraText-Bold.ttf') format('truetype'), url('../fonts/NeutraText-Bold.svg#NeutraText-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #2A60AB;
    --primary-color: #278034;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #828282
}

h1,
h2,
h3,
h4 {
    color: #000;
    font-family: 'Neutra Text'
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

a:hover,
button:hover {
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

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

figure {
    margin: 0
}

section {
    padding: 5rem 0
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--theme-color);
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.loader {
    position: relative;
    width: 75px;
    height: 100px
}

.loader__bar {
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 50%;
    background: #fff;
    transform-origin: center bottom;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, .2)
}

.loader__bar:first-child {
    left: 0;
    transform: scale(1, .2);
    -webkit-animation: barUp1 4s infinite;
    animation: barUp1 4s infinite
}

.loader__bar:nth-child(2) {
    left: 15px;
    transform: scale(1, .4);
    -webkit-animation: barUp2 4s infinite;
    animation: barUp2 4s infinite
}

.loader__bar:nth-child(3) {
    left: 30px;
    transform: scale(1, .6);
    -webkit-animation: barUp3 4s infinite;
    animation: barUp3 4s infinite
}

.loader__bar:nth-child(4) {
    left: 45px;
    transform: scale(1, .8);
    -webkit-animation: barUp4 4s infinite;
    animation: barUp4 4s infinite
}

.loader__bar:nth-child(5) {
    left: 60px;
    transform: scale(1, 1);
    -webkit-animation: barUp5 4s infinite;
    animation: barUp5 4s infinite
}

.loader__ball {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    -webkit-animation: ball 4s infinite;
    animation: ball 4s infinite
}

@-webkit-keyframes ball {
    0% {
        transform: translate(0, 0)
    }

    5% {
        transform: translate(8px, -14px)
    }

    10% {
        transform: translate(15px, -10px)
    }

    17% {
        transform: translate(23px, -24px)
    }

    20% {
        transform: translate(30px, -20px)
    }

    27% {
        transform: translate(38px, -34px)
    }

    30% {
        transform: translate(45px, -30px)
    }

    37% {
        transform: translate(53px, -44px)
    }

    40% {
        transform: translate(60px, -40px)
    }

    50% {
        transform: translate(60px, 0)
    }

    57% {
        transform: translate(53px, -14px)
    }

    60% {
        transform: translate(45px, -10px)
    }

    67% {
        transform: translate(37px, -24px)
    }

    70% {
        transform: translate(30px, -20px)
    }

    77% {
        transform: translate(22px, -34px)
    }

    80% {
        transform: translate(15px, -30px)
    }

    87% {
        transform: translate(7px, -44px)
    }

    90% {
        transform: translate(0, -40px)
    }

    100% {
        transform: translate(0, 0)
    }
}

@keyframes ball {
    0% {
        transform: translate(0, 0)
    }

    5% {
        transform: translate(8px, -14px)
    }

    10% {
        transform: translate(15px, -10px)
    }

    17% {
        transform: translate(23px, -24px)
    }

    20% {
        transform: translate(30px, -20px)
    }

    27% {
        transform: translate(38px, -34px)
    }

    30% {
        transform: translate(45px, -30px)
    }

    37% {
        transform: translate(53px, -44px)
    }

    40% {
        transform: translate(60px, -40px)
    }

    50% {
        transform: translate(60px, 0)
    }

    57% {
        transform: translate(53px, -14px)
    }

    60% {
        transform: translate(45px, -10px)
    }

    67% {
        transform: translate(37px, -24px)
    }

    70% {
        transform: translate(30px, -20px)
    }

    77% {
        transform: translate(22px, -34px)
    }

    80% {
        transform: translate(15px, -30px)
    }

    87% {
        transform: translate(7px, -44px)
    }

    90% {
        transform: translate(0, -40px)
    }

    100% {
        transform: translate(0, 0)
    }
}

@-webkit-keyframes barUp1 {
    0% {
        transform: scale(1, .2)
    }

    40% {
        transform: scale(1, .2)
    }

    50% {
        transform: scale(1, 1)
    }

    90% {
        transform: scale(1, 1)
    }

    100% {
        transform: scale(1, .2)
    }
}

@keyframes barUp1 {
    0% {
        transform: scale(1, .2)
    }

    40% {
        transform: scale(1, .2)
    }

    50% {
        transform: scale(1, 1)
    }

    90% {
        transform: scale(1, 1)
    }

    100% {
        transform: scale(1, .2)
    }
}

@-webkit-keyframes barUp2 {
    0% {
        transform: scale(1, .4)
    }

    40% {
        transform: scale(1, .4)
    }

    50% {
        transform: scale(1, .8)
    }

    90% {
        transform: scale(1, .8)
    }

    100% {
        transform: scale(1, .4)
    }
}

@keyframes barUp2 {
    0% {
        transform: scale(1, .4)
    }

    40% {
        transform: scale(1, .4)
    }

    50% {
        transform: scale(1, .8)
    }

    90% {
        transform: scale(1, .8)
    }

    100% {
        transform: scale(1, .4)
    }
}

@-webkit-keyframes barUp3 {
    0% {
        transform: scale(1, .6)
    }

    100% {
        transform: scale(1, .6)
    }
}

@keyframes barUp3 {
    0% {
        transform: scale(1, .6)
    }

    100% {
        transform: scale(1, .6)
    }
}

@-webkit-keyframes barUp4 {
    0% {
        transform: scale(1, .8)
    }

    40% {
        transform: scale(1, .8)
    }

    50% {
        transform: scale(1, .4)
    }

    90% {
        transform: scale(1, .4)
    }

    100% {
        transform: scale(1, .8)
    }
}

@keyframes barUp4 {
    0% {
        transform: scale(1, .8)
    }

    40% {
        transform: scale(1, .8)
    }

    50% {
        transform: scale(1, .4)
    }

    90% {
        transform: scale(1, .4)
    }

    100% {
        transform: scale(1, .8)
    }
}

@-webkit-keyframes barUp5 {
    0% {
        transform: scale(1, 1)
    }

    40% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(1, .2)
    }

    90% {
        transform: scale(1, .2)
    }

    100% {
        transform: scale(1, 1)
    }
}

@keyframes barUp5 {
    0% {
        transform: scale(1, 1)
    }

    40% {
        transform: scale(1, 1)
    }

    50% {
        transform: scale(1, .2)
    }

    90% {
        transform: scale(1, .2)
    }

    100% {
        transform: scale(1, 1)
    }
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    -o-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
    transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: .3
}

.themeBtn {
    background: var(--primary-color);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    padding: 1.03em 1.42em;
    border-radius: 7px;
    line-height: normal;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.themeBtn:after {
    background: #fff;
    content: '';
    position: absolute;
    z-index: -1;
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    transition-duration: .6s;
    transform-origin: top left;
    width: 0
}

.themeBtn:hover:after {
    height: 100%;
    width: 135%
}

.themeBtn:hover {
    color: var(--black)
}

.themeBtn.borderBtn {
    background: 0 0;
    border: 1px solid #fff;
    padding: 1.04em 2em
}

.navbar-nav .nav-item .nav-link.themeBtn:hover {
    color: var(--black)
}

.navbar-brand img {
    width: 240px
}

.bounce-element {
    animation: bounce .9s infinite alternate;
    -webkit-animation: bounce .9s infinite alternate
}

@keyframes bounce {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-15px)
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-15px)
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center
}

header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 11;
    padding-top: 2.5rem
}

.themeBtn i {
    font-size: 1.6rem
}

.topBar {
    padding: .7rem 0
}

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

.infoList li {
    display: flex;
    align-items: center;
    gap: .5rem;
    border-right: 1px solid #bfbfbf;
    padding: 0 2rem
}

.infoList li i {
    color: var(--theme-color)
}

.infoList li span {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 400
}

.infoList li:first-child {
    padding-left: 0
}

.infoList li:last-child {
    padding-right: 0;
    border: 0
}

.infoList li a {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 400
}

.topSocial {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.topSocial li {
    display: flex;
    align-items: center;
    gap: .5rem
}

.topSocial li a {
    width: 36px;
    height: 36px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: .9rem;
    margin-right: 10px
}

.topSocial li a:hover {
    background: var(--primary-color)
}

.navbar-nav {
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 1.8rem
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
    padding: 0 0;
    display: inline-block;
    transition: .5s
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color)
}

.navbar-nav .nav-item .nav-link.themeBtn {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1.04em 1.9em;
    display: inline-flex;
    gap: 1rem
}

.mainSlider {
    height: 100vh;
    position: relative;
    z-index: 1;
    padding: 0;
}

.homeSlider .slide-inner:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../images/shape1.png) no-repeat top center/cover;
    width: 1057px;
    height: 930px;
}

.homeSlider .slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
}

.homeSlider .slide-inner__two {
    justify-content: end;
    align-items: end;
    padding-bottom: 12rem;
    padding-top: unset;
}

.slideContent {
    text-align: left
}

.homeSlider.swiper-container .swiper-button-next {
    width: auto;
    height: auto;
    background: 0 0;
    right: 33px;
    font-weight: 800;
    color: #fff;
    transform: rotate(90deg);
    margin-top: 20px;
    overflow: hidden
}

.homeSlider.swiper-container .swiper-button-next * {
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

.homeSlider.swiper-container .swiper-button-next span {
    position: relative;
    display: inline-block
}

.homeSlider.swiper-container .swiper-button-next span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover)
}

.homeSlider.swiper-container .swiper-button-next span:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.homeSlider.swiper-container .swiper-button-next:hover span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    color: var(--theme-color)
}

.homeSlider.swiper-container .swiper-button-prev {
    width: auto;
    height: auto;
    background: 0 0;
    left: auto;
    right: 33px;
    font-weight: 800;
    color: #fff;
    transform: rotate(90deg);
    margin-top: -40px;
    overflow: hidden
}

.homeSlider.swiper-container .swiper-button-prev * {
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

.homeSlider.swiper-container .swiper-button-prev span {
    position: relative;
    display: inline-block
}

.homeSlider.swiper-container .swiper-button-prev span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover)
}

.homeSlider.swiper-container .swiper-button-prev span:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.homeSlider.swiper-container .swiper-button-prev:hover span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    color: var(--theme-color)
}

.homeSlider.swiper-container .swiper-pagination-fraction {
    width: auto;
    position: absolute;
    left: auto;
    right: 5rem;
    bottom: 0;
    color: #fff;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    justify-content: center;
    gap: 6rem
}

.homeSlider.swiper-container .swiper-pagination-fraction .swiper-pagination-current {
    font-size: 4.375rem;
    font-weight: 400;
    color: var(--color)
}

.homeSlider.swiper-container .swiper-pagination-fraction .swiper-pagination-total {
    font-size: 2.5rem;
    font-weight: 400;
    opacity: 50%;
    color: #fff
}

.mainSlider h2 {
    margin: 0 0 1.5rem
}

.homeSlider .swiper-button-next:after,
.homeSlider .swiper-rtl .swiper-button-prev:after {
    display: none
}

.homeSlider .swiper-button-prev:after,
.homeSlider .swiper-rtl .swiper-button-next:after {
    display: none
}

.slideContent h1 {
    font-size: 3.5rem !important;
}

.slideContent h1,
.slideContent h4 {
    font-size: 3rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1
}

.slideContent p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0 0 1.3rem;
    padding-right: 2rem
}

.slideContent .themeBtn {
    background-color: var(--white);
    color: var(--primary-color);
    padding-left: 4.75rem;
    overflow: unset;
}
.slideContent .themeBtn::before {
    content: "";
    width: 82px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: url("../images/spotify.png") no-repeat center/cover;
    position: absolute;
    left: -0.85rem;
}
.slideContent .themeBtn::after {
    display: none;
}
.slideContent .themeBtn:hover{
    background-color: var(--primary-color);
    color: var(--white);
}
.slideContent ul {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap
}

.slideContent ul li {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0 0 1.3rem;
    padding-right: 2rem
}

.number {
    display: flex;
    align-items: center;
    gap: 1.4rem
}

.number span {
    font-size: 2.0625rem;
    color: var(--white);
    font-weight: 600;
    display: inline-block;
    line-height: 1.2
}

.abtImg figure {
    display: flex;
    align-items: flex-end;
    position: relative
}

.abtImg figure:before {
    content: '';
    position: absolute;
    left: 22rem;
    top: 4rem;
    width: 106px;
    height: 106px;
    border: 4px solid var(--primary-color);
    border-radius: 50%
}

.abtImg figure:after {
    content: '';
    position: absolute;
    left: 29rem;
    top: 14rem;
    width: 46px;
    height: 46px;
    border: 4px solid var(--theme-color);
    border-radius: 50%
}

.abtImg figure img+img {
    margin-left: -9.5rem
}

.abtImg figure img {
    border-radius: 20px;
    width: 450px
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.grid img {
    width: 100%;
    border-radius: 20px
}

.image-block img {
    object-fit: cover;
    max-height: 500px;
    margin-bottom: 1rem;
    border-radius: 20px
}

.subHeading {
    font-size: 1.875rem;
    color: var(--theme-color);
    margin: 0
}

.heading {
    font-size: 3.4375rem;
    text-transform: uppercase
}

.aboutContent p {
    margin: 0 0 1.2rem
}

.serviceSec {
    background: rgb(42 96 171 / 10%);
    padding-top: 12rem
}

.mainheading {
    text-align: center;
    margin: 0 0 2rem
}

.serviceBox figure {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0
}

.serviceBox figure img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    height: 400px
}

.serviceContent {
    background: var(--white);
    text-align: center;
    padding: 1.3rem 2rem;
    border-radius: 0 0 20px 20px
}

.serviceContent h2 {
    font-size: 1.875rem;
    margin: 0 0 .9rem
}

.para {
    font-size: 1rem
}

.serviceContent a {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 500
}

.serviceSlider {
    padding-bottom: 5rem
}

.serviceSlider .swiper-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: 0 0;
    border: 3px solid var(--theme-color);
    opacity: 1
}

.serviceSlider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color)
}

.serviceSlider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.serviceBox figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg)
}

.serviceBox figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    object-fit: cover
}

.serviceBox:hover figure::before {
    -webkit-animation: shine 1s;
    animation: shine 1s
}

.serviceBox:hover figure img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.consultingSec ul {
    background: var(--white);
    box-shadow: 0 3px 20px rgb(0 0 0 / 8%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 3rem
}

.consultingSec ul li {
    display: flex;
    align-items: center;
    gap: 1.8rem
}

.getHeading {
    font-size: 2.5rem;
    margin: 0 0 8px
}

.consultingSec ul li .para {
    color: var(--black);
    margin: 0
}

.consultingSec {
    margin-bottom: -6rem
}

.aboutSec {
    padding-bottom: 7rem
}

.aboutSec--hide p:nth-child(-n+2) {
    display: none;
}

.trainingSec {
    background: url(../images/trainingbg.webp) no-repeat top center/cover;
    text-align: center;
    padding: 6rem 0
}

.trainingSec .getHeading {
    color: var(--white);
    margin: 0 0 .8rem
}

.trainingSec p {
    color: var(--white);
    margin: 0 0 1.3rem
}

.trainingSec .themeBtn {
    background: var(--theme-color);
    border: 2px solid #fff
}

.radius {
    border-radius: 20px
}

.partnerImg {
    position: relative
}

.totalStudent {
    position: absolute;
    bottom: 6.5rem;
    left: -7rem;
    background: var(--white);
    box-shadow: 0 3px 20px rgb(0 0 0 / 8%);
    border-radius: 20px;
    text-align: center;
    padding: 2.5rem 2rem
}

.totalStudent h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #070433;
    margin: 0 0 .6rem
}

.totalStudent ul {
    display: flex;
    align-items: center
}

.totalStudent ul li {
    display: flex;
    align-items: center;
    justify-content: center
}

.totalStudent ul li a {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 -6px
}

.totalStudent ul li:last-child a {
    background: var(--theme-color)
}

.totalStudent ul li:last-child a span {
    font-size: 1rem;
    color: var(--white)
}

.partnerContent div {
    display: flex;
    gap: 1rem;
    margin: 0 0 2rem
}

.partnerContent div ul li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 600
}

.partnerContent div ul {
    flex-shrink: 0
}

.partnerContent div ul li i {
    color: var(--theme-color)
}

.partnerContent div ul li+li {
    margin: 1rem 0 0
}

.partnrLst {
    display: flex;
    align-items: center;
    gap: 2rem
}

.partnrLst .number span {
    color: var(--black)
}

.partnrLst .number img {
    filter: invert(56%) sepia(23%) saturate(1367%) hue-rotate(175deg) brightness(95%) contrast(103%)
}

.reviewSec {
    background: #e9eff7;
    padding: 5rem 2rem
}

.reviewBox {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem
}

.reviewBox p {
    font-size: 1.375rem;
    color: var(--black);
    font-weight: 600
}

.usrImg {
    display: flex;
    align-items: center;
    gap: 1.1rem
}

.usrImg h6 {
    font-size: 1.375rem;
    color: var(--black);
    font-weight: 600;
    margin: 0 0 15px
}

.usrImg h5 {
    font-size: 1rem;
    margin: 0
}

.reviewSlider .swiper-slide.swiper-slide-next .reviewBox {
    background: var(--white)
}

.reviewSlider {
    padding-bottom: 6rem
}

.reviewSlider .swiper-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: 0 0;
    border: 3px solid var(--theme-color);
    opacity: 1
}

.reviewSlider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color)
}

.reviewSlider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.testimonialSlider .serviceContent {
    text-align: left;
    background: #f8f8f8
}

.testimonialSlider .serviceContent h2 {
    font-size: 1.5rem
}

.testimonialSlider .serviceContent .para {
    font-size: 1.125rem;
    margin: 0 0 1.3rem
}

.testimonialSlider .serviceContent .usrImg img {
    border: 3px solid var(--primary-color);
    border-radius: 50%
}

.testimonialSlider .serviceContent .usrImg h6 {
    margin: 0 0 10px
}

.testimonialSlider .swiper-slide.swiper-slide-next .usrImg img {
    border-color: var(--theme-color)
}

.testimonialSlider {
    padding-bottom: 6rem
}

.testimonialSlider .swiper-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: 0 0;
    border: 3px solid var(--theme-color);
    opacity: 1
}

.testimonialSlider .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color)
}

.testimonialSlider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.getBox {
    background: var(--white);
    box-shadow: 0 3px 20px rgb(0 0 0 / 8%);
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem 3rem;
    position: relative
}

.nextHeading h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    margin: 0
}

.nextHeading p {
    color: var(--black);
    font-weight: 400;
    margin: 0 0 2rem
}

.getBox form input {
    border: 0;
    border-bottom: 1px solid #707070;
    font-size: 1rem;
    padding-bottom: 9px;
    margin: 0 0 2rem;
    width: 100%
}

.getBox form input::placeholder {
    color: rgb(0 0 0 / 80%)
}

.getBox form textarea {
    border: 0;
    border-bottom: 1px solid #707070;
    font-size: 1rem;
    padding-bottom: 0;
    width: 100%;
    resize: none;
    margin: 0 0 2rem
}

.getBox form textarea::placeholder {
    color: rgb(0 0 0 / 80%)
}

.getBox form .themeBtn {
    border-radius: 0;
    border: 0
}

.getBox img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover
}

footer {
    background: var(--black);
    padding-top: 15rem
}

footer .topSocial {
    justify-content: flex-start;
    margin: 2.5rem 1.5rem 0
}

.quickList h2 {
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0 0 1.4rem
}

.quickList ul li a {
    font-size: 1rem;
    color: rgb(255 255 255 / 50%);
    font-weight: 400
}

.quickList ul li+li {
    margin: 15px 0 0
}

.calFoter ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem
}

.calFoter ul li strong {
    font-size: 1rem;
    color: rgb(255 255 255 / 50%);
    font-weight: 400;
    width: 70px
}

.calFoter ul li a {
    font-size: 1rem;
    color: var(--white)
}

.calFoter ul li span {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6
}

.calFoter ul li+li {
    margin: 1.5rem 0 0
}

.getFoter h2 {
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0 0 .7rem
}

.getFoter p {
    font-size: 1rem;
    color: var(--white);
    margin: 0 0 25px
}

.getFoter form span {
    display: block;
    position: relative;
    margin: 0 0 1rem
}

.getFoter form span input {
    width: 100%;
    background: 0 0;
    height: 60px;
    border: 1px solid rgb(255 255 255 / 25%);
    font-size: 1rem;
    font-weight: 400;
    padding: 0 1.5rem
}

.getFoter form span input::placeholder {
    color: var(--white)
}

.getFoter form span i {
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: var(--white)
}

.getFoter form .themeBtn {
    border-radius: 0
}

.copyRight {
    border-top: 1px solid #707070;
    margin-top: 4rem;
    align-items: center;
    padding: 2rem 0
}

.copyRight p {
    font-size: .875rem;
    color: var(--white);
    margin: 0
}

.copyRight ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem
}

.copyRight ul li a {
    font-size: .875rem;
    color: var(--white);
    font-weight: 400
}

.getSec {
    margin-bottom: -10rem
}

.aboutContent .themeBtn:after,
.aboutContent .themeBtn:hover:after,
.consultingSec ul li .themeBtn:after,
.consultingSec ul li .themeBtn:hover:after,
.getBox form .themeBtn .partnrLst li .themeBtn:after,
.getBox form .themeBtn:after,
.getBox form .themeBtn:hover:after,
.partnrLst li .themeBtn:hover:after {
    background: var(--theme-color);
}

.aboutContent .themeBtn:hover,
.consultingSec ul li .themeBtn:hover,
.getBox form .themeBtn:hover,
.partnrLst li .themeBtn:hover {
    color: var(--white)
}

.calFoter ul li a:hover,
.copyRight ul li a:hover,
.quickList ul li a:hover {
    color: var(--theme-color)
}

.pageInner {
    padding: 0;
    position: relative
}

.pageInner .homeSlider .slide-inner:before {
    width: 840px;
    height: 571px;
    left: -13rem
}

.chooseUs {
    padding-bottom: 8rem
}

.chooseUs .card {
    position: relative;
    background-color: #f6f6f6;
    border-radius: 2rem
}

.chooseUs .card .imgBox {
    width: 128px;
    height: 128px;
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    background-color: var(--white);
    transition: .5s
}

.chooseUs .card .imgBox img {
    width: 100%;
    transition: .5s
}

.chooseUs .card .card-body {
    margin-top: 4.5rem;
    text-align: center
}

.chooseUs .card .card-body p {
    font-size: 1.05rem;
    margin-bottom: 1rem
}

.chooseUs .card:hover .imgBox {
    background-color: var(--primary-color)
}

.chooseUs .card:hover .imgBox img {
    filter: brightness(0) invert(1)
}

.innerPage .serviceContent {
    text-align: left;
    background: #f8f8f8;
    box-shadow: 2px 2px 16px #0007
}

.serviceSection {
    padding: 8rem 0
}

.serviceSection .serviceBox figure {
    height: 300px
}

.serviceSection .serviceBox figure img {
    margin-top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover
}

.serviceSection .timeline .timelineItem {
    position: relative;
    margin-bottom: 2rem
}

.serviceSection .timeline .timelineItem:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--primary-color);
    left: -3.2rem;
    top: 2rem
}

.serviceSection .timeline .timelineItem:nth-last-child(1):before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: transparent;
    left: -3.2rem;
    top: 2rem
}

.serviceSection .timeline .timelineItem .imgBox {
    width: 58px;
    height: 58px;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    position: absolute;
    padding: 10px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    left: -5rem;
    top: -.5rem;
    transition: .5s
}

.serviceSection .timeline .timelineItem:hover .imgBox {
    background-color: var(--primary-color)
}

.serviceSection .timeline .timelineItem .imgBox img {
    transition: .5s
}

.serviceSection .timeline .timelineItem:hover .imgBox img {
    filter: brightness(0) invert(1)
}

.serviceSection .timeline .timelineItem h4 {
    color: var(--primary-color)
}

.contactSec {
    filter: grayscale(100%);
    padding: 0;
    margin-bottom: -17rem
}

.pageInner figure {
    position: relative
}

.pageInner figure .inerShape {
    position: absolute;
    left: -10%;
    bottom: 0;
    height: 571px;
    object-fit: cover
}

.pageInner .inrbg {
    height: 650px;
    object-fit: cover;
    object-position: center
}

.pageInner h2,
.pageInner .pageInner-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase
}

.pageInner .pageInner-overlay{
    inset:0;
}
.pageInner .pageInner-overlay h2{
    position:static;
}
.innerPages .partnerSec {
    padding: 8rem
}

.innerPages .getSec {
    display: none
}

.innerPages footer {
    padding-top: 5rem
}

.partnersLogo>div>div {
    display: flex;
    flex-direction: column;
    text-align: center
}

.partnersLogo a {
    color: var(--black);
    display: flex;
    flex-direction: column;
    font-size: 1.125rem;
    font-weight: 500;
    gap: 1rem
}

.partnersLogo a:hover {
    color: var(--primary-color)
}

.partnersLogo img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin: auto;
    background: #0003
}

.innerServices figure,
.innerServices2 figure {
    border-radius: 20px
}

.innerServices img {
    max-height: 400px;
    object-fit: cover
}

.innerServices .last img {
    max-height: 600px
}

.innerServices ul {
    list-style: disc;
    color: #828282;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.innerServices2 img {
    height: 300px;
    object-fit: cover
}

.partnersLogo .row {
    gap: 2rem 0
}

.serviceSec .serviceContent .para {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.serviceSec .serviceContent .para ~ div {
    display: none !important;
}

.slideContent ul a {
    font-size: 1.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600
}

.slideContent ul a i {
    font-size: 1.25rem
}

.comingSoon {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    text-transform: uppercase
}

.news-inner img {
    width: 100%;
    height: 100%
}

.news-inner [class*=col-] {
    margin-bottom: 2rem
}

.news-inner img {
    object-fit: cover
}

.newsCard-video iframe,
.newsCard-video video,
.newsCard-video img,
.newsDetails__content img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.newsCard {
    margin: 0 0 2rem;
}

.newsCard h3 {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.newsDetails__content img {
    height: 100%;
    margin-bottom: 2rem;
}

.newsDetails__content .heading {
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.newsDetails__content .subHeading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.newsDetails__content p a,
.newsDetails__content .subHeading>a {
    color: var(--black);
    text-decoration: underline !important;
    font-weight: 600;
}

.newsDetails__content .list {
    padding-left: 2.5rem;
    list-style: disc;
}

/* .newsCard__wrapper .row .col-lg-6:nth-child(n+5),
.blogsWrapper .row .col-md-6:nth-child(n+4) {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
} */

/* .newsCard__wrapper.active .row .col-lg-6:nth-last-child(n+1),
.blogsWrapper.active .row .col-md-6:nth-child(n+1) {
    display: block;
    opacity: 1;
    visibility: visible;
} */

/* .newsCard__wrapper.active .newsCard__btn,
.blogsWrapper.active .blogsBtn {
    display: none;
} */

.newsCard-bg {
    background-color: #F8F8F8;
    border-radius: 1.5rem;
}

.obj-contain {
    object-fit: contain !important;
}

.newsDetails-height img {
    height: 410px;
    background: #f8f8f8;
}


/* News Page Css Start */

.innerPages .latestSec .row+.row {
    margin-top: 4rem;
}

.headlineBox {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    margin-bottom: 2rem;
}

.blogDetails .headlineBox {
    all: unset;
}

.headlineBox h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Poppins';
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogDetails .headlineBox h3,
.blogDetails .headlineBox h3 span {
    font-size: 1.75rem;
    font-weight: 500;
}

.headlineBox h3 span {
    font-size: 1rem;
    font-weight: 400;
    color: #828282;
}

.headlineBox h4 {
    font-size: 2rem;
    color: var(--black);
    line-height: 1.4;
    margin: 0.75rem 0;
}

.blogDetails .headlineBox h4 {
    font-size: 3rem;
}

.headlineBox a {
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.headlineBox a i {
    font-size: 2rem;
}


.blogDetail-img {
    aspect-ratio: 16/8;
    border-radius: 2.625rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.blogDetail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogDetails .social-share {
    padding: 2rem 0 0;
    border-top: 2px solid #DEDEDE;
    margin: 2.5rem 0 0;
}

.blogDetails .social-share h4 {
    font-size: 2.25rem;
    text-transform: capitalize;
    margin: 0;
}
.blogDetails .social-share ul {
    gap: 1.5rem;
}

.blogDetails .social-share ul li a {font-weight: unset;color: var(--black);}

.blogDetails .social-share ul li a:hover {
    color: var(--primary-color);
}

ul.list-item-blog {
    list-style: disc;
    padding-left: 1rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: #828282;
    margin-bottom: 1rem;
}

ul.list-item-blog li+li {
    margin-top: 8px;
}
/* News Page Css End */
