@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);

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

#hero h1 span, #hero h2, .Message:hover .MsgInput, .navbar .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul a:hover, .navbar .dropdown ul li:hover>a, .navbar a:hover, .navbar li:hover>a {
	color: var(--primaryColor)
}

#navbar .btn-get-started, .section-title h2, .section-title p, .sticky-icon a {
	text-transform: uppercase
}

#hero h1, #hero h2, #myBtn, .counts .count-box {
	text-align: center
}

.card-grid #card, .circles, .navbar-mobile, .nft {
	overflow: hidden
}

#myBtn, .advisor .circle, .mobile-nav-toggle, .tracker:hover {
	cursor: pointer
}

.advisor .circle, .advisor .img, .ball {
	pointer-events: none
}

#myBtn, .MsgInput, .Services .owl-dots button.owl-dot:focus, .Services .owl-nav button:focus {
	outline: 0
}

: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)
}

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

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

a {
	text-decoration: none
}

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

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

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

.navbar .dropdown ul, .navbar-mobile .dropdown ul {
	box-shadow: 0 0 30px rgba(127, 137, 161, .25);
	z-index: 99
}

#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
}

.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: .3s
}

#navbar .btn-get-started, .btn-get-started, .sticky-icon a {
	font-family: var(--Normal);
	text-decoration: none
}

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

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

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

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 30px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	background: #232323;
	transition: .3s;
	border-radius: 4px
}

.navbar .dropdown ul li, .navbar-mobile .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: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-nav-toggle {
	color: #fff;
	font-size: 28px;
	display: none;
	line-height: 0;
	transition: .5s
}

.box:after, .navbar-mobile .dropdown>.dropdown-active {
	display: block
}

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

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

#myBtn, .sticky-icon, .wave.-three, .wave.-two {
	position: fixed
}

.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: .3s
}

.btn-get-started, .navbar-mobile .dropdown ul a, .navbar-mobile a {
	padding: 10px 20px
}

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

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

.navbar-mobile .active, .navbar-mobile a:hover, .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;
	opacity: 1;
	visibility: visible;
	background: #fff
}

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

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

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

	to {
		background-position: 500px 0
	}
}

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

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

#hero h1, .section-title h2, .section-title p {
	font-family: var(--title)
}

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

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

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

#myBtn {
	height: 50px;
	display: none;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	padding: 10px;
	line-height: 40px;
	border: none;
	background-color: #1e88e5;
	color: #fff;
	border-radius: 50%
}

#hero .hero-img img, #outer-orbit, .box, .counts .count-box i, .outer-orbit-cirlces, .wave {
	position: absolute
}

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

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

#navbar .btn-get-started, .btn-get-started, .section-title h2::after {
	background: var(--primaryColor);
	display: inline-block
}

#hero h1 {
	margin: 0 0 70px;
	font-size: 48px;
	font-weight: 400;
	color: #232323
}

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

#hero h2 {
	font-size: 18px;
	font-weight: 550
}

.btn-get-started {
	font-weight: 550;
	font-size: .75em;
	letter-spacing: 1px;
	border-radius: 9px;
	transition: .5s;
	color: #fff
}

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

#navbar .btn-get-started {
	font-weight: 650;
	font-size: .75em;
	letter-spacing: .5px;
	padding: 10px 15px;
	border-radius: 4px;
	transition: .5s;
	color: #fff;
	margin: 14px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

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

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

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

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

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

	.navbar ul {
		display: none
	}

	#hero .hero-img, #hero .st {
		text-align: center
	}

	#hero {
		padding-top: 80px
	}

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

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

	#hero .st {
		text-transform: capitalize;
		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 {
	top: 4vh;
	transform: rotate(80deg);
	right: 29vw
}

.wave {
	opacity: .4;
	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: 7s linear infinite drift
}

.wave.-three {
	animation: 7.5s linear infinite drift;
	background-color: var(--primaryColor)
}

.wave.-two {
	animation: 3s linear infinite drift;
	opacity: .1;
	background: #e6e6e6
}

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

@keyframes drift {
	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;
	letter-spacing: 2px;
	color: #232323
}

#circle-orbit-container {
	position: absolute;
	top: -288px;
	left: -166px;
	z-index: 100
}

#outer-orbit {
	top: 19vh;
	left: 13vw;
	width: 26vw;
	height: 26vw;
	border: 3px solid red;
	border-radius: 100%;
	z-index: 150;
	animation: 60s linear infinite spin-right;
	-webkit-animation: 60s linear infinite spin-right
}

.outer-orbit-cirlces {
	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: 60s linear infinite spin-left;
	-webkit-animation: 60s linear infinite spin-left
}

.nd, .rd, .st1 {
	top: 0
}

.st1 {
	left: -4vw
}

.nd {
	left: 29vw
}

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

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

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

.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(.5);
	top: -100%;
	left: 200%
}

@-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;
	margin: 4px 10px
}

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

.about .row1, .about .row2, .about .row3 {
	margin: 9px auto
}

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

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

.about .row2 {
	width: 45vh
}

.about .row3 {
	display: grid;
	justify-content: center
}

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

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

.about img {
	background: #1f1f24;
	border-radius: 14px;
	height: 75vh
}

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

.about .icon-box .title, .about .icon-box_ar .title {
	margin-bottom: 10px;
	font-weight: 700;
	font-family: var(--title)
}

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

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

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

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

.about .icon-box .title {
	margin-left: 40px;
	color: var(--primaryColor)
}

.about .icon-box_ar .title {
	margin-left: 40px;
	width: 150px
}

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

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

@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;
		max-width: 290px;
		margin: auto
	}

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

	.about {
		display: flex;
		margin: -80px 15px 0;
		height: 100%
	}

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

.counts {
	margin: 60px 0
}

.counts .count-box {
	padding: 46px 10px 10px;
	width: 100%;
	position: relative;
	background: var(--primaryColor);
	border-radius: 8px;
	min-height: 160px;
	margin-top: 24px;
	background: linear-gradient(to top, #6b121d, #aa1c2e)
}

.counts .count-box i {
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 42px;
	background: #fff;
	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: #fff
}

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

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

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

.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 .info, .contact .php-email-form {
	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: .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 0
}

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

.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 .address:hover i, .contact .info .email:hover i, .contact .info .phone:hover i {
	background: var(--primaryColor);
	color: #fff
}

.btn {
	border-radius: 2px
}

.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: #2b029c;
	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: 1s linear infinite animate-loading;
	animation: 1s linear infinite animate-loading
}

.contact .php-email-form input, .contact .php-email-form textarea {
	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: .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(0)
	}

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

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

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

.ball {
	width: 50px;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	border: 3px solid #1e90ff;
	border-radius: 50%
}

.circles, .context {
	width: 100%
}

.card-grid #card, .circles, .circles li, .context {
	position: absolute
}

.circles {
	top: 615px;
	left: 0;
	height: 2642px
}

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

.circles li:first-child {
	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(0);
		opacity: 1;
		border-radius: 0
	}

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

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

.advisor, .advisor .title, .sub_Service .part h3, .sub_Service h3 {
	font-family: var(--title)
}

.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%
}

.Services .owl-dots {
	text-align: center;
	padding-top: 15px
}

.Services .owl-dots button.owl-dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	display: inline-block;
	background: #ccc;
	margin: 0 3px
}

.Services .owl-dots button.owl-dot.active {
	background-color: #000
}

.Services .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .38) !important
}

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

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

.card-grid #card {
	inset: 0;
	z-index: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	transition: .7s;
	background: linear-gradient(45deg, #1a1a1a, #262626);
	border: 2px solid rgba(255, 255, 255, .1);
	box-shadow: 0 0 20px rgba(0, 0, 0, .3), inset 0 0 20px rgba(0, 0, 0, .2)
}

.card-grid #prompt, .card-grid .title {
	transition: .3s ease-in-out;
	text-align: center
}

.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;
	position: absolute;
	color: rgba(255, 255, 255, .7);
	text-shadow: 0 0 10px rgba(255, 255, 255, .3)
}

#card::before, .card-glare, .card-particles span, .glow-1, .glow-2, .glow-3 {
	opacity: 0;
	transition: opacity .3s;
	position: absolute
}

.card-grid .title {
	opacity: 0;
	position: absolute;
	font-size: 20px;
	font-weight: 800;
	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, .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, .6)
}

.card-grid .highlight {
	color: #0fa;
	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: 700
}

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

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

.blue-bg, .details, .tracker {
	height: 100%
}

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

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

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

.card-particles span {
	width: 3px;
	height: 3px;
	background: #d7d7d7;
	border-radius: 50%
}

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

#card:hover .card-glare, .tracker:hover~#card .glowing-elements div, .tracker:hover~#card::before {
	opacity: 1
}

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

@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
	}
}

.card-particles span:first-child {
	--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, .1) 0, rgba(0, 162, 255, .05) 50%, transparent 100%);
	filter: blur(20px);
	width: 150%;
	height: 150%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

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

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

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

.tr-10:hover~#card, .tr-11:hover~#card, .tr-12:hover~#card, .tr-13:hover~#card, .tr-14:hover~#card, .tr-15:hover~#card, .tr-16:hover~#card, .tr-17:hover~#card, .tr-18:hover~#card, .tr-19:hover~#card, .tr-1:hover~#card, .tr-20:hover~#card, .tr-21:hover~#card, .tr-22:hover~#card, .tr-23:hover~#card, .tr-24:hover~#card, .tr-25:hover~#card, .tr-2:hover~#card, .tr-3:hover~#card, .tr-4:hover~#card, .tr-5:hover~#card, .tr-6:hover~#card, .tr-7:hover~#card, .tr-8:hover~#card, .tr-9:hover~#card {
	transition: 125ms ease-in-out
}

.container:hover #card::before {
	transition: .2s;
	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: 0 0;
	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 {
	transform: rotateX(20deg) rotateY(-10deg) rotateZ(0)
}

.tr-2:hover~#card {
	transform: rotateX(20deg) rotateY(-5deg) rotateZ(0)
}

.tr-3:hover~#card {
	transform: rotateX(20deg) rotateY(0) rotateZ(0)
}

.tr-4:hover~#card {
	transform: rotateX(20deg) rotateY(5deg) rotateZ(0)
}

.tr-5:hover~#card {
	transform: rotateX(20deg) rotateY(10deg) rotateZ(0)
}

.tr-6:hover~#card {
	transform: rotateX(10deg) rotateY(-10deg) rotateZ(0)
}

.tr-7:hover~#card {
	transform: rotateX(10deg) rotateY(-5deg) rotateZ(0)
}

.tr-8:hover~#card {
	transform: rotateX(10deg) rotateY(0) rotateZ(0)
}

.tr-9:hover~#card {
	transform: rotateX(10deg) rotateY(5deg) rotateZ(0)
}

.tr-10:hover~#card {
	transform: rotateX(10deg) rotateY(10deg) rotateZ(0)
}

.tr-11:hover~#card {
	transform: rotateX(0) rotateY(-10deg) rotateZ(0)
}

.tr-12:hover~#card {
	transform: rotateX(0) rotateY(-5deg) rotateZ(0)
}

.tr-13:hover~#card {
	transform: rotateX(0) rotateY(0) rotateZ(0)
}

.tr-14:hover~#card {
	transform: rotateX(0) rotateY(5deg) rotateZ(0)
}

.tr-15:hover~#card {
	transform: rotateX(0) rotateY(10deg) rotateZ(0)
}

.tr-16:hover~#card {
	transform: rotateX(-10deg) rotateY(-10deg) rotateZ(0)
}

.tr-17:hover~#card {
	transform: rotateX(-10deg) rotateY(-5deg) rotateZ(0)
}

.tr-18:hover~#card {
	transform: rotateX(-10deg) rotateY(0) rotateZ(0)
}

.tr-19:hover~#card {
	transform: rotateX(-10deg) rotateY(5deg) rotateZ(0)
}

.tr-20:hover~#card {
	transform: rotateX(-10deg) rotateY(10deg) rotateZ(0)
}

.tr-21:hover~#card {
	transform: rotateX(-20deg) rotateY(-10deg) rotateZ(0)
}

.tr-22:hover~#card {
	transform: rotateX(-20deg) rotateY(-5deg) rotateZ(0)
}

.tr-23:hover~#card {
	transform: rotateX(-20deg) rotateY(0) rotateZ(0)
}

.tr-24:hover~#card {
	transform: rotateX(-20deg) rotateY(5deg) rotateZ(0)
}

.tr-25:hover~#card {
	transform: rotateX(-20deg) rotateY(10deg) rotateZ(0)
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.card-glare {
	inset: 0;
	background: linear-gradient(125deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .05) 45%, rgba(255, 255, 255, .1) 50%, rgba(255, 255, 255, .05) 55%, rgba(255, 255, 255, 0) 100%)
}

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

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

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

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

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

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

.corner-elements span:first-child {
	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, .1), transparent);
	transform: translateY(-100%);
	animation: 2s linear infinite scanMove
}

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

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

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

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

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

@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)
	}
}

ul {
	margin: 0;
	padding: 0
}

.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)
}

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

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

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

.footer-widget .boxs .actfooter-widget-headisngve:before, .footer-widget .boxs:hover:before, .sub_Service .boxs .actfooter-widget-headisngve:before, .sub_Service .boxs:hover:before {
	transform: scaleX(1.03) scaleY(1.13);
	transition: .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)
}

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

.footer-widget .boxs .content, .sub_Service .boxs .content {
	flex: 1;
	display: flex;
	align-items: center;
	background-color: var(--primaryColor-dark);
	box-shadow: 0 6px 16px rgba(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
}

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

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

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

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

.sub_Service .boxs .content h4 {
	font-size: 16px;
	font-weight: 400;
	margin: 6px;
	color: #fff
}

.footer-widget .social, .footer-widget .social_ar {
	margin: 9px 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: #fff;
	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
}

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

.details .content h2, .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)
}

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

#hero-service h1, .advisor .name, .sub_Service h3 {
	color: var(--primaryColor)
}

.advisor .person, .details .how-it-works .shape {
	border-radius: 14px;
	background-color: var(--primaryColor-dark)
}

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

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

.details .how-it-works .shape {
	color: #fff;
	padding: 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)
}

.advisor {
	margin: 90px 11px;
	align-items: center;
	padding: 15px 45px
}

.advisor .person {
	align-items: center;
	display: flex;
	flex-direction: column;
	width: 17.5vw;
	-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(.48);
	transition: transform 250ms cubic-bezier(.4, 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(.4, 0, .2, 1);
	-moz-transition: transform 250ms cubic-bezier(.4, 0, .2, 1);
	-ms-transition: transform 250ms cubic-bezier(.4, 0, .2, 1);
	-o-transition: transform 250ms cubic-bezier(.4, 0, .2, 1)
}

.advisor .container:hover {
	transform: scale(.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, .grid, .l, .l_ar {
	position: absolute
}

.advisor .circle {
	border-radius: 24px;
	height: 380px;
	left: 10px;
	top: 210px;
	width: 380px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	-ms-border-radius: 24px;
	-o-border-radius: 24px
}

.advisor .img {
	position: relative;
	transform: translateY(20px) scale(1.15);
	transform-origin: 50% bottom;
	transition: transform .3s cubic-bezier(.4, 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 {
	font-size: 18px;
	font-weight: 600;
	margin-top: 4px;
	text-align: center
}

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

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

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

#hero-service p {
	color: #232323;
	font-weight: 400;
	font-size: 18px
}

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

.sub_Service h3 {
	font-weight: bolder;
	font-size: 32px
}

.sub_Service .part h3 {
	color: #f5f5f5;
	font-weight: 400;
	font-size: 20px
}

.sub_Service p {
	color: #232323
}

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

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

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

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

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

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

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

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

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

.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;
	z-index: -1;
	filter: blur(1px)
}

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

.Message:hover {
	box-shadow: 3px 3px #e3e3e3;
	transition: box-shadow .3s ease-in-out;
	-webkit-transition: box-shadow .3s ease-in-out;
	-moz-transition: box-shadow .3s ease-in-out;
	-ms-transition: box-shadow .3s ease-in-out;
	-o-transition: box-shadow .3s ease-in-out
}

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

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

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

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

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

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