/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/
:root {
	--primary-color: #000000;
	--secondary-color: #e8e8e8;
	--text-color: #000;
	--accent-color: #6A52E0;
	--accent-secondary-color: #008f22;
	--white-color: #FFFFFF;
	--divider-color: #6666661A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Archivo", sans-serif;
}

#schedule {
	scroll-margin-top: 70px;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

.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;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border: none;
	border-radius: 12px;
	padding: 18px 54px 18px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	background: transparent;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 34px;
	height: 34px;
	background-color: var(--accent-secondary-color);
	background-image: url('../images/icons/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 8px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	background-color: var(--white-color);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-default.btn-highlighted {
	background: var(--accent-secondary-color);
	color: var(--primary-color);
}

.btn-default.btn-highlighted::before {
	background-color: var(--accent-color);
	background-image: url('../images/icons/arrow-white.svg');
}

.btn-default.btn-highlighted:hover::before {
	background-color: var(--primary-color);
}

.btn-default.btn-highlighted::after {
	background-color: var(--white-color);
}

.readmore-btn {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--accent-color);
	text-transform: capitalize;
	display: inline-block;
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 22px;
	height: 22px;
	background-image: url('../images/icons/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	transform: translate(-3px, -50%);
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn:hover::before {
	filter: brightness(0) invert(0);
	transform: translate(0, -50%);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.section-row {
	margin-bottom: 60px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title {
	margin-bottom: 40px;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	text-align: left;
	margin-top: 30px;
}

.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-area .header-elements .main-menu ul li:not(:first-child) {
	margin-left: 12px !important;
}

.topbar {
	background: var(--accent-secondary-color);
	padding: 14px 0;
}

.topbar-contact-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1em;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.topbar-contact-info ul li a {
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover {
	color: var(--accent-color);
}

.topbar-contact-info ul li a i {
	font-size: 16px;
	color: inherit;
	margin-right: 8px;
}

.topbar-social-links {
	text-align: right;
}

.topbar-social-links ul {
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	border-right: 1px solid var(--primary-color);
	margin-right: 15px;
	padding-right: 15px;
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.topbar-social-links ul li a {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	color: var(--accent-color);
}

.topbar-social-links ul li a i {
	font-size: 18px;
	color: inherit;
	margin-right: 8px;
}

header.main-header {
	position: relative;
	background-color: var(--accent-color);
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.4s ease-in-out;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background-color: var(--accent-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 25px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item a {
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	padding: 15px !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;
	margin-top: 2px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--primary-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-secondary-color);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item a {
	color: var(--primary-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(--accent-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-secondary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 8px;
	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-secondary-color);
}

.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: 8px 20px;
	color: var(--primary-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(--accent-color);
}

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 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(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--accent-color);
}

.welcome1-section-area {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/*background-color: #6A52E0;*/
}

.welcome1-section-area .welcome-content-header {
	padding-top: 110px;
	text-align: center;
}

.welcome1-section-area .section-title {
	margin-top: 50px;
}

.welcome1-section-area .section-title .text-style-1 {
	letter-spacing: 0;
	margin: 20px 0 50px 0;
	color: var(--white-color);
}

.welcome1-section-area .section-title .text-style-2 {
	font-size: 16px;
	line-height: 28px;
	font-weight: 300;
	color: var(--white-color);
}

.welcome1-section-area .section-title .text-style-2::before {
	content: '';
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: 6px;
	background: var(--white-color);
	border-radius: 50%;
}

.welcome1-section-area .section-title .text-style-3 {
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
}

.welcome1-section-area .section-title .text-style-3 h2 {
	font-size: 20px;
	line-height: 28px;
	font-weight: 300;
	color: var(--white-color);
}

.welcome1-section-area .section-title .text-style-3 h2:before {
	content: '\f058';
	position: relative;
	display: inline-block;
	font-family: 'FontAwesome';
	margin-right: 6px;
}

.welcome1-section-area .section-title .text-style-3 ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	white-space: nowrap;
}

.welcome1-section-area .section-title .text-style-3 ul li {
	position: relative;
	display: inline-block;
	white-space: nowrap;
}

.welcome1-section-area .section-title .text-style-3 ul li:not(:last-child) {
	margin-right: 30px;
}

@media (max-width: 767px) {
	.welcome1-section-area .section-title .text-style-3 ul {
		text-align: left;
		width: fit-content;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
	}

	.welcome1-section-area .section-title .text-style-3 ul li {
		display: block;
	}

	.welcome1-section-area .section-title .text-style-3 ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 10px;
	}

	.section-footer {
		/*display: none;*/
	}
}

.welcome1-section-area .section-title h1 span, .welcome1-section-area .section-title h2 span {
	color: #008f22;
}

.welcome1-section-area .section-wait-mark {
	text-align: center;
	margin-top: 55px;
	color: #00d533;
}

.welcome1-section-area .section-footer {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin: 20px auto;
	text-align: center;
}

.welcome1-section-area .section-footer .section-btn {
	display: inline-block;
	/*width: 150px;*/
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 1px;
	background-color: #8470e7;
	color: var(--white-color);
	border: none;
	border-radius: 20px;
	padding: 5px 20px;
	margin: 0 auto;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}


.welcome1-section-area .section-footer .section-anime-icon {
	position: relative;
	width: 75px;
	height: 70px;
	left: 50%;
	transform: translateX(-50%) rotate(220deg);
	animation: ctaarrow 3s infinite linear;
}

.welcome1-section-area .section-footer .section-anime-icon img {
	width: 100%;
	height: 100%;
}

.welcome1-section-area .section-footer .section-btn:hover {
	color: var(--black-color);
}

.welcome1-images {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0;
}

.reador-title {
	font-size: 22px;
	line-height: 30px;
	font-weight: 500;
	text-align:center;
	padding-top:20px;
}
.reador-title2 {
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
	color: #888;
	padding: 10px 0 20px 0;
}



.reador-box {
	border: 2px solid #e8e8e8;
	width: 100%;
	height: 480px;
	position: relative;
	font-size: 0;
	overflow: hidden;
}

.reador-box .reador-left {
	display: inline-block;
	position: relative;
	width: 300px;
	height: 100%;
	left: 0;
	vertical-align: top;
}

.reador-box .reador-left .reador-row {
	height: 100%;
	border-right: 4px solid #e8e8e8;
	padding-bottom: 110px;
}

.reador-box .reador-left .reador-item {
	font-size: 18px;
	line-height: 35px;
	font-weight: 500;
	padding: 0 10px;
	cursor: pointer;
}

.reador-box .reador-left .reador-item.active {
	background-color: #e8e8e8;
	line-height: 35px;
}

.reador-box .reador-left .reador-catalog {
	height: 100%;
	padding-bottom: 110px;
	overflow: hidden;
	overflow-y: scroll;
	padding:10px 0;
}

.reador-box .reador-left .reador-catalog li {
	font-size: 14px;
	line-height: 26px;
	font-weight: 400;
	padding: 0 30px;
	white-space: nowrap;
	cursor: pointer;
}

.reador-box .reador-left .reador-catalog li.active {
	color:#008f22;
}

.reador-box .reador-center {
	display: inline-block;
	position: relative;
	width: calc(100% - 460px);
	height: 100%;
	z-index: -1;
	vertical-align: top;
	text-align: center;
	padding: 10px 0;
}

.reador-box .reador-right {
	display: inline-block;
	position: relative;
	width: 160px;
	height: 100%;
	right: 0;
	border-left: 4px solid #e8e8e8;
	vertical-align: top;
	text-align:center;
}

.reador-box .reador-right .page-no {
	font-size:16px;
	line-height:40px;
	font-weight:400;
	text-align:center;
}

.reador-box .reador-right .page-title {
	font-size: 16px;
	line-height: 40px;
	font-weight: 400;
	text-align: center;
	border-bottom:1px solid #e8e8e8;
}

.reador-box .reador-right .page-no.active {
	color: #008f22;
}

.reador-box .reador-right .page-img {
	text-align:center;
	cursor:pointer;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/
.hero {
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0 0;
}

.hero.hero-bg-image {
	position: relative;
	background: url('../images/icons/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 170px 0;
}

.hero.hero-bg-image::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 70%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
	position: relative;
	padding: 170px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 0.3;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--dark-divider-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	text-align: center;
	margin-bottom: 30px;
	z-index: 2;
}

.hero.hero-bg-image .hero-content {
	margin-bottom: 0;
}

@keyframes ctaarrow {
	0%, 100% {
		top: 20px;
	}

	50% {
		top: -20px;
	}
}

.hero-image {
	text-align: center;
}

.hero-image img {
	width: 100%;
	max-width: 80%;
	/*aspect-ratio: 1 / 0.66;*/
	object-fit: cover;
}

/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-scrolling-ticker {
	background: var(--accent-secondary-color);
	padding: 25px 0;
}

.scrolling-ticker-box {
	--gap: 80px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 30s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-content img {
	width: 100%;
	max-width: 135px;
	height: 30px;
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-images {
	display: flex;
	justify-content: space-between;
	align-items: start;
	flex-direction: column;
	row-gap: 0px;
}

.about-image-box-1 {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
}

.about-image-box-11 {
	width: calc(40% - 5px);
}
.about-image-box-11 .hero-title {
	height: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.about-image-box-12 {
	width: calc(60% - 5px);
}

.about-image figure {
	display: block;
	border-radius: 20px;
}

.about-image img {
	/*width: 100%;
	height:100%;
	aspect-ratio: 1 / 0.96;*/
	object-fit: cover;
	border-radius: 20px;
}

.successful-circle-img {
	margin-bottom: 20px;
	text-align: center;
}

.successful-circle-img img {
	width: 100%;
	max-width: 170px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	to {
		transform: rotate(360deg);
	}
}

.about-image-box-2 {
	width: calc(61% - 5px);
	text-align: right;
}

.about-image-box-2 .about-image img {
	/*aspect-ratio: 1 / 1.349;*/
}

.about-image-box-3 {
	display: flex;
	align-items: end;
	gap: 10px;
	margin-top: -20%;
	margin-left: -10px;
}

.about-image-box-3 .about-image {
	position: relative;
	width: 100%;
	max-width: 407px;
	z-index: 1;
	overflow: hidden;
}

.about-image-box-3 .about-image .image-round {
	border: 10px solid var(--white-color);
	border-radius: 30px;
}

.about-image-box-3 .about-image img {
	/*aspect-ratio: 1 / 0.49;*/
}

.years-experience-box {
	position: relative;
	width: 100%;
	max-width: 200px;
	display: inline-flex;
	white-space:nowrap;
	gap: 0;
	justify-content: center;
	align-items: center;
	text-align: left;
	background-color: var(--accent-secondary-color);
	border-radius: 12px;
	padding: 5px;
	margin: 10px 0;
	overflow: hidden;
}

.years-experience-box:before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.years-experience-box:hover::before {
	height: 100%;
}

.years-experience-box .year-gap,
.years-experience-box .year-text {
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	color: var(--white-color);
}

.years-experience-box .year-gap {
	font-size: 44px;
	font-weight: 600;
	width: 65px;
	text-align: center;
}

.years-experience-box .year-text {
	/*width: 60%;*/
	margin-bottom: 0;
	font-size: 20px;
	line-height: 26px;
	font-weight: 400;
}

.years-experience-box:hover .year-gap,
.years-experience-box:hover .year-text {
	color: var(--white-color);
}

.about-us-content {
	margin-left: 20px;
}

.about-body-list {
	margin-top: 30px;
}

.about-body-item {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.about-body-item:last-child {
	margin-bottom: 0;
}

.about-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.about-body-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-body-item:hover .icon-box::before {
	transform: scale(1);
}

.about-body-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.about-body-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-body-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.about-btn {
	margin-top: 40px;
}

/************************************/
/*** 	  07. Our Services css	  ***/
/************************************/

.our-services {
	/*background: var(--secondary-color) url('../images/icons/service-bg.svg') no-repeat;*/
	background-size: 100% auto;
	background-position: center center;
	padding: 100px 0;
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.service-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
	height: 100%;
	border-radius: 0;
}

.service-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item .icon-box img {
	width: 100%;
	max-width: 28px;
}

.service-item-content {
	position: relative;
	/*border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;*/
	padding-bottom: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.service-item.active .service-item-content,
.service-item:hover .service-item-content {
	border-bottom-color: var(--dark-divider-color);
}

.service-item-content .title-caption {
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.service-item-content .title-text {
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.service-readmore-btn {
	position: relative;
	z-index: 1;
}

.service-item.active .service-item-content .title-caption,
.service-item:hover .service-item-content .title-caption,
.service-item.active .service-item-content .title-text,
.service-item:hover .service-item-content .title-text,
.service-item.active .service-readmore-btn .readmore-btn,
.service-item:hover .service-readmore-btn .readmore-btn {
	color: var(--white-color);
}

.service-item.active .readmore-btn::before,
.service-item:hover .readmore-btn::before {
	filter: brightness(0) invert(1);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	font-size: 18px;
	margin-bottom: 0;
}

.section-footer-text span {
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 4px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

/************************************/
/*** 	 08. Why Choose us css	  ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-content {
	margin-right: 15px;
}

.why-choose-video{
	margin-top:100px;
}

.why-choose-video .video-play-button {
	top: calc(50% - 10px);
}
.why-choose-video .video-play-button a {
	width:50px;
	height:50px;
}
.why-choose-video .video-play-button a:before {
	border-width:30px;
}
.why-choose-video .video-play-button a:after {
	border-width: 30px;
}

.why-choose-list {
	margin-top: 30px;
}

.why-choose-list ul {
	position: relative;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.why-choose-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-color);
}

.why-choose-image {
	position: relative;
}

.why-choose-image .image-round {
	display: block;
	border-radius: 20px;
}

.why-choose-image .image-round img {
	width: 100%;
	/*aspect-ratio: 1 / 0.68;*/
	object-fit: cover;
	filter: brightness(70%);
	border-radius: 20px;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a {
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-button i {
	font-size: 30px;
	margin-left: 3px;
	color: var(--white-color);
}

.video-play-button a:before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	z-index: -1;
	border: 50px solid var(--white-color);
	opacity: 40%;
	border-radius: 50%;
	transform: scale(0.6);
	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(--white-color);
	opacity: 40%;
	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;
	}
}

.why-choose-item-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	row-gap: 30px;
	flex-wrap: wrap;
	margin-top: 80px;
}

.why-choose-item {
	position: relative;
	width: calc(25% - 60px);
}

.why-choose-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -40px;
	background-color: var(--divider-color);
	height: 100%;
	width: 1px;
}

.why-choose-item:nth-child(4n + 4):before,
.why-choose-item:last-child:before {
	display: none;
}

.why-choose-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 20px;
}

.why-choose-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content h3 {
	margin-bottom: 15px;
}

.why-choose-item-content p {
	margin-bottom: 0;
}

/************************************/
/*** 	  09. What We Do css 	  ***/
/************************************/
.what-we-do .row.no-gutters{
	width:100%;
}
.what-we-do .row.no-gutters,
.what-we-do .row.no-gutters .col-lg-6 {
	padding-right: 0px;
	padding-left: 0px;
}

.what-we-do .title-sign,
.what-we-do .title-caption,
.what-we-do .title-text {
	color: var(--white-color);
}

.what-we-do .container-fluid {
	padding: 0;
}

.what-we-do-image {
	height: 100%;
}

.what-we-do-image figure {
	display: block;
	height: 100%;
}

.what-we-do-image img {
	width: 100%;
	height: 100%;
	/*aspect-ratio: 1 / 0.8;*/
	object-fit: cover;
}

.what-we-do .seo-cover {
	background-color: var(--accent-color, #6a52e0);
}

.what-we-do {
	background-color: var(--accent-color, #6a52e0);
}

.what-we-do-content {

	/*height: 100%;*/
	align-content: center;
	padding: 100px 30px;
}


.what-we-do-content .what-we-do-list {
	display: flex;
	align-self: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap:40px;
}

.what-we-do-content .section-title .title-text {
	border-bottom: 0.5px solid #fff;
	margin-top: 20px;
}

.what-do-body-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 50px;
}

.what-do-body-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(50% - 15px);
}

.what-do-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.what-do-body-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-do-body-item:hover .icon-box::before {
	transform: scale(1);
}

.what-do-body-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.what-do-body-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.what-do-body-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.what-do-body-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
}

.what-we-do-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding-top: 50px;
}

.what-we-do-circle a {
	border-radius: 50%;
	display: block;
}

.what-we-do-circle img {
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.what-we-do .post-featured-image {
	position: relative;
	display: inline-block;
	border: 1px solid #e4e4e4;
	border-radius: 20px;
	overflow: hidden;
}

.what-we-do .post-featured-image .image-title {
	color: #fff;
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
	padding: 20px 10px;
}

.what-we-do .post-featured-image .popup-video {
	color: #fff;
	position: absolute;
	width: 50px;
	height: 50px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: transparent;
	z-index: 3;
	border-radius: 50%;
	border: 2px solid #fff;
}
.what-we-do .post-featured-image .popup-video:hover {
	color: #008f22;
	background-color: #fff;
}

.what-we-do .post-featured-image .popup-video::before,
.what-we-do .post-featured-image .popup-video::after {
	display: none;
}

/************************************/
/*** 	10. Company Success css	  ***/
/************************************/
.company-success {
	padding: 100px 0 70px;
}

.company-success-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.company-success-header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.company-success-header .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.6s ease-in-out;
}

.company-success-item:hover .company-success-header .icon-box {
	background: transparent;
}

.company-success-header .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.company-success-item:hover .company-success-header .icon-box::before {
	transform: scale(1);
}

.company-success-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.company-success-item:hover .company-success-header .icon-box img {
	filter: brightness(0) invert(0);
}

.company-success-title {
	width: calc(100% - 65px);
}

.company-success-title h3 {
	font-size: 20px;
}

.company-success-content h2 {
	font-size: 60px;
	margin-bottom: 10px;
}

.company-success-content p {
	margin-bottom: 0;
}

/*************************************/
/*** 11. Scrolling Ticker Text css ***/
/*************************************/

.scrolling-ticker-text {
	margin-bottom: -10px;
}

.scrolling-ticker-text-box {
	--gap: 40px;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-ticker-text-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 70s linear infinite;
}

.scrolling-ticker-text-content span {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 80px;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: -0.02em;
	color: var(--white-color);
	background: var(--text-color);
	-webkit-text-stroke: 2px transparent;
}

.scrolling-ticker-text-content span img {
	width: 40px;
	margin-right: 40px;
}

/************************************/
/*** 	 12. Our Benefits css	  ***/
/************************************/

.our-benefits {
	/*background: var(--secondary-color) url('../images/icons/benefits-bg.svg');*/
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0 70px;
}

.benefits-content {
	margin-right: 20px;
}

.benefits-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top:50px;
}

.benefits-body-item {
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
}

.benefits-body-item h3 {
	text-transform: capitalize;
	margin-bottom: 15px;
}

.benefits-body-item p {
	margin-bottom: 0;
}

.benefits-body-list {
	width: 100%;
}

.benefits-body-list ul {
	position: relative;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefits-body-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.benefits-body-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-color);
}

.benefits-images {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
}

.benefit-image-1 {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: left;
	align-items: center;
	flex-direction: row;
	column-gap:10px;
}

.benefit-image figure {
	display: block;
	border-radius: 20px;
}

.benefit-image img {
	width: 100%;
	/*aspect-ratio: 1 / 0.775;*/
	object-fit: cover;
	border-radius: 20px;
}

.benefit-image-circle {
	display: block;
	padding: 0 10px;
	/*transform: translateX(50%);*/
}

.benefit-image-circle a {
	display: block;
	border-radius: 50%;
}

.benefit-image-circle img {
	width: 100%;
	max-width: 140px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.benefit-image-2 {
	position: relative;
	margin-top: 0px;
	z-index: 1;
}

.benefit-image-2 .benefit-image {
	width: 100%;
	max-width: 544px;
	border: 10px solid var(--secondary-color);
	border-radius: 30px;
}

.benefit-image-2 .benefit-image img {
	/*aspect-ratio: 1 / 0.611;*/
}

.benefit-project-info {
	position: absolute;
	bottom: -30px;
	left: 0px;
	width: 100%;
	max-width: 200px;
	display: flex;
	align-items: center;
	background: var(--white-color);
	box-shadow: 0px 0px 20px 0px #0000001A;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 18px;
	animation: infiniteboxmove 2.5s infinite linear alternate;
	overflow: hidden;
	z-index: 1;
}

@keyframes infiniteboxmove {
	50% {
		left: -60px;
	}
}

.benefit-project-info::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-secondary-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.benefit-project-info:hover::after {
	height: 100%;
}

.benefit-project-info .icon-box {
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.benefit-project-info:hover .icon-box {
	background: var(--primary-color);
}

.benefit-project-info .icon-box img {
	max-width: 25px;
}

.benefit-project-content {
	width: calc(100% - 65px);
}

.benefit-project-content h3 {
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.benefit-project-content span {
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	vertical-align: top;
}

.benefit-project-content p {
	color: var(--dark-color);
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.benefit-project-info:hover .benefit-project-content p {
	color: var(--primary-color);
}

/************************************/
/*** 	 13. How It Work css	  ***/
/************************************/

.how-it-work {
	padding: 100px 0;
}

.how-work-content {
	margin-right: 20px;
}

.how-work-content .how-it-work-btn {
	margin-top: 50px;
	border-radius:6px;
	overflow:hidden;
	text-align:center;
}

.work-process-item {
	display: flex;
	justify-content: space-between;
	align-items: start;
	flex-wrap: wrap;
	gap: 30px;
	border: 1px solid var(--divider-color);
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.work-process-item:last-child {
	margin-bottom: 0;
}

.work-process-content {
	width: calc(50% - 15px);
}

.work-process-content .title-sign {
	color: var(--accent-color);
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-block;
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 2px 20px;
	transition: all 0.3s ease-in-out;
}

.work-process-item:hover .work-process-content .title-sign {
	color: var(--white-color);
	background: var(--accent-secondary-color);
}

.work-process-image {
	width: calc(50% - 15px);
	margin-top: 40px;
	display: block;
	border-radius: 6px;
	overflow: hidden;
}

.work-process-image img {
	width: 100%;
	height: 100%;
	/*aspect-ratio: 1 / 0.75;*/
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.work-process-item:hover .work-process-image img {
	transform: scale(1.1);
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	background: url('../images/all-images/testimonials-bg.png'), var(--accent-color);
	background-repeat: repeat-x;
	background-size: cover;
	animation: testimonialbgmove 60s infinite linear;
	padding: 100px 0;
}

@keyframes testimonialbgmove {
	from {
		background-position: right center;
	}

	to {
		background-position: right 200vw center;
	}
}

.testimonial-slider .swiper-wrapper {
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--accent-secondary-color);
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	color: var(--white-color);
	font-size: 20px;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	position: relative;
	margin-right: 15px;
}

.author-image figure {
	display: block;
	border-radius: 50%;
}

.author-image figure img {
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.testimonial-quote {
	position: absolute;
	width: 16px;
	height: 16px;
	background-color: var(--accent-secondary-color);
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-quote img {
	width: 100%;
	max-width: 10px;
}

.author-content {
	width: calc(100% - 75px);
}

.author-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--white-color);
	text-transform: capitalize;
}

.author-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.testimonial-pagination {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	z-index: 2;
}

.testimonial-pagination .swiper-pagination-bullet {
	height: 14px;
	width: 14px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	opacity: 1;
	margin: 0 3px;
	transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-secondary-color);
	border-radius: 50%;
}

.testimonials-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 80px;
	padding-top: 80px;
}

.testimonials-counter-item {
	width: calc(25% - 22.5px);
	display: flex;
	align-items: center;
}

.testimonials-counter-item h2 {
	width: 60%;
	color: var(--white-color);
	font-size: 60px;
}

.testimonials-counter-item p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	 15. Our Pricing css	  ***/
/************************************/

.our-pricing {
	padding: 100px 0;
}

.pricing-item {
	height: calc(100% - 30px);
	background: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-header {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header img {
	width: 100%;
	max-width: 50px;
	margin-bottom: 30px;
}

.pricing-header h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.pricing-header p {
	margin-bottom: 30px;
}

.pricing-header h2 {
	font-size: 46px;
	color: var(--accent-color);
}

.pricing-header sub {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	bottom: 0;
}

.pricing-body {
	margin-bottom: 30px;
}

.pricing-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-body ul li {
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.pricing-body ul li:last-child {
	margin-bottom: 0;
}

.pricing-body ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.pricing-footer .btn-default {
	padding: 18px 20px;
	display: block;
	text-align: center;
}

.pricing-footer .btn-default::before {
	display: none;
}

.pricing-item.highlighted-box {
	background: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-header {
	border-bottom-color: var(--dark-divider-color);
}

.pricing-item.highlighted-box .pricing-header img {
	filter: brightness(0) invert(1);
}

.pricing-item.highlighted-box .pricing-header h3,
.pricing-item.highlighted-box .pricing-header p,
.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h2 sub,
.pricing-item.highlighted-box .pricing-body ul li {
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-body ul li::before {
	color: var(--accent-secondary-color);
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li {
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list ul li img {
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/*** 	  16. Our Faqs css  	  ***/
/************************************/

.our-faqs {
	padding: 100px 0;
	background: url('../images/icons/faqs-bg.svg'), var(--secondary-color);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.faqs-image {
	position: relative;
	padding: 10px 35px 0 0;
	margin-right: 20px;
}

.faqs-img figure {
	display: block;
	border-radius: 20px;
}

.faqs-img img {
	width: 100%;
	/*aspect-ratio: 1 / 1.034;*/
	object-fit: cover;
	border-radius: 20px;
}

.faq-contact-circle {
	position: absolute;
	top: 0;
	right: 0;
	border: 10px solid var(--secondary-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.faq-contact-circle a {
	display: block;
	border-radius: 50%;
}

.faq-contact-circle img {
	width: 100%;
	max-width: 160px;
	animation: infiniterotate 20s infinite linear;
}

.faqs-cta-box {
	width: 260px;
	position: absolute;
	display: flex;
	align-items: center;
	bottom: 20px;
	left: 20px;
	background-color: var(--accent-secondary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
	z-index: 1;
}

.faqs-cta-box:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.faqs-cta-box:hover:before {
	height: 100%;
}

.faqs-cta-box .icon-box {
	position: relative;
	margin-right: 15px;
	z-index: 1;
}

.faqs-cta-box .icon-box img {
	width: 100%;
	max-width: 40px;
	transition: all 0.3s ease-in-out;
}

.faqs-cta-box:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.faqs-cta-box-content {
	position: relative;
	width: calc(100% - 55px);
	z-index: 1;
}

.faqs-cta-box-content h3 {
	font-size: 16px;
	line-height: 1.3em;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.faqs-cta-box:hover .faqs-cta-box-content h3 {
	color: var(--white-color);
}

.faq-accordion .accordion-item {
	position: relative;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	border-radius: 10px;
	margin-bottom: 25px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 20px 60px 20px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 14px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 30px;
	top: 22px;
	transform: rotate(-90deg);
	height: 24px;
	width: 24px;
	background-color: var(--accent-secondary-color);
	background-image: url('../images/icons/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	border-radius: 50%;
	transition: all 0.4S ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	background-color: var(--accent-color);
	background-image: url('../images/icons/arrow-white.svg');
	transform: rotate(90deg);
}

.faq-accordion .accordion-item .accordion-body {
	background: var(--accent-color);
	border-top: 1px solid var(--dark-divider-color);
	padding: 14px 60px 30px 30px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/*** 	   17. Our Blog css 	  ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	overflow: hidden;
}

.post-featured-image a {
	display: block;
}

.post-featured-image .image-round {
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	/*aspect-ratio: 1 / 0.695;*/
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.blog-item-body {
	padding: 30px 25px;
}

.blog-item-body .item-title {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-direction: row;
	column-gap:6px;
	margin-bottom:10px;
}

.post-item-content {
	margin-bottom: 20px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	color: inherit;
}

/************************************/
/*** 	 19. About Us Page css	  ***/
/************************************/

.page-header {
	background: url('../images/icons/page-header-bg.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 80px 0;
}

.page-header-box {
	text-align: center;
}

.page-header-box h1 {
	display: inline-block;
	color: var(--white-color);
	font-size: 80px;
	font-weight: 700;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}

.page-header-box h1 span {
	color: var(--accent-secondary-color);
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-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-mission-vision {
	background: var(--secondary-color) url('../images/icons/mission-vision-bg.svg') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.mission-vision-box {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.mission-vision-content {
	position: sticky;
	top: 30px;
	width: calc(33% - 20px);
}

.mission-vision-content .section-title {
	margin-bottom: 0;
}

.mission-vision-list {
	width: calc(40% - 20px);
	background-color: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
}

.mission-vision-item {
	position: relative;
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
	overflow: hidden;
}

.mission-vision-item:last-child {
	border-bottom: none;
}

.mission-vision-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover:before,
.mission-vision-item.active:before {
	top: auto;
	height: 100%;
}

.mission-vision-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.mission-vision-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	z-index: 1;
}

.mission-vision-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.mission-vision-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.mission-vision-item-content p {
	margin: 0;
}

.mission-vision-image {
	width: calc(27% - 20px);
}

.mission-vision-image figure {
	display: block;
	border-radius: 20px;
}

.mission-vision-image img {
	width: 100%;
	/*aspect-ratio: 1 / 1.39;*/
	object-fit: cover;
	border-radius: 20px;
}

.our-commitment {
	padding: 100px 0;
}

.our-commitment-image {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-commitment-img-1,
.our-commitment-img-2 {
	width: calc(50% - 15px);
}

.our-commitment-img-2 {
	padding-top: 50px;
}

.our-commitment-img-1 figure,
.our-commitment-img-2 figure {
	display: block;
	border-radius: 20px;
}

.our-commitment-img-1 img,
.our-commitment-img-2 img {
	width: 100%;
	/* aspect-ratio: 1 / 1.64;*/
	object-fit: cover;
	border-radius: 20px;
}

.commitment-contact-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 10px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.commitment-contact-circle a {
	display: block;
	border-radius: 50%;
}

.commitment-contact-circle a img {
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.our-commitment-content {
	margin-left: 15px;
}

.our-commitment-list {
	margin-bottom: 40px;
}

.our-commitment-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-commitment-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.our-commitment-list ul li:last-child {
	margin-bottom: 0;
}

.our-commitment-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0px;
	left: 0;
}

.our-commitment-body {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--accent-color);
	border-radius: 20px;
	overflow: hidden;
}

.commitment-intro-video {
	position: relative;
	width: 50%;
}

.commitment-intro-video figure {
	height: 100%;
}

.commitment-intro-video img {
	width: 100%;
	height: 100%;
	/*aspect-ratio: 1 / 0.61;*/
	object-fit: cover;
}

.commitment-intro-video .video-play-button a {
	height: 50px;
	width: 50px;
}

.commitment-intro-video .video-play-button i {
	font-size: 20px;
}

.commitment-intro-video .video-play-button a:after,
.commitment-intro-video .video-play-button a:before {
	top: -50%;
	left: -50%;
}

.commitment-body-content {
	width: 50%;
	padding: 20px;
	align-content: center;
}

.commitment-body-content img {
	width: 100%;
	max-width: 32px;
	margin-bottom: 15px;
}

.commitment-body-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.commitment-body-content p {
	color: var(--white-color);
	margin: 0;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-item .team-image {
	position: relative;
	margin-bottom: 20px;
}

.team-item .team-social-icon {
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.team-social-icon ul li a {
	width: 40px;
	height: 40px;
	color: var(--accent-color);
	background: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	background: var(--accent-secondary-color);
	color: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.team-item .team-social-icon ul {
	justify-content: center;
}

.team-item .team-social-icon ul a {
	display: flex;
	cursor: pointer;
}

.team-item .team-image a {
	border-radius: 20px;
	display: block;
	overflow: hidden;
}

.team-item .team-image img {
	width: 100%;
	/*aspect-ratio: 1 / 1.19;*/
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-item .team-content {
	text-align: center;
	margin-bottom: 0;
}

.team-item .team-content h2 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-item .team-content h2 a {
	color: inherit;
}

.team-item .team-content p {
	text-transform: capitalize;
	margin: 0;
}

.our-values {
	padding: 100px 0;
}

.values-list {
	margin-bottom: 40px;
}

.values-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.values-list ul li {
	position: relative;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.values-list ul li:last-child {
	margin-bottom: 0;
}

.values-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0px;
	left: 0;
}

.values-body {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.values-body-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.values-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.values-body-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.values-body-item:hover .icon-box::before {
	transform: scale(1);
}

.values-body-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.values-body-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.values-body-item-content {
	width: calc(100% - 70px);
}

.values-body-item-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
}

.values-image {
	position: relative;
	background: url('../images/icons/values-image-bg.svg') no-repeat;
	background-position: bottom 85px right 62px;
	background-size: auto;
	padding-right: 111px;
	margin-left: 15px;
}

.values-image:before {
	content: '';
	position: absolute;
	top: 0;
	right: 60px;
	width: 40px;
	height: 240px;
	background-color: var(--accent-secondary-color);
	border-radius: 12px;
}

.values-img figure {
	display: block;
	border-radius: 20px;
}

.values-img img {
	width: 100%;
	/*aspect-ratio: 1 / 1.05;*/
	object-fit: cover;
	border-radius: 20px;
}

.award-winning-box {
	position: absolute;
	right: 0;
	bottom: 30px;
	display: flex;
	align-items: center;
	background-color: var(--accent-color);
	border: 5px solid var(--white-color);
	border-radius: 20px;
	padding: 15px;
	overflow: hidden;
	z-index: 1;
}

.award-winning-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.award-winning-box:hover:before {
	right: auto;
	left: 0;
	width: 100%;
}

.award-winning-box .icon-box {
	margin-right: 10px;
}

.award-winning-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 60px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.award-winning-box:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.award-winning-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.award-winning-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.award-winning-box:hover .award-winning-content h3 {
	color: var(--primary-color);
}

/************************************/
/*** 	 20. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 21. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 30px;
	margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-catagery-list ul li {
	margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
	margin: 0;
}

.page-catagery-list ul li a {
	position: relative;
	display: block;
	line-height: normal;
	text-transform: capitalize;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 12px;
	line-height: 1.5em;
	padding: 16px 50px 16px 20px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.page-catagery-list ul li:hover a {
	color: var(--white-color);
}

.page-catagery-list ul li a::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
	background-image: url('../images/icons/arrow-accent.svg');
	background-color: var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.page-catagery-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/icons/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	padding: 30px;
	overflow: hidden;
}

.sidebar-cta-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sidebar-cta-logo,
.sidebar-cta-content {
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo {
	margin-bottom: 120px;
}

.sidebar-cta-logo img {
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 40px;
}

.sidebar-cta-content .btn-default img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.page-single-image {
	margin-bottom: 40px;
}

.page-single-image figure {
	display: block;
	border-radius: 20px;
}

.page-single-image img {
	width: 100%;
	/*aspect-ratio: 1 / 0.542;*/
	object-fit: cover;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	background: var(--secondary-color);
	border-radius: 20px;
	list-style: none;
	margin-bottom: 20px;
	padding: 20px;
}

.service-entry ul li {
	position: relative;
	width: calc(33.33% - 20px);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0px;
	left: 0;
}

.service-expert-box,
.service-approach-box,
.service-solution-box {
	margin-top: 60px;
}

.service-expert-list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.service-expert-list .about-body-item {
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.service-approach-box ul {
	margin-top: 40px;
}

.service-solution-image-content,
.service-solution-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-solution-image-content {
	align-items: center;
}

.service-solution-image,
.service-solution-image-content .why-choose-item {
	width: calc(50% - 15px);
}

.service-solution-image figure {
	display: block;
	border-radius: 20px;
}

.service-solution-image img {
	width: 100%;
	/*aspect-ratio: 1 / 0.66;*/
	object-fit: cover;
	border-radius: 20px;
}

.service-solution-image-content .why-choose-item::before,
.service-solution-item-list .why-choose-item::before {
	display: none;
}

.service-solution-item-list .why-choose-item {
	width: calc(33.33% - 20px);
}

/************************************/
/*** 	 22. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.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 {
	color: var(--secondary-color);
	background: var(--accent-color);
}

/************************************/
/*** 	 23. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.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;
	border-radius: 20px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	/*aspect-ratio: 1 / 0.50;*/
	object-fit: cover;
	border-radius: 20px;
}

.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 {
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2em;
	margin: 0 0 0.417em;
}

.post-entry h1 {
	font-size: 80px;
}

.post-entry h2 {
	font-size: 46px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.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 ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	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: url('../images/icons/icon-blockquote.svg'), var(--accent-secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 12px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-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: var(--accent-color);
	color: var(--white-color);
	border-radius: 12px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	 24. Projects Page css	  ***/
/************************************/

.page-projects {
	padding: 100px 0 70px;
}

.project-item {
	position: relative;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.project-image a,
.project-image figure {
	display: block;
}

.project-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.16%, rgba(0, 0, 0, 0.9) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.project-image img {
	width: 100%;
	/*aspect-ratio: 1 / 0.83;*/
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img {
	transform: scale(1.1);
}

.project-body {
	position: absolute;
	left: 20px;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	z-index: 1;
}

.project-item-content {
	width: calc(100% - 60px);
}

.project-item-content h3 {
	color: var(--white-color);
	font-size: 20px;
	line-height: 1.4em;
}

.project-item-content h3 a {
	color: inherit;
}

.project-readmore-btn a {
	width: 40px;
	height: 40px;
	background: var(--accent-secondary-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.project-readmore-btn a:hover {
	background: var(--white-color);
}

.project-readmore-btn a img {
	width: 100%;
	max-width: 24px;
}

/************************************/
/*** 	 25. Project Single css	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-catagery-list {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	margin-bottom: 60px;
}

.project-catagery-list h3 {
	font-size: 20px;
	margin-bottom: 30px;
}

.project-catagery-list ul {
	background-color: var(--white-color);
	border-radius: 20px;
	text-align: left;
	padding: 30px;
	margin-bottom: 30px;
}

.project-catagery-list ul li {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--primary-color);
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 16px;
	padding-bottom: 16px;
}

.project-catagery-list ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.project-catagery-list ul li span {
	width: 56%;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	color: var(--text-color);
}

.sidebar-social-list ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.sidebar-social-list ol li {
	display: inline-block;
}

.sidebar-social-list ol li a {
	background: var(--white-color);
	color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.sidebar-social-list ol li a:hover {
	background: var(--accent-secondary-color);
	color: var(--primary-color);
}

.sidebar-social-list a i {
	font-size: 20px;
	color: inherit
}

.project-entry {
	margin-bottom: 60px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.project-entry h2 span {
	color: var(--accent-color);
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0px;
	left: 0;
}

.project-measurable-box,
.projects-solution-box {
	margin-top: 60px;
}

.project-measurable-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.project-measurable-item {
	position: relative;
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.project-measurable-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.project-measurable-item:hover::before {
	height: 100%;
}

.project-measurable-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.project-measurable-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.project-measurable-item:hover .icon-box::before {
	transform: scale(1);
}

.project-measurable-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-measurable-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.project-measurable-item-content {
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.project-measurable-item-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.project-measurable-item-content p {
	transition: all 0.4s ease-in-out;
}

.project-measurable-item:hover .project-measurable-item-content p {
	color: var(--primary-color);
}

.projects-solution-list-box {
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.projects-solution-list {
	width: calc(50% - 15px);
}

.projects-solution-list h3 {
	font-size: 20px;
	margin-bottom: 30px;
}

.projects-solution-list-box ul {
	margin: 0;
}

/************************************/
/*** 	  26. Team Page css 	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 27. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-sidebar-box {
	border-radius: 20px;
	overflow: hidden;
}

.team-sidebar-image figure {
	display: block;
}

.team-sidebar-image img {
	width: 100%;
	/*aspect-ratio: 1 / 1.044;*/
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-sidebar-box:hover .team-sidebar-image img {
	transform: scale(1.1);
}

.team-sidebar-body {
	background: var(--accent-color);
	padding: 30px;
}

.team-sidebar-body h3 {
	font-size: 20px;
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.team-sidebar-body ul {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

.team-sidebar-body ul li {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--white-color);
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.team-sidebar-body ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.team-sidebar-body ul li span {
	width: 67%;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	opacity: 80%;
}

.team-sidebar-footer {
	background-color: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 30px;
}

.team-sidebar-footer h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.team-sidebar-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-sidebar-footer ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.team-sidebar-footer ul li:last-child {
	margin-right: 0;
}

.team-sidebar-footer ul li a {
	background-color: var(--white-color);
	color: var(--accent-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.team-sidebar-footer ul li a i {
	color: inherit;
	font-size: 18px;
}

.team-member-qualification,
.team-member-skills,
.team-contact-form {
	margin-top: 60px;
}

.member-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.member-info-item {
	position: relative;
	width: calc(25% - 22.5px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.member-info-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.member-info-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.member-info-item .icon-box,
.member-info-item-content {
	position: relative;
	z-index: 1;
}

.member-info-item .icon-box {
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 20px;
}

.member-info-item .icon-box img {
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
}

.member-info-item-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.member-info-item:hover .member-info-item-content h3 {
	color: var(--white-color);
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 15px;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

/************************************/
/*** 	 28. Pricing Page css	  ***/
/************************************/

.page-pricing {
	padding: 100px 0;
}

/************************************/
/***   29. Testimonials Page css  ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.page-testimonials .testimonial-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover::before {
	top: auto;
	height: 100%;
}

.page-testimonials .testimonial-item .testimonial-rating,
.page-testimonials .testimonial-item .testimonial-content,
.page-testimonials .testimonial-item .testimonial-author {
	position: relative;
	z-index: 1;
}

.page-testimonials .testimonial-item .testimonial-content p,
.page-testimonials .testimonial-item .author-content p {
	color: var(--text-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item .author-content h3 {
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover .testimonial-content p,
.page-testimonials .testimonial-item:hover .author-content h3,
.page-testimonials .testimonial-item:hover .author-content p {
	color: var(--white-color);
}

/************************************/
/*** 	 30. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	/*aspect-ratio: 1 / 0.83;*/
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 31. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	/*aspect-ratio: 1 / 0.83;*/
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 32. FAQs Page css  	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
	margin-bottom: 0px;
}

/************************************/
/*** 	33. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
}

.contact-us-form {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.page-contact-us .contact-us-form .section-title {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.google-map {
	margin-bottom: 40px;
}

.google-map iframe {
	width: 100%;
	height: 500px;
	border-radius: 20px;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.contact-info-item {
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
}

.contact-info-item.location-item {
	width: 100%;
}

.contact-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box:before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.contact-item-content {
	width: calc(100% - 70px);
}

.contact-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p {
	margin: 0;
}

.contact-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover {
	color: var(--primary-color);
}

/************************************/
/*** 	 34. 404 Error Page css	  ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p {
	margin-bottom: 20px;
}

/************************************/
/*** 	  35. Responsive css	  ***/
/************************************/

@media only screen and (max-width: 1300px) {
	.what-we-do-content {
		padding: 100px 30px;
	}
}

@media only screen and (max-width: 991px) {

	.btn-default {
		font-size: 14px;
		padding: 15px 50px 15px 15px;
	}

	.btn-default::before {
		width: 30px;
		height: 30px;
		background-size: 18px auto;
	}

	.topbar {
		padding: 10px 0;
	}

	.topbar-contact-info ul {
		gap: 15px;
	}

	.topbar-social-links ul li {
		padding-right: 10px;
		margin-right: 10px;
	}

	.topbar-contact-info ul li a i {
		font-size: 14px;
	}

	.topbar-social-links ul li a {
		font-size: 14px;
	}

	.topbar-social-links ul li a i {
		font-size: 16px;
		margin-right: 5px;
	}

	.navbar {
		padding: 15px 0;
	}

	.navbar-brand img {
		max-width: 180px;
	}

	.main-menu ul li.highlighted-menu {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title .text-style-3 {
		margin: 0;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero {
		padding: 50px 0 0;
	}

	.hero.hero-bg-image {
		padding: 100px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide {
		padding: 100px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-body {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.hero-body ul {
		gap: 15px 20px;
	}

	.hero-body ul li {
		padding-left: 25px;
	}

	.hero-body ul li:before {
		font-size: 16px;
	}

	.hero-btn::before {
		top: -10px;
		width: 80px;
		height: 50px;
	}

	.our-scrolling-ticker {
		padding: 15px 0;
	}

	.scrolling-ticker-box {
		--gap: 50px;
	}

	.scrolling-content img {
		height: 26px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		margin-bottom: 30px;
	}

	.successful-circle-img img {
		max-width: 130px;
	}

	.about-image img {
		/*aspect-ratio: 1 / 0.7;*/
	}

	.about-image-box-2 .about-image img {
		/*aspect-ratio: 1 / 0.99;*/
	}

	.about-image-box-3 .about-image {
		max-width: 370px;
	}

	.years-experience-box {
		max-width: 200px;
		padding: 15px;
		margin: 10px 0;
	}

	.years-experience-box .year-gap {
		font-size: 34px;
	}

	.about-us-content {
		margin-left: 0;
	}

	.about-body-item {
		margin-bottom: 30px;
	}

	.about-btn {
		margin-top: 30px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item {
		padding: 20px;
	}

	.service-item .icon-box {
		margin-bottom: 30px;
	}

	.service-item-content h3 {
		/*margin-bottom: 10px;*/
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-list ul {
		gap: 15px 20px;
	}

	.why-choose-list ul li {
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.why-choose-list ul li::before {
		font-size: 18px;
	}

	.why-choose-image .image-round img {
		/*aspect-ratio: 1 / 0.5;*/
	}

	.why-choose-item-list {
		gap: 30px 60px;
		margin-top: 40px;
	}

	.why-choose-item {
		width: calc(50% - 30px);
	}

	.why-choose-item::before {
		right: -30px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 30px;
	}

	.why-choose-item-content h3 {
		margin-bottom: 10px;
	}

	.what-we-do-image,
	.what-we-do-image figure {
		height: auto;
	}

	.what-we-do-image img {
		/*aspect-ratio: 1 / 0.52;*/
	}

	.what-we-do-content {
		padding: 50px 20px;
	}

	.what-we-do-footer {
		margin-top: 30px;
		padding-top: 30px;
	}

	.what-we-do-circle img {
		max-width: 120px;
	}

	.company-success {
		padding: 50px 0 20px;
	}

	.company-success-item {
		text-align: center;
	}

	.company-success-header {
		flex-direction: column;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.company-success-header .icon-box {
		margin: 0 0 10px 0;
	}

	.company-success-title {
		width: 100%;
	}

	.company-success-content h2 {
		font-size: 45px;
	}

	.company-success-content p {
		font-size: 14px;
	}

	.scrolling-ticker-text {
		margin-bottom: -6px;
	}

	.scrolling-ticker-text-box {
		--gap: 30px;
	}

	.scrolling-ticker-text-content span {
		font-size: 56px;
	}

	.scrolling-ticker-text-content span img {
		width: 30px;
		margin-right: 30px;
	}

	.our-benefits {
		padding: 50px 0;
	}

	.benefits-content {
		margin: 0 0 30px 0;
	}

	.benefits-body-item {
		padding: 15px;
	}

	.benefits-body-item h3 {
		margin-bottom: 10px;
	}

	.benefits-body-list ul {
		gap: 20px;
	}

	.benefits-body-list ul li {
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.benefits-body-list ul li::before {
		font-size: 18px;
	}

	.benefit-image img {
		/*aspect-ratio: 1 / 0.68;*/
	}

	.benefit-image-circle img {
		max-width: 110px;
	}

	.benefit-image-2 .benefit-image {
		max-width: 490px;
	}

	.benefit-image-2 .benefit-image img {
		/*aspect-ratio: 1 / 0.5;*/
	}

	.benefit-project-info {
		bottom: 50px;
		max-width: 205px;
		border-radius: 14px;
		padding: 10px;
	}

	.benefit-project-info .icon-box {
		margin-right: 10px;
	}

	.benefit-project-content {
		width: calc(100% - 60px);
	}

	.benefit-project-content h3 {
		font-size: 20px;
	}

	.how-it-work {
		padding: 50px 0;
	}

	.how-work-content {
		position: initial;
		top: 0;
		margin: 0 0 30px 0;
	}

	.work-process-item {
		padding: 20px;
		margin-bottom: 30px;
	}

	.work-process-content h3 {
		padding: 15px 0;
	}

	.work-process-content h2 {
		margin-bottom: 10px;
	}

	.work-process-image img {
		/*aspect-ratio: 1 / 0.6;*/
	}

	.our-testimonials {
		padding: 50px 0;
	}

	.testimonials-content {
		margin-bottom: 30px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.author-image figure img {
		max-width: 50px;
	}

	.author-content {
		width: calc(100% - 65px);
	}

	.testimonial-quote img {
		max-width: 8px;
	}

	.testimonial-pagination .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.testimonials-counter-list {
		margin-top: 40px;
		padding-top: 40px;
	}

	.testimonials-counter-item {
		width: calc(50% - 15px);
	}

	.testimonials-counter-item h2 {
		width: 38%;
		font-size: 45px;
	}

	.our-pricing {
		padding: 50px 0;
	}

	.pricing-item {
		padding: 30px 25px;
	}

	.pricing-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-header img {
		max-width: 40px;
		margin-bottom: 20px;
	}

	.pricing-header h3 {
		margin-bottom: 10px;
	}

	.pricing-header p {
		margin-bottom: 20px;
	}

	.pricing-header h2 {
		font-size: 36px;
	}

	.pricing-header sub {
		font-size: 14px;
	}

	.pricing-body ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.pricing-body ul li::before {
		font-size: 16px;
	}

	.pricing-footer .btn-default {
		padding: 15px;
	}

	.pricing-benefit-list {
		margin-top: 5px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faqs-image {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faqs-img img {
		/*aspect-ratio: 1 / 0.7;*/
	}

	.faq-contact-circle img {
		max-width: 130px;
	}

	.faqs-cta-box {
		width: 240px;
		padding: 15px;
	}

	.faqs-cta-box .icon-box {
		margin-right: 10px;
	}

	.faqs-cta-box .icon-box img {
		max-width: 35px;
	}

	.faqs-cta-box-content {
		width: calc(100% - 45px);
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 14px 50px 14px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		width: 22px;
		height: 22px;
		top: 16px;
		right: 20px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 14px 50px 14px 20px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.blog-item-body {
		padding: 20px;
	}

	.post-item-content {
		margin-bottom: 15px;
	}

	.footer-scrolling-ticker .scrolling-ticker-box {
		--gap: 20px;
	}

	.footer-scrolling-ticker .scrolling-content span {
		font-size: 22px;
	}

	.footer-scrolling-ticker .scrolling-content span img {
		max-width: 16px;
		margin-right: 20px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-logo img {
		max-width: 180px;
	}

	.footer-social-links ul li {
		margin-right: 10px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-links p {
		margin-bottom: 20px;
	}

	.footer-contact-item {
		margin-bottom: 15px;
	}

	.newsletter-form .form-group .form-control {
		padding: 12px 0 12px 15px;
	}

	.footer-copyright-text {
		padding: 30px 0;
		margin-top: 0;
	}

	.page-header {
		padding: 50px 0;
	}

	.page-header-box h1 {
		font-size: 55px;
	}

	.our-mission-vision {
		padding: 50px 0;
	}

	.mission-vision-content {
		position: initial;
		top: 0;
		width: 100%;
	}

	.mission-vision-list {
		width: calc(60% - 15px);
	}

	.mission-vision-image {
		width: calc(40% - 15px);
	}

	.mission-vision-item {
		padding: 20px;
	}

	.mission-vision-item .icon-box {
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.mission-vision-item .icon-box img {
		max-width: 24px;
	}

	.mission-vision-item-content {
		width: calc(100% - 60px);
	}

	.mission-vision-item-content h3 {
		margin-bottom: 10px;
	}

	.mission-vision-image img {
		/*aspect-ratio: 1 / 1.33;*/
	}

	.our-commitment {
		padding: 50px 0;
	}

	.our-commitment-image {
		max-width: 70%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.commitment-contact-circle a img {
		max-width: 130px;
	}

	.our-commitment-content {
		margin-left: 0;
	}

	.our-commitment-list {
		margin-bottom: 30px;
	}

	.our-commitment-list ul li {
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.our-commitment-list ul li::before {
		font-size: 18px;
	}

	.commitment-body-content img,
	.commitment-body-content h3 {
		margin-bottom: 10px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-item .team-image {
		margin-bottom: 15px;
	}

	.team-item .team-image img {
		/*aspect-ratio: 1 / 1.05;*/
	}

	.team-item .team-social-icon {
		right: 20px;
		left: 20px;
	}

	.team-item:hover .team-social-icon {
		bottom: 20px;
	}

	.our-values {
		padding: 50px 0;
	}

	.values-content {
		margin-bottom: 30px;
	}

	.values-list {
		margin-bottom: 30px;
	}

	.values-list ul li {
		font-size: 18px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.values-list ul li:before {
		font-size: 18px;
	}

	.values-body {
		padding: 20px;
	}

	.values-image {
		max-width: 80%;
		margin: 0 auto;
	}

	.award-winning-box {
		padding: 10px;
	}

	.award-winning-box .icon-box img {
		max-width: 50px;
	}

	.award-winning-content {
		width: calc(100% - 60px);
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-catagery-list {
		margin-bottom: 30px;
	}

	.page-catagery-list h3 {
		margin-bottom: 20px;
	}

	.page-catagery-list ul li a {
		padding: 12px 40px 12px 15px;
	}

	.page-catagery-list ul li a::before {
		right: 15px;
		background-size: 16px auto;
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-logo {
		margin-bottom: 60px;
	}

	.sidebar-cta-content h3 {
		margin-bottom: 30px;
	}

	.page-single-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul {
		gap: 15px 20px;
		margin-bottom: 15px;
		padding: 15px;
	}

	.service-entry ul li {
		width: calc(33.33% - 13.33px);
		padding-left: 24px;
		font-size: 14px;
	}

	.service-entry ul li::before {
		font-size: 16px;
	}

	.service-expert-box,
	.service-approach-box,
	.service-solution-box {
		margin-top: 40px;
	}

	.service-expert-list {
		margin-top: 30px;
	}

	.service-expert-list .about-body-item .icon-box {
		margin-right: 10px;
	}

	.service-expert-list .about-body-item-content {
		width: calc(100% - 60px);
	}

	.service-expert-list .about-body-item-content h3 {
		font-size: 18px;
	}

	.service-approach-box ul {
		margin-top: 30px;
	}

	.service-solution-image-content,
	.service-solution-item-list {
		margin-top: 30px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		margin: 0 0 0.42em;
	}

	.post-entry h2 {
		font-size: 36px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 35px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 20px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-projects {
		padding: 50px 0 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-catagery-list {
		margin-bottom: 30px;
		padding: 20px;
	}

	.project-catagery-list h3 {
		margin-bottom: 20px;
	}

	.project-catagery-list ul {
		padding: 20px;
		margin-bottom: 20px;
	}

	.project-catagery-list ul li span {
		width: 70%;
	}

	.project-entry {
		margin-bottom: 40px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.project-entry ul {
		margin-bottom: 15px;
	}

	.project-entry ul li {
		font-size: 14px;
		padding-left: 24px;
		margin-bottom: 10px;
	}

	.project-entry ul li::before {
		font-size: 16px;
	}

	.project-measurable-box,
	.projects-solution-box {
		margin-top: 40px;
	}

	.project-measurable-item-list {
		gap: 20px;
		margin: 30px 0;
	}

	.project-measurable-item {
		width: calc(50% - 10px);
		padding: 15px;
		border-radius: 12px;
	}

	.project-measurable-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.project-measurable-item .icon-box img {
		max-width: 26px;
	}

	.project-measurable-item-content {
		width: calc(100% - 60px);
	}

	.project-measurable-item-content p {
		font-size: 14px;
	}

	.projects-solution-list-box {
		margin-top: 30px;
	}

	.projects-solution-list h3 {
		margin-bottom: 20px;
	}

	.projects-solution-list-box ul {
		margin: 0;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-sidebar-image img {
		/*aspect-ratio: 1 / 0.7;*/
	}

	.team-sidebar-body {
		padding: 20px;
	}

	.team-sidebar-body h3 {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.team-sidebar-body ul li {
		margin-bottom: 15px;
	}

	.team-sidebar-footer {
		padding: 20px;
	}

	.team-member-qualification,
	.team-member-skills,
	.team-contact-form {
		margin-top: 40px;
	}

	.member-info-list {
		margin-top: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.team-contact-form.contact-us-form {
		margin-bottom: 0;
	}

	.page-pricing {
		padding: 50px 0;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item {
		padding: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img {
		/*aspect-ratio: 1 / 0.75;*/
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.video-gallery-image img {
		/*aspect-ratio: 1 / 0.75;*/
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs-catagery .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-us-form {
		padding: 30px;
		margin-bottom: 30px;
	}

	.page-contact-us .contact-us-form .section-title {
		padding-bottom: 30px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map {
		margin-bottom: 30px;
	}

	.google-map iframe {
		height: 400px;
	}

	.contact-info-item {
		padding: 15px;
	}

	.contact-info-item .icon-box {
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box img {
		max-width: 26px;
	}

	.contact-item-content {
		width: calc(100% - 55px);
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}

	.error-page-content .section-title,
	.error-page-content-body p {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {

	.topbar-social-links {
		display: none;
	}

	.topbar-contact-info ul {
		justify-content: center;
	}

	.topbar-contact-info ul li a i {
		margin-right: 5px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-body ul {
		gap: 10px;
	}

	.hero-body ul li {
		font-size: 14px;
	}

	.hero-image img {
		max-width: 100%;
	}

	.hero-btn::before {
		right: -60px;
		top: 5px;
		width: 55px;
		height: 30px;
		animation-duration: 2s;
	}

	@keyframes ctaarrow {
		50% {
			right: -80px;
		}
	}

	.scrolling-ticker-box {
		--gap: 35px;
	}

	.scrolling-content img {
		max-width: 100px;
		height: 22px;
	}

	.successful-circle-img img {
		max-width: 90px;
	}

	.about-image figure,
	.about-image img {
		border-radius: 14px;
	}

	.about-image-box-2 .about-image img {
		/*aspect-ratio: 1 / 1.12;*/
	}

	.about-image-box-3 {
		margin-top: -20px;
		margin-left: -5px;
	}

	.about-image-box-3 .about-image {
		max-width: 215px;
	}

	.about-image-box-3 .about-image .image-round {
		border-width: 5px;
		border-radius: 20px;
	}

	.about-image-box-3 .about-image img {
		border-radius: 12px;
	}

	.years-experience-box {
		max-width: 150px;
		padding: 10px;
	}

	.years-experience-box .year-gap {
		font-size: 24px;
		width: 36px;
	}

	.years-experience-box .year-text {
		font-size: 16px;
	}

	.about-body-item .icon-box {
		margin-right: 10px;
	}

	.about-body-item-content {
		width: calc(100% - 60px);
	}

	.about-body-item-content h3 {
		font-size: 18px;
	}

	.service-item .icon-box {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.service-item-content {
		/*margin-bottom: 15px;*/
		padding-bottom: 15px;
	}

	.section-footer-text p {
		font-size: 16px;
	}

	.section-footer-text span {
		font-size: 14px;
		padding: 4px 6px;
		margin-right: 5px;
	}

	.why-choose-list ul {
		gap: 10px;
	}

	.why-choose-list ul li {
		width: 100%;
	}

	.why-choose-image .image-round img {
		/*aspect-ratio: 1 / 0.65;*/
	}

	.video-play-button a {
		width: 60px;
		height: 60px;
	}

	.video-play-button i {
		font-size: 26px;
	}

	.video-play-button a::before,
	.video-play-button a::after {
		top: -33%;
		left: -33%;
	}

	.why-choose-item-list {
		margin-top: 30px;
	}

	.why-choose-item {
		width: 100%;
	}

	.why-choose-item::before {
		width: 100%;
		height: 1px;
		left: auto;
		top: auto;
		right: 0;
		bottom: -15px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 20px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.what-we-do-image img {
		/*aspect-ratio: 1 / 0.8;*/
	}

	.what-do-body-list {
		gap: 20px;
	}

	.what-do-body-item {
		width: 100%;
	}

	.what-do-body-content h3 {
		font-size: 18px;
	}

	.what-we-do-footer {
		margin-top: 20px;
		padding-top: 20px;
	}

	.what-we-do-circle img {
		max-width: 90px;
	}

	.company-success-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.company-success-title h3 {
		font-size: 18px;
	}

	.company-success-content h2 {
		font-size: 30px;
	}

	.scrolling-ticker-text {
		margin-bottom: -4px;
	}

	.scrolling-ticker-text-box {
		--gap: 20px;
	}

	.scrolling-ticker-text-content span {
		font-size: 30px;
	}

	.scrolling-ticker-text-content span img {
		width: 20px;
		margin-right: 20px;
	}

	.benefits-body {
		gap: 20px;
		margin-bottom: 20px;
	}

	.benefits-body-item {
		width: 100%;
	}

	.benefits-body-list ul {
		gap: 10px;
	}

	.benefits-body-list ul li {
		width: 100%;
	}

	.benefit-image-2 {
		margin-top: -40px;
	}

	.benefit-image img {
		/*aspect-ratio: 1 / 0.775;*/
	}

	.benefit-image-circle img {
		max-width: 90px;
	}

	.benefit-image-2 .benefit-image {
		max-width: 270px;
		border-width: 5px;
		border-radius: 16px;
	}

	.benefit-image-2 .benefit-image figure,
	.benefit-image-2 .benefit-image img {
		border-radius: 12px;
	}

	.benefit-image-2 .benefit-image img {
		/*aspect-ratio: 1 / 0.611;*/
	}

	.benefit-project-info {
		bottom: -30px;
		max-width: 180px;
		animation: none;
	}

	.benefit-project-info .icon-box {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.benefit-project-content {
		width: calc(100% - 50px);
	}

	.benefit-project-content h3 {
		font-size: 18px;
	}

	.benefit-project-content p {
		font-size: 14px;
	}

	.work-process-item {
		gap: 20px;
	}

	.work-process-content,
	.work-process-image {
		width: 100%;
	}

	.work-process-content h3 {
		padding: 15px 0;
	}

	.work-process-content h2 {
		font-size: 18px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.author-content h3 {
		font-size: 18px;
	}

	.testimonial-pagination {
		position: relative;
		margin-top: 30px;
		justify-content: center;
	}

	.testimonials-counter-list {
		margin-top: 20px;
		padding-top: 20px;
		gap: 20px;
	}

	.testimonials-counter-item {
		width: calc(50% - 10px);
	}

	.testimonials-counter-item h2 {
		width: 78%;
		font-size: 28px;
	}

	.testimonials-counter-item p {
		font-size: 14px;
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-header img,
	.pricing-header p {
		margin-bottom: 15px;
	}

	.pricing-header h3 {
		font-size: 18px;
	}

	.pricing-header h2 {
		font-size: 26px;
	}

	.pricing-benefit-list ul {
		gap: 10px;
	}

	.pricing-benefit-list ul li {
		width: calc(50% - 5px);
		font-size: 12px;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.faqs-image {
		padding: 5px 20px 0 0;
	}

	.faqs-img img {
		/*aspect-ratio: 1 / 1.1;*/
	}

	.faq-contact-circle {
		border-width: 5px;
	}

	.faq-contact-circle img {
		max-width: 100px;
	}

	.faqs-cta-box {
		width: 210px;
		padding: 10px;
		border-radius: 10px;
	}

	.faqs-cta-box .icon-box img {
		max-width: 30px;
	}

	.faqs-cta-box-content {
		width: calc(100% - 40px);
	}

	.faqs-cta-box-content h3 {
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding: 12px 45px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		width: 20px;
		height: 20px;
		right: 15px;
		background-size: 14px auto;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 12px 15px 15px 15px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-social-links {
		gap: 15px;
	}

	.footer-social-links ul li a {
		width: 38px;
		height: 38px;
	}

	.footer-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.footer-social-links span {
		font-size: 18px;
	}

	.footer-links h3 {
		font-size: 18px;
	}

	.footer-copyright-text {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.mission-vision-list,
	.mission-vision-image {
		width: 100%;
	}

	.mission-vision-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.mission-vision-image figure {
		height: auto;
	}

	.mission-vision-image img {
		height: auto;
		/*aspect-ratio: 1 / 1.05;*/
	}

	.our-commitment-image {
		max-width: 100%;
		gap: 20px;
	}

	.our-commitment-img-1,
	.our-commitment-img-2 {
		width: calc(50% - 10px);
	}

	.our-commitment-img-2 {
		padding-top: 30px;
	}

	.commitment-contact-circle {
		border-width: 5px;
	}

	.commitment-contact-circle a img {
		max-width: 100px;
	}

	.commitment-intro-video,
	.commitment-body-content {
		width: 100%;
	}

	.commitment-intro-video figure,
	.commitment-intro-video img {
		height: auto;
	}

	.commitment-body-content h3 {
		font-size: 18px;
	}

	.team-item .team-content h2 {
		font-size: 18px;
	}

	.values-list ul li {
		font-size: 16px;
	}

	.values-body-item {
		width: 100%;
	}

	.values-body-item-content h3 {
		font-size: 18px;
	}

	.values-image {
		max-width: 100%;
		background-position: bottom 20px right 10px;
		background-size: auto 140px;
		padding-right: 50px;
	}

	.values-image:before {
		right: 10px;
		width: 30px;
		height: 140px;
	}

	.award-winning-box {
		border-radius: 12px;
		bottom: 20px;
	}

	.award-winning-box .icon-box img {
		max-width: 40px;
	}

	.award-winning-content {
		width: calc(100% - 50px);
	}

	.award-winning-content h3 {
		font-size: 18px;
	}

	.page-catagery-list,
	.sidebar-cta-box {
		padding: 20px;
	}

	.page-catagery-list h3,
	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.sidebar-cta-logo img {
		max-width: 50px;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.page-single-image img {
		/*aspect-ratio: 1 / 0.7;*/
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry ul {
		gap: 10px;
	}

	.service-entry ul li {
		width: 100%;
	}

	.service-expert-box,
	.service-approach-box,
	.service-solution-box {
		margin-top: 30px;
	}

	.service-expert-list {
		gap: 25px;
	}

	.service-expert-list .about-body-item {
		width: 100%;
	}

	.service-approach-box ul {
		margin-top: 20px;
	}

	.service-solution-image-content,
	.service-solution-item-list {
		gap: 20px;
	}

	.service-solution-image,
	.service-solution-image-content .why-choose-item {
		width: 100%;
	}

	.service-solution-image img {
		/*aspect-ratio: 1 / 0.58;*/
	}

	.service-solution-item-list .why-choose-item {
		width: 100%;
	}

	.post-single-meta ol li {
		font-size: 16px;
	}

	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		/*aspect-ratio: 1 / 0.7;*/
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 24px;
	}

	.tag-links {
		font-size: 18px;
	}

	.project-item-content h3 {
		font-size: 18px;
	}

	.project-catagery-list h3,
	.project-catagery-list ul li {
		font-size: 18px;
	}

	.project-catagery-list ul li span {
		width: 56%;
	}

	.project-entry h2 {
		font-size: 26px;
	}

	.project-measurable-box,
	.projects-solution-box {
		margin-top: 30px;
	}

	.project-measurable-item {
		width: 100%;
	}

	.project-measurable-item-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.projects-solution-list {
		width: 100%;
	}

	.projects-solution-list h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.team-sidebar-image img {
		/*aspect-ratio: 1 / 0.92;*/
	}

	.team-sidebar-body h3,
	.team-sidebar-body ul li,
	.team-sidebar-footer h3 {
		font-size: 18px;
	}

	.team-sidebar-body h3 {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.team-sidebar-footer {
		padding: 15px 20px;
	}

	.member-info-list {
		gap: 20px;
	}

	.member-info-item {
		width: calc(50% - 10px);
		padding: 15px;
	}

	.member-info-item-content h3 {
		font-size: 18px;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.skills-progress-bar .skillbar .skill-progress {
		height: 14px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map iframe {
		height: 350px;
	}

	.contact-info-list {
		gap: 20px;
	}

	.contact-info-item {
		width: 100%;
	}

	.contact-item-content h3 {
		font-size: 18px;
	}
}

@media (max-width: 525px) {
	.benefit-image-2 {
		margin-top: -20px;
	}
}

@media (max-width: 480px) {
	.benefit-image-1 {
		display: block;
	}
	.benefit-image-circle{
		margin-top:30px;
	}
	.benefit-image-2 {
		margin-top: 30px;
	}
}

.play-btn {
	display: inline-block;
	position: relative;
	z-index: 1;
}
.play-btn > i {
	display: inline-block;
	width: var(--icon-size, 60px);
	height: var(--icon-size, 60px);
	line-height: var(--icon-size, 60px);
	text-align: center;
	background-color: var(--white-color);
	color: var(--theme-color);
	font-size: var(--icon-font-size, 1.1em);
	border-radius: 50%;
	z-index: 1;
	-webkit-transition: all ease 0.4s;
	transition: all ease 0.4s;
}

.hero-title .play-btn > i {
	--icon-size: 55px;
	/*box-shadow: 0px 0px 30px #DFDDFB;*/
}

.hero-title .btn-title {
	color: var(--body-color);
}

.hero-title .th-btn {
	padding: 17px 30px;
}

/*תȦȦ*/
.hero-tag {
	position: relative;
	display: inline-block;
	width: 130px;
	height: 130px;
	overflow:hidden;
}

@media (max-width: 480px) {
	.hero-tag {
		display: block;
	}
}

.hero-tag .play-btn {
	position: absolute;
	font-size: 0;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	/* Medium Large devices */
	/* Small devices */
}

.hero-tag .play-btn:before, .hero-tag .play-btn:after {
	display: none;
}

.hero-tag .play-btn > i {
	--icon-size: 70px;
	font-size: 18px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	/*background-color: transparent;*/
}

.hero-title-anime {
	color:var(--white-color);
	background-color: #009b30;
	font-size: 14px;
	line-height: 26px;
	font-weight: 500;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	position: relative;
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, 0.3);
	text-align: center;
	animation: spin 20s infinite ease-in-out;
}

.hero-title-anime span {
	--rotate-letter: 24deg;
	min-height: 64px;
	position: absolute;
	min-width: 60px;
	left: 32px;
	top: 0px;
	-webkit-transform-origin: bottom center;
	-ms-transform-origin: bottom center;
	transform-origin: bottom center;
	-webkit-transform: rotate(var(--rotate-letter));
	-ms-transform: rotate(var(--rotate-letter));
	transform: rotate(var(--rotate-letter));
}

.hero-title-anime span.char2 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 2));
	-ms-transform: rotate(calc(var(--rotate-letter) * 2));
	transform: rotate(calc(var(--rotate-letter) * 2));
}

.hero-title-anime span.char3 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 3));
	-ms-transform: rotate(calc(var(--rotate-letter) * 3));
	transform: rotate(calc(var(--rotate-letter) * 3));
}

.hero-title-anime span.char4 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 4));
	-ms-transform: rotate(calc(var(--rotate-letter) * 4));
	transform: rotate(calc(var(--rotate-letter) * 4));
}

.hero-title-anime span.char5 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 5));
	-ms-transform: rotate(calc(var(--rotate-letter) * 5));
	transform: rotate(calc(var(--rotate-letter) * 5));
}

.hero-title-anime span.char6 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 6));
	-ms-transform: rotate(calc(var(--rotate-letter) * 6));
	transform: rotate(calc(var(--rotate-letter) * 6));
}

.hero-title-anime span.char7 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 7));
	-ms-transform: rotate(calc(var(--rotate-letter) * 7));
	transform: rotate(calc(var(--rotate-letter) * 7));
}

.hero-title-anime span.char8 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 8));
	-ms-transform: rotate(calc(var(--rotate-letter) * 8));
	transform: rotate(calc(var(--rotate-letter) * 8));
}

.hero-title-anime span.char9 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 9));
	-ms-transform: rotate(calc(var(--rotate-letter) * 9));
	transform: rotate(calc(var(--rotate-letter) * 9));
}

.hero-title-anime span.char10 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 10));
	-ms-transform: rotate(calc(var(--rotate-letter) * 10));
	transform: rotate(calc(var(--rotate-letter) * 10));
}

.hero-title-anime span.char11 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 11));
	-ms-transform: rotate(calc(var(--rotate-letter) * 11));
	transform: rotate(calc(var(--rotate-letter) * 11));
}

.hero-title-anime span.char12 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 12));
	-ms-transform: rotate(calc(var(--rotate-letter) * 12));
	transform: rotate(calc(var(--rotate-letter) * 12));
}

.hero-title-anime span.char13 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 13));
	-ms-transform: rotate(calc(var(--rotate-letter) * 13));
	transform: rotate(calc(var(--rotate-letter) * 13));
}

.hero-title-anime span.char14 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 14));
	-ms-transform: rotate(calc(var(--rotate-letter) * 14));
	transform: rotate(calc(var(--rotate-letter) * 14));
}

.hero-title-anime span.char15 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 15));
	-ms-transform: rotate(calc(var(--rotate-letter) * 15));
	transform: rotate(calc(var(--rotate-letter) * 15));
}

.hero-title-anime span.char16 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 16));
	-ms-transform: rotate(calc(var(--rotate-letter) * 16));
	transform: rotate(calc(var(--rotate-letter) * 16));
}

.hero-title-anime span.char17 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 17));
	-ms-transform: rotate(calc(var(--rotate-letter) * 17));
	transform: rotate(calc(var(--rotate-letter) * 17));
}

.hero-title-anime span.char18 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 18));
	-ms-transform: rotate(calc(var(--rotate-letter) * 18));
	transform: rotate(calc(var(--rotate-letter) * 18));
}

.hero-title-anime span.char19 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 19));
	-ms-transform: rotate(calc(var(--rotate-letter) * 19));
	transform: rotate(calc(var(--rotate-letter) * 19));
}

.hero-title-anime span.char20 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 20));
	-ms-transform: rotate(calc(var(--rotate-letter) * 20));
	transform: rotate(calc(var(--rotate-letter) * 20));
}

.hero-title-anime span.char21 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 21));
	-ms-transform: rotate(calc(var(--rotate-letter) * 21));
	transform: rotate(calc(var(--rotate-letter) * 21));
}

.hero-title-anime span.char22 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 22));
	-ms-transform: rotate(calc(var(--rotate-letter) * 22));
	transform: rotate(calc(var(--rotate-letter) * 22));
}

.hero-title-anime span.char23 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 23));
	-ms-transform: rotate(calc(var(--rotate-letter) * 23));
	transform: rotate(calc(var(--rotate-letter) * 23));
}

.hero-title-anime span.char24 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 24));
	-ms-transform: rotate(calc(var(--rotate-letter) * 24));
	transform: rotate(calc(var(--rotate-letter) * 24));
}

.hero-title-anime span.char25 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 25));
	-ms-transform: rotate(calc(var(--rotate-letter) * 25));
	transform: rotate(calc(var(--rotate-letter) * 25));
}

.hero-title-anime span.char26 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 26));
	-ms-transform: rotate(calc(var(--rotate-letter) * 26));
	transform: rotate(calc(var(--rotate-letter) * 26));
}

.hero-title-anime span.char27 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 27));
	-ms-transform: rotate(calc(var(--rotate-letter) * 27));
	transform: rotate(calc(var(--rotate-letter) * 27));
}

.hero-title-anime span.char28 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 28));
	-ms-transform: rotate(calc(var(--rotate-letter) * 28));
	transform: rotate(calc(var(--rotate-letter) * 28));
}

.hero-title-anime span.char29 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 29));
	-ms-transform: rotate(calc(var(--rotate-letter) * 29));
	transform: rotate(calc(var(--rotate-letter) * 29));
}

.hero-title-anime span.char30 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 30));
	-ms-transform: rotate(calc(var(--rotate-letter) * 30));
	transform: rotate(calc(var(--rotate-letter) * 30));
}

.hero-title-anime span.char31 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 31));
	-ms-transform: rotate(calc(var(--rotate-letter) * 31));
	transform: rotate(calc(var(--rotate-letter) * 31));
}

.hero-title-anime span.char32 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 32));
	-ms-transform: rotate(calc(var(--rotate-letter) * 32));
	transform: rotate(calc(var(--rotate-letter) * 32));
}

.hero-title-anime span.char33 {
	-webkit-transform: rotate(calc(var(--rotate-letter) * 33));
	-ms-transform: rotate(calc(var(--rotate-letter) * 33));
	transform: rotate(calc(var(--rotate-letter) * 33));
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	25% {
		-webkit-transform: rotate(-720deg);
		transform: rotate(-720deg);
	}

	50% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	75% {
		-webkit-transform: rotate(720deg);
		transform: rotate(720deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	25% {
		-webkit-transform: rotate(-720deg);
		transform: rotate(-720deg);
	}

	50% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	75% {
		-webkit-transform: rotate(720deg);
		transform: rotate(720deg);
	}
}
.fa-play:before {
	content: "\f04b";
	font-family: var(--icon-font, "FontAwesome");
	font-size:20px;
	line-height:25px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}