@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@200;300;400;500;700;800;900;1000&display=swap");

:root {

	--backgrounCol: #e1e1e1;
	--primaryColor: #d94038;
	--primaryColor-hover: #c05a3b;
	--primaryColor-dark: #830303;
	--whiteColor: #feffc0;
	--title: "Cairo", sans-serif;
	--Normal: "Almarai", sans-serif;
	--background-dark: #dbdbdb;
	--text-light: rgba(255, 255, 255, 0.6);
	--text-lighter: #ffffffe6;
	--spacing-s: 8px;
	--spacing-m: 16px;
	--spacing-l: 24px;
	--spacing-xl: 32px;
	--spacing-xxl: 64px;
	--width-container: 1200px;
	--size: clamp(10rem, 1rem + 40vmin, 30rem);
	--gap: calc(var(--size) / 14);
	--duration: 75s;
	--scroll-start: 0;
	--scroll-end: calc(-100% - var(--gap));

	--index: calc(1vw + 1vh);
	--transition: cubic-bezier(0.1, 0.7, 0, 1);
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	background-color: #ededed;
	font-family: var(--Normal);
	color: #232323;
}

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	height: 80px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	background: #212529;
}

#header.header-transparent {
	background: transparent;
}

#header.header-scrolled {
	background: #ededed;
	height: 60px;
	-webkit-box-shadow: 0px 7px 6px 0px rgba(0, 0, 0, 0.56);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.56);
}

#header .logo h1 {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #fff;
	text-decoration: none;
}

#header .logo img {
	padding: 0;
	margin: 0;
	max-height: 2rem;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 16px;
	font-weight: 650;
	font-family: var(--title);
	color: #232323;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 3px;
	left: 30px;
	background-color: var(--primaryColor);
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
	visibility: visible;
	width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
	color: var(--primaryColor);
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 30px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #232323;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	color: var(--backgrounCol);
	text-decoration: none;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: var(--primaryColor);
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
  * Mobile Navigation 
  */

.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #20202080;
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 8px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile>ul>li>a:before {
	left: 20px;
}

.navbar-mobile a {
	padding: 10px 20px;
	font-size: 15px;
	color: #232323;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #23232390;
}

.navbar-mobile .getstarted {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #1acc8d;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/**
* hero
*/

#hero {
	background-attachment: scroll;
	display: flex;
	flex-direction: row;
	height: 100vh;
	width: 100%;
	padding: 25vh 0 0 0;
	margin: 0;
	background: url("../img/home_background/BACKGROUND.png") repeat 0 0;
	-webkit-animation: 10s linear 0s normal none infinite animate;
	-moz-animation: 10s linear 0s normal none infinite animate;
	-ms-animation: 10s linear 0s normal none infinite animate;
	-o-animation: 10s linear 0s normal none infinite animate;
	animation: 10s linear 0s normal none infinite animate;
}

@-webkit-keyframes animate {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 500px 0;
	}
}

/*--------------------------------------------------------------
# sticky-icon 
--------------------------------------------------------------*/

.sticky-icon {
	z-index: 1;
	position: fixed;
	top: 15%;
	right: 0%;
	width: 220px;
	display: flex;
	flex-direction: column;
}

.sticky-icon a {
	transform: translate(170px, 0px);
	border-radius: 14px 0px 0px 14px;
	text-align: left;
	margin: 3px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 6px;
	font-size: 16px;
	font-family: var(--Normal);
	transition: all 0.8s;
	font-weight: 650;
	-webkit-transform: translate(170px, 0px);
	-moz-transform: translate(170px, 0px);
	-ms-transform: translate(170px, 0px);
	-o-transform: translate(170px, 0px);
}

.sticky-icon a:hover {
	color: #fff;
	transform: translate(50px, 0px);
	-webkit-transform: translate(50px, 0px);
	-moz-transform: translate(50px, 0px);
	-ms-transform: translate(50px, 0px);
	-o-transform: translate(50px, 0px);
}

.Facebook,
.Youtube,
.Twitter,
.Instagram,
.Google {
	background-color: #232323;
	color: #fff;
}

.sticky-icon a img,
.sticky-icon a i {
	height: 35px;
	width: 35px;
	text-align: center;
	line-height: 35px;
	border-radius: 20%;
	margin-right: 8px;
	transition: all 0.5s;
	background-color: #fff;
	color: var(--primaryColor);
	-webkit-border-radius: 20%;
	-moz-border-radius: 20%;
	-ms-border-radius: 20%;
	-o-border-radius: 20%;
}

.fas fa-shopping-cart {
	background-color: #fff;
}

#myBtn {
	height: 50px;
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	text-align: center;
	padding: 10px;
	text-align: center;
	line-height: 40px;
	border: none;
	outline: none;
	background-color: #1e88e5;
	color: white;
	cursor: pointer;
	border-radius: 50%;
}

.fa-arrow-circle-up {
	font-size: 30px;
}

#myBtn:hover {
	background-color: #555;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero h1 {
	margin: 0 0 70px 0px;
	font-size: 48px;
	font-weight: 400;
	color: #232323;
	font-family: var(--title);
	text-align: center;
}

#hero h1 span {
	color: var(--primaryColor);
	border-bottom: 4px solid var(--primaryColor);
	font-weight: 750;
}

#hero h2 {
	font-size: 18px;
	text-align: center;
	font-weight: 550;
	color: var(--primaryColor);
}

.btn-get-started {
	font-family: var(--Normal);
	font-weight: 550;
	font-size: 0.75em;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 9px;
	transition: 0.5s;
	color: #fff;
	background: var(--primaryColor);
	text-decoration: none;
}

.person .btn-get-started {
	font-size: 0.75em;
	margin: 16px 3px;
}

#navbar .btn-get-started {
	font-family: var(--Normal);
	font-weight: 650;
	font-size: 0.75em;
	letter-spacing: 0.5px;
	display: inline-block;
	padding: 10px 15px;
	border-radius: 4px;
	transition: 0.5s;
	color: #fff;
	background: var(--primaryColor);
	text-decoration: none;
	text-transform: uppercase;
	margin: 14px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.btn-get-started:hover {
	background: #fff;
	color: var(--primaryColor-hover);
	outline: solid 2px var(--primaryColor);
}

.person .btn-get-started:hover {
	background: #fff;
	color: var(--primaryColor-hover);
	outline: solid 2px var(--primaryColor);
}

#hero .animated {
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
	-webkit-animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero .hero-img img {
	width: 44vh;
	position: absolute;
	top: -22vh;
	right: 11vw;
	background-color: transparent !important;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: scroll;
	}
}

@media (max-width: 991px) {
	#hero {
		padding-top: 80px;
	}

	#hero .animated {
		-webkit-animation: none;
		animation: none;
	}

	#hero .hero-img {
		text-align: center;
	}

	#hero .hero-img img {
		max-width: 50%;
	}

	#hero .st {
		text-transform: capitalize;
		text-align: center;
		margin: 40dvh 0;
	}

	#hero h1 {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 10px;
	}

	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}

	#hero .btn-get-started,
	#navbar .btn-get-started :hover {
		margin: 15px;
	}
}

@media (max-width: 575px) {
	#hero .hero-img img {
		width: 80%;
	}

	#hero .btn-get-started,
	#navbar .btn-get-started :hover {
		margin: 15px;
	}
}

@-webkit-keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}

	100% {
		transform: translateY(-10px);
	}
}

/*box****************************/

.box {
	position: absolute;
	top: 4vh;
	transform: rotate(80deg);
	right: 29vw;
}

.wave {
	opacity: 0.4;
	position: absolute;
	top: 3%;
	left: 10%;
	background: var(--primaryColor-dark);
	width: 300px;
	height: 300px;
	margin-left: -150px;
	margin-top: -250px;
	transform-origin: 50% 48%;
	border-radius: 43%;
	animation: drift 7000ms infinite linear;
}

.wave.-three {
	animation: drift 7500ms infinite linear;
	position: fixed;
	background-color: var(--primaryColor);
}

.wave.-two {
	animation: drift 3000ms infinite linear;
	opacity: 0.1;
	background: #e6e6e6;
	position: fixed;
}

.box:after {
	content: "";
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 11;
	transform: translate3d(0, 0, 0);
}

@keyframes drift {
	from {
		transform: rotate(0deg);
	}

	from {
		transform: rotate(360deg);
	}
}

.section-title {
	padding-bottom: 15px;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 650;
	padding: 0;
	line-height: 1px;
	margin: 0 0 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #232323;
	font-family: var(--title);
}

/* ---------- Container for the orbiting circles animation ---------- */
#circle-orbit-container {
	position: absolute;
	top: -288px;
	left: -166px;
	z-index: 100;
}

/* ---------- Outer orbit - This is the circles furthest away from the central point ---------- */
#outer-orbit {
	position: absolute;
	top: 19vh;
	left: 13vw;
	width: 26vw;
	height: 26vw;
	border: 3px solid red;
	border-radius: 100%;
	z-index: 150;
	animation: spin-right 60s linear infinite;
	-webkit-animation: spin-right 60s linear infinite;
}

/* ---------- Repeating styles for the outer orbiting circles ---------- */
.outer-orbit-cirlces {
	position: absolute;
	top: -17px;
	left: 125px;
	background-color: #d2240538;
	border-radius: 28px;
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	-ms-border-radius: 28px;
	-o-border-radius: 28px;
	animation: spin-left 60s linear infinite;
	-webkit-animation: spin-left 60s linear infinite;
}

.st1 {
	top: 0vh;
	left: -4vw;
}

.nd {
	top: 0vh;
	left: 29vw;
}

.rd {
	top: 0vh;
}

.nft {
	user-select: none;
	max-width: 300px;
	border: 1px solid #ffffff22;
	background-color: #282c34;
	background: linear-gradient(0deg, #141b35 0%, rgba(17, 0, 32, 0.5) 100%);
	box-shadow: 0 7px 20px 5px #00000088;
	border-radius: 0.7rem;
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	overflow: hidden;
	transition: 0.5s all;
}

.nft .main {
	display: flex;
	flex-direction: column;
	width: 90%;
	padding: 0.7rem;
}

.nft ::before {
	position: fixed;
	content: "";
	box-shadow: 0 0 100px 40px #ffffff08;
	top: -10%;
	left: -100%;
	transform: rotate(-45deg);
	height: 60rem;
	transition: 0.7s all;
}

.nft:hover {
	border: 1px solid #ffffff44;
	box-shadow: 0 7px 50px 10px #000000aa;
	transform: scale(1.015);
	filter: brightness(1.3);
}

.nft:hover ::before {
	filter: brightness(0.5);
	top: -100%;
	left: 200%;
}

/* ---------- Animation ---------- */
@-webkit-keyframes spin-right {
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spin-left {
	100% {
		-webkit-transform: rotate(-360deg);
		-moz-transform: rotate(-360deg);
		-ms-transform: rotate(-360deg);
		-o-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

.section-title h2::after {
	content: "";
	width: 120px;
	height: 1px;
	display: inline-block;
	background: var(--primaryColor);
	margin: 4px 10px;
}

.section-title p {
	margin-left: 36px;
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--title);
	color: var(--primaryColor);
}

@media (max-width: 460px) {
	.box {
		right: 33vw;
		top: 0;
	}

	.wave {
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 200px;
		height: 200px;
	}

	#hero .hero-img img {
		top: 3vh;
		right: 30vw;
	}

	.counts .count-box {
		min-height: 150px !important;
		min-height: 150px !important;
		max-width: 290px;
		margin: auto;
	}

	.footer-logo img {
		width: 75dvw !important;
		margin: auto 10dvw;
	}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
	margin: 50px 0;
	height: 100vh;
	display: grid;
	align-content: center;
}

.about .iconboxes {
	background-color: var(--primaryColor-dark);
	border-radius: 14px;
	padding: 9px 18px;
	min-width: 23dvw;
}

.about .row1 {
	margin: 9px auto;
}

.about .row2 {
	margin: 9px auto;
	width: 45vh;
}

.about .row3 {
	margin: 9px auto;
	display: grid;
	justify-content: center;
}

.about .icon-boxes h2 {
	font-size: 32px;
	font-weight: 650;
	color: var(--primaryColor);
	margin-bottom: 15px;
}

.about .icon-box_ar,
.about .icon-box {
	margin: 20px auto;
}

.about img {
	background: #1f1f24;
	clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
	height: 75vh;
}

.about .icon-box_ar .icon,
.about .icon-box .icon {
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 46px;
	border: 2px solid var(--primaryColor);
	border-radius: 50px;
	transition: 0.5s;
	margin: auto 9px;
}

.about .icon-box_ar .icon {
	float: right;
}

.about .icon-box_ar .icon i,
.about .icon-box .icon i {
	color: var(--primaryColor);
	font-size: 18px;
}

.about .icon-box_ar:hover .icon,
.about .icon-box:hover .icon {
	background: var(--primaryColor);
	border-color: var(--primaryColor);
}

.about .icon-box_ar:hover .icon i,
.about .icon-box:hover .icon i {
	color: #fff;
}

.about .icon-box .title {
	margin-left: 40px;
	font-weight: 700;
	margin-bottom: 10px;
	font-family: var(--title);
	color: var(--primaryColor);
}

.about .icon-box_ar .title {
	margin-left: 40px;
	font-weight: 700;
	margin-bottom: 10px;
	font-family: var(--title);
	width: 150px;
}

.about .icon-box_ar .title,
a .about .icon-box .title a {
	color: var(--primaryColor);
	transition: 0.3s;
}

.about .icon-box_ar .title a:hover,
.about .icon-box .title a:hover {
	color: #fff;
}

.about .icon-box_ar .description,
.about .icon-box .description {
	margin-left: 40px;
	line-height: 18px;
	font-size: 14px;
	font-family: var(--Normal);
	color: #fff;
	text-align: justify;
}

@media (max-width: 460px) {
	.about {
		display: flex;
		margin: -80px 15px 0 15px;
		height: 100%;
	}

	.about img {
		height: auto;
		width: 60vw;
		margin: 20px auto;
	}
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {

	margin: 60px 0px;
}

.counts .count-box {
	padding: 46px 10px 10px 10px;
	width: 100%;
	position: relative;
	text-align: center;
	background: var(--primaryColor);
	border-radius: 8px;
	min-height: 160px;
	margin-top: 24px;
}

.counts .count-box i {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 42px;
	background: white;
	padding: 12px;
	color: var(--primaryColor);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	width: 120px;
	height: 70px;
}

.counts .count-box span {
	font-size: 38px;
	display: block;
	font-weight: 700;
	color: white;
}

.counts .count-box p {
	padding: 0;
	margin: 0;
	font-family: var(--title);
	font-size: 20px;
	font-weight: 750;
	color: white;
}

.counts .count-box:hover {
	background-color: var(--primaryColor-dark);
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.counts .count-box:hover i {
	color: var(--primaryColor-dark);
	border-radius: 115px;
	transition: 0.2s border-raduis ease-in;
}

/*--------------------------------------------------------------
# clients
--------------------------------------------------------------*/

.clients {
	margin: 130px 0;
}

.marquee__group {
	border: 2.5px solid var(--primaryColor);
	border-radius: 14px;
	padding: 5px;
	margin: 0 9px;
}

.marquee__group :hover {
	border-radius: 9px;
	background-color: #eda42527;
	background-blend-mode: overlay;
}

.marquee__group img {
	padding: 18px;
}

.marquee__group img ::hover {
	transform: scale(1.5);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
	width: 100%;
}

.contact .info i {
	font-size: 26px;
	color: var(--primaryColor);
	float: left;
	width: 44px;
	height: 58px;
	background: #f0f0ff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 24px;
	font-weight: 750;
	margin-bottom: 5px;
	color: var(--primaryColor);
	font-family: var(--title);
}

.contact .info .ar {
	padding: 0 66px 0 0px;
}

.contact .info p {
	padding: 0 0 0 80px;
	margin-bottom: 0;
	font-size: 16px;
	color: #232323;
	font-weight: 650;
}

.contact .info .email,
.contact .info .phone {
	margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
	background: var(--primaryColor);
	color: #fff;
}

.contact .php-email-form {
	width: 100%;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.btn {
	border-radius: 2px;
	padding-bottom: 8px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br+br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #025c2c;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: rgb(43, 2, 156);
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #025c2c;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	font-weight: 550;
	color: var(--primaryColor-dark);
}

.contact .php-email-form input {
	height: 44px;
	border-radius: 8px;
	border-color: var(--primaryColor);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
	border-radius: 8px;
	border-color: var(--primaryColor);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.contact .php-email-form button[type="submit"] {
	background: var(--primaryColor);
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: var(--primaryColor-dark);
}

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

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

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

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

/*--------------------------------------------------------------
# ball crussal 
--------------------------------------------------------------*/

.ball {
	width: 50px;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	border: 3px solid dodgerblue;
	border-radius: 50%;
	pointer-events: none;
}

/*--------------------------------------------------------------
# service baground 
--------------------------------------------------------------*/

.context {
	width: 100%;
	position: absolute;
}

.circles {
	position: absolute;
	top: 615px;
	left: 0;
	width: 100%;
	height: 2642px;
	overflow: hidden;
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(165, 0, 0, 0.75);
	animation: animate1 15s linear infinite;
	border-radius: 75%;
}

.circles li:nth-child(1) {
	left: 25%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
}

.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.circles li:nth-child(6) {
	left: 75%;
	width: 110px;
	height: 110px;
	animation-delay: 3s;
}

.circles li:nth-child(7) {
	left: 35%;
	width: 150px;
	height: 150px;
	animation-delay: 7s;
}

.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
}

.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.circles li:nth-child(10) {
	left: 85%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate1 {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}

	100% {
		transform: translateY(-2642px) rotate(720deg);
		opacity: 0.2;
		border-radius: 50%;
	}
}

/*--------------------------------------------------------------
# section-services
--------------------------------------------------------------*/

.section-services {
	padding-bottom: 120px;
	font-family: var(--Normal);
	background-color: #1f1f24;
	color: #fff;
}

.Services {
	align-items: flex-start;
	display: flex;
	min-height: 100%;
	justify-content: center;
}

.Services .card-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-column-gap: var(--spacing-l);
	grid-row-gap: var(--spacing-l);
	max-width: var(--width-container);
	width: 85%;
}


.card-grid .container {
	position: relative;
	width: 220px;
	height: 280px;
	transition: 200ms ease-in;
}

.card-grid .container:active {
	width: 180px;
	height: 245px;
}

.card-grid #card {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	transition: 700ms;
	background: linear-gradient(45deg, #1a1a1a, #262626);
	border: 2px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	box-shadow:
		0 0 20px rgba(0, 0, 0, 0.3),
		inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.card-grid .card-content {
	position: relative;
	width: 100%;
	height: 100%;
}

.card-grid #prompt {
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	transition: 300ms ease-in-out;
	position: absolute;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.card-grid .title {
	opacity: 0;
	transition: 300ms ease-in-out;
	position: absolute;
	font-size: 20px;
	font-weight: 800;
	text-align: center;
	width: 100%;
	padding-top: 25%;
	background: linear-gradient(to right, #93291e, #ed213a);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.3));
}

.card-grid .subtitle {
	position: absolute;
	bottom: 54px;
	width: 100%;
	text-align: center;
	font-size: 12px;
	letter-spacing: 2px;
	transform: translateY(30px);
	color: rgba(255, 255, 255, 0.6);
}

.card-grid .highlight {
	color: #00ffaa;
	margin-left: 5px;
	background: linear-gradient(to right, #93291e, #ed213a);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.card-grid .glowing-elements {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.glow-1,
.glow-2,
.glow-3 {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: radial-gradient(circle at center,
			rgba(255, 0, 0, 0.3) 0%,
			rgba(255, 255, 255, 0) 70%);
	filter: blur(15px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.glow-1 {
	top: -20px;
	left: -20px;
}

.glow-2 {
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
}

.glow-3 {
	bottom: -20px;
	left: 30%;
}

.card-particles span {
	position: absolute;
	width: 3px;
	height: 3px;
	background: #d7d7d7;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* Hover effects */
.tracker:hover~#card .title {
	opacity: 1;
	transform: translateY(-10px);
}

.tracker:hover~#card .glowing-elements div {
	opacity: 1;
}

.tracker:hover~#card .card-particles span {
	animation: particleFloat 2s infinite;
}

@keyframes particleFloat {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translate(calc(var(--x, 0) * 30px), calc(var(--y, 0) * 30px));
		opacity: 0;
	}
}

/* Particle positions */
.card-particles span:nth-child(1) {
	--x: 1;
	--y: -1;
	top: 40%;
	left: 20%;
}

.card-particles span:nth-child(2) {
	--x: -1;
	--y: -1;
	top: 60%;
	right: 20%;
}

.card-particles span:nth-child(3) {
	--x: 0.5;
	--y: 1;
	top: 20%;
	left: 40%;
}

.card-particles span:nth-child(4) {
	--x: -0.5;
	--y: 1;
	top: 80%;
	right: 40%;
}

.card-particles span:nth-child(5) {
	--x: 1;
	--y: 0.5;
	top: 30%;
	left: 60%;
}

.card-particles span:nth-child(6) {
	--x: -1;
	--y: 0.5;
	top: 70%;
	right: 60%;
}

#card::before {
	content: "";
	background: radial-gradient(circle at center,
			rgba(0, 255, 170, 0.1) 0%,
			rgba(0, 162, 255, 0.05) 50%,
			transparent 100%);
	filter: blur(20px);
	opacity: 0;
	width: 150%;
	height: 150%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}

.tracker:hover~#card::before {
	opacity: 1;
}

.tracker {
	position: absolute;
	z-index: 200;
	width: 100%;
	height: 100%;
}

.tracker:hover {
	cursor: pointer;
}

.tracker:hover~#card #prompt {
	opacity: 0;
}

.tracker:hover~#card {
	transition: 300ms;
	filter: brightness(1.1);
}

.container:hover #card::before {
	transition: 200ms;
	content: "";
	opacity: 80%;
}

.canvas {
	perspective: 800px;
	inset: 0;
	z-index: 200;
	position: absolute;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
	gap: 0px 0px;
	grid-template-areas:
		"tr-1 tr-2 tr-3 tr-4 tr-5"
		"tr-6 tr-7 tr-8 tr-9 tr-10"
		"tr-11 tr-12 tr-13 tr-14 tr-15"
		"tr-16 tr-17 tr-18 tr-19 tr-20"
		"tr-21 tr-22 tr-23 tr-24 tr-25";
}

.tr-1 {
	grid-area: tr-1;
}

.tr-2 {
	grid-area: tr-2;
}

.tr-3 {
	grid-area: tr-3;
}

.tr-4 {
	grid-area: tr-4;
}

.tr-5 {
	grid-area: tr-5;
}

.tr-6 {
	grid-area: tr-6;
}

.tr-7 {
	grid-area: tr-7;
}

.tr-8 {
	grid-area: tr-8;
}

.tr-9 {
	grid-area: tr-9;
}

.tr-10 {
	grid-area: tr-10;
}

.tr-11 {
	grid-area: tr-11;
}

.tr-12 {
	grid-area: tr-12;
}

.tr-13 {
	grid-area: tr-13;
}

.tr-14 {
	grid-area: tr-14;
}

.tr-15 {
	grid-area: tr-15;
}

.tr-16 {
	grid-area: tr-16;
}

.tr-17 {
	grid-area: tr-17;
}

.tr-18 {
	grid-area: tr-18;
}

.tr-19 {
	grid-area: tr-19;
}

.tr-20 {
	grid-area: tr-20;
}

.tr-21 {
	grid-area: tr-21;
}

.tr-22 {
	grid-area: tr-22;
}

.tr-23 {
	grid-area: tr-23;
}

.tr-24 {
	grid-area: tr-24;
}

.tr-25 {
	grid-area: tr-25;
}

.tr-1:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-2:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(20deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-3:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg);
}

.tr-4:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(20deg) rotateY(5deg) rotateZ(0deg);
}

.tr-5:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(20deg) rotateY(10deg) rotateZ(0deg);
}

.tr-6:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(10deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-7:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(10deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-8:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg);
}

.tr-9:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(10deg) rotateY(5deg) rotateZ(0deg);
}

.tr-10:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(10deg) rotateY(10deg) rotateZ(0deg);
}

.tr-11:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-12:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(0deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-13:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.tr-14:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(0deg) rotateY(5deg) rotateZ(0deg);
}

.tr-15:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(0deg) rotateY(10deg) rotateZ(0deg);
}

.tr-16:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-10deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-17:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-10deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-18:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-10deg) rotateY(0deg) rotateZ(0deg);
}

.tr-19:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-10deg) rotateY(5deg) rotateZ(0deg);
}

.tr-20:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-10deg) rotateY(10deg) rotateZ(0deg);
}

.tr-21:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-20deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-22:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-20deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-23:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg);
}

.tr-24:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-20deg) rotateY(5deg) rotateZ(0deg);
}

.tr-25:hover~#card {
	transition: 125ms ease-in-out;
	transform: rotateX(-20deg) rotateY(10deg) rotateZ(0deg);
}

.noselect {
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Old versions of Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;

}

.card-glare {
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg, rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.05) 45%,
			rgba(255, 255, 255, 0.1) 50%,
			rgba(255, 255, 255, 0.05) 55%,
			rgba(255, 255, 255, 0) 100%);
	opacity: 0;
	transition: opacity 300ms;
}

.cyber-lines span {
	position: absolute;
	background: linear-gradient(90deg, transparent, rgba(255, 92, 92, 0.2), transparent)
}

.cyber-lines span:nth-child(1) {
	top: 20%;
	left: 0;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
	transform-origin: left;
	animation: lineGrow 3s linear infinite;
}

.cyber-lines span:nth-child(2) {
	top: 40%;
	right: 0;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
	transform-origin: right;
	animation: lineGrow 3s linear infinite 1s;
}

.cyber-lines span:nth-child(3) {
	top: 60%;
	left: 0;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
	transform-origin: left;
	animation: lineGrow 3s linear infinite 2s;
}

.cyber-lines span:nth-child(4) {
	top: 80%;
	right: 0;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
	transform-origin: right;
	animation: lineGrow 3s linear infinite 1.5s;
}

.corner-elements span {
	position: absolute;
	width: 15px;
	height: 15px;
	border: 2px solid rgba(255, 255, 255, 0.84);
	border-radius: 4px;
}

.corner-elements span:nth-child(1) {
	top: 10px;
	left: 10px;
	border-right: 0;
	border-bottom: 0;
}

.corner-elements span:nth-child(2) {
	top: 10px;
	right: 10px;
	border-left: 0;
	border-bottom: 0;
}

.corner-elements span:nth-child(3) {
	bottom: 10px;
	left: 10px;
	border-right: 0;
	border-top: 0;
}

.corner-elements span:nth-child(4) {
	bottom: 10px;
	right: 10px;
	border-left: 0;
	border-top: 0;
}

.scan-line {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent, rgba(255, 92, 92, 0.1), transparent);
	transform: translateY(-100%);
	animation: scanMove 2s linear infinite;
}

@keyframes lineGrow {
	0% {
		transform: scaleX(0);
		opacity: 0;
	}

	50% {
		transform: scaleX(1);
		opacity: 1;
	}

	100% {
		transform: scaleX(0);
		opacity: 0;
	}
}

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

	100% {
		transform: translateY(100%);
	}
}

/* Modyfikacja istniejących styli */
#card:hover .card-glare {
	opacity: 1;
}

.corner-elements span {
	transition: all 0.3s ease;
}

#card:hover .corner-elements span {
	border-color: rgba(255, 92, 92, 0.8);
	box-shadow: 0 0 10px rgba(255, 92, 92, 0.5);
}

@media (min-width: 540px) {
	.Services.card-grid {
		grid-template-columns: repeat(2, 2fr);
	}
}

@media (min-width: 960px) {
	.Services .card-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}


/*--------------------------------------------------------------
# section-services
--------------------------------------------------------------*/

ul {
	margin: 0px;
	padding: 0px;
}

.footer-section {
	background-color: #232323;
	position: relative;
}

.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 {
	width: 33vw;
}

.footer-text p {
	margin-bottom: 14px;
	font-size: 14px;
	color: #fbf8f3;
}

.footer-widget-heading h3 {
	color: #fbf8f3;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 24px;
	position: relative;
}

.footer-widget-heading h3::before {
	content: "";
	position: absolute;
	bottom: -15px;
	height: 2px;
	width: 50px;
	background: var(--primaryColor);
}

.sub_Service .boxs,
.footer-widget .boxs {
	list-style: none;
	display: grid;
	margin: 7px 0;
	font-family: var(--title);
	color: var(--primaryColor);
	font-weight: 700;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
}

.sub_Service .boxs .active,
.sub_Service .boxs:hover,
.footer-widget .boxs .active,
.footer-widget .boxs:hover {
	transition: 0.3s;
}

.boxs.active .content,
.boxs:hover .content {
	background-color: #fff8e4;
}

.sub_Service .boxs .actfooter-widget-headisngve:before,
.sub_Service .boxs:hover:before,
.footer-widget .boxs .actfooter-widget-headisngve:before,
.footer-widget .boxs:hover:before {
	transform: scaleX(1.03) scaleY(1.13);
	transition: 0.3s;
	-webkit-transform: scaleX(1.03) scaleY(1.13);
	-moz-transform: scaleX(1.03) scaleY(1.13);
	-ms-transform: scaleX(1.03) scaleY(1.13);
	-o-transform: scaleX(1.03) scaleY(1.13);
}

.sub_Service .boxs:before,
.footer-widget .boxs:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #fcc92e;
	left: 0;
	top: 0;
	border-radius: 4px;
	z-index: 1;
	transform: scaleX(0.85) scaleY(0.85);
	transition: 0.3s;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}

.sub_Service .boxs .content,
.footer-widget .boxs .content {
	flex: 1;
	display: flex;
	align-items: center;
	background-color: var(--primaryColor-dark);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
	border-radius: 9px;
	position: relative;
	z-index: 2;
}

.sub_Service .boxs .content {
	background-color: var(--primaryColor-hover) !important;
	border-radius: 4px;
}

.sub_Service .boxs :hover .sub_Service .boxs .content,
.footer-widget .boxs :hover .footer-widget .boxs .content {
	background-color: var(--primaryColor-dark);
}

.sub_Service .boxs .content i,
.footer-widget .boxs .content i {
	padding: 6px;
}

.sub_Service .boxs .content i img,
.footer-widget .boxs .content i img {
	width: 28px;
}

.sub_Service .boxs .content h4,
.footer-widget .boxs .content h4 {
	font-size: 12px;
	font-weight: 500;
	margin: 6px;
	opacity: 0.9;
	color: white;
}

.sub_Service .boxs .content h4 {
	font-size: 16px;
	font-weight: normal;
	margin: 6px;
	color: white;
}

.footer-widget .social_ar,
.footer-widget .social {
	margin: 9px 0 0 0;
	float: left;
	display: flex;
}

.footer-widget .social_ar {
	float: right !important;
}

.footer-widget ul .icons {
	background-color: #fff;
	color: var(--primaryColor);
	border: 2px solid #eee;
	text-align: center;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	-ms-border-radius: 9px;
	-o-border-radius: 9px;
	margin: 0 6px;
}

.footer-widget ul .icons i {
	font-size: 24px;
	color: var(--primaryColor);
}

.footer-widget ul .icons:hover {
	background-color: var(--primaryColor);
	border: 2px solid var(--primaryColor-hover);
	transform: scale(1.2, 1.3);
}

.footer-widget ul .icons:hover i {
	color: var(--primaryColor-hover);
	font-size: 28px;
}

.copyright-area {
	background: #202020;
	padding: 15px 0;
}

.copyright-text p {
	margin: 0;
	font-weight: 600;
	font-size: 14px;
	color: #878787;
}

.copyright-text p a {
	color: var(--primaryColor);
	text-decoration: none;
	font-weight: 750;
}

/*--------------------------------------------------------------
#About page 
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/

.details {
	height: 100%;
}

.details .content+.content {
	margin-top: 30px;
}

.details .content h2 {
	font-weight: 600;
	font-size: 28px;
	color: #eda425;
	text-align: center;
	margin-bottom: 15px;
}

.details .content h3 {
	font-weight: 600;
	font-size: 28px;
	color: #eda425;
	text-align: center;
	margin-bottom: 15px;
}

.details .content p {
	color: #fff;
	font-weight: 450;
	font-size: 16px;
}

.details .content ul {
	list-style: none;
	padding: 0;
	font-weight: 4550;
	font-size: 14px;
}

.details .content ul li {
	padding-bottom: 10px;
}

.details .content ul i {
	font-size: 24px;
	padding-right: 4px;
	color: #eda425;
}

.details .content p:last-child {
	margin-bottom: 0;
}

.blue-bg {
	background-color: #4d4545;
	color: var(--primaryColor);
	height: 100%;
}

.details .circle {
	font-weight: bold;
	padding: 20px 20px;
	border-radius: 50%;
	background-color: var(--primaryColor);
	color: var(--primaryColor-dark);
	z-index: 2;
	border: 3px solid var(--primaryColor-dark);
}

.details .circle:hover {
	transform: scale(1.2);
}

.details .how-it-works.row {
	display: flex;
}

.details .how-it-works .shape {
	background-color: var(--primaryColor-dark);
	border-radius: 14px;
	color: #fff;
	padding: 14px 14px;
}

.details .how-it-works .shape h5 {
	color: var(--primaryColor);
	font-weight: 650;
}

.details .how-it-works .shape :hover .details .how-it-works .shape h5 {
	color: #202020;
}

.details .how-it-works.row .col-2 {
	display: inline-flex;
	align-self: stretch;
	align-items: center;
	justify-content: center;
}

.details .how-it-works.row .col-2::after {
	content: "";
	position: absolute;
	border-left: 3px solid var(--primaryColor);
	z-index: 1;
}

.details .how-it-works.row .col-2.bottom::after {
	height: 50%;
	left: 50%;
	top: 50%;
}

.details .how-it-works.row .col-2.full::after {
	height: 100%;
	left: calc(50% - 3px);
}

.details .how-it-works.row .col-2.top::after {
	height: 50%;
	left: 50%;
	top: 0;
}

.details .how-it-works.row .col-2.topbottom::after {
	height: 100%;
	left: 50%;
	top: 0;
}

.details .timeline div {
	padding: 0;
	height: 40px;
}

.details .timeline hr {
	border-top: 3px solid var(--primaryColor-hover);
	margin: 0;
	top: 17px;
	position: relative;
}

.details .timeline .col-2 {
	display: flex;
	overflow: hidden;
}

.details .timeline .corner {
	border: 3px solid var(--primaryColor);
	width: 100%;
	position: relative;
	border-radius: 15px;
}

.details .top-right {
	left: 50%;
	top: -50%;
}

.details .left-bottom {
	left: -50%;
	top: calc(50% - 3px);
}

.details .top-left {
	left: -50%;
	top: -50%;
}

.details .timeline .right-bottom {
	left: 50%;
	top: calc(50% - 3px);
}

/*--------------------------------------------------------------
ask for advice 
--------------------------------------------------------------*/
.advisor {
	margin: 90px 11px;
	align-items: center;
	font-family: var(--title);
	padding: 15px 45px;
}

.advisor .person {
	align-items: center;
	display: flex;
	flex-direction: column;
	width: 17.5vw;
	background-color: var(--primaryColor-dark);
	border-radius: 14px;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	-ms-border-radius: 14px;
	-o-border-radius: 14px;
	padding: 14px 24px;
}

.advisor .container {
	border-radius: 14px;
	height: 35vh;
	-webkit-tap-highlight-color: transparent;
	transform: scale(0.48);
	transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	-ms-border-radius: 14px;
	-o-border-radius: 14px;
	-webkit-transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
	-ms-transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.advisor .container:hover {
	transform: scale(0.54);
}

.advisor .container-inner {
	clip-path: path("M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z");
	position: relative;
	transform-origin: 50%;
	top: -305px;
	right: 124px;
}

.advisor .circle {
	border-radius: 24px;
	cursor: pointer;
	height: 380px;
	left: 10px;
	pointer-events: none;
	position: absolute;
	top: 210px;
	width: 380px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px;
}

.advisor .img {
	pointer-events: none;
	position: relative;
	transform: translateY(20px) scale(1.15);
	transform-origin: 50% bottom;
	transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.advisor .container:hover .img {
	transform: translateY(0) scale(1.2);
}

.advisor .img1 {
	left: 22px;
	top: 164px;
	width: 340px;
}

.advisor .img2 {
	left: 65px;
	top: 174px;
	width: 250px;
}

.advisor .img3 {
	left: -16px;
	top: 144px;
	width: 466px;
}

.advisor .name {
	color: var(--primaryColor);
	font-size: 18px;
	font-weight: 600;
	margin-top: 4px;
	text-align: center;
}

.advisor .title {
	color: var(--primaryColor-hover);
	font-family: var(--title);
	font-size: 12px;
	margin-top: 4px;
}

#hero-service {
	margin: 8dvh 0dvh;
}

#hero-service h1 {
	color: var(--primaryColor);
	font: var(--title);
	font-size: 52px;
	font-weight: bold;
	margin: 15px 21dvw;
}

#hero-service p {
	color: whitesmoke;
	font-weight: normal;
	font-size: 18px;
}

#hero-service img {}

.sub_Service {
	background: var(--primaryColor-dark);
	padding: 14px;
	border-radius: 9px;
	border: 1px solid var(--primaryColor-dark);
	margin: 24px auto;
}

.sub_Service h3 {
	color: var(--primaryColor);
	font-family: var(--title);
	font-weight: bolder;
	font-size: 32px;
}

.sub_Service .part h3 {
	color: whitesmoke;
	font-family: var(--title);
	font-weight: normal;
	font-size: 20px;
}

.sub_Service p {
	color: whitesmoke;

}

.sub_Service .part {
	display: flex;
	flex-direction: row;
	padding: 4px;
	background: transparent;
	align-items: center;
}

/* From Uiverse.io by Tiagoadag */
.sub_Service .part .card {
	background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
	border-radius: 20px;
	transition: all .3s;
}

.sub_Service .part .card2 {
	background-color: #1a1a1a;
	border-radius: 9px;
	transition: all .2s;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	-ms-border-radius: 9px;
	-o-border-radius: 9px;
}

.sub_Service .part .card2:hover {
	transform: scale(0.98);
	border-radius: 20px;
}

.sub_Service .part .card:hover {
	box-shadow: 0px 0px 30px 1px rgba(0, 255, 117, 0.30);
}

.sub_Service .part img {
	width: 26px;
	margin: 9px;
}

.sub_Service .part span {
	font-size: 1rem;
	color: whitesmoke;
}



@media only screen and (max-width: 450px) {
	#hero-service img {
		max-width: 90dvw;
	}
}

.wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.items {
	display: flex;
	gap: 0.4rem;
	perspective: calc(var(--index) * 35);
}

.item {
	width: calc(var(--index) * 3);
	height: calc(var(--index) * 8);
	background-color: #222;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	filter: grayscale(1) brightness(0.5);
	transition: transform 1.25s var(--transition), filter 3s var(--transition), width 1.25s var(--transition);
	will-change: transform, filter, rotateY, width;
	background-size: cover;
	background-repeat: no-repeat;
}

.item::before,
.item::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 20px;
	right: calc(var(--index) * -1);
}

.item::after {
	left: calc(var(--index) * -1);
}

.items .item:hover {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 10));
}

/*Right*/

.items .item:hover+* {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 8.5)) rotateY(35deg);
	z-index: -1;
}

.items .item:hover+*+* {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 5.6)) rotateY(40deg);
	z-index: -2;
}

.items .item:hover+*+*+* {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 2.5)) rotateY(30deg);
	z-index: -3;
}

.items .item:hover+*+*+*+* {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 0.6)) rotateY(15deg);
	z-index: -4;
}

/*Left*/

.items .item:has(+ :hover) {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 8.5)) rotateY(-35deg);
}

.items .item:has(+ * + :hover) {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 5.6)) rotateY(-40deg);
}

.items .item:has(+ * + * + :hover) {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 2.5)) rotateY(-30deg);
}

.items .item:has(+ * + * + * + :hover) {
	filter: inherit;
	transform: translateZ(calc(var(--index) * 0.6)) rotateY(-15deg);
}

.items .item:active,
.items .item:focus {
	width: 20vw;
	filter: inherit;
	z-index: 100;
	transform: translateZ(calc(var(--index) * 10));
	margin: 0 0.45vw;
	background-size: contain;

}

.grid {
	height: 800px;
	width: 800px;
	background-image: linear-gradient(to right, #0f0f10 1px, transparent 1px),
		linear-gradient(to bottom, #0f0f10 1px, transparent 1px);
	background-size: 1rem 1rem;
	background-position: center center;
	position: absolute;
	z-index: -1;
	filter: blur(1px);
}

.Message {
	width: 310px;
	height: 40px;
	border-radius: 10px;
	background-color: var(--primaryColor-dark);
	transform: translate(0px, 0px);
	box-shadow: 0px 0px var(--primaryColor-hover);

}

.Message:hover {
	box-shadow: 3px 3px var(--primaryColor-hover);
	transition: box-shadow 0.3s ease-in-out;
	-webkit-transition: box-shadow 0.3s ease-in-out;
	-moz-transition: box-shadow 0.3s ease-in-out;
	-ms-transition: box-shadow 0.3s ease-in-out;
	-o-transition: box-shadow 0.3s ease-in-out;
}

.MsgInput {
	font-size: 14px;
	border-radius: 5px;
	background-color: transparent;
	border: none;
	outline: none;
	width: 250px;
	height: 40px;
	transform: translate(5px, 0px);
	color: white;
	padding: 10px;
	font-weight: bold;
	-webkit-transform: translate(5px, 0px);
	-moz-transform: translate(5px, 0px);
	-ms-transform: translate(5px, 0px);
	-o-transform: translate(5px, 0px);
}

.Message:hover .MsgInput {
	color: var(--primaryColor);
}

.SendSVG_ar, .SendSVG {
	width: 30px;
	height: 30px;
	border-width: 1px;
	transform: translate(20px, -2px);
	background-size: 10px;
	border-radius: 5px;
	transition: 0.3s;
}

.SendSVG_ar {
	transform: translate(-20px, -2px);
}

.SendSVG_ar:hover, .SendSVG:hover {
	background-color: var(--primaryColor-hover);
	padding: 4px;
}

.l, .l_ar {
	position: absolute;
	width: 1%;
	height: 30px;
	background-color: #2e2f38;
	transform: translate(-20px, 5px);
}

.l_ar {
	transform: translate(20px, 5px);
}