/*====  GOOGLE-FONT & DEFAULT CSS  ====*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&amp;display=swap');
html, body {
  
}
body {
 
}
body {
 	color: #f7f7f7;
 	font-size: 16px;
 	line-height: 1.8;
 	font-weight: 500;
 	font-family: 'Poppins', sans-serif;
 	overflow-x: hidden;
 	scroll-behavior:smooth;
}
::-moz-selection {
	color: #fff;
	background-color: #000;
	text-shadow: none;
}
::selection {
	color: #fff;
	background-color: #000;
	text-shadow: none;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}
h1, .h1 {
	font-size: 48px;
}
@media (max-width: 767px) {
	h1, .h1 {
		font-size: 32px;
	}
}
h2, .h2 {
	font-size: 42px;
}
@media (max-width: 767px) {
	h2, .h2 {
		font-size: 28px;
	}
}
h3, .h3 {
	font-size: 28px;
}
@media (max-width: 767px) {
	h3, .h3 {
		font-size: 24px;
	}
}
h4, .h4 {
	font-size: 24px;
}
@media (max-width: 767px) {
	h4, .h4 {
		font-size: 20px;
	}
}
h5, .h5 {
	font-size: 20px;
    line-height: 1.7;
}
h6, .h6 {
	font-size: 16px;
}
a:focus,
button:focus {
	outline: 0;
}
a {
	text-decoration: none;
	display: inline-block;
}
a:hover, a:active, a:focus {
	text-decoration: none;
	outline: 0;
}
a:hover {
	color: initial;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
li {
	padding: 0;
	margin: 0;
}
mark {
	color: #FFC25C;
	padding: 0;
	margin: 0;
	background-color: transparent;
}

/*==== utilities classes ====*/
.font-primary {
	font-family: 'Poppins', sans-serif;
}
.font-w-500 {
	font-weight: 500 !important;
}
.font-w-600 {
	font-weight: 600 !important;
}
.font-w-700 {
	font-weight: 700 !important;
}
.font-w-800 {
	font-weight: 800 !important;
}
.text-warning {
	color: #ffbc41;
}
.bg-soft-white {
	background-color: #111111;
}
.bg-soft-pink {
	background-color: #FFEFE8;
}
.bg-soft-blue {
	background-color: #fafafa;
}
.bg-soft-green {
	background-color: #e7ffdf;
}
.bg-dark-purple {
	background-color: #1F1F39;
}
.line-link {
	position: relative;
	z-index: 1;
	color: #fff;
	-webkit-transition: .3s ease-out;
	-o-transition: .3s ease-out;
	transition: .3s ease-out;
}
.line-link:hover {
	color: #fff;
}
.line-link::before {
	position: absolute;
	content: "";
	height: 1px;
	width: 0;
	right: 0;
	bottom: 3px;
	z-index: -1;
	background-color: #67ad7c;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.line-link:hover::before {
	width: 100%;
	right: auto;
	left: 0;
}
.butn {
	background-color: transparent;
	color: #000;
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
	font-size: 18px;
	height: 55px;
	line-height: 57px;
	padding: 0 30px;
	border-radius: 42px;
	position: relative;
	z-index: 1;
	border: 0;
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.butn.butn-sm {
	font-size: 13px;
	height: 45px;
	line-height: 47px;
	padding: 0 22px;
}
.butn.butn-sm span.fe {
	font-size: 17px;
}
.butn-light,
.butn:hover {
	color: #fff;
}
.butn::before,
.butn::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	border-radius: 42px;
	z-index: -1;
	pointer-events: none;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.butn::before {
	border: 1px solid #bbbbbb;
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
	opacity: 0;
	transition-delay: .15s;
}
.butn::after {
    background-color: #ffe147;
}
.butn-light::after {
    background-color: #ffd9d9;
}
.butn:hover::before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.butn:hover::after {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	opacity: 0;
}
.butn span.fe {
    font-size: 20px;
    position: relative;
    top: 3px;
    margin-left: 5px;
}
@media (max-width: 575px) {
	.butn {
	    font-size: 14px;
	    height: 50px;
	    line-height: 52px;
	    padding: 0 25px;
	}
}

.bg-cover {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hover-3d {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.hover-3d:hover {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	-o-transform: translateY(-3px);
	transform: translateY(-3px);
}

.icon-list-item {
	position: relative;
	padding-left: 35px;
}
.icon-list-item .icon {
    color: #000;
    background-color: #fbeb38;
    display: inline-block;
    height: 18px;
    width: 18px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    left: 0;
    top: 3px;
}

.overlay {
	position: relative;
	z-index: 1;
}
.overlay::after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	background-color: #111;
	opacity: .7;
	top: 0;
	left: 0;
	z-index: -1;
}
.overlay-50::after {
	opacity: .5;
}
.overlay-60::after {
	opacity: .6;
}
.overlay-70::after {
	opacity: .7;
}
.overlay-80::after {
	opacity: .8;
}
.overlay-90::after {
	opacity: .9;
}

/**** Section Padding ****/
.wrapper {
	padding: 60px 0;
}
@media (max-width: 575px) {
	.wrapper {
		padding: 20px 0;
	}
	.about-wrapper > .pb-100 {
		padding-bottom: 20px !important;
	}
	.about-wrapper > .pt-100 {
		padding-top: 20px !important;
	}
	video {
	  width: 100%;
	  height: auto;
	}

	.main__view {
	    margin: 130px 0 0 0px !important;
	    width: 100% !important;
	}

	.main__figure:nth-child(2){
		right: 0 !important;
	}
	.grip-header .navbar {
	    padding: 25px 0 !important;
	}


}
.section-title {
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 575px) {
	.lead {
	    font-size: 1.1rem;
	}
	.section-title {
	    font-size: 28px;
	}
	.loading {
		font-size: 8px !important;
 	}
}
.page-header {
	font-size: 104px;
	line-height: 1;
	color: #e5e5e5;
}
@media (max-width: 991px) {
	.page-header {
		font-size: 70px;
	}
}
@media (max-width: 575px) {
	.page-header {
		color: #a5a1a5;
		font-size: 40px;
		text-align: center !important;
		text-transform: capitalize !important;
		font-weight: 700 !important;
		/*position: absolute;*/
	}
	.story-item h3 {
    font-size: 28px !important;
    font-weight: 700;
}
}

/**** Section Header ****/
.section-header h2 {
	text-transform: uppercase;
}

/*====  header-&-landing-content-wrapper  ====*/
.grip-header {
	position: sticky;
	top: 0;
	z-index: 9999;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
	transition: all .2s;
}
.grip-header::after {
	position: absolute;
	content: "";
	height: 0;
	width: 100%;
	background-color: rgb(18 18 18);
	top: 0;
	left: 0;
	z-index: -1;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.grip-header.sticky {
	box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}
.grip-header.sticky::after {
	height: 100%;
}
.grip-header .navbar {
	padding: 25px 25px;
}
.grip-header .navbar-brand {
	font-weight: 700;
	text-transform: uppercase;
}
.grip-header .navbar-brand img {
	height: 35px;
	margin-right: 5px;
}
.grip-header .navbar-brand span {
	font-size: 22px;
	position: relative;
	top: 5px;
}
.grip-header .navbar-nav {
	margin-left: 30px;
}
.grip-header .nav-link {
	color: #ffffff !important;
	font-weight: 600;
	padding: 10px 20px !important;
	font-size: 15px;
	margin-right: 2px;
}
.grip-header a {
	-webkit-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.grip-header .active .nav-link,
.grip-header .active.nav-link,
.grip-header .nav-link:hover {
    color: #ffe147  !important;
   /* background: #1c1c1c;*/
    border-radius: 40px;
}
.grip-header .navbar-toggler {
    padding: 0;
    font-size: 23px;
    border-radius: 2px;
    color: #fff !important;
    border-color: #fff !important;
    height: 40px;
    width: 40px;
    position: relative;
}
.grip-header .navbar-toggler span {
    display: block;
    position: absolute;
    top: 7px;
    left: 8px;
    -webkit-transition: transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
}
.grip-header .navbar-toggler[aria-expanded="true"] .show,
.grip-header .navbar-toggler[aria-expanded="false"] .hidden {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}
.grip-header .navbar-toggler[aria-expanded="true"] .hidden {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.grip-header .dropdown-menu {
	border: 0;
    text-align: center;
}
.grip-header .dropdown-item {
    font-size: 14px;
    padding: 5px 20px;
    padding-right: 45px;
    position: relative;
    text-align: left;
    color: #fff;
}
.grip-header .dropdown-item.active,
.grip-header .dropdown-item:active {
    color: #fbeb38;
    background-color: transparent;
}
.grip-header .dropdown-item:focus,
.grip-header .dropdown-item:hover {
    color: #ffe147;
    background-color: transparent;
}
.grip-header .dropdown-toggle::after {
	display: none;
}

.author-image {
	height: 150px;
	width: 150px;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 991px) {
	.grip-header .dropdown-menu {
		display: block;
		opacity: 0;
		min-width: 11rem;
		visibility: hidden;
		transition: 0.2s;
		-webkit-transition: 0.2s;
		-moz-transition: 0.2s;
		-ms-transition: 0.2s;
		-o-transition: 0.2s;
		left: 50%;
		border: 0;
		padding: 15px 0;
		text-align: left !important;
		-webkit-transform: translate(-50%, 15px);
		-ms-transform: translate(-50%, 15px);
		-o-transform: translate(-50%, 15px);
		transform: translate(-50%, 15px);
		background-color: #020202;
	}
	.grip-header .dropdown-menu.dropdown-column {
		min-width: 35rem;
		background: #020202;
	}
	.grip-header .dropdown:hover .dropdown-menu {
		opacity: 1;
		visibility: visible;
		box-shadow: 0 10px 30px rgba(22,28,45,.10);
		-webkit-transform: translate(-50%, 5px);
		-ms-transform: translate(-50%, 5px);
		-o-transform: translate(-50%, 5px);
		transform: translate(-50%, 5px);
	}
	.grip-header .dropdown-item::after {
	    position: absolute;
	    content: "\e916";
	    font-size: 17px;
	    right: 25px;
	    top: 8px;
	    font-family: 'feathericons';
	    color: #ffe147;
	    opacity: 0;
	    -webkit-transition: all .15s ease-out;
	    -o-transition: all .15s ease-out;
	    transition: all .15s ease-out;
	}
	.grip-header .dropdown-item:hover::after {
		opacity: 1;
	    right: 5px;
	    top: 0px;
	}
}
@media (max-width: 991px) {
	.grip-header .dropdown-toggle::after {
		display: initial !important;
	    content: "\e92e";
		font-family: 'feathericons';
		border: 0;
		position: absolute;
		right: 15px;
	}
	.navbar-collapse {
		position: fixed;
		background-color: #000;
		width: calc(100% - 40px);
		height: auto;
		max-height: calc(100% - 130px);
		z-index: 9999;
		border-radius: 3px;
		box-shadow: 0 1.5rem 4rem rgba(22,28,45,.15);
		padding: 0 20px;
		text-align: center;
		top: 110px;
		left: 20px;
	}
	.grip-header .dropdown-menu{
		background-color: #000;
	}
	.navbar-collapse.collapsing,
	.navbar-collapse.show {
		-webkit-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;
		transition-property: opacity, transform, -webkit-transform;
		-webkit-transform-origin: top;
		transform-origin: top;
	}
	.navbar-collapse.show {
		overflow-x: hidden;
		overflow-y: auto;
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
		padding-bottom: 20px;
	}
	.navbar-collapse.collapsing {
		opacity: 0;
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	.grip-header .navbar-nav {
	    padding-top: 25px;
		padding-bottom: 10px;
		width: 320px;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: left;
	}
	.navbar-collapse .butn.butn-sm {
		margin-top: 5px;
		margin-bottom: 25px;
		width: 320px;
		max-width: 100%;
	}
	.navbar-collapse .nav-link {
	    font-size: 16px !important;
	    padding: 4px 20px !important;
	}
	.grip-header .active .nav-link, .grip-header .active.nav-link, .grip-header .nav-link:hover {
		background-color: #101010 !important;
		border-radius: 5px;
	}
}
@media (max-width: 400px) {
	.grip-header .navbar-nav {
		width: 100%;
	}
	.navbar-collapse .butn.butn-sm {
		width: 280px;
	}
}


/*====  Banner Wrapper ====*/
.banner-wrapper {
	padding: 120px 0 20px 0;
}
.main-block h2 {
	font-size: 72px;
    font-weight: 700;
	line-height: 1.6;
	color: #f7f7f7;
}
.main-block .display-2 {
	color: #f7f7f7;
	font-size: 4.5rem;
	margin-left: -7px;
}
@media (max-width: 991px) {
	.main-block .display-2 {
		font-size: 58px;
		margin-left: -5px;
	}
}
@media (max-width: 767px) {
	.main-block .display-2 {
		font-size: 38px;
		margin-left: 0;
	}
}
@media (max-width: 1200px) {
	.main-block h2 {
	    font-size: 42px;
	}
}
@media (max-width: 767px) {
	.main-block h2 {
	    font-size: 36px;
	}
}
@media (max-width: 400px) {
	.banner-wrapper {
	    padding: 50px 0 80px 0;
	}
	.main-block h2 {
	    font-size: 24px;
	}
}
.main-block .scroll-bottom {
	height: 60px;
	width: 60px;
	line-height: 60px;
	border:1px solid #f7f7f7 !important;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
@media (max-width: 575px) {
	.main-block .scroll-bottom {
		height: 45px;
		width: 45px;
		line-height: 45px;
	}
}
.main-block .scroll-bottom:hover {
	background-color: #f7f7f7;
	color: #fff !important;
	border-color: #f7f7f7 !important;
}
.text-marked {
	color: #ffe147  !important;
}
.main-block p {
	font-size: 18px;
	line-height: 1.8;
}
.main-block p.set-max-width {
	max-width: 100%;
}
.social-links a {
    color: #212529;
    padding: 12px;
    position: relative;
    z-index: 1;
    font-size: 18px;
    margin-right: 10px;
}
@media (max-width: 575px) {
	.social-links a {
	    margin-right: 0;
	}
}
.social-links a:first-child {
	margin-left: -12px;
}
.social-links a::after {
	position: absolute;
	content: "";
    height: 45px;
    width: 45px;
    top: 3px;
    left: -2px;
    z-index: -1;
    background-color: #ffd9d9;
    pointer-events: none;
    border-radius: 50px;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all .3s cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition: all .3s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all .3s cubic-bezier(0.19, 1, 0.22, 1);
}
.social-links a:hover::after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.social-links a:hover {
    color: #1b1927 !important;
}
.banner-bottom-nav {
    line-height: 0;
}
.banner-bottom-nav .social-links a {
    font-size: 22px;
    margin-right: 15px;
}
.banner-bottom-nav .social-links a::after {
	height: 50px;
	width: 50px;
	top: -2px;
	left: -2px;
}
.banner-bottom-nav .social-links {
	position: relative;
}
.banner-bottom-nav .social-links::after {
	content: "";
	height: 1px;
	width: calc(100% - 200px);
	background-color: #d9d9d9;
	left: 200px;
	position: absolute;
	top: 50%;
}
@media (max-width: 575px) {

	.banner-wrapper {
	    padding: 20px 0 20px 0;
	}
	.main-block h2 {
	    font-size: 32px;
	}
	.main-block p {
	    font-size: 15px;
	}
	.banner-bottom-nav .social-links::after {
		width: calc(100% - 200px);
		left: 200px;
	}
}

/*====  about-info-wrapper style  ====*/
.about-info-list {
	padding-left: 25px;
	position: relative;
}
.about-info-list::after {
    position: absolute;
    content: "";
    height: calc(100% + 10px);
    width: 7px;
    left: 0;
    top: -80px;
    background-color: #67ad7c;
    border-radius: 15px;
}
.about-info-list-item {
	padding: 20px 30px;
	padding-left: 45px;
	position: relative;
}
.about-info-list-item::before {
    position: absolute;
    content: "";
    height: 17px;
    width: 10px;
    border: 5px solid #f7f7f7;
    border-radius: 20px;
    left: 12px;
    top: 26px;
    z-index: 1;
    border-left: 0;
}
.about-info-list-title {
	position: relative;
}
.about-info-list-title::after {
    position: absolute;
    content: "";
    height: 7px;
    width: 55px;
    background-color: #8fd4a4;
    border-radius: 15px;
    left: -70px;
	top: 11px;
	box-shadow: 0 -36px 0 #8fd4a4;
}
.about-info-list-title::before {
    position: absolute;
    content: "";
    height: 17px;
    width: 10px;
    border: 5px solid #f7f7f7;
    border-radius: 20px;
    left: -33px;
    top: 6px;
    z-index: 1;
    border-left: 0;
}

/*====  video-wrapper style  ====*/
.video-wrapper {
	height: 550px;
	max-width: 1200px;
	background-color: #fafafa;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.video-wrapper::after {
	position: absolute;
	content: "";
	height: calc(100% + 40px);
	width: calc(100% + 40px);
	top: -20px;
	left: -20px;
	border: 20px solid #FFEFE8;
	z-index: -1;
	-webkit-transition: all .7s cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition: all .7s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all .7s cubic-bezier(0.19, 1, 0.22, 1);
}
.open-video::after {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.video-wrapper a {
	color: #212529;
	font-weight: 600;
}
.popup-video .player-icon {
    display: inline-block;
    padding: 25px 60px;
    text-align: center;
    margin: auto;
    border-radius: 150px;
    background-color: #ffd9d9;
	-webkit-transition: transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s;
}
.popup-video:hover .player-icon {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
.player-icon i {
    position: relative;
    top: 2px;
    font-style: normal;
}
@media (max-width: 767px) {
	.video-wrapper {
	    height: 380px;
	}
	.video-wrapper a {
	    font-size: 15px;
	}
	.popup-video .player-icon {
	    padding: 15px 35px;
	}
}

/*====  mfp-custom style  ====*/
.mfp-move-horizontal .mfp-with-anim {
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	-webkit-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	-o-transform: translateX(-50px);
	transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
	opacity: 0.8;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
	opacity: 0;
	-webkit-transform: translateX(50px);
	-ms-transform: translateX(50px);
	-o-transform: translateX(50px);
	transform: translateX(50px);
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
	opacity: 0;
}
.mfp-bg {
	opacity: .8;
}
.mfp-arrow::before,
.mfp-arrow::after {
	margin-top: 0;
	margin-left: 0;
	border: 0;
	color: #ddd;
	background: rgb(49, 52, 57);
	line-height: 40px;
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	opacity: 1;
	border-radius: 1px;
}
.mfp-arrow:hover::before,
.mfp-arrow:hover::after {
	color: #777;
}
.mfp-arrow::before {
	content: "🠈";
}
.mfp-arrow::after {
	content: "🠊";
}
.mfp-arrow-left::after,
.mfp-arrow-right::before {
	display: none;
}
.mfp-arrow {
	opacity: .95;
}
.mfp-fade.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/*====  work-wrapper style  ====*/
.img-mask {
	position: relative;
	overflow: hidden;
	-webkit-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
	border-radius: 20px !important;
}
.img-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	bottom: 0;
	background-color: #F8F9FA;
	pointer-events: none;
	z-index: 99;
}
[data-aos="reveal-bottom"] {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	transform-origin: 0% 100%;
	transition-property: transform;
	transition-delay: .2s;
}
[data-aos="reveal-bottom"].aos-animate {
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
}
.img-mask img {
	-webkit-filter: sepia(1);
	filter: sepia(1);
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}
.mesonary-filter .img-mask img,
.img-mask .aos-animate + img {
	-webkit-filter: sepia(0);
	filter: sepia(0);
	transition-delay: .2s;
}
.img-mask .img-icon {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 18px;
    bottom: 40px;
    right: 40px;
    opacity: 0;
    color: #000000 !important;
    background-color: #fbeb38;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.img-mask:hover .img-icon,
.zoom-image-item:hover .img-mask .img-icon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50px;
    bottom: 30px;
    right: 30px;
    opacity: 1;
}
.img-mask .img-icon-center {
    bottom: calc(50% - 10px);
    right: calc(50% - 10px);
}
.zoom-image-item:hover .img-mask .img-icon-center {
    bottom: calc(50% - 20px);
	right: calc(50% - 20px);
}

/* work-overlay style */
.work-overlay {
	overflow: hidden;
}
.work-overlay .card-img-overlay {
	opacity: 0;
	visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.work-overlay:hover .card-img-overlay {
	opacity: 1;
	visibility: visible;
}
.work-overlay .card-img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.work-overlay:hover .card-img {
	transform: scale(1.2);
}

/* work-carousel style */
.work-carousel-item {
	width: 40%;
	display: inline-block;
	margin-right: 30px;
}
@media (max-width: 991px) {
	.work-carousel-item {
		width: 60%;
	}
}
@media (max-width: 767px) {
	.work-carousel-item {
		width: 80%;
	}
}
@media (max-width: 575px) {
	.work-carousel-item {
		width: 90%;
	}
}

/* -- flickity-button style -- */
.flickity-button {
	position: static;
	outline: 0;
	box-shadow: none !important;
	text-align: center;
}
.flickity-button:hover {
    background: #278e46;
}
.flickity-prev-next-button {
    top: initial;
	transform: initial;
	position: absolute;
	height: 35px;
	width: 50px;
	background: #36A758;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	z-index: 5;
	margin-top: 30px;
	border-radius: 50px;
}
.flickity-prev-next-button.next {
    right: initial;
	left: calc(50% + 5px);
}
.flickity-prev-next-button.previous {
	left: calc(50% - 55px);
}
.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 35%;
    top: 35%;
    width: 30%;
	height: 30%;
	color: #fff;
}

.next-project h1 {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.next-project:hover h1 {
	letter-spacing: 2px;
}

@media (max-width: 991px) {
	.work-wrapper .mesonaryInit {
	    padding-left: -25px !important;
	    padding-right: -25px !important;
	}
	.work-wrapper .mesonaryInit > .pl-50 {
	    padding-left: 25px !important;
	}
	.work-wrapper .mesonaryInit > .pr-50 {
	    padding-right: 25px !important;
	}
	.work-wrapper .mesonaryInit .mt-100 {
	    margin-top: 60px !important;
	}
	.work-wrapper .col-md-12.pl-50.pr-50 {
		padding-left: 25px !important;
		padding-right: 25px !important;
	}
}
@media (max-width: 575px) {
	.work-wrapper .mesonaryInit {
	    padding-left: -15px !important;
	    padding-right: -15px !important;
	}
	.work-wrapper .mesonaryInit > .pl-50 {
	    padding-left: 15px !important;
	}
	.work-wrapper .mesonaryInit > .pr-50 {
	    padding-right: 15px !important;
	}
	.work-wrapper .mesonaryInit .mt-100 {
	    margin-top: 50px !important;
	}
	.work-wrapper .col-md-12.pl-50.pr-50 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}

/* -- work-filter button style -- */
.work-filters button {
    font-size: 14px;
    font-weight: 600;
    margin-right: 20px;
    color: #838588;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.work-filters button.active {
    color: #212529;
}
.work-filters button::after {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    background-color: #c3f1d1;
    right: 0;
    bottom: 6px;
    z-index: -1;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.work-filters button.active::after, .work-filters button:hover::after {
    width: 100%;
    right: auto;
    left: 0;
    height: 7px;
}

/*====  testimonials-wrapper style  ====*/
.testimonial-item {
	width: 100%;
	margin-right: 30px;
}
.testimonial-item .rating-value {
    font-size: 15px;
    position: relative;
    top: 3px;
    margin-right: 4px;
}
.testimonial-item .rating-author {
    font-weight: 600;
    font-size: 18px;
}
.testimonial-item .rating-context {
    position: relative;
    padding: 35px;
}
.testimonial-item .rating-context svg {
    font-size: 25px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
	.testimonial-wrapper .border-right {
		border-right: 0 !important;
	}
}

/* -- flickity-dots style -- */
.flickity-page-dots {
	position: static;
    margin-top: 30px;
}
.flickity-page-dots .dot {
    height: 8px;
    width: 13px;
    background-color: #78847b !important;
    display: inline-block;
    border-radius: 5px;
    margin: 0 6px;
}
.flickity-page-dots .dot.is-selected {
    width: 21px;
    background-color: #67ad7c !important;
}

/*====  counter-wrapper style  ====*/
.counter-item {
    z-index: 1;
    position: relative;
}
.counter-item::before {
    position: absolute;
    content: "";
    height: 60px;
    width: 60px;
    left: -19px;
    top: -6px;
    background-color: #000;
    border-radius: 50px;
    z-index: -1;
}
.counter-item .js-counter {
	line-height: 1;
}
.counter-item span {
    font-size: 32px;
    font-weight: 800;
}
@media (max-width: 575px) {
	.counter-item::before {
	    left: 0;
	}
	.counter-item .js-counter {
	    padding-left: 20px;
	}
}
@media (max-width: 400px) {
	.counter-item span {
	    font-size: 26px;
	}
	.counter-item::before {
	    height: 50px;
	}
	.counter-item .js-counter {
	    padding-left: 15px;
	}
}

/*====  CTA-wrapper style  ====*/
.cta-wrapper .display-5,
.cta-wrapper .line-link {
    font-weight: 700;
}
@media (max-width: 575px) {
	.cta-wrapper .display-5 {
	    font-size: 22px;
	}
}

/*====  html5-video style  ====*/
.html5-video .volume-up,
.html5-video .volume-mute {
	position: absolute;
	bottom: 25px;
	left: 40px;
	color: #222;
	font-size: 32px;
	cursor: pointer;
}

/*====  services style  ====*/
.service-wrapper {
	overflow: hidden;
}
.service-wrapper .flickity-viewport {
	overflow: initial;
}
.service-item {
	width: 40%;
	margin-right: 50px;
}
@media (max-width: 767px) {
	.service-item {
		width: 80%;
		margin-right: 30px;
	}
}
.service-item img {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.service-item.is-selected img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.service-count {
	left: 5px;
	top: -2px;
    font-size: 22px;
    color: #fbeb38;
}
.service-item-info p {
	max-width: 320px;
	width: 100%;
}
.service-list li {
	font-size: 15px;
	margin-bottom: 5px;
}
.service-list li:last-child {
	margin-bottom: 0px;
}
.service-list-inline li {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 0;
}
.service-list-inline li::after {
	content: ",";
}
.service-list-inline li:last-child::after {
	content: ".";
}
.icon-box{
	border-radius: 15px;
	transition: all .2s ease-in;
}
.icon-box h5{
	font-size: 24px;
	font-weight: 800;
}
.icon-box p{
	font-weight: 700;
}
.icon-box .icon {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 15px;
    font-size: 22px;
    margin-bottom: 30px;
}
.icon-box .icon.bg-soft-pink {
	color: #fa80fa;
}
.icon-box .icon.bg-soft-blue {
	color: #8d8dfb;
}
.icon-box .icon.bg-soft-green {
	color: #7aca60;
}

/*====  team style  ====*/
.team-item::after {
    position: absolute;
    content: "";
    border: 30px solid transparent;
    border-top-color: #FFEFE8;
    border-right-color: #FFEFE8;
    top: 0;
    right: 50px;
}
.team-social {
    position: absolute;
    top: 48px;
    right: 0;
    padding: 0 7px;
}
.team-social a {
    display: block;
	padding: 10px;
	color: #fff;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
}
.team-social a:hover {
	opacity: .5;
}
.team-social::after {
    position: absolute;
    content: "";
    height: 60px;
    width: 1px;
    background: rgba(0, 0, 0, 0.5);
    left: 50%;
    top: 110%;
}

/*====  partner style  ====*/
.partner-item img {
   width: 120px
}
.partner-item {
    padding: 40px 15px;
}
.partner-carousel img {
	max-height: 80px;
	padding-right: 125px;
	opacity: .8;
}
@media (max-width: 991px) {
	.partner-carousel img {
		padding-right: 80px;
	}
}
@media (max-width: 767px) {
	.partner-carousel img {
		padding-right: 60px;
	}
}

/*====  pricing style  ====*/
.tabs .nav-pills a {
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
}
.tabs .nav-pills .nav-link.active,
.tabs .nav-pills .show>.nav-link {
   color: #ffe147;
    background-color: transparent;
    border-bottom: 3px solid #ffe147;
    border-radius: 0px !important;
}

/*====  FAQ style  ====*/
.accordion .card {
	border:0;
}
.accordion .card-body {
	font-size: 20px;
}
.accordion .card-header{
	border-bottom: 3px solid #ffffff !important;
}
.accordion .card-header a {
    padding: 15px 30px 12px;
    background: #000000 !important;
    color: #ffffff;
    font-size: 20px;
    min-height: 1.75em;
    /* padding: 34px 10px 34px 0; */
    box-shadow: none;
    border-radius: 0;
    /* color: var(--heading); */
    background: 0 0;
}
.accordion .card-header a::after {
	font-family: 'feathericons';
	content:"\ea12";
	transition: 0.3s cubic-bezier(.7,0,.3,1);
	-webkit-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-moz-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-ms-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-o-transition: 0.3s cubic-bezier(.7,0,.3,1);
}
.accordion .card-header a[aria-expanded="false"]::after {
	-webkit-transform: rotate(315deg);
	-ms-transform: rotate(315deg);
	-o-transform: rotate(315deg);
	transform: rotate(315deg);
}
.accordion .card-header a[aria-expanded="true"]::after {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
}
.accordion .card-body {
    padding: 25px;
    background: #111111;
}

/*====  privacy style  ====*/
.privacy-wrapper {
	font-size: 15px;
}

/*====  blog style  ====*/
.blog-item img {
	transition: 0.3s cubic-bezier(.7,0,.3,1);
	-webkit-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-moz-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-ms-transition: 0.3s cubic-bezier(.7,0,.3,1);
	-o-transition: 0.3s cubic-bezier(.7,0,.3,1);
}
.blog-item:hover img {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}

.comments-wrapper .media img {
    height: 70px;
    width: auto;
}
@media (max-width: 575px) {
	.comments-wrapper .media {
		display: block !important;
	}
}

/*====  contact-wrapper style  ====*/
.form-control {
	height: 50px;
	font-size: 15px;
}
.form-control:focus {
	border-color: #67ad7c;
}
textarea.form-control {
	padding: 15px;
	height: 136px;
	resize: none;
}

/*====  footer-wrapper style  ====*/
.footer-logo {
    height: 40px;
}
.footer-nav li a {
    font-weight: 600;
    font-size: 14px;
}
@media (max-width: 400px) {
	.cta-wrapper,
	.cta-wrapper .text-md-right,
	footer,
	.footer-bottom,
	.footer-bottom .text-sm-right {
		text-align: center !important;
	}
	footer .col-6 {
	    -ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	footer .mb-70 {
	    margin-bottom: 40px !important;
	}
	.footer-nav li a {
	    margin-left: 8px;
	    margin-right: 8px !important;
	}
	footer .social-links a:first-child {
	    margin-left: 0;
	}
}

.scroll-top {
    height: 40px;
    width: 40px;
    line-height: 42px;
    background-color: #ffe147;
    -webkit-transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    bottom: -30px;
	right: 30px;
	opacity: 0;
    position: fixed;
    z-index: 9995;
}
.scroll-top.show {
    bottom: 30px;
	opacity: 1;
}
.scroll-top:hover {
    background-color: #64806d;
}
@media (max-width: 767px) {
	.scroll-top {
		bottom: -15px;
		right: 15px;
	}
	.scroll-top.show {
		bottom: 15px;
	}
}

/*====  END  ====*/
/*Own*/
.icon-box:hover {
    box-shadow: 0 3px 24px rgb(162 162 162 / 20%)

}

.img-icon-cs{
	height: 120px;
	margin-bottom: 20px;
}
.app-feature-type{
	width: 90%;
}
.new-top-div {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	background: #000;
	height: 60px;
}
.new-top-div.sticky {
    position: sticky;
    left: 0;
    right: 0;
    top: 99px;
    z-index: 99;
}
.new-top-click {margin: -50px 0 0;display: inline-block;vertical-align: top;}
.new-top-div ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.new-top-div ul li {
	list-style: none;
	/*line-height: 60px;*/
}
.new-top-div ul li a {
	font-size: 16px;
	color: #ccc;
	border-bottom: 4px solid transparent;
	text-decoration: none;
	padding: 14px 25px;
	font-weight: 500;
}
.new-top-div ul li.active a, .new-top-div ul li a:hover {
	color: #fff;
	border-bottom: 4px solid #fff;
}
.top-new-top-clickitle {
	width: 100%;
}
.top-new-top-clickitle h2 {
	margin: 0 0 30px;
}
.top-new-top-clickitle p {
	margin: 0 0 30px;
	line-height: 28px;
}
.feature-list-main {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}
.feature-list-main ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.feature-list-main ul li {
	list-style: none;
	width: 50%;
	padding: 0 30px 0 0;
	margin: 0 0 30px;
	display: inline-flex;
}
.main-app-feature .row {
	align-items: center;
}

.story-slider-head {
	margin: 0 0 40px;
}
.feature-list-main ul li span {
	background-image: url(../img/hexa.svg);
	font-size: 14px;
	width: 23px;
    height: 28px;
	display: inline-block;
	margin-right: 10px;
	border-radius: 50px;
	line-height: 28px;
	text-align: center;
	vertical-align: top;
	background-repeat: no-repeat;
	position: relative;
    top: 5px;
    color: #000;
    font-weight: 700;
}
.c-features-list {
	width: 90%;
}
.foodtitle-line::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #ccc;
    left:  32%;
    right: 0;
    position: absolute;
    top: 15px;
}
.list-app-con {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	margin: 40px 0;
}
.list-app-con p {
	margin-top: 15px;
	line-height: 28px;
}
.feature-list-main ul li h5 {
	margin: 0 0 10px;
}
.feature-list-main ul li p {
	margin: 0;
	font-size: 16px;
	line-height: 28px;
	display: inline;
}
.main-app-feature, .cs-main-feature {padding: 60px 0 0;}
.cs-main-feature {
	background-position: 100% 85% !important;
	background-repeat: no-repeat !important;
	background-size: auto 75% !important;
}
.get-estimate.viewcas-new .view-case-dark {
	display: inline-block;
	padding: 130px 70px;
	background: none;
}
.get-estimate.viewcas-new .view-case-dark .soln-heading {
	margin: 0 0 30px;
}
.get-estimate.viewcas-new .view-case-dark .soln-heading h2 {
	font-size: 34px !important;line-height: 40px !important;font-weight: 500;color: #fff !important;
}
.get-estimate.viewcas-new .view-case-dark .button2.darkmode-btn {
	margin: 0;
}
.get-estimate.viewcas-new {
	margin: 75px 0 0px;
	background: url(../image/food-get-bg.html);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.food-process {
	display: inline-block;
	width: 100%;
	vertical-align: top;
	padding: 75px 0 45px;
	background: #FAFAFA;
}
.process-head h2 {
	margin: 0 0 30px;
}
.process-head p {
	margin: 0 0 40px;
	line-height: 28px;
}
.food-process-box {
	display: inline-block;
	width: 100%;
	vertical-align:top;
	background: #fff;
	border: 1px solid #ccc;
	padding: 23px;
	margin: 0 0 30px;
	border-radius: 4px;
}
.process-box-ic {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 30px 0;
}
.process-box-ic span {
	font-size: 60px;
	font-weight: 700;
	color: #ccc;
	margin: -10px 0 0;
}
.customer-app-main .feature-list-main, .driver-app-main .feature-list-main, .partner-app-main .feature-list-main{
    padding-right: 100px;
}
.admin-panel-main .feature-list-main{
    padding-left: 100px;
}
@media (max-width: 1024px){
.new-top-div {
    display: none;
}
}
@media only screen and (max-width:767px){
.customer-app-main .feature-list-main, .driver-app-main .feature-list-main, .partner-app-main .feature-list-main {
    padding-right: 0;
}
.admin-panel-main .feature-list-main{
    padding-left: 0px;
}
.top-new-top-clickitle h2 {
	margin-bottom: 30px;
}
.top-new-top-clickitle p {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}
.feature-list-main ul li {
    width: 100%;
    padding: 0;
}
.feature-list-main ul li h5 {
    margin: 0 0 5px;
    font-size: 18px !important;
	line-height: 28px !important;
	font-weight: 600;
}

.list-app-con h3 {
	font-size: 20px !important;
	line-height: 30px !important;
	margin: 0 0 20px;
	text-align: left;
	font-weight: 700;
}
.new-top-div-main .app-img-main {
	margin-bottom: 50px;
}
.feature-list-main ul li p {
    line-height: 26px;
    font-size: 14px;
}
.feature-list-main ul li span {
	font-size: 16px;
	line-height: 30px;
	font-weight: 600;
	margin-right: 15px;
}
.app-img-main {
    width: 100%;
    text-align: center;
}
.app-img-main, .admin-mobi-img {
    margin: 0 0 50px;
}
.app-img-main img {
    width: auto;
}

}
/* ======= Brand Area ===== */
.brand-area--l2 {
  padding-top: 50px;
  padding-bottom: 0px;
}

@media (min-width: 768px) {
  .brand-area--l2 {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .brand-area--l2 {
    padding-top: 123px;
    padding-bottom: 135px;
  }
}

.brand-group-image-l2 {
  margin-left: -22px;
}

@media (min-width: 576px) {
  .brand-group-image-l2 {
    transform: scale(0.8);
  }
}

@media (min-width: 768px) {
  .brand-group-image-l2 {
    margin-top: 40px;
    transform: scale(1);
  }
}

@media (min-width: 992px) {
  .brand-group-image-l2 {
    margin-top: 100px;
  }
}

.brand-image-group--l2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 503px;
  transform: scale(0.9);
  margin-top: 30px;
  /* Images */
  /* Image Line */
}

@media (min-width: 768px) {
  .brand-image-group--l2 {
    transform: scale(0.9);
  }
}

@media (min-width: 992px) {
  .brand-image-group--l2 {
    transform: scale(1);
    margin-top: 10px;
  }
}

.brand-image-group--l2__single {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.brand-image-group--l2__image--main {
  width: 5%;
  position: relative;
  border: 6px solid #fff0a5;
  background-color: #1f1f1f;
  border-radius: 50%;
  z-index: 1;
}

.brand-image-group--l2__img-1 {
  position: absolute;
  left: 37%;
  top: 7%;
  width: 10%;
  z-index: 2;
}

@media (min-width: 480px) {
  .brand-image-group--l2__img-1 {
    left: 47%;
  }
}

.brand-image-group--l2__img-2 {
  position: absolute;
  right: -8%;
  top: 16%;
  width: 11%;
  z-index: 1;
}

@media (min-width: 768px) {
  .brand-image-group--l2__img-2 {
    right: -12%;
    top: 10%;
  }
}

.brand-image-group--l2__img-3 {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 11%;
  z-index: 1;
}

@media (min-width: 576px) and (max-width: 768px) {
  .brand-image-group--l2__img-3 {
    right: -9%;
  }
}

@media (min-width: 768px) {
  .brand-image-group--l2__img-3 {
    right: -28%;
  }
}

.brand-image-group--l2__img-4 {
  position: absolute;
  right: 0;
  bottom: 20%;
  width: 10%;
  z-index: 1;
}

.brand-image-group--l2__img-5 {
  position: absolute;
  left: 38%;
  bottom: 10%;
  width: 10%;
  z-index: 1;
}

@media (min-width: 480px) {
  .brand-image-group--l2__img-5 {
    left: 47%;
    bottom: 0;
  }
}

.brand-image-group--l2__img-6 {
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 12%;
  z-index: 1;
}

@media (min-width: 480px) {
  .brand-image-group--l2__img-6 {
    bottom: 12%;
  }
}

.brand-image-group--l2__img-7 {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 10%;
  z-index: 1;
}

@media (min-width: 576px) and (max-width: 768px) {
  .brand-image-group--l2__img-7 {
    left: -7%;
  }
}

@media (min-width: 768px) {
  .brand-image-group--l2__img-7 {
    left: -22%;
  }
}

.brand-image-group--l2__img-8 {
  position: absolute;
  left: -7%;
  top: 16%;
  width: 10%;
  z-index: 1;
}

@media (min-width: 480px) {
  .brand-image-group--l2__img-8 {
    top: 10%;
  }
}

.brand-image-group--l2__line-1 {
  position: absolute;
  left: 48%;
  top: 26%;
  z-index: 0;
  width: 3.7%;
}

@media (min-width: 480px) {
  .brand-image-group--l2__line-1 {
    left: 52%;
  }
}

.brand-image-group--l2__line-2 {
  position: absolute;
  right: 0;
  top: 27%;
  width: 42%;
}

@media (min-width: 480px) {
  .brand-image-group--l2__line-2 {
    top: 22%;
    width: 40%;
  }
}

.brand-image-group--l2__line-3 {
  position: absolute;
  right: -9%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
}

.brand-image-group--l2__line-4 {
  position: absolute;
  bottom: 29%;
  right: 13%;
  width: 33%;
}

.brand-image-group--l2__line-5 {
  position: absolute;
  right: 47%;
  bottom: 23%;
  width: 4%;
}

@media (min-width: 480px) {
  .brand-image-group--l2__line-5 {
    right: 45%;
    bottom: 15%;
  }
}

.brand-image-group--l2__line-6 {
  position: absolute;
  left: 9%;
  bottom: 29%;
  width: 35%;
}

@media (min-width: 480px) {
  .brand-image-group--l2__line-6 {
    bottom: 24%;
  }
}

.brand-image-group--l2__line-7 {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 47%;
}

.brand-image-group--l2__line-8 {
  position: absolute;
  left: 7%;
  top: 28%;
  width: 35%;
}

@media (min-width: 480px) {
  .brand-image-group--l2__line-8 {
    top: 22%;
  }
}
.circle-126 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 106px;
  max-width: 106px;
  min-height: 106px;
  max-height: 106px;
  text-align: center;
   animation: pulse 2s infinite;
}

@media (min-width: 768px) {
  .circle-126 {
    min-width: 126px;
    max-width: 126px;
    min-height: 126px;
    max-height: 126px;
    text-align: center;
     animation: pulse 2s infinite;
  }
}

.circle-91 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 91px;
  max-width: 91px;
  min-height: 91px;
  max-height: 91px;
}

.circle-103 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 90px;
  max-width: 90px;
  min-height: 90px;
  max-height: 90px;
}

@media (min-width: 768px) {
  .circle-103 {
    min-width: 103px;
    max-width: 103px;
    min-height: 103px;
    max-height: 103px;
  }
}

.circle-98 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 98px;
  max-width: 98px;
  min-height: 98px;
  max-height: 98px;
}

.circle-99 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 99px;
  max-width: 99px;
  min-height: 99px;
  max-height: 99px;
}

@media (min-width: 768px) {
  .circle-99 {
    min-width: 99px;
    max-width: 99px;
    min-height: 99px;
    max-height: 99px;
  }
}

.circle-95 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 85px;
  max-width: 85px;
  min-height: 85px;
  max-height: 85px;
}

@media (min-width: 768px) {
  .circle-95 {
    min-width: 95px;
    max-width: 95px;
    min-height: 95px;
    max-height: 95px;
  }
}

.circle-113 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 95px;
  max-width: 95px;
  min-height: 95px;
  max-height: 95px;
}

@media (min-width: 768px) {
  .circle-113 {
    min-width: 113px;
    max-width: 113px;
    min-height: 113px;
    max-height: 113px;
  }
}

.circle-88 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 78px;
  max-width: 78px;
  min-height: 78px;
  max-height: 78px;
}

@media (min-width: 768px) {
  .circle-88 {
    min-width: 88px;
    max-width: 88px;
    min-height: 88px;
    max-height: 88px;
  }
}

.circle-108 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 98px;
  max-width: 98px;
  min-height: 98px;
  max-height: 98px;
}

@media (min-width: 768px) {
  .circle-108 {
    min-width: 108px;
    max-width: 108px;
    min-height: 108px;
    max-height: 108px;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
.illustration-holder {
    position: relative;
}
.illustration-holder .shape-one {
    z-index: 1;
    top: 7%;
    left: -3%;
    width: 10%;
    -webkit-animation: jumpTwo 8s linear infinite;
    animation: jumpTwo 8s linear infinite;
}
.illustration-holder .shape-two {
    z-index: 1;
    top: 40%;
    left: -6%;
    width: 10%;
    -webkit-animation: jumpThree 8s linear infinite;
    animation: jumpThree 8s linear infinite;
}
.illustration-holder .shape-three {
    z-index: 1;
    top: 45%;
    right: 15%;
    width: 10%;
    -webkit-animation: jumpTwo 8s linear infinite;
    animation: jumpTwo 8s linear infinite;
}
.shapes {
    position: absolute;
    z-index: -1;
}
@-webkit-keyframes jumpTwo{
	0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
40% {
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
}
100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
}
@-webkit-keyframes jumpThree{
	0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
40% {
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
}
100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
}
.hero-banner-five {
    position: relative;
    padding: 56px 0 0;
}
.hero-banner-five .hero-heading {
    font-size:48px;
    line-height: 1.219em;
    text-align: center;
}
.hero-banner-five .hero-sub-heading {
    font-size: 24px;
    padding: 20px 0 20px;
    color: #fff;
    text-align: center;
}
.hero-banner-five .hero-heading span {
    position: relative;
    color: #ffe147;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    background: linear-gradient(83.48deg, #ffc107 3.34%, #fbeb38 96.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.hero-banner-five .button-group a {
    width: 200px;
    height: 60px;
    padding: 0 5px 0 25px;
    margin: 10px 12px;
    border: 2px solid #111;
    border-radius: 6px;
    color: #000;
    text-align: left;
    transition: all .3s ease-in-out;
}
.hero-banner-five .button-group a.ios-button {
    background: #000;
    color: #fff;
}

.hero-banner-five .button-group a .icon {
    margin-right: 15px;
}
.hero-banner-five .button-group a.ios-button span {
    color: hsla(0,0%,100%,.7);
}
.hero-banner-five .button-group a span {
    font-size: 11px;
    color: #737373;
    display: block;
    margin-bottom: -11px;
    margin-top: -5px;
}
.hero-banner-five .button-group a strong {
    font-weight: 500;
    font-size: 18px;
    display: block;
}
.hero-banner-five .img-gallery {
   /* border-bottom: 1px solid #eaeaea;*/
   /* margin-top: 80px;*/
    position: relative;
    z-index: 1;
}
.hero-banner-five .img-gallery .screen-container {
    border-radius: 45px 45px 0 0;
   /* border: 4px solid #000;*/
    border-bottom: none;
    position: relative;
}
.hero-banner-five .img-gallery .screen-container .main-screen {
    width: 100%;
    border-radius: 40px 40px 0 0;
}
.hero-banner-five .img-gallery .screen-one {
    width: 19%;
    bottom: -10%;
    right: 0%;
    z-index: 1;
    /*box-shadow: 0 35px 70px rgb(12 21 44 / 8%);*/
    -webkit-animation: jumpTwo 5s linear infinite;
    animation: jumpTwo 5s linear infinite;
}
.shapes {
    position: absolute;
    z-index: -1;
}
.hero-banner-five .img-gallery .screen-two {
    width: 25%;
    bottom: 0%;
    left: -10%;
    z-index: 1;
    /*box-shadow: -10px 40px 80px rgb(25 42 70 / 5%);*/
    -webkit-animation: jumpThree 5s linear infinite;
    animation: jumpThree 5s linear infinite;
}
.hero-banner-five .shape-one {
    left: 0;
    top: 25%;
}
.hero-banner-five .shape-two {
    right: 0;
    bottom: 9%;
}
.hero-banner-five .shape-three {
    right: 10%;
    top: 27%;
}
.hero-banner-five .shape-four {
    left: 11%;
    top: 56%;
}
@media (max-width: 575px) {
	.hero-banner-five .hero-heading {
    font-size: 32px;
    line-height: 1.219em;
    text-align: center;
	}
	.mobile-app-icon{
		margin: 0px auto !important;
    text-align: center !important;
    width: fit-content;
	}
}
.services-box-main ul {
    margin: 0;
    padding: 0;
}
.services-box-main ul li {
    display: inline-block;
    width: 16%;
    margin-bottom: 25px;
    text-align: center;
    list-style: none!important;
    padding: 0;
}
.services-box-main ul li span {
    display: inline-block;
    width: 100%;
    height: 60px;
    margin: 0 0 5px;
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: auto 100%!important;
}
.services-box-main ul li span img {
    height: 50px;
}
.services-box-main ul li p {
    margin: 0;
}
@media (max-width: 575px) {
	.services-box-main {
    margin: 30px 0 0;
    text-align: left;
}
	.services-box-main ul li {
    width: 32%;
}
.services-box-main ul li span {
    height: 50px;
}
.services-box-main ul li p {
    font-size: 12px;
}
.tab-pane .card-body{
	padding: 0
}
.services-box-main ul li span img {
    height: 40px;
}
}
#myModal{
	z-index: 9999999 !important;
}
#myModal .modal-dialog {
      max-width: 800px;
      margin: 30px auto;
      top: 100px;
  }

.video-btn{
	border: 0px;
    background: none;
}
.gif-size{
	width: 80px;
	position: absolute;
    transform: translateX(-60%) translateY(50%);
    top: 40%;
   /* z-index: 9999999;*/
}
#myModal .modal-body {
  position:relative;
  padding:0px;
}
#myModal .close {
  position:absolute;
  right:-30px;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:#fff;
  opacity:1;
}
.btn-highlight{
	display: inline-block;
    border-radius: 30px;
    width: 50px;
    height: 30px;
    background: #ffe147;
    color: #111;
    animation: pulse 2s infinite ease-in-out;
    -webkit-animation: pulse 2s infinite ease-in-out;
    text-align: center;
    line-height: 29px;
    position: relative;
    right: -10px;
    font-weight: 800;
  animation: pulse 2s infinite ease-in-out;
  -webkit-animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { box-shadow: 0 0 14px rgb(255 242 178); }
	50% { box-shadow: 0 0 14px 6px rgb(255 213 0); }
	100% { box-shadow: 0 0 14px rgb(0 255 128 / 20%); }
}

@-webkit-keyframes pulse {
	0% { -webkit-box-shadow: 0 0 14px rgb(255 242 178); }
	50% { -webkit-box-shadow: 0 0 14px 6px rgb(255 213 0); }
	100% { -webkit-box-shadow: 0 0 14px rgb(0 255 128 / 20%) }
}
/* review */
.reviews__badges {
    max-width: 935px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.reviews__badges, .reviews__badges-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.reviews__badges-item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}
.reviews__badges-item--clutch .reviews__badge-bot {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}
.reviews__badges--ru {
	max-width: 1275px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.reviews__badges--ru .reviews__badges-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.reviews__badges--ru .reviews__badges-item--agima {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.reviews__badge-top {
	margin: 0 0 8px
}
.reviews__badge-bot, .reviews__badge-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.reviews__badge-bot {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.reviews__badge-reviewed {
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: var(--gray2);
	margin-right: 20px
}
.reviews__badge-stars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.reviews__badge-star:not(:last-of-type) {
	margin-right: 6px
}
.reviews__badge-views {
	margin-left: auto;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: var(--gray2)
}
.reviews__badge-text {
	font-weight: 600;
	font-size: 17px;
	line-height: 21px;
	text-align: center;
	color: var(--gray2)
}
.reviews__badge-link {
	text-decoration: none;
	color: inherit;
	cursor: unset
}
.js-modal-hide {
	display: none;
	opacity: 0
}
.js-modal-opening {
	-webkit-animation-name: openModal;
	animation-name: openModal
}
.js-modal-closing, .js-modal-opening {
	-webkit-animation-duration: .5s;
	animation-duration: .5s
}
.js-modal-closing {
	-webkit-animation-name: closeModal;
	animation-name: closeModal
}
@-webkit-keyframes pulsation {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	25%, 50% {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: scale(1.35);
		transform: scale(1.35)
	}
}
@keyframes pulsation {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	25%, 50% {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: scale(1.35);
		transform: scale(1.35)
	}
}
@-webkit-keyframes openModal {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}
@keyframes openModal {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}
@-webkit-keyframes closeModal {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	to {
		-webkit-transform: scale(0);
		transform: scale(0)
	}
}
@keyframes closeModal {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	to {
		-webkit-transform: scale(0);
		transform: scale(0)
	}
}
@media (min-width:1440px) {
	.intro .container {
		padding: 0
	}
}
@media (max-width:1439px) {
	.intro__inner {
		grid-template: ". . text" 91px "title . text" auto ". . ." 154px "social . ." auto/44% 6% minmax(auto, 190px);
		padding: 152px 0 186px
	}
	.intro__title {
		line-height: 88px
	}
}
@media (max-width: 767px){
.reviews__badges {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 240px;
}
.reviews__badges-item:not(:last-child) {
    margin: 0 0 75px;
}
}
.sk__gradient-fancy-text {

	background: rgb(129,21,255);
	background: -webkit-gradient(linear, left top, right top, from(#fbeb38), color-stop(52%, #fbff07), to(#ff8100));
	background: -o-linear-gradient(left, #fbeb38 0%, #fbff07 52%, #ff8100 100%);
	background: linear-gradient(90deg, #fbeb38 0%, #fbff07 52%, #ff8100 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
	-webkit-background-clip: text;
	color: #000000;
	padding: 3px;
	padding: 0.065em;
	font-weight: 700;
   
    letter-spacing: -1px;
    text-transform: inherit;
    line-height: 1.35;
    
    -webkit-text-stroke: 4px transparent;
}

.sk__gradient-fancy-text-back {
	/* to make this (copy) fall behind front gradient text (original) */
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	-webkit-transform: translate(5px, 5px);
	    -ms-transform: translate(5px, 5px);
	        transform: translate(5px, 5px);
	z-index: -1;
	/* to set its own styling */
	background: rgb(129,21,255);
	background: -webkit-gradient(linear, left top, right top, from(#fbeb38), color-stop(52%, #fbff07), to(#ff8100));
	background: -o-linear-gradient(left, #fbeb38 0%, #fbff07 52%, #ff8100 100%);
	background: linear-gradient(90deg, #fbeb38 0%, #fbff07 52%, #ff8100 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8115ff",endColorstr="#ff8f2a",GradientType=1);
	-webkit-background-clip: text;
	color: #000000;
	padding: 3px;
	padding: 0.065em;
	font-family: 'Poppins', sans-serif;
    font-weight: 700;
    
    letter-spacing: -1px;
    text-transform: inherit;
    line-height: 1.35;
    -webkit-text-stroke: 4px transparent;
}
.fancy-gradient-text-box {
    display: inline-block;
    position: relative;
}
footer h3{
	letter-spacing: 0px !important;
}

.btn_3d{
	position: relative;
    top: -3px;
    padding: 8px 25px 8px;
    line-height: 30px;
    border-style: solid;
    border-width: 2.5px;
    border-color: #212020;
    border-radius: 38px;
    box-shadow: 6px 9px 0 0 #212020, 2px 3px 0 0 #212020, 5px 8px 0 0 #212020, 3px 5px 0 0 #212020;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease !important;
    color: #212020;
    font-size: 18px;
    font-weight: 700;
    background-color: #fbeb38;
}
.btn_3d:hover {
    box-shadow: 1px 2px 0 0 #212020, 1px 2px 0 0 #212020, 1px 2px 0 0 #212020, 1px 2px 0 0 #212020;
    -webkit-filter: brightness(106%);
    filter: brightness(106%);
    -webkit-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
}
/* ====================== [ Start Preloader ] ====================== */
.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99999999999999;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.pace .pace-progress {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  max-width: 300px;
  position: fixed;
  z-index: 99999999999999;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: #fbeb38;
  background: -webkit-gradient(linear, left top, right top, from(#fbeb38), color-stop(#c471ed), to(#f64f59));
  background: -webkit-linear-gradient(left, #fbeb38, #c471ed, #f64f59);
  background: -o-linear-gradient(left, #fbeb38, #c471ed, #f64f59);
  background: linear-gradient(to right, #fbeb38, #c471ed, #f64f59);
}

.pace.pace-inactive {
  width: 100%;
  opacity: 0;
}

.pace.pace-inactive .pace-progress {
  max-width: 100%;
}

#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
}

#preloader:after, #preloader:before {
  content: '';
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: #111;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader:before {
  top: 0;
}

#preloader:after {
  bottom: 0;
}

#preloader.isdone {
  visibility: hidden;
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#preloader.isdone:after, #preloader.isdone:before {
  height: 0;
  -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.loading {
  position: fixed;
  left: 50%;
  top: calc(50% - 40px);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 10px;
  z-index: 9999999999;
}

.loading.isdone {
  top: 50%;
  opacity: 0;
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all .8s;
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s;
}

.loading span {
  -webkit-animation: loading 1.4s infinite alternate;
  animation: loading 1.4s infinite alternate;
}

.loading span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.loading span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loading span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ====================== [ End Preloader ] ====================== */
/* ====================== [ Start progress-wrap ] ====================== */
.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: 'feathericons'!important;
  content: '\e931';
  text-align: center;
  line-height: 44px;
  font-size: 13px;
  font-weight: 900;
  color: #fbeb38;
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #fbeb38;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/* ====================== [ End progress-wrap ] ====================== */
/* ====================== [ Start Cursor Style ] ====================== */
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #fbeb38;
  -webkit-transition: width .3s ease-in-out,
 height .3s ease-in-out,
 margin .3s ease-in-out,
 opacity .3s ease-in-out;
  -o-transition: width .3s ease-in-out,
 height .3s ease-in-out,
 margin .3s ease-in-out,
 opacity .3s ease-in-out;
  transition: width .3s ease-in-out,
 height .3s ease-in-out,
 margin .3s ease-in-out,
 opacity .3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: #fbeb38;
  opacity: .3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #fbeb38;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: .5;
  -webkit-transition: all .08s ease-out;
  -o-transition: all .08s ease-out;
  transition: all .08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

/* ====================== [ End Cursor Style ] ====================== */
.brand-image-group .brand-image-group--l2__line-1 img, .brand-image-group .brand-image-group--l2__line-2 img, .brand-image-group .brand-image-group--l2__line-3 img, .brand-image-group .brand-image-group--l2__line-4 img, .brand-image-group .brand-image-group--l2__line-5 img, .brand-image-group .brand-image-group--l2__line-6 img, .brand-image-group .brand-image-group--l2__line-7 img, .brand-image-group .brand-image-group--l2__line-8 img{
	 filter: invert(100%);
  -webkit-filter: invert(100%);
}
.menu_small_font{
	font-size: 10px !important;
    color: #fbeb38 !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-decoration: none;
    pointer-events: none !important;
}
/* Custom */

.addReadMore.showlesscontent .SecSec,
.addReadMore.showlesscontent .readLess {
        display: none;
}

.addReadMore.showmorecontent .readMore {
        display: none;
}

.addReadMore .readMore,
.addReadMore .readLess {
        font-weight: bold;
        margin-left: 2px;
        color: #fbeb38;
        cursor: pointer;
}

.addReadMoreWrapTxt.showmorecontent .SecSec,
.addReadMoreWrapTxt.showmorecontent .readLess {
        display: block;
}
.readmore::before{
    content: "\a";
    white-space: pre;
}
.dot-block{
 display: contents;
}
.dot-none{
  display:none !important;
}
.menu-img{
	width: 30px;
    background: rgb(98 98 98 / 19%);
    border-radius: 25px;
    padding: 5px;
    margin-right: 5px;
}
.service-box{
	background: #131416;
}
.service-box img{
	width: 150px;
}
.color-font {
    background: -webkit-gradient(linear, left top, right top, from(#ffbf00), color-stop(#fbeb38), to(#fcff3e));
    background: -webkit-linear-gradient(left, #ffbf00, #fbeb38, #fcff3e);
    background: -o-linear-gradient(left, #ffbf00, #fbeb38, #fcff3e);
    background: linear-gradient(to right, #ffbf00, #fbeb38, #fcff3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        font-weight: 700;
}
.story-grid {
	width: 100%;
	height: 720px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto
}
.story-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem;
	text-align: center;
	width: 100%
}
.bg-dark-black{
	background: #000;
}
.story-item h3{
	font-size: 60px;
    font-weight: 700;
}
/*--------------------------------------------------
	Content Marquee
---------------------------------------------------*/

	.content-marquee-wrapper {
		position:relative;
		float:left;
		z-index:0;
		pointer-events:none;
	}
	
	.content-marquee {
		font-size:100px;
		line-height:130px;
		font-weight:500;
		white-space: nowrap;
		animation: content-marquee 15s infinite linear;
		padding-left: 2vw;
		color:#fff;
		padding-top: 50px;
	}
	
	.light-content .content-marquee {
		color:#fff;
	}
  
	.content-marquee:after{
		content: attr(data-text);
		padding-left: 2vw;
	}


	@keyframes content-marquee {
	  0% {
		transform: translateX(0)
	  }
	  100% {
		transform: translateX(-50%)
	  }
	}
.vc_row::after {
    clear: both;
    content: " ";
    display: table;
}
.size-120 {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}
.side-badge {
    position: absolute;
    top: 3px;
    left: -3px;
}
.size-35 {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
}
.rounded-full {
    border-radius: 100% !important;
}
.justify-center {
    justify-content: center !important;
}
.items-center {
    align-items: center !important;
}
.relative {
    position: relative;
}
.bg-dark-black{
	background: #000000;
}
.justify-between {
    justify-content: space-between !important;
}
.process-stage h6{
font-weight: 700;
    color: #fbeb38;
    padding-top: 20px;
}
/*-------------------------------------------------------*/
/* Service Boxes
/*-------------------------------------------------------*/
.services {
	display: flex;
	flex-wrap: wrap; }

.services-list {
	list-style: none;
	position: relative;
	width: 100%; }
	@media only screen and (min-width: 1025px) {
		.services-list {
			flex: 0 0 50%;
			max-width: 50%;
			padding-right: 40px; } }
	@media only screen and (max-width: 1024px) {
		.services-list {
			margin-bottom: 56px; } }
	.services-list__item {
		position: relative;
		font-family: "aktiv-grotesk-extended", "Montserrat", sans-serif;
		font-weight: 700;
		color: #b5b5b5;
		cursor: pointer;
		letter-spacing: -0.05em;
		transition: all 0.4s cubic-bezier(0.25, 0.74, 0.22, 0.99);
		font-size: 34px;
		font-size: 2.125rem; }
		@media (prefers-reduced-motion: reduce) {
			.services-list__item {
				transition: none; } }
		@media only screen and (min-width: 1025px) {
			.services-list__item {
				font-size: 56px;
				font-size: 3.5rem; } }
		.services-list__item:hover, .services-list__item--is-active {
			color: #000000; }
			.services-list__item:hover span::after, .services-list__item--is-active span::after {
				width: 100%; }
	.services-list__label {
		position: relative;
		z-index: 1; }
		.services-list__label::after {
			content: '';
			z-index: -1;
			position: absolute;
			display: block;
			bottom: 10px;
			height: 16px;
			width: 0;
			background-color: #ffc62d;
			transition: all 0.4s cubic-bezier(0.25, 0.74, 0.22, 0.99); }
			@media only screen and (min-width: 1025px) {
				.services-list__label::after {
					bottom: 20px; } }

.services-content {
	list-style: none;
	position: relative;
	width: 100%; }
	@media only screen and (min-width: 1025px) {
		.services-content {
			flex: 0 0 50%;
			max-width: 50%; } }
	.services-content__item {
		font-size: 28px;
		font-size: 1.75rem;
		margin-bottom: 48px;
		line-height: 1.3;
		color: #b5b5b5;
		transition: all 0.4s cubic-bezier(0.25, 0.74, 0.22, 0.99); }
		@media (prefers-reduced-motion: reduce) {
			.services-content__item {
				transition: none; } }
		.services-content__item:last-child {
			margin-bottom: 0; }
		@media only screen and (min-width: 1025px) {
			.services-content__item {
				font-size: 40px;
				font-size: 2.5rem; } }
		.services-content__item--is-active {
			color: #000000; }
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #000000;
}
.input__form {
  height: 85px;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  box-shadow: none;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .input__form {
    height: 65px;
  }
}
.input__form:hover {
  border: 1px solid #e4e4e4;
  box-shadow: none;
  background-color: transparent;
}
.input__form:focus {
  border: 1px solid #e4e4e4;
  box-shadow: none;
  background-color: transparent;
}
.wrapper__form-card {
    padding: 3rem 1.5rem;
    border-radius: 20px;
}
.box__tag {
  transition: 0.5s;
  position: relative;
  display: inline-block;
}
.box__tag input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.box__tag input:checked ~ div {
  background: #fbeb38;
    border: 1px solid #fbeb38;
    box-shadow: 7px 1px 40px 0px #fbeb388f;
  color: #000000;
}
.box__tag input:checked ~ label {
background: #fbeb38;
    border: 1px solid #fbeb38;
    box-shadow: 7px 1px 40px 0px #fbeb388f;
  color: #000000;
}
.box__tag div {
  padding: 15px 23px;
  color: #959595;
  transition: 0.5s;
  border: 1px solid #e4e4e4;
  border-radius: 8px !important;
}
@media screen and (max-width: 576px) {
  .box__tag div {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 425px) {
  .box__tag div {
    padding: 10px 10px;
  }
}
.box__tag div:hover {
  background: #fbeb38;
    border: 1px solid #fbeb38;
    box-shadow: 7px 1px 40px 0px #fbeb388f;
  color: #000000;
}
.box__tag label {
  padding: 15px 23px;
  color: #959595;
  transition: 0.5s;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
}
@media screen and (max-width: 576px) {
  .box__tag label {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 425px) {
  .box__tag label {
    padding: 10px 10px;
  }
}
.box__tag label:hover {
 background: #fbeb38;
    border: 1px solid #fbeb38;
    box-shadow: 7px 1px 40px 0px #fbeb388f;
  color: #000000;
}

.input__form {
  height: 85px;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  box-shadow: none;
  background-color: transparent;
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  .input__form {
    height: 65px;
  }
}
.input__form:hover {
  border: 1px solid #e4e4e4;
  box-shadow: none;
  background-color: transparent;
}
.input__form:focus {
  border: 1px solid #e4e4e4;
  box-shadow: none;
  background-color: transparent;
}
.wrapper__tag .box__tag {
  margin-right: 15px;
}
.wrapper__tag .box__tag:last-child {
  margin-right: 0;
}
.wrapper__form-card {
  padding: 3rem 1.5rem;
  border-radius: 20px;
}
.wrapper__banner {
  padding: 3rem 3rem;
  border-radius: 50px;
}
@media screen and (min-width: 375px) {
  .wrapper__banner {
    padding: 2rem;
  }
}
.wrapper_dot {
  position: absolute;
}
@media screen and (max-width: 576px) {
  .wrapper_dot {
    position: initial;
  }
}
.wrapper_dot.one {
  left: 21%;
  top: 17%;
}
.wrapper_dot.two {
  left: 50%;
  top: 21%;
}
.wrapper_dot.two div .detail {
  width: 75px;
}
.wrapper_dot.three {
  right: 18%;
  top: 15%;
}
.wrapper_dot.three div .detail {
  width: 60px;
}
.wrapper_dot.four {
  bottom: 8%;
  left: 27%;
}
.wrapper_dot.five {
  right: 9%;
  bottom: 17%;
}
.wrapper_dot.five div .detail {
  width: 92px;
}
.wrapper_dot .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  position: relative;
  animation: pulse 1.5s ease-in-out infinite;
}
.wrapper_dot .dot::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-color: #fbeb38;
}
.wrapper_dot .detail {
  position: absolute;
  box-shadow: 0px 20px 50px 0px #0000004d;
  background-color: black;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 138px;
  text-align: center;
  top: -140%;
}
@media screen and (max-width: 425px) {
  .wrapper_dot .detail {
    width: 101px;
  }
}
.wrapper_dot .arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40%;
}
.font__size--12 {
    font-size: 12px !important;
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fbeb38;
    box-shadow: 0 0 0 0 #fbeb38;
  }
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(95, 159, 254, 0);
    box-shadow: 0 0 0 30px rgba(95, 159, 254, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(95, 159, 254, 0);
    box-shadow: 0 0 0 0 rgba(95, 159, 254, 0);
  }
}
/*home*/
.center {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 10px;
}
.main {
  position: relative;
  padding: 70px 0 25px;
}

.main__bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -5;
}

.main__bg .main__pic {
  max-width: 1440px;
}

.main__wrap {
  max-width: 640px;
}

.main__title {
  -webkit-perspective: 400px;
  perspective: 400px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  margin-bottom: 181px;
}

.main__title span {
  display: block;
}

.main__view {
  position: absolute;
  top: 320px;
  right: 0;
  width: 910px;
  z-index: -1;
}

.main__view[data-aos] .main__preview {
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.main__view[data-aos].aos-animate .main__preview {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.main__view[data-aos].aos-animate .main__preview:first-child {
  -webkit-transition-delay: .9s;
  -o-transition-delay: .9s;
  transition-delay: .9s;
}

.main__view[data-aos].aos-animate .main__preview:nth-child(2) {
  -webkit-transition-delay: .15s;
  -o-transition-delay: .15s;
  transition-delay: .15s;
}

.main__view[data-aos].aos-animate .main__preview:nth-child(3) {
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}

.main__view[data-aos].aos-animate .main__preview:nth-child(4) {
  -webkit-transition-delay: .45s;
  -o-transition-delay: .45s;
  transition-delay: .45s;
}

.main__view[data-aos].aos-animate .main__preview:nth-child(5) {
  -webkit-transition-delay: .6s;
  -o-transition-delay: .6s;
  transition-delay: .6s;
}

.main__view[data-aos].aos-animate .main__preview:nth-child(6) {
  -webkit-transition-delay: .75s;
  -o-transition-delay: .75s;
  transition-delay: .75s;
}

.main__view[data-aos].aos-animate .main__preview:nth-child(7) {
  -webkit-transition-delay: 1.05s;
  -o-transition-delay: 1.05s;
  transition-delay: 1.05s;
}

.main__view .main__pic,
.main__figure .main__pic {
  width: 100%;
}

.main__preview:nth-child(2) {
  left: 43.7%;
  top: -16%;
  z-index: 3;
  width: 17%;
}

.main__preview:nth-child(3) {
  left: 35.6%;
  top: -14%;
  z-index: 2;
  width: 33.5%;
}

.main__preview:nth-child(4) {
  left: 19.1%;
  top: 19.9%;
  z-index: 1;
  width: 33.5%;
}

.main__preview:nth-child(5) {
  right: 14.2%;
  top: 20%;
  z-index: 1;
  width: 25%;
}

.main__preview:nth-child(6) {
  right: 43.3%;
  top: 35.5%;
  z-index: 3;
  width: 8%;
}

.main__preview:nth-child(7) {
  right: 2%;
  bottom: 8.4%;
  z-index: 3;
  width: 27.3%;
}

.main__preview:not(:first-child) {
  position: absolute;
}

.main__figure {
  position: absolute;
  z-index: -3;
}

.main__figure:first-child {
  top: 152px;
  right: 590px;
  width: 231px;
}

.main__figure:nth-child(2) {
  right: 738px;
  bottom: 21.2%;
  width: 213px;
}

.main__figure:nth-child(3) {
  right: 627px;
  bottom: 6.2%;
  width: 250px;
}

.main__bg, .main__preview, .main__figure {
  font-size: 0;
  pointer-events: none;
}
@media only screen and (max-width: 1365px) {
  .main__bg {
    right: -100px;
  }
  .main__view {
    right: -100px;
  }
  .main__figure:first-child {
    right: 520px;
  }
  .main__figure:nth-child(2) {
    right: 700px;
  }
  .main__figure:nth-child(3) {
    right: 530px;
  }
}
@media only screen and (max-width: 1279px) {
  .main {
    padding: 170px 0 60px;
  }
  .main__bg {
    right: 0;
  }
  .main__bg .main__pic {
    max-height: 852px;
  }
  .main__wrap {
    max-width: 380px;
  }
  .main__title {
    margin-bottom: 114px;
  }
  .main__view {
    top: 218px;
    right: -8px;
    width: 660px;
  }
  .main__figure:first-child {
    top: 240px;
    right: 466px;
    width: 132px;
  }
  .main__figure:nth-child(2) {
    right: 541px;
    bottom: 16.3%;
    width: 180px;
  }
  .main__figure:nth-child(3) {
    right: 467px;
    bottom: 4.3%;
    width: 176px;
  }
}
@media only screen and (max-width: 1023px) {
	.main__bg {
    right: -150px;
  }
  .main__view {
    top: 327px;
    right: -56px;
    width: 500px;
  }
  .main__figure:first-child {
    top: 140px;
    right: 320px;
  }
  .main__figure:nth-child(2) {
    right: 400px;
  }
  .main__figure:nth-child(3) {
    right: 300px;
    bottom: 3%;
  }
}
@media only screen and (max-width: 767px) {

	.main {
    padding: 50px 0 0;
  }
  .main__bg {
    display: none;
  }
  .main__wrap {
    max-width: 100%;
  }
  .main__title {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: -.15px;
  }
  .main__view {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 480px;
    margin: 40px 0 0 12%;
  }
  .main__figure:first-child {
    top: 110px;
    right: 10%;
  }
  .main__figure:nth-child(2) {
    top: 260px;
    bottom: auto;
    right: -30px;
  }
  .main__figure:nth-child(3) {
    display: none;
  }
  .main .scroll {
    font-size: 0;
  }
}
@media only screen and (max-width: 639px) {

  .main__wrap {
    max-width: 230px;
  }
  .main__view {
    margin: 130px 0 0 -63px;
  }
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: .1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: .15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: .15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: .2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: .2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: .25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: .25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: .3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: .3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: .35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: .35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: .4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: .4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: .45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: .45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: .5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: .5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: .55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: .55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: .6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: .6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: .65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: .65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: .7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: .7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: .75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: .75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: .8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: .8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: .85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: .85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: .9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: .9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: .95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: .95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity,transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity,transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
[data-aos="animation-scale"] {
  -webkit-transform: translateY(30px) scale(0.5);
  -ms-transform: translateY(30px) scale(0.5);
  transform: translateY(30px) scale(0.5);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos="animation-scale"].aos-animate {
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  opacity: 1;
}

[data-aos="animation-scale-x-left"] {
  -webkit-transform: translateX(-50px) scaleX(1.1);
  -ms-transform: translateX(-50px) scaleX(1.1);
  transform: translateX(-50px) scaleX(1.1);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos="animation-scale-x-left"].aos-animate {
  -webkit-transform: translateX(0) scaleX(1);
  -ms-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
}

[data-aos="animation-scale-x-right"] {
  -webkit-transform: translateX(50px) scaleX(1.1);
  -ms-transform: translateX(50px) scaleX(1.1);
  transform: translateX(50px) scaleX(1.1);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos="animation-scale-x-right"].aos-animate {
  -webkit-transform: translateX(0) scaleX(1);
  -ms-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
}

[data-aos="animation-scale-y"] {
  -webkit-transform: translateY(40px) scaleY(1.4);
  -ms-transform: translateY(40px) scaleY(1.4);
  transform: translateY(40px) scaleY(1.4);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos="animation-scale-y"].aos-animate {
  -webkit-transform: translateY(0) scaleY(1);
  -ms-transform: translateY(0) scaleY(1);
  transform: translateY(0) scaleY(1);
  opacity: 1;
}

[data-aos="animation-translate-y"] {
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos="animation-translate-y"].aos-animate {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

[data-aos="transform"] {
  -webkit-transform: rotateX(90deg) skewY(-5deg);
  transform: rotateX(90deg) skewY(-5deg);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos="transform"].aos-animate {
  -webkit-transform: translate(0) rotateX(0deg) skewY(0deg);
  transform: translate(0) rotateX(0deg) skewY(0deg);
  opacity: 1;
}
.h2-home{
	font-size: 40px;
}

.field__wrap {
  position: relative;
}

.field__input, .field__textarea, .field__select {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(244, 244, 244, 0.801191);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #111029;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

.field__input:focus, .field__textarea:focus, .field__select:focus {
  border-color: #4C40F7;
  background: #fff;
}

.field__input::-webkit-input-placeholder, .field__textarea::-webkit-input-placeholder, .field__select::-webkit-input-placeholder {
  color: #6b6b6b;
}

.field__input::-ms-input-placeholder, .field__textarea::-ms-input-placeholder, .field__select::-ms-input-placeholder {
  color: #6b6b6b;
}

.field__input::placeholder, .field__textarea::placeholder, .field__select::placeholder {
  color: #6b6b6b;
}

.field__input:focus + .field__icon .icon,
.field__textarea:focus + .field__icon .icon,
.field__select:focus + .field__icon .icon {
  fill: #4C40F7;
}

.field__input, .field__select {
  height: 72px;
  padding: 0 72px 0 24px;
}

.field__textarea {
  height: 200px;
  resize: none;
  padding: 20px 72px 20px 24px;
}

.field__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.field__select::-ms-expand {
  display: none;
}

.field__select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.field__icon {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 72px;
  height: 72px;
  font-size: 0;
  pointer-events: none;
}

.field__icon .icon {
  font-size: 17px;
  fill: #111029;
  -webkit-transition: fill .25s;
  -o-transition: fill .25s;
  transition: fill .25s;
}

/*.field_textarea {
  font-size: 0;
}*/

.contacts {
  position: relative;
  margin-bottom: 50px;
  z-index: 3;
}

.contacts__container {
  position: relative;
  padding: 162px 100px 60px;
  background: #000;
  border-radius: 48px;
}

.contacts__container:before, .contacts__container:after {
  content: "";
  position: absolute;
  top: 50px;
  border-radius: 34px;
}

.contacts__container:after {
  left: 17px;
  right: 17px;
  bottom: -16px;
  z-index: -1;
  background: #323232;
}

.contacts__container:before {
  left: 50px;
  right: 50px;
  bottom: -32px;
  z-index: -2;
  background: #242424;
}

.contacts__wrap {
  position: relative;
  z-index: 3;
  margin-bottom: 85px;
}

.contacts__title {
  margin-bottom: 40px;
}

.contacts__info {
  max-width: 366px;
}

.contacts__row {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 93px;
}

.contacts__details {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 340px;
  margin-right: auto;
}

.contacts__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}

.contacts__line:not(:last-child) {
  margin-bottom: 40px;
}

.contacts__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 30px;
  margin-right: 45px;
  font-size: 0;
}

.contacts__icon .icon {
  fill: #4C40F7;
}

.contacts__icon .icon-email {
  font-size: 20px;
}

.contacts__icon .icon-place {
  font-size: 23px;
}

.contacts__icon .icon-phone {
  font-size: 24px;
}

.contacts__form {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  float: right;
  width: 468px;
}

.contacts__field:not(:last-child) {
  margin-bottom: 24px;
}

.contacts__category {
  display: none;
}

.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -100px;
}

.contacts__box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
}

.contacts__social .contacts__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 140px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #9F9FA9;
  -webkit-transition: color .25s;
  -o-transition: color .25s;
  transition: color .25s;
}

.contacts__social .contacts__link .icon {
  position: relative;
  z-index: 3;
  margin-right: 14px;
  font-size: 16px;
  fill: #9F9FA9;
  -webkit-transition: fill .25s;
  -o-transition: fill .25s;
  transition: fill .25s;
}

.contacts__social .contacts__link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 24px;
}

.contacts__social .contacts__link:before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 120px;
  border-radius: 32px;
  background: #DBDEE1;
  -webkit-filter: blur(86.985px);
  filter: blur(86.985px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

.contacts__social .contacts__link:hover {
  background: #fff;
  color: #111029;
}

.contacts__social .contacts__link:hover:after {
  background: #fff;
}

.contacts__social .contacts__link:hover:before {
  visibility: visible;
  opacity: 1;
}

.contacts__social .contacts__link:hover .icon {
  fill: #111029;
}

.contacts__link .contacts__text {
  position: relative;
  z-index: 3;
}

.contacts .figures {
  top: 109px;
  right: calc(50% - 720px);
}

.figures {
  position: absolute;
  width: 1120px;
  pointer-events: none;
  font-size: 0;
}

.figures__preview:nth-child(2) {
  top: -16.2%;
  left: -1.8%;
  width: 87%;
}

.figures__preview:nth-child(3) {
  top: -17%;
  right: 16.2%;
  width: 19%;
}

.figures__preview:nth-child(4) {
  top: 12%;
  right: 11.7%;
  z-index: 2;
  width: 26.2%;
}

.figures__preview:nth-child(5) {
  left: 35.2%;
  bottom: 23%;
  z-index: 3;
  width: 27.5%;
}

.figures__preview:nth-child(6) {
  right: 0;
  bottom: 10%;
  z-index: 3;
  width: 34%;
}

.figures__preview:not(:first-child) {
  position: absolute;
}

.figures__preview .figures__pic {
  width: 100%;
}
.contacts__details img {
    width: 30px;
}
body::-webkit-scrollbar{width:5px}body::-webkit-scrollbar-track{background:#fff}body::-webkit-scrollbar-thumb{background:#000;border-radius:0}
label#pcat\[\]-error, label#pcat\[\]-error:hover {
    background: none;
    border: none;
    position: absolute;
    top: -68px;
    width: 360px;
    left: 165px;
    box-shadow: none;
    color: #fbeb38;
}
label#budget-error, label#budget-error:hover{
	background: none;
    border: none;
    position: absolute;
    top: -68px;
    width: 360px;
    left: 115px;
    box-shadow: none;
    color: #fbeb38;
}
@media only screen and (max-width: 1365px) {
	.contacts__social .contacts__link:before {
    bottom: -20px;
  }
  .contacts .figures {
    right: calc(50% - 670px);
  }
}
@media only screen and (max-width: 1279px) {
	.contacts {
    margin-bottom: 112px;
  }
  .contacts__container {
    padding: 78px 73px 40px;
    border-radius: 34px;
  }
  .contacts__title {
    margin-bottom: 32px;
  }
  .contacts__info {
    max-width: 270px;
  }
  .contacts__row {
    margin-bottom: 46px;
  }
  .contacts__line {
    font-size: 16px;
    line-height: 1.75;
  }
  .contacts__line:not(:last-child) {
    margin-bottom: 20px;
  }
  .contacts__icon {
    margin-right: 24px;
    width: 17px;
    height: 28px;
  }
  .contacts__icon .icon-email {
    font-size: 14px;
  }
  .contacts__icon .icon-place {
    font-size: 17px;
  }
  .contacts__icon .icon-phone {
    font-size: 18px;
  }
  .contacts__form {
    width: 345px;
  }
  .contacts__field:not(:last-child) {
    margin-bottom: 16px;
  }
  .contacts__social {
    margin: 0 -73px;
  }
  .contacts__social .contacts__link {
    height: 100px;
  }
  .contacts__social .contacts__link .icon {
    font-size: 14px;
  }
  .contacts .figures {
    top: 80px;
    right: calc(50% - 530px);
  }
}
  @media only screen and (max-width: 1023px) {
  	.center {
    padding: 0 48px;
  }
  	.contacts__row {
    display: block;
  }
  .contacts__details {
    width: 100%;
    margin-bottom: 38px;
  }
  .contacts__form {
    width: 100%;
  }
  .contacts .figures {
    top: 130px;
    right: calc(50% - 450px);
  }
  .figures {
    width: 700px;
  }
.field__input, .field__select {
    height: 56px;
    padding-right: 56px;
}
}
@media only screen and (max-width: 767px) {
	label#pcat\[\]-error {
    background: none;
    border: none;
    position: relative;
    top: 0;
    width: auto;
    left: 0;
    box-shadow: none;
    color: #fbeb38;
}
label#budget-error, label#budget-error:hover{
	background: none;
    border: none;
    position: relative;
    top: 0;
    width: auto;
    left: 0;
    box-shadow: none;
    color: #fbeb38;
}
	.center {
    padding: 0 32px;
  }
	.contacts {
    margin-bottom: 57px;
  }
  .contacts__container {
    padding: 0;
    border-radius: 0;
    background: none;
  }
  .contacts__container:before, .contacts__container:after {
    display: none;
  }
  .contacts__wrap {
    margin-bottom: 40px;
  }
  .contacts__title {
    margin: 0;
  }
  .contacts__info {
    display: none;
  }
  .contacts__row {
    margin-bottom: 40px;
  }
  .contacts__line {
    font-weight: 600;
  }
  .contacts__btn .btn {
    min-width: 100%;
  }
  .contacts__category {
    display: block;
    margin-bottom: 32px;
  }
  .contacts__social {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -16px -8px 0;
  }
  .contacts__box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 16px);
    flex: 0 0 calc(50% - 16px);
    width: calc(50% - 16px);
    margin: 16px 8px 0;
  }
  .contacts__social .contacts__link {
    background: rgba(244, 244, 244, 0.8);
    border-radius: 17px;
    font-size: 14px;
  }
  .contacts__social .contacts__link .icon {
    margin-right: 10px;
    fill: #111029;
  }
  .contacts .figures {
    top: 90px;
    right: -25px;
    width: 320px;
  }
  .field__icon {
    position: absolute;
    top: -10px;
	}
}
label.error{
	color: #fbeb38;
}
.job-titl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%
}
.ree-card {
    background: #000;
    position: relative;
    place-items: start;
    display: grid;
    border-radius: 14px;
    padding: 40px 30px;
    -webkit-box-shadow: 0 10px 15px -2px rgb(82 0 57 / 8%);
    box-shadow: 0 10px 15px -2px rgb(82 0 57 / 8%);
}
.job-detail h4 {
    color: #ff5b2e;
}
.job-titl p:first-child {
    font-size: 16px;
}
.fa-btn {
    font-size: 11px;
    margin-left: 4px;
    display: inline-block;
    position: relative;
    top: -2px;
}
.career-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.career-detail p {
    font-size: 17px;
    list-style: 26px;
}
.career-detail p:last-child {
    font-weight: 700;
    text-align: right;
}
.career-detail+.career-detail {
    margin-top: 10px;
}
.close {
    color: #fff;
    opacity: 1;
}
.modal-body a{
	color: #fbeb38;
}
.modal-body a: hover{
	color: #fbeb50;
}
.faq-sidebar {
	position: sticky;
	top: 100px;
	height: 100vh
}
.faq-nav-one .list-group {
	background: #000;
	border: none;
	border-radius: 0;
	padding: 25px 15px 35px 30px
}
.faq-nav-one .list-group a {
	font-size: 22px;
	line-height: 55px;
	color: #fff;
	padding: 0;
	border: none;
	background: 0 0
}
.faq-nav-one .list-group a.active {
	color: #fbeb38;
}
.faq-section-two {
	padding: 140px 0 140px
}
.faq-section-two .nav-tabs {
	border: 0
}
.faq-section-two .nav-tabs .nav-link {
	line-height: 40px;
	padding: 0 28px;
	font-size: 18px;
	color: rgba(255, 255, 255, .5);
	border: none;
	margin: 0 13px;
	letter-spacing: 0;
	border-radius: 0
}
.faq-section-two .nav-tabs .nav-link.active {
	background: var(--red-one);
	color: #fff
}
.accordion-style-three .accordion-item {
	border: none;
	margin-bottom: 17px;
	background: rgba(255, 255, 255, .1);
	border-radius: 0
}
.accordion-style-three .accordion-item:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, .1)
}
.accordion-style-three .accordion-button {
	font-size: 20px;
	min-height: 1.75em;
	padding: 26px 20px 26px 35px;
	box-shadow: none;
	border-radius: 0;
	color: #fff;
	background: 0 0;
	transition: all .3s ease-in-out
}
.accordion-style-three .accordion-button:not(.collapsed) {
	padding-bottom: 19px
}
.accordion-style-three .accordion-body {
	padding: 0 50px 38px 35px
}
.accordion-style-three .accordion-body p {
	font-size: 18px;
	line-height: 1.8em;
	margin-bottom: 0;
	color: #d4d4d4
}
.accordion-style-three .accordion-button::after {
	content: url(../images/icon/icon_66.html);
	background-image: none;
	width: auto;
	height: auto
}
.accordion-style-three .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg)
}
.faq-section-two .request-faq h2 {
	font-size: 44px;
	margin-bottom: 25px;
	color: #fff
}
.faq-section-two .request-faq .theme-btn-four {
	font-size: 13px;
	text-transform: uppercase
}
.accordion-style-two .accordion-tag {
	
	font-size: 15px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fbeb38;
	margin-bottom: 15px
}
.accordion-style-two .accordion-item {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, .1);
	border-radius: 0
}
.accordion-style-two .accordion-item:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, .1)
}
.accordion-style-two .accordion-button {
	
	font-size: 20px;
	min-height: 1.75em;
	padding: 34px 10px 34px 0;
	box-shadow: none;
	border-radius: 0;
	color: #fff;
	background: 0 0;
	transition: all .3s ease-in-out
}
.accordion-style-two .accordion-button:not(.collapsed) {
	padding-bottom: 15px
}
.accordion-style-two .accordion-body {
	padding: 0 50px 25px 0
}
.accordion-style-two .accordion-body p {
	font-size: 20px;
	line-height: 1.8em;
	margin-bottom: 0
}
.accordion-style-two .accordion-button::after {
	content: url(../../html.creativegigstf.com/vCamp/vCamp/images/icon/icon_53.svg);
	background-image: none;
	width: auto;
	height: auto
}
.accordion-style-two .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg)
}
.ms-auto {
    margin-left: auto!important;
}
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}
.list-group-item+.list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px;
}
@media only screen and (max-width: 767px) {
.faq-sidebar {
    position: static;
    height: auto;
}
}
.budge_small{
	font-size: 13px;
    padding: 8px;
    margin-left: -15px;
}
.right-stickey {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 100;
    transform: translate(0, -50%);
    background-color: #000000;
    box-shadow: -3px -6px 16px 0px rgb(0 0 0 / 69%), 9px 5px 14px 0px rgb(0 0 0 / 15%);
    padding: 10px;
    border-radius: 25px 0 0 25px;
}
.right-stickey ul {
    margin: 0;
}
.right-stickey li {
    display: block;
    padding: 8px;
    margin: 5px 0 10px;
    border-radius: 100%;
    border: 2px solid #000000;
    box-shadow: 2px 4px 0 0 #212020, 2px 6px 0 0 #212020, 1px 0px 0 0 #212020, 3px 2px 0 0 #212020;
    transition: all 400ms ease !important;
}
.right-stickey li:hover {
    box-shadow: 1px 2px 0 0 #212020, 1px 2px 0 0 #212020, 1px 2px 0 0 #212020, 1px 2px 0 0 #212020;
    -webkit-filter: brightness(106%);
    filter: brightness(106%);
    -webkit-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
}
.right-stickey li a {
    display: block;
}
@media (max-width: 767px){
	.accordion .card-header a, .accordion .card-body{
		font-size: 12px;
	}
	.pt-100 {
    padding-top: 50px !important;
}
	.content-marquee {
    font-size: 40px;
    line-height: 55px;
}
	.h2-home img {
    width: 35px;
}
.budge_small{
	margin-left: 0px;
}
.right-stickey {
    right: unset;
    left: 50%;
    transform: translate(-50%, 0%);
    top: unset;
    bottom: 0;
    border-radius: 25px 25px 0 0;
    padding: 10px 10px 0;
    box-shadow: 0 0 8px 0px rgb(253 253 253 / 69%), 9px 5px 14px 0px rgb(0 0 0 / 15%);
}
.right-stickey li {
    display: inline-block;
    margin: 5px 0 5px;
    padding: 0px;
}
}
.services-box-main ul li span img:hover{
	filter: invert(100%) sepia(87%) saturate(1999%) hue-rotate(327deg) brightness(111%) contrast(97%);
}
.white-section-container, .dark-section-container {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1380px;
    padding: 0 80px;
    margin: 0 auto;
}
.container {
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto; }
	@media (min-width: 1025px) {
		.container {
			max-width: 940px; } }
	@media (min-width: 1440px) {
		.container {
			max-width: 1320px; } }

.container-fluid, .container-lg, .container-xl {
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto; }

@media (min-width: 1025px) {
	.container, .container-sm, .container-md, .container-lg {
		max-width: 940px; } }

@media (min-width: 1440px) {
	.container, .container-sm, .container-md, .container-lg, .container-xl {
		max-width: 1320px; } }
@media only screen and (max-width: 1024px) {
	.container, .container-fluid, .container-lg, .container-xl,
	.container-semi-fluid {
		padding: 0 30px; } }

.container-semi-fluid {
	padding: 0 50px; }

.main-container {
	margin: auto; }

@media (min-width: 1800px) {
	.container {
		max-width: 1450px; } }
.stage:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 52px;
    height: 2px;
    background: #f99118;
}
.stage {
    position: relative;
    margin-bottom: 24px;
    padding-left: 68px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #f99118;
}
@media only screen and (max-width : 480px) {
    #recaptcha_challenge_image{
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    }
    #recaptcha_response_field
    {
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    }
    .recaptchatable #recaptcha_image {
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    }
    .recaptchatable .recaptcha_r1_c1, 
    .recaptchatable .recaptcha_r3_c1, 
    .recaptchatable .recaptcha_r3_c2, 
    .recaptchatable .recaptcha_r7_c1, 
    .recaptchatable .recaptcha_r8_c1, 
    .recaptchatable .recaptcha_r3_c3, 
    .recaptchatable .recaptcha_r2_c1, 
    .recaptchatable .recaptcha_r4_c1, 
    .recaptchatable .recaptcha_r4_c2, 
    .recaptchatable .recaptcha_r4_c4, 
    .recaptchatable .recaptcha_image_cell {

    margin: 0 !important;
    width: 100% !important;
    background: none !important;
    height: auto !important;
    }

}
.rone > div {
    position: relative;
}
.mas-item {
    padding: 40px;
    margin: 10px 0;
    background: #000;
    position: relative;
    z-index: 2;
}
.mas-item:hover .bg-color {
    top: 10px;
    left: 10px;
}
.mas-item .bg-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fbeb38;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -2;
}
.mas-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -1;
}
.mas-item h5 {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.7;
}
.bg-color {
    background-color: #fbeb38 !important;
}
.testimonial-tab-list {
    border: none;
}
.testimonial-tab-list li a.active img {
    border-color: #fbeb38;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.testimonial-tab-list li a img {
    border: 2px solid #fff;
    -webkit-transform: scale(1);
    transform: scale(1);
    padding: 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.testimonial-tab-list .nav-link.active{
	background-color: transparent !important; 
     border-color: transparent !important;
}
.testimonial-tab-list .nav-link:hover {
    border-color: transparent !important;
}
.testimonial-tab-list .nav-link{
	padding-left: 0px !important;
	border: 0px solid transparent;
}
.testimonial-area-v1 .testimonial-slide-one {
  z-index: 1;
  position: relative;
}
.testimonial-area-v1 .testimonial-slide-one:after {
  /*position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\e99a";
  font-family: 'feathericons'!important;
  line-height: 1;
  font-size: 235px;
  color: #f0f0f0;
  z-index: -1;*/
}
.testimonial-area-v1 .testimonial-slide-one .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fbeb38;
  background-color: #000;
  font-size: 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.testimonial-area-v1 .testimonial-slide-one .slick-arrow:hover {
  background-color: #fbeb38;
  color: #fff;
}
.testimonial-area-v1 .testimonial-slide-one .slick-arrow.prev {
  left: -110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .testimonial-area-v1 .testimonial-slide-one .slick-arrow.prev {
    left: -70px;
  }
}
.testimonial-area-v1 .testimonial-slide-one .slick-arrow.next {
  right: -110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .testimonial-area-v1 .testimonial-slide-one .slick-arrow.next {
    right: -70px;
  }
}
@media (max-width: 991px) {
  .testimonial-area-v1 .testimonial-item .testimonial-thumb {
    margin-bottom: 30px;
  }
}
.testimonial-area-v1 .testimonial-item .testimonial-content {
  padding: 0 20px;
}
.testimonial-area-v1 .testimonial-item .testimonial-content .info {
 /* margin-bottom: 32px;*/
}
.testimonial-area-v1 .testimonial-item .testimonial-content .info ul.rating {
  margin-left: 15px;
}
.testimonial-area-v1 .testimonial-item .testimonial-content h3 {
  margin-bottom: 25px;
  padding-right: 10px;
  font-size: 30px;
  line-height: 56px;
}
@media (max-width: 991px) {
  .testimonial-area-v1 .testimonial-item .testimonial-content h3 {
    font-size: 20px;
    line-height: 34px;
    padding-right: 0px;
  }
}
.testimonial-area-v1 .testimonial-item .testimonial-content .title span.position {
  display: block;
  color: #fbeb38;
  font-size: 14px;
}
.slick-slide img {
    display: block;
    border-radius: 20px;
}
.rating li {
    display: inline-block;
}

.watch-now-btn i {
    width: 40px;
    height: 40px;
    line-height: 35px;
    font-size: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 2px solid #fbeb38;
    margin-right: 10px;
    border-radius: 50%;
    color: #fbeb38;
}
.watch-now-btn:hover {
    color: #f99118;
}
.watch-now-btn {
   font-size: 0.875rem;
    color: #fbeb38;
    text-align: center;
    background: #000000;
    padding: 10px;
    border-radius: 14px;
}
.watch-now-btn:hover i {
  background: #f99118;
    color: #fff;
}
@media (max-width: 768px) {
	.watch-now-btn{
		padding-left: 8px;
		padding: 5px;
	}
  .integration-logo-wrap {
    grid-gap: 12px;
  }
}
@media (max-width: 767px){
	.testimonial-area-v1 .testimonial-item .testimonial-content .info ul.rating {
    
    margin-top: 15px;
}
.testimonial-area-v1 .testimonial-item .testimonial-content .info ul.rating {
    margin-left: 2px;
}
.tabs .nav-pills a {
    color: #fff;
    font-weight: 600;
    padding: 9px 10px;
}
}

.integration-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.integration-list-wrap a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 16px;
  margin-left: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  -webkit-box-shadow: 7px 7px 10px 0 rgba(55, 65, 81, 0.12);
          box-shadow: 7px 7px 10px 0 rgba(55, 65, 81, 0.12);
}

.integration-list-wrap a {
  width: 65px;
}

.integration-list-wrap a img {
  padding: 10px;
}

.integration-list-wrap a.integration-1 {
  left: -120px;
  top: 0;
}

.integration-list-wrap a.integration-2 {
  top: -21px;
  right: -22px;
}

.integration-list-wrap a.integration-3 {
  left: -191px;
  margin-right: 16px;
  margin-left: 16px;
}

.integration-list-wrap a.integration-5 {
  left: -150px;
  bottom: -30px;
}

.integration-list-wrap a.integration-6 {
  left: 50px;
  bottom: 0;
}

.integration-list-wrap a.integration-7 {
  left: 120px;
  top: 0;
}

.integration-list-wrap a.integration-8 {
  top: -21px;
  right: 22px;
}

.integration-list-wrap a.integration-9 {
  left: 191px;
}

.integration-list-wrap a.integration-11 {
  left: 150px;
  bottom: -30px;
}

.integration-list-wrap a.integration-12 {
  left: -50px;
  bottom: 0;
}

.integration-badge {
  top: 8%;
  right: 8%;
  font-size: 12px;
  letter-spacing: 0.2px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.connected-app-single {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.connected-app-single:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 20px 20px 0 rgba(2, 19, 79, 0.09);
          box-shadow: 0 20px 20px 0 rgba(2, 19, 79, 0.09);
  background: #fff !important;
}

@media (min-width: 320px) and (max-width: 991px) {
  .integration-list-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .integration-list-wrap a {
    position: inherit;
    width: 45px;
  }
  .integration-list-wrap a img {
    padding: 10px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .integration-list-wrap a img {
    padding: 0;
  }
  .integration-list-wrap a {
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-right: 8px;
    margin-left: 8px;
  }
}
.integration-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 25px;
  justify-items: center;
}

.integration-list li {
  width: 100%;
}

.integration-list li .single-integration {
  -webkit-box-shadow: rgba(13, 21, 55, 0.06) 0 5px 50px;
          box-shadow: rgba(13, 21, 55, 0.06) 0 5px 50px;
  display: block;
  margin: auto;
  text-align: center;
  background: #000;
  padding: 20px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.integration-list li .single-integration img {
     width: 100%;
    height: auto;
    max-width: 70px;
    max-height: 70px;
    margin: auto;
    border-radius: 15px;
}

.integration-list li .single-integration:hover {
  -webkit-box-shadow:0 20px 20px 0 rgb(221 206 42 / 32%);
          box-shadow:0 20px 20px 0 rgb(221 206 42 / 32%);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.integration-logo {
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}


.integration-icon {
  width: 22px;
  height: 22px;
}
/*new*/
.hero-area {
  overflow: hidden;
}

.hero-area .hero-content {
  /*padding: 201px 0 130px;*/
}

.hero-area .hero-content .cs-btn_more:hover .cs-btn_more-title span {
  color: var(--green-color);
}

.hero-area .hero-shape {
  position: relative;
  background-repeat: no-repeat;
  height: 120px;
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 12px;
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

.hero-area .heading-1 {
  font-size: 95px;
}

.hero-area p.hero-para {
  padding-bottom: 60px;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.503);
}

.cb-tophead-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.radial1 {
  left: 0;
  top: 0;
  z-index: -1;
}

.radial2 {
  bottom: 0;
  left: 0;
  z-index: -1;
}

.radial3 {
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-content-floating-element2 {
  left: 0;
  bottom: 36%;
}

.hero-content-floating-element3 {
  right: 0;
  bottom: 112px;
}

.multi-star-element {
  -webkit-animation-name: multi-star-cs;
          animation-name: multi-star-cs;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

@-webkit-keyframes multi-star-cs {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}

@keyframes multi-star-cs {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}

.hero-rotation-bg {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 120px;
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 12px;
  animation: rotation 17s infinite linear;
  -webkit-animation: rotation 17s infinite linear;
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

.hero-shape-2 .hero-rotation-bg.hero-rotation-bg2 {
  animation: rotation2 17s infinite linear;
  animation-direction: reverse;
  -webkit-animation: rotation2 17s infinite linear;
}

@keyframes rotation2 {
  from {
    -webkit-transform: rotate(359deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

@-webkit-keyframes rotation2 {
  from {
    -webkit-transform: rotate(359deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

.shape-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-shape .shape-img-wrap img {
  position: absolute;
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

.hero-shape .shape-img-wrap img:first-child {
  opacity: 1;
  visibility: visible;
  width: 60px;
}

.hero-shape:hover .shape-img-wrap img:first-child {
  opacity: 0;
  visibility: hidden;
  width: 60px;
}

.hero-shape .shape-img-wrap img:last-child {
  opacity: 0;
  visibility: hidden;
  width: 60px;
}

.hero-shape:hover .shape-img-wrap img:last-child {
  opacity: 1;
  visibility: visible;
  width: 60px;
}

.cb-tophead .hero-area .heading-1 {
  font-size: 95px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.cb-tophead .cb-tophead-title {
  width: 100%;
}

.cb-tophead .heading-1 {
  width: 100%;
}
.heading-1 {
  color: #fff;
  font-size: 96px;
  font-family: 'Poppins', sans-serif;
  line-height: 119px;
  font-weight: 700;
  letter-spacing: -3px;
}

.video-area .video-poster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 55px;
}

.video-area .video-poster img {
  border-radius: 55px;
}

.video-area .popup-video {
  width: 144px;
  height: 144px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
}

.video-area .popup-video i {
  color: #fbeb38;
  font-size: 44px;
}

.video-area .popup-video::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-animation: linear infinite popup 1.5s;
          animation: linear infinite popup 1.5s;
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.6;
  }
  75% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes popup {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.8;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.6;
  }
  75% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

#video-sec {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video-area .popup-video {
    width: 144px;
    height: 144px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    position: relative;
}
.main-text {
    position: absolute;
    width: 300px;
    height: 50px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-150px, -25px);
    transform: translate(-150px, -25px);
}
@media only screen and (max-width: 991.98px){
.hero-area .heading-1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
}
@media only screen and (max-width: 767.98px){
.hero-title {
    position: relative;
    padding-top: 35px;
}
.hero-area .heading-1 {
    padding: 0 6px;
    line-height: 66px;
}
.hero-area .hero-shape {
    position: absolute;
    top: -86px;
    left: 96px;
}
}
@media only screen and (min-width: 300px) and (max-width: 479px){
.hero-title {
    flex-direction: column;
}
.hero-area .heading-1 {
    font-size: 35px;
    line-height: 46px;
    letter-spacing: 0px;
}
.hero-area .hero-shape {
    left: 11%;
}
.hero-area .hero-shape-2 {
    left: 50%;
}
.hero-area .hero-content {
    padding: 100px 0 50px;
}
img.hero-element1, .hero-content-floating-element2 img, .hero-content-floating-element3 img {
    height: 36px;
}
}
.bg_color {
    background: radial-gradient(29.7% 43.9% at 32.6% 48.3%, rgb(247 247 247) 0%, rgb(0 0 0 / 0%) 100%);
    width: 100%;
    height: 100vh;
    left: 20%;
    opacity: 0.2;
    pointer-events: none;
    position: fixed;
    top: 0;
    z-index: 0;
}

/* Modern Client Carousel Styles */
.client-carousel-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.client-carousel-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(90deg, rgba(47,131,255,0.4), rgba(111,218,68,0.4));
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  left: -100px;
  top: -100px;
  z-index: 0;
  animation: float 15s ease-in-out infinite alternate;
}

.client-carousel-section::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: linear-gradient(90deg, rgba(241,182,28,0.4), rgba(121,110,242,0.4));
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  right: -50px;
  bottom: -50px;
  z-index: 0;
  animation: float 18s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, 20px) rotate(5deg);
  }
  100% {
    transform: translate(-20px, 40px) rotate(-5deg);
  }
}

.client-carousel-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #2F83FF, #6FDA44, #F1B61C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.client-carousel {
  position: relative;
  padding: 20px 0;
  z-index: 2;
}

.client-carousel .slick-track {
  display: flex;
  align-items: center;
}

.client-carousel .slick-slide {
  margin: 0 15px;
  transition: all 0.5s ease;
  opacity: 0.7;
  transform: scale(0.95);
}

.client-carousel .slick-center {
  opacity: 1;
  transform: scale(1);
}

.client-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.client-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(45deg);
  z-index: 0;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
}

.client-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.client-item:hover::before {
  opacity: 1;
  top: -100%;
  left: -100%;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.client-item img {
  max-width: 100%;
  max-height: 80px;
  margin-bottom: 15px;
  transition: all 0.5s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 1;
}

.client-item:hover img {
  transform: scale(1.1);
}

.client-item h6 {
  margin-top: 15px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.client-item:hover h6 {
  background: linear-gradient(90deg, #2F83FF, #F1B61C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.client-carousel .slick-prev {
  left: -25px;
}

.client-carousel .slick-next {
  right: -25px;
}

.client-carousel .slick-arrow:hover {
  background: rgba(47, 131, 255, 0.2);
  border-color: rgba(47, 131, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.client-carousel .slick-arrow i {
  color: white;
  font-size: 20px;
}

.client-carousel .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.client-carousel .slick-dots li {
  margin: 0 5px;
}

.client-carousel .slick-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.client-carousel .slick-dots li.slick-active button {
  background: linear-gradient(90deg, #2F83FF, #F1B61C);
  width: 30px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(47, 131, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .client-carousel .slick-arrow {
    display: none !important;
  }
  
  .client-item {
    padding: 20px;
  }
}