/*!
Theme Name: Presium Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: presium-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Presium Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--font-16: 16px;
	--font-18: 18px;
	--font-20: 20px;
	--font-22: 22px;
	--font-27: 27px;
	--font-33: 33px;
	--font-36: 36px;
	--font-40: 40px;
	--font-48: 48px;
	--font-54: 54px;
	--font-67: 67px;
	--font-72: 72px;
	--font-81: 81px;
	--font-108: 108px;
	--link-color: #999;
	--primary-color: #d82b25;
	--secondary-color: #0e3b52;
	--white-color: #ffffff;
	--black-color: #000;
	--base-color: #dfe0da;
	--other-color: #040406;
	--body-color: #f5f5f5;
	--font-spacemono: "Space Mono", monospace;
	--font-sora: "Sora", sans-serif;
	--grid-line: 0 0% 12%;
	--border-color: #242424;
}

* {
	box-sizing: border-box;
}

body,
html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
	/* overflow-x: hidden; */
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-sora);
	color: var(--other-color);
	font-size: var(--font-20);
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
	background: var(--base-color);
}

a {
	text-decoration: none;
	color: var(--white-color);
	transition: 0.5s all;
}

a:hover {
	color: var(--primary-color);
}

ol,
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
}

.title {
	font-size: var(--font-108);
	font-weight: 700;
}

.heading {
	font-size: var(--font-54);
	color: var(--white-color);
	/* text-transform: capitalize; */
}

.button {
	display: inline-block;
	position: relative;
	font-family: var(--font-spacemono);
	font-size: var(--font-16);
	line-height: 1;
	font-weight: 400;
	text-align: center;
	text-transform: capitalize;
	outline: none;
	border-radius: 0;
	padding: 11px;
	background: var(--primary-color);
	color: var(--white-color);
	cursor: pointer;
	transition: 0.5s all ease-in-out;
	border: 1px solid transparent;
	z-index: 0;
	overflow: hidden;
}

.button.black {
	background: var(--black-color);
	color: var(--white-color);
	border: 1px solid var(--border-color);
}

.button:hover {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.button.black:hover {
	background: var(--secondary-color);
}

.button:after {
	content: " \f061";
	font-family: 'fontAwesome';
	font-weight: 400;
}

img {
	max-width: 100%;
	display: block;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.wrapper {
	max-width: 1460px;
	margin: 0 auto;
	position: relative;
	padding: 0 10px;
}

.wrapper.small {
	max-width: 1346px;
}

section {
	padding: 125px 0;
	position: relative;
	overflow: hidden;
}

section.small-padding {
	padding: 100px 0;
}

section.pt-0 {
	padding-top: 0 !important;
}

section.pb-0 {
	padding-bottom: 0 !important;
}

section.p-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

p {
	margin: 0 0 20px 0;
	/* color: var(--link-color); */
}

p:last-child {
	margin: 0;
}

::placeholder {
	color: var(--base-color);
}

input,
textarea,
select {
	font-family: var(--font-sora);
	font-size: var(--font-16);
	font-weight: 400;
	color: var(--white-color);
	line-height: 1.2;
	appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	width: 100%;
	padding: 10px;
	border-radius: 0;
	outline: 0;
	border: 1px solid #ccc;
	display: block;
	background: #134a66;
}

select {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23d9d9d9" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>');
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center right 18px;
}

textarea {
	max-height: 150px;
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #d9d9d9;
	opacity: 0.75;
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 7px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.form-btn {
	position: relative;
	width: fit-content;
}

input.wpcf7-submit {
	width: fit-content;
	margin-top: 20px;
	text-align: center;
	/* border-radius: 50px; */
	white-space: break-spaces;
}

.wpcf7-spinner::before {
	top: 3px;
	left: 3px;
	width: 6px;
	height: 6px;
	transform-origin: 7px 7px;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.heading-group {
	margin-bottom: 20px;
}

.intro-description {
	margin-bottom: 20px;
}

.d-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

a.scrolltotop {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	bottom: 10px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--font-20);
	height: 50px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 50px;
	transition: 0.5s all;
	z-index: 99;
}

a.whatsapp-link {
	background: #25d366;
	border-radius: 50%;
	bottom: 70px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 50px;
	z-index: 99;
	transition: 0.5s all;
	font-size: 30px;
	border: 1px solid transparent;
}

a.whatsapp-link:hover {
	color: #25d366;
	background: var(--white-color);
	border: 1px solid #25d366;
}

a.scrolltotop:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.mb-0 {
	margin-bottom: 0 !important;
}
.m-0{
	margin:0 !important;
}

.grid-bg {
	background-image: linear-gradient(hsl(var(--grid-line)) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--grid-line)) 1px, transparent 1px);
	background-size: 64px 64px;
	opacity: 0.09;
	position: absolute;
	inset: 0;
}

.blink {
	animation: blink 1.2s steps(2) infinite;
	width: 7px;
	height: 7px;
	display: inline-block;
	background: var(--primary-color);
	margin-right: 5px;
	margin-top: 3px;
}

@keyframes blink {
	50% {
		opacity: 0
	}
}
.mt-0{
	margin-top:0 !important;
}

.sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	background-color: var(--base-color);
	width: 100%;
	z-index: 999999;
	/*     padding: 20px 0; */
	transition: 0.5s all;
	animation: slideDown 0.55s ease-out;
	box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.2);
	border: none !important;
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}
/* HEADER */
.header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding img {
	max-width: 100px;
}

.site-branding {
	width: fit-content;
	line-height: 1;
}

.header-right {
	display: flex;
	justify-content: space-between;
	/* width: 60%; */
	align-items: center;
}

.menu {
	display: flex;
	align-items: center;
}

.menu li {
	margin-right: 30px;
}

.site-header {
	padding: 10px 0;
	/* background: var(--secondary-color); */
}

.menu li a,
.small-heading,
.receipt-list-small-heading,
.number-heading,
.receipt-detail p {
	font-size: var(--font-16);
	font-weight: 400;
	position: relative;
	color: var(--other-color);
	font-family: var(--font-spacemono);
	text-transform: uppercase;
	line-height: 1;
}

.menu li a:before,
.small-heading:before {
	content: "[";
	margin-right: 2px;
	font-size: var(--font-20);
}

.menu li a:hover {
	color: var(--secondary-color);
}

.menu li a:after,
.small-heading:after {
	content: "]";
	margin-left: 2px;
	font-size: var(--font-20);
}

.menu li.current-menu-item a {
	color: var(--primary-color);
}

.header-btn {
	line-height: 1;
}

.toggle {
	display: none;
}

.bar {
	background: var(--primary-color);
	width: 34px;
	height: 3px;
	margin: 3px 0;
	display: inline-block;
	margin-left: auto;
	border-radius: 5px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	cursor: pointer;
	z-index: 99;
}
.bar:first-child {
	width: 24px;
}

.bar:last-child {
	width: 17px;
}

.bar.animate.bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

span.bar.animate.bar:nth-child(2) {
	opacity: 0;
}

.bar.animate {
	background-color: var(--primary-color);
}

.bar.animate.bar:nth-child(3) {
	transform: rotate(45deg) translate(-7px, -8px);
	width: 24px;
}

.toggle.active .bar {
	margin-right: 20px;
}
/* CTA */
.small-heading {
	/* padding:0 5px; */
	margin-bottom: 15px;
	display: flex;
}

.bg {
	background: radial-gradient(circle at 80% 50%, rgb(216 43 37 / 6%), transparent 55%);
	position: absolute;
	inset: 0;
}

span.green {
	display: block;
	color: var(--primary-color);
}

.cta-left .heading {
	font-size: var(--font-81);
	color: var(--secondary-color);
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: end;
}

.cta-btn {
	line-height: 1;
}

.cta-btn .button {
	padding: 20px 35px;
}
.cta-left {
	width: 70%;
}

.cta-description {
	width: 65%;
}

.cta {
	z-index: 1;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.site-footer {
	padding: 75px 0;
	background: var(--black-color);
}

.footer-block .heading {
	font-size: var(--font-33);
}

.footer-top {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer-block {
	max-width: 460px;
}

ul.footer-menu {
	display: flex;
	flex-wrap: wrap;
	margin: -2px 0;
}

ul.footer-menu li {
	width: 50%;
	margin: 2px 0;
}

ul.footer-menu li a {
	font-size: var(--font-16);
	color: rgba(245, 245, 245, 0.8);
}

.footer-heading {
	font-size: var(--font-16);
	font-weight: 400;
	position: relative;
	color: var(--link-color);
	font-family: var(--font-spacemono);
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 20px;
}

.footer-description p,
.counter-content p {
	font-size: var(--font-16);
	position: relative;
	color: var(--white-color);
	margin-bottom: 20px;
}
.footer-menu a:hover {
	color: var(--primary-color);
}
.footer-block .button {
	padding: 0;
	background: transparent;
	color: var(--primary-color);
	border:none;
}
.footer-block .button:hover {
	background: transparent;
	color:var(--white-color);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.copyright {
	width: fit-content;
}

.copyright p,
.footer-right p {
	font-size: var(--font-16);
	font-weight: 400;
	position: relative;
	color: var(--link-color);
	font-family: var(--font-spacemono);
	text-transform: uppercase;
	line-height: 1;
}

.contact-block a {
	font-size: var(--font-16);
}

.contact-block p {
	font-size: var(--font-16);
	font-weight: 400;
	position: relative;
	color: var(--link-color);
	font-family: var(--font-spacemono);
	line-height: 1;
}

.contact-block:not(:last-child) {
	margin-bottom: 10px;
}

.footer-right {
	display: flex;
	/* align-items: center; */
}

/* BANNER */
.banner-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}

.banner-left {
	width: 55%;
}

.banner-left .intro-description {
	width: 65%;
}

.btn-group {
	display: flex;
	line-height: 1;
	flex-wrap:wrap;
}

.btn-left {margin-right: 10px;}

.btn-group .button {
	padding: 15px 27px;
}

.banner-left .small-heading:before,
.banner-left .small-heading:after,
.contact-left .small-heading:before,
.contact-left .small-heading:after {
	content: none;
}

/* MARQUEE */
.marquee-content {
	width: 240%;
	display: flex;
	justify-content: flex-end;
	animation: marquee-reverse 80s linear infinite;
	position: relative;
	padding: 20px 0;
	box-shadow: 0 0 20px 0 #000;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.marquee-block {
	margin-right: 30px;
	display: flex;
	flex: 0 0 auto;
}

.marquee-text {
	/* color: var(--black-color); */
	line-height: 1.2;
	font-size: var(--font-16);
	font-weight: 500;
	position: relative;
	display: flex;
	align-items: center;
}

.marquee-text:before {
	content: "\f0c8";
	font-family: 'Font Awesome';
	margin-right: 20px;
	background: var(--primary-color);
	width: 7px;
	height: 7px;
	font-size: 0;
}

@keyframes marquee-reverse {
	0% {
		left: 0;
	}

	100% {
		left: -100%;
	}
}

.counter-row {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--border-color);
	/* margin: -1px; */
	margin-top: 90px;
}

.counter-main-block {
	width: 25%;
}

.counter-block {
	padding: 20px;
	border-right: 1px solid var(--other-color);
	height: 100%;
}

.counter-main-block:last-child .counter-block {
	border-right: 0;
}

.counter {
	font-size: var(--font-22);
	color: var(--primary-color);
}

.counter-number-block {
	margin-bottom: 10px;
}

.hero-banner .bg {
	background: radial-gradient(circle at 20% 30%, rgb(216 43 37 / 12%), transparent 50%);
}

.banner-left .title .green {
	border-bottom: 6px solid rgb(216 43 37 / 30%);
	padding-bottom: 5px;
}

/* SECTION ONE */
.section-top {
	width: 40%;
}
.div-sticky {
	position: sticky;
	top: 80px;
	position: -webkit-sticky;
}


/* SERVICES */
.service-list {
	width: 48%;
}

ul.service-list li {
	width: 100%;
}

.service-block {
	padding: 20px 35px;
	padding-right: 0;
	height: 100%;
	position: relative;
	transition: all 0.4s ease;
	border-left: 1px dashed var(--link-color);
}

.service-block a {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.number {
	display: flex;
	justify-content: space-between;
	font-size: var(--font-16);
	font-family: var(--font-spacemono);
	color: var(--link-color);
	margin-bottom: 20px;
}

.service-content {
	position: relative;
	padding: 0 10px;
}

.service-content:after {
	content: "";
	background: var(--white-color);
	width: 0;
	height: 2px;
	display: flex;
	transition: 0.5s all;
	margin-top: 30px;
}

.service-block:hover .service-content:after {
	width: 100%;
}
/* .service-block:hover .number i {
color: var(--primary-color);
} */

.number i {
	transition: 0.5s all;
	font-size:var(--font-22);
	color: var(--body-color);
}

.service-heading {
	font-size: var(--font-27);
	color: rgb(245 245 245);
	margin-bottom: 15px;
}

.service-content p {
	font-size: var(--font-16);
	color: var(--white-color);
}
.opreating-image {
	width: 100px;
	height: 100px;
}
.opreating-image {
	/* width: 80px; */
	/* height: 80px; */
	overflow: hidden;
	/* display: flex; */
	/* justify-content: center; */
	/* align-items: center; */
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
	z-index: 0;
}

.opreating-image img {
	width: 100%;
	height: 100%;
	/* object-fit: contain; */
	transition: transform 0.4s ease;
}

.service-block:hover .opreating-image img {
	transform: scale(1.15);
}

/* OPRATING */

.oprating {
	background: rgb(26, 26, 26);
}

ul.oprating-list {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
	margin-top: 55px;
}

ul.oprating-list li {
	width: 25%;
	padding: 0 10px;
	margin: 10px 0;
}

.oprating-bot p {
	font-size: var(--font-16);
	color: var(--white-color);
}

.oprating-bot {
	/* margin-top: 20px; */
	/* padding-top: 10px; */
	/* border-top: 1px solid var(--border-color); */
	padding: 0 20px;
	margin-top: auto;
	z-index: 1;
	position: absolute;
	top: 100%;
	transition: 0.5s all;
	text-align: center;
	left: 0;
	padding: 15px;
	width: 100%;
	display: flex;
	justify-content: center;
	height: 100%;
	background: #006ba1;
	flex-direction: column;
	align-items: center;
}
.oprating-block:hover .oprating-bot {
	top: 0;
	margin: 0;
	height: 100%;
}

.oprating-small-heading {
	font-size: var(--font-22);
	color: var(--white-color);
	margin-bottom: 20px;
	border-bottom: 2px solid #fff;
	padding: 0 10px;
	padding-bottom: 7px;
}
.oprating-top .service-content:after {
	content: none;
}

.oprating-top .service-heading {
	margin-bottom: 30px;
}

.inner-oprating-block .number {
	color: var(--white-color);
	padding: 10px 25px;
	width: fit-content;
	background: var(--primary-color);
	font-size: var( --font-33);
	border-radius: 0 20px;
	/* margin: 0 auto; */
	/* margin-bottom: 40px; */
	/* background: var(--primary-color); */
}
/* REVIEW */
.review-right {
	/* display: flex; */
	/* flex-wrap: wrap; */
	/* margin: -10px; */
	/* margin-top: 55px; */
	width: 55%;
}

ul.review-list li {
	padding: 0 10px;
	width: 100%;
	margin: 10px 0;
	/* margin: 10px auto; */
}


.review-top p {
	font-size: var(--font-22);
	color: var(--white-color);
	position: relative;
	font-weight: 700;
}

.review-top {
	margin-bottom: 35px;
	color: var(--white-color);
}
.client-name {
	font-size: var(--font-16);
	color: rgb(245, 245, 245);
	margin-bottom: 5px;
	font-family: var(--font-spacemono);
}

.client-designation {
	font-size: var(--font-16);
	font-family: var(--font-spacemono);
}
.review-top p:before {
	content: " \f10d";
	font-family: 'FontAwesome';
	color: var(--primary-color);
	font-size: var(--font-16);
	vertical-align: super;
}

.review-top p:after {
	content: " \f10e";
	font-family: 'FontAwesome';
	color: var(--primary-color);
	font-size: var(--font-16);
	vertical-align: super;
}
.receipt .heading {
	color: var(--black-color);
	display: unset;
}

.section-one {
	background: var(--black-color);
	overflow: unset;
}



.number-heading, .receipt-detail p {
	color: var(--white-color);
}

.section-one .small-heading,.section-one {color: var(--white-color);}

.section-three .heading {
	color: var(--secondary-color);
}

.counter-content p {
	color: var(--other-color);
}
/* CONTACT PAGE */
.page-title {
	font-size: var(--font-72);
	font-family: var(--font-spacemono);
}

.contact-page-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: start;
}

.contact-left {
	width: 49%;
}

.contact-right {
	width: 47%;
	padding: 30px;
	background: var(--secondary-color);
	color: var(--white-color);
}

.contact-left .intro-description {
	width: 100%;
	margin-bottom: 40px;
}

.contact-detail-row .contact-block {
	margin-bottom: 0;
}

.contact-detail-row .contact-block > div {
	background: var(--secondary-color);
	padding: 20px;
	position: relative;
	border: 1px solid var(--link-color);
	margin-top: -1px;
}

.contact-detail-row .contact-block .footer-heading {
	margin-bottom: 10px;
}

.contact-detail-row .contact-block p {
	font-size: var(--font-18);
	font-weight: 600;
	color: var(--white-color);
}
.contact-detail-row .contact-block a{
	font-weight:600;
}
.contact-right .small-heading {color: var(--link-color);}

.contact-right .heading {
	font-size: var(--font-33);
	text-align: left;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: -10px;
}

.form-col {
	width: 50%;
	margin: 10px 0;
	padding: 0 10px;
}

label {
	color: var(--base-color);
	font-size: var(--font-16);
}

.form-col:last-child {
	width: 100%;
}
.contact-bot{
	margin-top:20px;
}
.contact-bot p{
	font-size:var(--font-16);
	color:var(--white-color);
}
.inner-banner-row .heading {
	color: var(--black-color);
	font-size: var(--font-72);
	text-align: left !important;
}
.section-two,.section-four {
	background: var(--secondary-color);
	color:var(--white-color);
}
.problem-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.problem-list li {
	width: 50%;

}
.problem-block ul li {
	width: 100%;
	margin-bottom: 10px;
}
.problem-block ul li:last-child {
	margin-bottom: 0;
}
.problem-block ul li p:before {
	content: '\f068';
	font-family: 'FontAwesome';
	padding-right: 15px;
	color: var(--primary-color);
}
.problem-block .heading {
	font-size: var(--font-40);
}
.problem-block .small-heading {
	color: var(--white-color);
}
.problem-block {
	height: 100%;
	padding: 30px;
	border: 1px solid var(--border-color);
	background:#134a66;
}
.section-three-content {
	display: flex;
	align-items: end;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.section-three-content .intro-description,.section-three-content .heading-group {
	width: 50%;
}

.scope-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* margin: -10px; */

}

.scope-list li {
	width: 50%;
	border: 1px solid var(--border-color);
}

.scope-block {
	height: 100%;
	background: var(--other-color);
	padding: 20px;
}

.section-three {
	background: rgb(26, 26, 26);
	color: var(--white-color);
}

.scope-block p:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	margin-right: 20px;
	color: var(--primary-color);
}
.section-three-content .small-heading {
	color: var(--white-color);
}
.section-three-content .heading{
	color:var(--primary-color);
}
.section-five .heading {
	color: var(--secondary-color);
	font-size: var(--font-48);
}

.section-five .heading-group {
	width: 100%;
}
.section-five ul.oprating-list li {
	width: 20%;
}
.section-four-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.section-four-left,
.section-four-right {
	width: 47%;
	/* background:#134a66; */
	/* border:1px solid var(--border-color); */
	/* padding: 30px; */
}
.fit-list li p:before {
	content: '\f068';
	font-family: 'FontAwesome';
	margin-right: 20px;
	color: var(--primary-color);
}

.section-four-right-list li {
	width: 100%;
	padding: 0 10px;
	margin: 10px 0;
}

.section-four-right-list {
	display: flex;
	flex-direction: column;
	margin: -10px;
}

.section-four-right-content {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #134a66;
	border-radius: 10px;
}

.section-four-right-content span {
	font-size: var(--font-54);
	margin-right: 10px;
}
.section-four-row .small-heading {
	color: var(--white-color);
}
.inner-banner-row span.green {
	/* display: inline-block; */
}

.inner-banner-row .intro-description {
	width: 81%;
}

.inner-banner-row .banner-left {
	width: 100%;
	text-align: left;
}
.scope-block p {
	display: flex;
	font-size: var(--font-16);
}

.fit-list li p {
	font-size: var(--font-16);
	display: flex;
}

.fit-list li:not(:last-child) {
	margin-bottom: 15px;
}

.section-four-right-content p {
	font-size: var(--font-16);
	width: 37%;
	text-align: right;
}

.section-four-left .heading, .section-four-right .heading {
	font-size: var(--font-36);
}
.section-one-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* border-top: 1px solid #585858; */
	/* align-items: center; */
	flex-wrap: wrap;
}

.service-heading:before {
	content: '\f192';
	font-family:'fontAwesome';
	color:var(--primary-color);
	position: absolute;
	font-size:var(--font-27);
	top: 0;
	transform: translate(-59px,0%);
	z-index: 3;
}
.animated-line {
	overflow: hidden;
}
.oprating .section-top {
	display: flex;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
}
.oprating-block {
	background: black;
	height: 100%;
	/* height: 400px; */
	display: flex;
	flex-wrap: wrap;
	padding: 20px 20px 200px;
	border-radius: 25px;
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
}

.oprating-top .service-content {
	color: var(--white-color);
	padding: 0;
}

.oprating-top {
	/* margin-bottom: 20px; */
	z-index: 1;
}
.oprating-block:hover {
	transform:scale(1.02);
	box-shadow: 0 10px 20px #0e3b528f;
}
.receipt-block img {
	transition: all 0.4s ease;
	/* filter: grayscale(100%) brightness(5); */
	opacity: 0.7;
	margin: auto;
	max-height: 100px;
	width: auto;
	display: block;
	object-fit: contain;
	aspect-ratio: 3 / 2;
}

section.receipt .grid-bg {
	background-image: linear-gradient(#a9a8a8 1px, transparent 1px), linear-gradient(90deg, #a9a8a8 1px, transparent 1px);
}
.review .heading-group {
	width: 40%;
	margin-bottom: 0;
}
.review .receipt-block {
	padding: 60px;
	border-left: 1px solid #626060;
	background: var(--black-color);
}
.review .section-one-row {
	align-items: center;
}

.review .section-one-row .small-heading{
	/* color: var(--white-color); */
	margin-bottom:20px;
}
.receipt .heading-group {
	width: 100%;
	text-align: center;
}
.receipt .heading-group .small-heading{
	justify-content: center;
	/* color: var(--white-color); */
}

.section-one-bg {
	animation: rotateScale 12s linear infinite;
	transform-origin: center;
	position: absolute;
	left: 0;
	margin-left: -50%;
	margin-top: -50%;
	z-index: -1;
}

@keyframes rotateScale {
	0% {
		transform: rotate(0deg) scale(1);
	}

	25% {
		transform: rotate(90deg) scale(1.2);
	}

	50% {
		transform: rotate(180deg) scale(1.3);
	}

	75% {
		transform: rotate(270deg) scale(1.2);
	}

	100% {
		transform: rotate(360deg) scale(1);
	}
}
.review .section-one-bg {
	position: absolute;
	margin-top: -20%;
	max-width: 500px;
	margin-left: auto;
	right: -5%;
	z-index: 0;
}
.service-image {
	width: 80px;
	/* height: 80px; */
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service-image img{
	width: 100%;
	/* height:80px; */
}
.opreating-process {
	margin-bottom: 20px;
}
.oprating .intro-description p {
	color: var(--white-color);
}

.oprating .small-heading {
	color: var(--white-color);
	justify-content: center;
}

.review .heading {
	color: var(--black-color);
}

/* Inner Service Page */
.inner-banner {
	background: var(--black-color);
	color: var(--white-color);
	text-align: center;
}

.inner-banner .grid-bg {
	background-image: linear-gradient(hsl(0deg 0% 100%) 1px, #ffffff00 1px), linear-gradient(90deg, hsl(0deg 0% 100%) 1px, #ffffff00 1px);
}
.inner-service-main {
	display: flex;
	/* justify-content: space-between; */
	flex-wrap: wrap;
	align-items: center;
}

.inner-service-left {
	width: 10%;
}

.inner-service-center {
	width: 67%;
	margin: 0px 40px 0 10px;
}

.inner-service-right {
	width: 20%;
	/* margin-right: 10px; */
}



.inner-service-block {
	background: var(--black-color);
	padding: 20px;
	border-radius: 25px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}
.inner-service-block:hover {
	background: var(--secondary-color);
}
.inner-icon-block img {
	width: 100%;
	height: 100%;
	transform: rotate(-30deg);
	transition: 0.2s all ease-in;
}

.inner-service-block:hover .inner-icon-block i {
	transform: rotate(0deg);

}

.inner-service-list {
	display: flex;
	justify-content: space-between;
	margin: -10px;
	color: var(--base-color);
	flex-wrap: wrap;
}

.inner-service-list li {
	width: 100%;
	padding: 0 10px;
	margin: 10px 0;
}
.inner-service-heading {
	font-size: var(--font-22);
	text-align: center;
}

.inner-service-image img {
	max-width: 80px;
	margin: 0 auto;
}

.inner-service-image {
	margin-bottom: 20px;
}

.inner-service-block a{
	position: absolute;
	inset: 0;
	z-index: 1;
}
.inner-icon-block i {
	transform: rotate(0deg);
	color: var(--black-color);
	font-size: var(--font-40);
	transition: 0.5s all ease-in;
	height: 80px;
	width: 80px;
	background: #fff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility:hidden;
	opacity:0;
	transition: 0.5s all;
}
.inner-icon-block {
	width: auto;
	flex: 0 0 auto;
}

.inner-service-block:hover .inner-icon-block i{
	visibility:visible;
	opacity:1;
	transform: rotate(-45deg);
	color: var(--secondary-color);
}
/* Inner Service Page */

/* Error */
.error-row span.green {
	display: inline-flex;
}
.error-row .heading {
	color: var(--black-color);
}

.error-row .title {
	margin-bottom: 15px;
}
/* Error */
.inner-oprating-block {
	background: var(--black-color);
	padding: 20px;
	border-radius: 25px;
	height: 100%;
}

.inner-oprating-heading {
	margin-bottom: 20px;
}
.button:hover {
	color: var(--black-color);
}
.button.black:hover{
	color:var(--white-color);
}
.capablities,.capablities-row .small-heading{
	background:var(--black-color);
	color: var(--white-color) !important;
}
.capablities-row{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.capablities-row .heading-group {
	width: 40%;
}
.capablities-row .intro-description {
	width: 60%;
	padding:20px;
	padding-left: 50px;
	border-left: 5px solid #d6d6d6b0;
}
.tag-line {
    display: flex;
    align-items: center;
    /* margin-bottom: 20px; */
}

.left-line p:not(:last-child) {
    margin-bottom: 10px;
}

.left-line {
    padding-right: 30px;
    border-right: 5px solid var(--primary-color);
    margin-right: 25px;
}

.receipt-list li:nth-child(odd) .receipt-block {
    background: var(--black-color);
}

.problem-description p {
    display: inline-flex;
}
.slick-dots li button:before {
    font-size:10px;
}

.slick-dots li.slick-active button:before  {
    color: var(--primary-color);
}
.section-four-right .btn {
    line-height: 1;
}

/* Slider */
.section-four-project img {
    width: 100%;
    height: 100%;
}

.section-four-project-list li , .section-four-project, .slick-slide, .slick-slide>div {
    height: 100%;
}

.slick-list {
	height: 100%;
	/* display: flex; */
}

.slick-track {
	height: auto;
	display: flex;
	align-items: center;
}
.section-four-project-list .slick-dots {
    transform: translateY(-50px);
}
/* Slider */

/* Image */
.image {
	position: relative;
	padding-top: 70%;
}

.image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
/* Image */
.section-four-project-list li {
    padding: 0 10px;
}

.section-four-project img {
    width: 100%;
    height: 100%;
}

.portfolio-service-list li {
    padding: 10px;
}

.portfolio-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.portfolio-left {
    width: 27%;
    border-right: 1px solid var(--black-color);
}

.portfolio-service-name {
    font-size: var(--font-22);
}
.portfolio-right {
    width: 70%;
}

.portfolio-image-list {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    margin: -10px;
}

.portfolio-image-list li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
}
.portfolio-image:hover img {
    scale: 1.05;
}
.portfolio-image img{
    width:100%;
    height:100%;
    transition:0.5s all;
}
.portfolio-image {
    height: 100%;
}

.portfolio-service-name:before {
    content: '\f054';
    font-family: 'FontAwesome';
    display: inline-flex;
    margin-right: 10px;
    color: var(--primary-color);
}
/* LOGO SLIDER */
.receipt-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-block {
    width: 20%;
}

.logo-block > div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.logo-list .slick-slide:nth-child(even) li .receipt-list {
    background: #fff;
}
.logo-list .slick-slide:nth-child(odd) li .receipt-list {
    background: #000;
}
.receipt .heading .green{
    display:unset;
}
.counter-number {
    margin-bottom: 30px;
}
.who-we-are .small-heading {
    /* justify-content: center; */
    /* color: var(--primary-color); */
}

/* FAQ */
.faq {
    background: var(--black-color);
}

.faq-row span.green {
    display: inline;
}


.accordion-block {
    background: #2e2e2e;
    color: var(--white-color);
    padding: 25px;
}
.faq-list{
    margin:-20px;
    margin-top:40px;
}
.faq-list li {
    padding: 0 20px;
    margin:20px 0;
}

.accordion-content {
    margin-top: 20px;
}
.accordion .faq-que{
    cursor: pointer;
    display: inline-flex;
    line-height: 1.5;
}
.accordion .faq-que:before {
    content: '\f054';
    font-family: 'FontAwesome';
    color: var(--primary-color);
    margin-right: 10px;
}
.faq-top .intro-description p {
    color: var(--white-color);
}
/* FAQ */

/* Testimonial */
.testimonial-list {
    column-count: 3;
    column-gap: 20px;
}

.testimonial-list li {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}
.testimonial-block {
    padding: 20px;
    border: 1px solid var(--border-color);
    background:Var(--black-color);
    color:var(--white-color);
    border-radius: 25px;
    position: relative;
}

.testimonial-block:after {
    content:'\f0dd';
    font-family: 'FontAwesome';
    position:absolute;
    right:0;
    bottom: 0;
    color: var(--black-color);
    font-size: var(--font-72);
    transform: translate(-30px, 40px);
    font-size: 72px;
}

.testimonial-main {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.quote {
    width: 50px;
    height: 50px;
    font-size: var(--font-27);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 100%;
    margin-right: 20px;
}
/* testimonial */
.inner-banner-row .btn-group {
    /* margin-top: 20px; */
}