@font-face {
	font-family: 'ClashGrotesk-Variable';
	src: url('../fonts/ClashGrotesk-Variable.woff2') format('woff2'),
		url('../fonts/ClashGrotesk-Variable.woff') format('woff'),
		url('../fonts/ClashGrotesk-Variable.ttf') format('truetype');
	font-weight: 200 700;
	font-display: swap;
	font-style: normal;
}

:root {
	--color-gray-900: #212529;
	--color-gray-850: #292E33;
	--color-gray-800: #343A40;
	--color-gray-700: #495057;
	--color-gray-600: #6C757D;
	--color-gray-500: #ADB5BD;
	--color-gray-400: #CED4DA;
	--color-gray-300: #DEE2E6;
	--color-gray-200: #E9ECEF;
	--color-gray-100: #F8F9FA;
	--color-white: #FFFFFF;
	--color-black: #000000;
	--primary-bg: linear-gradient(var(--color-gray-900));
	--uxreboot-display1-font-size: 72px;
	--uxreboot-display2-font-size: 64px;
	--uxreboot-h1-font-size: 42px;
	--uxreboot-h2-font-size: 32px;
	--uxreboot-h3-font-size: 24px;
	--uxreboot-text-extra-larg-font-size: 24px;
	--uxreboot-text-larg-font-size: 20px;
	--uxreboot-text-med-font-size: 18px;
	--uxreboot-text-small-font-size: 18px;

}

.display1 {
	font-size: 84px;
	font-weight: 500;
}

.display2 {
	font-size: 68px;
	font-weight: 600;
}

.display3 {
	font-size: 64px;
	font-weight: 600;
}

h1 {
	font-size: 42px;
	font-weight: 600;
}

h2 {
	font-size: 32px;
	font-weight: 600;
}

h3 {
	font-size: 24px;
	font-weight: 500;
}

.text-extra-larg {
	font-size: 24px;
	font-weight: 450;
}

.text-larg {
	font-size: 20px;
	font-weight: 400;
	color: var(--color-gray-700);
}

.text-med {
	font-size: 18px;
	font-weight: 450;
}

.text-small {
	font-size: 14px;
	font-weight: 400;
}

p {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	line-height: 1.5;
	margin: 0;
}

a {
	color: unset;
	text-decoration: none;
}

[data-gradient=true] {
	--primary-bg: conic-gradient(from var(--angle, 360deg) at 50% 200%, #006fdc 0deg, #ce007f 115.000001deg, #1878be 200.0000021457672deg, #6D28D9 250.00000858306885deg, #28619a 320.0000042915344deg, #006fdc 1turn);
}


.hero-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.title-wrapper {
	text-align: center;
	max-width: 1000px;
}

.title-wrapper p {
	max-width: 700px;
	color: var(--color-gray-900);
	display: inline-block;

}

.UXReboot-image {
	-webkit-filter: blur(30px);
	-moz-filter: blur(30px);
	-o-filter: blur(30px);
	-ms-filter: blur(30px);
	filter: blur(0px);
	opacity: 80%;
	width: 100%;
	height: 98vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}


.section-title {
	margin-bottom: 6rem;
    font-weight: 700;    
    max-width: 1000px;
    font-size: 92px;
    color: var(--color-gray-400);
}
section .testimonials .section-title{
	color: var(--color-gray-600);
}


.projects {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.project {
	text-align: left;
	margin-bottom: 12rem;
}

.project-image {
	height: auto;
	margin-bottom: 20px;
	max-height: 50rem;
	width: 100%;
	border-radius: 16px;
}

.project-title {
	margin-bottom: 5px;
}


.view-all {
	text-align: center;
}

.view-all-button {
	display: inline-block;
	font-size: 26px;
	padding: 10px 20px;
	text-decoration: none;
}

.arrow-icon {
	margin-left: 10px;
}



.grid {
	display: flex;
	flex-direction: column;
	flex-flow: row wrap;
}

.grid>[class*=column-] {
	display: block;
}

.first {
	order: -1;
}

.last {
	order: 12;
}

.align-top {
	align-items: start;
}

.align-center {
	align-items: center;
}

.align-bottom {
	align-items: end;
}

.img-container {	
	height: 500px;
	cursor: pointer;
	overflow: hidden;
	border-radius: 16px;
}

.img-container:hover .img-content-hover {
	display: block;
}

#work img {	
	height: 500px;
	-o-object-fit: contain;
	object-fit: contain;
	transform: scale(1);
	transition: all 0.3s ease-in-out;
}

#work img:hover {
	transform: scale(1.05);
}

.img-content-hover {
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	/* white-space: nowrap; */
	display: none;
	padding: 1.5rem;
	background: #fff;
	font-weight: 400;
	margin-top: 1.25rem;
	margin-left: -2rem;
	/* max-width: 20rem;
	max-height: 10rem; */
}

.img-content-hover p{
	max-width: 30rem;
	margin: 0;
}

.title {
	color: #2e2e2e;
	font-size: 1.5rem;
	font-weight: 700;
}

.category {
	font-size: 1rem;
	color: #787878;
}

.img-content {
	display: none;
}




.flex-end {
	align-self: end;
}

.flex-center {
	align-self: center;
}

.flex-baseline {
	align-self: baseline;
}

.section-margin-top {
	margin-top: 20rem;
}

.section-inner-padding {
	padding: 10rem 0;
}






.container2 {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex: 1;
}


.container_text {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.accordion {
	border-top: 1px solid var(--color-gray-500);
	display: flex;
	flex-direction: row;
	place-content: space-between;
	padding: 16px 0 20px 0;
}

.accordion [role="region"] {
	display: none;
}

.accordion h1,
.accordion p {
	margin: 0;
}

.accordion .region p {
	width: 50rem;
	padding-top: 4px;
}

.partners {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10rem;
	justify-content: center;
}

.partner {
	list-style: none;
}

.partner img {
	width: 100%;
	max-width: 20rem;
	height: auto;
}

.about-us {
	background: var(--color-gray-900);
	color: var(--color-gray-100);
}



.about-us .caption {
	max-width: 50%;
}

/* CSS */
.testimonials {
	display: flex;
	flex-direction: column;
	/* Arrange testimonials vertically */
	gap: 20px;
	/* Optional: Space between each testimonial */
}

.testimonials .items {
	display: flex;
	gap: 10rem;
	flex-direction: row;
}

.testimonial {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.testimonial-img {
	flex-shrink: 0;
}

.testimonial-content {
	flex-grow: 1;
}

.testimonial img {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	object-fit: cover;
}

.testimonial h3 {
	margin: 0;
}

.testimonial h3, .testimonial p.job-title {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-gray-600);
	font-family: 'ClashGrotesk-Variable', Helvetica, Arial, sans-serif;
}
.testimonial .text-med {
	margin-bottom: 1.5rem;
}

.footer-inner-padding {
	padding: 10rem 0;
}

footer .links-wrap{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
	flex-direction: row-reverse;
}
footer .contact {
	padding: 10rem 0 7rem 0;
}

.big-title {
	font-size: 92px;
	font-weight: 600;	
	max-width: 70%;
}


footer a.email {
	font-size: 32px;
	font-weight: 400;
	/* padding-left: 0.8rem; */
}

footer .content {
	display: flex;
	flex-direction: column;
	place-content: space-between;
	height: 100%;
}


/* Style the social links */
.social-links {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    text-transform: uppercase;
    font: 400 16px / 1.2 'ClashGrotesk-Variable', Helvetica, Arial, sans-serif;
}

#hero {
	height: 100vh;
	overflow: hidden;
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}

.layer {
	width: 100%;
	position: fixed;
	height: 100vh;
}

.layer-bg {
	z-index: -1;
}

.footer-parallax {
	height: 400px;
	overflow: hidden;
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}

.footer-layer {
	width: 100%;
	position: fixed;
	height: 400px;
	bottom: 0;
}

.dark-bg {
	background-color: var(--color-gray-900);
	color: var(--color-white);
}

.light-bg {
	background-color: var(--color-white);
	color: var(--color-gray-900);
}

.relative {
	position: relative;
	overflow: hidden;
}

#hero,
#work,
#services,
#partners,
#about-us,
#testimonials {
	z-index: 1;
}

#work {
	z-index: 2;
}

#services {
	z-index: 3;
}

#partners {
	z-index: 4;
}

#about-us {
	z-index: 5;
}

#testimonials {
	z-index: 6;
}

footer {
	z-index: -1;
}



.inner-content {
	padding:1rem;
  }
  .header-section {
	text-align:center;
	margin-bottom:1.5rem;
  }
  .feature {
	display:grid;
	flex-direction:row;
	grid-template-columns:repeat(2, 1fr);
	grid-column-gap:1rem;
	margin-bottom:2rem;
	align-items:center;
  }




.copy {
	text-align: left;
	font-size: 14px;
	color: #B0B0C1;
}

.copy p {
	margin: 0;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	/* black with 50% transparency */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	/* Ensure the overlay is on top of other content */
}

/* Styles for the "Coming soon!" message */
.overlay-content {
	text-align: center;
	color: white;
	font-size: 84px;
	font-weight: bold;
}

.overlay-content p {
	margin: 0;
}

@media(prefers-reduced-motion: no-preference) {
	@property --angle {
		inherits: true;
		initial-value: 180deg;
		syntax: '<angle>';
	}

	@-webkit-keyframes rotate {
		to {
			--angle: 540deg;
		}
	}

	@keyframes rotate {
		to {
			--angle: 540deg;
		}
	}

	[data-gradient=true][data-animate=true] {
		-webkit-animation: rotate 6s infinite linear;
		animation: rotate 6s infinite linear;
	}
}

/* .shape {
    transform-origin: center center; 
    transform-box: fill-box;
    animation: test 120s infinite 0s linear; 
	
  }
  

 @keyframes test {
	from {
		transform: rotate(0deg);
	  }
	  to {
		transform: rotate(360deg);
	  }
  }  */




.social-image__title {
	/* padding-top: 230px; */
	/* max-height: 375px; */
}

svg:not(:root) {
	overflow: visible;
}

/* Base Styles
********************************************************************* */
html {
	font-size: 62.5%;
}

body {
	font-family: 'ClashGrotesk-Variable', Helvetica, Arial, sans-serif;
	color: var(--color-gray-900);

}

/* Grid
********************************************************************* */
.container {
	width: 100%;
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.title-wrapper {
	text-align: center;
	max-width: 1000px;
}

.column,
.columns {
	width: 100%;
	float: left;
	box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
	.container {
		width: 85%;
		padding: 0;
	}

}

/* For devices larger than 550px */
@media (min-width: 550px) {

	.container {
		width: 80%;
	}

	.column,
	.columns {
		margin-left: 4%;
	}

	.column:first-child,
	.columns:first-child {
		margin-left: 0;
	}

	.one.column,
	.one.columns {
		width: 4.66666666667%;
	}

	.two.columns {
		width: 13.3333333333%;
	}

	.three.columns {
		width: 22%;
	}

	.four.columns {
		width: 30.6666666667%;
	}

	.five.columns {
		width: 39.3333333333%;
	}

	.six.columns {
		width: 48%;
	}

	.seven.columns {
		width: 56.6666666667%;
	}

	.eight.columns {
		width: 65.3333333333%;
	}

	.nine.columns {
		width: 74.0%;
	}

	.ten.columns {
		width: 82.6666666667%;
	}

	.eleven.columns {
		width: 91.3333333333%;
	}

	.twelve.columns {
		width: 100%;
		margin-left: 0;
	}

	.one-third.column {
		width: 30.6666666667%;
	}

	.two-thirds.column {
		width: 65.3333333333%;
	}

	.one-half.column {
		width: 48%;
	}

	/* Offsets */
	.offset-by-one.column,
	.offset-by-one.columns {
		margin-left: 8.66666666667%;
	}

	.offset-by-two.column,
	.offset-by-two.columns {
		margin-left: 17.3333333333%;
	}

	.offset-by-three.column,
	.offset-by-three.columns {
		margin-left: 26%;
	}

	.offset-by-four.column,
	.offset-by-four.columns {
		margin-left: 34.6666666667%;
	}

	.offset-by-five.column,
	.offset-by-five.columns {
		margin-left: 43.3333333333%;
	}

	.offset-by-six.column,
	.offset-by-six.columns {
		margin-left: 52%;
	}

	.offset-by-seven.column,
	.offset-by-seven.columns {
		margin-left: 60.6666666667%;
	}

	.offset-by-eight.column,
	.offset-by-eight.columns {
		margin-left: 69.3333333333%;
	}

	.offset-by-nine.column,
	.offset-by-nine.columns {
		margin-left: 78.0%;
	}

	.offset-by-ten.column,
	.offset-by-ten.columns {
		margin-left: 86.6666666667%;
	}

	.offset-by-eleven.column,
	.offset-by-eleven.columns {
		margin-left: 95.3333333333%;
	}

	.offset-by-one-third.column,
	.offset-by-one-third.columns {
		margin-left: 34.6666666667%;
	}

	.offset-by-two-thirds.column,
	.offset-by-two-thirds.columns {
		margin-left: 69.3333333333%;
	}

	.offset-by-one-half.column,
	.offset-by-one-half.columns {
		margin-left: 52%;
	}
}

/* Typography
********************************************************************* */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 2rem;
}

/* Larger than phablet */
@media (min-width: 550px) {}

/* Header Section
********************************************************************* */


header {
	width: 100%;
}

.title {
	max-width: 1130px;
	margin: 0 auto;
}

.title .smallsep {
	background: #fff;
	height: 2px;
	width: 70px;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}


.title p {
	max-width: 600px;
	line-height: 150%;
	color: #212529;
}

@media only screen and (max-width: 500px) {


	.text-extra-larg {
		font-size: 18px;
	}

	.accordion {
		flex-direction: column;
	}

	

	.accordion .region p {
		width: 100%;
	}

	.about-us-image img {
		width: 100%;
	}

	.testimonials .items {
		gap: 5rem;
		flex-direction: column;
	}

	footer a.email {
		font-size: 32px;
		font-weight: 400;
	}

	.partner img {
		max-width: 10rem;
	}

	.title-wrapper {
		text-align: left;
		max-width: 1000px;
		width: 80;
		margin: 0 auto;
	}

	.overlay-content {
		font-size: 54px;
	}


	.logo {
		max-width: 100px;
	}

	.wrapper .shifter {
		padding-top: 130px;
	}

	.download-btn {
		padding: 10px 26px;
		font-size: 16px;
		font-weight: 600;
		color: #ffffff;
		text-decoration: none;
		border-radius: 50px;
		display: inline-block;
		background: #212529;
		margin-top: 10px;
	}

	.contact-us {
		margin: 26px 0px 26px 10px;
		display: inline;
		color: #212529;
		font-size: 16px;

	}

	.title p {
		margin-top: 1.5rem;
		max-width: 100%;
		font-size: 14px;
	}

	.copy {
		font-size: 12px;
	}
}

.title .icon {
	color: #FFFFFF;
	font-size: 50px;
}
#nav-icon {
	width: 30px;
	height: 24px;
	display: none;
	position: relative;	
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
  }
  
  #nav-icon span{
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--color-gray-900);
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
  }

  #nav-icon span:nth-child(1) {
	top: 0px;
  }
  
  #nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
	top: 9px;
  }
  
  #nav-icon span:nth-child(4) {
	top: 18px;
  }
  
  #nav-icon.open span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
  }
  
  #nav-icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
  }
  
  #nav-icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
  }
  
  #nav-icon.open span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
  }
  

.main_nav {
	position: fixed;
	z-index: 999;
	width: 100%;
	padding: 14px 0px;
	background: #FFFFFF;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 1;

}

.main_nav #header-container {
	display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
}

@supports (display: grid) {
	.gallery .grid {
		grid-gap: 1rem;
	}
}



@media screen and (max-width: 1024px) {
	img:hover {
		transform: none;
	}

	.img-container {
		height: 100%;
	}

	.img-container:hover .img-content-hover {
		display: none;
	}

	.img-content {
		display: block;
		padding: 1rem 0;
	}
	.project{
		margin-bottom: 2rem;
	}
}

@media only screen and (max-width: 900px) {
	.main_nav {
		padding-top: 25px;
	}


	.logo {
		max-width: 100px;
	}

	.title p {
		margin-top: 1.5rem;
		max-width: 100%;
		font-size: 14px;
	}

	.title h1 {
		width: 90%;
		font-size: 40px;
		line-height: 1.1;
	}

	.download-btn {
		padding: 10px 26px;
		font-size: 16px;
		font-weight: 600;
		color: #ffffff;
		text-decoration: none;
		border-radius: 50px;
		display: inline-block;
		background: #212529;
		margin-top: 10px;
	}

	.contact-us {
		margin: 26px 0px 26px 10px;
		display: inline-block;
		color: #212529;
		font-size: 16px;
	}

	.copy {
		font-size: 12px;
	}

}


.sticky {
	background-color: var(--color-white);
	opacity: 0;
	position: fixed;
	top: 0;
}

nav {
	width: 100%;
	margin-top: 5px;
}

@media only screen and (max-width: 766px) {
	nav {
		width: 100%;
	}
}

nav ul {
	list-style: none;
	overflow: hidden;
	text-align: right;
	margin-bottom: 0px;
}

@media only screen and (max-width: 766px) {
	nav ul {
		padding-top: 60px;
		margin-bottom: 22px;
		text-align: left;
		width: 100%;
		margin-left: 24px;
	}
}

nav ul li {
	display: inline-block;
	margin-left: 35px;
	line-height: 1.5;
	letter-spacing: 1px;
}

@media only screen and (max-width: 766px) {
	nav ul li {
		width: 100%;
		padding: 6px 0;
		margin: 0;
	}

	nav ul li:first-child {
		margin-top: 70px;
	}
}

nav ul a {
	color: var(--color-gray-900);
	font-size: 20px;
	font-weight: 400;
	text-decoration: none;
}
.nav-container .contact{
	display: none;
}
.nav-container .wrapper{

}



nav ul a:hover {}


@media only screen and (max-width: 766px) {
	#nav-icon {
		display: block;
	}
	#main_nav{
		overflow: visible;
	}
	#nav-icon.open span{
		background: var(--color-white);
	}
	#main_nav.main_nav {
		
	}	
	#main_nav.open-nav {
		overflow: visible;
	}
	#main_nav.open-nav svg{
		filter: invert(100%) sepia(0%) saturate(7495%) hue-rotate(1deg) brightness(154%) contrast(116%);
	}
	#main_nav.open-nav nav {
		display: block;
	}
	#main_nav .nav-container {
		display: block;
    	position: absolute;
    top: -100vh;
    z-index: -1;
    width: 100%;
    height: 100vh;
    left: 0;
	color: var(--color-white);
    background: var(--color-gray-900);
	transition: .2s ease-in-out;
	}
	#main_nav.open-nav .nav-container {
		top: 0;
	}
	#main_nav .nav-container .contact{
		position: absolute;
		top: 80vh;
	}
	#main_nav .nav-container .contact p{
		margin: 0;
    font-size: 20px;
    color: gray;
	}
	#main_nav .nav-container .contact a{		
		font-size: 24px;
		font-weight: 400;
	}
	.section-title{
		font-size: 54px;
		margin-bottom: 4rem;
	}
	.big-title {
		font-size: 52px;
		font-weight: 600;		
		max-width: 100%;
	}
	.project {
		margin: 0;
	}
	.project-image {
		margin-bottom: 0px;
	}
	.view-all {
		margin-top: 5rem;
	}
	#hero {
		height: 70vh;
	}
	.layer {
		height: 70vh;
	}
	.UXReboot-image{
		height: 70vh;
	}
	.display2{
		font-size: 46px;
		font-weight: 700;
		text-align: left;
		padding-top: 100px;
	}
	.section-inner-padding{
		padding: 5rem 0 5rem 0;
	}
	#work.section-inner-padding {
		padding: 2rem 0 10rem 0;
	}
	.project-title {
		font-size: 28px;
		margin-bottom: 2px;
	}
	.project-brief {
		font-size: 16px;
		font-weight: 500;
		color: var(--color-gray-500);
	}
	.text-larg {
		font-size: 16px;		
	}

	.text-med {
		font-size: 16px;
	}
	#work img{
		height: auto;
	}
	nav ul a {
		color: var(--color-white);
		font-size: 38px;
		font-weight: 700;
		text-decoration: none;
	}
	.nav-container .contact{
		display: block;
	}
	.nav-container .wrapper{
		width: 80%;
    display: block;
    margin: 0 auto;
	}
	.testimonials .items{
		flex-direction: column;
	}
	footer .links-wrap{
		justify-content: center;
		gap: 10px;
	}
	.social-links{
		font-size: 14px;
		gap: 16px;
	}
	
	/* mobile */

}



.scroll-down {
	position: absolute;
	left: 50%;
	bottom: 5vh;
	display: block;
	text-align: center;
	font-size: 20px;
	z-index: 100;
	text-decoration: none;
	text-shadow: 0;
	width: 13px;
	height: 13px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	z-index: 9;
	-webkit-transform: translate(-50%, 0%) rotate(45deg);
	-moz-transform: translate(-50%, 0%) rotate(45deg);
	transform: translate(-50%, 0%) rotate(45deg);
	-webkit-animation: fade_move_down 2s ease-in-out infinite;
	-moz-animation: fade_move_down 2s ease-in-out infinite;
	animation: fade_move_down 2s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
	0% {
		-webkit-transform: translate(0, -10px) rotate(45deg);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		-webkit-transform: translate(0, 10px) rotate(45deg);
		opacity: 0;
	}
}

@-moz-keyframes fade_move_down {
	0% {
		-moz-transform: translate(0, -10px) rotate(45deg);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		-moz-transform: translate(0, 10px) rotate(45deg);
		opacity: 0;
	}
}

@keyframes fade_move_down {
	0% {
		transform: translate(0, -10px) rotate(45deg);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translate(0, 10px) rotate(45deg);
		opacity: 0;
	}
}

/* About Section
********************************************************************* */

#about {
	padding: 100px 0 50px 0;
	--s: 4;
}

/* Team Section
********************************************************************* */
#team {
	padding: 50px 0 100px 0;
}

#team .icon {
	font-size: 26px;
}

/* Skills Section
********************************************************************* */
#skills {
	padding: 100px 0 100px 0;
	background-color: #F5F5F5;
}

.progressBar {
	margin-bottom: 26px;
	margin-bottom: 1.66em;
}

.progressBar h4 {
	font-size: 16px;
	text-transform: none;
	margin-bottom: 7px;
	margin-bottom: .33em;
}

.progressBarContainer {
	width: 100%;
	height: 8px;
	background: #E1E1E1;
	overflow: hidden;
}

.progressBarValue {
	height: 8px;
	float: left;
	background: #e55d87;
	/* Old browsers */
	background: -moz-linear-gradient(-45deg, #e55d87 0%, #5fc3e4 100%);
	background: -webkit-linear-gradient(-45deg, #e55d87 0%, #5fc3e4 100%);
	background: linear-gradient(135deg, #e55d87 0%, #5fc3e4 100%);
}

.value-00 {
	width: 0;
}

.value-10 {
	width: 10%;
}

.value-20 {
	width: 20%;
}

.value-30 {
	width: 30%;
}

.value-40 {
	width: 40%;
}

.value-50 {
	width: 50%;
}

.value-60 {
	width: 60%;
}

.value-70 {
	width: 70%;
}

.value-80 {
	width: 80%;
}

.value-90 {
	width: 90%;
}

.value-100 {
	width: 100%;
}

/* Portfolio Section
********************************************************************* */
#portfolio {
	padding: 100px 0 100px 0;
}

.image {
	background-color: #5a5a5a;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	transition: .5s;
}

.image:hover {
	opacity: 0.6;
	transition: .3s;
	background-image: url(../images/hoverbg.png);
	background-repeat: no-repeat;
	background-position: center;
}

/* Testimonial Section
********************************************************************* */
#testimonial {
	background-color: #F5F5F5;
	padding: 100px 0 100px 0;
}

.quoteLoop {
	height: auto;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.quote {
	margin: 10px 30px;
	height: inherit;
	top: 0px;
	display: none;
	text-align: center;
}


input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	height: 38px;
	padding: 6px 10px;
	/* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #F5F5F5;
	border: none;
	box-shadow: none;
	box-sizing: border-box;
	border-radius: 0;
	outline: none;
}

textarea {
	min-height: 250px;
}

input[type="submit"] {
	display: inline-block;
	height: 38px;
	padding: 0 30px;
	color: #fff;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background: #5fc3e4;
	border-radius: 0px;
	border: 0;
	cursor: pointer;
	box-sizing: border-box;
}

input[type="submit"]:hover {
	background: #e55d87;
	text-decoration: none;
}

.socialIcons {
	font-size: 34px;
	color: rgba(255, 255, 255, 0.7);
}

/* Lists
********************************************************************* */
ul{
	list-style: none;
}
ol {
	list-style: decimal inside;
}

ol,
ul {
	padding-left: 0;
	margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
	margin: 1.5rem 0 1.5rem 3rem;
	font-size: 90%;
}

/* Spacing
********************************************************************* */
button,
.button {
	margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
	margin-bottom: 1.5rem;
}


/* Utilities
********************************************************************* */
.u-full-width {
	width: 100%;
	box-sizing: border-box;
}

.u-max-full-width {
	max-width: 100%;
	box-sizing: border-box;
}

.u-pull-right {
	float: right;
}

.u-pull-left {
	float: left;
}

/* Clearing
********************************************************************* */
.container:after,
.row:after,
.u-cf {
	content: "";
	display: table;
	clear: both;
}

/* Misc
********************************************************************* */

.icon {
	padding-right: 10px;
	color: #e55d87;
}

.block {
	width: 70px;
	height: 2px;
	background: #e55d87;
	/* Old browsers */
	background: -moz-linear-gradient(-45deg, #e55d87 0%, #5fc3e4 100%);
	background: -webkit-linear-gradient(-45deg, #e55d87 0%, #5fc3e4 100%);
	background: linear-gradient(135deg, #e55d87 0%, #5fc3e4 100%);
	margin-bottom: 50px;
}
figure{
	margin: 0;
}


.loader-wrapper{	
	position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background: #fff;
}
