@charset "utf-8";
/* CSS Document */
html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: "Poppins", sans-serif;
}
body::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
 border-radius: 10px;
 background-color: #F5F5F5;
}
body::-webkit-scrollbar {
 width: 3px;
 background-color: #F5F5F5;
}
 body::-webkit-scrollbar-thumb {
 background-color: #666;
}
h1, h2, h3, h4, h5, h6, p, ul, ol {
	margin: 0;
	padding: 0
}
a, button {
	text-decoration: none;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
img {
	max-width: 100%
}
/* CSS Document */

/* CSS header */

.header-slider-main-wrap {
	background: #050c16 url(../images/bg-slider.jpg) no-repeat top;
	background-attachment: fixed;
	background-size: cover;
	height: 100vh;
	position: relative;
	overflow: hidden !important;
}
.header-main-wraper {
	padding: 30px 18px;
	position: relative;
	z-index: 11
}
.site-logo-wrap {
	margin-top: 2px;
}
.site-logo-wrap a {
	color: #fff;
	font-size: 30px;
	font-weight: 600;
}
.site-logo-wrap a span {
	color: #ff6d54
}
.header-nav-wrap {
	background: rgba(121, 198, 223, 0.1);
	border: 1px solid #1f4964;
	padding: 14px 15px;
	border-radius: 50px
}
.header-nav-wrap ul {
	list-style: none;
	text-align: center;
}
.header-nav-wrap ul li {
	display: inline-block;
}
.header-nav-wrap ul li a {
	color: #fff;
	font-size: 14px;
	padding: 0 22px;
	border-right: 1px solid #1f4964;
	cursor: pointer;
}
.header-nav-wrap ul li a:hover {
	color: #ff6d54;
}
.header-nav-wrap ul li:nth-last-child(1) a {
	border: none;
}
.button-header-wrap {
	padding-top: 15px;
	text-align: right
}
.button-header-wrap a {
	background: linear-gradient(to right, #ff6d54, #8774a6);
	padding: 16px 35px;
	font-size: 14px;
	color: #fff;
	border-radius: 50px;
}
.button-header-wrap a:hover {
	background: linear-gradient(to right, #8774a6, #ff6d54);
}
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 350px;
	height: 100vh;
	padding: 65px 0 0 0;
	background: #151229;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
	overflow: auto;
}
.drawer-menu li {
	text-align: left;
}
.drawer-menu li a {
	display: block;
	height: auto;
	line-height: 52px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
	border-bottom: 1px solid #231f3f;
}
.drawer-menu li a:hover {
	color: #1a1e24;
	background: #fff;
}
/* checkbox */
.check {
	display: none;
}
/* menu button - label tag */
.menu-btn {
	position: absolute;
	display: block;
	top: 42px;
	right: 28px;
	display: block;
	width: 40px;
	height: 40px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 3;
}
.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 35px;
	height: 1px;
	background: #fff;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.bar.middle {
	top: 10px;
	opacity: 1;
}
.bar.bottom {
	top: 20px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}
.menu-btn__text {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
}
.menu-btn:hover .bar {
	background: #18b6a4;
}
.close-menu {
	position: fixed;
	top: 0;
	right: 350px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}
/* checked */
.check:checked ~ .drawer-menu {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 2;
}
.check:checked ~ .contents {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}
.check:checked ~ .menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
	width: 40px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #fff
}
.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
	width: 40px;
	top: 28px;
	background: #fff;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.5);
	visibility: visible;
	opacity: 1;
	z-index: 3;
}
.drawer-menu ul {
	list-style: none;
}
.drawer-menu ul li a {
	text-decoration: none;
}
.drawer-menu ul li a img {
	margin-right: 5px;
	margin-top: -2px;
}
.logo-mobile-menu {
	text-align: center;
	padding-bottom: 24px
}
.mobile-header-wrap {
	display: none;
}
/* CSS header */

/* CSS slider */

.slider-area-text-wraper {
}
.slider-service-wrap {
	position: absolute;
	left: -20px;
	top: 45%;
	rotate: -90deg;
	z-index: 111;
}
.slider-service-wrap a {
	text-transform: uppercase;
	font-size: 12px;
	color: #fff;
	letter-spacing: 3px;
}
.slider-service-wrap a:before {
	content: "";
	position: absolute;
	background: #ff6d54;
	width: 50px;
	height: 1px;
	bottom: 10px;
	left: -64px;
}
.slider-text-wrap {
	text-align: center;
	width: 60%;
	margin: 0 auto;
	padding-top: 200px;
	position: relative;
	z-index: 1111
}
.slider-text-wrap h1 {
	color: #fff;
	font-size: 80px;
	font-weight: 500;
	line-height: 63px;
}
.slider-text-wrap p {
	font-size: 16px;
	color: #fff;
	line-height: 28px;
	font-weight: 400;
	padding: 25px 0 30px 0
}
.slider-btn-wrap {
}
.slider-btn-wrap a {
	padding: 14px 35px;
	color: #fff;
	background: #07060a;
	border: 1px solid #1f4964;
	margin: 0 10px;
	border-radius: 50px;
	font-size: 14px;
}
.slider-btn-wrap a:hover {
	background: #ff6d54;
	color: #fff;
	border: 1px solid #ff6d54
}
.bottom-slider-text-wrap {
	position: absolute;
	width: 98%;
	bottom: 10px;
	left: 0px;
	right: 0;
	margin: 0 auto;
	z-index: 111;
}
.fallow-slider-wrap {
	font-size: 14px;
	color: #fff;
	display: flex;
}
.fallow-slider-wrap span {
	line-height: 18px;
	margin-right: 10px;
	display: inline-block;
	position: relative;
	top: 8px;
}
.fallow-slider-wrap a:hover {
	opacity: 0.8;
}
.bottom-slider-text-wrap ul {
	list-style: none;
}
.scroll-explore-wrap {
	text-align: center;
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 13px;
	position: relative;
}
#mouse-scroll {
	style: block;
}
#mouse-scroll img {
	margin-bottom: 10px;
}
#mouse-scroll {
	position: absolute;
	margin: auto;
	right: 0;
	bottom: -44px;
	z-index: 999;
	text-align: center;
	left: 47%;
	margin: 0 auto;
}
#mouse-scroll span {
	display: block;
	width: 5px;
	height: 5px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform: rotate(45deg);
	border-right: 1px solid #ff6d54;
	border-bottom: 1px solid #ff6d54;
	margin: 0 0 3px 7px;
}
#mouse-scroll .mouse {
	height: 32px;
	width: 20px;
	border-radius: 10px;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	border: 1px solid #ff6d54;
	bottom: 170px;
}
#mouse-scroll .down-arrow-1 {
	margin-top: 6px;
}
#mouse-scroll .down-arrow-1, #mouse-scroll .down-arrow-2, #mouse-scroll .down-arrow-3 {
	-webkit-animation: mouse-scroll 1s infinite;
 -moz-animation: mouse-scroll 1s infinite:
}
#mouse-croll .down-arrow-1 {
	-webkit-animation-delay: .1s;
	-moz-animation-delay: .1s;
	-webkit-animation-direction: alternate;
}
#mouse-scroll .down-arrow-2 {
	-webkit-animation-delay: .2s;
	-moz-animation-delay: .2s;
	-webkit-animation-direction: alternate;
}
#mouse-scroll .down-arrow-3 {
	-webkit-animation-delay: .3s;
	-moz-animation-dekay: .3s;
	-webkit-animation-direction: alternate;
}
#mouse-scroll .mouse-in {
	height: 5px;
	width: 2px;
	display: block;
	margin: 5px auto;
	background: #ff6d54;
	position: relative;
}
#mouse-scroll .mouse-in {
	-webkit-animation: animated-mouse 1.2s ease infinite;
	moz-animation: mouse-animated 1.2s ease infinite;
}
 @-webkit-keyframes animated-mouse {
 0% {
 opacity: 1;
 -webkit-transform: translateY(0);
 -ms-transform: translateY(0);
 transform: translateY(0);
}
 100% {
 opacity: 0;
 -webkit-transform: translateY(6px);
 -ms-transform: translateY(6px);
 transform: translateY(6px);
}
}
@-webkit-keyframes mouse-scroll {
 0% {
 opacity: 1;
}
 50% {
 opacity: .5;
}
 100% {
 opacity: 1;
}
}
@keyframes mouse-scroll {
 0% {
 opacity: 0;
}
 50% {
 opacity: 0.5;
}
 100% {
 opacity: 1;
}
}
.scroll-explore-wrap .text-scroll {
	position: relative;
	top: -25px
}
.satisfied-main-wrap {
	text-align: right;
}
.image-satisfied-text strong {
	font-weight: 600;
	color: #fff;
	position: relative;
	top: -8px;
	margin-left: 10px;
}
.satisfied-main-wrap .image-satisfied-text {
	text-align: left !important;
}
.image-satisfied-text span {
	font-size: 14px;
	color: #fff;
	position: relative;
	top: -21px
}
.image-satisfied-text span img {
	position: relative;
	top: -2px;
}
#clouds {
	top: 25%;
	width: 100%;
	position: absolute;
}
/*Time to finalise the cloud shape*/
.cloud {
	width: 300px;
	height: 50px;
	position: relative;
	opacity: 0.4
}
.cloud:before, .cloud:after {
	content: '';
	position: absolute;
	width: 300px;
	height: 50px;
	position: absolute;
	top: -15px;
	left: 10px;
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}
.cloud:after {
	width: 120px;
	height: 120px;
	top: -55px;
	left: auto;
	right: 15px;
}
/*Time to animate*/
.x1 {
	-webkit-animation: moveclouds 45s linear infinite;
	-moz-animation: moveclouds 45s linear infinite;
	-o-animation: moveclouds 45s linear infinite;
}
/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
	left: 200px;
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
	opacity: 0.6; /*opacity proportional to the size*/
	/*Speed will also be proportional to the size and opacity*/
	/*More the speed. Less the time in 's' = seconds*/
	-webkit-animation: moveclouds 55s linear infinite;
	-moz-animation: moveclouds 55s linear infinite;
	-o-animation: moveclouds 55s linear infinite;
}
.x3 {
	left: -250px;
	top: -200px;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	-webkit-animation: moveclouds 50s linear infinite;
	-moz-animation: moveclouds 50s linear infinite;
	-o-animation: moveclouds 50s linear infinite;
}
.x4 {
	left: 470px;
	top: -250px;
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	opacity: 0.75; /*opacity proportional to the size*/
	-webkit-animation: moveclouds 48s linear infinite;
	-moz-animation: moveclouds 48s linear infinite;
	-o-animation: moveclouds 48s linear infinite;
}
.x5 {
	left: -150px;
	top: -150px;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.8; /*opacity proportional to the size*/
	-webkit-animation: moveclouds 50s linear infinite;
	-moz-animation: moveclouds 50s linear infinite;
	-o-animation: moveclouds 50s linear infinite;
}
 @-webkit-keyframes moveclouds {
 0% {
margin-left: 1000px;
}
 100% {
margin-left: -1000px;
}
}
@-moz-keyframes moveclouds {
 0% {
margin-left: 2500px;
}
 100% {
margin-left: -2500px;
}
}
@-o-keyframes moveclouds {
 0% {
margin-left: 1000px;
}
 100% {
margin-left: -1000px;
}
}
#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url("");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	top: 0
} /* ---- stats.js ---- */
.count-particles {
	background: #000022;
	position: absolute;
	top: 48px;
	left: 0;
	width: 80px;
	color: #13e8e9;
	font-size: 0.8em;
	text-align: left;
	text-indent: 4px;
	line-height: 14px;
	padding-bottom: 2px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.js-count-particles {
	font-size: 1.1em;
}
#stats, .count-particles {
	-webkit-user-select: none;
	margin-top: 5px;
	margin-left: 5px;
}
#stats {
	border-radius: 3px 3px 0 0;
	overflow: hidden;
}
.count-particles {
	border-radius: 0 0 3px 3px;
}
/* CSS slider */

/* CSS content */


.services-main-wraper {
	padding: 90px 0;
	background: url(../images/bg-services.jpg) no-repeat bottom;
	background-size: cover;
}
.services-main-wraper .services-text-wrap {
}
.services-text-wrap span {
	font-weight: 600;
	letter-spacing: 6px;
	font-size: 14px;
	color: #ff6d54;
	display: block;
	margin-bottom: 50px
}
.services-text-wrap h2 {
	font-size: 60px;
	color: #071323;
	margin-bottom: 130px;
	letter-spacing: -3px;
	line-height: 60px;
}
.services-text-wrap p {
	font-size: 16px;
	color: #000000;
	line-height: 26px;
	position: relative;
}
.services-text-wrap p:before {
	content: "";
	position: absolute;
	top: -20px;
	width: 50px;
	height: 3px;
	background: #ff6d54
}
.btn-learn-more-wrap {
	margin-top: 35px
}
.btn-learn-more-wrap a {
	padding: 16px 40px;
	color: #000;
	font-size: 14px;
	border-radius: 50px;
	background: linear-gradient(to right, #ff6d54, #8774a6);
	color: #fff;
}
.btn-learn-more-wrap a:hover {
}
.services-listing-main-wrap {
}
.services-listing-main-wrap ul {
	list-style: none;
	margin: 0;
	width: 85%;
	margin: 0 auto;
}
.services-listing-main-wrap ul li {
	padding: 0;
	margin: 0;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.services-listing-main-wrap ul li:nth-child(2) {
	border-right: none;
}
.services-listing-main-wrap ul li .lisitng-sevice-wrap a {
	background: #f2f2f2;
	text-align: center;
	padding: 20px 25px;
	display: block;
}
.services-listing-main-wrap ul li:nth-last-child(-n+2) {
    border-bottom: none;
}
.services-listing-main-wrap ul li:nth-child(4) {
	border-bottom: none;
	border-right: none;
}
.lisitng-sevice-wrap span {
	display: block;
	font-size: 14px;
	color: #ff6d54;
	font-weight: 600;
	margin-bottom: 15px;
}
.listing-service-text {
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 5px;
	font-weight: 600;
}
.services-listing-main-wrap ul li:hover .lisitng-sevice-wrap a {
	background: #ff6d54;
}
.services-listing-main-wrap ul li:hover .lisitng-sevice-wrap a span {
	color: #fff;
}
.services-listing-main-wrap ul li:hover .lisitng-sevice-wrap a .listing-service-text {
	color: #fff;
}
.listing-service-image img {
	width: 150px;
}
.what-we-are-wrap {
	background: #050b16;
	position: relative;
	height: 1060px;
	overflow: hidden;
}
.what-we-are-wrap .container-fluid {
	padding: 0;
}
.what-we-are-wrap video {
	opacity: 0.6;
}
.who-we-are-text {
	position: absolute;
	top: 0;
	padding: 100px 0;
	width: 100%
}
.who-we-are-text span {
	letter-spacing: 5px;
	color: #ff6d54;
	text-transform: uppercase;
	font-size: 14px;
	display: block;
	margin-bottom: 25px;
	font-weight: 600;
}
.who-we-are-text h2 {
	font-size: 100px;
	color: #fff;
	line-height: 90px;
	letter-spacing: -3px;
}
.detail-text-wrap {
	width: 65%;
	float: right;
	margin-top: -55px;
}
.detail-text-wrap p {
	font-size: 18px;
	color: #fff;
	line-height: 26px;
	font-weight: 300
}
.explore-more-wrap {
	margin-top: 35px;
}
.explore-more-wrap a {
	border-bottom: 1px solid #fff;
	color: #fff;
	font-weight: 600;
}
.who-we-are-carousel-wrap {
	margin-top: 80px;
}
.who-listing-wraper {
}
.who-listing-wraper .who-listing-image {
}
.who-listing-wraper .who-listing-text h3 {
	font-size: 20px;
	color: #fff;
	margin: 15px 0;
}
.who-listing-wraper .who-listing-text p {
	color: #fff;
	font-size: 16px;
	padding-right: 100px;
	font-weight: 300;
	padding-bottom: 15px;
}
.readmore-btn {
}
.readmore-btn a {
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	border-bottom: 1px solid #fff;
}
.why-choose-main-wraper {
	padding: 80px 0;
	background: #ebedf7
}
.why-choose-main-wraper .heading-sub-top {
	display: block;
	text-align: center;
	letter-spacing: 5px;
	color: #ff6d54;
	text-transform: uppercase;
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
	font-weight: 600;
}
.why-choose-main-wraper h2 {
	font-size: 60px;
	color: #071323;
	margin-bottom: 20px;
	letter-spacing: -3px;
	line-height: 60px;
	text-align: center;
}
.why-choose-main-wraper p {
	text-align: center;
	color: #000;
	width: 60%;
	margin: 0 auto;
	line-height: 28px;
}
.why-choose-main-wraper ul {
	list-style: none;
	margin-top: 40px;
}
.why-choose-main-wraper ul li {
	position: relative
}
.listing-what-get-wrap {
	background: #fff;
	width: 300px;
	height: 300px;
	padding: 81px 50px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	overflow: hidden
}
.hover-content-wrap {
	background: #ff6d54;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	position: absolute;
	bottom: -300px;
	left: 0px;
	padding: 76px 28px;
	color: #fff;
	font-size: 16px;
}
.listing-what-get-wrap:hover .hover-content-wrap {
	bottom: 0;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
.listing-what-get-icon {
	width: 80px;
	margin: 0 auto;
	margin-bottom: 10px;
}
.listing-get-heading {
	font-weight: 600;
	font-size: 18px;
	color: #1a153d;
	font-family: 'DM Sans', sans-serif;
	line-height: 23px;
}
.why-choose-main-wraper ul li:before {
	content: "";
	background: url(../images/border-image.png) no-repeat top;
	position: absolute;
	right: -22px;
	top: 0;
	width: 151px;
	height: 118px;
	background-size: contain;
}
.why-choose-main-wraper ul li:nth-child(2):before {
	content: "";
	background: url(../images/border-image-1.png) no-repeat top;
	position: absolute;
	left: -22px;
	bottom: 0;
	top: auto;
	width: 151px;
	height: 118px;
	background-size: contain;
}
.why-choose-main-wraper ul li:nth-child(4):before {
	content: "";
	background: url(../images/border-image-1.png) no-repeat top;
	position: absolute;
	left: -22px;
	bottom: 0;
	top: auto;
	width: 151px;
	height: 118px;
	background-size: contain;
}
.cta-btn-we-offer {
	text-align: center;
}
.cta-btn-we-offer {
	margin-top: 60px;
	font-size: 30px;
	color: #000;
	font-weight: 600;
}
.cta-btn-we-offer h1 {
	color: #000 !important;
}
.cta-btn-we-offer h1 span {
	color: #000;
}
.cta-btn-we-offer a {
	display: block;
	padding: 15px 0;
	width: 22%;
	margin: 20px auto 0 auto;
	font-size: 14px;
	border-radius: 50px;
	background: linear-gradient(to right, #ff6d54, #8774a6);
	color: #fff;
	font-weight: normal
}
.cta-btn-we-offer a:hover {
	background: linear-gradient(to right, #8774a6, #ff6d54);
}
.gpu-research-wraper {
	padding: 80px 0 0 0;
}
.heading-gpu-btn {
}
.heading-gpu-btn h2 {
	font-size: 60px;
	color: #071323;
	margin-bottom: 20px;
	letter-spacing: -3px;
	line-height: 60px;
}
.btn-gpu-wrap {
	text-align: right;
	margin-top: 45px;
}
.btn-gpu-wrap a {
	background: linear-gradient(to right, #ff6d54, #8774a6);
	padding: 16px 35px;
	font-size: 14px;
	color: #fff;
	border-radius: 50px;
}
.btn-gpu-wrap a:hover {
	background: linear-gradient(to right, #8774a6, #ff6d54);
}
.gpu-research-wraper p {
	font-size: 18px;
	color: #000;
	line-height: 28px;
	padding-bottom: 40px;
	font-weight: 300;
}
.dashboard-image-wrap img {
	width: 100%;
}
.contact-main-wrap {
}
.contact-main-wrap .contact-heading-wrp {
	background: #112337;
	padding: 80px 0 280px 0;
}
.contact-heading-wrp span {
	display: block;
	letter-spacing: 5px;
	color: #ff6d54;
	text-transform: uppercase;
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
	font-weight: 600;
	text-align: center
}
.contact-heading-wrp h2 {
	font-size: 60px;
	color: #fff;
	margin-bottom: 15px;
	letter-spacing: -3px;
	line-height: 60px;
	text-align: center;
}
.contact-heading-wrp p {
	font-size: 18px;
	font-weight: 300;
	text-align: center;
	color: #fff;
}
.contact-form-wraper {
	background: #fff;
	padding: 35px;
	margin-top: -240px;
	border-radius: 20px;
	margin-bottom: 45px;
	position: relative;
}
.contact-form-wraper .form-group {
	border: 1px solid #ddd;
	padding: 8px;
	position: relative;
	border-radius: 8px;
	margin-bottom: 25px;
}
.contact-form-wraper .form-group label {
	position: absolute;
	top: 13px;
	font-weight: 500;
	color: #000;
	left: 17px;
	font-size: 16px
}
.contact-form-wraper .form-group .form-control {
	height: 35px;
	box-shadow: none;
	border: none;
	outline: none;
	padding-left: 90px;
	font-size: 16px
}
.textarea-group {
	border: 1px solid #ddd;
	padding: 8px;
	position: relative;
	border-radius: 8px;
	margin-bottom: 25px;
}
.textarea-group label {
	position: absolute;
	top: 13px;
	font-weight: 500;
	color: #000;
	left: 17px;
	font-size: 16px
}
.textarea-group .form-control {
	box-shadow: none;
	border: none;
	outline: none;
	padding-left: 90px;
	font-size: 16px
}
.contact-btn-wrap {
	text-align: right;
}
.contact-btn-wrap button {
	background: #181e47;
	padding: 12px 50px;
	border: none;
	outline: none;
	color: #fff;
	border-radius: 50px;
	font-size: 14px;
}
.contact-terms {
	font-size: 14px;
	color: #000;
	padding-right: 120px;
}
.client-partner-main-wrap {
	background: #ebedf7;
	padding: 370px 0 60px 0;
	margin-top: -351px;
}
.client-partner-main-wrap h2 {
	text-align: center;
	font-size: 60px;
	color: #071323;
	margin-bottom: 20px;
	letter-spacing: -3px;
	line-height: 60px;
}
.client-partner-main-wrap {
}
.client-partner-main-wrap ul {
	list-style: none;
	margin-top: 55px
}
.client-partner-main-wrap ul li {
}
.client-partner-main-wrap ul li .listing-logo-wrp {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
}
.listing-logo-wrp .listing-logo-text {
	background: #e8edf5;
	padding: 12px 0;
	text-align: center;
	color: #000;
	border-radius: 6px;
	font-size: 16px
}
.faq-main-wraper {
	padding: 90px 0;
}
.faq-main-wraper h3 {
	text-align: center;
	font-size: 60px;
	color: #071323;
	margin-bottom: 30px;
	letter-spacing: -3px;
	line-height: 60px;
}
.faq-main-wraper p {
	padding: 0 120px;
	color: #000;
	font-weight: 300;
	text-align: center;
	line-height: 28px;
	font-size: 18px;
	padding-bottom: 30px;
}
.faq-main-wraper .accordion {
	width: 80%;
	margin: 0 auto;
}
.faq-main-wraper .accordion h2 button {
	box-shadow: none;
	border: none;
	background: #e8edf5;
	border-radius: 5px;
	color: #000;
	font-weight: 500;
	padding: 22px 25px
}
.faq-main-wraper .accordion h2 button span {
	margin-right: 10px;
}
.faq-main-wraper .accordion .accordion-item {
	border: none;
	margin-bottom: 10px;
}
.accordion-button:not(.collapsed)::after {
	filter: brightness(0%);
	opacity: 0.4
}
.faq-main-wraper .accordion p {
	padding: 0;
	text-align: left;
}
.faq-main-wraper .accordion .accordion-body {
	padding: 25px 0;
}
.modal {
	background: rgb(0 0 0 / 15%);
	backdrop-filter: blur(3px);
}
.modal-dialog {
	max-width: 700px;
}
.service-detail-text-wrap p {
	padding-top: 15px;
	font-size: 16px;
	color: #000;
}
.get-consultation-wrp {
	margin-top: 25px;
	margin-bottom: 25px;
}
.get-consultation-wrp a {
	padding: 16px 40px;
	color: #000;
	font-size: 14px;
	border-radius: 50px;
	background: linear-gradient(to right, #ff6d54, #8774a6);
	color: #fff;
}
.get-consultation-wrp a:hover {
	background: linear-gradient(to right, #8774a6, #ff6d54);
}
.gpu-process-team-wrap{
	padding-bottom:30px;
}
.gpu-process-team-wrap h4{
	font-size: 60px;
    color: #071323;
    margin-bottom: 20px;
    letter-spacing: -3px;
    line-height: 60px;
}
.sub-heading-process{
	    display: block;
    letter-spacing: 5px;
    color: #ff6d54;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 25px;
    font-weight: 600;
}
.listing-process-wrap ul{
	list-style:none;
	position:relative;
	margin:30px 0;
}
.listing-process-wrap ul:before{
	content: "";
    position: absolute;
    height: 75.5%;
    background: #ff6d54;
    width: 1px;
    left: 0;
    top: 40px;
}
.listing-process-wrap ul li{
	position:relative;
	margin-bottom:45px
}
.listing-process-wrap ul li:before{
    content: "";
    position: absolute;
    height: 1px;
    background: #ff6d54;
    width: 50px;
    left: 0;
    top: 39px;
}
.process-inner-wrap{
	margin-left:50px
}
.process-list-icon{
	border:2px dashed #ff6d54;
	width:80px;
	height:80px;
	font-size:25px;
	color:#ff6d54;
	font-weight:500;
	border-radius:50%;
	text-align:center;
	padding-top:20px;
	float:left
}
.process-list-text{
	width:55%;
	float:left;
	padding-left:15px;
}
.process-list-text .process-list-heading{
	font-weight:600;
	font-size:20px;
	color: #071323;
}
.team-listing-main-wrp{
	background:url(../images/bg-slider-1.jpg) no-repeat top;;
	background-size:cover;
	height:620px;
	margin-left:70px;
	padding:45px;
}
.team-inner-list-wrap{
	background:#fff;
	padding:45px
}
.team-inner-list-wrap h5{
	font-size:36px;
    color: #071323;
    letter-spacing: -1px;
    line-height: 60px;
}
.team-inner-list-wrap ul{
	list-style:none;
}
.team-inner-list-wrap ul li{
}
.team-inner-list-wrap p{
		padding-top: 15px;
	font-size:20px;
	color: #000;
	font-weight:500;
	font-style:italic;
	padding:25px 0;
	line-height:28px;
	border-bottom:1px solid #ccc;
}
.team-inner-list-wrap p:nth-child(3){
	border:none;
}
.team-image{
	margin:15px 0;
}
.team-image span{
	font-size:20px;
	color:#000;
	padding-top:3px
}

/* CSS content */

/* CSS footer */

.footer-main-wraper {
	background: url(../images/bg-footer.jpg) no-repeat top;
	background-size: cover;
	padding: 120px 0;
	text-align: center;
	color: #fff;
	font-size: 60px;
	font-weight: 600;
	position: relative;
}
.footer-main-wraper h3 {
	text-align: center;
	color: #fff;
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 10px;
}
.footer-main-wraper p {
	font-size: 24px;
	color: #fff;
	text-align: center;
	font-weight: 300;
	padding-top: 10px;
}
.get-consultation-wrap {
	margin-top: 0px
}
.get-consultation-wrap a {
	background: linear-gradient(to right, #ff6d54, #8774a6);
	padding: 16px 35px;
	font-size: 14px;
	color: #fff;
	border-radius: 50px;
}
.get-consultation-wrap a:hover {
	background: linear-gradient(to right, #8774a6, #ff6d54);
}
.menusitebar-main-wraper {
	display: none;
}
/* CSS footer */

/* CSS media */

@media (max-width:1490px) and (min-width:1170px) {
.slider-text-wrap {
	width: 70%;
}
.header-nav-wrap ul li a {
	padding: 0 15px;
}
}
@media (max-width:1300px) and (min-width:1170px) {
.slider-text-wrap {
	width: 73%;
}
.header-nav-wrap ul li a {
	padding: 0 9px;
}
}
@media screen and (max-width:1169px) {
.header-nav-wrap {
	display: none;
}
.button-header-wrap {
	display: none;
}
.header-main-wraper {
	padding: 30px;
}
.slider-text-wrap {
	text-align: center;
	width: 80%;
	padding-top: 200px;
}
.slider-text-wrap h1 {
	font-size: 60px;
	margin-bottom: 0;
}
.slider-text-wrap p {
	padding-top: 15px;
}
.services-listing-main-wrap ul {
	width: 100%;
}
.services-text-wrap h2 {
	margin-bottom: 30px;
}
.detail-text-wrap {
	width: 100%;
	float: right;
	margin-top: 15px;
}
.services-text-wrap span {
	margin-bottom: 20px;
}
.who-we-are-carousel-wrap {
	margin-top: 20x;
}
.why-choose-main-wraper ul li {
	width: 100%;
}
.listing-what-get-wrap {
	margin: 15px auto;
}
.why-choose-main-wraper ul li:before {
	display: none;
}
.why-choose-main-wraper p {
	width: 100%;
}
.what-we-are-wrap video {
	opacity: 0.6;
	height: 100%;
}
.what-we-are-wrap video {
}
.who-we-are-carousel-wrap {
	display: none;
}
.who-we-are-text {
	padding: 80px 0;
}
.what-we-are-wrap {
	height: auto;
}
.mobile-header-wrap {
	display: block;
}
.slider-text-wrap {
	z-index: 1 !important;
}
.menusitebar-main-wraper {
	display: block;
}
}
 @media screen and (max-width:990px) {
.fallow-slider-wrap {
	display: none;
}
.satisfied-main-wrap {
	display: none;
}
.scroll-explore-wrap {
	top: -70px;
}
.slider-service-wrap {
	display: none;
}
.slider-text-wrap {
	width: 100%;
}
.header-slider-main-wrap {
	height: auto;
}
.slider-text-wrap {
	padding: 30px 0 175px 0
}
.services-main-wraper {
	padding: 50px 0;
}
.services-text-wrap span {
	text-align: center;
}
.services-text-wrap h2 {
	text-align: center;
}
.services-text-wrap p {
	text-align: center;
}
.btn-learn-more-wrap {
	margin-top: 35px;
	text-align: center;
	margin-bottom: 35px;
}
.services-text-wrap p:before {
	margin: 0 auto;
	left: 0;
	right: 0
}
.slider-btn-wrap a {
	display: block;
	margin: 0 25px;
	;
	margin-bottom: 10px;
}
}
@media screen and (max-width:768px) {
.who-we-are-text h2 {
	font-size: 60px;
	line-height: 60px
}
.who-we-are-text {
	position: relative
}
.why-choose-main-wraper {
	padding: 60px 0;
}
.gpu-research-wraper {
	padding: 60px 0 0 0;
}
.btn-gpu-wrap {
	text-align: left;
	margin-bottom: 50px;
	margin-top: 13px;
}
.heading-gpu-btn h2 {
	text-align: left;
}
.contact-main-wrap .contact-heading-wrp {
	padding-top: 60px;
}
.faq-main-wraper h3 {
	font-size: 50px;
	line-height: 50px;
}
.client-partner-main-wrap h2 {
	font-size: 50px;
	line-height: 50px;
}
.contact-heading-wrp h2 {
	font-size: 50px;
	line-height: 50px;
}
.heading-gpu-btn h2 {
	font-size: 50px;
	line-height: 50px;
}
.why-choose-main-wraper h2 {
	font-size: 50px;
	line-height: 50px;
}
.services-text-wrap h2 {
	font-size: 50px;
	line-height: 50px;
}
.slider-text-wrap h1 {
	font-size: 50px;
	line-height: 50px;
}
.faq-main-wraper p {
	padding: 0;
}
.faq-main-wraper {
	padding: 60px 0;
}
.faq-main-wraper .accordion {
	width: 100%;
	margin-top: 30px;
}
.what-we-are-wrap video {
	opacity: 0.6;
	height: 100%;
	position: absolute;
	top: 0;
	width: 250%;
	left: -300px
}
.bottom-slider-text-wrap {
	z-index: 1;
}
.who-we-are-text {
	padding: 40px 0;
}
.cta-btn-we-offer a {
	display: block;
	border: none;
}
.cta-btn-we-offer {
	margin-top: 30px;
}
}



/* Overlay Loader Styles */
#loaderOverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
	z-index: 1000; /* Ensure it overlays everything else */
}

.col-md-6 > .form-group {
	margin-bottom: 0px;
}

.contact-form > .col-md-6 {
	margin-bottom: 25px;
}

/* Loader Spinner */
#loader {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.is-invalid .form-control {
	border-color: #dc3545;
}
.invalid-feedback {
	display: none;
	color: #dc3545;
}
.is-invalid .invalid-feedback {
	display: block;
}

.success-message {
	display: none; /* Hide by default */
}

.error-message {
	display: none; /* Hide by default */
}

.social {
	width: 37px;
	height: 37px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.social-icon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}