/********************************************************
1. body start
 *******************************************************/
:root {    
    --cs-theme-color:#7f4f24;
    --cs-white-color: #ffffff;    
    --cs-text-color:#222;    
    --cs-grey-color:#9c9993;            
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;    
    overflow-x: hidden;
    font-family: 'Poppins', 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;
}
.cs-top-heading {
    font-size: 15px;
    font-weight: 500;
    color: var(--cs-white-color);
    background: var(--cs-theme-color);
    text-transform: capitalize;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
    border-radius: 50px;
    padding: 0 20px;
    margin-bottom: 10px;
}
.cs-heading {
    font-size: 40px;
    color: var(--cs-text-color);
    font-weight: 800;
    text-transform: capitalize;
    text-align: center;
}
.cs-paragraph{    
    font-size: 15px;    
    color: var(--cs-grey-color);
    font-weight: 400;
}
/* button css start*/
.cs-btn {
    min-width: 150px; 
    padding: 15px 20px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--cs-white-color);
    text-transform: capitalize;
    background-color: var(--cs-theme-color); 
    border-radius: 6px;   
    transition: all 0.3s ease-in-out;
}  
.cs-btn:hover {
    background: #bd4511;
    color: var(--cs-white-color);
}
button.cs-btn{
    border: none;
}
/* button css end*/ 

/* logo */
.cs-navbar-menu .responsive-logo a img{
    display: none;
}
.cs-toggle-btn{
    display: none;
}
/* logo */

/* header section css start */
.cs-header-wrapper {
    background-color: var(--cs-white-color);    
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    max-width: 1350px;
    width: 100%;
    margin: auto;
    border-radius: 10px;
}
.cs-header-inner{
    display: flex;
    align-items: center;
}
.cs-brand-logo a img {
    max-width: 193px;
    height: 41px;
    object-fit: contain;
}
.cs-navbar-menu {
    margin-left: auto;
}
.cs-navbar-menu ul li{
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}
.cs-navbar-menu ul li a {
    color: var(--cs-text-color);
    font-size: 16px;
    font-weight: 500;
    padding: 32px 0;
    display: inline-block;
    position: relative;    
}
.cs-navbar-menu ul li a img {
    max-width: 24px;
    height: 24px;
    object-fit: contain;
}
.menu li a:hover,.menu .active a {
  color: var(--cs-theme-color);
}
.cs-header-right ul li{
    display: inline-block;
    vertical-align: middle;
}
.cs-header-right ul li:first-child{
    margin-right: 20px;
}
.cs-header-right ul li a img {
    max-width: 24px;
    height: 24px;
    object-fit: contain;
}
/* header section css end */
/* banner section css start */
.cs-banner-wrapper {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 280px 0 150px 0;
}
.cs-header-wrapper .container, .cs-banner-wrapper .container {
    max-width: 1400px;
}
.cs-banner-left {
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    text-align: left;
}
.cs-banner-left .cs-top-heading {
    text-align: left;
}
.cs-banner-left h1 {
    font-size: 65px;
    color: var(--cs-white-color);
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 10px;
    max-width: 800px;
    width: 100%;    
}
.cs-banner-left h1 span{
    color: var(--cs-theme-color);
}
.cs-banner-left p {
    font-size: 18px;
    line-height: 26px;
    color: var(--cs-white-color);
    font-weight: 300;
    max-width: 560px;
    width: 100%;    
    padding-top: 20px;
}
.cs-banner-btn .cs-btn {
    min-width: 200px;        
    font-size: 18px;
}
.cs-banner-btn {
    margin-top: 35px;    
}
.cs-banner-right {
    text-align: right;    
}
.cs-banner-right img {
    max-width: 570px;
    height: 574px;
    object-fit: contain;
}
/* banner section css end */

/* Feature section css start */
.cs-feature-wrapper{
    background-color: var(--cs-white-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 80px 0;
}
.cs-feature-box {
    background-color: var(--cs-white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.05);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}
.cs-feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cs-text-color);
    text-transform: capitalize;
    padding: 0px 0 15px 0;
}
.cs-feature-content p {
    padding-bottom: 20px;
}
.readmore {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: var(--cs-theme-color);
    transition: all 0.3s;
}
.readmore:hover{
    letter-spacing: 1px;
    color: var(--cs-theme-color);
}
/* Feature section css end */

/* partner section css start */
.cs-partner-wrapper {    
    width: 100%;    
}
.cs-partner-wrapper .swiper-container {
    position: relative;
    padding: 80px 0 0 0;
    overflow: hidden;
}
.cs-partner-heading span{
    display: block;
    color: var(--cs-theme-color);    
    font-weight: 800;
}
.cs-partner-wrapper .swiper-slide{
    text-align: center;    
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}
.cs-partner-wrapper .swiper-slide img {
    max-width: 103px;
    height: 50px;
    object-fit: contain;
}
.cs-partner-wrapper .swiper-slide:hover{
    transform: translateY(-10px)scale(1.1);
}
.cs-partner-wrapper .swiper-slide:hover{
    opacity: 1;
}
/* partner section css end */

/* about section css start */
.cs-about-wrapper {
    background-color: var(--cs-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    width: 100%;
    position: relative;
}
.cs-about-box {
    padding: 40px 17px 65px 18px;
    border-radius: 10px;
    background-color: #f7fcff;
    border: 1px solid #c6eaff;
    transition: all 0.3s ease-in-out;
}
.cs-about-inner{
    text-align: center;
}
.cs-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;
}
.cs-about-inner span img {
    max-width: 34px;
    height: 30px;
    object-fit: contain;
}
.cs-about-inner h5{
    font-size: 20px;
    color: #38b5ff;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    margin-top: 30px;
}
.cs-about-inner .cs-paragraph{
    margin-top: 24px;
}
.cs-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;
}
.cs-about-btn a{
    font-size: 12px;
    letter-spacing: 1px;    
    color: #5fc3ff;
    text-transform: uppercase;
    font-weight: 700;
}
.cs-about-left-img{
    text-align: right;
}
.cs-about-left-img img {
    max-width: 520px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.cs-about-right .cs-heading {
    text-align: left;
}
.cs-about-right .cs-top-heading{
    text-align: left;
}
.cs-about-right .cs-paragraph {
    margin: 20px 0;
}
.cs-about-right ul {
    padding-bottom: 20px;
}
.cs-about-right ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.cs-about-right ul li {
    font-size: 16px;
    font-weight: 500;
    color: var(--cs-text-color);
}
/* about section css end */

/* info section css start */
.cs-info-wrapper {
    padding: 40px 0 50px 0;
}
.cs-info-box{    
    width: 100%;
}
.cs-info-inner {    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.cs-info-box1 .cs-info-inner{ 
    background-image: linear-gradient(#f1c69fd1, #f1c69fd1), url(../images/pr1.jpg);
}
.cs-info-box2 .cs-info-inner{ 
    background-image: linear-gradient(#f1c69fd1, #f1c69fd1), url(../images/pr2.jpg);
}
.cs-info-box3 .cs-info-inner{ 
    background-image: linear-gradient(#f1c69fd1, #f1c69fd1), url(../images/pr3.jpg);
}
.cs-info-box4 .cs-info-inner{ 
    background-image: linear-gradient(#f1c69fd1, #f1c69fd1), url(../images/s1.jpg);
}
.cs-info-inner > img{
    display: block;
    position: absolute;    
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;    
    height: 100%;
    transform: translateY(100%);
    object-fit: cover;
    transition: all 0.5s;
    z-index: 1;
}
.cs-info-box:hover .cs-info-inner > img{
    height: 100%;
    transform: translateY(0%);
    
}
.cs-info-inner h2{
    font-size: 20px;
    font-weight: 600;
    color: var(--cs-theme-color);
    text-transform: capitalize;
    transform: rotate(-90deg);
}
/* info section css end */

/* activity section css start */
.cs-activity-wrapper {
    padding: 80px 0;
    background-color: var(--cs-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.cs-activity-box {
    position: relative;
}
.cs-activity-heading {
    padding-bottom: 50px;
    max-width: 600px;
    margin: auto;
    text-align: center;
}
.cs-service-img {
    overflow: hidden;    
    border-radius: 10px 10px 0px 0px;
}
.cs-service-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.8s;
    border-radius: 10px 10px 0px 0px;
}
.cs-activity-box:hover .cs-service-img img{
    transform: scale(1.1);
}
.cs-activity-inner {
    width: 100%;
    background: var(--cs-white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.05);
    padding: 90px 20px 30px 20px;
    border-radius: 0px 0px 10px 10px;
    position: relative;
}
.cs-activity-inner span {
    width: 120px;
    height: 120px;
    background-color: var(--cs-white-color);
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.05);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -60px;
    left: 15px;
}
.cs-activity-inner span img {
    max-width: 90px;
    height: 90px;
    object-fit: contain;
}
.cs-activity-inner>img:first-child {
    margin-left: 5px;
    max-width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}
.cs-activity-inner h3 {
    font-size: 20px;
    color: var(--cs-text-color);
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s;
}
.cs-activity-box:hover .cs-activity-inner h3{
    color: var(--cs-theme-color);
}
.cs-activity-inner .cs-paragraph {    
    margin: 10px 0 0px 0;    
}
.cs-activity-inner a.cs-readmore{
    font-size: 16px;    
    color: var(--cs-theme-color);
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}
.cs-activity-inner> img:last-child {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
    margin-left: 5px;
}
.cs-activity-inner a.cs-readmore:hover{
    letter-spacing: 2px;
}
.cs-activity-btn .cs-dark-btn{
    max-width: 240px;
    width: 100%;
    min-height: 60px;
    margin: 40px auto 0 auto;    
}
/* activity section css end */

/* work section css start */
.cs-work-wrapper{
    background: #fffbf7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 80px 0; 
}
.cs-work-wrapper .cs-activity-heading { 
    max-width: 510px;    
}
.cs-activity-heading p {
    padding-top: 20px;
}
.cs-work-box {
    background-color: var(--cs-white-color);
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
}
.cs-work-box:hover{
    transform: translateY(-10px);
}
.cs-work-box h1 {
    font-size: 50px;
    font-weight: 800;
    color: var(--cs-theme-color);
    text-transform: capitalize;
    opacity: 0.1;  
    transition: all 0.3s;  
}
.cs-work-box:hover h1{
    opacity: 1;  
}
.cs-work-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cs-text-color);
    text-transform: capitalize;
    padding: 20px 0 10px 0;
    transition: all 0.3s;
}
.cs-work-box:hover h4{
    color: var(--cs-theme-color);
}
.cs-work-box p {
    padding: 5px 0 15px 0;
}
.cs-more img {
    margin-left: 5px;
    max-width: 17px;
    height: 10px;
    object-fit: contain;
}
/* work section css end */

/* counter section css start */
.cs-counter-wrapper {
    background: #fff6e8;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 80px 0;
}
.cs-counter-parent {
    text-align: center;
    padding: 50px 0 0 0;
}
.cs-count {
    background: var(--cs-white-color);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.counting {
    font-size: 40px;
    color: var(--cs-theme-color);
    font-weight: 700;
}
.cs-count-heading h5 {
    font-size: 18px;
    color: var(--cs-text-color);
    font-weight: 600;
    text-transform: capitalize;
}
.cs-count:hover span{
    transform: translateY(-10px);
}
/* counter section css end */

/* client section css start */
.cs-client-wrapper {
    padding: 80px 0;
    background: #fffbf7;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
}
.cs-client-heading .cs-heading { 
    max-width: 600px;
    margin: auto;
}
.cs-client-heading p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    max-width: 390px;
    width: 100%;
    padding-top: 20px;
}
.cs-client-box {
    background-color: var(--cs-white-color);
    border-radius: 10px;
    padding: 30px 20px 30px 30px;
    margin-top: 40px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.cs-client-box:hover{
    transform: translateY(-10px);
}
.cs-client-heading {    
    padding-bottom: 20px;
    text-align: center;
}
.cs-client-info {
    display: inline-flex;
    align-items: center;
    gap: 20px;    
    background: #f6ebe0;
    border-radius: 10px;
    padding: 4px 30px 4px 4px;
}
.cs-client-name h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cs-heading-color);
    transition: all 0.3s ease-in-out; 
}
.cs-client-name p {
    font-size: 15px;
    font-weight: 500;
    color: var(--cs-theme-color);
    padding-top: 0;
}
.cs-client-text .cs-paragraph { 
    color: var(--cs-grey-color);
    transition: all 0.3s ease-in-out;
}
.cs-qoute-img {
    position: absolute;
    top: 45px;
    right: 20px;
    transform: rotate(-180deg);
}
.cs-qoute-img span img {
    max-width: 50px;
    height: 40px;
    object-fit: contain;
}
.cs-client-img img {
    width: 70px;
    height: 70px;
    border-radius: 6px;    
    object-fit: contain;
    padding: 1px;
    background-color: var(--cs-theme-color);
}
.cs-client-wrapper .swiper-container {
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.cs-client-wrapper .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background-color: var(--cs-grey-color);
}
.cs-client-wrapper .swiper-pagination-bullet-active {
    background-color: var(--cs-theme-color);
}
.cs-client-wrapper .swiper-slide{
    transition: all 0.3s ease-in-out;
}
img.cs-rating {
    display: block;
    margin: 18px 0 10px 0;
}
/* client section css end */

/* project section css start */
.cs-project-wrapper{
    padding: 80px 0;
    background-color: var(--cs-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.cs-project-wrapper .cs-activity-heading { 
    max-width: 370px;
}
.cs-project-box {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 10px;
}
.cs-project-wrapper .cs-service-img{
    border-radius: 10px;
}
.cs-project-wrapper .cs-service-img img {
    border-radius: 10px;
    transition: all 0.3s;
}
.cs-project-box:hover .cs-service-img img {
    transform: scale(1.1);
}
.cs-project-inner {
    padding: 20px 10px 10px 20px;
    position: relative;
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -80px;
    background: #b37740d1;
    backdrop-filter: blur(5px);
    border-radius: 0 0 10px 10px;
    transition: all 0.3s;
}
.cs-project-box:hover .cs-project-inner{
    bottom: 0px;    
}
.cs-project-inner h4 {
    font-size: 16px;
    font-weight: 400;
    color: var(--cs-white-color);
    padding-bottom: 5px;
}
.cs-project-inner h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--cs-white-color);
    text-transform: capitalize;    
    transition: all 0.3s;
}
.cs-project-inner p {
    padding: 10px 0;
    color: var(--cs-white-color);
    font-size: 14px;
    font-weight: 300;
}
/* project section css end */

/* blog section css start */
.cs-blog-wrapper{
    padding: 80px 0;
    background-color: var(--cs-white-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.cs-blog-heading {
    padding-bottom: 50px;
    max-width: 500px;
    width: 100%;
    margin: auto;
    text-align: center;
}
.cs-blog-heading .cs-paragraph{
    margin-left: auto;
    color: var(--cs-theme-color);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.cs-blog-heading img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
    margin: 2px 0 0 5px;
}
.cs-blog-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cs-blog-content{
    position: relative;
}
.cs-blog-img {
    overflow: hidden;
    border-radius: 10px;
    flex: none;
    max-width: 250px;
    width: 100%;
}
.cs-blog-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    border-radius: 10px 10px 0 0;
}
.cs-blog-box:hover .cs-blog-img img{
    transform: scale(1.2)rotate(5deg);
}
.cs-blog-content {
    position: relative;
    background: var(--cs-white-color);
}
.cs-blog-content>img {
    max-width: 17px;
    height: 10px;
    object-fit: contain;
}
.cs-blog-content h4 {
    font-size: 20px;
    color: var(--cs-text-color);
    font-weight: 600;
    text-transform: capitalize; 
}
.cs-blog-content .cs-paragraph {
    color: var(--cs-grey-color);
    margin: 15px 0;    
}
.cs-blog-footer {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.cs-blog-footer-info {
    display: flex;
    align-items: center;
}
.cs-blog-footer-info:last-child {
    margin-left: 20px;
}
.cs-blog-footer-info a {
    font-size: 16px;
    color: var(--cs-theme-color);
    font-weight: 400;
    margin-left: 8px;
}
.cs-blog-footer-info img {    
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.cs-readmore {
    font-size: 16px;
    font-weight: 400;
    color: var(--cs-theme-color);    
    text-transform: capitalize;
    transition: all 0.3s;
}
.cs-readmore:hover{
    color: var(--cs-theme-color);
    letter-spacing: 1px;
}
/* blog section css end */

/* newslter section css start */
.cs-newsletter-wrapper{
    background-color: #fffbf7;
    padding: 80px 0;
}
.cs-newsltr-heading {
    text-align: center;
    max-width: 450px;
    width: 100%;
    margin: auto;
    padding-bottom: 50px;
}
.mt_form_input {
    max-width: 700px;
    width: 100%;
    margin: auto;
    position: relative;
}
.cs-footer-form input {
    height: 54px;
    width: 100%;
    background-color: var(--cs-white-color);
    color: var(--cs-text-color);
    font-weight: 400;
    border: none;
    padding: 0 170px 0 20px;    
    border-radius: 8px;
    border: 1px solid #7f4f24;
    /* border: 1px solid rgba(0,0,0,0.05); */
}
.cs-footer-form input::placeholder{
    font-size: 14px;
    color: var(--cs-text-color); 
    font-weight: 400;
}
.cs-footer-form .cs-btn {
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 12px 20px;
}
.cs-footer-form .cs-btn:hover{
    box-shadow:none;
}
/* newslter section css end */

/* footer section css start */
.cs-footer-wrapper {
    padding: 80px 0;
    background-color:#000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.cs-footer-logo img {
    max-width: 193px;
    height: 41px;
    object-fit: contain;
}
.cs-footer-text .cs-paragraph {
    color: var(--cs-white-color);
    margin: 23px 0 10px 0;
    font-weight: 300;
}
.cs-footer-text a{
    font-size: 16px;
    font-weight: 400;
    color: var(--cs-white-color);
    transition: all 0.3s ease-in-out;
}
.cs-footer-icon ul{
    margin-top: 25px;
    text-align: left;    
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.cs-footer-icon ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background-color: var(--cs-theme-color);    
    transition: all 0.3s;
}
.cs-footer-icon ul li a:hover{    
    transform: translateY(-5px);
}
.cs-footer-icon ul li a img {
    max-width: 19px;
    height: 16px;
    object-fit: contain;
}
.cs-footer-lincs-heading .cs-heading {
    text-align: left;
    color: var(--cs-white-color);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 36px;
    position: relative;
}
.cs-footer-link ul li{    
    margin-bottom: 10px;
}
.cs-footer-link ul li a {
    color: var(--cs-white-color);
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}
.cs-footer-link ul li a:hover{
    color: var(--cs-theme-color);
}
.cs-footer-link ul li img {
    margin: -2px 10px 0 0;
    max-width: 15px;
    height: 15px;
    object-fit: contain;
}    
.cs-footer-last-parent .footer-phone, .cs-footer-last-parent .footer-email {
    color: var(--cs-white-color);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;    
}        
.cs-footer-last-parent .cs-footer-text{
    margin-bottom: 20px;
}
/* footer section css end */
/* copyright section css start */
.cs-copyright-wrapper {
    background-color: var(--cs-theme-color);
}
.cs-copyright-wrapper p {
    font-size: 15px;
    color: var(--cs-white-color);
    font-weight: 400;    
    text-align: center;
    padding: 15px 0;
}
.cs-copyright-wrapper a{
    color: var(--cs-white-color);    
}
/* copyright section css end */
/* swiper slider */
.cs-client-wrapper .swiper-pointer-events, .cs-partner-wrapper .swiper-pointer-events{
    touch-action: pan-y;
    overflow: hidden;
    position: relative;
}
/* swiper slider */

/* Responsive CSS Start */
@media(min-width:992px){
    .cs-header-wrapper.cs-header-fixed {
        position: fixed;
        box-shadow: 0 0 25px 0 rgba(0,0,0,0.08);
        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:1440px){
    .cs-banner-left h1 {
        font-size: 50px;
    }
}
@media(max-width:1199px){        
    .cs-navbar-menu ul li{
        margin-right: 30px;
    }
    .cs-banner-wrapper {
        padding: 200px 0 80px 0;
    }
    .cs-banner-right {     
        padding: 0px 0 0 0;
    }
    .cs-banner-right img {
        max-width: 100%;
    }        
    .cs-blog-footer span:nth-child(2) {
        margin-left: 10px;
    }
    .cs-blog-footer span svg {
        margin-right: 2px;
    }
    .cs-client-box:after{
        max-width: 400px;
    }   
    .cs-project-inner {
        bottom: -100px;
    } 
    .cs-blog-img {
        max-width: 200px;
    }
}

@media(max-width:991px){
    .cs-header-right {
        max-width: 200px;
        width: 100%;
    }
    .cs-banne-right {
        margin-top: 30px;
    }
    .cs-navbar-menu .responsive-logo a img{
        display: block;
    }
    .cs-toggle-btn {
        display: block;
        position: absolute;
        right: 25px;
        top: 23px;
        cursor: pointer;
    }
    .cs-brand-logo { 
        width: 100%;
        padding: 15px;
        border-radius: 5px;
        position: relative;
    }    
    .cs-header-parent {      
        background: none;
    }
    .cs-navbar-menu ul {
        position: fixed;
        top: 0px;
        left: -260px;
        width: 260px;
        height: 100%;
        background-color: var(--cs-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;
    }
    .cs-navbar-menu ul li{
        display: block;        
        padding: 0 0 10px 10px;
    }
    .cs-navbar-menu ul li a{
        padding: 10px 0;
    }
    .cs-toggle-btn span {
        width: 30px;
        height: 4px;
        background-color: var(--cs-theme-color);
        margin-bottom: 5px;
        display: block;
        margin-left: auto;                
        transition: all 0.3s ease-in-out;
    }
    .menu-open .cs-toggle-btn > span:nth-child(2) {
        transform: translateX(20px);
        visibility: hidden;
        opacity: 0;
    }
    .menu-open .cs-toggle-btn > span:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 4px 4px;
    }
    .menu-open .cs-toggle-btn > span:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 4px -1px;
    } 
    .menu-open .cs-navbar-menu ul {
        left: 0;
    }
    .cs-banner-left h1 {     
        max-width: 500px;
    }        
    .cs-banner-left, .cs-banner-left h4 {
        text-align: center;
        margin-left: 0;
    }
    .cs-banner-left p {
        margin: 15px auto 0;
    }
    .cs-banner-btn {
        margin-top: 20px;
    }
    .cs-banner-btn .cs-btn {
        min-width: 150px;
        font-size: 15px;
    }    
    .cs-banner-left h1 {
        max-width: 600px;
        margin: auto;
    }
    .cs-banner-right {     
        text-align: center;
    }
    .counting {
        font-size: 30px;
    }    
    .cs-about-right .cs-dark-btn{
        margin: auto;
    }
    .single-content {
        flex: 0 0 33.33%;
        max-width: 33.33%;        
    }
    .cs-count {     
        margin-bottom: 10px;
    }   
    .cs-count-heading h5 {
        font-size: 16px;
    }
    .cs-client-box:after{
        display: none;
    }    
    .cs-footer-first {
        margin-bottom: 30px;
    }  
    .cs-team-img img {        
        max-width: 100%;
        height: auto;
    }
    .cs-banne-right img {
        max-width: 100%;
        height: auto;     
    }
    .counting {
        margin-top: 0;
    }
    .cs-menu-right {
        text-align: center;
    }
    .cs-service-img {     
        text-align: center;
    }
    .cs-service-img img {
        max-width: 400px;                
        margin: auto;
    }
    .cs-work-box {
        max-width: 350px;
        width: 100%;
        margin: auto;
    }
    .cs-feature-wrapper {
        padding-bottom:30px;
    }
    .cs-about-botm-parent > .row {
        flex-direction: column-reverse;
    }
    .cs-about-left-img {
        text-align: center;
    }
    .cs-service-img img {
        height: 350px;
    }
    .cs-project-inner {
        bottom: -80px;
    }
    .cs-header-wrapper {
        top: 0;
        max-width: 700px;
        border-radius: 0 0 10px 10px;
    }
}

@media(max-width:767px){    
    .single-content {
        flex: 0 0 50%;
        max-width: 50%;        
    } 
    .cs-banner-right img {
        max-width: 100%;
        height: auto;
    }  
    .cs-info-inner {
        min-height: 350px;
    }  
    .cs-project-box {
        max-width: 400px;
        width: 100%;
        margin: auto;
    }
    .cs-footer-lincs-heading .cs-heading {
        margin-bottom: 15px;
    }
    .cs-footer-link-parent {
        margin-bottom: 20px;
    }
    .cs-footer-last-parent .cs-footer-text .cs-paragraph {
        margin: 15px 0 10px 0;
    }
    .cs-footer-link ul li {
        margin-bottom: 0;
    }
    .cs-footer-last-parent .cs-footer-text {
        margin-bottom: 10px;
    }
}
@media(max-width:575px){
    .cs-banner-wrapper {
        padding: 150px 0 50px 0;
    }  
    .cs-partner-wrapper .swiper-container {
        padding: 60px 0 0 0;     
    }
    .cs-banner-left h4 {
        font-size: 14px;
        max-width: 425px;
    }
    .cs-banner-left h1 {
        font-size: 30px;     
    }
    .cs-banner-left p {
        font-size: 13px;
        line-height: normal;
        margin-top: 0;
    }
    .cs-banner-btn{
        display: block;
    }     
    .cs-about-left-img img {     
        max-width: 400px;
    }
    .cs-header-right {     
        display: none;
    }
    .cs-toggle-btn {
        right: 15px;
    }   
    .cs-info-inner {
        min-height: 300px;        
    } 
}
@media(max-width:480px){
    .cs-about-right .cs-paragraph {
        margin: 15px 0;
    }
    .cs-activity-wrapper, .cs-about-wrapper, .cs-work-wrapper, .cs-project-wrapper, .cs-blog-wrapper, .cs-client-wrapper, .cs-newsletter-wrapper, .cs-footer-wrapper{
        padding: 50px 0;     
    }
    .cs-feature-wrapper {
        padding: 50px 0 30px 0;
    }
    .cs-feature-box {
        padding: 20px;
    }
    .cs-feature-content h4 {
        font-size: 18px;
        padding: 0px 0 10px 0;
    }
    .cs-feature-content p {
        padding-bottom: 10px;
    }
    .cs-heading {        
        font-size: 25px;     
    }
    .cs-about-left-img img {
        max-width: 300px;
    }
    .cs-paragraph {
        font-size: 13px;        
        font-weight: 300;
    }
    .cs-about-right ul li {
        font-size: 15px;
    }
    .cs-btn {
        min-width: 130px;
        padding: 12px 15px;
        font-size: 15px;
    }
    .cs-info-inner {
        min-height: 250px;
    }
    .cs-info-inner h2 {
        font-size: 16px;
    }
    .cs-info-wrapper {
        padding: 0;
    }
    .cs-activity-heading, .cs-blog-heading{
        padding-bottom: 20px;        
    }
    .cs-service-img img {
        height: 250px;
    }
    .cs-activity-inner h3, .cs-work-box h4 {
        font-size: 18px;
    }
    .cs-project-inner h4 {
        font-size: 14px;
    }
    .cs-project-inner h3 {
        font-size: 17px;
    }
    .cs-client-box {
        margin-top: 0px;
    }
    .cs-client-name h6 {
        font-size: 16px;
    }
    .cs-client-name p {
        font-size: 13px;
    }
    .cs-client-img img {
        width: 60px;
        height: 60px;
    }
    .cs-blog-img img {
        height: 200px;
    }
    .cs-blog-img {
        max-width: 170px;
    }
    .cs-blog-footer-info a {
        font-size: 14px;
        margin-left: 5px;
    }
    .cs-blog-content h4 {
        font-size: 18px;     
    }
    .cs-blog-content .cs-paragraph {     
        margin: 10px 0;
    }
    .cs-newsltr-heading {
        max-width: 300px;
        padding-bottom: 20px;
    }
    .cs-footer-form .cs-btn {
        top: 4px;     
    }
    .cs-footer-lincs-heading .cs-heading {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .cs-footer-link ul li a {
        font-size: 14px;
    }
    .cs-copyright-wrapper p {
        font-size: 12px;
        padding: 10px 0;
    }
}
@media(max-width:425px){                    
    .cs-blog-heading .cs-heading{
        font-size: 22px;
    }
    .cs-blog-heading .cs-paragraph{
        font-size: 14px;
    }
    .cs-partner-heading .cs-heading {
        font-size: 17px;
    }    
    .cs-client-box{
        margin-top: 20px;
    }
    .cs-client-heading {
        padding-bottom: 0;
    }
    .cs-client-wrapper .swiper-container {
        padding-bottom: 60px;
    }    
    .cs-menu-list {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .cs-menu-list .cs-menu-img img {
        margin-right: 0;
    }
    .cs-menu-content {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }    
    .cs-cta-heading .cs-heading {
        font-size: 25px;     
    }
    .cs-client-box {
        padding: 30px 20px 25px 20px;
    }
    .cs-about-right ul li h4 {
        font-size: 15px;
        max-width: 350px;
    }
    .cs-blog-inner {
        flex-direction: column;
    }
    .cs-blog-img {
        max-width: 100%;
    }
}
@media(max-width:375px){    
    .single-content {
        flex: 0 0 100%;
        max-width: 100%;        
    }    
    .cs-gallery-img{
        margin-left: 15px;
    }       
    .cs-main-btn {
        flex-direction: column;
    }
    .cs-main-btn a:first-child {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .cs-banner-left {     
        text-align: center;
    }
    .cs-info-inner h2 {
        font-size: 14px;
    }
    .cs-info-inner {
        min-height: 200px;
    }
    .cs-footer-form .cs-btn {        
        position: unset;
        width: 100%;
        margin-top: 10px;
    }
    .cs-footer-form input {
        height: 47px;
        padding: 0 20px;
    }
    .cs-project-inner p {
        font-size: 12px;
    }
    .cs-project-inner {
        bottom: -70px;
    }
}
/* Responsive CSS End */