/********************************************************
1. body start
 *******************************************************/
:root {
    --ca-theme-color:#5956e9;
    --ca-white-color: #ffffff;
    --ca-heading-color:#000;
    --ca-grey-color:#808285;                 
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;    
    overflow-x: hidden;
    font-family: 'DM Sans';
}   
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;
}
.ca-top-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--ca-theme-color);
    text-transform: capitalize;    
    display: inline-block;
    padding-left: 40px;
}
.ca-heading {
    font-size: 45px;
    color: var(--ca-heading-color);
    font-weight: 800;      
}
.ca-paragraph{    
    font-size: 17px;    
    color: var(--ca-grey-color);
    font-weight: 400;
}
/* button css start*/
.ca-btn {
    min-width: 180px;
    min-height: 55px;
    padding: 0px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 500;
    color: var(--ca-white-color);
    text-transform: capitalize;
    background-color: var(--ca-theme-color);
    border-radius: 40px;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
} 
.ca-btn > img{
    display: block;
    transition: all 0.3s ease-out;
}
.ca-btn:hover img{
    transform: rotate(45deg);
}
.ca-btn::before {
    content: "";
    position: absolute;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background: var(--ca-heading-color);
    border-radius: 50%;
}
.ca-btn:hover { 
    color: var(--ca-white-color);
}
.ca-btn:hover::before, .ca-btn:focus-visible::before {
    top: -40%;
}
button.ca-btn {
    border: none;
    min-width: 200px;
}
/* button css end*/ 

/* logo */
.ca-navbar-menu .responsive-logo a img{
    display: none;
}
.ca-toggle-btn{
    display: none;
}
/* logo */

/* header section css start */
.ca-header-wrapper {     
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
.ca-header-inner{
    display: flex;
    align-items: center;
}
.ca-brand-logo a img {
    max-width: 205px;
    height: 41px;
    object-fit: contain;
}
.ca-navbar-menu {
    margin-left: auto;
}
.ca-navbar-menu ul li{
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}
.ca-navbar-menu ul li:last-child{
    margin-right: 0;
}
.ca-navbar-menu ul li a {
    color: var(--ca-heading-color);
    font-size: 16px;
    font-weight: 500;
    padding: 32px 0;
    display: inline-block;
    position: relative;    
}
.ca-navbar-menu ul li a img {
    max-width: 24px;
    height: 24px;
    object-fit: contain;
}
.menu li a:hover,.menu .active a {
  color: var(--ca-theme-color);
}
.ca-header-right ul li{
    display: inline-block;
    vertical-align: middle;
}
.ca-header-right ul li:first-child{
    margin-right: 20px;
}
.ca-header-right ul li a img {
    max-width: 24px;
    height: 24px;
    object-fit: contain;
}
/* header section css end */
/* banner section css start */
.ca-banner-wrapper {
    background-image: url(../images/banner-bg.png);    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 205px 0 150px 0;
    position: relative;
    z-index: 1;
}
.ca-banner-wrapper::before{
    content: '';
    background-image: url(../images/banner-bg-shape.png);    
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;    
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.ca-header-wrapper .container, .ca-banner-wrapper .container {
    max-width: 1400px;
}
.ca-top-heading-div {
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
}
.ca-top-heading-div span {
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background-color:var(--ca-theme-color);    
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);    
}
.ca-top-heading-div span{
    left: 0;
}
.ca-banner-left h4 {
    text-align: left;
}
.ca-banner-left h1 {
    font-size: 75px;
    color: var(--ca-heading-color);
    font-weight: 800; 
    margin-bottom: 20px;
    line-height: 1;
}
.ca-banner-left h1 span{
    color: var(--ca-theme-color);
}
.ca-banner-left p {
    font-size: 16px;
    line-height: 26px;
    color: var(--ca-grey-color);
    font-weight: 400;
    max-width: 520px;
    width: 100%;
}
.ca-banner-btn{
    margin-top: 35px;
}
.ca-banner-btn .ca-btn {
    min-width: 250px;        
    font-size: 18px;
}
.ca-banner-right {
    text-align: right;    
}
/* banner section css end */

/* partner section css start */
.ca-partner-wrapper {
    background-color: #f9fafd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.ca-partner-heading span{
    display: block;
    color: var(--ca-theme-color);    
    font-weight: 800;
}
.ca-partner-wrapper .swiper-container{
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.ca-partner-wrapper .swiper-slide{
    text-align: center;    
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}
.ca-partner-wrapper .swiper-slide img {
    max-width: 103px;
    height: 50px;
    object-fit: contain;
}
.ca-partner-wrapper .swiper-slide:hover{
    transform: translateY(-10px);
}
.ca-partner-wrapper .swiper-slide:hover{
    opacity: 1;
}
/* partner section css end */

/* about section css start */
.ca-about-wrapper {
    background-color: var(--ca-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    width: 100%;
    position: relative;
}
.ca-about-box {
    padding: 40px 17px 65px 18px;
    border-radius: 10px;
    background-color: #f7fcff;
    border: 1px solid #c6eaff;
    transition: all 0.3s ease-in-out;
}
.ca-about-inner{
    text-align: center;
}
.ca-about-inner span{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow:-9.804px 15.096px 10px rgba(38,171,250,0.2);
    background-color: #5fc3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: all 0.3s ease-in-out;
}
.ca-about-inner span img {
    max-width: 34px;
    height: 30px;
    object-fit: contain;
}
.ca-about-inner h5{
    font-size: 20px;
    color: #38b5ff;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    margin-top: 30px;
}
.ca-about-inner .ca-paragraph{
    margin-top: 24px;
}
.ca-about-btn{
    max-width: 140px;
    width: 100%;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    background-color: #f7fcff;
    border: 1px solid #c6eaff;    
    margin: -25px auto 0 auto;
    transition: all 0.3s ease-in-out;
}
.ca-about-btn a{
    font-size: 12px;
    letter-spacing: 1px;    
    color: #5fc3ff;
    text-transform: uppercase;
    font-weight: 700;
}
.ca-about-left-img{
    position: relative;
    display: flex;
    gap: 30px;
}
.ca-about-left-img > img {
    position: absolute;
    top: -110px;
    right: 110px;    
    display: block;
    animation: switchrotate 10s linear infinite;
}
@keyframes switchrotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.ca-abt-img{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.ca-abt-img img {
    max-width: 300px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s;
}
.ca-abt-img:hover img{
    transform: scale(1.3);
}
.ca-abt-img{
    bottom: 70px;
}
.ca-abt-img2{    
    top: 70px;
}
.ca-about-right .ca-heading {
    text-align: left;
}
.ca-about-right .ca-top-heading{
    text-align: left;
}
.ca-about-right .ca-paragraph {    
    margin: 20px 0;
}
.ca-about-right ul{
    margin-bottom: 25px;
}
.ca-about-right ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ca-heading-color);
}
/* about section css end */

/* activity section css start */
.ca-activity-wrapper {
    padding: 80px 0;
    background-color: #f9fafd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.ca-activity-heading p {
    max-width: 400px;
    padding: 20px 0;
}
.ca-activity-box {
    position: relative;
}
.ca-service-img > img {
    max-width: 100px;
    height: 90px;
    object-fit: contain;    
    transition: all 0.8s;
}
.ca-activity-box {
    background: var(--ca-white-color);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.05);
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}
.ca-activity-box:hover {
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.ca-activity-box:hover .ca-service-img > img{
    transform: translateY(-5px);
}
.ca-activity-inner>img:first-child {
    margin-left: 5px;
    max-width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}
.ca-activity-inner h3 {
    font-size: 20px;
    color: var(--ca-heading-color);
    font-weight: 700;
    text-transform: capitalize;
    padding-top: 20px;
    transition: all 0.3s;
}
.ca-activity-inner p {
    font-size: 15px;
    font-weight: 400;
    color: var(--ca-grey-color);
    padding: 10px 0 15px 0;
}
.ca-activity-box:hover .ca-activity-inner h3{
    color: var(--ca-theme-color);
}
.ca-more img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
}
/* activity section css end */

/* counter section css start */
.ca-counter-wrapper {
    background-image: url(../images/counter_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 80px 0;
}
.ca-counter-parent {    
    text-align: center;    
}
.ca-count > span {
    width: 90px;
    height: 90px;
    background: var(--ca-theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.ca-count > span img {
    max-width: 45px;
    height: 45px;
    object-fit: contain;
}
.counting {
    font-size: 45px;
    color: var(--ca-theme-color);
    font-weight: 700;
}
.ca-count-heading h5 {
    font-size: 18px;
    color: var(--ca-heading-color);
    font-weight: 600;
    text-transform: capitalize;
}
.ca-count:hover span{
    transform: translateY(-10px);
}
/* counter section css end */

/* client section css start */
.ca-client-wrapper{
    background-color: var(--ca-white-color);
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
}
.ca-client-heading .ca-heading {    
    max-width: 600px;
}
.ca-client-heading p {
    font-size: 16px;
    font-weight: 500;
    color: var(--ca-white-color);
    max-width: 390px;
    width: 100%;
    padding-top: 20px;
}
.ca-client-box {
    background-color: #f9f9fd;
    border-radius: 20px;
    padding: 50px 30px 45px 40px;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.ca-client-box:hover {
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.ca-client-heading {    
    padding-bottom: 20px;
}
.ca-client-heading .ca-top-heading {
    text-align: left;
}
.ca-client-box-inner .ca-client-heading {
    display: flex;
    align-items: center;
}
.ca-client-name{
    margin-left: 20px;
}
.ca-client-name h6 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ca-heading-color);
    transition: all 0.3s ease-in-out; 
}
.ca-client-name p {
    font-size: 16px;
    font-weight: 500;
    color: var(--ca-theme-color);
    padding-top: 0;
}
.ca-client-text .ca-paragraph {
    font-size: 15px;    
}
.ca-qoute-img {
    position: absolute;
    top: -15px;
    right: 20px;
}
.ca-qoute-img span img {
    max-width: 50px;
    height: 40px;
    object-fit: contain;
}
.ca-client-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--ca-theme-color);
    padding: 2px;
}
.ca-client-wrapper .swiper-container {
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.ca-client-wrapper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background-color: var(--ca-grey-color);
}
.ca-client-wrapper .swiper-pagination-bullet-active {
    background-color:var(--ca-theme-color);
}
.ca-client-wrapper .swiper-slide{
    transition: all 0.3s ease-in-out;
}
/* client section css end */

/* contact section css start */
.ca-contact-wrapper{
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/testimonial-bg.jpg);
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.ca-conact-left .ca-top-heading{
    color: var(--ca-white-color);
}
.ca-conact-left .ca-top-heading-div span{
    background-color: var(--ca-white-color);
}
.ca-contact-wrapper .ca-heading {
    color: var(--ca-white-color);
    max-width: 400px;
}
.ca-contact-wrapper .ca-activity-heading p{
    color: var(--ca-white-color);
}
.ca-conact-right {
    background: var(--ca-white-color);
    border-radius: 20px;
    padding: 50px;
}
.ca-contact-info {
    padding-top: 20px;
}
.ca-contact-wrapper .ca-activity-heading p { 
    padding: 20px 0;
}
.ca-conact-right .mt_form_input label {
    font-size: 17px;
    font-weight: 500;
    color: var(--ca-heading-color);
    text-transform: capitalize;
}
.ca-conact-right .mt_form_input input {
    width: 100%;
    height: 50px; 
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ca-conact-right .mt_form_input{
    margin-bottom: 30px;
}
.ca-contact-flex {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.ca-contact-info-right {
    margin-left: 20px;
}
.ca-contact-info-right p{
    font-size: 15px;
    font-weight: 400;
    color: var(--ca-white-color);
    text-transform: capitalize;
}
.ca-contact-info-right h6{
    font-size: 18px;
    font-weight: 400;
    color: var(--ca-white-color);
}
.ca-contact-info-left img {
    max-width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}
/* contact section css end */

/* project section css start */
.ca-project-wrapper {
    padding: 80px 0;
    background-color: #f9fafd;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.ca-heading-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ca-project-wrapper .ca-activity-heading {
    max-width: 370px;
    padding-bottom: 50px;
}
.ca-project-box {
    background: var(--ca-white-color);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.05);
    padding: 30px;
    transition: all 0.3s;
}
.ca-project-box:hover {
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.ca-project-img img {
    max-width: 150px;
    height: 150px;
    object-fit: contain;
}
.ca-project-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ca-heading-color);
    text-transform: capitalize;
    padding: 18px 0 10px 0;
    transition: all 0.3s;
}
.ca-project-box:hover .ca-project-content h4{
    color: var(--ca-theme-color);
}
.ca-project-content p { 
    font-size: 15px;
    font-weight: 400;
    color: var(--ca-grey-color);
}
.ca-project-content .ca-more {
    margin-top: 10px;
}
/* project section css end */

/* blog section css start */
.ca-blog-wrapper{
    padding: 80px 0;
    background-color: var(--ca-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.ca-blog-heading {
    padding-bottom: 50px;
    max-width: 500px;
    width: 100%;
}
.ca-blog-heading .ca-paragraph{
    margin-left: auto;
    color: var(--ca-theme-color);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.ca-blog-heading img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
    margin: 2px 0 0 5px;
}
.ca-blog-heading .ca-paragraph:hover{
    letter-spacing: 2px;
}
.ca-blog-box {
    background-color: var(--ca-white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.05);
    padding: 30px;
    border-radius: 20px;
}
.ca-blog-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.ca-blog-content{
    position: relative;
}
.ca-blog-img {
    max-width: 200px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    flex: none;
}
.ca-blog-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.ca-blog-box:hover .ca-blog-img img{
    transform: scale(1.2)rotate(5deg);
}
.ca-blog-content>img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
}
.ca-blog-content h4 {
    font-size: 20px;
    color: var(--ca-heading-color);
    font-weight: 700;
    text-transform: capitalize;
}
.ca-blog-content .ca-paragraph { 
    font-size: 15px;
    margin: 15px 0;
}
.ca-blog-footer {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.ca-blog-footer-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ca-blog-footer-info:last-child {
    margin-left: 20px;
}
.ca-blog-footer-info a {
    font-size: 16px;
    color: var(--ca-theme-color);
    font-weight: 400;
}
.ca-blog-footer-info img {    
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.ca-readmore {
    font-size: 16px;
    font-weight: 500;
    color: var(--ca-theme-color);
    text-transform: capitalize;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ca-readmore:hover{
    color: var(--ca-theme-color);
    letter-spacing: 1px;
}
/* blog section css end */

/* footer section css start */
.ca-footer-wrapper {
    padding: 80px 0;
    background-color:var(--ca-heading-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.ca-footer-logo img {
    max-width: 205px;
    height: 41px;
    object-fit: contain;
}
.ca-footer-text .ca-paragraph {
    color: var(--ca-white-color);
    margin: 22px 0 10px 0; 
    font-size: 16px;
}
.ca-footer-text a{
    font-size: 16px;
    font-weight: 400;
    color: var(--ca-white-color);
    transition: all 0.3s ease-in-out;
}
.ca-footer-icon ul{
    margin-top: 25px;
    display: flex;    
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.ca-footer-icon ul li a {
    width: 44px;
    height: 44px;
    color: var(--ca-white-color);
    background-color: var(--ca-theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.ca-footer-icon ul li a:hover{
    background-color: var(--ca-theme-color);    
    color: var(--ca-white-color);    
    transform: translateY(-5px);
}
.ca-footer-icon ul li a img {
    max-width: 19px;
    height: 16px;
    object-fit: contain;
}
.ca-footer-linca-heading .ca-heading {
    text-align: left;
    color: var(--ca-white-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 36px;
    position: relative;
    text-transform: capitalize;
}
.ca-footer-link ul li{    
    margin-bottom: 10px;
}
.ca-footer-link ul li a {
    color: var(--ca-white-color);
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
.ca-footer-link ul li a::before{
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--ca-white-color);
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: all 0.3s ease-out;
}
.ca-footer-link ul li a:hover:before{
    width: 100%;
}
.ca-footer-link ul li img {
    margin: -2px 10px 0 0;
    max-width: 15px;
    height: 15px;
    object-fit: contain;
}                       
.ca-footer-form{
    margin-top: 10px;
}
.ca-footer-form input {
    height: 50px;
    width: 100%;
    background-color: var(--ca-white-color);    
    border-radius: 40px;
    color: var(--ca-heading-color); 
    font-weight: 400;
    border: none;
    padding: 0 20px;
    margin-bottom: 15px;
}
.ca-footer-form input::placeholder{
    font-size: 14px;
    color: var(--ca-grey-color); 
    font-weight: 400;
}
.ca-footer-form .ca-btn {
    width: 100%;    
}
/* footer section css end */
/* copyright section css start */
.ca-copyright-wrapper {
    background-color: #111;
}
.ca-copyright-wrapper p {
    font-size: 15px;
    color: var(--ca-white-color);
    font-weight: 400;    
    text-align: center;
    padding: 15px 0;
}
.ca-copyright-wrapper a{
    color: var(--ca-white-color);    
}
/* copyright section css end */
/* swiper slider */
.ca-client-wrapper .swiper-pointer-events, .ca-partner-wrapper .swiper-pointer-events{
    touch-action: pan-y;
    overflow: hidden;
    position: relative;
}
/* swiper slider */

/* Responsive CSS Start */
@media(min-width:992px){
    .ca-header-wrapper.ca-header-fixed {
        position: fixed;
        background: rgba(255,255,255,0.7);
        box-shadow: 0 0 25px 0 rgba(0,0,0,0.08);
        backdrop-filter: blur(8px);
        transition: all 0.7s ease-in-out;
        -webkit-animation: slideInDown .7s;
        -moz-animation: slideInDown 0.7s;
        -ms-animation: slideInDown 0.7s;
        -o-animation: slideInDown 0.7s;
        animation: slideInDown 0.7s;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9;
    }
}
@media(max-width:1550px){
    .ca-banner-right img {
        max-width: 100%;
        height: auto; 
    }
}
@media(max-width:1440px){
    .ca-banner-left h1 {
        font-size: 65px;
    }
}
@media(max-width:1199px){        
    .ca-navbar-menu ul li{
        margin-right: 30px;
    }
    .ca-banner-wrapper {
        padding: 150px 0 80px 0;
    }
    .ca-banner-left {
        padding-top: 0;
    }
    .ca-banner-right {     
        padding: 0px 0 0 0;
    }
    .ca-banner-right img {
        max-width: 500px;
        width: 100%;     
    }       
    .ca-blog-footer span:nth-child(2) {
        margin-left: 10px;
    }
    .ca-blog-footer span svg {
        margin-right: 2px;
    }
    .ca-client-box:after{
        max-width: 400px;
    }
    .ca-banner-left h1 {
        font-size: 55px;
    }
    .ca-abt-img img {
        max-width: 250px;        
        height: 280px;
    }
    .ca-about-left-img > img {
        top: -70px;
        right: 90px;
        width: 120px;
        height: auto;
    }
    .ca-blog-img {
        max-width: 150px;
    }
}

@media(max-width:991px){
    .ca-header-right {
        max-width: 200px;
        width: 100%;
    }
    .ca-banne-right {
        margin-top: 30px;
    }
    .ca-navbar-menu .responsive-logo a img{
        display: block;
    }
    .ca-toggle-btn {
        display: block;
        position: absolute;
        right: 25px;
        top: 23px;
        cursor: pointer;
    }
    .ca-brand-logo { 
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        position: relative;
    }    
    .ca-header-parent {      
        background: none;
    }
    .ca-navbar-menu ul {
        position: fixed;
        top: 0px;
        left: -260px;
        width: 260px;
        height: 100%;
        background-color: var(--ca-white-color);
        box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
        transition: all 0.3s ease-in-out;
        padding: 20px 0 20px 30px;
        z-index: 99;
    }
    .ca-navbar-menu ul li{
        display: block;        
        padding: 0 0 10px 10px;
    }
    .ca-navbar-menu ul li a{
        padding: 10px 0;
    }
    .ca-toggle-btn span {
        width: 30px;
        height: 4px;
        background-color: var(--ca-theme-color);
        margin-bottom: 5px;
        display: block;
        margin-left: auto;                
        transition: all 0.3s ease-in-out;
    }
    .menu-open .ca-toggle-btn > span:nth-child(2) {
        transform: translateX(20px);
        visibility: hidden;
        opacity: 0;
    }
    .menu-open .ca-toggle-btn > span:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 4px 4px;
    }
    .menu-open .ca-toggle-btn > span:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 4px -1px;
    } 
    .menu-open .ca-navbar-menu ul {
        left: 0;
    }
    .ca-banner-left h1 {     
        max-width: 500px;
    }        
    .ca-banner-left, .ca-banner-left h4 {
        text-align: center;
    }
    .ca-banner-left p {
        margin: 15px auto 0;
    }
    .ca-banner-btn {
        margin-top: 20px;
    }
    .ca-banner-btn .ca-btn {
        min-width: 150px;
        font-size: 15px;
    }    
    .ca-banner-left h1 {
        max-width: 600px;
        margin: auto;
    }
    .ca-banner-right {     
        text-align: center;
    }
    .counting {
        font-size: 30px;
    }
    .ca-about-right {
        margin-top: 60px;    
    }
    .ca-about-right .ca-dark-btn{
        margin: auto;
    }
    .single-content {
        flex: 0 0 33.33%;
        max-width: 33.33%;        
    }
    .ca-client-box:after{
        display: none;
    }
    .ca-footer-link-parent, .ca-footer-last-parent {
        margin-top: 30px;
    }
    .ca-activity-box.activity-second {
        margin: 30px 0;
    }
    .ca-team-img img {        
        max-width: 100%;
        height: auto;
    }
    .ca-banne-right img {
        max-width: 100%;
        height: auto;     
    }
    .counting {
        margin-top: 0;
    }
    .ca-menu-right {
        text-align: center;
    }
    .ca-service-img {     
        text-align: center;
    }
    .ca-service-img img {
        max-width: 100%;     
    }
    .ca-count > span {
        width: 85px;
        height: 85px;
    }
    .ca-count > span img {
        max-width: 44px;
        height: 44px;     
    }
    .ca-choose-img img {
        width: 100%;
        height: auto;
    }
    .ca-choose-right-main {
        padding-top: 30px;
    }
    .ca-choose-box h4 {
        font-size: 18px;
    }
    .ca-choose-wrapper {
        padding-bottom: 50px;
    }    
    .ca-banner-wrapper .container .row {
        flex-direction: column-reverse;
    }
    .ca-header-wrapper {
        background: var(--ca-white-color);
        position: unset;
    }
    .ca-banner-wrapper {
        padding: 80px 0;
    }
    .ca-about-left-img {
        gap: 0px;
        max-width: 450px;
        width: 100%;
        margin: auto;
    }
    .ca-about-left-img > img{
        display: none;
    }
    .ca-abt-img {
        bottom: 30px;
    }
    .ca-abt-img2 {
        top: 50px;
        left: -50px;
        border: 5px solid #fff;
    }
    .ca-activity-heading .ca-btn{
        display: none;
    }
    .ca-contact-wrapper .ca-activity-heading p {        
        padding-bottom: 0;
    }
    .ca-blog-img {
        max-width: 250px;
    }
}

@media(max-width:767px){    
    .single-content {
        flex: 0 0 50%;
        max-width: 50%;        
    }         
    .ca-choose-box {
        max-width: 300px;
        margin: auto;
    }
    .ca-choose-heading .ca-top-heading, .ca-choose-heading .ca-heading {
        text-align: center;
    }
    .ca-choose-heading {
        text-align: center;
    }
    .ca-heading-flex {
        display: block;
    }
    .ca-heading-flex .ca-btn{
        display: none;
    }
    .ca-blog-img {
        max-width: 180px;
    }
    .ca-blog-box {
        padding: 20px;     
    }
    .ca-footer-linca-heading .ca-heading {
        margin-bottom: 15px;
    }
}
@media(max-width:575px){
    .ca-banner-wrapper {
        background-position: inherit;
        padding:50px 0;
    }    
    .ca-banner-left h4 {
        font-size: 14px;
        max-width: 425px;
    }
    .ca-banner-left h1 {
        font-size: 30px;     
    }
    .ca-banner-left p {
        font-size: 13px;
        line-height: normal;     
    }
    .ca-banner-btn{
        display: block;
    }         
    .ca-header-right {     
        display: none;
    }
    .ca-toggle-btn {
        right: 15px;
    }
    .ca-about-left-img {
        margin-top: 30px;
    }
    .ca-banner-right img {
        max-width: 400px;     
    }
    .ca-banner-wrapper::before{
        display: none;
    }    
}
@media(max-width:480px){
    .ca-about-right .ca-paragraph {
        margin: 10px 0 15px 0;
        font-size: 14px;
    }
    .ca-banner-right img {
        max-width: 300px;
    }
    .ca-btn {
        min-width: 150px;
        min-height: 45px;
        font-size: 16px;
    }
    .ca-heading, .ca-work-wrapper .ca-heading {        
        font-size: 25px;     
    }
    .ca-contact-wrapper, .ca-activity-wrapper, .ca-about-wrapper, .ca-counter-wrapper, .ca-work-wrapper, .ca-blog-wrapper, .ca-client-wrapper, .ca-partner-wrapper .swiper-container, .ca-menu-wrapper, .ca-footer-wrapper, .ca-cta-wrapper  {
        padding: 50px 0;     
    }
    .ca-abt-img2{
        display: none;
    }
    .ca-about-left-img {        
        max-width: 100%;     
    }
    .ca-abt-img {        
        width: 100%;
        position: unset;
    }
    .ca-abt-img img {
        max-width: 100%;
        height: 350px;
    }
    .ca-about-right {
        margin-top: 0;
    }
    .ca-top-heading-div span {
        width: 20px;
    }
    .ca-top-heading {
        font-size: 18px;
        padding-left: 30px;
    }
    .ca-about-right ul li {
        gap: 5px;
        margin-bottom: 3px;
        font-size: 16px;
    }
    .ca-count > span {
        width: 70px;
        height: 70px;
    }
    .ca-count > span img {
        max-width: 35px;
        height: 35px;
    }
    .counting {
        font-size: 25px;
    }
    .ca-count-heading h5 {
        font-size: 15px;
    }
    .ca-project-wrapper .ca-activity-heading, .ca-blog-heading {        
        padding-bottom: 20px;
    }
    .ca-client-box {
        margin-top: 20px;
        padding: 30px 20px 30px 30px;
    }
    .ca-client-name {
        margin-left: 10px;
    }
    .ca-conact-right {
        padding: 30px 20px;
    }
    .ca-blog-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .ca-blog-img {
        max-width: 100%;
    }
    .ca-blog-box {
        padding: 15px;
    }
    .ca-conact-right .mt_form_input {
        margin-bottom: 20px;
    }
    .ca-conact-right .mt_form_input label {
        font-size: 15px;     
    }
    .ca-conact-right .mt_form_input input {        
        height: 40px; 
        font-size: 14px;
    }
    .ca-footer-text .ca-paragraph {
        margin: 20px 0 10px 0;
        font-size: 14px;
    }
    .ca-footer-linca-heading .ca-heading {
        font-size: 20px;
    }
    .ca-footer-link ul li{
        margin-bottom: 0;
    }
    .ca-footer-link ul li a {        
        font-size: 15px;
    }
    .ca-copyright-wrapper p {
        font-size: 13px;
        padding: 10px 0;
    }
}
@media(max-width:425px){                    
    .ca-blog-heading .ca-heading{
        font-size: 22px;
    }
    .ca-blog-heading .ca-paragraph{
        font-size: 14px;
    }
    .ca-partner-heading .ca-heading {
        font-size: 17px;
    }    
    .ca-client-box{
        margin-top: 20px;
    }    
    .ca-client-wrapper .swiper-container {
        padding-bottom: 60px;
    }
    .ca-partner-wrapper .swiper-slide {
        margin-top: 12px;
    }
    .ca-menu-list {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .ca-menu-list .ca-menu-img img {
        margin-right: 0;
    }
    .ca-menu-content {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }    
    .ca-cta-heading .ca-heading {
        font-size: 25px;     
    }
    .ca-client-box {
        padding: 30px 20px 25px 20px;
    }
    .ca-project-box {
        padding: 30px 15px;
    }
}
@media(max-width:375px){    
    .single-content {
        flex: 0 0 100%;
        max-width: 100%;        
    }    
    .ca-gallery-img{
        margin-left: 15px;
    }       
    .ca-main-btn {
        flex-direction: column;
    }
    .ca-main-btn a:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .ca-banner-left {     
        text-align: center;
    }
}
/* Responsive CSS End */