@font-face {
	font-family: iwanzaza-Black;
	src: url("/fonts/iwanzaza-Black.otf") format("opentype");
}

@font-face {
	font-family: iwanzaza-Bold;
	font-weight: bold;
	src: url("/fonts/iwanzaza-Bold.otf") format("opentype");
}

@font-face {
	font-family: iwanzaza-Medium;
	font-weight: normal;
	src: url("/fonts/iwanzaza-Medium.otf") format("opentype");
}

@font-face {
	font-family: iwanzaza-Medium;
	font-weight: normal;
	src: url("/fonts/iwanzaza-Medium.otf") format("opentype");
}

@font-face {
	font-family: iwanzaza-Light;
	font-weight: normal;
	src: url("/fonts/iwanzaza-Light.otf") format("opentype");
}

:root {
	--white-color: #ffffff;
	--secondary-color: #313432;
	--thres-color: #93867a;
	--four-color: #2c565f;
	--five-color: #fee9d9;

	--section-bg-color: #f0f8ff;
	--dark-color: #000000;
	--p-color: #232323;
	--grad: linear-gradient(135deg, rgba(214, 196, 180, 1) 0%, rgba(214, 196, 180, 1) 28.19%, rgba(34, 78, 88, 1) 100%);

	--body-font-family: "Cairo", sans-serif;
	--title-font-bold: iwanzaza-Bold, sans-serif;
	--title2-font-black: iwanzaza-Black, sans-serif;
	--title2-font-reg: iwanzaza-Light, sans-serif;
	--h1-font-size: 58px;
	--h2-font-size: 46px;
	--h3-font-size: 32px;
	--h4-font-size: 28px;
	--h5-font-size: 24px;
	--h6-font-size: 22px;
	--p-font-size: 16px;
	--menu-font-size: 14px;
	--border-radius-large: 16px;
	--border-radius-medium: 9px;
	--border-radius-small: 4px;
	--font-weight-light: 300;
	--font-weight-normal: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--light: #ffffff;
	--dark: #000;
}

body {
	background-color: var(--white-color);
	font-family: var(--body-font-family);
	font-weight: 600;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
	color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--title-font-bold);
	font-weight: var(--font-weight-semibold);
}

h1 {
	font-size: var(--h1-font-size);
	font-family: var(--title-font-bold);
	margin: 30px auto;
}

h1 span {
	color: var(--primary-color);
}

h2 {
	font-size: var(--h2-font-size);
	font-weight: var(--font-weight-bold);
	color: var(--white-color);
}

h3 {
	font-size: var(--h3-font-size);
}

h4 {
	font-size: var(--h4-font-size);
}

h5 {
	font-size: var(--h5-font-size);
}

h6 {
	font-size: var(--h6-font-size);
}

p {
	color: #efefefeb;
	font-size: var(--p-font-size);
	font-weight: 550;
}

ul li {
	color: var(--p-color);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-light);
}

a,
button {
	touch-action: manipulation;
	transition: all 0.3s;
}

a {
	color: var(--primary-color);
	text-decoration: none;
}

a:hover {
	color: var(--link-hover-color);
}

b,
strong {
	font-weight: var(--font-weight-bold);
}

::selection {
	background-color: var(--four-color);
	color: var(--white-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-title-wrap {
	position: relative;
}

.section-title-wrap::after {
	content: "";
	background: var(--section-bg-color);
	width: 100%;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.section-title {
	z-index: 2;
	margin-bottom: 30px;
	padding: 10px 25px;
	color: white;
	text-align: center;
}

.section-padding {
	padding: 40px 0px;
}

main {
	position: relative;
	z-index: 1;
	min-height: 95dvh;
}

.section-bg {
	background-color: var(--section-bg-color);
}

.section-overlay {
	background-color: var(--primary-color);
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
	opacity: 0.85;
}

.section-overlay+.container {
	position: relative;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
	color: var(--primary-color);
}

.parallelogram {
	width: 70px;
	height: 150px;
	transform: skew(20deg);
	background: red;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
	background: var(--four-color);
	border: 2px solid transparent;
	border-radius: 4px;
	color: var(--white-color);
	font-family: var(--title-font-bold);
	font-size: 24px;
	font-weight: var(--font-weight-semibold);
	line-height: normal;
	transition: all 0.3s;
	padding: 10px 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.custom-btn:hover {
	background: var(--secondary-color);
	color: white;
	border-radius: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	-ms-border-radius: 9px;
	-o-border-radius: 9px;
}

.custom-border-btn {
	background: transparent;
	border: 2px solid var(--custom-btn-bg-color);
	color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
	background: var(--custom-btn-bg-color);
	border-color: transparent;
	color: var(--primary-color);
}

.custom-btn-bg-white {
	border-color: var(--white-color);
	color: var(--white-color);
}

.navbar i {
	color: var(--white-color);
	border-color: var(--thres-color);
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.navbar i:hover {
	color: var(--thres-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
	background-image: url("../images/templatemo-wave-header.jpg"), linear-gradient(#348cd2, #ffffff);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 480px;
	position: relative;
}

.site-header h2 {
	color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: #232323c8;
	width: 100%;
	z-index: 1;
	border-bottom: 2px solid #2323234a;
	z-index: 100;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
	color: var(--white-color);
}

.navbar-brand,
.navbar-brand:hover {
	font-size: var(--h3-font-size);
	font-weight: var(--font-weight-bold);
	display: inline-block;
}

.navbar-brand span {
	font-family: var(--title-font-family);
}

.navbar-nav .nav-link {
	display: inline-block;
	color: var(--section-bg-color);
	font-family: var(--title-font-bold);
	font-size: var(--menu-font-size);
	font-weight: var(--font-weight-medium);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	padding-top: 15px;
	padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
	padding: 0px 18px;
	font-size: 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
	color: var(--thres-color);
}

.navbar .dropdown-menu {
	background: var(--white-color);
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	border: 0;
	display: inherit;
	opacity: 0;
	min-width: 9rem;
	margin-top: 20px;
	padding: 13px 0 10px 0;
	transition: all 0.3s;
	pointer-events: none;
}

.navbar .dropdown-menu::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 15px solid var(--white-color);
	position: absolute;
	top: -10px;
	left: 10px;
}

.navbar .dropdown-item {
	display: inline-block;
	color: var(--p-bg-color);
	font-family: var(--title-font-family);
	font-size: var(--menu-font-size);
	font-weight: var(--font-weight-medium);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
	background: transparent;
	color: var(--secondary-color);
}

.navbar .dropdown-toggle::after {
	content: "\f282";
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-size: var(--menu-font-size);
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -0.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	left: 2px;
	border: 0;
}

@media screen and (min-width: 992px) {
	.navbar .dropdown:hover .dropdown-menu {
		opacity: 1;
		margin-top: 0;
		pointer-events: auto;
	}
}

.navbar .custom-border-btn {
	color: var(--white-color);
	border: 2px solid var(--thres-color);
}

.navbar .custom-border-btn:hover {
	background: var(--white-color);
	color: var(--primary-color);
	border-radius: var(--border-radius-large);
	-webkit-border-radius: var(--border-radius-large);
	-moz-border-radius: var(--border-radius-large);
	-ms-border-radius: var(--border-radius-large);
	-o-border-radius: var(--border-radius-large);
}

.navbar-toggler {
	border: 0;
	padding: 0;
	cursor: pointer;
	margin: 0;
	width: 30px;
	height: 35px;
	outline: none;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
	transition: top 300ms 50ms ease, transform 300ms 350ms ease;
	transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
	top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
	background: var(--white-color);
	transition: background 10ms 300ms ease;
	display: block;
	width: 30px;
	height: 2px;
	position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
	transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
	transition: top 300ms 350ms ease, transform 300ms 50ms ease;
	transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
	position: absolute;
	right: 0;
	left: 0;
	background: var(--white-color);
	width: 30px;
	height: 2px;
	content: "";
	-webkit-transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
	-moz-transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
	-ms-transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
	-o-transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
}

.navbar-toggler .navbar-toggler-icon::before {
	top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
	top: 8px;
}

/*---------------------------------------
  CAROUSEL        
-----------------------------------------*/
.hero-section {
	background-image: url("../images/Hero-section.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 120px;
	min-height: 100vh;
	background-attachment: fixed;
}

.about-hero-section {
	background-image: url("../images/backgrounds/About-hero.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 120px;
	min-height: 100vh;
	background-attachment: fixed;
}

.hero-section-service {
	background-image: url("../images/backgrounds/About-hero.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 120px;
	background-attachment: fixed;
}

.hero-section-service .card {
	background-color: var(--thres-color);
	border-radius: 14px;
	color: white;
	overflow: hidden;
	position: relative;
	transform-style: preserve-3d;
	perspective: 1000px;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
	-webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	-ms-border-radius: 14px;
	-o-border-radius: 14px;
}

.hero-section-service .card-content {
	padding: 10px 20px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: white;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
}

.hero-section-service .card-content img {
	width: 74px;
}

.hero-section-service .card-content .card-title {
	font-size: 24px;
	font-weight: 700;
	color: inherit;
	text-transform: uppercase;
}

.hero-section-service .card-content .card-para {
	color: inherit;
	opacity: 0.8;
	font-size: 14px;
}

.hero-section-service .card:hover {
	transform: rotateY(-10deg) rotateX(10deg) scale(1.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	-ms-border-radius: 1px;
	-o-border-radius: 1px;
	-webkit-transform: rotateY(-10deg) rotateX(10deg) scale(1.05);
	-moz-transform: rotateY(-10deg) rotateX(10deg) scale(1.05);
	-ms-transform: rotateY(-10deg) rotateX(10deg) scale(1.05);
	-o-transform: rotateY(-10deg) rotateX(10deg) scale(1.05);
}

.hero-section-service .card:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 1;
}

.hero-section-service .card:hover:before {
	transform: translateX(-100%);
}

.hero-section-service .card:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 1;
}

.hero-section-service .card:hover:after {
	transform: translateX(100%);
}

.about-hero-section .box {
	background: var(--secondary-color);
	padding: 10px 20px;
	border: 1px solid #23232350;
	border-radius: 3px;
	min-height: 180px;
}

.about-hero-section .box h3 {
	color: var(--thres-color);
}

.about-hero-section .box span {
	font-family: var(--body-font-family);
	font-weight: 650;
	color: white;
}

.about-hero-section .box:hover {
	background: #fee9d944;
	rotate: 3deg;
	transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-ms-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
}

.about-hero-section .box:hover h3 {
	color: #000000;
}

#stabout p {
	color: var(--dark);
	margin: auto 15px;
	padding: 14px;
}

#stabout h2 {
	text-align: center;
	color: var(--four-color);
	font-size: 64px;
	font-family: var(--title2-font-black);
}

.goals {
	padding: 40px auto;
	background: url(../images/backgrounds/Goals.svg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

.goal-card {
	background: #93867a56;
	padding: 20px 30px;
	margin: 24px;
	border-radius: 4px;
	border: 1px solid #22323250;
	text-align: center;
}

.goal-card:hover {
	background: var(--grad);
	border: 0;
	filter: drop-shadow(5px 6px 8px #000000);
	transition: 0.3s ease-in;
	-webkit-transition: 0.3s ease-in;
	-moz-transition: 0.3s ease-in;
	-ms-transition: 0.3s ease-in;
	-o-transition: 0.3s ease-in;
}

.goal-card h5 {
	color: white;
	font-family: cairo;
	font-weight: 750;
	font-size: 19px;
	line-height: 26px;
}

.ceo {
	padding: 40px 0px;
}

.ceo h2 {
	color: var(--four-color);
	font-family: var(--title2-font-black);
	font-weight: 750;
	margin: 10px auto;
}

.ceo .title {
	margin: 44px auto;
}

.ceo .para p {
	color: var(--menu-font-size);
	font-family: var(--body-font-family);
	font-size: 18px;
	padding: 12px;
}

.owl-carousel-info-wrap .owl-carousel {
	text-align: center;
}

.owl-carousel-info-wrap .owl-carousel-image {
	display: block;
}

.owl-carousel-info-wrap .owl-carousel .owl-item .owl-carousel-verified-image {
	display: inline-block;
	width: 30px;
	height: auto;
	position: relative;
	right: 5px;
}

#service-About h2 {
	font-size: 4.052em;
	color: var(--four-color);
	font-weight: 750;
}

.owl-carousel-info-wrap .verified-image {
	display: inline-block;
	width: 20px;
	height: auto;
}

.hero-section .owl-carousel .owl-item {
	opacity: 0.35;
	background-size: 200px 200px;
	display: flex;
	justify-content: center;
}

.owl-carousel .owl-item.active.center {
	opacity: 1;
}

.hero-section .owl-carousel .owl-item img {
	display: block;
	width: 64px;
	margin: auto;
	padding-top: 7px;
}

.owl-carousel-info-wrap .owl-carousel .owl-item img {
	display: block;
	width: 80px;
	margin: auto;
}

.owl-carousel-info-wrap {
	border-radius: var(--border-radius-small);
	position: relative;
	overflow: hidden;
	text-align: center;
	height: 185px;
	width: 130px;
	display: flex;
	flex-direction: column;
	padding: 20px 10px;
	background: url(../images/profile/PNG/Asset\ 1.png) no-repeat;
}

.owl-carousel-info h4 {
	margin: 0px 0px 0px 10px;
}

.custom-carousel .owl-dots,
.owl-carousel .owl-dots {
	display: flex;
	margin: 10px auto;
	padding: 15px 25px;
	padding-top: 15px;
	padding-right: 25px;
	padding-bottom: 15px;
	padding-left: 25px;
	justify-content: center;
}

.custom-carousel .owl-nav.disabled+.owl-dots,
.owl-theme .owl-nav.disabled+.owl-dots {
	margin: 40px auto;
	justify-content: center;
}

.custom-carousel .owl-dots .owl-dot .active span,
.custom-carousel .owl-dots .owl-dot:hover span .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--four-color);
	width: 18px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	color: var(--four-color) !important;
}

/*---------------------------------------.owl-theme .owl-dots .owl-dot span
  CUSTOM BLOCK              
-----------------------------------------*/
#About {
	margin: 30px;
}

.custom-block {
	border: 2px solid var(--primary-color);
	border-radius: var(--border-radius-medium);
	position: relative;
	overflow: hidden;
	padding: 20px;
	transition: all 0.3s ease;
	margin: 6px auto;
	border-radius: 2px;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 40dvh;
}

.custom-block:hover {
	background: var(--white-color);
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	border-color: transparent;
	transform: translateY(-3px) skewX(3deg);
	-webkit-transform: translateY(-3px) skewX(3deg);
	-moz-transform: translateY(-3px) skewX(3deg);
	-ms-transform: translateY(-3px) skewX(3deg);
	-o-transform: translateY(-3px) skewX(3deg);
	transition: 0.1s ease-in-out;
	-moz-transition: 0.1s ease-in-out;
	-ms-transition: 0.1s ease-in-out;
	-o-transition: 0.1s ease-in-out;
	-webkit-transition: 0.1s ease-in-out;
}

.custom-block:hover .custom-block-info h5 {
	color: var(--primary-color);
}

.custom-block:hover .custom-block-info ::after {
	content: icon;
}

.custom-block:hover .custom-block-info .background {
	right: 20px;
	top: 20px;
}

.custom-block:hover .custom-block-info .background object {
	font-size: 48px;
	width: 300px;
	height: 300px;
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
	opacity: 0.35;
}

.custom-block-info {
	display: block;
	padding: 5px 20px;
	padding-bottom: 0;
}

.custom-block-info .background {
	position: absolute;
	top: 0;
	right: -20px;
	transition: all 0.3s ease;
	z-index: -20;
}

.custom-block-info .background object {
	font-size: 48px;
	filter: grayscale(0.8);
	-webkit-filter: grayscale(0.8);
	width: 0px;
	height: 300px;
}

.custom-block .custom-block-top {
	border-radius: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	-ms-border-radius: 9px;
	-o-border-radius: 9px;
}

.custom-block .custom-block-top h6 {
	color: var(--thres-color);
	font-size: 20px;
	font-weight: 950;
}

.custom-block .custom-block-top h4 {
	color: var(--thres-color);
}

.custom-block-service-t,
.custom-block-service {
	background-color: #fee9d9;
	border: 2px solid var(--grad);
	padding: 20px 35px 0px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	transition: 0.35s ease-in-out;
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	-ms-transition: 0.35s ease-in-out;
	-o-transition: 0.35s ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.custom-block-service-t {
	max-width: 340px;
	min-height: 440px;
}

.custom-block-service-t img {
	width: 65% !important;
	margin: auto;
}

.custom-block-service-t h3 {
	text-align: center;
	font-size: 2.2rem;
}

.custom-block-service-t:hover,
.custom-block-service:hover {
	background: #fffadf;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	border: 1px solid var(--secondary-color);
	transition: 0.75s ease-in-out;
	-webkit-transition: 0.75s ease-in-out;
	-moz-transition: 0.75s ease-in-out;
	-ms-transition: 0.75s ease-in-out;
	-o-transition: 0.75s ease-in-out;
}

.custom-block-service-t:hover h3 {
	color: var(--four-color);
}

.custom-block-service img {
	position: absolute;
	top: 3px;
	right: -120px;
	height: 55%;
	z-index: -5;
	opacity: 0;
}

.custom-block-service:hover img {
	right: 0px;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	opacity: 0.5;
}

.custom-block-service i {
	border: 3px solid var(--secondary-color);
	font-size: 46px;
	border-radius: 4px;
	padding: 4px;
	color: var(--four-color);
	margin: 14px;
}

.custom-block-service:hover i {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: 1s ease-in-out;
	-webkit-transition: 1s ease-in-out;
	-moz-transition: 1s ease-in-out;
	-ms-transition: 1s ease-in-out;
	-o-transition: 1s ease-in-out;
	color: white;
	background-color: #2c565f;
	border: 1px solid var(--four-color);
}

.custom-block-service h3 {
	color: var(--four-color);
	font-size: 40px;
	margin: 14px;
	font-weight: 750;
}

.custom-block-service p {
	color: #000000;
}

/*---------------------------------------
  PROIFLE BLOCK               
-----------------------------------------*/
.profile-block {
	margin-top: 10px;
}

.profile-block-image {
	border-radius: var(--border-radius-large);
	width: 50px;
	height: 50px;
	object-fit: cover;
	margin-right: 10px;
}

.profile-block p strong {
	display: block;
	font-family: var(--title-font-family);
}

.profile-detail-block {
	border: 1px solid #dee2e6;
	border-radius: var(--border-radius-large);
	padding: 25px 35px;
}

.profile-detail-block p {
	margin-bottom: 0;
}

/*---------------------------------------
  ABOUT & TEAM SECTION               
-----------------------------------------*/
.about-image {
	border-radius: var(--border-radius-medium);
	display: block;
}

.team-thumb {
	border-radius: var(--border-radius-medium);
	position: relative;
	overflow: hidden;
}

.team-info {
	background-color: var(--white-color);
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 30px;
}

/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
	border: 1px solid #dee2e6;
	border-radius: var(--border-radius-large);
	padding: 20px;
}

.page-link {
	border: 0;
	border-radius: var(--border-radius-small);
	color: var(--p-color);
	font-family: var(--title-font-family);
	margin: 0 5px;
	padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
	background-color: var(--secondary-color);
	color: var(--white-color);
}

.page-item:first-child .page-link {
	margin-right: 10px;
}

.active>.page-link,
.page-link.active {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-info p strong {
	font-family: var(--title-font-family);
	min-width: 90px;
}

.contact-info p a {
	color: var(--p-color);
	border-bottom: 1px solid;
	padding-bottom: 3px;
}

.contact-info p a:hover {
	color: var(--secondary-color);
}

.contact-form .form-floating>textarea {
	border-radius: var(--border-radius-medium);
	height: 150px;
}

.contact-form h2 {
	margin-top: 0;
	color: var(--four-color);
	text-align: center;
}

.form-group {
	margin-bottom: 1rem;
}

label {
	display: block;
	font-weight: bold;
	color: var(--four-color);
	font-size: 20px;
	margin: 14px auto;
}

input,
textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid var(--four-color);
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 1rem;
}

textarea {
	resize: vertical;
	min-height: 150px;
}

.error-message {
	color: red;
	font-size: 0.875rem;
	display: none;
	/* Hidden by default */
}

.submit-button {
	background-color: #28a745;
	color: white;
	border: none;
	padding: 0.75rem;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.3s;
}

.submit-button:hover {
	background-color: #218838;
}

/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
	border: 1px solid var(--white-color);
	border-radius: var(--border-radius-small);
	width: 80%;
	position: relative;
	top: 12px;
	padding: 35px;
}

.subscribe-form-wrap h6 {
	background: var(--white-color);
	border-radius: var(--border-radius-medium);
	color: var(--primary-color);
	text-align: center;
	position: relative;
	bottom: 55px;
	margin-bottom: -25px;
	padding: 8px;
}

.subscribe-form #subscribe-email {
	border: 0;
	border-radius: 10px 10px 0 0;
	margin-bottom: 0;
}

.subscribe-form #submit {
	border-radius: 0 0 10px 10px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
	border-radius: var(--border-radius-small);
	color: var(--p-color);
	font-family: var(--title-font-family);
	font-size: var(--p-font-size);
	margin-bottom: 24px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	outline: none;
}

.form-floating>label {
	padding-left: 20px;
}

.custom-form button[type="submit"] {
	background: var(--custom-btn-bg-color);
	border: none;
	border-radius: var(--border-radius-large);
	color: var(--white-color);
	font-family: var(--title-font-family);
	font-size: var(--p-font-size);
	font-weight: var(--font-weight-semibold);
	transition: all 0.3s;
	margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
	background: var(--custom-btn-bg-hover-color);
	border-color: transparent;
}

/*---------------------------------------
  SEARCH FORM               
-----------------------------------------*/
.search-form .form-control {
	border: 0;
	margin-bottom: 0;
}

.search-form button[type="submit"] {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	max-width: 50px;
	height: 100%;
	padding-left: 15px;
}

.search-form button[type="submit"]:hover {
	background: var(--primary-color);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.footer-section {
	background: #151414;
	position: relative;
}

.footer-cta {
	border-bottom: 1px solid #373636;
}

.footer-cta img {
	width: 240px;
	margin: 15px;
}

.footer-cta .social ul {
	list-style-type: none;
	display: flex;
	margin: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-cta .social li {
	margin: 10px;
}

.footer-cta .social li span {
	font-family: var(--title2-font-reg);
	font-size: 30px;
	color: white;
}

.footer-cta .social li i {
	color: var(--white-color);
	font-size: 30px;
	float: left;
	margin-top: 8px;
	background: var(--secondary-color);
	padding: 6px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}

.footer-cta .social li i:hover {
	color: var(--thres-color);
	background: var(--four-color);
	transition: 0.3 ease-in-out;
	-webkit-transition: 0.3 ease-in-out;
	-moz-transition: 0.3 ease-in-out;
	-ms-transition: 0.3 ease-in-out;
	-o-transition: 0.3 ease-in-out;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.cta-text {
	padding-left: 15px;
	display: inline-block;
}

.cta-text h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}

.cta-text span {
	color: #757575;
	font-size: 15px;
}

.footer-content {
	position: relative;
	z-index: 2;
}

.footer-pattern img {
	position: absolute;
	top: 0;
	left: 0;
	height: 330px;
	background-size: cover;
	background-position: 100% 100%;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-logo img {
	max-width: 200px;
}

.footer-text p {
	margin-bottom: 14px;
	font-size: 14px;
	color: #7e7e7e;
	line-height: 28px;
}

.bx-ul {
	display: flex;
	flex-direction: column;
}

.footer-social-icon {
	display: flex;
	flex-direction: row;
}

.footer-social-icon span {
	color: #fff;
	display: block;
	font-size: 20px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	margin-bottom: 20px;
}

.footer-social-icon i {
	border-radius: 50%;
	right: -2.5em !important;
	top: 0.8em;
	color: var(--thres-color);
	font-weight: 900;
}

.footer-widget h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 40px;
	position: relative;
}

.footer-widget h3::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -15px;
	height: 2px;
	width: 50px;
	background: var(--secondary-color);
}

.project-info h1 {
	color: var(--four-color);
}

.project-info h6 {
	font-family: var(--body-font-family);
	font-size: var(--p-font-size);
	padding: 6px;
	margin: auto 14px 20px auto;
	font-weight: 500;
}

.project-info .flex-container {
	display: flex;
	flex-wrap: wrap;
}

.project-info .info {
	margin: 6px;
	min-width: 45%;
	flex-direction: row;
	display: flex;
}

.project-info h4 {
	color: var(--secondary-color);
	font-family: cairo;
	text-align: right;
	font-size: 20px;
	margin-right: 14px;
	font-weight: 600;
}

.project-info ul li,
.footer-widget ul li {
	display: flex;
	float: right;
	margin: 8px auto;
	width: 100%;
}

.project-info ul li a:hover .footer-widget ul li a:hover {
	color: var(--secondary-color);
}

.project-info .icon i,
.footer-widget .icon i {
	font-size: 36px !important;
	margin: 10px;
}

.div {
	margin: auto 4px;
	display: flex;
	flex-direction: column;
}

.project-info .icon {
	background: var(--grad);
	color: white;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}

.share {
	margin: 6px;
}

.share h3 {
	font-size: 31px;
	color: var(--four-color);
}

.share a {
	margin: auto 6px;
	background: var(--grad);
	color: var(--light);
	border-radius: 4px;
}

.share a:hover i {
	background: var(--four-color);
	color: var(--thres-color);
}

.share i {
	font-size: 36px;
	padding: 4px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}

.footer-widget .icon {
	background: var(--grad);
	border-radius: 4px;
	color: white;
}

.footer-widget ul {
	margin: 4px;
}

.product-info ul li a,
.footer-widget ul li a {
	color: var(--section-bg-color);
	text-transform: capitalize;
	padding: 10px;
}

.footer-widget ul li a:hover {
	font-weight: 650;
}

.subscribe-form {
	position: relative;
	overflow: hidden;
}

.subscribe-form input {
	width: 100%;
	padding: 14px 28px;
	background: #2e2e2e;
	border: 1px solid #2e2e2e;
	color: #fff;
	border-radius: 6px;
}

.subscribe-form button {
	position: absolute;
	left: 0;
	background: var(--four-color);
	padding: 0px 8px;
	border: 1px solid var(--thres-color);
	top: 0;
}

.subscribe-form button i {
	color: #fff;
	font-size: 55px !important;
	transform: rotate(-6deg);
}

.subscribe-form button i:hover {
	color: var(--thres-color);
}

.copyright-area {
	background: #202020;
	padding: 18px 0;
}

.copyright-text p {
	margin: 0;
	font-size: 14px;
	color: #878787;
}

.copyright-text p span {
	color: #ff5e14;
	font-weight: 800;
}

.footer-menu li {
	display: inline-block;
	margin-left: 20px;
}

.footer-menu li:hover a {
	color: #ff5e14;
}

.footer-menu li a {
	font-size: 14px;
	color: #878787;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
	margin: 0;
	padding: 0;
}

.social-icon-item {
	list-style: none;
	display: inline-block;
	vertical-align: top;
}

.social-icon-link {
	background: var(--secondary-color);
	border-radius: var(--border-radius-large);
	color: var(--white-color);
	font-size: var(--p-font-size);
	display: block;
	margin-right: 10px;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 40px;
	transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 2160px) {
	.hero-section {
		background-size: 100% 90%;
		/* T o o p l a t e . c o m   C u s t o m i z e d */
	}
}

@media screen and (min-width: 1600px) {
	.site-footer {
		padding-top: 250px;
	}
}

@media screen and (max-width: 1240px) {
	.hero-section {
		background-size: 116%;
		background-position: unset;
	}
}

@media screen and (max-width: 991px) {
	h1 {
		font-size: 64px;
	}

	h2 {
		font-size: 36px;
	}

	h3 {
		font-size: 32px;
	}

	h4 {
		font-size: 28px;
	}

	h5 {
		font-size: 20px;
	}

	h6 {
		font-size: 18px;
	}

	.hero-section {
		background-size: 160% 66%;
	}

	.section-padding {
		padding-top: 50px auto;
	}

	.custom-block {
		min-height: auto;
	}

	.custom-block-service {
		margin: 20px;
	}

	.navbar-nav {
		background-color: var(--primary-color);
		border-radius: var(--border-radius-medium);
		padding: 30px;
	}

	.navbar-nav .nav-link {
		padding: 5px 0;
	}

	.navbar-nav .dropdown-menu {
		position: relative;
		left: 10px;
		opacity: 1;
		pointer-events: auto;
		max-width: 155px;
		margin-top: 10px;
		margin-bottom: 15px;
	}

	.navbar-expand-lg .navbar-nav {
		padding-bottom: 20px;
	}

	.nav-tabs .nav-link:first-child {
		margin-right: 5px;
	}

	.nav-tabs .nav-link {
		font-size: var(--copyright-font-size);
		padding: 10px;
	}

	.copyright-text {
		text-align: center;
	}

	.site-footer {
		margin-top: -200px;
		padding-top: 200px;
		padding-bottom: 100px;
	}
}

@media screen and (max-width: 540px) {
	.hero-section {
		background-size: cover;
		min-height: 100dvh;
		background-position: bottom;
		padding-top: 30dvh;
	}

	.custom-block .custom-block-top {
		flex-direction: column;
	}

	.custom-block .custom-block-top small:last-child {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 480px) {
	h1 {
		font-size: 64px;
	}

	h2 {
		font-size: 53px;
	}

	h3 {
		font-size: 36px;
	}

	h4 {
		font-size: 22px;
	}

	h5 {
		font-size: 20px;
	}

	.desktop_7 .responsive-container-block {
		margin: 0px !important;
		width: auto;
	}

	.desktop_7 .card {
		display: flex;
	}

	.desktop_7 .card .imgBx {
		height: 140px;
	}

	.desktop_7 .card .imgBx img {
		position: absolute;
		top: -64px;
	}

	.owl-carousel-info h4 {
		margin: 0px 13px;
		font-family: var(--title2-font-reg);
		font-weight: 500;
	}

	.service {
		height: 100% !important;
	}

	#customers-testimonials {
		margin: 0px !important;
	}

	.custom-block-service-t {
		margin: 30px;
	}
}

@media screen and (max-width: 414px) {
	.search-form {
		max-width: 200px;
	}

	.gallary {
		padding: 0px !important;
	}

	.section-title {
		padding: 0px;
	}

	.testions .questios {
		padding: 14px;
	}

	.testions .content li {
		margin: 4px 1px !important;
	}

	#customers-testimonials {
		margin: 0px !important;
	}

	.section-padding {
		padding: 20px 0px;
	}

	#About {
		margin: 0px;
	}

	.custom-block-service-t {
		margin: 30px;
		width: 240px;
	}

	.client {
		max-height: 60px !important;
		max-width: 120px !important;
	}

	.about-hero-section {
		padding-top: 120px !important;
		min-height: auto;
	}
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */

/* -------- title style ------- */
.line-title {
	position: relative;
	width: 400px;
}

.line-title::before,
.line-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	border-radius: 2px;
}

.line-title::before {
	width: 100%;
	background: #f2f2f2;
}

.line-title::after {
	width: 64px;
	background: var(--grad);
}

/* -------- services  ------- */
#service {
	background: var(--grad);
	padding: 60px 30px;
}

/*--------- Layout -------- */

.service {
	justify-content: center;
	align-items: center;
}

.service h2 {
	font-size: 4.052em;
	color: var(--four-color);
	font-weight: 750;
}

.service h4 {
	color: white;
	text-align: center;
}

.service p {
	line-height: 1.3;
	width: 85%;
	margin: 10px auto 20px auto;
	text-align: justify;
}

.gallary {
	overflow: hidden;
	min-height: 80dvh;
	padding: 20px 60px;
}

.desktop_7 .text-blk {
	margin: 0px;
	padding: 10px;
	line-height: 25px;
}

.desktop_7 .responsive-container-block {
	min-height: 75px;
	height: fit-content;
	width: 100%;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 0px auto;
	justify-content: center;
	margin: 10px auto;
}

.desktop_7 .responsive-container-block.bigContainer {
	padding-top: 10px 30px;
}

.desktop_7 .responsive-container-block.Container {
	max-width: 95dvw;
	flex-direction: column;
	padding-top: 10px 0px;
	margin-top: 80px auto 50px auto;
}

.desktop_7 .text-blk.headingText {
	line-height: 50px;
	font-weight: 750;
	color: var(--four-color);
	font-size: 32px;
	text-align: center;
}

.desktop_7 .text-blk.active {
	font-size: 20px;
	line-height: 34px;
	font-weight: 400;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: var(--thres-color);
}

.desktop_7 .text-blk.list {
	font-size: 20px;
	line-height: 34px;
	cursor: pointer;
}

.desktop_7 .text-blk.all {
	margin-right: 20px;
	margin-left: 0px;
}

.desktop_7 .text-blk.list {
	margin: 0px 20px;
	padding: 10px 15px;
	color: var(--four-color);
	font-family: var(--title2-font-black);
	font-size: 28px;
}

.desktop_7 .text-blk.list.active {
	padding-top: 10px 15px;
	font-weight: 550;
}

.project {
	margin: 30px 15px;
}

.desktop_7 .card {
	width: 280px;
	border-radius: 4px;
	filter: drop-shadow(1px 3px 2px #232323);
	overflow: hidden;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.desktop_7 .card .imgBx {
	position: relative;
	width: 100%;
	overflow: hidden;
	max-height: 200px;
}

.desktop_7 .card .imgBx img {
	width: 100%;
	transition: 0.3s ease-in-out;
}

.desktop_7 .card .imgBx .badge {
	opacity: 0;
	transition: 0.3s ease-in-out;
	color: var(--light);
	font-size: 18px;
	font-family: var(--title-font-bold);
}

.desktop_7 .card .imgBx .badge .Sale {
	position: absolute;
	top: 10px;
	right: 14px;
	background: var(--four-color);
	padding: 10px 20px;
	border-radius: 3px;
}

.desktop_7 .card .imgBx .badge .Rent {
	position: absolute;
	top: 10px;
	left: 14px;
	background: var(--secondary-color);
	padding: 10px 12px;
	border-radius: 3px;
}

.desktop_7 .card:hover .imgBx .badge {
	opacity: 1;
	transition: 0.3s ease-in-out;
}

.desktop_7 .card:hover .imgBx img {
	scale: 1.25;
	transition: 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-ms-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
}

.price-section {
	padding: 15px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-section h1 {
	font-weight: 500;
	padding: 5px 0;
}

.price-section h2 {
	font-weight: 850;
	font-size: 34px;
	text-transform: uppercase;
	color: var(--four-color);
}

.price-section span {
	display: flex;
	flex-direction: row;
	justify-content: start;
	margin: 10px auto;
}

.info-section i,
.price-section span i {
	margin: auto 12px;
	font-size: 22px;
	border: 1px solid var(--four-color);
	border-radius: 4px;
	color: var(--four-color);
}

.price-section h3 {
	font-weight: 650;
	font-size: 14px;
	color: #232323;
	font-family: cairo;
}

.floor-section,
.info-section {
	display: flex;
	margin: 10px auto;
	width: 100%;
	flex-direction: row;
}

.info-section .sec,
.info-section .st {
	width: 50%;
}

.info-section .sec h3,
.info-section .st h3 {
	color: #232323;
	font-weight: 500;
	font-size: 16px;
	display: flex;
}

.floor-section {
	flex-direction: column !important;
	padding: 7px 10px;
}

.floor-section h3 {
	font-size: 26px;
	color: var(--secondary-color);
}

.contact {
	padding: 10px;
}

.contact h3 {
	color: #666;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 16px;
}

.testions .Faq {
	margin-right: 0px;
}

.testions h2 {
	color: var(--secondary-color);
	text-align: right;
	margin: 8px auto;
}

.testions .background {
	position: absolute;
	right: 10px;
	z-index: -2;
}

.testions .questios {
	background: var(--secondary-color);
	margin: auto 20px;
	padding: 35px;
	border-radius: 9px;
}

.testions .content ul {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	flex-wrap: wrap;
	justify-content: center;
}

.testions .content li {
	background: var(--thres-color);
	margin: 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	transition: 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-ms-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
}

.testions .content li:hover {
	background: var(--white-color);
	border-radius: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	-ms-border-radius: 9px;
	-o-border-radius: 9px;
}

.testions .content img {
	height: 70px;
}

.testimonials,
.Quats {
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.shadow-effect {
	padding: 20px;
	border-radius: 4px;
	text-align: right;
	direction: rtl;
}

#customers-testimonials .shadow-effect i {
	position: absolute;
	top: 24%;
	left: 14px;
	font-size: 42px;
	color: white;
}

#customers-testimonials .shadow-effect p {
	font-family: inherit;
	font-size: 18px;
	line-height: 1.5;
	margin: 0 0 17px 0;
	font-weight: 500;
}

.testimonial-name {
	display: table;
	padding: 9px 35px;
	border-radius: 12px;
	text-align: center;
	color: white;
	font-size: 24px;
	font-weight: 700;
	font-family: var(--title-font-bold);
}

.testimonial-postion {
	margin-right: 73px;
	text-align: right;
	color: white;
	font-size: 15px;
	font-weight: 700;
}

#customers-testimonials {
	background: var(--thres-color);
	margin: 20vh 10px;
	border-radius: 4px;
}

#customers-testimonials .item {
	text-align: center;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
	background: var(--secondary-color);
	transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-testimonials.owl-carousel .owl-dots {
	display: flex;
	width: 35%;
	text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
	background: var(--white-color);
	display: flex;
	height: 20px;
	margin: 0 4px 5px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
}

.contact .contact-info {
	display: flex;
	padding: 10px 0;
	width: 100%;
}

.contact .contact-info .contact-img img {
	width: 50px;
	border-radius: 50%;
	margin-right: 20px;
}

.contact .contact-info .contact-name {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: space-around;
}

.contact .contact-info .contact-name h4 {
	color: #222;
	font-weight: 600;
	font-size: 16px;
}

/*the preloader  */
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 7px solid transparent;
	border-top-color: var(--primary-color);
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 2s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
	z-index: 2001;
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 7px solid transparent;
	border-top-color: var(--secondary-color);
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f9c922;
	animation: spin 1.5s linear infinite;

	-webkit-animation: spin 1.5s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #232332;
	z-index: 2000;
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(0);
	/* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
	left: 0;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(-100%);
	/* Firefox 16+, IE 10+, Opera */
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
	/* Chrome, Opera 15+, Safari 3.1+ */
	/* IE 9 */
	transform: translateX(100%);
	/* Firefox 16+, IE 10+, Opera */
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
	opacity: 0;
	transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
	visibility: hidden;
	/*Chrome,Opera15+,Safari3.1+*/
	/*IE9*/
	transform: translateY(-100%);
	/*Firefox16+,IE10+,Opera*/
	transition: all 0.3s 1s ease-out;
	-webkit-transition: all 0.3s 1s ease-out;
	-moz-transition: all 0.3s 1s ease-out;
	-ms-transition: all 0.3s 1s ease-out;
	-o-transition: all 0.3s 1s ease-out;
}

.clients {
	margin: 15px auto;
}

.clients h2 {
	color: var(--four-color);
	font-family: var(--title2-font-black);
	text-align: center;
	margin-bottom: 20px;
}

.client {
	display: flex;
	flex-wrap: wrap;
	width: fit-content;
	margin: 10px auto;
	aspect-ratio: 2/1;
	min-height: 120px;
	border-radius: 4px;
	background: var(--white-color);
	box-shadow: 0 0.3rem 1.5rem rgb(0, 0, 0, 0.175);
	border-color: transparent;
}

.client img {
	max-width: 150px !important;
	margin: auto;
	aspect-ratio: 1/2;
	max-height: 70px;
}

.client:hover {
	box-shadow: 0 1rem 1.5rem rgba(172, 103, 6, 0.423);

	transition: 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-ms-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
}

.intro {
	margin: 120px auto auto;
}

.intro h1 {
	color: var(--four-color);
	text-align: center;
	font-size: 53px;
}

#sync1 .item {
	background: var(--thres-color);
	margin: 5px;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
	max-height: 75dvh;
}

#sync2 .item {
	background: var(--thres-color);
	padding: 11px;
	margin: 5px;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
	cursor: pointer;
	min-height: 64px;
}

#sync2 .item h1 {
	font-size: 18px;
}

#sync2 .current .item {
	background: var(--four-color);
}

#sync2 .item img {
	aspect-ratio: 3/2;
}

.owl-theme .owl-nav {
	/*default owl-theme theme reset .disabled:hover links */
}

.owl-theme .owl-nav [class*="owl-"] {
	transition: all 0.3s ease;
}

.owl-theme .owl-nav [class*="owl-"].disabled:hover {
	background-color: #d6d6d6;
}

#sync1.owl-theme {
	position: relative;
}

#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
	width: 32px;
	height: 56px;
	margin-top: -20px;
	position: absolute;
	top: 50%;
	background: var(--section-bg-color);
	padding: 14px 4px !important;
	border: 1px solid var(--thres-color);
	border-radius: 7px;
}

#sync1.owl-theme .owl-next:hover,
#sync1.owl-theme .owl-prev:hover {
	background-color: var(--four-color);
}

#sync1.owl-theme .owl-prev {
	left: 10px;
}

#sync1.owl-theme .owl-next {
	right: 10px;
}

.project-detals {
	margin: 35px;
}

.project-detals h4 {
	color: var(--four-color);
	margin: 20px 24px;
	font-size: 36px;
	font-weight: 750;
}

.project-detals p {
	color: #000;
}

.blogs {
	background: var(--grad);
	padding: 40px;
	text-align: center;
}

.blog-box {
	background: white;
	border: 2px solid var(--four-color);
	min-height: 400px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	overflow: hidden;
}

#ALlBlogs img,
#blogs img {
	margin-bottom: 14px;
}

#ALlBlogs img {
	width: 100%;
}

.blog-box:hover {
	background-color: #f0dcca;
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	-ms-transition: 0.5s ease-in;
	-o-transition: 0.5s ease-in;
	color: var(--four-color);
}

.blog-box:hover h4 {
	color: var(--four-color);
	font-family: var(--title-font-bold);
	transition: 0.5s ease-in;
}

.blog-box:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

#ALlBlogs h4,
#blogs h4 {
	padding: 20px 25px;
	font-weight: 500;
	font-family: var(--title2-font-reg) !important;
}

#ALlBlogs h2,
.blogs h2 {
	margin: 40px auto;
}

#privacy p {
	color: #232323;
	font-family: var(--body-font-family);
}

/****cta****/

.cta-section {
	background-image: url("../images/backgrounds/About-hero.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 120px;
	background-attachment: fixed;
}

.cta-footer {
	display: flex;
	justify-content: center;
	margin: 20px 10px;
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	-ms-border-radius: 1px;
	-o-border-radius: 1px;
}

.cta-footer h4 {
	padding: 10px 5px;
	color: var(--four-color);
	font-family: var(--title-font-bold);
}

.cta-footer .btn {
	font-size: 1.2rem;
	padding: 1rem 2.5rem;
	border: none;
	outline: none;
	border-radius: 0.4rem;
	cursor: pointer;
	text-transform: uppercase;
	background-color: rgb(14, 14, 26);
	color: rgb(234, 234, 234);
	font-weight: 700;
	transition: 0.6s;
	box-shadow: 0px 0px 30px var(--thres-color);
	-webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.cta-footer .btn:active {
	scale: 0.92;
}

.cta-footer .btn:hover {
	background: var(--four-color);
	color: var(--five-color);
}

/* From Uiverse.io by JohnnyCSilva */
.abus .card {
	width: 90px;
	height: 110px;
	background: var(--four-color);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	transition: 0.2s ease-in-out;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.abus .img {
	height: 80%;
	position: absolute;
	transition: 0.2s ease-in-out;
	z-index: 1;
}

.abus .textBox {
	opacity: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	transition: 0.2s ease-in-out;
	z-index: 2;
}

.textBox>.text {
	font-weight: bold;
}

.textBox>.head {
	font-size: 20px;
	margin: 0px;
}

.textBox>.price {
	font-size: 17px;
}

.textBox>span {
	font-size: 12px;
	color: lightgrey;
}

.card:hover>.textBox {
	opacity: 1;
}

.abus .card:hover>.img {
	height: 65%;
	filter: blur(7px);
	animation: anim 3s infinite;
}

@keyframes anim {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0);
	}
}

.abus .card:hover {
	transform: scale(1.04) rotate(-1deg);
}

.abus {
	position: fixed;
	top: 65dvh;
	left: 1dvw;
	z-index: 5;
	display: flex;
	justify-content: center;
}