/*
[Master Stylesheet] 
Project: Consulting Html
-----------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
:root {
    --cn-theme-color: #3b85c1;
    --cn-grey-color: #444444;
    --cn-black-color: #000000;
    --cn-white-color: #ffffff;
    --cn-dark-blue-color: #1e263d;
    --cn-orange-color: #ff794d;
    --cn-bg-color: #ecf0f9;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: 'Manrope', sans-serif;
}

html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
    text-transform: capitalize;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    word-break: break-word;
}

.container-fluid {
    padding: 0 100px 0 140px;
}

.cn-heading {
    font-size: 36px;
    color: var(--cn-black-color);
    font-weight: 700;
}

.cn-paragraph {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 400;
}

/* bottom to top css */
.cn-top-icon a {
    display: flex;
    background-color: var(--cn-theme-color);
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    animation: 4s installation infinite alternate;
}

@keyframes installation {
    0% {
        transform: translateY(0px);
        box-shadow: 0 0 0 0 rgba(156, 87, 255, 0.3);
    }

    50% {
        transform: translateY(-20px);
        box-shadow: 0 0 0 15px rgba(156, 87, 255, 0.3);
    }
}

.cn-top-icon a svg {
    fill: #ffffff;
    transform: rotate(270deg);
}

.cn-top-icon a:hover {
    cursor: pointer;
    box-shadow: 0 0 0 25px var(--cn-orange-color) inset;
}

.cn-top-icon a:active {
    background-color: #555;
}

.cn-top-icon a.show {
    opacity: 1;
    visibility: visible;
}

/* bottom to top css end */
/* loader css start */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.loader img {
    width: 100px;
}

/* loader css start end */
/* button css */
.cn-btn {
    max-width: 210px;
    width: 100%;
    min-height: 60px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #5daf59;
    color: var(--cn-white-color);
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: sans-serif;
    transition: all 0.35s ease-in-out;
    z-index: 1;
}

.cn-btn:before {
    width: 100%;
    height: 100%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: #2d89bb;
    transition: all 0.35s ease-in-out;
    z-index: -1;
}

.cn-btn:after {
    width: 100%;
    height: 100%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: #5daf59;
    transition: all 0.35s ease-in-out;
    z-index: -1;
}

.cn-btn:hover {
    color: #2d89bb;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-color: #2d89bb;
}

.cn-btn:hover:before {
    transform: rotateX(90deg);
}

.cn-btn:hover:after {
    transform: rotateY(90deg);
}

/* button css end*/
/* toggle btn */
.cn-toggle-btn {
    display: block;
}

/* toggle btn */
.bannerResponsiveImg {
    display: none;
}

/* header section css start */
.cn-logo {
    margin-top: 20px;
}

.cn-navbar-menu {
    max-width: 665px;
    width: 100%;
    background-image: linear-gradient(-90deg, #ffffff 0%, #fcf7ff 100%);
    margin-left: auto;
    border-radius: 0 0 0 100px;
}

.cn-navbar-menu ul {
    text-align: right;
    padding: 25px 0 30px 0;
}

.cn-navbar-menu ul li {
    display: inline-block;
    margin-right: 40px;
}

.cn-navbar-menu ul li.sidebar-logo {
    display: none;
}

.cn-navbar-menu ul li a {
    font-size: 16px;
    color: #3b85c1 !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    padding-bottom: 26px;
}

.cn-navbar-menu ul li.active a {
    color: rgb(133, 133, 133);
}

.cn-navbar-menu ul li.active a:after {
    content: '';
    width: 100%;
    height: 5px;
    background-color: #3b85c1;
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 100%;
    left: 0;
    transform: scale(1);
    transition: all 0.3s;
}

.cn-navbar-menu ul li a:hover {
    color: #3b85c1;
}

.cn-navbar-menu ul li a:after {
    content: '';
    width: 100%;
    height: 5px;
    background-color: #3b85c1;
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 100%;
    left: 0;
    transform: scale(0);
    transition: all 0.3s;
}

.cn-navbar-menu ul li a:hover:after {
    transform: scale(1);
}

/* header section css end */
/* banner section css start */
.cn-banner-left {
    position: relative;
}

.cn-banner-left h6 {
    color: rgb(26, 71, 116);
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 8px;
    font-weight: 700;
}

.cn-banner-left h1 {
    font-size: 56px;
    color: var(--cn-grey-color);
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 5px;
}

.cn-banner-left h1>span {
    color: var(--cn-theme-color);
    font-weight: 800;
}

.cn-banner-left p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 400;
    line-height: 1.6;
    margin-top: 20px;
}

.cn-banner-left .cn-btn {
    margin-top: 35px;
}

.cn-banner-left img {
    position: absolute;
    bottom: 30px;
    left: -65px;
    animation: up-down 2s infinite alternate-reverse;
}

.cn-banner-right-img {
    text-align: right;
    margin-top: 40px;
    position: relative;
}

.cn-banner-right-content .bannerMail {
    position: absolute;
    top: 305px;
    left: 270px;
    animation: up-down 2s infinite alternate-reverse;
}

.cn-banner-right-content .bannerGrow {
    position: absolute;
    bottom: 55px;
    right: 20px;
    animation: up-down 3s infinite alternate-reverse;
}

/* .cn-banner-employee {
    text-align: center;
    position: absolute;
    right: 0;
    top: 500px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 335px;
    width: 100%;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: left-right 2s infinite alternate-reverse;   
}
@keyframes left-right{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(10px);
    }
}
.cn-banner-employee h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
    text-transform: capitalize;
}
.cn-banner-employee p{
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
} */
.cn-banner-business {
    text-align: center;
    position: absolute;
    left: 0px;
    bottom: 50px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 345px;
    width: 100%;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: left-right 3s infinite alternate-reverse;
}

.cn-banner-business h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.cn-banner-business p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
}

.cn-banner-business-2 {
    text-align: center;
    position: absolute;
    left: 60px;
    top: 127px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 345px;
    width: 100%;
    padding: 20px 50px 20px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
    ;
}

.cn-banner-business-2 h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.cn-banner-business-2 p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
}

.cn-banner-business-3 {
    text-align: center;
    position: absolute;
    left: 60px;
    bottom: -85px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 345px;
    width: 100%;
    padding: 20px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.cn-banner-business-3 h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.cn-banner-business-3 p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
}

.cn-banner-business-4 {
    text-align: center;
    position: absolute;
    left: 60px;
    bottom: 120px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 345px;
    width: 100%;
    padding: 13px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.cn-banner-business-4 h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.cn-banner-business-4 p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
}

.cn-banner-business-5 {
    text-align: center;
    position: absolute;
    left: 0px;
    bottom: 50px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 345px;
    width: 100%;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.cn-banner-business-5 h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.cn-banner-business-5 p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
}

.cn-banner-business-6 {
    text-align: center;
    position: absolute;
    left: 110px;
    bottom: 120px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 345px;
    width: 100%;
    padding: 10px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.cn-banner-business-6 h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.cn-banner-business-6 p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
}

.cn-banner-business-7 {
    text-align: center;
    position: absolute;
    left: 110px;
    bottom: -85px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 345px;
    width: 100%;
    padding: 10px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.cn-banner-business-7 h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.cn-banner-business-7 p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
}

.cn-banner-business-8 {
    text-align: center;
    position: absolute;
    left: 110px;
    bottom: -290px;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 345px;
    width: 100%;
    padding: 20px 50px;
    border-radius: 20px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.cn-banner-business-8 h6 {
    font-size: 22px;
    color: var(--cn-grey-color);
    font-weight: 800;
    margin: 15px 0 5px 0;
}

.cn-banner-business-8 p {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 500;
}

/* banner section css end */
/* partner section css start */
.cn-partner-wrapper {
    background: linear-gradient(82deg, rgba(96, 178, 83, 1) 0%, rgba(43, 135, 190, 1) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.cn-partner-wrapper h1 {
    font-size: 30px;
    font-weight: 500;
    color: var(--cn-white-color);
    text-align: center;
    margin-bottom: 70px;
    text-transform: capitalize;
}

.cn-partner-wrapper h1>span {
    color: var(--cn-orange-color);
    font-weight: 600;
}

.cn-partner-wrapper .swiper-slide {
    text-align: center;
    cursor: pointer;
    opacity: 0.5;
    margin-top: 65px;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

.cn-partner-wrapper .swiper-slide span svg {
    fill: #656f8d;
    transition: all 0.3s ease-in-out;
}

.cn-partner-wrapper .swiper-slide:hover span svg {
    fill: var(--cn-white-color);
}

.cn-partner-wrapper .swiper-slide:hover {
    transform: translateY(-10px)scale(1.1);
}

.cn-partner-heading {
    position: relative;
}

.cn-partner-heading:after {
    content: '';
    width: 2px;
    height: 40px;
    background-color: #2b3653;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
}

.cn-partner-heading:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--cn-orange-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -68px;
    transition: all 0.3s ease-in-out;
}

.cn-partner-wrapper .swiper-slide:hover {
    opacity: 1;
}

/* partner section css end */
/* about section css start */
.cn-about-wrapper>.container {
    max-width: 1200px;
}

.cn-about-wrapper {
    padding: 60px 0px 30px 0px;
}

.cn-about-wrapper1>.container {
    max-width: 1200px;
}

.cn-about-wrapper1 {
    padding: 60px 0px 30px 0px;
}

.cn-box-inner:hover {
    background-image: url(../images/h);
}

.cn-box-inner:hover span {
    background-color: var(--cn-white-color);
}

.cn-box-inner:hover svg {
    fill: var(--cn-dark-blue-color);
}

.cn-box-inner-orange:hover span {
    background-color: transparent;
}

.cn-box-inner:hover svg {
    fill: var(--cn-dark-blue-color);
}

.cn-box-inner {
    max-width: 270px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(73, 57, 126, 0.06);
    background-color: #5ab3ff;
    text-align: center;
    padding: 35px 20px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.cn-box-inner span svg {
    fill: var(--cn-white-color);
    transition: all 0.3s ease-in-out;
}

.cn-box-inner span {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #51a3e9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease-in-out;
}

.cn-box-inner h6 {
    font-size: 16px;
    color: var(--cn-white-color);
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 0 15px 0;
    position: relative;
}

.cn-box-inner h6:after {
    content: '';
    width: 2px;
    height: 40px;
    background-color: var(--cn-white-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
}

.cn-box-inner h6:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--cn-white-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -43px;
    transition: all 0.3s ease-in-out;
}

.cn-box-inner p {
    font-size: 16px;
    color: var(--cn-white-color);
    font-weight: 400;
    margin-top: 60px;
}

.cn-box-inner-purple {
    background-color: #815bff;
    margin-bottom: 0;
}

.cn-box-inner-purple span {
    background-color: #7450eb;
}

.cn-box-inner-orange {
    background-color: var(--cn-orange-color);
    margin-left: 30px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.cn-box-inner-orange:hover {
    background-color: var(--cn-dark-blue-color);
}

.cn-box-inner-orange:after {
    content: '';
    background-image: url(../images/orange-box-shape.png);
    background-position: center;
    background-size: cover;
    height: 414px;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    z-index: -1;
}

.cn-box-inner-orange span {
    font-size: 70px;
    color: var(--cn-white-color);
    background-color: transparent;
    font-weight: 800;
}

.cn-about-box-parent {
    display: flex;
    align-items: center;
}

.cn-left-box {
    position: relative;
}

.cn-left-box:after {
    content: '';
    background-image: url(../images/about-arrow-top.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 95px;
    position: absolute;
    top: 50px;
    right: -80px;
    width: 58px;
    animation: up-down 2s infinite alternate-reverse;
}

@keyframes up-down {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.cn-left-box:before {
    content: '';
    background-image: url(../images/about-arrow-bottum.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 95px;
    position: absolute;
    bottom: 70px;
    right: -80px;
    width: 58px;
    animation: up-down 2s infinite alternate-reverse;
}

.cn-about-right-content h1 {
    margin-bottom: 35px;
}

.cn-about-right-content {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(110%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.cn-about-right-content1 {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-110%);
    transition: all 1s;
}

.show1 {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.cn-about-right-content .cn-paragraph {
    text-align: justify;
}

.cn-about-right-content a {
    margin-top: 35px;
}

/* about section css end */
/* service section css start */
.cn-service-wrapper {
    margin-top: 60px;
    padding: 80px 0;
    background: rgb(222, 241, 252);
    overflow: hidden;
}

.cn-service-heading h1 {
    font-size: 30px;
    color: var(--cn-black-color);
    font-weight: 800;
    position: relative;
    text-transform: capitalize;
}

.cn-service-heading h1:after {
    content: '';
    max-width: 124px;
    width: 100%;
    height: 4px;
    background-color: rgb(26, 71, 116);
    position: absolute;
    left: 0;
    bottom: -20px;
}

/* purple box */
.cn-service-box {
    position: relative;
    background-color: var(--cn-white-color);
    border-radius: 20px;
    padding: 60px 34px;
    text-align: center;
    margin-top: 70px;
}

.cn-service-inner>span {
    width: 103px;
    height: 103px;
    box-shadow: inset 0 0 30px rgb(126 87 255 / 50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.cn-service-inner>span:before {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    bottom: -4px;
    left: 0;
    border: 4px solid transparent;
    border-top-color: var(--cn-theme-color);
    border-bottom-color: var(--cn-theme-color);
    border-radius: 100px;
    transition: all 0.3s;
}

.cn-service-inner:hover>span:before {
    transform: rotate(90deg);
}

.cn-service-inner:hover>span {
    transform: translateY(-10px)scale(1.03);
}

.cn-service-inner>span>svg {
    fill: var(--cn-theme-color);
}

.cn-service-inner h5 {
    font-size: 19px;
    color: var(--cn-theme-color);
    font-weight: 800;
    margin: 75px 0 20px 0;
    position: relative;
    text-transform: capitalize;
}

.cn-service-inner h5:after {
    content: '';
    width: 2px;
    height: 30px;
    background-color: #ebf0fb;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
}

.cn-service-inner h5:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--cn-theme-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 72px;
}

.cn-service-wrapper .swiper-slide {
    cursor: pointer;
}

/* orange box */
.cn-service-inner-orange>span {
    box-shadow: inset 0 0 30px rgb(255 121 77 / 50%);
    position: relative;
}

.cn-service-inner.cn-service-inner-orange>span:before {
    border-top-color: var(--cn-orange-color);
    border-bottom-color: var(--cn-orange-color);
}

.cn-service-inner-orange>span>svg {
    fill: var(--cn-orange-color);
}

.cn-service-inner-orange h5 {
    color: var(--cn-orange-color);
    position: relative;
}

.cn-service-inner-orange h5:before {
    background-color: var(--cn-orange-color);
}

/* blue box box */
.cn-service-inner-blue>span {
    box-shadow: inset 0 0 30px rgb(90 179 255 / 50%);
    position: relative;
}

.cn-service-inner.cn-service-inner-blue>span:before {
    border-top-color: #5ab3ff;
    border-bottom-color: #5ab3ff;
}

.cn-service-inner-blue>span>svg {
    fill: #5ab3ff;
}

.cn-service-inner-blue h5 {
    color: #5ab3ff;
    position: relative;
}

.cn-service-inner-blue h5:before {
    background-color: #5ab3ff;
}

/* service slider button css start */
.cn-service-wrapper .swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.cn-service-heading {
    position: relative;
}

.cn-service-btn {
    position: absolute;
    right: 0;
}

.cn-service-btn-1 {
    position: absolute;
    right: 0;
    top: 0;
}

.cn-service-wrapper .swiper-button-next {
    position: absolute;
    top: 0;
    background: #fff;
    width: 70px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.cn-partner-wrapper .swiper-button-next {
    position: absolute;
    top: 0;
    background: #fff;
    width: 70px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-top: 0px;
}

.cn-partner-wrapper .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    position: absolute;
    left: auto;
    right: 95px;
    top: 0;
    background: #fff;
    width: 70px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin-top: 0px;
}

.cn-service-wrapper .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    position: absolute;
    left: auto;
    right: 95px;
    top: 0;
    background: #fff;
    width: 70px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

.cn-service-wrapper .swiper-button-next svg,
.cn-service-wrapper .swiper-button-prev svg {
    transition: all 0.3s ease-in-out;
}

.cn-service-wrapper .swiper-button-next:hover svg {
    fill: var(--cn-theme-color);
}

.cn-service-wrapper .swiper-button-prev:hover svg {
    fill: var(--cn-theme-color);
}

.swiper-container.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    overflow: hidden;
}

/* service slider button css end */
/* service section css end */
/* blog section css start */
.cn-blog-wrapper {
    padding: 0px 0px 100px 0px;
}

.cn-blog-left-content p {
    margin: 25px 0 35px 0;
    text-align: justify;
}

.cn-blog-right {
    text-align: right;
    position: relative;
}

.cn-counter-main {
    margin-bottom: -500px;
}


.counter-first-box {
    position: relative;
    top: -100px;
    left: 60px;
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.counter-mid-box {
    position: relative;
    bottom: 240px;
    left: 390px;
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.counter-last-box {
    position: relative;
    bottom: 390px;
    left: 720px;
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.counter-last-box-two {
    position: relative;
    bottom: 538px;
    left: 1040px;
    animation: 1.5s ease 0s infinite alternate-reverse none running up-down;
}

.cn-counter-box {
    text-align: center;
    backdrop-filter: blur(10px);
    background-color: #ffffffb0;
    max-width: 230px;
    width: 100%;
    padding: 18px 35px 30px;
    border-radius: 12px;
    box-shadow: 0px 30px 45px 10px rgb(16 40 132 / 8%);
}

.cn-counter-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cn-black-color);
    text-transform: uppercase;
}

.cn-counter-box .counting {
    font-size: 42px;
    color: rgb(26, 71, 116);
    font-weight: 800;
}

.counting {
    margin-left: -30px;
}

.first,
.second,
.third {
    position: relative;
}

.first:after,
.second:after {
    content: '+';
    font-size: 42px;
    color: rgb(26, 71, 116);
    font-weight: 800;
    position: absolute;
    right: 47px;
}

.third:after {
    content: '+';
    font-size: 42px;
    color: rgb(26, 71, 116);
    font-weight: 800;
    position: absolute;

}

/* blog section css end */
/* testimonial section css start */
.cn-testimonial-wrapper {
    padding: 80px 0;
    background-color: var(--cn-bg-color);
    overflow: hidden;
    position: relative;
}

.cn-testimonial-heading .cn-heading {
    text-align: center;
}

.cn-client-box {
    background-color: var(--cn-white-color);
    padding: 30px 35px 35px 50px;
    border-radius: 10px;
    margin-top: 65px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.cn-client-heading {
    display: flex;
    align-items: center;
}

.cn-client-name {
    margin-left: 20px;
}

.cn-client-name h6 {
    font-size: 22px;
    font-weight: 800;
    color: var(--cn-black-color);
    transition: all 0.3s ease-in-out;
}

.cn-client-name p {
    font-size: 14px;
    font-weight: 700;
    color: rgb(26, 71, 116);
}

.cn-client-text p {
    text-align: justify;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}

.cn-qoute-img {
    position: absolute;
    top: -14px;
    right: 35px;
}

.cn-qoute-img svg {
    fill: var(--cn-theme-color);
    transition: all 0.3s ease-in-out;
}

.cn-testimonial-wrapper .swiper-container {
    padding-bottom: 75px;
}

.cn-testimonial-wrapper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background-color: var(--cn-grey-color);
}

.cn-testimonial-wrapper .swiper-pagination-bullet-active {
    background-color: var(--cn-theme-color);
}

.cn-testimonial-wrapper .swiper-slide {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.cn-testimonial-wrapper .swiper-slide:hover .cn-client-box {
    box-shadow: 1.5px 3.99px 27px 0px rgb(0 0 0 / 10%);
}

/* testimonial section css end */
/* contact section css start */
.cn-contact-wrapper {
    padding-top: 80px;
    background: linear-gradient(82deg, rgba(96, 178, 83, 1) 0%, rgba(43, 135, 190, 1) 100%);
}

.cn-contact-heading .cn-heading {
    color: var(--cn-white-color);
    text-align: center;
}

.me-global-map svg {
    min-height: 465px;
}

div#world-map {
    margin-top: 65px;
}

.cn-contact-form-box {
    background-color: var(--cn-white-color);
    border-radius: 20px;
    padding: 40px 45px;
    margin-top: -540px;
    position: relative;
}

.cn-contact-form-box {
    background-color: var(--cn-white-color);
    border-radius: 20px;
    padding: 30px 45px;
}

.cn-form-heading {
    text-align: center;
}

.cn-form-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--cn-black-color);
}

.cn-form-heading p {
    font-size: 16px;
    font-weight: 600;
    color: var(--cn-black-color);
    text-transform: capitalize;
    margin-top: 10px;
}

.cn-input-field {
    margin-top: 30px;
}

.cn-input-field input {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 60px;
    background-color: #f7f7fc;
    border: 1px solid rgba(191, 191, 207, 0.3);
    padding: 0 25px 0 25px;
    margin-bottom: 10px;
}

::placeholder {
    color: var(--cn-grey-color);
}

.cn-input-field textarea {
    font-size: 16px;
    font-weight: 500;
    color: var(--cn-grey-color);
    width: 100%;
    height: 60px;
    background-color: #f7f7fc;
    border: 1px solid rgba(191, 191, 207, 0.3);
    padding: 16px 25px 0 25px;
    margin-bottom: 20px;
    resize: none;
}

.cn-form-btn .cn-btn {
    max-width: 100%;
}

/* contact section css end */
/* footer section css start */
.cn-footer-wrapper {
    background-color: var(--cn-bg-color);
    padding-bottom: 1px;
}

.cn-footer-info {
    background-color: var(--cn-white-color);
    border-radius: 20px;
    padding: 35px 45px 35px 45px;
    margin-top: 30px;
}

.cn-footer-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.cn-add h2 {
    font-size: 29px;
    text-align: center;
    color: var(--cn-black-color);
    font-weight: 800;
}

.cn-add-1 h2 {
    font-size: 29px;
    text-align: center;
    color: var(--cn-black-color);
    font-weight: 800;
}

.cn-add-2 h2 {
    font-size: 27px;
    text-align: center;
    color: var(--cn-black-color);
    font-weight: 800;
}

.cn-add a {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 600;
    margin-top: 15px;
}

.cn-add-1 a {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 600;
    margin-top: 15px;
}

.cn-add-2 a {
    font-size: 16px;
    color: var(--cn-grey-color);
    font-weight: 600;
    margin-top: 15px;
}

.address {
    position: relative;
}

.address:after {
    content: '';
    width: 2px;
    height: 90px;
    background-color: #ececf1;
    position: absolute;
    top: 0;
    right: -50px;
}

.cn-footer-bottom-wrapper {
    margin: 30px 0px;
}

.cn-footer-bottom-wrapper-2 {
    margin: 30px 100px;
}

.cn-footer-first .cn-paragraph {
    margin-top: 25px;
    font-weight: 500;
}

.cn-footer-btm-heading h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--cn-black-color);
    position: relative;
}

.cn-footer-btm-heading h1:after {
    content: '';
    width: 106px;
    height: 2px;
    background-color: rgb(0, 255, 252);
    position: absolute;
    left: 0;
    bottom: -5px;
}

.cn-footer-btm-list ul {
    margin-top: 35px;
}

.cn-footer-btm-list ul li {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.cn-footer-btm-list ul li a {
    transition: all 0.3s ease-in-out;
}

.cn-footer-btm-list ul li:hover {
    transform: translateX(5px);
}

.cn-footer-btm-list ul li a:hover {
    color: var(--cn-theme-color);
}

.cn-footer-btm-list ul li a.cn-paragraph {
    font-weight: 500;
}

.cn-footer-btm-list ul li a img {
    margin: -4px 18px 0 0;
}

.cn-footer-btm-twitter ul {
    margin-top: 35px;
}

.cn-footer-btm-twitter ul li {
    position: relative;
}

.cn-footer-btm-twitter ul li.footer-last-para {
    margin-top: 8px;
}

.cn-footer-btm-twitter ul img {
    position: absolute;
    left: -30px;
    top: 12px;
}

.cn-footer-btm-twitter ul p {
    color: var(--cn-theme-color);
    font-size: 14px;
    font-weight: 500;
    margin-left: 30px;
    padding-top: 5px;
}

.cn-footer-btm-twitter ul li.cn-paragraph {
    font-weight: 500;
    margin-left: 30px;
}

.cn-footer-btm-twitter ul li img {
    margin: -4px 18px 0 0;
}

.cn-footer-btm-twitter li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--cn-grey-color);
}

.cn-footer-icon ul {
    margin-top: 25px;
    text-align: left;
}

.cn-footer-icon ul li {
    display: inline-block;
    margin-right: 20px;
}

.cn-footer-icon ul li a i {
    width: 40px;
    height: 40px;
    border: 2px solid var(--cn-theme-color);
    color: var(--cn-theme-color);
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.cn-footer-icon ul li a i:hover {
    background-color: var(--cn-theme-color);
    color: var(--cn-white-color);
    transform: translateY(-5px);
}

/* footer section css end */
/* copyright section start */
.cn-copyright {
    background-color: #e3e7f2;
}

.cn-copyright .cn-paragraph {
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
}

.cn-copyright a {
    color: var(--cn-theme-color);
    font-weight: 600;
}

/* copyright section end */
/* swiper slider */
.cn-service-wrapper .swiper-pointer-events,
.cn-testimonial-wrapper .swiper-pointer-events,
.cn-partner-wrapper .swiper-pointer-events {
    touch-action: pan-y;
    overflow: hidden;
    position: relative;
}

/* swiper slider */

/* banner-css-start */
.cn-page-title-bg {
    background: linear-gradient(82deg, rgba(96, 178, 83, 1) 0%, rgba(43, 135, 190, 1) 100%);
    padding: 80px 0px;

}

.dis_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
}

.cn-_title {
    color: #fff;
    font-size: 42px;
}

.breadcrumb li {
    color: #fff;
    z-index: 99;
    position: relative;
    opacity: 1;
}

.breadcrumb li a {
    color: #fff;
}

.cn-spacing {
    padding: 50px 0px 120px;
}

/* blog-sec */
.blog-sec {
    padding: 40px 0px;
}

.blog-title h3 a {
    color: #000;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 700;
    transition: all 0.3s;
}

.blog-title h3 {
    padding-top: 10px;
}

.blog-title:hover h3 a {
    color: #7e57ff;
}

.blog-meta ul {
    display: flex;
    align-items: center;
    padding: 6px 0px;
}

.blog-meta ul li:last-child {
    margin-left: 30px;
}

.blog-meta ul li a {
    color: #7e57ff;
}

.blog-details a {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    color: #7e57ff;
    margin-top: 8px;
    text-transform: capitalize;
    transition: all 0.3s;
}

.blog-details a:hover {
    letter-spacing: 2px;
}

.blog-details p {
    font-size: 15px;
    color: var(--cn-grey-color);
    font-weight: 400;
    line-height: 1.6;
    margin-top: 5px;
}

/* blog-single */

.blog-single-start {
    padding: 80px 0px 0px;
    /* background: #191a1a; */
}

.gz-_page_title_bg {
    background-color: #000;
    padding: 150px 0px 80px 0px;
    background-image: url(../images/single-bg.html);
}

.breadcrumb li {
    color: #fff;
    margin: 3px;
}

.breadcrumb li a {
    color: #fff;
}

.dis_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gz-_title {
    color: #000;
    font-size: 32px;
    text-transform: capitalize;
}

.lms_entry_meta span a {
    color: #000;
    text-decoration: none;
    padding-top: 10px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

.lms_entry_meta span a i {
    color: #000;
    transition: all 0.3s ease-in-out;
}

.lms_entry_meta span a:hover i {
    color: #7e57ff;
}

.blog-box h3 {
    color: #000;
    margin-top: 30px;
}

.gz-blog_comment_wrapper {
    padding-bottom: 20px;
}

.gz-blog_comment_wrapper h4 {
    font-size: 26px;
    font-weight: 500;
    position: relative;
    margin: 30px 0px 20px 0px;
    border-bottom: 2px solid #000;
    max-width: 174px;
    color: #000;
    /* padding-top: 3px; */
}

.gz-blog_comment {
    display: inline-flex;
    margin-bottom: 50px;
    margin-top: 50px;
}

.gz-comment_image {
    float: left;
    padding-right: 10px;
}

.gz-comment_image img {
    width: 70px;
    height: 70px;
    border-radius: 3px;
}

.gz-comment_text {
    float: right;
    width: 92%;
    padding: 0px 20px;
}

.gz-comment_text h5 {
    margin: 0px;
    font-weight: 500;
    font-size: 16px;
    color: #000;
}

.gz-comment_text p {
    margin: 15px 0px 0px 0px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.gz-comment_text h5 span {
    float: right;
    text-transform: capitalize;
    font-size: 13px;
    color: #000;
}

.gz-comment_text h5 span a {
    text-decoration: none;
    color: #272727;
    padding-left: 25px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.single_form {
    padding: 0px 0px 80px;
}

a.gz-btn.button.padding {
    margin: 0;
}

.lms_entry_meta {
    margin: 5px 0px;
}

textarea.loc_form_field {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}

.loc_section_heading {
    color: #000;
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 700;
}

.loc_form_field {
    width: 100%;
    border: 1px solid #000;
    padding: 0 20px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    margin-bottom: 25px;
}

.gz-blog_sub_comment.gz-toppadder30 {
    margin-left: 60px;
}

/* conr=tact-form-css-start */
.cn-contact_wrapper {
    background: #ffffff;
    padding: 80px 0;
}

.cn-contact_from {
    width: 100%;
    margin: auto;
    background: #ffffff;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.08);
    padding: 45px 50px 50px;
}

.cn-contact_from .cn-title {
    margin-bottom: 26px;
}

.cn-inputField {
    margin-bottom: 30px;
    position: relative;
}

.cn-inputField input,
.cn-inputField textarea {
    width: 100%;
    padding: 0 60px 0 20px;
    height: 50px;
    box-shadow: inset 0 0 10px 0 rgba(194, 71, 96, 0.03);
    border: 1px solid #ced7e1;
    color: #ced7e1;
    border-radius: 40px;
}

.cn-inputField input:focus,
.cn-inputField textarea:focus {
    border-color: #ced7e1;
}

.cn-inputField input:focus,
.cn-inputField textarea:focus,
.cn-inputField input,
.cn-inputField textarea {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.cn-inputField i {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    color: #ced7e1;
    line-height: 50px;
}

.cn-inputField textarea {
    padding: 15px 60px 15px 20px;
    height: 150px;
}

.cn-contact_from .cn-btn-sub {
    margin: 1px 0 0 0;
    width: 108px !important;
    border-radius: 50px !important;
    height: 42px !important;
    border: 1px solid transparent !important;
    background: #00c3c9 !important;
    color: #fff !important;
}

.cn-contact_from input::-webkit-input-placeholder,
.cn-contact_from textarea::-webkit-input-placeholder {
    color: #ced7e1;
}

.cn-contact_from input::-moz-placeholder,
.cn-contact_from textarea::-moz-placeholder {
    color: #ced7e1;
}

.cn-contact_from input:-ms-input-placeholder,
.cn-contact_from textarea:-ms-input-placeholder {
    color: #ced7e1;
}

.cn-contact_from input:-moz-placeholder,
.cn-contact_from textarea:-moz-placeholder {
    color: #ced7e1;
}

.response {
    color: red;
}

/* end */
.cn-mg-top {
    margin-top: 0px;
}

.center .cn-add {
    text-align: center;
}

.center .cn-add-1 {
    text-align: center;
}

.center .cn-add-2 {
    text-align: center;
}


.cn-pd-top {
    padding: 80px 0px;
}

.cn-p-top {
    padding-top: 1px;
}

.cn-footer-bottom-wrapper.cn-pd-top {
    margin-top: 0px;
    padding-bottom: 0;
}

.cn-footer-bottom-wrapper-2.cn-pd-top {
    margin-top: 0px;
    padding-bottom: 0;
}

.center .cn-add {
    text-align: center;
    background: #f7f7fc;
    padding: 32px;
    margin: 10px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 18px 0px rgb(0, 0, 0, 1.1);
}

.center .cn-add-1 {
    text-align: center;
    background: #f7f7fc;
    padding: 45px 32px;
    margin: 10px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 18px 0px rgb(0, 0, 0, 1.1);
}

.center .cn-add-2 {
    text-align: center;
    background: #f7f7fc;
    padding: 57px 32px;
    margin: 10px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 18px 0px rgb(0, 0, 0, 1.1);
}

.center .cn-add h2 {
    padding: 10px 0px;
}

.center .cn-add-1 h2 {
    padding: 10px 0px;
}

.center .cn-add-2 h2 {
    padding: 10px 0px;
}

.cn-add:hover {
    transform: translatey(-10px);
}

.cn-add-1:hover {
    transform: translatey(-10px);
}

.cn-add-2:hover {
    transform: translatey(-10px);
}

/* .center .cn-add {
    text-align: center;
    background: rgb(247, 247, 252);
    padding: 32px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 18px 0px rgb(0, 0, 0, 0.1);
} */



/* css */
.ks-contact_wrapper {
    background: #ffffff;
    padding: 38px 0;
}

.ks-contact_from {
    width: 100%;
    margin: auto;
    background: #f7f7fc;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.08);
    padding: 45px 50px 50px;
}

.ks-contact_from .ks-title {
    margin-bottom: 26px;
    font-weight: 800;
}

.ks-inputField {
    margin-bottom: 30px;
    position: relative;
}

.ks-inputField input,
.ks-inputField textarea {
    width: 100%;
    padding: 0 60px 0 20px;
    height: 50px;
    box-shadow: inset 0 0 10px 0 rgba(194, 71, 96, 0.03);
    border: 1px solid #ced7e1;
    color: #000;
    border-radius: 5px;
}

.ks-inputField input:focus,
.ks-inputField textarea:focus {
    border-color: #ced7e1;
}

.ks-inputField input:focus,
.ks-inputField textarea:focus,
.ks-inputField input,
.ks-inputField textarea {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.ks-inputField i {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    color: #ced7e1;
    line-height: 50px;
}

.ks-inputField textarea {
    padding: 15px 60px 15px 20px;
    height: 150px;
}

/* .ks-contact_from .ks-btn-sub {
    margin: 1px 0 0 0;
    width: 108px !important;
    border-radius: 5px !important;
    height: 42px !important;
    border: 1px solid transparent !important;
    background: #00c3c9 !important;
    color: #fff !important;
} */
.ks-contact_from input::-webkit-input-placeholder,
.ks-contact_from textarea::-webkit-input-placeholder {
    color: #ced7e1;
}

.ks-contact_from input::-moz-placeholder,
.ks-contact_from textarea::-moz-placeholder {
    color: #ced7e1;
}

.ks-contact_from input:-ms-input-placeholder,
.ks-contact_from textarea:-ms-input-placeholder {
    color: #ced7e1;
}

.ks-contact_from input:-moz-placeholder,
.ks-contact_from textarea:-moz-placeholder {
    color: #ced7e1;
}

.swiper-container.swiper-initialized.swiper-horizontal {
    overflow: hidden;
}

.mapss {
    width: 550px;
}

.mapss1 {
    width: 100%;
}

/* .tdimension {
    width: 400px;
    height: 300px;
    margin: 20px auto 40px auto;
    perspective: 1000px;
} */

/* .tdimension a {
    display: block;
    width: 100%;
    height: 100%;
    background: url('../newimages/1.About\ us.jpg');
    background-size: cover;
    transform-style: preserve-3d;
    transform: rotateX(70deg);
    transition: all 0.8s;
} */

/* .tdimension:hover a {
    transform: rotateX(20deg);
} */

/* .tdimension a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    transform: rotateX(90deg);
    transform-origin: bottom;
} */
/* 
.tdimension-1 {
    width: 400px;
    height: 300px;
    object-fit: cover;
    margin: 20px auto 40px auto;
    perspective: 1000px;
} */

/* .tdimension-1 a {
    display: block;
    width: 100%;
    height: 100%;
    background: url('/assets/newimages/2.Our\ Mission.jpg');
    background-size: cover;
    transform-style: preserve-3d;
    transform: rotateX(70deg);
    transition: all 0.8s;
} */

/* .tdimension-1:hover a {
    transform: rotateX(20deg);
} */

/* .tdimension-1 a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    transform: rotateX(90deg);
    transform-origin: bottom;
} */

/* .tdimension-2 {
    width: 400px;
    height: 300px;
    object-fit: cover;
    margin: 20px auto 40px auto;
    perspective: 1000px;
} */

/* .tdimension-2 a {
    display: block;
    width: 100%;
    height: 100%;
    background: url('../newimages/6.purpose\ Mission\ and\ Values.jpeg');
    background-size: cover;
    transform-style: preserve-3d;
    transform: rotateX(70deg);
    transition: all 0.8s;
} */

/* .tdimension-2:hover a {
    transform: rotateX(20deg);
} */

/* .tdimension-2 a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    transform: rotateX(90deg);
    transform-origin: bottom;
} */

.hover1 {
    width: 100%;
    max-width: 400px;
    height: 240px;
    margin-left: 70px;
    border-radius: 5px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover1:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hover2 {
    width: 400px;
    margin-left: 100px;
    border-radius: 5px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover2:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.hover3 {
    width: 400px;
    height: 240px;
    border-radius: 5px;
    object-fit: cover;
    margin-left: 70px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover3:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.hover15 figure {
    text-align: center;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover15 figure:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}



/* slider readmore btn  */
.cn-service-inner>h5+p~h4,
.cn-service-inner>h5+p~p {
    display: none;
}

.cn-service-inner.active>h5+p~h4,
.cn-service-inner.active>h5+p~p {
    display: block;
}

.rdm-btn {
    max-width: 130px;
    width: 100%;
    min-height: 38px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin: 20px 80px;
    text-transform: uppercase;
    border: 2px solid #5daf59;
    color: white;
    cursor: pointer;
    position: relative;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    overflow: hidden;
    font-family: sans-serif;
    transition: all 0.35s ease-in-out;
    z-index: 1;
    border-radius: 4px;
}

.rdm-btn:before {
    width: 100%;
    height: 100%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: #5daf59;
    transition: all 0.35s ease-in-out;
    z-index: -1;
}

.rdm-btn:after {
    width: 100%;
    height: 100%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: #5daf59;
    transition: all 0.35s ease-in-out;
    z-index: -1;
}

.rdm-btn:hover {
    color: #5daf59;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rdm-btn:hover:before {
    transform: rotateX(90deg);
}

.rdm-btn:hover:after {
    transform: rotateY(90deg);
}

.options {
    width: 100%;
    padding: 0 60px 0 20px;
    height: 50px;
    box-shadow: inset 0 0 10px 0 rgba(194, 71, 96, 0.03);
    border: 1px solid #ced7e1;
    color: #000;
    border-radius: 5px;
}

.hover11 {
    width: 400px;
    border-radius: 5px;
    margin-left: 70px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


.hover11:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.second {
    /* margin-top: 50px; */
}

.logo-novel {
    width: 118px;
    margin-top: -20px;
    transform: scale(1.5);

}

.left-con {
    width: 500px;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
    margin-top: 700px;
    margin-left: 50px;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.lefttu {
    margin-left: 180px;
}

.hover4 {
    width: 100%;
    max-width: 400px;
    height: 240px;
    margin-left: 200px;
    border-radius: 5px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hover4:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.my-float {
    position: absolute;
    position: fixed;
    width: 150px;
    height: 50px;
    bottom: 50px;
    left: 30px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
}

.gst {
    margin-left: 50px;
    font-weight: 700;
    text-align: center;
    background: #f7f7fc;
    padding: 32px;
    margin: 10px;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 18px 0px rgb(0, 0, 0, 1.1);
}