/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #0B3D2C;
	--secondary-color		: #F0FFF0;
	--text-color			: #555555;
	--accent-color			: #2A7D2E;
	--white-color			: #FFFFFF;
	--divider-color			: #E7ECEA;
	--dark-divider-color	: #FFFFFF33;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Plus Jakarta Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/


.fixed {position: fixed !important;top:0;left:0;width: 100%;z-index:999;opacity:1;visibility:visible;-ms-animation-name: fadeInDown;-moz-animation-name: fadeInDown;-op-animation-name: fadeInDown;-webkit-animation-name: fadeInDown;animation-name: fadeInDown;-ms-animation-duration: 500ms;-moz-animation-duration: 500ms;-op-animation-duration: 500ms;-webkit-animation-duration: 500ms;animation-duration: 500ms;-ms-animation-timing-function: linear;-moz-animation-timing-function: linear;-op-animation-timing-function: linear;-webkit-animation-timing-function: linear;animation-timing-function: linear;-ms-animation-iteration-count: 1;-moz-animation-iteration-count: 1;-op-animation-iteration-count: 1;-webkit-animation-iteration-count: 1;animation-iteration-count: 1;background: #031000;box-shadow: 0 0 20px 1px #ffffff1f;}


.fixed .header-sticky:before {
    display: none;
}

.fixed a.navbar-brand img {
    max-width: 230px;
}



@viewport{user-zoom: fixed;}
   .preloader {
	height: 100%;
	left: 0px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 99999999;
	background: radial-gradient(ellipse at center, #476d60 0%, #031000 100%);
}

.preloader figure img {animation: pulse 1s linear infinite;max-width: 260px;}
.preloader figure {position: absolute;top: 0;left: 0;right: 0;bottom: 0;display: flex;align-items: center;justify-content: center;height: 100%;}

@keyframes pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(0.8);
  }
}


body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.8em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.mfp-container{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 14px 35px 14px 25px;
	margin-right: 15px;
	border: none;
	transition: all 0.5s ease-in-out;
	position: relative;
	z-index: 1;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--white-color);
	background-image: url('assets/images/arrow-green.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: translate(50%, -50%);
	transition: all 0.3s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--secondary-color);
	right: -3px;
}

.btn-default.btn-highlighted{
	background-color: var(--white-color);
	color: var(--primary-color);
}

.btn-default.btn-highlighted:before{
	background-color: var(--accent-color);
	background-image: url('assets/images/arrow-white.svg');
}

.btn-default.btn-highlighted:hover::before{
	background-color: var(--primary-color);
}

#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 60px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title-content p{	
	margin: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	position: relative;
	margin-bottom: 40px;
}

.section-bg-title{
	position: absolute;
	top: -40px;
}

.section-bg-title span{
	display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    font-size: 100px;
    line-height: 1em;
    font-weight: 800;
    color: var(--white-color);
	background: -webkit-linear-gradient(270deg, rgba(11, 61, 44, 0.1) 68.79%, rgba(11, 61, 44, 0.02) 91%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
}

.section-bg-title.dark-bg-1 span{
	color: var(--secondary-color);
	background: -webkit-linear-gradient(270deg, rgba(11, 61, 44, 0.08) 68.79%, rgba(11, 61, 44, 0.016) 91%);
	-webkit-background-clip: text;
}

.section-bg-title.dark-bg-2 span{
	color: var(--primary-color);
	background: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 0.08) 68.79%, rgba(11, 61, 44, 0.016) 91%);
	-webkit-background-clip: text;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 16px;
    font-weight: 500;
	line-height: 1.2em;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-left: 45px;
    margin-bottom: 20px;
}

.section-title h3::before{
	content: '';
	position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    transform: translateY(-50%);
	background: url("assets/images/icon-sub-heading.svg") no-repeat;
	background-position: left center;
	background-size: cover;
	width: 34px;
	height: 34px;
}

.section-title h1{
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 0;
}

.section-title h2{
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span{
	font-weight: 400;
}

.section-title p{
	margin-top: 25px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	/*border-bottom: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(3px);*/
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background-color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
}

.navbar{
	padding: 20px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 4px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 600;
	padding: 14px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--white-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu ul li.submenu > a:after{
	content: '\f105';
	float: right;
}

.main-menu ul li.submenu:first-child ul ul{
    width: 250px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.contact-now-box{
	display: flex;
	align-items: center;
}

.contact-now-box .icon-box{
	background-color: var(--accent-color);
	border-radius: 16px;
	/* width: 50px; */
	/* height: 50px; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box{
	background-color: var(--primary-color);
}

.contact-now-box .icon-box img{
	max-width: 25px;
}

.contact-now-box-content{
	width: calc(100% - 70px);
}

.contact-now-box-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-now-box-content h3{
	font-size: 18px;
	color: var(--white-color);
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 10px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
	border-radius: 0;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
    position: relative;
    background: var(--primary-color) url(../images/hero-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 250px 0 150px;
    margin-top: -100px;
}

.hero::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270.08deg, rgba(11, 61, 44, 0) 30.53%, rgba(11, 61, 44, 0.8) 76.6%);
    width: 100%;
    height: 100%;
}

.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero-video .hero-bg-video::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270.08deg, rgba(11, 61, 44, 0) 30.53%, rgba(11, 61, 44, 0.8) 76.6%);
    width: 100%;
    height: 100%;
	z-index: 1;
}

.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider{
	background: none;
	padding: 0;
}

.hero-slider-layout .hero-slide{
	position: relative;
    padding: 250px 0 150px;
}

.hero.hero-slider:before{
	display: none;
}

.hero.hero-slider .hero-slider-layout{
	position: relative;
	z-index: 1;
}

.hero-slider-layout .hero-slide::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content{
	position: relative;
	z-index: 2;
	margin: 0 auto;
}

.hero-slider-layout .hero-pagination{
	position: absolute;
	z-index: 5;
    bottom: 50px;
	padding-left: calc(((100vw - 1300px) / 2));
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 1;
	padding-right: 85px;
}

.hero-content .section-title h3::before{
	filter: brightness(0) invert(1);
}

.hero-content .section-title p,
.hero-content .section-title h1 span,
.hero-content .section-title h1,
.hero-content .section-title h3{
	color: var(--white-color);
}

.hero-content .section-title p{
	font-size: 18px;
}

.hero-content-body .btn-default.btn-highlighted{
	margin-left: 40px;
}

/************************************/
/***    05. Customer Review css	  ***/
/************************************/

.customer-review{
	position: relative;
	/* background-color: var(--secondary-color); */
	padding: 50px 0;
}

.happy-customer-counter{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	border-right: 1px solid var(--divider-color);
	padding-right: 15px;
}

.happy-customer-counter h2{
	width: calc(60% - 20px);
	font-size: 70px;
}

.happy-customer-counter p{
	width: calc(40% - 20px);
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 0;
}

.customer-review-content p{
	margin: 0;
}

.customer-consultation-box{
	position: absolute;
	bottom: 0;
	width: 400px;
	background-color: var(--primary-color);
	border-radius: 40px 40px 0 0;
	padding: 40px;
	z-index: 2;
}

.customer-consultation-title{
	margin-bottom: 30px;
}

.customer-consultation-title h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
}

.customer-consultation-image{
	margin-bottom: 30px;
}

.customer-consultation-body{
	margin-bottom: 30px;
}

.customer-consultation-body p{
	color: var(--white-color);
	margin: 0;
}

.learn-more-btn{
	position: relative;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.learn-more-btn:hover{
	color: var(--accent-color);
}

.learn-more-btn::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: var(--white-color) url('assets/images/arrow-green.svg') no-repeat;
	background-position: center center;
	background-size: 16px auto;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	transition: all 0.3s ease-in-out;
}

.learn-more-btn:hover::after{
	background: var(--accent-color) url('assets/images/arrow-green.svg') no-repeat;
	background-position: center center;
	background-size: 16px auto;
	right: -2px;
}

/************************************/
/***       06. About Us css	      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-image{
	position: relative;
	background: url('assets/images/about-image-bg.svg') no-repeat;
	background-position: left bottom 90px;
	background-size: auto;
	display: flex;
	justify-content: end;
	padding-top: 90px;
}

.about-img-1{
	position: relative;
	width: 100%;
	max-width: 390px;
	text-align: right;
	z-index: 1;
}

.about-img-1 figure{
	border-radius: 400px;
}

.about-img-1 img{
	border: 8px solid var(--white-color);
	aspect-ratio: 1 / 1.49;
	object-fit: cover;
	border-radius: 400px;
}

.about-img-2{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.about-img-2 figure,
.about-img-2 img{
	border-radius: 200px;
}

.company-experience{
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
}

.company-experience-counter{
	width: 45%;
}

.company-experience-counter h2{
	font-size: 50px;
}

.company-experience-content{
	width: 55%;
}

.company-experience-content p{
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

.about-us-content{
	
	margin-left: 25px;
}

.about-us-body{
	margin-bottom: 40px;
}

.about-us-body ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-us-body ul li{
    position: relative;
    width: calc(50% - 10px);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
}

.about-us-body ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.about-us-footer{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}

.about-company-founder{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
	border-right: 1px solid var(--divider-color);
	padding-right: 15px;
}

.company-founder-image{
	margin-right: 15px;
}

.company-founder-image img{
	max-width: 60px;
	border-radius: 15px;
}

.company-founder-content{
	width: calc(100% - 75px);
}

.company-founder-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.company-founder-content p{
	text-transform: capitalize;
	margin: 0;
}

.contact-now-box.about-contact-box{
	width: calc(50% - 15px);
}

.contact-now-box.contact-now-box .icon-box{
}

.contact-now-box.contact-now-box .icon-box img{
	max-width: 30px;
}

.contact-now-box.about-contact-box .contact-now-box-content p{
	color: var(--text-color);
}

.contact-now-box.about-contact-box .contact-now-box-content h3{
	color: var(--primary-color);
}

/************************************/
/***     07. Our Services css	  ***/
/************************************/

.our-services{
	position: relative;
	/* background: var(--secondary-color); */
	padding: 100px 0 120px;
	margin-top: 130px;
}

.our-services::before{
	content: '';
	position: absolute;
	top: -130px;
	right: 0;
	left: 0;
	/* background: url('assets/images/service-top-bg.svg') no-repeat; */
	background-position: top center;
	background-size: cover;
	width: 100%;
	height: 132px;
}

.our-services::after{
	content: '';
	position: absolute;
	bottom: -4px;
	right: 0;
	left: 0;
	/*background: url('assets/images/service-bottom-bg.svg') no-repeat;*/
	background-position: bottom center;
	background-size: cover;
	width: 100%;
	height: 132px;
}

.service-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-image{
	border-radius: 40px;
	overflow: hidden;
}

.service-image a{
	position: relative;
	display: block;
}

.service-image a::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 67.85%, rgba(0, 0, 0, 0.6) 100%);
	width: 100%;
	height: 100%;
	border-radius: 40px;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-image a::after{
	background: var(--primary-color);
	opacity: 80%;
}

.service-image img{
	aspect-ratio: 1 / 1.19;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.5s ease-in-out;
	width: 100%;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.service-title{
	position: absolute;
	top: 30px;
	left: 30px;
	right: 10px;
	z-index: 4;
}

.service-title h3{
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.service-body{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 10px;
	transform: translateY(100%);
	opacity: 0;
	z-index: 4;
	transition: all 0.5s ease-in-out;
}

.service-item:hover .service-body{
	bottom: 30px;
	transform: translateY(0%);
	opacity: 1;
}

.service-content{
	margin-bottom: 20px;
}

.service-content p{
	color: var(--white-color);
	margin: 0;
}

.readmore-btn{
	background-color: var(--white-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	background-color: var(--accent-color);
}

.readmore-btn img{
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover img{
	filter: brightness(0) invert(1);
}

/************************************/
/***     08. Our Expertise css	  ***/
/************************************/

.our-expertise{
	padding: 100px 0;
}

.expertise-content .section-title{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.expertise-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.expertise-item{
	width: calc(33.33% - 13.33px);
	display: flex;
	align-items: center;
}

.expertise-item .icon-box{
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 10px;
}

.expertise-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    background: var(--accent-color);
	border-radius: 10px;
	width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.expertise-item:hover .icon-box:before{
    transform: scale(1);
}

.expertise-item .icon-box img{
	position: relative;
	max-width: 34px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.expertise-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.expertise-item-content{
	width: calc(100% - 70px);
}

.expertise-item-content h3{
	font-size: 24px;
	margin-bottom: 5px;
}

.expertise-item-content p{
	text-transform: capitalize;
	font-weight: 500;
	color: var(--primary-color);
	margin: 0;
}

.expertise-images{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.expertise-image-box-2,
.expertise-image-box-1{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.expertise-image-box-1{
	background: url('assets/images/expertise-image-bg-1.svg') no-repeat;
	background-position: top left;
	background-size: auto;
	padding-top: 65px;
}

.expertise-image-box-2{
	background: url('assets/images/expertise-image-bg-2.svg') no-repeat;
	background-position: bottom right;
	background-size: auto;
	padding-bottom: 65px;
}

.expertise-img-4,
.expertise-img-3,
.expertise-img-2,
.expertise-img-1{
	width: 100%;
}

.expertise-img-4 figure,
.expertise-img-3 figure,
.expertise-img-2 figure,
.expertise-img-1 figure{
	width: 100%;
}

.expertise-img-4 img,
.expertise-img-3 img,
.expertise-img-2 img,
.expertise-img-1 img{
	width: 100%;
	border-radius: 40px;
}

.expertise-img-1 img{
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
}

.expertise-img-2 img{
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
}

.expertise-img-3 img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.expertise-img-4 img{
	aspect-ratio: 1 / 1.33;
	object-fit: cover;
}

/************************************/
/***     09. Intro Video css      ***/
/************************************/

.intro-video{
	position: relative;
	background: url('assets/images/intro-video-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.intro-video::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
	opacity: 50%;
	z-index: 0;
}

.intro-video-box{
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 80px;
	margin-bottom: 80px;
}

.intro-video .section-title{
	margin-bottom: 0;
}

.intro-video .section-title h2{
	color: var(--white-color);
}

.video-play-box{
	display: flex;
	justify-content: end;
}

.video-play-content{
	position: relative;
	text-align: right;
	display: inline-block;
	z-index: 1;
}

.video-play-button{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.video-play-button a{
	position: relative;
	background-color: var(--primary-color);
	border-radius: 100%;
	width: 74px;
	height: 74px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 30px;
	color: var(--white-color);
}

.specialize-item{
	position: relative;
	display: flex;
	align-items: center;
	z-index: 1;
}

.specialize-item .icon-box{
	margin-right: 25px;
}

.specialize-item .icon-box img{
	max-width: 74px;
}

.specialize-content{
	width: calc(100% - 99px);
}

.specialize-content p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***    10. Why choose Us css     ***/
/************************************/

.why-choose-us{
	position: relative;
	background: url('assets/images/section-bg-leaf.svg') no-repeat;
	background-position: right bottom;
	background-size: auto;
	padding: 100px 0;
}

.why-choose-us::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	top: -6px;
	transform: translateY(50%);
	background: var(--secondary-color) url('assets/images/why-choose-image-bg.svg') no-repeat;
	background-position: left -130px top -80px;
	background-size: contain;
	border-radius: 0 999px 999px 0;
	width: 50%;
	height: 514px;
}

.why-choose-image{
	position: relative;
	text-align: left;
}

.why-choose-image img{
	position: relative;
	z-index: 2;
}

.why-choose-content{
	margin-left: 20px;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item{
	width: calc(50% - 15px);
}

.why-choose-item .icon-box{
	position: relative;
    background-color: var(--secondary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	margin-bottom: 25px;
}

.why-choose-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    background: var(--accent-color);
	border-radius: 10px;
	width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box:before{
    transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	max-width: 34px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-item-content p{
	margin: 0;
}

/************************************/
/***     11. How It Work css      ***/
/************************************/

.how-it-work{
	position: relative;
	background: var(--primary-color) url('assets/images/how-it-work-bg-1.svg') no-repeat;
	background-position: left top;
	background-size: contain;
	padding: 100px 0;
}

.how-it-work::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('assets/images/how-it-work-bg-2.svg') no-repeat;
	background-position: right bottom;
	background-size: contain;
}

.how-it-work .section-title p,
.how-it-work .section-title h2 span,
.how-it-work .section-title h2{
	color: var(--white-color);
}

.how-work-circle-img{
	text-align: right;
}

.how-work-circle-img img{
	animation: workrotate 30s infinite linear;
}

@keyframes workrotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.how-work-process-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	z-index: 1;
}

.how-work-item{
	width: calc(25% - 22.5px);
}

.work-process-no{
	position: relative;
	margin-bottom: 30px;
}

.work-process-no::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 50px;
	right: 0;
	transform: translateY(-50%);
	border: 1px dashed var(--dark-divider-color);
	width: 255px;
	height: 2px;
}

.how-work-item:last-child .work-process-no::before{
	display: none;
}

.work-process-no h3{
	background-color: var(--accent-color);
	border-radius: 50%;
	font-size: 18px;
	color: var(--white-color);
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.how-work-item:hover .work-process-no h3{
	background-color: var(--white-color);
	color: var(--accent-color);
}

.work-process-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.work-process-content p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***      12. Our Project css	  ***/
/************************************/

.our-work{
	position: relative;
	background: url('assets/images/section-bg-leaf.svg') no-repeat;
	background-position: right bottom;
	background-size: auto;
	padding: 100px 0 70px;
}

.our-work::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: url('assets/images/section-bg-leaf-2.svg') no-repeat;
	background-position: left top;
	background-size: auto;
	width: 320px;
	height: 320px;
}

.our-work-nav{
	margin-bottom: 60px;
}

.our-work-nav ul{
	list-style: none;
	text-align: center;
	padding: 0;margin: 0;
}

.our-work-nav ul li{
	display: inline-block;
}

.our-work-nav ul li:last-child{
	margin-right: 0;
}

.our-work-nav ul li a{
	position: relative;
	display: inline-block;
	background-color: transparent;
	color: var(--text-color);
	font-weight: 600;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	padding: 0 30px;
    overflow: hidden;
}

.our-work-nav ul li a::before{
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    height: 100%;
    z-index: 0;
	color: var(--divider-color);
}

.our-work-nav ul li:last-child a::before{
	display: none;
}

.our-work-nav ul li a.active-btn,
.our-work-nav ul li a:hover{
	color: var(--accent-color);
}

.work-item-box .work-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.work-item{
	position: relative;
	overflow: hidden;
	cursor: none;
}

.work-image{
	overflow: hidden;
}

.work-image a{
	position: relative;
	cursor: none;
	display: block;
}

.work-image a::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    opacity: 0;
	visibility: hidden;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    z-index: 1;
	transition: all 0.5s ease-in-out;
}

.work-item:hover .work-image a::before{
	opacity: 80%;
	visibility: visible;
}

.work-image img{
	width: 100%;
	border-radius: 40px;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	box-shadow: 0px 0px 100px 0px #0000000D;
}

.work-body{
	position: absolute;
	bottom: 50%;
	right: 40px;
	left: 40px;
	text-align: center;
	border-radius: 10px;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.work-item:hover .work-body{
	transform: translateY(50%);
	opacity: 1;
	visibility: visible;
}

.work-content{
	text-align: center;
	margin-bottom: 20px;
}

.work-content h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.work-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.work-readmore-btn a{
    background-color: var(--white-color);
    width: 40px;
    height: 40px;
	margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-readmore-btn a img{
	max-width: 24px;
}

/************************************/
/***   13. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	background: linear-gradient(270deg, var(--primary-color)34%, transparent 34%), url('assets/images/testimonials-bg.jpg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	padding: 0px 0 200px;
}

.our-testimonials .row{
	justify-content: end;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-box{
	background-color: var(--secondary-color);
	border-radius: 0 0 40px 40px;
	padding: 70px 50px 50px;
}

.testimonial-header{
	background: url('assets/images/icon-blockquote.svg') no-repeat;
	background-position: right center;
	background-size: auto;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.author-image{
	margin-right: 15px;
}

.author-image figure,
.author-image img{
	width: 60px;
	height: 60px;
	border-radius: 15px;
}

.author-content{
	width: calc(100% - 75px);
}

.author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-content p{
	margin: 0;
}

.testimonial-btn{
	display: flex;
	align-items: center;
	justify-content: left;
	margin-top: 40px;
}

.testimonial-btn .testimonial-button-next,
.testimonial-btn .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-button-next{
	margin-left: 20px;
}


.testimonial-btn .testimonial-button-next:hover,
.testimonial-btn .testimonial-button-prev:hover{
	background-color: var(--primary-color);
}

.testimonial-btn .testimonial-button-next::before,
.testimonial-btn .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("assets/images/arrow-white.svg") no-repeat center center;
    background-size: 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-button-prev::before{
	transform: rotate(180deg);
}

/************************************/
/***       14. Our FAQs css	      ***/
/************************************/

.our-faqs{
	background: url('assets/images/section-bg-leaf-3.svg') no-repeat;
	background-position: left top;
	background-size: auto;
    padding: 100px 0;
}

.our-faqs-content{
	margin-right: 20px;
}

.our-faqs-cta{
    display: inline-block;
    background-color: var(--secondary-color);
    border-radius: 40px;
    max-width: 500px;
    padding: 30px 50px;
}

.faqs-cta-box{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.faqs-cta-box .icon-box{
    position: relative;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 14px;
    transition: all 0.3s ease-in-out;
}

.faqs-cta-box .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}

.our-faqs-cta:hover .faqs-cta-box .icon-box:before{
    transform: scale(1);
}

.faqs-cta-box .icon-box img{
    position: relative;
    max-width: 34px;
    z-index: 1;
}

.faqs-cta-content{
    width: calc(100% - 80px);
}

.faqs-cta-content h3{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.faqs-cta-content p{
    margin: 0;
}

.faqs-cta-btn .btn-default{
    width: 100%;
    text-align: center;
	background-color: var(--primary-color);
    padding: 17px 24px 17px 24px;
	margin-right: 0;
}

.faqs-cta-btn .btn-default:hover{
	background-color: var(--accent-color);
}

.faqs-cta-btn .btn-default::before{
    display: none;
}

.our-faq-section .accordion-item{
    border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.our-faq-section .accordion-item:last-child{
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 20px 50px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
   background-color: var(--primary-color);
   color: var(--white-color);
   border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed{
	background-color: var(--white-color);
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after{
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -10px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 20px;
	width: 20px;
	height: 20px;
	padding: 5px;
	color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-button.collapsed::after{
	content: '\f067';
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-body{
	background-color: var(--primary-color);
	padding: 20px 50px 20px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

/************************************/
/***      15. Our Pricing css	  ***/
/************************************/

.our-pricing{
    position: relative;
    background: var(--secondary-color);
    padding: 100px 0 150px;
    margin-top: 130px;
}

.our-pricing::before{
    content: '';
    position: absolute;
    top: -130px;
    right: 0;
    left: 0;
    background: url(../images/pricing-top-bg.svg) no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 132px;
}

.our-pricing::after{
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    background: url(../images/pricing-bottom-bg.svg) no-repeat;
    background-position: bottom center;
    background-size: cover;
    width: 100%;
    height: 132px;
}

.pricing-item{
	background-color: var(--white-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-header{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.pricing-header h3{
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.pricing-header h2{
	font-size: 50px;
	color: var(--accent-color);
}

.pricing-header h2 sub{
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	text-transform: capitalize;
	bottom: 0;
}

.pricing-body{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

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

.pricing-body ul li{
	position: relative;
	margin-bottom: 15px;
	padding-left: 40px;
}

.pricing-body ul li::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url('assets/images/icon-pricing-list.svg') no-repeat;
	background-position: left center;
	background-size: 24px auto;
	width: 24px;
	height: 24px;
}

.pricing-body ul li:last-child{
	margin-bottom: 0;
}

.pricing-footer .btn-default::before{
	background-color: var(--primary-color);
	background-image: url('assets/images/arrow-white.svg');
}

.pricing-item.highlighted-box{
	background: var(--primary-color) url('assets/images/pricing.highlighted-box-bg.svg') no-repeat;
	background-position: center center;
	background-size: auto;
	overflow: hidden;
}

.pricing-item.highlighted-box .pricing-body ul li,
.pricing-item.highlighted-box .pricing-header h2 sub,
.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h3{
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-body,
.pricing-item.highlighted-box .pricing-header{
	border-color: var(--dark-divider-color);
}

.pricing-item.highlighted-box .pricing-body ul li::before{
	filter: brightness(0) invert(1);
}

.pricing-footer .btn-default.btn-highlighted::before{
	background-color: var(--accent-color);
}

/************************************/
/***     16. Our Blog Post css	  ***/
/************************************/

.our-blog{
	padding: 100px 0;
}

.highlighted-article-featured-img{
	position: relative;
	border-radius: 40px;
	overflow: hidden;
	margin-bottom: 40px;
}

.highlighted-article-featured-img a{
	display: block;
	cursor: none;
}

.highlighted-article-featured-img img{
	width: 100%;
	aspect-ratio: 1/ 0.74;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.5s ease-in-out;
}

.highlighted-article-post:hover .highlighted-article-featured-img img{
	transform: scale(1.1);
}

.highlighted-article-tag{
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 1;
}

.highlighted-article-tag a{
	display: inline-block;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: 5px;
	font-weight: 600;
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
	text-transform: capitalize;
	cursor: pointer;
}

.highlighted-article-tag:hover a{
	background-color: var(--primary-color);
	color: var(--white-color);
}

.article-meta{
	margin-bottom: 20px;
}

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

.article-meta ul li{
	display: inline-block;
	color: var(--text-color);
	text-transform: capitalize;
	margin-right: 15px;
}

.article-meta ul li:last-child{
	margin-right: 0;
}

.article-meta ul li a{
	color: inherit;
}

.article-meta ul li i{
	font-size: 16px;
	color: var(--text-color);
	margin-right: 10px;
}

.article-meta ul li i.fa-tag{
	transform: rotate(90deg);
}

.article-content{
	margin-bottom: 40px;
}

.article-content h2{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.article-content h2 a{
	color: inherit;
}

.article-content p{
	margin: 0;
}

.article-btn .btn-default::before{
    background-color: var(--primary-color);
    background-image: url(../images/arrow-white.svg);
}

.article-post{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.article-post:last-child{
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.article-post .article-tag{
	margin-bottom: 25px;
}

.article-post .article-tag a{
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: 5px;
	font-weight: 600;
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
	text-transform: capitalize;
	cursor: pointer;
}

.article-post:hover .article-tag a{
	background-color: var(--accent-color);
}

.article-post .article-content{
	margin-bottom: 0;
}

/************************************/
/***   	    17. Footer css        ***/
/************************************/

.main-footer{
	position: relative;
	background: linear-gradient(0deg, rgb(3 16 0) 0%, #031000 74.8%), url(assets/images/footer-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0 0;
	margin-top: 130px;
}

.main-footer::after{
	content: '';
	position: absolute;
	top: -130px;
	right: 0;
	left: 0;
	background: url(assets/images/footer-top-bg.svg) no-repeat;
	background-position: top center;
	background-size: cover;
	width: 100%;
	height: 132px;
}

.footer-logo{
	margin-bottom: 25px;
}

.footer-logo img{
	max-width: 220px;
}

.about-footer-content{
	margin-bottom: 25px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-flex;
	margin-right: 20px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	background-color: var(--white-color);
	border-radius: 10px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	background-color: var(--accent-color);
}

.footer-social-links ul li a i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
	color: var(--white-color);
}

.footer-links h3,
.working-hour h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links{
	margin-left: 30px;
}

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

.footer-links ul li{
	text-transform: capitalize;
	margin-bottom: 10px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
	color: var(--accent-color);
}

.working-hour-box{
	margin-bottom: 10px;
}

.working-hour-box:last-child{
	margin-bottom: 0;
}

.working-hour-box p{
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.footer-info-box{
	margin-bottom: 25px;
}

.footer-info-box:last-child{
	margin-bottom: 0;
}

.footer-info-box h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-info-box p{
	color: var(--white-color);
	margin: 0;
}

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	padding: 40px 0;
	margin-top: 60px;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: end;
}

.footer-privacy-policy ul li{
	display: inline-block;
	margin-right: 40px;
}

.footer-privacy-policy ul li:last-child{
	margin-right: 0;
}

.footer-privacy-policy ul li a{
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover a{
	color: var(--accent-color);
}

/************************************/
/***     18. About us Page css	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('assets/images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 225px 0 125px;
	margin-top: -100px;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
}

.page-header-box{
	position: relative;
	text-align: left;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 60px;
    font-weight: 700;
	color: var(--white-color);
	margin-bottom: 5px;
}

.page-header-box h1 span{
	font-weight: 400;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--secondary-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-vision-mission{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.vision-mission-box{
	margin-bottom: 80px;
}

.vision-mission-box:nth-child(even){
	flex-direction: row-reverse;
}

.vision-mission-box:last-child{
	margin-bottom: 0;
}

.our-mission-image figure,
.our-vision-image figure{
	display: block;
}

.our-mission-image img,
.our-vision-image img{
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	border-radius: 40px;
}

.our-mission-content .section-title,
.our-vision-content .section-title{
	margin-bottom: 0;
}

.our-counter{
	padding: 100px 0;
}

.our-counter .container-fluid{
	padding: 0;
}

.our-counter-box{
	display: flex;
	align-items: center;
	background-color: var(--primary-color);
	margin-left: calc(((100vw - 1300px) / 2));
	border-radius: 180px 0 0 180px;
	height: 100%;
}

.counter-content-box{
	width: 60%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	padding: 65px 115px;
}

.counter-item{
	position: relative;
	width: calc(33.33% - 53.33px);
}

.counter-item::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(40px, -50%);
	border: 1px solid var(--dark-divider-color);
	width: 1px;
	height: 147px;
}

.counter-item:nth-child(3n + 3):before{
	border: none;
}

.counter-item .icon-box{
	position: relative;
    background-color: var(--secondary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 25px;
	transition: all 0.5s ease-in-out;
}

.counter-item:hover .icon-box{
	background-color: var(--accent-color);
}

.counter-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.counter-item:hover .icon-box:before{
    transform: scale(1);
}

.counter-item .icon-box img{
    position: relative;
    max-width: 34px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.counter-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.counter-item-content h2{
	font-size: 44px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.counter-item-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.counter-image{
	width: 40%;
	height: 100%;
	text-align: right;
}

.counter-image figure,
.counter-image img{
	height: 100%;
	object-fit: cover;
	border-radius: 180px 0 0 180px;
}

.our-team{
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
	padding: 100px 0 20px;
}

.our-team .section-row .section-title-content p,
.our-team .section-row .section-title h2{
	color: var(--white-color);
}

.team-member-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
	z-index: 1;
}

.team-image{
	border-radius: 40px;
	overflow: hidden;
}

.team-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.88%, #000000 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.4;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body{
	position: absolute;
	bottom: 50px;
	left: 30px;
	transform: translateY(100%);
	z-index: 2;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-body{
	bottom: 30px;
	transform: translateY(0);
}

.team-body-title{
	margin-bottom: 10px;
}

.team-body-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-body-content{
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-body-content{
	opacity: 1;
	visibility: visible;
}

.team-body-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

.team-social-icon ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
    display: block;
	background-color: var(--white-color);
    border-radius: 10px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li:hover a{
	background-color: var(--accent-color);
}

.team-social-icon ul li a i{
    color: var(--accent-color);
    font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i{
	color: var(--white-color);
}

.why-choose-us.about-why-choose{
	padding: 50px 0 100px;
}

.why-choose-us.about-why-choose .why-choose-image{
	margin-top: 50px;
}

/************************************/
/***     19. Page Services css	  ***/
/************************************/

.page-services{
	padding: 100px 0 20px;
}

.our-counter.page-service-counter{
	padding: 50px 0;
}

.our-faqs.page-service-faqs{
	padding: 50px 0 100px;
}

/************************************/
/***    20. Service Single css    ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.service-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 30px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 50px;
}

.service-catagery-list h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: 15px;
	padding: 15px;
	margin-bottom: 25px;
}

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

.service-catagery-list ul li{
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.service-catagery-list ul li a{
	display: block;
    position: relative;
	font-weight: 500;
	text-transform: capitalize;
    background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 15px;
	padding: 15px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
	background-color: var(--primary-color);
	color: var(--white-color);
}

.service-catagery-list ul li a::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
	transform: translate(-15px, -50%);
	background-image: url('assets/images/arrow-green.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px auto;
	width: 30px;
	height: 30px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after{
	filter: brightness(0) invert(1);
}

.sidebar-cta-box{
	position: relative;
	padding: 0 10px 10px 0;
}

.cta-contact-image{
	border-radius: 30px 30px 0 0;
	overflow: hidden;
}

.cta-contact-image img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 30px 30px 0 0;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .cta-contact-image img{
	transform: scale(1.1);
}

.cta-contact-body{
	background-color: var(--primary-color);
	border-radius: 0 0 30px 30px;
	padding: 30px;
}

.cta-contact-content{
	width: 100%;
	max-width: 246px;
}

.cta-contact-content h2{
	font-size: 28px;
	color: var(--white-color);
}

.cta-contact-content h2 span{
	font-weight: 400;
}

.cta-icon-box{
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--primary-color);
	border: 8px solid var(--white-color);
	border-radius: 50%;
	width: 78px;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-icon-box img{
	max-width: 34px;
}

.service-single-slider{
	margin-bottom: 40px;
}

.service-slider-image{
	border-radius: 30px;
	overflow: hidden;
}

.service-slider-image img{
	border-radius: 30px;
	overflow: hidden;
	aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.service-single-btn{
	position: absolute;
	bottom: 0;
	top: 0;
	left: 40px;
	right: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

.service-single-btn .service-single-button-next,
.service-single-btn .service-single-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.service-single-btn .service-single-button-next:hover,
.service-single-btn .service-single-button-prev:hover{
	background-color: var(--primary-color);
}

.service-single-btn .service-single-button-next::before,
.service-single-btn .service-single-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.service-single-btn .service-single-button-prev::before{
	transform: rotate(180deg);
}

.service-entry{
	margin-bottom: 80px;
}

.service-entry h2{
	font-size: 36px;
	margin-bottom: 25px;
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 25px;
}

.service-entry p{
	margin-bottom: 25px;
}

.service-entry p:last-child{
	margin-bottom: 0px;
}

.service-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

.service-entry ul li{
	position: relative;
    width: calc(50% - 10px);
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 35px;
}

.service-entry ul li:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/icon-pricing-list.svg) no-repeat;
    background-position: left center;
    background-size: 24px auto;
    width: 24px;
    height: 24px;
}

.service-entry-img-1 figure,
.service-entry-img-2 figure{
    display: block;
}

.service-entry-img-1 img,
.service-entry-img-2 img{
    aspect-ratio: 1 / 0.71;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***     21. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 100px 0 60px;
}

.post-item{
	height: calc(100% - 50px);
	margin-bottom: 50px;
}

.post-featured-image{
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 30px;
}

.post-featured-image a{
	display: block;
	cursor: none;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 40px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item .article-content h2{
	margin: 0;
}

.post-item .article-meta{
	margin-bottom: 20px;
}

.post-item .article-content{
	margin-bottom: 20px;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***      22. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta{
	margin-top: 10px;
}

.post-single-meta ol li.breadcrumb-item{
	font-size: 18px;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 40px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span{
	font-weight: 400;
}

.post-entry h1{
	font-size: 60px;
}

.post-entry h2{
	font-size: 36px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat 35px 40px;
    background-size: 45px;
    border-radius: 40px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    background-color: var(--primary-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 8px 20px;
    margin-left: 10px;
    margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--accent-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background-color: var(--primary-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-color: var(--accent-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i{
    color: var(--secondry-color);
}

/************************************/
/***     23. Page Project css	  ***/
/************************************/

.page-work{
	padding: 100px 0 70px;
}

/************************************/
/***    24. Project Single css    ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 30px;
}

.project-sidebar-details{
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 50px;
}

.project-details-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.project-details-item h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-details-item p{
	text-transform: capitalize;
	margin: 0;
}

.project-social-list h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

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

.project-social-list ul li{
	display: inline-flex;
	margin-right: 15px;
}

.project-social-list ul li:last-child{
	margin-right: 0;
}

.project-social-list ul li a{
	background-color: var(--primary-color);
	border-radius: 10px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.project-social-list ul li:hover a{
	background-color: var(--accent-color);
}

.project-social-list ul li a i{
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.project-single-image{
	margin-bottom: 40px;
}

.project-single-image figure{
	display: block;
}

.project-single-image img{
	border-radius: 40px;
}

.project-entry{
	margin-bottom: 80px;
}

.project-entry h2{
	font-size: 36px;
	margin-bottom: 25px;
}

.project-entry h3{
	font-size: 20px;
	margin-bottom: 25px;
}

.project-entry p{
	margin-bottom: 25px;
}

.project-entry p:last-child{
	margin-bottom: 0px;
}

.project-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

.project-entry ul li{
	position: relative;
    width: calc(50% - 10px);
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 35px;
}

.project-entry ul li:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/icon-pricing-list.svg) no-repeat;
    background-position: left center;
    background-size: 24px auto;
    width: 24px;
    height: 24px;
}

.project-gallery a{
	cursor: none;
}

.project-gallery figure{
	border-radius: 10px;
}

.project-gallery img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 10px;
}

/************************************/
/***     25. Page Pricing css	  ***/
/************************************/

.page-pricing{
	padding: 100px 0 70px;
}

.page-pricing .pricing-item{
	border: 1px solid var(--divider-color);
}

/************************************/
/***      26. Page Team css 	  ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***       27. Page FAQs css	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
    position: sticky;
    top: 20px;
    margin-right: 30px;
}

.faq-catagery-list{
	background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 30px;
}

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

.faq-catagery-list ul li{
	margin-bottom: 15px;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	display: block;
    position: relative;
    font-weight: 500;
    text-transform: capitalize;
    background-color: var(--white-color);
    color: var(--text-color);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	background-color: var(--primary-color);
	color: var(--white-color);
}

.faq-catagery-list ul li a::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
	transform: translate(-15px, -50%);
	background-image: url('assets/images/arrow-green.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px auto;
	width: 30px;
	height: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
	filter: brightness(0) invert(1);
}

.page-faqs .our-faq-section{
	margin-bottom: 60px;
}

.page-faqs .our-faq-section:last-child{
	margin-bottom: 0;
}

/************************************/
/***    28. Contact us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0 50px;
}

.contact-us-form{
	background: var(--primary-color) url('assets/images/contact-form-bg.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
	border-radius: 40px;
	height: 100%;
	padding: 70px 40px;
}

.contact-us-form .section-title p,
.contact-us-form .section-title h2{
	color: var(--white-color);
}

.contact-us-form .form-control{
	padding: 15px;
	font-size: 16px;
	background-color: var(--white-color);
	border: none;
	border-bottom: 1px solid var(--divider-color);
	border-radius: 15px;
	color: var(--primary-color);
	box-shadow: none;
	outline: none;
}

.contact-us-form .form-control::placeholder{
	color: var(--primary-color);
	text-transform: capitalize;
}

.contact-form-btn .btn-default.btn-highlighted{
	width: 100%;
	margin-right: 0;
}

.contact-form-btn .btn-default.btn-highlighted:hover{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.contact-form-btn .btn-default.btn-highlighted:before{
	display: none;
}

.contact-info-image{
	margin-bottom: 30px;
}

.contact-info-image figure{
	display: block;
}

.contact-info-image img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 40px;
}

.contact-info-list{
	background-color: var(--secondary-color);
	border-radius: 40px;
	padding: 40px;
}

.contact-info-item{
	background-color: var(--white-color);
	border-radius:  20px;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding: 20px;
}

.contact-info-item:last-child{
	margin-bottom: 0;
}

.contact-info-item .icon-box{
	margin-right: 20px;
}

.contact-info-item .icon-box img{
	max-width: 34px;
}

.contact-info-content{
	width: calc(100% - 54px);
}

.contact-info-content p{
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-info-content h3{
	font-size: 20px;
	font-weight: 600;
}

.google-map{
	padding: 50px 0 100px;
}

.google-map-iframe{
	width: 100%;
	height: 700px;
	border-radius: 40px;
	overflow: hidden;
}

.google-map-iframe iframe{
	width: 100%;
	height: 700px;
	border-radius: 40px;
	filter: grayscale(100%);
	transition: all 0.3s ease-in-out;
}

.google-map-iframe iframe:hover{
	filter: grayscale(0);
}

/************************************/
/***       29. 404 Page css       ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 60px;
}

.error-page .error-page-content{
	text-align: center;
}

.error-page-content-heading{
	margin-bottom: 30px;
}

.error-page-content-heading h2{
	font-size: 50px;
}

.error-page-content-heading h2 span{
	font-weight: 400;
}

.error-page-content-body .btn-default::before{
	background-color: var(--primary-color);
	background-image: url('assets/images/arrow-white.svg');
}

/************************************/
/***     30. responsive css       ***/
/************************************/

@media only screen and (max-width: 1366px){

	.our-counter{
		padding-left: 15px;
	}
}

@media only screen and (max-width: 1024px){

	.navbar{
        padding: 20px 0px;
    }
	
	.main-menu ul li{
		margin: 0;
	}

	.our-counter-box{
		margin-left: 0;
	}
}

@media only screen and (max-width: 991px){

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.section-row{
		margin-bottom: 40px;
	}
	
	.section-btn{
		margin-top: 15px;
		text-align: left;
	}

	.section-title-content p{
		margin: 0;
		margin-top: 15px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}
	
	.section-bg-title{
		top: -10px;
	}
	
	.section-bg-title span{
		font-size: 80px;
	}
	
	.section-title h3{
		padding-left: 30px;
		margin-bottom: 10px;
	}
	
	.section-title h3::before{
		background-size: contain;
		width: 26px;
		height: 26px;
	}
	
	.section-title h1{
		font-size: 46px;
	}
	
	.section-title h2{
		font-size: 40px;
	}
	
	.section-title p{
		margin-top: 15px;
		margin-bottom: 0;
	}

	.hero{
		padding: 150px 0;
	}

	.hero-slider-layout .hero-slide{
		padding: 150px 0;
	}

	.hero-slider-layout .hero-pagination{
		text-align: left;
		left: 15px;
	}

	.hero-content{
		padding-right: 0px;
	}

	.hero-content .section-title p{
		font-size: 16px;
	}

	.customer-review{
		padding: 25px 0;
	}

	.happy-customer-counter{
		margin-bottom: 30px;
		border-right: none;
	}

	.happy-customer-counter h2{
        width: calc(50% - 20px);
        font-size: 50px;
    }

	.happy-customer-counter p{
		width: calc(50% - 20px);
	}

	.customer-consultation-box{
		right: 0;
		padding: 30px;
	}

	.customer-consultation-body,
	.customer-consultation-image,
	.customer-consultation-title{
		margin-bottom: 20px;
	}

	.customer-consultation-title h3{
		font-size: 20px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-image{
		max-width: 600px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-us-content{
		margin-left: 0px;
	}

	.about-us-body{
		margin-bottom: 30px;
	}

	.our-services{
		padding: 50px 0 100px;
		margin-top: 100px;
	}

	.our-services::before{
		top: -98px;
		height: 100px;
	}

	.our-services::after{
		height: 100px;
	}

	.readmore-btn{
		width: 40px;
		height: 40px;
	}

	.readmore-btn img{
		max-width: 25px;
	}

	.our-expertise{
		padding: 50px 0;
	}

	.expertise-content{
		margin-bottom: 30px;
	}

	.expertise-content .section-title{
		padding-bottom: 30px;
	}

	.expertise-item-content h3{
		font-size: 22px;
		margin-bottom: 5px;
	}

	.intro-video{
		padding: 50px 0;
	}

	.intro-video-box{
		padding-bottom: 50px;
		margin-bottom: 50px;
	}

	.intro-video .section-title{
		margin-bottom: 30px;
	}

	.video-play-box{
		display: flex;
		justify-content: center;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-image{
		text-align: center;
	}

	.why-choose-image img{
		max-width: 55%;
	}

	.why-choose-us::before{
		top: auto;
		transform: translateY(-50px);
		background-position: left -100px top -60px;
		width: 100%;
		height: 450px;
	}

	.why-choose-content{
		margin-left: 0px;
		margin-bottom: 30px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.work-process-no{
		margin-bottom: 20px;
	}

	.work-process-no::before{
		width: 140px;
	}

	.work-process-content h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.work-process-content p{
		font-size: 14px;
	}

	.our-work{
		padding: 50px 0 20px;
	}

	.our-work-nav{
		margin-bottom: 40px;
	}

	.our-work-nav ul li a{
		padding: 0 20px;
	}

	.work-body{
		right: 20px;
		left: 20px;
	}

	.work-content h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.work-content{
		margin-bottom: 15px;
	}

	.our-testimonials{
		background: linear-gradient(0deg, var(--primary-color) 55%, transparent 55%), url(../images/testimonials-bg.jpg);
		padding: 0px 0 50px;
	}

	.our-testimonials .row{
		justify-content: center;
	}

	.testimonial-box{
		padding: 50px 30px 30px;
	}

	.testimonial-btn{
		margin-top: 30px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-faqs-cta{
		padding: 20px 30px;
		margin: 0 auto;
	}

	.faqs-cta-box{
		margin-bottom: 30px;
	}

	.our-faq-section .accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-body{
		padding: 15px 45px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

	.our-pricing{
		padding: 50px 0 100px;
		margin-top: 100px;
	}

	.our-pricing::before{
		top: -98px;
		height: 100px;
	}

	.our-pricing::after{
		height: 100px;
	}

	.pricing-item{
		padding: 30px;
	}

	.pricing-header{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pricing-header h3{
		margin-bottom: 15px;
	}

	.pricing-header h2{
		font-size: 40px;
	}

	.pricing-body{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.our-blog{
		padding: 50px 0;
	}

	.highlighted-article-post{
		margin-bottom: 40px;
	}

	.highlighted-article-featured-img{
		margin-bottom: 30px;
	}

	.highlighted-article-featured-img img{
		aspect-ratio: 1 / 0.64;
	}

	.highlighted-article-tag a{
		padding: 8px 15px;
	}

	.article-meta{
		margin-bottom: 15px;
	}

	.article-content{
		margin-bottom: 30px;
	}

	.article-content h2{
		margin-bottom: 15px;
	}

	.article-post{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	
	.article-post .article-tag a{
		padding: 8px 15px;
	}

	.article-post .article-tag{
		margin-bottom: 20px;
	}

	.main-footer{
		padding: 50px 0 0;
		margin-top: 100px;
	}

	.main-footer::after{
		top: -98px;
		height: 100px;
	}

	.about-footer{
		margin-bottom: 40px;
	}

	.about-footer-content,
	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-links{
		margin-left: 0px;
	}

	.footer-info-box h3,
	.footer-links h3,
	.working-hour h3{
		margin-bottom: 20px;
	}

	.footer-copyright{
		border-top: 1px solid var(--dark-divider-color);
		padding: 20px 0;
		margin-top: 40px;
	}

	.page-header{
		padding: 180px 0 80px;
	}

	.page-header-box h1{
		font-size: 46px;
	}

	.our-vision-mission{
		padding: 50px 0;
	}

	.vision-mission-box{
		margin-bottom: 50px;
	}

	.our-mission-image,
	.our-vision-image{
		margin-bottom: 30px;
	}

	.our-mission-image img,
	.our-vision-image img{
		aspect-ratio: 1 / 0.62;
	}

	.our-counter{
		padding: 50px 0 50px 15px;
	}

	.counter-content-box{
		gap: 20px;
		padding: 40px 20px 40px 40px;
	}

	.counter-item{
		width: calc(33.33% - 13.33px);
		text-align: center;
	}

	.counter-item::before{
		display: none;
	}

	.counter-item .icon-box{
		width: 50px;
		height: 50px;
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.counter-item .icon-box img{
		max-width: 30px;
	}

	.counter-item-content h2{
		font-size: 34px;
		color: var(--white-color);
		margin-bottom: 10px;
	}

	.counter-item-content p{
		font-size: 12px;
	}

	.our-team{
		background: linear-gradient(180deg, var(--primary-color) 50%, var(--white-color) 50%);
		padding: 50px 0 0px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.3;
	}

	.why-choose-us.about-why-choose{
		padding: 25px 0 50px;
	}

	.why-choose-us.about-why-choose .why-choose-image{
		margin-top: 0px;
	}

	.page-services{
		padding: 50px 0 0px;
	}

	.our-counter.page-service-counter{
		padding: 25px 0;
	}

	.our-faqs.page-service-faqs{
		padding: 25px 0 50px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		margin-bottom: 20px;
	}

	.service-catagery-list ul li{
		margin-bottom: 15px;
	}

	.service-catagery-list ul li a{
		padding: 10px 15px;
	}

	.service-catagery-list ul li a::after{
		background-size: 26px auto;
		width: 26px;
		height: 26px;
	}

	.cta-contact-image img{
		aspect-ratio: 1 / 0.60;
	}

	.cta-contact-body{
		padding: 20px;
	}

	.cta-contact-content h2{
		font-size: 24px;
	}

	.service-single-slider{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 50px;
	}

	.service-entry p{
		margin-bottom: 20px;
	}

	.service-entry h2{
		font-size: 32px;
		margin-bottom: 20px;
	}

	.page-blog{
		padding: 50px 0 20px;
	}

	.post-item{
		height: calc(100% - 40px);
		margin-bottom: 40px;
	}

	.post-featured-image{
		margin-bottom: 20px;
	}

	.post-item .article-meta{
		margin-bottom: 15px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background: var(--secondary-color) url('assets/images/icon-blockquote.svg') no-repeat 30px 35px;
        background-size: 45px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 32px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tag-links{
		padding: 0 0px;
	}

	.post-tags{
		margin-bottom: 10px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 8px 15px;
	}

	.page-work{
		padding: 50px 0 20px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-sidebar{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.project-sidebar-details{
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-details-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.project-single-image{
		margin-bottom: 30px;
	}

	.project-entry{
		margin-bottom: 20px;
	}

	.project-entry p{
		margin-bottom: 20px;
	}

	.project-entry h2{
		font-size: 32px;
		margin-bottom: 20px;
	}

	.project-gallery{
		margin-bottom: 30px;
	}

	.project-gallery img{
		aspect-ratio: 1 / 0.8;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-pricing{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		padding: 20px;
	}

	.page-faqs .our-faq-section{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0 25px;
	}

	.contact-us-form{
		height: auto;
		padding: 50px 30px;
		margin-bottom: 30px;
	}

	.contact-info-list{
		padding: 30px;
	}

	.contact-info-item{
		margin-bottom: 20px;
		padding: 15px;
	}

	.google-map{
		padding: 25px 0 50px;
	}

	.google-map-iframe iframe,
	.google-map-iframe{
		height: 500px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 30px;
	}

	.error-page-image img{
		max-width: 70%;
	}

	.error-page-content-heading{
		margin-bottom: 20px;
	}
	
	.error-page-content-heading h2{
		font-size: 40px;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
        margin-bottom: 30px;
    }

	.section-bg-title span{
        font-size: 60px;
    }

	.section-title h1{
		font-size: 32px;
	}

	.section-title h2{
		font-size: 30px;
	}

	.hero{
        padding: 150px 0 100px;
    }

	.hero-content-body .btn-default{
		margin-right: 30px;
	}

	.hero-content-body .btn-default.btn-highlighted{
		margin-left: 0px;
		margin-top: 20px;
	}

	.customer-review{
        padding: 25px 0 0;
    }

	.happy-customer-counter h2{
        width: calc(50% - 20px);
        font-size: 40px;
    }

	.happy-customer-counter p{
        width: calc(50% - 20px);
    }

	.customer-review-content{
		margin-bottom: 30px;
	}

	.customer-consultation-box{
        position: initial;
		width: 100%;
        padding: 20px;
    }

	.customer-consultation-title h3{
        font-size: 18px;
    }

	.about-image{
		background-size: 50% auto;
		padding-top: 70px;
	}

	.about-img-1{
		max-width: 250px;
	}

	.about-img-2{
		max-width: 200px;
	}

	.company-experience{
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		align-items: center;
	}

	.company-experience-counter{
		margin-bottom: 5px;
	}

	.company-experience-counter h2{
		font-size: 30px;
	}

	.company-experience-content{
		width: 100%;
	}

	.company-experience-content p{
		font-size: 14px;
	}

	.about-us-body ul li{
		width: 100%;
	}

	.about-company-founder{
		width: 100%;
		border-right: none;
		padding-right: 0px;
	}

	.company-founder-content h3{
		font-size: 18px;
	}

	.contact-now-box.about-contact-box{
		width: 100%;
	}

	.service-title h3{
		font-size: 18px;
	}

	.expertise-body{
		gap: 20px 10px;
	}

	.expertise-item{
		width: calc(50% - 5px);
	}

	.expertise-item .icon-box{
		width: 50px;
		height: 50px;
	}

	.expertise-item .icon-box img{
		max-width: 28px;
	}

	.expertise-item-content{
		width: calc(100% - 60px);
	}

	.expertise-item-content h3{
        font-size: 20px;
        margin-bottom: 5px;
    }

	.expertise-images{
		gap: 20px;
	}

	.expertise-image-box-2,
	.expertise-image-box-1{
		background-size: contain;
		width: calc(50% - 10px);
		gap: 20px;
	}

	.expertise-image-box-1{
		padding-top: 40px;
	}

	.expertise-image-box-2{
		padding-bottom: 40px;
	}

	.expertise-img-4 img,
	.expertise-img-3 img,
	.expertise-img-2 img,
	.expertise-img-1 img{
		border-radius: 20px;
	}

	.expertise-img-2 img{
		aspect-ratio: 1 / 0.78;
	}

	.intro-video-box{
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

	.video-play-button a{
        width: 64px;
        height: 64px;
    }
	
	.video-play-button a i{
		font-size: 26px;
	}

	.specialize-item .icon-box{
		margin-right: 15px;
	}

	.specialize-item .icon-box img{
		max-width: 64px;
	}

	.specialize-content{
		width: calc(100% - 79px);
	}

	.specialize-content p{
		font-size: 14px;
	}

	.why-choose-us::before{
        background-position: left -50px top -20px;
        width: 100%;
        height: 280px;
    }

	.why-choose-image img{
        max-width: 65%;
    }

	.why-choose-item{
		width: 100%;
	}

	.why-choose-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 15px;
	}

	.why-choose-item .icon-box img{
		max-width: 28px;
	}

	.why-choose-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.how-work-circle-img{
		text-align: center;
		margin-top: 15px;
	}

	.how-work-circle-img{
		display: none;
	}

	.how-work-item{
		width: calc(50% - 15px);
	}

	.work-process-no::before{
		display: none;
	}

	.work-process-content h3{
        font-size: 16px;
    }

	.author-image figure, .author-image img{
		width: 50px;
		height: 50px;
	}

	.author-content{
		width: calc(100% - 65px);
	}

	.author-content h3{
		font-size: 18px;
	}

	.our-faqs-cta{
        padding: 20px;
    }

	.faqs-cta-box .icon-box{
		width: 56px;
		height: 56px;
	}

	.faqs-cta-box .icon-box img{
		max-width: 30px;
	}

	.faqs-cta-content{
		width: calc(100% - 70px);
	}

	.faqs-cta-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faqs-cta-btn .btn-default{
		padding: 15px 20px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 18px;
	}

	.pricing-header h2{
        font-size: 30px;
    }

	.pricing-body ul li{
		padding-left: 30px;
	}

	.pricing-body ul li::before{
		top: 3px;
		background-size: 20px auto;
		width: 20px;
		height: 20px;
	}

	.highlighted-article-tag{
		top: 20px;
		left: 20px;
	}

	.highlighted-article-tag a{
        padding: 6px 10px;
		font-size: 14px;
    }

	.article-post .article-tag a{
		padding: 6px 10px;
		font-size: 14px;
    }

	.article-meta ul li{
		font-size: 14px;
		margin-right: 5px;
	}

	.article-meta ul li i{
		font-size: 14px;
		margin-right: 5px;
	}

	.article-content h2{
        font-size: 18px;
    }

	.article-content{
        margin-bottom: 20px;
    }

	.working-hour,
	.footer-links{
        margin-bottom: 40px;
    }

	.footer-info-box h3,
	.footer-links h3,
	.working-hour h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-info-box{
		margin-bottom: 20px;
	}

	.footer-privacy-policy ul,
	.footer-copyright-text{
		text-align: center;
	}

	.footer-privacy-policy ul li{
		margin-right: 20px;
	}

	.page-header-box h1{
        font-size: 32px;
    }

	.our-counter{
        padding-left: 0;
    }

	.our-counter-box{
        display: block;
		height: auto;
		border-radius: 0;
    }

	.counter-content-box{
		width: 100%;
		padding: 30px 15px;
    }

	.counter-item-content h2{
        font-size: 26px;
        margin-bottom: 10px;
    }

	.counter-item-content p{
        font-size: 10px;
    }

	.counter-image{
		width: 100%;
	}

	.counter-image figure, .counter-image img{
		border-radius: 0;
	}

	.our-team{
        background: linear-gradient(180deg, var(--primary-color) 30%, var(--white-color) 30%);
    }

	.team-image img{
        aspect-ratio: 1 / 1.2;
    }

	.team-body-title h3{
		font-size: 18px;
	}

	.service-catagery-list h3{
        font-size: 18px;
    }

	.service-single-btn{
		left: 20px;
		right: 20px;
	}

	.service-slider-image img{
		aspect-ratio: 1 / 0.8;
	}

	.service-single-btn .service-single-button-next,
	.service-single-btn .service-single-button-prev{
		width: 30px;
		height: 30px;
	}

	.service-single-btn .service-single-button-next::before,
	.service-single-btn .service-single-button-prev::before{
		background-size: 20px auto;
	}

	.service-entry{
        margin-bottom: 40px;
    }

	.service-entry h2{
        font-size: 28px;
    }

	.service-entry ul li{
		width: 100%;
		font-size: 16px;
		padding-left: 30px;
	}

	.service-entry ul li:before{
		top: 2px;
		background-size: 20px auto;
		width: 20px;
		height: 20px;
	}

	.service-entry-img-1{
		margin-bottom: 20px;
	}

	.service-entry-img-1 img,
	.service-entry-img-2 img{
		border-radius: 15px;
	}

	.post-single-meta ol li i{
        font-size: 18px;
    }

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat 20px 20px;
        background-size: 35px;
        padding: 55px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 28px;
	}

	.tag-links{
		font-size: 20px;
	}

	.project-details-item h3{
		font-size: 18px;
	}

	.project-social-list h3{
		font-size: 18px;
	}

	.project-entry{
        margin-bottom: 10px;
    }

	.project-entry h2{
        font-size: 28px;
    }

	.project-entry ul li{
		width: 100%;
		font-size: 16px;
		padding-left: 30px;
	}

	.project-entry ul li:before{
		top: 2px;
		background-size: 20px auto;
		width: 20px;
		height: 20px;
	}

	.contact-us-form{
        padding: 40px 20px;
    }

	.contact-us-form .form-control{
		padding: 10px 15px;
	}

	.contact-info-list{
        padding: 20px;
    }

	.contact-info-content h3{
		font-size: 18px;
	}

	.google-map-iframe iframe,
	.google-map-iframe{
		height: 400px;
	}

	.error-page-image img{
		max-width: 100%;
	}
	
	.error-page-content-heading h2{
		font-size: 30px;
	}
}


.hero.parallaxie {
    background: url(assets/images/bannerbg.jpg);
}/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #0B3D2C;
	--secondary-color		: #F0FFF0;
	--text-color			: #555555;
	--accent-color			: #2A7D2E;
	--white-color			: #FFFFFF;
	--divider-color			: #E7ECEA;
	--dark-divider-color	: #FFFFFF33;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Plus Jakarta Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.8em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: #0b3d2c;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.mfp-container{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 14px 35px 14px 25px;
	margin-right: 15px;
	border: none;
	transition: all 0.5s ease-in-out;
	position: relative;
	z-index: 1;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--white-color);
	background-image: url('assets/images/arrow-green.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: translate(50%, -50%);
	transition: all 0.3s ease-in-out;
}

.btn-default:hover::before{
	background-color: var(--secondary-color);
	right: -3px;
}

.btn-default.btn-highlighted{
	background-color: var(--white-color);
	color: var(--primary-color);
}

.btn-default.btn-highlighted:before{
	background-color: var(--accent-color);
	background-image: url('assets/images/arrow-white.svg');
}

.btn-default.btn-highlighted:hover::before{
	background-color: var(--primary-color);
}

#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 60px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title-content p{	
	margin: 0;
}

.section-btn{
	text-align: end;
}

.section-title{
	position: relative;
	margin-bottom: 40px;
}

.section-bg-title{
	position: absolute;
	top: -40px;
}

.section-bg-title span{
	display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    font-size: 100px;
    line-height: 1em;
    font-weight: 800;
    color: var(--white-color);
	background: -webkit-linear-gradient(270deg, rgba(11, 61, 44, 0.1) 68.79%, rgba(11, 61, 44, 0.02) 91%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
}

.section-bg-title.dark-bg-1 span{
	color: var(--secondary-color);
	background: -webkit-linear-gradient(270deg, rgba(11, 61, 44, 0.08) 68.79%, rgba(11, 61, 44, 0.016) 91%);
	-webkit-background-clip: text;
}

.section-bg-title.dark-bg-2 span{
	color: var(--primary-color);
	background: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 0.08) 68.79%, rgba(11, 61, 44, 0.016) 91%);
	-webkit-background-clip: text;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 16px;
    font-weight: 500;
	line-height: 1.2em;
    text-transform: capitalize;
    color: var(--accent-color);
	padding-left: 45px;
    margin-bottom: 20px;
}

.section-title h3::before{
	content: '';
	position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    transform: translateY(-50%);
	background: url("assets/images/icon-sub-heading.svg") no-repeat;
	background-position: left center;
	background-size: cover;
	width: 34px;
	height: 34px;
}

.section-title h1{
	font-size: 60px;
	font-weight: 700;
	margin-bottom: 0;
}

.section-title h2{
	color: #0b3d2c;
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span{
	font-weight: 400;
}

.section-title p{
	margin-top: 25px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	/*border-bottom: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(3px);*/
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background-color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
}

.navbar{
	padding: 5px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
	display: flex;
    justify-content: center;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 4px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 600;
	padding: 14px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--white-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu ul li.submenu > a:after{
	content: '\f105';
	float: right;
}

.main-menu ul li.submenu:first-child ul ul{
    width: 250px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.contact-now-box{
	display: flex;
	align-items: center;
}

.contact-now-box .icon-box{
	background-color: var(--accent-color);
	border-radius: 16px;
	display: flex;
	align-items: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box{
	background-color: var(--primary-color);
}

.contact-now-box .icon-box img{
	max-width: 25px;
}

.contact-now-box-content{
	width: calc(100% - 70px);
}

.contact-now-box-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-now-box-content h3{
	font-size: 18px;
	color: var(--white-color);
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 10px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
	border-radius: 0;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
    position: relative;
    background: var(--primary-color) url(../images/hero-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 250px 0 150px;
    margin-top: -100px;
}

.hero::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270.08deg, rgba(11, 61, 44, 0) 30.53%, rgba(11, 61, 44, 0.8) 76.6%);
    width: 100%;
    height: 100%;
}

.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero-video .hero-bg-video::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(270.08deg, rgba(11, 61, 44, 0) 30.53%, rgba(11, 61, 44, 0.8) 76.6%);
    width: 100%;
    height: 100%;
	z-index: 1;
}

.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider{
	background: none;
	padding: 0;
}

.hero-slider-layout .hero-slide{
	position: relative;
    padding: 250px 0 150px;
}

.hero.hero-slider:before{
	display: none;
}

.hero.hero-slider .hero-slider-layout{
	position: relative;
	z-index: 1;
}

.hero-slider-layout .hero-slide::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content{
	position: relative;
	z-index: 2;
	margin: 0 auto;
}

.hero-slider-layout .hero-pagination{
	position: absolute;
	z-index: 5;
    bottom: 50px;
	padding-left: calc(((100vw - 1300px) / 2));
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 1;
	padding-right: 85px;
}

.hero-content .section-title h3::before{
	filter: brightness(0) invert(1);
}

.hero-content .section-title p,
.hero-content .section-title h1 span,
.hero-content .section-title h1,
.hero-content .section-title h3{
	color: var(--white-color);
}

.hero-content .section-title p{
	font-size: 18px;
}

.hero-content-body .btn-default.btn-highlighted{
	margin-left: 40px;
}

/************************************/
/***    05. Customer Review css	  ***/
/************************************/

.customer-review{
	position: relative;
	/* background-color: var(--secondary-color); */
	padding: 50px 0;
}

.happy-customer-counter{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	border-right: 1px solid var(--divider-color);
	padding-right: 15px;
}

.happy-customer-counter h2{
	width: calc(60% - 20px);
	font-size: 70px;
}

.happy-customer-counter p{
	width: calc(40% - 20px);
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 0;
}

.customer-review-content p{
	margin: 0;
}

.customer-consultation-box{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 400px;
	background-color: var(--primary-color);
	border-radius: 40px 40px 0 0;
	padding: 40px;
	z-index: 2;
}

.customer-consultation-title{
	margin-bottom: 30px;
}

.customer-consultation-title h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
}

.customer-consultation-image{
	margin-bottom: 30px;
}

.customer-consultation-body{
	margin-bottom: 30px;
}

.customer-consultation-body p{
	color: var(--white-color);
	margin: 0;
}

.learn-more-btn{
	position: relative;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.learn-more-btn:hover{
	color: var(--accent-color);
}

.learn-more-btn::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: var(--white-color) url('assets/images/arrow-green.svg') no-repeat;
	background-position: center center;
	background-size: 16px auto;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	transition: all 0.3s ease-in-out;
}

.learn-more-btn:hover::after{
	background: var(--accent-color) url('assets/images/arrow-green.svg') no-repeat;
	background-position: center center;
	background-size: 16px auto;
	right: -2px;
}

/************************************/
/***       06. About Us css	      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-image{
	position: relative;
	background: url('assets/images/about-image-bg.svg') no-repeat;
	background-position: left bottom 90px;
	background-size: auto;
	display: flex;
	justify-content: end;
	padding-top: 90px;
}

.about-img-1{
	position: relative;
	width: 100%;
	max-width: 390px;
	text-align: right;
	z-index: 1;
}

.about-img-1 figure{
	border-radius: 400px;
}

.about-img-1 img{
	border: 8px solid var(--white-color);
	aspect-ratio: 1 / 1.49;
	object-fit: cover;
	border-radius: 400px;
}

.about-img-2{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.about-img-2 figure,
.about-img-2 img{
	border-radius: 200px;
}

.company-experience{
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
}

.company-experience-counter{
	width: 45%;
}

.company-experience-counter h2{
	font-size: 50px;
}

.company-experience-content{
	width: 55%;
}

.company-experience-content p{
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

.about-us-content{
	
	margin-left: 25px;
}

.about-us-body{
	margin-bottom: 40px;
}

.about-us-body ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-us-body ul li{
    position: relative;
    width: calc(50% - 10px);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 30px;
}

.about-us-body ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.about-us-footer{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}

.about-company-founder{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
	border-right: 1px solid var(--divider-color);
	padding-right: 15px;
}

.company-founder-image{
	margin-right: 15px;
}

.company-founder-image img{
	max-width: 60px;
	border-radius: 15px;
}

.company-founder-content{
	width: calc(100% - 75px);
}

.company-founder-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.company-founder-content p{
	text-transform: capitalize;
	margin: 0;
}

.contact-now-box.about-contact-box{
	width: calc(50% - 15px);
}

.contact-now-box.contact-now-box .icon-box{display: block;margin: 0;border-radius: 10px;}

.contact-now-box.contact-now-box .icon-box img{
	max-width: 30px;
}

.contact-now-box.about-contact-box .contact-now-box-content p{
	color: var(--text-color);
}

.contact-now-box.about-contact-box .contact-now-box-content h3{
	color: var(--primary-color);
}

/************************************/
/***     07. Our Services css	  ***/
/************************************/

.our-services{
	position: relative;
	/* background: var(--secondary-color); */
	padding: 40px 0 70px;
	margin-top: 0px;
}

.our-services::before{
	content: '';
	position: absolute;
	top: -130px;
	right: 0;
	left: 0;
	/* background: url('assets/images/service-top-bg.svg') no-repeat; */
	background-position: top center;
	background-size: cover;
	width: 100%;
	height: 132px;
}

.our-services::after{
	content: '';
	position: absolute;
	bottom: -4px;
	right: 0;
	left: 0;
	/*background: url('assets/images/service-bottom-bg.svg') no-repeat;*/
	background-position: bottom center;
	background-size: cover;
	width: 100%;
	height: 132px;
}

.service-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-image{
	border-radius: 40px;
	overflow: hidden;
}

.service-image a{
	position: relative;
	display: block;
}

.service-image a::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0) 67.85%, rgba(0, 0, 0, 0.6) 100%);
	width: 100%;
	height: 100%;
	border-radius: 40px;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-image a::after{
	background: var(--primary-color);
	opacity: 80%;
}

.service-image img{
	aspect-ratio: 1 / 1.19;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.5s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.service-title{
	position: absolute;
	top: 30px;
	left: 30px;
	right: 10px;
	z-index: 4;
}

.service-title h3{
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.service-body{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 10px;
	transform: translateY(100%);
	opacity: 0;
	z-index: 4;
	transition: all 0.5s ease-in-out;
}

.service-item:hover .service-body{
	bottom: 30px;
	transform: translateY(0%);
	opacity: 1;
}

.service-content{
	margin-bottom: 20px;
}

.service-content p{
	color: var(--white-color);
	margin: 0;
}

.readmore-btn{
	background-color: var(--white-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	background-color: var(--accent-color);
}

.readmore-btn img{
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover img{
	filter: brightness(0) invert(1);
}

/************************************/
/***     08. Our Expertise css	  ***/
/************************************/

.our-expertise{
	padding: 100px 0;
}

.expertise-content .section-title{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.expertise-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.expertise-item{
	width: calc(33.33% - 13.33px);
	display: flex;
	align-items: center;
}

.expertise-item .icon-box{
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 10px;
}

.expertise-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    background: var(--accent-color);
	border-radius: 10px;
	width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.expertise-item:hover .icon-box:before{
    transform: scale(1);
}

.expertise-item .icon-box img{
	position: relative;
	max-width: 34px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.expertise-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.expertise-item-content{
	width: calc(100% - 70px);
}

.expertise-item-content h3{
	font-size: 24px;
	margin-bottom: 5px;
}

.expertise-item-content p{
	text-transform: capitalize;
	font-weight: 500;
	color: var(--primary-color);
	margin: 0;
}

.expertise-images{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.expertise-image-box-2,
.expertise-image-box-1{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.expertise-image-box-1{
	background: url('assets/images/expertise-image-bg-1.svg') no-repeat;
	background-position: top left;
	background-size: auto;
	padding-top: 65px;
}

.expertise-image-box-2{
	background: url('assets/images/expertise-image-bg-2.svg') no-repeat;
	background-position: bottom right;
	background-size: auto;
	padding-bottom: 65px;
}

.expertise-img-4,
.expertise-img-3,
.expertise-img-2,
.expertise-img-1{
	width: 100%;
}

.expertise-img-4 figure,
.expertise-img-3 figure,
.expertise-img-2 figure,
.expertise-img-1 figure{
	width: 100%;
}

.expertise-img-4 img,
.expertise-img-3 img,
.expertise-img-2 img,
.expertise-img-1 img{
	width: 100%;
	border-radius: 40px;
}

.expertise-img-1 img{
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
}

.expertise-img-2 img{
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
}

.expertise-img-3 img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.expertise-img-4 img{
	aspect-ratio: 1 / 1.33;
	object-fit: cover;
}

/************************************/
/***     09. Intro Video css      ***/
/************************************/

.intro-video{
	position: relative;
	background: url('assets/images/intro-video-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.intro-video::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
	opacity: 50%;
	z-index: 0;
}

.intro-video-box{
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 80px;
	margin-bottom: 80px;
}

.intro-video .section-title{
	margin-bottom: 0;
}

.intro-video .section-title h2{
	color: var(--white-color);
}

.video-play-box{
	display: flex;
	justify-content: end;
}

.video-play-content{
	position: relative;
	text-align: right;
	display: inline-block;
	z-index: 1;
}

.video-play-button{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.video-play-button a{
	position: relative;
	background-color: var(--primary-color);
	border-radius: 100%;
	width: 74px;
	height: 74px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 30px;
	color: var(--white-color);
}

.specialize-item{
	position: relative;
	display: flex;
	align-items: center;
	z-index: 1;
}

.specialize-item .icon-box{
	margin-right: 25px;
}

.specialize-item .icon-box img{
	max-width: 74px;
}

.specialize-content{
	width: calc(100% - 99px);
}

.specialize-content p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***    10. Why choose Us css     ***/
/************************************/

.why-choose-us{
	position: relative;
	background: url('assets/images/section-bg-leaf.svg') no-repeat;
	background-position: right bottom;
	background-size: auto;
	padding: 100px 0;
}

.why-choose-us::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	top: -6px;
	transform: translateY(50%);
	background: var(--secondary-color) url('assets/images/why-choose-image-bg.svg') no-repeat;
	background-position: left -130px top -80px;
	background-size: contain;
	border-radius: 0 999px 999px 0;
	width: 50%;
	height: 514px;
}

.why-choose-image{
	position: relative;
	text-align: left;
}

.why-choose-image img{
	position: relative;
	z-index: 2;
}

.why-choose-content{
	margin-left: 20px;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item{
	width: calc(50% - 15px);
}

.why-choose-item .icon-box{
	position: relative;
    background-color: var(--secondary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	margin-bottom: 25px;
}

.why-choose-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    background: var(--accent-color);
	border-radius: 10px;
	width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box:before{
    transform: scale(1);
}

.why-choose-item .icon-box img{
	position: relative;
	max-width: 34px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-item-content p{
	margin: 0;
}

/************************************/
/***     11. How It Work css      ***/
/************************************/

.how-it-work{
	position: relative;
	background: var(--primary-color) url('assets/images/how-it-work-bg-1.svg') no-repeat;
	background-position: left top;
	background-size: contain;
	padding: 100px 0;
}

.how-it-work::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('assets/images/how-it-work-bg-2.svg') no-repeat;
	background-position: right bottom;
	background-size: contain;
}

.how-it-work .section-title p,
.how-it-work .section-title h2 span,
.how-it-work .section-title h2{
	color: var(--white-color);
}

.how-work-circle-img{
	text-align: right;
}

.how-work-circle-img img{
	animation: workrotate 30s infinite linear;
}

@keyframes workrotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.how-work-process-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	z-index: 1;
}

.how-work-item{
	width: calc(25% - 22.5px);
}

.work-process-no{
	position: relative;
	margin-bottom: 30px;
}

.work-process-no::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 50px;
	right: 0;
	transform: translateY(-50%);
	border: 1px dashed var(--dark-divider-color);
	width: 255px;
	height: 2px;
}

.how-work-item:last-child .work-process-no::before{
	display: none;
}

.work-process-no h3{
	background-color: var(--accent-color);
	border-radius: 50%;
	font-size: 18px;
	color: var(--white-color);
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.how-work-item:hover .work-process-no h3{
	background-color: var(--white-color);
	color: var(--accent-color);
}

.work-process-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.work-process-content p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***      12. Our Project css	  ***/
/************************************/

.our-work{
	position: relative;
	background: url('assets/images/section-bg-leaf.svg') no-repeat;
	background-position: right bottom;
	background-size: auto;
	padding: 100px 0 70px;
}

.our-work::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: url('assets/images/section-bg-leaf-2.svg') no-repeat;
	background-position: left top;
	background-size: auto;
	width: 320px;
	height: 320px;
}

.our-work-nav{
	margin-bottom: 60px;
}

.our-work-nav ul{
	list-style: none;
	text-align: center;
	padding: 0;margin: 0;
}

.our-work-nav ul li{
	display: inline-block;
}

.our-work-nav ul li:last-child{
	margin-right: 0;
}

.our-work-nav ul li a{
	position: relative;
	display: inline-block;
	background-color: transparent;
	color: var(--text-color);
	font-weight: 600;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	padding: 0 30px;
    overflow: hidden;
}

.our-work-nav ul li a::before{
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    height: 100%;
    z-index: 0;
	color: var(--divider-color);
}

.our-work-nav ul li:last-child a::before{
	display: none;
}

.our-work-nav ul li a.active-btn,
.our-work-nav ul li a:hover{
	color: var(--accent-color);
}

.work-item-box .work-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.work-item{
	position: relative;
	overflow: hidden;
	cursor: none;
}

.work-image{
	overflow: hidden;
}

.work-image a{
	position: relative;
	cursor: none;
	display: block;
}

.work-image a::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    opacity: 0;
	visibility: hidden;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    z-index: 1;
	transition: all 0.5s ease-in-out;
}

.work-item:hover .work-image a::before{
	opacity: 80%;
	visibility: visible;
}

.work-image img{
	width: 100%;
	border-radius: 40px;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	box-shadow: 0px 0px 100px 0px #0000000D;
}

.work-body{
	position: absolute;
	bottom: 50%;
	right: 40px;
	left: 40px;
	text-align: center;
	border-radius: 10px;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.work-item:hover .work-body{
	transform: translateY(50%);
	opacity: 1;
	visibility: visible;
}

.work-content{
	text-align: center;
	margin-bottom: 20px;
}

.work-content h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.work-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.work-readmore-btn a{
    background-color: var(--white-color);
    width: 40px;
    height: 40px;
	margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-readmore-btn a img{
	max-width: 24px;
}

/************************************/
/***   13. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	background: linear-gradient(270deg, var(--primary-color)34%, transparent 34%), url('assets/images/testimonials-bg.jpg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	padding: 0px 0 200px;
}

.our-testimonials .row{
	justify-content: end;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-box{
	background-color: var(--secondary-color);
	border-radius: 0 0 40px 40px;
	padding: 70px 50px 50px;
	position: relative;
	z-index: 99;
}

.testimonial-header{
	background: url('assets/images/icon-blockquote.svg') no-repeat;
	background-position: right center;
	background-size: auto;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.author-image{
	margin-right: 15px;
}

.author-image figure,
.author-image img{
	width: 60px;
	height: 60px;
	border-radius: 15px;
}

.author-content{
	width: calc(100% - 75px);
}

.author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: #0b3d2c;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
	color: #0b3d2c;
}

.testimonial-content p{
	margin: 0;
	color: #0b3d2c;
}

.testimonial-btn{
	display: flex;
	align-items: center;
	justify-content: left;
	margin-top: 40px;
}

.testimonial-btn .testimonial-button-next,
.testimonial-btn .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-button-next{
	margin-left: 20px;
}


.testimonial-btn .testimonial-button-next:hover,
.testimonial-btn .testimonial-button-prev:hover{
	background-color: var(--primary-color);
}

.testimonial-btn .testimonial-button-next::before,
.testimonial-btn .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("assets/images/arrow-white.svg") no-repeat center center;
    background-size: 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-button-prev::before{
	transform: rotate(180deg);
}

/************************************/
/***       14. Our FAQs css	      ***/
/************************************/

.our-faqs{
	background: url('assets/images/section-bg-leaf-3.svg') no-repeat;
	background-position: left top;
	background-size: auto;
    padding: 100px 0;
}

.our-faqs-content{
	margin-right: 20px;
}

.our-faqs-cta{
    display: inline-block;
    background-color: var(--secondary-color);
    border-radius: 40px;
    max-width: 500px;
    padding: 30px 50px;
}

.faqs-cta-box{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.faqs-cta-box .icon-box{
    position: relative;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 14px;
    transition: all 0.3s ease-in-out;
}

.faqs-cta-box .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
}

.our-faqs-cta:hover .faqs-cta-box .icon-box:before{
    transform: scale(1);
}

.faqs-cta-box .icon-box img{
    position: relative;
    max-width: 34px;
    z-index: 1;
}

.faqs-cta-content{
    width: calc(100% - 80px);
}

.faqs-cta-content h3{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.faqs-cta-content p{
    margin: 0;
}

.faqs-cta-btn .btn-default{
    width: 100%;
    text-align: center;
	background-color: var(--primary-color);
    padding: 17px 24px 17px 24px;
	margin-right: 0;
}

.faqs-cta-btn .btn-default:hover{
	background-color: var(--accent-color);
}

.faqs-cta-btn .btn-default::before{
    display: none;
}

.our-faq-section .accordion-item{
    border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.our-faq-section .accordion-item:last-child{
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 20px 50px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
   background-color: var(--primary-color);
   color: var(--white-color);
   border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed{
	background-color: var(--white-color);
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after{
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -10px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 20px;
	width: 20px;
	height: 20px;
	padding: 5px;
	color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-button.collapsed::after{
	content: '\f067';
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-body{
	background-color: var(--primary-color);
	padding: 20px 50px 20px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

/************************************/
/***      15. Our Pricing css	  ***/
/************************************/

.our-pricing{
    position: relative;
    background: var(--secondary-color);
    padding: 100px 0 150px;
    margin-top: 130px;
}

.our-pricing::before{
    content: '';
    position: absolute;
    top: -130px;
    right: 0;
    left: 0;
    background: url(../images/pricing-top-bg.svg) no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    height: 132px;
}

.our-pricing::after{
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    background: url(../images/pricing-bottom-bg.svg) no-repeat;
    background-position: bottom center;
    background-size: cover;
    width: 100%;
    height: 132px;
}

.pricing-item{
	background-color: var(--white-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-header{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.pricing-header h3{
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.pricing-header h2{
	font-size: 50px;
	color: var(--accent-color);
}

.pricing-header h2 sub{
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	text-transform: capitalize;
	bottom: 0;
}

.pricing-body{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

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

.pricing-body ul li{
	position: relative;
	margin-bottom: 15px;
	padding-left: 40px;
}

.pricing-body ul li::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url('assets/images/icon-pricing-list.svg') no-repeat;
	background-position: left center;
	background-size: 24px auto;
	width: 24px;
	height: 24px;
}

.pricing-body ul li:last-child{
	margin-bottom: 0;
}

.pricing-footer .btn-default::before{
	background-color: var(--primary-color);
	background-image: url('assets/images/arrow-white.svg');
}

.pricing-item.highlighted-box{
	background: var(--primary-color) url('assets/images/pricing.highlighted-box-bg.svg') no-repeat;
	background-position: center center;
	background-size: auto;
	overflow: hidden;
}

.pricing-item.highlighted-box .pricing-body ul li,
.pricing-item.highlighted-box .pricing-header h2 sub,
.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h3{
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-body,
.pricing-item.highlighted-box .pricing-header{
	border-color: var(--dark-divider-color);
}

.pricing-item.highlighted-box .pricing-body ul li::before{
	filter: brightness(0) invert(1);
}

.pricing-footer .btn-default.btn-highlighted::before{
	background-color: var(--accent-color);
}

/************************************/
/***     16. Our Blog Post css	  ***/
/************************************/

.our-blog{
	padding: 100px 0;
}

.highlighted-article-featured-img{
	position: relative;
	border-radius: 40px;
	overflow: hidden;
	margin-bottom: 40px;
}

.highlighted-article-featured-img a{
	display: block;
	cursor: none;
}

.highlighted-article-featured-img img{
	width: 100%;
	aspect-ratio: 1/ 0.74;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.5s ease-in-out;
}

.highlighted-article-post:hover .highlighted-article-featured-img img{
	transform: scale(1.1);
}

.highlighted-article-tag{
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 1;
}

.highlighted-article-tag a{
	display: inline-block;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: 5px;
	font-weight: 600;
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
	text-transform: capitalize;
	cursor: pointer;
}

.highlighted-article-tag:hover a{
	background-color: var(--primary-color);
	color: var(--white-color);
}

.article-meta{
	margin-bottom: 20px;
}

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

.article-meta ul li{
	display: inline-block;
	color: var(--text-color);
	text-transform: capitalize;
	margin-right: 15px;
}

.article-meta ul li:last-child{
	margin-right: 0;
}

.article-meta ul li a{
	color: inherit;
}

.article-meta ul li i{
	font-size: 16px;
	color: var(--text-color);
	margin-right: 10px;
}

.article-meta ul li i.fa-tag{
	transform: rotate(90deg);
}

.article-content{
	margin-bottom: 40px;
}

.article-content h2{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.article-content h2 a{
	color: inherit;
}

.article-content p{
	margin: 0;
}

.article-btn .btn-default::before{
    background-color: var(--primary-color);
    background-image: url(../images/arrow-white.svg);
}

.article-post{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.article-post:last-child{
	border: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.article-post .article-tag{
	margin-bottom: 25px;
}

.article-post .article-tag a{
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: 5px;
	font-weight: 600;
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
	text-transform: capitalize;
	cursor: pointer;
}

.article-post:hover .article-tag a{
	background-color: var(--accent-color);
}

.article-post .article-content{
	margin-bottom: 0;
}

/************************************/
/***   	    17. Footer css        ***/
/************************************/

.main-footer{
	position: relative;
	background: linear-gradient(0deg, rgb(3 16 0) 0%, #031000 74.8%), url(assets/images/footer-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 90px 0 0;
	margin-top: 130px;
}

.main-footer::after{
	content: '';
	position: absolute;
	top: -130px;
	right: 0;
	left: 0;
	background: url(assets/images/footer-top-bg.svg) no-repeat;
	background-position: top center;
	background-size: cover;
	width: 100%;
	height: 132px;
}

.footer-logo{
	margin-bottom: 25px;
}

.footer-logo img{
	max-width: 220px;
}

.about-footer-content{
	margin-bottom: 25px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-flex;
	margin-right: 20px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	background-color: var(--white-color);
	border-radius: 10px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	background-color: var(--accent-color);
}

.footer-social-links ul li a i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
	color: var(--white-color);
}

.footer-links h3,
.working-hour h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links{
	margin-left: 30px;
}

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

.footer-links ul li{
	text-transform: capitalize;
	margin-bottom: 10px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a, .main-menu .nav-menu-wrapper ul a:hover, .main-menu .nav-menu-wrapper ul li.current-menu-item a, .footer-copyright-text a:hover, .footer-info-box p a:hover{
	color: var(--accent-color);
}

.working-hour-box{
	margin-bottom: 10px;
}

.working-hour-box:last-child{
	margin-bottom: 0;
}

.working-hour-box p{
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.footer-info-box{
	margin-bottom: 25px;
}

.footer-info-box:last-child{
	margin-bottom: 0;
}

.footer-info-box h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-info-box p a{
	color: var(--white-color);
	margin: 0;
}

.footer-copyright{
	border-top: 1px solid var(--dark-divider-color);
	padding: 25px 0;
	margin-top: 60px;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: end;
}

.footer-privacy-policy ul li{
	display: inline-block;
	margin-right: 40px;
}

.footer-privacy-policy ul li:last-child{
	margin-right: 0;
}

.footer-privacy-policy ul li a{
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover a{
	color: var(--accent-color);
}

/************************************/
/***     18. About us Page css	  ***/
/************************************/

.page-header{
	position: relative;
	background: url('assets/images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 225px 0 125px;
	margin-top: -100px;
}

.page-header::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
}

.page-header-box{
	position: relative;
	text-align: left;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 60px;
    font-weight: 700;
	color: var(--white-color);
	margin-bottom: 5px;
}

.page-header-box h1 span{
	font-weight: 400;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--secondary-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-vision-mission{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.vision-mission-box{
	margin-bottom: 80px;
}

.vision-mission-box:nth-child(even){
	flex-direction: row-reverse;
}

.vision-mission-box:last-child{
	margin-bottom: 0;
}

.our-mission-image figure,
.our-vision-image figure{
	display: block;
}

.our-mission-image img,
.our-vision-image img{
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	border-radius: 40px;
}

.our-mission-content .section-title,
.our-vision-content .section-title{
	margin-bottom: 0;
}

.our-counter{
	padding: 100px 0;
}

.our-counter .container-fluid{
	padding: 0;
}

.our-counter-box{
	display: flex;
	align-items: center;
	background-color: var(--primary-color);
	margin-left: calc(((100vw - 1300px) / 2));
	border-radius: 180px 0 0 180px;
	height: 100%;
}

.counter-content-box{
	width: 60%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	padding: 65px 115px;
}

.counter-item{
	position: relative;
	width: calc(33.33% - 53.33px);
}

.counter-item::before{
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(40px, -50%);
	border: 1px solid var(--dark-divider-color);
	width: 1px;
	height: 147px;
}

.counter-item:nth-child(3n + 3):before{
	border: none;
}

.counter-item .icon-box{
	position: relative;
    background-color: var(--secondary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 25px;
	transition: all 0.5s ease-in-out;
}

.counter-item:hover .icon-box{
	background-color: var(--accent-color);
}

.counter-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.counter-item:hover .icon-box:before{
    transform: scale(1);
}

.counter-item .icon-box img{
    position: relative;
    max-width: 34px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.counter-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.counter-item-content h2{
	font-size: 44px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.counter-item-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.counter-image{
	width: 40%;
	height: 100%;
	text-align: right;
}

.counter-image figure,
.counter-image img{
	height: 100%;
	object-fit: cover;
	border-radius: 180px 0 0 180px;
}

.our-team{
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
	padding: 100px 0 20px;
}

.our-team .section-row .section-title-content p,
.our-team .section-row .section-title h2{
	color: var(--white-color);
}

.team-member-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
	z-index: 1;
}

.team-image{
	border-radius: 40px;
	overflow: hidden;
}

.team-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.88%, #000000 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.4;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body{
	position: absolute;
	bottom: 50px;
	left: 30px;
	transform: translateY(100%);
	z-index: 2;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-body{
	bottom: 30px;
	transform: translateY(0);
}

.team-body-title{
	margin-bottom: 10px;
}

.team-body-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-body-content{
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-body-content{
	opacity: 1;
	visibility: visible;
}

.team-body-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

.team-social-icon ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
    display: block;
	background-color: var(--white-color);
    border-radius: 10px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li:hover a{
	background-color: var(--accent-color);
}

.team-social-icon ul li a i{
    color: var(--accent-color);
    font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i{
	color: var(--white-color);
}

.why-choose-us.about-why-choose{
	padding: 50px 0 100px;
}

.why-choose-us.about-why-choose .why-choose-image{
	margin-top: 50px;
}

/************************************/
/***     19. Page Services css	  ***/
/************************************/

.page-services{
	padding: 100px 0 20px;
}

.our-counter.page-service-counter{
	padding: 50px 0;
}

.our-faqs.page-service-faqs{
	padding: 50px 0 100px;
}

/************************************/
/***    20. Service Single css    ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.service-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 30px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 50px;
}

.service-catagery-list h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: 15px;
	padding: 15px;
	margin-bottom: 25px;
}

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

.service-catagery-list ul li{
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.service-catagery-list ul li a{
	display: block;
    position: relative;
	font-weight: 500;
	text-transform: capitalize;
    background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 15px;
	padding: 15px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
	background-color: var(--primary-color);
	color: var(--white-color);
}

.service-catagery-list ul li a::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
	transform: translate(-15px, -50%);
	background-image: url('assets/images/arrow-green.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px auto;
	width: 30px;
	height: 30px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after{
	filter: brightness(0) invert(1);
}

.sidebar-cta-box{
	position: relative;
	padding: 0 10px 10px 0;
}

.cta-contact-image{
	border-radius: 30px 30px 0 0;
	overflow: hidden;
}

.cta-contact-image img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 30px 30px 0 0;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .cta-contact-image img{
	transform: scale(1.1);
}

.cta-contact-body{
	background-color: var(--primary-color);
	border-radius: 0 0 30px 30px;
	padding: 30px;
}

.cta-contact-content{
	width: 100%;
	max-width: 246px;
}

.cta-contact-content h2{
	font-size: 28px;
	color: var(--white-color);
}

.cta-contact-content h2 span{
	font-weight: 400;
}

.cta-icon-box{
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--primary-color);
	border: 8px solid var(--white-color);
	border-radius: 50%;
	width: 78px;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-icon-box img{
	max-width: 34px;
}

.service-single-slider{
	margin-bottom: 40px;
}

.service-slider-image{
	border-radius: 30px;
	overflow: hidden;
}

.service-slider-image img{
	border-radius: 30px;
	overflow: hidden;
	aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.service-single-btn{
	position: absolute;
	bottom: 0;
	top: 0;
	left: 40px;
	right: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

.service-single-btn .service-single-button-next,
.service-single-btn .service-single-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.service-single-btn .service-single-button-next:hover,
.service-single-btn .service-single-button-prev:hover{
	background-color: var(--primary-color);
}

.service-single-btn .service-single-button-next::before,
.service-single-btn .service-single-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.service-single-btn .service-single-button-prev::before{
	transform: rotate(180deg);
}

.service-entry{
	margin-bottom: 80px;
}

.service-entry h2{
	font-size: 36px;
	margin-bottom: 25px;
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 25px;
}

.service-entry p{
	margin-bottom: 25px;
}

.service-entry p:last-child{
	margin-bottom: 0px;
}

.service-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

.service-entry ul li{
	position: relative;
    width: calc(50% - 10px);
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 35px;
}

.service-entry ul li:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/icon-pricing-list.svg) no-repeat;
    background-position: left center;
    background-size: 24px auto;
    width: 24px;
    height: 24px;
}

.service-entry-img-1 figure,
.service-entry-img-2 figure{
    display: block;
}

.service-entry-img-1 img,
.service-entry-img-2 img{
    aspect-ratio: 1 / 0.71;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***     21. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 100px 0 60px;
}

.post-item{
	height: calc(100% - 50px);
	margin-bottom: 50px;
}

.post-featured-image{
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 30px;
}

.post-featured-image a{
	display: block;
	cursor: none;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 40px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item .article-content h2{
	margin: 0;
}

.post-item .article-meta{
	margin-bottom: 20px;
}

.post-item .article-content{
	margin-bottom: 20px;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***      22. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta{
	margin-top: 10px;
}

.post-single-meta ol li.breadcrumb-item{
	font-size: 18px;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 40px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span{
	font-weight: 400;
}

.post-entry h1{
	font-size: 60px;
}

.post-entry h2{
	font-size: 36px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat 35px 40px;
    background-size: 45px;
    border-radius: 40px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    background-color: var(--primary-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 8px 20px;
    margin-left: 10px;
    margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--accent-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background-color: var(--primary-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-color: var(--accent-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i{
    color: var(--secondry-color);
}

/************************************/
/***     23. Page Project css	  ***/
/************************************/

.page-work{
	padding: 100px 0 70px;
}

/************************************/
/***    24. Project Single css    ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 30px;
}

.project-sidebar-details{
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 50px;
}

.project-details-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.project-details-item h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-details-item p{
	text-transform: capitalize;
	margin: 0;
}

.project-social-list h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

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

.project-social-list ul li{
	display: inline-flex;
	margin-right: 15px;
}

.project-social-list ul li:last-child{
	margin-right: 0;
}

.project-social-list ul li a{
	background-color: var(--primary-color);
	border-radius: 10px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.project-social-list ul li:hover a{
	background-color: var(--accent-color);
}

.project-social-list ul li a i{
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.project-single-image{
	margin-bottom: 40px;
}

.project-single-image figure{
	display: block;
}

.project-single-image img{
	border-radius: 40px;
}

.project-entry{
	margin-bottom: 80px;
}

.project-entry h2{
	font-size: 36px;
	margin-bottom: 25px;
}

.project-entry h3{
	font-size: 20px;
	margin-bottom: 25px;
}

.project-entry p{
	margin-bottom: 25px;
}

.project-entry p:last-child{
	margin-bottom: 0px;
}

.project-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

.project-entry ul li{
	position: relative;
    width: calc(50% - 10px);
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 35px;
}

.project-entry ul li:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/icon-pricing-list.svg) no-repeat;
    background-position: left center;
    background-size: 24px auto;
    width: 24px;
    height: 24px;
}

.project-gallery a{
	cursor: none;
}

.project-gallery figure{
	border-radius: 10px;
}

.project-gallery img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 10px;
}

/************************************/
/***     25. Page Pricing css	  ***/
/************************************/

.page-pricing{
	padding: 100px 0 70px;
}

.page-pricing .pricing-item{
	border: 1px solid var(--divider-color);
}

/************************************/
/***      26. Page Team css 	  ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***       27. Page FAQs css	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
    position: sticky;
    top: 20px;
    margin-right: 30px;
}

.faq-catagery-list{
	background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 30px;
}

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

.faq-catagery-list ul li{
	margin-bottom: 15px;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	display: block;
    position: relative;
    font-weight: 500;
    text-transform: capitalize;
    background-color: var(--white-color);
    color: var(--text-color);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	background-color: var(--primary-color);
	color: var(--white-color);
}

.faq-catagery-list ul li a::after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0px;
	transform: translate(-15px, -50%);
	background-image: url('assets/images/arrow-green.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px auto;
	width: 30px;
	height: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
	filter: brightness(0) invert(1);
}

.page-faqs .our-faq-section{
	margin-bottom: 60px;
}

.page-faqs .our-faq-section:last-child{
	margin-bottom: 0;
}

/************************************/
/***    28. Contact us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0 50px;
}

.contact-us-form{
	background: var(--primary-color) url('assets/images/contact-form-bg.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
	border-radius: 40px;
	height: 100%;
	padding: 70px 40px;
}

.contact-us-form .section-title p,
.contact-us-form .section-title h2{
	color: var(--white-color);
}

.contact-us-form .form-control{
	padding: 15px;
	font-size: 16px;
	background-color: var(--white-color);
	border: none;
	border-bottom: 1px solid var(--divider-color);
	border-radius: 15px;
	color: var(--primary-color);
	box-shadow: none;
	outline: none;
}

.contact-us-form .form-control::placeholder{
	color: var(--primary-color);
	text-transform: capitalize;
}

.contact-form-btn .btn-default.btn-highlighted{
	width: 100%;
	margin-right: 0;
}

.contact-form-btn .btn-default.btn-highlighted:hover{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.contact-form-btn .btn-default.btn-highlighted:before{
	display: none;
}

.contact-info-image{
	margin-bottom: 30px;
}

.contact-info-image figure{
	display: block;
}

.contact-info-image img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 40px;
}

.contact-info-list{
	background-color: var(--secondary-color);
	border-radius: 40px;
	padding: 40px;
}

.contact-info-item{
	background-color: var(--white-color);
	border-radius:  20px;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding: 20px;
}

.contact-info-item:last-child{
	margin-bottom: 0;
}

.contact-info-item .icon-box{
	margin-right: 20px;
}

.contact-info-item .icon-box img{
	max-width: 34px;
}

.contact-info-content{
	width: calc(100% - 54px);
}

.contact-info-content p{
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-info-content h3{
	font-size: 20px;
	font-weight: 600;
}

.google-map{
	padding: 50px 0 100px;
}

.google-map-iframe{
	width: 100%;
	height: 700px;
	border-radius: 40px;
	overflow: hidden;
}

.google-map-iframe iframe{
	width: 100%;
	height: 700px;
	border-radius: 40px;
	filter: grayscale(100%);
	transition: all 0.3s ease-in-out;
}

.google-map-iframe iframe:hover{
	filter: grayscale(0);
}

/************************************/
/***       29. 404 Page css       ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 60px;
}

.error-page .error-page-content{
	text-align: center;
}

.error-page-content-heading{
	margin-bottom: 30px;
}

.error-page-content-heading h2{
	font-size: 50px;
}

.error-page-content-heading h2 span{
	font-weight: 400;
}

.error-page-content-body .btn-default::before{
	background-color: var(--primary-color);
	background-image: url('assets/images/arrow-white.svg');
}

/************************************/
/***     30. responsive css       ***/
/************************************/

@media only screen and (max-width: 1366px){

	.our-counter{
		padding-left: 15px;
	}
}

@media only screen and (max-width: 1024px){

	.navbar{
        padding: 20px 0px;
    }
	
	.main-menu ul li{
		margin: 0;
	}

	.our-counter-box{
		margin-left: 0;
	}
}

@media only screen and (max-width: 991px){

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.section-row{
		margin-bottom: 40px;
	}
	
	.section-btn{
		margin-top: 15px;
		text-align: left;
	}

	.section-title-content p{
		margin: 0;
		margin-top: 15px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}
	
	.section-bg-title{
		top: -10px;
	}
	
	.section-bg-title span{
		font-size: 80px;
	}
	
	.section-title h3{
		padding-left: 30px;
		margin-bottom: 10px;
	}
	
	.section-title h3::before{
		background-size: contain;
		width: 26px;
		height: 26px;
	}
	
	.section-title h1{
		font-size: 46px;
	}
	
	.section-title h2{
		font-size: 40px;
	}
	
	.section-title p{
		margin-top: 15px;
		margin-bottom: 0;
	}

	.hero{
		padding: 150px 0;
	}

	.hero-slider-layout .hero-slide{
		padding: 150px 0;
	}

	.hero-slider-layout .hero-pagination{
		text-align: left;
		left: 15px;
	}

	.hero-content{
		padding-right: 0px;
	}

	.hero-content .section-title p{
		font-size: 16px;
	}

	.customer-review{
		padding: 25px 0;
	}

	.happy-customer-counter{
		margin-bottom: 30px;
		border-right: none;
	}

	.happy-customer-counter h2{
        width: calc(50% - 20px);
        font-size: 50px;
    }

	.happy-customer-counter p{
		width: calc(50% - 20px);
	}

	.customer-consultation-box{
		right: 0;
		padding: 30px;
	}

	.customer-consultation-body,
	.customer-consultation-image,
	.customer-consultation-title{
		margin-bottom: 20px;
	}

	.customer-consultation-title h3{
		font-size: 20px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-image{
		max-width: 600px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-us-content{
		margin-left: 0px;
	}

	.about-us-body{
		margin-bottom: 30px;
	}

	.our-services{
		padding: 50px 0 100px;
		margin-top: 100px;
	}

	.our-services::before{
		top: -98px;
		height: 100px;
	}

	.our-services::after{
		height: 100px;
	}

	.readmore-btn{
		width: 40px;
		height: 40px;
	}

	.readmore-btn img{
		max-width: 25px;
	}

	.our-expertise{
		padding: 50px 0;
	}

	.expertise-content{
		margin-bottom: 30px;
	}

	.expertise-content .section-title{
		padding-bottom: 30px;
	}

	.expertise-item-content h3{
		font-size: 22px;
		margin-bottom: 5px;
	}

	.intro-video{
		padding: 50px 0;
	}

	.intro-video-box{
		padding-bottom: 50px;
		margin-bottom: 50px;
	}

	.intro-video .section-title{
		margin-bottom: 30px;
	}

	.video-play-box{
		display: flex;
		justify-content: center;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-image{
		text-align: center;
	}

	.why-choose-image img{
		max-width: 55%;
	}

	.why-choose-us::before{
		top: auto;
		transform: translateY(-50px);
		background-position: left -100px top -60px;
		width: 100%;
		height: 450px;
	}

	.why-choose-content{
		margin-left: 0px;
		margin-bottom: 30px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.work-process-no{
		margin-bottom: 20px;
	}

	.work-process-no::before{
		width: 140px;
	}

	.work-process-content h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.work-process-content p{
		font-size: 14px;
	}

	.our-work{
		padding: 50px 0 20px;
	}

	.our-work-nav{
		margin-bottom: 40px;
	}

	.our-work-nav ul li a{
		padding: 0 20px;
	}

	.work-body{
		right: 20px;
		left: 20px;
	}

	.work-content h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.work-content{
		margin-bottom: 15px;
	}

	.our-testimonials{
		background: linear-gradient(0deg, var(--primary-color) 55%, transparent 55%), url(../images/testimonials-bg.jpg);
		padding: 0px 0 50px;
	}

	.our-testimonials .row{
		justify-content: center;
	}

	.testimonial-box{
		padding: 50px 30px 30px;
	}

	.testimonial-btn{
		margin-top: 30px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-faqs-cta{
		padding: 20px 30px;
		margin: 0 auto;
	}

	.faqs-cta-box{
		margin-bottom: 30px;
	}

	.our-faq-section .accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-body{
		padding: 15px 45px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

	.our-pricing{
		padding: 50px 0 100px;
		margin-top: 100px;
	}

	.our-pricing::before{
		top: -98px;
		height: 100px;
	}

	.our-pricing::after{
		height: 100px;
	}

	.pricing-item{
		padding: 30px;
	}

	.pricing-header{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pricing-header h3{
		margin-bottom: 15px;
	}

	.pricing-header h2{
		font-size: 40px;
	}

	.pricing-body{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.our-blog{
		padding: 50px 0;
	}

	.highlighted-article-post{
		margin-bottom: 40px;
	}

	.highlighted-article-featured-img{
		margin-bottom: 30px;
	}

	.highlighted-article-featured-img img{
		aspect-ratio: 1 / 0.64;
	}

	.highlighted-article-tag a{
		padding: 8px 15px;
	}

	.article-meta{
		margin-bottom: 15px;
	}

	.article-content{
		margin-bottom: 30px;
	}

	.article-content h2{
		margin-bottom: 15px;
	}

	.article-post{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	
	.article-post .article-tag a{
		padding: 8px 15px;
	}

	.article-post .article-tag{
		margin-bottom: 20px;
	}

	.main-footer{
		padding: 50px 0 0;
		margin-top: 100px;
	}

	.main-footer::after{
		top: -98px;
		height: 100px;
	}

	.about-footer{
		margin-bottom: 40px;
	}

	.about-footer-content,
	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-links{
		margin-left: 0px;
	}

	.footer-info-box h3,
	.footer-links h3,
	.working-hour h3{
		margin-bottom: 20px;
	}

	.footer-copyright{
		border-top: 1px solid var(--dark-divider-color);
		padding: 20px 0;
		margin-top: 40px;
	}

	.page-header{
		padding: 180px 0 80px;
	}

	.page-header-box h1{
		font-size: 46px;
	}

	.our-vision-mission{
		padding: 50px 0;
	}

	.vision-mission-box{
		margin-bottom: 50px;
	}

	.our-mission-image,
	.our-vision-image{
		margin-bottom: 30px;
	}

	.our-mission-image img,
	.our-vision-image img{
		aspect-ratio: 1 / 0.62;
	}

	.our-counter{
		padding: 50px 0 50px 15px;
	}

	.counter-content-box{
		gap: 20px;
		padding: 40px 20px 40px 40px;
	}

	.counter-item{
		width: calc(33.33% - 13.33px);
		text-align: center;
	}

	.counter-item::before{
		display: none;
	}

	.counter-item .icon-box{
		width: 50px;
		height: 50px;
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.counter-item .icon-box img{
		max-width: 30px;
	}

	.counter-item-content h2{
		font-size: 34px;
		color: var(--white-color);
		margin-bottom: 10px;
	}

	.counter-item-content p{
		font-size: 12px;
	}

	.our-team{
		background: linear-gradient(180deg, var(--primary-color) 50%, var(--white-color) 50%);
		padding: 50px 0 0px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.3;
	}

	.why-choose-us.about-why-choose{
		padding: 25px 0 50px;
	}

	.why-choose-us.about-why-choose .why-choose-image{
		margin-top: 0px;
	}

	.page-services{
		padding: 50px 0 0px;
	}

	.our-counter.page-service-counter{
		padding: 25px 0;
	}

	.our-faqs.page-service-faqs{
		padding: 25px 0 50px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		margin-bottom: 20px;
	}

	.service-catagery-list ul li{
		margin-bottom: 15px;
	}

	.service-catagery-list ul li a{
		padding: 10px 15px;
	}

	.service-catagery-list ul li a::after{
		background-size: 26px auto;
		width: 26px;
		height: 26px;
	}

	.cta-contact-image img{
		aspect-ratio: 1 / 0.60;
	}

	.cta-contact-body{
		padding: 20px;
	}

	.cta-contact-content h2{
		font-size: 24px;
	}

	.service-single-slider{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 50px;
	}

	.service-entry p{
		margin-bottom: 20px;
	}

	.service-entry h2{
		font-size: 32px;
		margin-bottom: 20px;
	}

	.page-blog{
		padding: 50px 0 20px;
	}

	.post-item{
		height: calc(100% - 40px);
		margin-bottom: 40px;
	}

	.post-featured-image{
		margin-bottom: 20px;
	}

	.post-item .article-meta{
		margin-bottom: 15px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background: var(--secondary-color) url('assets/images/icon-blockquote.svg') no-repeat 30px 35px;
        background-size: 45px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 32px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tag-links{
		padding: 0 0px;
	}

	.post-tags{
		margin-bottom: 10px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 8px 15px;
	}

	.page-work{
		padding: 50px 0 20px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-sidebar{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.project-sidebar-details{
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-details-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.project-single-image{
		margin-bottom: 30px;
	}

	.project-entry{
		margin-bottom: 20px;
	}

	.project-entry p{
		margin-bottom: 20px;
	}

	.project-entry h2{
		font-size: 32px;
		margin-bottom: 20px;
	}

	.project-gallery{
		margin-bottom: 30px;
	}

	.project-gallery img{
		aspect-ratio: 1 / 0.8;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-pricing{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		padding: 20px;
	}

	.page-faqs .our-faq-section{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0 25px;
	}

	.contact-us-form{
		height: auto;
		padding: 50px 30px;
		margin-bottom: 30px;
	}

	.contact-info-list{
		padding: 30px;
	}

	.contact-info-item{
		margin-bottom: 20px;
		padding: 15px;
	}

	.google-map{
		padding: 25px 0 50px;
	}

	.google-map-iframe iframe,
	.google-map-iframe{
		height: 500px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 30px;
	}

	.error-page-image img{
		max-width: 70%;
	}

	.error-page-content-heading{
		margin-bottom: 20px;
	}
	
	.error-page-content-heading h2{
		font-size: 40px;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
        margin-bottom: 30px;
    }

	.section-bg-title span{
        font-size: 60px;
    }

	.section-title h1{
		font-size: 32px;
	}

	.section-title h2{
		font-size: 30px;
	}

	.hero{
        padding: 150px 0 100px;
    }

	.hero-content-body .btn-default{
		margin-right: 30px;
	}

	.hero-content-body .btn-default.btn-highlighted{
		margin-left: 0px;
		margin-top: 20px;
	}

	.customer-review{
        padding: 25px 0 0;
    }

	.happy-customer-counter h2{
        width: calc(50% - 20px);
        font-size: 40px;
    }

	.happy-customer-counter p{
        width: calc(50% - 20px);
    }

	.customer-review-content{
		margin-bottom: 30px;
	}

	.customer-consultation-box{
        position: initial;
		width: 100%;
        padding: 20px;
    }

	.customer-consultation-title h3{
        font-size: 18px;
    }

	.about-image{
		background-size: 50% auto;
		padding-top: 70px;
	}

	.about-img-1{
		max-width: 250px;
	}

	.about-img-2{
		max-width: 200px;
	}

	.company-experience{
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		align-items: center;
	}

	.company-experience-counter{
		margin-bottom: 5px;
	}

	.company-experience-counter h2{
		font-size: 30px;
	}

	.company-experience-content{
		width: 100%;
	}

	.company-experience-content p{
		font-size: 14px;
	}

	.about-us-body ul li{
		width: 100%;
	}

	.about-company-founder{
		width: 100%;
		border-right: none;
		padding-right: 0px;
	}

	.company-founder-content h3{
		font-size: 18px;
	}

	.contact-now-box.about-contact-box{
		width: 100%;
	}

	.service-title h3{
		font-size: 18px;
	}

	.expertise-body{
		gap: 20px 10px;
	}

	.expertise-item{
		width: calc(50% - 5px);
	}

	.expertise-item .icon-box{
		width: 50px;
		height: 50px;
	}

	.expertise-item .icon-box img{
		max-width: 28px;
	}

	.expertise-item-content{
		width: calc(100% - 60px);
	}

	.expertise-item-content h3{
        font-size: 20px;
        margin-bottom: 5px;
    }

	.expertise-images{
		gap: 20px;
	}

	.expertise-image-box-2,
	.expertise-image-box-1{
		background-size: contain;
		width: calc(50% - 10px);
		gap: 20px;
	}

	.expertise-image-box-1{
		padding-top: 40px;
	}

	.expertise-image-box-2{
		padding-bottom: 40px;
	}

	.expertise-img-4 img,
	.expertise-img-3 img,
	.expertise-img-2 img,
	.expertise-img-1 img{
		border-radius: 20px;
	}

	.expertise-img-2 img{
		aspect-ratio: 1 / 0.78;
	}

	.intro-video-box{
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

	.video-play-button a{
        width: 64px;
        height: 64px;
    }
	
	.video-play-button a i{
		font-size: 26px;
	}

	.specialize-item .icon-box{
		margin-right: 15px;
	}

	.specialize-item .icon-box img{
		max-width: 64px;
	}

	.specialize-content{
		width: calc(100% - 79px);
	}

	.specialize-content p{
		font-size: 14px;
	}

	.why-choose-us::before{
        background-position: left -50px top -20px;
        width: 100%;
        height: 280px;
    }

	.why-choose-image img{
        max-width: 65%;
    }

	.why-choose-item{
		width: 100%;
	}

	.why-choose-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 15px;
	}

	.why-choose-item .icon-box img{
		max-width: 28px;
	}

	.why-choose-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.how-work-circle-img{
		text-align: center;
		margin-top: 15px;
	}

	.how-work-circle-img{
		display: none;
	}

	.how-work-item{
		width: calc(50% - 15px);
	}

	.work-process-no::before{
		display: none;
	}

	.work-process-content h3{
        font-size: 16px;
    }

	.author-image figure, .author-image img{
		width: 50px;
		height: 50px;
	}

	.author-content{
		width: calc(100% - 65px);
	}

	.author-content h3{
		font-size: 18px;
	}

	.our-faqs-cta{
        padding: 20px;
    }

	.faqs-cta-box .icon-box{
		width: 56px;
		height: 56px;
	}

	.faqs-cta-box .icon-box img{
		max-width: 30px;
	}

	.faqs-cta-content{
		width: calc(100% - 70px);
	}

	.faqs-cta-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faqs-cta-btn .btn-default{
		padding: 15px 20px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 18px;
	}

	.pricing-header h2{
        font-size: 30px;
    }

	.pricing-body ul li{
		padding-left: 30px;
	}

	.pricing-body ul li::before{
		top: 3px;
		background-size: 20px auto;
		width: 20px;
		height: 20px;
	}

	.highlighted-article-tag{
		top: 20px;
		left: 20px;
	}

	.highlighted-article-tag a{
        padding: 6px 10px;
		font-size: 14px;
    }

	.article-post .article-tag a{
		padding: 6px 10px;
		font-size: 14px;
    }

	.article-meta ul li{
		font-size: 14px;
		margin-right: 5px;
	}

	.article-meta ul li i{
		font-size: 14px;
		margin-right: 5px;
	}

	.article-content h2{
        font-size: 18px;
    }

	.article-content{
        margin-bottom: 20px;
    }

	.working-hour,
	.footer-links{
        margin-bottom: 40px;
    }

	.footer-info-box h3,
	.footer-links h3,
	.working-hour h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-info-box{
		margin-bottom: 20px;
	}

	.footer-privacy-policy ul,
	.footer-copyright-text{
		text-align: center;
	}

	.footer-privacy-policy ul li{
		margin-right: 20px;
	}

	.page-header-box h1{
        font-size: 32px;
    }

	.our-counter{
        padding-left: 0;
    }

	.our-counter-box{
        display: block;
		height: auto;
		border-radius: 0;
    }

	.counter-content-box{
		width: 100%;
		padding: 30px 15px;
    }

	.counter-item-content h2{
        font-size: 26px;
        margin-bottom: 10px;
    }

	.counter-item-content p{
        font-size: 10px;
    }

	.counter-image{
		width: 100%;
	}

	.counter-image figure, .counter-image img{
		border-radius: 0;
	}

	.our-team{
        background: linear-gradient(180deg, var(--primary-color) 30%, var(--white-color) 30%);
    }

	.team-image img{
        aspect-ratio: 1 / 1.2;
    }

	.team-body-title h3{
		font-size: 18px;
	}

	.service-catagery-list h3{
        font-size: 18px;
    }

	.service-single-btn{
		left: 20px;
		right: 20px;
	}

	.service-slider-image img{
		aspect-ratio: 1 / 0.8;
	}

	.service-single-btn .service-single-button-next,
	.service-single-btn .service-single-button-prev{
		width: 30px;
		height: 30px;
	}

	.service-single-btn .service-single-button-next::before,
	.service-single-btn .service-single-button-prev::before{
		background-size: 20px auto;
	}

	.service-entry{
        margin-bottom: 40px;
    }

	.service-entry h2{
        font-size: 28px;
    }

	.service-entry ul li{
		width: 100%;
		font-size: 16px;
		padding-left: 30px;
	}

	.service-entry ul li:before{
		top: 2px;
		background-size: 20px auto;
		width: 20px;
		height: 20px;
	}

	.service-entry-img-1{
		margin-bottom: 20px;
	}

	.service-entry-img-1 img,
	.service-entry-img-2 img{
		border-radius: 15px;
	}

	.post-single-meta ol li i{
        font-size: 18px;
    }

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat 20px 20px;
        background-size: 35px;
        padding: 55px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 28px;
	}

	.tag-links{
		font-size: 20px;
	}

	.project-details-item h3{
		font-size: 18px;
	}

	.project-social-list h3{
		font-size: 18px;
	}

	.project-entry{
        margin-bottom: 10px;
    }

	.project-entry h2{
        font-size: 28px;
    }

	.project-entry ul li{
		width: 100%;
		font-size: 16px;
		padding-left: 30px;
	}

	.project-entry ul li:before{
		top: 2px;
		background-size: 20px auto;
		width: 20px;
		height: 20px;
	}

	.contact-us-form{
        padding: 40px 20px;
    }

	.contact-us-form .form-control{
		padding: 10px 15px;
	}

	.contact-info-list{
        padding: 20px;
    }

	.contact-info-content h3{
		font-size: 18px;
	}

	.google-map-iframe iframe,
	.google-map-iframe{
		height: 400px;
	}

	.error-page-image img{
		max-width: 100%;
	}
	
	.error-page-content-heading h2{
		font-size: 30px;
	}
}


.hero.parallaxie {
    background: url(assets/images/bannerbg.jpg);
	background-position: inherit;
}

/* Dynamic Home CSS */

.banner-sec{position:relative;}
.banner-sec:before{content:'';position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(270.08deg,rgba(11,61,44,0) 30.53%,rgba(11,61,44,0.8) 76.6%);width:100%;height:100%;}
.banner-content .section-title h1{font-weight:400;}
.banner-content .section-title p{font-weight:500;max-width:750px;}
.banner-btns .wp-block-getwid-button-group__wrapper{margin:0;gap:60px;}
.banner-btns .wp-block-button__link{background:none;}
.btn-default.btn-highlighted a{color:#0b3d2c!important;}
.banner-content{max-width:980px;}

.navbar-brand img {width: 100%;max-width: 300px;}

header.main-header:before {content: "";position: absolute;width: 100%;height: 220px;background: linear-gradient(180deg, rgb(0 0 0 / 135%) 45%, rgb(3 16 0 / 6%) 60%);}
.contact-now-box.contact-now-box .icon-box a {
    display: block;
    padding: 10px 30px;
    color: #fff;
    font-weight: bold;
}

.footer-copyright-text a {
    color: #fff;
}

.about-us-footer .icon-box {
    width: 60px;
    height: 60px;
    display: flex !important;
    border-radius: 16px !important;
	margin-right: 20px !important;
}

.about-footer {
    margin-top: -90px;
}

.experience_sec{position:absolute;top:0;right:0}
.experience_sec .experience_counter{display:inline-block}
.experience_sec .experience_counter .wp-block-getwid-counter__wrapper{display:inline-flex;align-items:center}
.experience_sec .company_content{display:inline-flex;width:55%}
.experience_sec .company_content p{margin:0}
.experience_sec .experience_counter .wp-block-getwid-counter__wrapper span.wp-block-getwid-counter__number{font-size:50px;font-weight:700}
.experience_sec .experience_counter .wp-block-getwid-counter__wrapper p.wp-block-getwid-counter__suffix{font-size:50px;padding:0;line-height:normal;font-weight:700}
.experience_sec .company_content p{font-weight:500;line-height:1.2em;text-transform:capitalize;color:#0b3d2c;margin:0}
.experience_sec .wp-block-group__inner-container:nth-child(1){display:inline-flex;align-items:center;gap:10px}

.about_founder .wp-block-getwid-image-box__image-wrapper img{max-width:60px;border-radius:15px;height: 60px;object-fit: cover;object-position: top;}
.company-founder-content p{text-transform:capitalize;margin:0;font-weight:500;font-size:16px}
.about_founder_contact .wp-block-getwid-image-box__image-wrapper{width:60px;height:60px;display:flex;align-items:center;justify-content:center;background:#2a7d2e;border-radius:16px}
.company_content h3{font-size:20px;font-weight:600;text-transform:capitalize;margin-bottom:5px}
.company_content p{text-transform:capitalize;margin:0;font-weight:500;font-size:16px}
.inner_about-us .wp-block-columns{align-items:center!important}
.our-vision-mission .section-title p {font-size: 16px; font-weight: 400; line-height: 1.8em;}


.maincounter-box{margin-left:calc(((100vw - 1300px) / 2));/* display:flex; */align-items:center;background-color:#0b3d2c;border-radius: 180px 0 0 180px;height: 250px;justify-content: right;}
.maincounter-box .wp-block-columns{gap:0;     align-items: center !important;}
.counter_boxes{height:100%;padding: 10px 5px;}


.counter_image{height:100%;text-align:right}
.counter_image figure{margin:0;height:100%;object-fit:cover;border-radius:180px 0 0 180px}
.counter_image figure img{height: 250px;object-fit:cover;border-radius:180px 0 0 180px;width:100%}
.counter_box figure{position:relative;background-color:#f0fff0;border-radius:10px;width:60px;height:60px;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-bottom:25px;transition:all .5s ease-in-out}
.counter_box .wp-block-getwid-counter__wrapper span{font-size:44px;color:#fff;font-weight:700;display:inline-flex;margin:0}
.counter_box .wp-block-getwid-counter__wrapper p.wp-block-getwid-counter__suffix{font-size:44px;color:#fff;font-weight:700;display:inline-flex;padding:0;line-height:inherit;margin:0}
.counter_box .wp-block-getwid-counter__wrapper{display:inline-flex;line-height:150%;margin:0 0 20px;gap:5px}
.counter_box p{color:#fff;text-transform:capitalize;margin:0;line-height:1.8em}
.counter_boxes .wp-block-columns .counter_box{border-right:solid 1px #fff;margin-left:40px}
.counter_boxes .wp-block-columns .wp-block-column:last-child .counter_box{border:none}

.section-bg-title h4.wp-block-heading{display:inline-flex;align-items:center;text-transform:capitalize;font-size:100px;line-height:1em;font-weight:800;color:#fff;background:-webkit-linear-gradient(270deg,#0b3d2c1a 68.79%,#0b3d2c05 91%);-webkit-background-clip:text;-webkit-text-stroke:2px transparent}

.section-bg-title.dark-bg-2 h4.wp-block-heading{color: #0b3d2c; background: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 0.08) 68.79%, rgba(11, 61, 44, 0.016) 91%); -webkit-background-clip: text;}
.section-bg-title{position:absolute;top:-40px}

.our-team .section-title h2{color:#fff}
.our-team .section-title-content p{color:#fff;font-size:16px}
.our-team .wp-block-columns,.our-work .wp-block-columns{align-items:center!important}


.our-testimonialssec{position:relative}
.our-testimonialssec:before{content:"";width:30%;height:100%;background: #0b3d2c;top:0;right:0;z-index: 1;position:absolute}

.testimonil_mainsec .wp-block-columns{justify-content:flex-end;align-items:flex-start!important}
.our-testimonialssec .wp-block-cover{padding:0;align-items:flex-start!important}

.testimonial-box .section-bg-title h4.wp-block-heading{color:#f0fff0;background:-webkit-linear-gradient(270deg,#0b3d2c14 68.79%,#0b3d2c04 91%);-webkit-background-clip:text}
.section-title strong{font-weight:400}

.cta-box_faq .wp-block-getwid-image-box__image-wrapper{position:relative;background-color:#0b3d2c;border-radius:50%;width:66px;height:66px;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-right:14px;transition:all .3s ease-in-out}
.cta-box_faq .wp-block-getwid-image-box__image-container{margin:0}
.cta-box_faq .faqcta-content h3{font-size:20px;font-weight:600;text-transform:capitalize;margin-bottom:10px}
.cta-box_faq .faqcta-content p{font-size:16px;font-weight:400}
.faqs-cta-btn a.wp-block-button__link.wp-element-button{width:100%;text-align:center;background-color:#0b3d2c;padding:17px 24px;margin-right:0;display:inline-block;font-size:16px;font-weight:700;line-height:1.2em;text-transform:capitalize}
.faqs-cta-btn .wp-block-button{display:block!important;width:100%}
.faqs-cta-btn a.wp-block-button__link.wp-element-button:hover{color:#fff;background-color:#2a7d2e}
.cta-box_faq .wp-block-getwid-image-box__image-wrapper:before{content:'';display:block;position:absolute;width:100%;height:100%;background-color:#2a7d2e;top:0;left:0;transform:scale(0);transition:all .4s ease-in-out;border-radius:50%}
.our-faqs-cta:hover .cta-box_faq .wp-block-getwid-image-box__image-wrapper:before{transform:scale(1)}
.cta-box_faq .wp-block-getwid-image-box__image-wrapper img{position:relative}

.our-faq-section .wp-block-getwid-accordion__header-wrapper{border:1px solid #e7ecea!important;border-radius:20px;margin-top:30px;padding:0;transition:all .3s ease-in-out;overflow:hidden}
.our-faq-section .wp-block-getwid-accordion__header-wrapper h3.wp-block-getwid-accordion__header{color:#0b3d2c;font-size:20px;font-weight:600;line-height:1.2em;padding:20px 50px 20px 20px;transition:all .3s ease-in-out;align-items:center}
.our-faq-section .wp-block-getwid-accordion__header-wrapper.ui-state-active{margin:0;background:#0b3d2c;border-radius:20px 20px 0 0}
.our-faq-section .wp-block-getwid-accordion__header-wrapper.ui-state-active h3.wp-block-getwid-accordion__header a{color:#fff}
.our-faq-section .wp-block-getwid-accordion__content-wrapper{background:#0b3d2c;border-radius:0 0 20px 20px}
.our-faq-section .wp-block-getwid-accordion__content-wrapper .wp-block-getwid-accordion__content{margin-bottom:20px}
.our-faq-section .wp-block-getwid-accordion__content-wrapper .wp-block-getwid-accordion__content p{color:#fff;margin:0;font-size:16px}

.our-services .wp-block-columns {align-items: center !important;}
.section-title-content p {font-size: 16px; font-weight: 400;}

.custom_gallery{gap:0!important}
.custom_gallery figure.wp-block-image a{overflow:hidden;border-radius:20px}
.custom_gallery figure.wp-block-image a img{border-radius:20px}
.custom_gallery figure.wp-block-image{padding:10px!important}

.contact-area.sec h2{margin-top:20px;line-height:110%}
.contact-us-form textarea{height:160px}
.contact-us-form .btn-default.btn-highlighted {width: 100%;}


.contact-info_item{background-color:#fff;border-radius:20px;display:flex;align-items:center;margin-bottom:25px;padding:20px}
.contact-info_item .contact-info_content{text-align:left}
.contact-info_item .contact-info_content p{margin:0;font-size:16px;font-weight:400;text-transform:capitalize}
.contact-info_item .contact-info_content h3{font-size:20px;font-weight:600}

.contact_map{padding:90px 0 40px}
.contact_map .map_location iframe{width:100%;filter:grayscale(1);border-radius:30px}
body.home header.main-header:before {background: linear-gradient(180deg, rgb(0 0 0 / 96%) 50%, rgb(3 16 0 / 5%) 100%);height: 200px;}
header.main-header.fixed:before {height: auto !important;}


.cst_postsec{padding:50px 0}
.cst_postsec figure{margin:0}
.cst_postsec figure img{width:100%;border-radius:20px;height: auto;object-fit: cover;object-position: bottom;}
.cst_postsec h2{font-size: 40px;margin:15px 0}
.cst_postsec p{margin: 0 0 10px;}
.cst_postsec h3{margin:15px 0;font-size: 30px;}
.cst_postsec nav.navigation.post-navigation{display:none}

.cst_postsec ul li{position:relative;padding-left:15px}
.cst_postsec ul li:before{content:"";position:absolute;display:block;width:8px;height:8px;background:#0b3d2c;border-radius:50%;top:9px;left:0}

.innerpost_work figure img {height: auto; border-radius: 60px;}
.cst_postsec .wp-block-columns {align-items: center !important;}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
.cb-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 150;
	contain: layout style size;
	pointer-events: none;
	will-change: transform;
	-webkit-transition: opacity 0.3s, color 0.4s;
	-o-transition: opacity 0.3s, color 0.4s;
	-moz-transition: opacity 0.3s, color 0.4s;
	transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
	content: "";
	position: absolute;
	top: -24px;
	left: -24px;
	display: block;
	width: 48px;
	height: 48px;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	background: #2A7D2E;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
	transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
	-o-transition: opacity 0.1s, -o-transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out, opacity 0.1s, -moz-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, opacity 0.1s;
	transition: transform 0.3s ease-in-out, opacity 0.1s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}

.cb-cursor-text {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 36px;
	height: 36px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: scale(0) rotate(10deg);
	-moz-transform: scale(0) rotate(10deg);
	-ms-transform: scale(0) rotate(10deg);
	-o-transform: scale(0) rotate(10deg);
	transform: scale(0) rotate(10deg);
	opacity: 0;
	color: white;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	letter-spacing: -0.01em;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
	transition: opacity 0.4s, -webkit-transform 0.3s;
	-o-transition: opacity 0.4s, -o-transform 0.3s;
	-moz-transition: opacity 0.4s, transform 0.3s, -moz-transform 0.3s;
	transition: opacity 0.4s, transform 0.3s;
	transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}

@supports (mix-blend-mode: exclusion) {
	.cb-cursor.-exclusion, .cb-cursor.-opaque {
		mix-blend-mode: exclusion;
	}
}

@supports (mix-blend-mode: exclusion) {
	.cb-cursor.-exclusion:before, .cb-cursor.-opaque:before {
		background: white;
	}
}

.cb-cursor.-normal, .cb-cursor.-text {
	mix-blend-mode: normal;
}

.cb-cursor.-normal:before, .cb-cursor.-text:before {
	background: currentColor;
}

.cb-cursor.-inverse {
	color: white;
}

.cb-cursor.-visible:before {
	-webkit-transform: scale(0.2);
	-moz-transform: scale(0.2);
	-ms-transform: scale(0.2);
	-o-transform: scale(0.2);
	transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
	-webkit-transform: scale(0.23);
	-moz-transform: scale(0.23);
	-ms-transform: scale(0.23);
	-o-transform: scale(0.23);
	transform: scale(0.23);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.cb-cursor.-text:before {
	background: #000;
	opacity: 0.80;
	backdrop-filter: blur(10);
	-webkit-transform: scale(1.7);
	-moz-transform: scale(1.7);
	-ms-transform: scale(1.7);
	-o-transform: scale(1.7);
	transform: scale(1.7);
}

.cb-cursor.-text .cb-cursor-text {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.cb-cursor.-text.-active:before {
	-webkit-transform: scale(1.6);
	-moz-transform: scale(1.6);
	-ms-transform: scale(1.6);
	-o-transform: scale(1.6);
	transform: scale(1.6);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
	-webkit-transform: scale(1.32);
	-moz-transform: scale(1.32);
	-ms-transform: scale(1.32);
	-o-transform: scale(1.32);
	transform: scale(1.32);
}

.cb-cursor.-opaque.-active:before {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

.cb-cursor.-lg:before {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2);
}

.cb-cursor.-hidden:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.-color-red {
	color: red;
}

.-color-green {
	color: #51c67d;
}

.cb-demo {
	background: #fff;
}

.cb-demo-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100vh;
}

.cb-demo-container {
	padding: 0 20px;
}

@media (min-width: 1600px) {
	.cb-demo-container {
		padding: 0 120px;
	}
}

.cb-demo-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	margin: 30px 0;
}

@media (min-width: 1600px) {
	.cb-demo-row {
		margin: 60px 0;
	}
}

.cb-demo-item {
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 50px 30px;
	margin: 0 20px;
	color: #000;
}

@media (min-width: 1600px) {
	.cb-demo-item {
		padding: 90px 30px;
		margin: 0 30px;
	}
}

.cb-demo-item-title {
	position: relative;
	margin: 0 0 25px 0;
	font-size: 30px;
	font-weight: bold;
}

.cb-demo-item-text {
	position: relative;
	max-width: 70%;
	margin: 0 auto;
	color: rgba(0, 0, 0, 0.5);
	font-size: 16px;
	font-weight: 300;
	line-height: 150%;
}

.cb-demo-item:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #f8f8f8;
	-webkit-transition: -webkit-box-shadow 0.2s;
	transition: -webkit-box-shadow 0.2s;
	-o-transition: box-shadow 0.2s;
	-moz-transition: box-shadow 0.2s, -moz-box-shadow 0.2s;
	transition: box-shadow 0.2s;
	transition: box-shadow 0.2s, -webkit-box-shadow 0.2s, -moz-box-shadow 0.2s;
}


.main-menu .nav-menu-wrapper ul a {
    padding: 14px !important;
    color: #fff;
    font-weight: 600;
}

.wp-block-getwid-accordion .wp-block-getwid-accordion__header-wrapper a { color: #0b3d2c; }
.customer-sec .wp-block-button__link{background:transparent;padding:0;font-size:16px;}
.customer-sec .wp-block-button__link:hover{color:#2a7d2e;}
.customer-sec .learn-more-btn::after{top:2px;}
.banner-content .section-title strong {font-weight: 700;}
.banner-content .section-title h1 {max-width: 680px;}
.experience_sec .experience_counter .wp-block-getwid-counter__wrapper span.wp-block-getwid-counter__number, .experience_sec .experience_counter .wp-block-getwid-counter__wrapper p.wp-block-getwid-counter__suffix { color: #0b3d2c; }
.home-about { padding: 100px 0; }
.customer-review-content p { margin: 0; color: #555555; font-size: 16px; font-weight: 400; }
.our-happy-customer .wp-block-group__inner-container{display:flex;flex-wrap:wrap;gap:0;align-items:center;justify-content:space-between;}
.happy-counter-sec .wp-block-getwid-counter__suffix{padding:0;position:absolute;font-size:70px;font-weight:700;color:#0b3d2c;line-height:1.8em;top:-20px;right:auto;left:110px;}
.our-happy-customer{position:relative;border-right:1px solid #e7ecea;padding-right:15px;}
.customer-content p{margin:0;font-size:18px;font-weight:500;text-transform:capitalize;color:#0b3d2c;margin-bottom:0;max-width:150px;}
.our-happy-customer .wp-block-getwid-counter__number{font-size:70px;font-weight:700;line-height:1.2em;color:#0b3d2c;}
.contact-home {padding: 100px 0 50px;}
.banner-btns .wp-block-getwid-button-group__wrapper {margin: 0 !important;}
.banner-btns .wp-block-button__link { padding: 12px 30px 9px 20px; font-size: 16px; }
.customer-consultation-body p, .inner_faqs .section-title p, .about-us-content .section-title p, .contact-us-form .section-title p { font-size: 16px; font-weight: 400; }
body.home header.main-header:before {background: linear-gradient(180deg, rgb(0 0 0 / 96%) 50%, rgb(3 16 0 / 5%) 100%);height: 130px;}
header.main-header {position: absolute;left: 0;width: 100%;}
.contact-area.sec h2 {font-size: 45px;}
.cst_postsec ul {margin: 10px 0px;}
.banner-content {padding: 100px 0 0;}
.our-faq-section .wp-block-getwid-accordion__content h5 { color: #fff; font-weight: 500; margin: 0 0 5px; }
.our-faq-section .wp-block-getwid-accordion__content-wrapper .wp-block-getwid-accordion__content ul li{position:relative;padding-left:12px;color:#fff;}
.our-faq-section .wp-block-getwid-accordion__content-wrapper .wp-block-getwid-accordion__content ul li:before{content:"";position:absolute;background:#e5b17a;width:6px;height:6px;border-radius:50%;left:0;top:10px;}
.our-faq-section .wp-block-getwid-accordion__content-wrapper .wp-block-getwid-accordion__content ul li a {color: #fff;}
.our-faq-section .wp-block-getwid-accordion__content-wrapper .wp-block-getwid-accordion__content ul li a:hover {color: #e5b17a;}
.policy-content a {color: #e5b17a;}
.policy-content a:hover {color: #2a7d2e;}
.policy-content .section-title p{color:#555;font-size:16px;margin-top:0;font-weight:400;}
.policy-content .section-title h2{margin:15px 0;}
.privacy-sec .section-title h3 { font-size: 45px; margin: 20px 0px 0px; padding: 10px 40px 20px; }

.counter_boxes p{color:#fff;font-size:22px;margin:0;text-align:center;font-weight:600;font-style:italic;}
.liscesned_box{display:block;border:dashed 2px #657265;padding:5px 10px;}
.liscesned_box p{color:#fff;margin:0;text-transform:capitalize;font-size:18px;text-align:center;}
.company_content p:first-child{text-transform:unset;}
.footer-logo img{max-width:410px;}
.footer-logo{margin-top:70px;}
.liscesned_box.ot-bx {margin: 30px 0;width: 45%;}
.contact-info_item .contact-info_content h3 {
    margin-bottom: 5px;
}

.contact-info_item .contact-info_content h3 a {
    color: #000;
}

@media (min-width: 0px) and (max-width: 767px){
	.navbar-brand img{max-width: 190px;}
	.no-scroll { overflow: hidden; }
	header.main-header { display: none; }
	.mobilemenu { position: fixed; }
	.mobileheader { padding: 5px 0;background: #000; } 
	.mobileheader .branding-logo img { max-width: 180px; }
	.mobileheader .menu-btn a { color: #fff; }
	
	
	.mobilemenu.open { width: 100%; padding-top: 0; }
	.mobilemenu.open .main-menu { width: 70%; position: absolute; height: 100vh; top: 0; padding: 70px 0 0 0; margin: 0; box-shadow: 6px 0px 8px 4px #000; background: #000; }
	.no-scroll { overflow: hidden; }
	.mobilemenu{width:100%;padding:0;height: 100vh;background: #00000070;transition: 0.5s; transition-delay: inherit;left: -100%;}
	div.m-close-btn{width:100%;height:100%;position: absolute; left: 0;z-index: -1;}
	.main-menu{width:70%;background:#000;height:100vh;padding:30px 0 0;box-shadow: 0px 0px 4px 0px #ccc;}
	.mobileheader{background:#000;}
	.mobilemenu ul{margin:0;}
	.m-close-btn{padding:0;top:0;left:180px;right:0;}
	.contact-now-box { margin-top: 20px; margin-left: 10px; } 
	.contact-now-box.contact-now-box .icon-box a { font-size: 14px; }
	
	
	
	body.home header.main-header:before{background:linear-gradient(180deg,#000 50%,#03100000 90%);height:190px}
	.banner-content .section-title h1{font-size:26px}
	.banner-btns .wp-block-getwid-button-group__wrapper{gap:13px}
	.liscesned_box.ot-bx{width:100%}
	.customer-review-content{margin:0}
	.home-about{padding:20px 0}
	.about-image{max-width:fit-content;display:block;margin:0}
	.about-img-1{max-width:fit-content}
	.experience_sec{right:auto;left:20px}
	.inner_about-us .wp-block-columns{gap:0}
	.section-title h2{font-size:25px}
	.customer-consultation-body p,.inner_faqs .section-title p,.about-us-content .section-title p,.contact-us-form 	.section-title p{font-size:14px}
	.about-us-body ul{gap:10px}
	.about-us_footer .wp-block-columns{gap:10px}
	.our-services{padding:40px 0 10px;margin-top:0}
	.section-title{margin:0}
	.section-title-content p{font-size:14px;margin:0}
	.our-services .wp-block-columns{gap:0}
	.section-bg-title h4.wp-block-heading{font-size:40px}
	.our-team .wp-block-columns,.our-work .wp-block-columns{gap:15px}
	#galler_pg figure.wp-block-image{width:100%!important}
	.cta-box_faq .wp-block-getwid-image-box{display:block}
	.cta-box_faq .wp-block-getwid-image-box .wp-block-getwid-image-box__image-container{display:block;text-align:center;margin:0 auto 10px;max-width:fit-content}
	.cta-box_faq .wp-block-getwid-image-box__image-wrapper{margin:0!important}
	.faqcta-content{text-align:center}
	.cta-box_faq .faqcta-content h3,.cta-box_faq .faqcta-content p{text-align:center!important}
	.our-faqs-content{margin:0}
	.our-faqs .wp-block-columns{gap:0}
	.our-faq-section .wp-block-getwid-accordion__header-wrapper h3.wp-block-getwid-accordion__header{font-size:17px}
	.contact-home{padding:50px 0 0}
	.contact-us-form{padding:60px 20px;margin:0}
	.contact-area.sec h2{font-size:25px}
	.contact-info_item .contact-info_content h3{font-size:14px}
	.main-footer .col-6{width:100%}
	.footer-links ul{display:block;text-align:center}
	.footer-links ul li{display:inline-flex;background:#2a7d2e;padding:0 14px}
	.footer-links ul li a{font-size:14px}
	.footer-copyright p,.footer-privacy-policy ul li a{font-size:14px}

	.experience_sec .experience_counter .wp-block-getwid-counter__wrapper span.wp-block-getwid-counter__number,.experience_sec .experience_counter .wp-block-getwid-counter__wrapper p.wp-block-getwid-counter__suffix{color:#fff}
	.experience_sec .company_content p{color:#fff}
	.our-vision-mission .section-title p{font-size:14px}
	.about-us-body ul li{font-size:14px}
	.our-vision-mission{margin-top:20px}
	.our-mission-image figure,.our-vision-image figure{margin:0}
	.our-mission-image,.our-vision-image{margin:0!important}
	.maincounter-box{margin:0;height:auto;border-radius:0;padding:20px 0}
	.counter_image figure img{height:auto;border-radius:10%;padding:0 15px}
	.counter_boxes p{font-size:17px;line-height:150%;margin-bottom:10px}
	.inner-banner{padding:30px 0 40px}
	.inner-banner h3{font-size:20px}
	.inner-banner ul.breadcumb a,.inner-banner ul.breadcumb span{font-size:16px}

	.our-faq-section .wp-block-getwid-accordion__header-wrapper{margin-top:20px}
	.inner-page{padding:20px 0}	
	.service-image img {aspect-ratio: auto;}
	.fixed a.navbar-brand img{max-width:150px}
	.fixed .navbar{padding:10px 0}
	.navbar{padding:10px 0}

	.cst_postsec h2{font-size:30px}
	.cst_postsec p,.cst_postsec ul li{font-size:14px}
	.cst_postsec figure{margin:15px 0 0}
	.cst_postsec .wp-block-columns {gap: 0;}	
	
	.contact-info_item .contact-info_content p{font-size:14px;}
	.contact-info_item .wp-block-getwid-image-box__image-wrapper img{max-width:30px;}
	.contact-info_item{padding:10px;margin-bottom:15px;}
	.contact-info_item .wp-block-getwid-image-box.has-image-left, .contact-info_item .wp-block-getwid-image-box.has-image-right{flex-direction:column !important;}
	
	.cst_postsec{padding:10px 0;}
	.cst_postsec h2{font-size:22px;line-height:25px;}
	.cst_postsec p,.cst_postsec ul li{line-height:20px;}
	.cst_postsec h3{font-size:22px;}
	.main-footer::after{height:40px;top:-38px;}
	.main-footer{margin-top:40px;padding:30px 0 0;}
	.footer-logo img{max-width:180px;}
	.footer-logo{text-align:center;margin-bottom:0;}
	.about-footer{margin-top:-80px;margin-bottom:20px;}
	.working-hour,.footer-links,.footer-info-box{margin-bottom:20px;text-align:center;}
	.liscesned_box p{font-size:14px;}
	.footer-copyright{margin-top:20px;padding:10px;}
	.footer-privacy-policy ul li a{border:dashed 2px #657265;padding:5px;}
	.footer-privacy-policy{margin-top:10px;}
	.footer-copyright p,.footer-privacy-policy ul li a{line-height:22px;}
	.footer-info-box h3,.footer-links h3,.working-hour h3{margin-bottom:8px;}
	.working-hour-box p{font-size:14px;}
	.customer-consultation-body p, .inner_faqs .section-title p, .about-us-content .section-title p, .contact-us-form .section-title p { line-height: 20px; } 
	.contact-us-form .form-control { font-size: 14px; } 
	.contact-us-form .btn-default.btn-highlighted { font-size: 14px; }
	.banner-btns .wp-block-button__link{font-size:14px;}
	.banner-btns .wp-block-getwid-button-group__wrapper{justify-content:center;gap:10px;}
	.banner-btns .wp-block-getwid-button-group .wp-block-button{width:90%;left:-10px;}
	.liscesned_box.ot-bx{margin:20px 0;}
	.banner-content .section-title p{max-width:none;font-size:14px;line-height:25px;margin:15px 0;}
	.banner-content { padding: 0; } 
	.banner-sec .wp-block-cover { min-height: 470px !important; }
	.our-services{padding:0;}
	.our-counter{padding:0;}
	.cta-box_faq .faqcta-content p{font-size:15px;line-height:22px;margin:0 0 12px;}
	.faqs-cta-btn a.wp-block-button__link.wp-element-button{font-size:14px;}
	.cta-box_faq .wp-block-getwid-image-box__image-wrapper{width:45px;height:45px;}
	.cta-box_faq .wp-block-getwid-image-box__image-wrapper img{max-width:20px;}
	.our-faq-section .wp-block-getwid-accordion__header-wrapper h3.wp-block-getwid-accordion__header { padding: 15px; } 	.our-faq-section .wp-block-getwid-accordion__content-wrapper .wp-block-getwid-accordion__content p { font-size: 14px; line-height: 20px; }
	.page-id-148 .our-faqs { padding: 60px 0 0; }
	.cst_postsec h2, .cst_postsec h3 {margin: 10px 0 5px;}
	
	
}


@media (min-width: 768px) and (max-width: 1023px){
	.customer-consultation-box{bottom:-50px}
	.navbar-brand img, .fixed a.navbar-brand img { max-width: 180px; }
	.customer-review-content p{max-width:340px;font-size:15px}
	.inner_about-us .wp-block-columns{flex-wrap:nowrap!important;gap:10px}
	.section-title h2{font-size:30px}
	.home-about{padding:50px 0}
	.customer-consultation-body p,.inner_faqs .section-title p,.about-us-content .section-title p,.contact-us-form .section-title p{font-size:15px}
	.about-us-body ul li{font-size:14px}
	.company_content p{font-size:14px}
	.company_content h3{font-size:14px}
	.experience_sec{right:-160px}
	.about-image{margin:0}
	.our-services::before{height:0}
	.our-services{margin:0;padding:0}
	.section-title{margin:0}
	.our-team .wp-block-columns,.our-work .wp-block-columns{gap:0}
	.section-bg-title h4.wp-block-heading{font-size:60px}
	.our-faqs-content .section-title{margin-bottom:20px}
	.our-faqs .wp-block-columns{flex-wrap:nowrap!important}
	.our-faq-section .wp-block-getwid-accordion__header-wrapper h3.wp-block-getwid-accordion__header{font-size:17px}
	.testimonil_mainsec{max-width:530px;margin:0 auto}
	.contact-home .wp-block-columns{flex-wrap:nowrap!important}
	.contact-area.sec h2{font-size:30px}
	.contact-home{padding:50px 0 20px}
	.our-services .wp-block-columns {gap: 0; margin-bottom: 20px;}
	.about-us-body ul {gap: 0px; margin: 15px 0 0;}	
	
	.inner-banner h3{font-size:25px;}
	.inner-banner ul.breadcumb a,.inner-banner ul.breadcumb span{font-size:15px;}
	.inner-banner ul.breadcumb span.sep{margin-left:5px;margin-right:5px;}
	.inner-page{padding:20px 0;}
	.our-vision-mission .wp-block-columns{flex-wrap:nowrap!important;}
	.our-vision-mission .section-title p{font-size:14px;line-height:20px;margin:5px 0 0;}
	.section-title h2{font-size:25px;margin:0;}
	.section-title p{margin:5px 0 0;font-size:14px;line-height:20px;}
	.about-us_footer .wp-block-columns{flex-wrap:wrap!important;}
	.our-vision-mission .wp-block-columns{align-items:center!important;}
	.counter_boxes p{font-size:14px;}
	.section-title-content p{font-size:14px;line-height:20px;}
	.section-bg-title h4.wp-block-heading{font-size:40px;line-height:100px;}
	.testimonial-box{padding:20px;}
	.testimonial-box .section-title h2{margin:0 0 30px;}
	.testimonil_mainsec .wp-block-columns{;}
	.footer-copyright{margin-top:10px;padding:10px 0;}
	.footer-copyright-text p,.footer-privacy-policy ul li a{font-size:14px;line-height:20px;}
	.footer-privacy-policy ul li a{border:dashed 2px #657265;padding:5px 40px;}
	.footer-copyright .col-lg-8.col-md-8{width:100%;}
	.footer-copyright .col-lg-4.col-md-4{width:100%;}
	.footer-copyright-text{text-align:center;}
	.footer-privacy-policy{display:flex;justify-content:center;padding:10px 0 0;}
	.footer-logo img{max-width:180px;}
	.main-footer::after{height:60px;top:-50px;}
	.footer-logo{margin-top:60px;text-align:center;}
	.footer-info-box h3,.footer-links h3,.working-hour h3{margin-bottom:10px;font-size:17px;}
	.working-hour-box p,.footer-info-box p,.liscesned_box p,.footer-links ul li{font-size:14px;}
	.footer-links ul li{margin:0 0 5px;}
	.about-footer-content,.footer-logo{margin-bottom:0;}
	.main-footer{margin-top:40px;}
	.our-faq-section .wp-block-getwid-accordion__header-wrapper h3.wp-block-getwid-accordion__header{font-size:15px;padding:15px;}
	.our-faq-section .wp-block-getwid-accordion__header-wrapper{margin-top:15px;}
	.our-faq-section .wp-block-getwid-accordion__content-wrapper .wp-block-getwid-accordion__content p{font-size:14px;line-height:20px;}
	
	
	.cta-box_faq .faqcta-content h3{font-size:17px;margin:0 0 5px;}
	.cta-box_faq .faqcta-content p{font-size:14px;line-height:20px;}
	.faqs-cta-btn a.wp-block-button__link.wp-element-button{font-size:14px;}
	.our-faqs{padding:30px 0 0;}
	.counter_image figure img{height:120px;}
	.maincounter-box .wp-block-columns{flex-wrap:nowrap!important;}
	.maincounter-box .wp-block-columns > .wp-block-column:first-child{flex-basis:70%!important;max-width:70%!important;}
	.maincounter-box .wp-block-columns > .wp-block-column:last-child{flex-basis:30%!important;max-width:30%!important;}
	.maincounter-box{height:120px;}
	.counter_boxes{display:flex;justify-content:center;}
	.our-counter{padding-left:300px;padding-top:10px;padding-bottom:10px;}
	.service-item {height: auto;}
	.service-image img {height: 200px;}
	.cst_postsec .wp-block-columns { flex-wrap: nowrap !important; } .cst_postsec h2, .cst_postsec h3 { font-size: 22px; line-height: 20px; margin: 10px 0; } 
	.cst_postsec p { font-size: 14px; line-height: 22px; } 
	.cst_postsec { padding: 20px 0; } .cst_postsec figure img { height: 550px; object-fit: cover; }
	.contact-area .wp-block-columns{flex-wrap:nowrap!important;}
	.contact-us-form{padding:30px;}
	.contact-area.sec h2{font-size:25px;margin:10px 0 0;}
	.contact-us-form .form-control{font-size:14px;padding:10px 20px;}
	.contact-us-form .btn-default.btn-highlighted{font-size:14px;}
	.contact-info_item{padding:10px;margin:0 0 10px;}
	.contact-info_item .contact-info_content h3{font-size:16px;}
	.contact-info_item .contact-info_content p{font-size:14px;}
	.wp-block-getwid-image-box__image-wrapper img{max-width:25px;}
	.contact-us-form .wpcf7-form-control{width:100%!important;max-width:100%!important;display:block!important;}
	.contact-us-form .row > div{display:block!important;width:100%!important;}
	.contact-us-form input.wpcf7-form-control,.contact-us-form textarea.wpcf7-form-control{width:100%!important;}
	.contact-us-form .section-title p{font-size:14px;margin:5px 0;}
	.contact-us-form { margin-bottom: 10px; }
	.banner-btns {margin: 20px 0 0;}
	.our-work { padding: 20px 0 0; }
	.footer-logo img{max-width:240px;}
	
	.banner-btns .wp-block-button__link { font-size: 14px; } 
	.banner-content .section-title h1 { font-size: 30px; max-width: 390px; margin: 0 0 20px; } 
	.banner-btns .wp-block-getwid-button-group__wrapper { gap: 50px; }
	
	.collapse:not(.show){display:block;}
	.main-menu .nav-menu-wrapper{display:flex;justify-content:center;}
	.main-menu .nav-menu-wrapper > ul{display:flex;flex-direction:row;}
	.main-menu .nav-menu-wrapper ul a{padding:5px!important;font-size:15px;}
	.contact-now-box.contact-now-box .icon-box a{font-size:14px;padding:8px 20px;}
	.navbar>.container { display: ruby !important; align-items: center !important; flex-direction: row !important; } 
	.navbar-collapse.main-menu { display: flex !important; }
	.contact-now-box { display: block; margin-left: 20px; }
	
	
}

@media (min-width: 1024px) and (max-width: 1200px){
	
	.navbar-brand img{max-width:240px;}
	.home-about{padding:80px 0;}
	.experience_sec{right:-60px;}
	.company_content h3{font-size:16px;}
	.our-faq-section .wp-block-getwid-accordion__header-wrapper h3.wp-block-getwid-accordion__header { font-size: 19px; } 
	.footer-copyright .col-lg-4.col-md-4 { width: 20%; } 
	.footer-copyright .col-lg-8.col-md-8 { width: 80%; }
	.section-title h2 { font-size: 45px; }
	.our-counter{padding-left:160px;padding-top:10px;padding-bottom:10px;}
	.section-bg-title h4.wp-block-heading { font-size: 90px; }
	.main-footer .col-lg-3{width:24%;}
	.main-footer{padding:50px 0 0;}
	.footer-copyright{margin-top:40px;}
	
}
