* {
	box-sizing: border-box;
}

:root {
	--contrast: #000000;
	--bgColor: #f6f6f6;
	--fontColor: #000000;
}

html,
body {
	padding: 0;
	margin: 0;
	overflow-x: hidden !important;
	transition: background-color 0.5s;
	transition: background-image 0.5s;
}

#main {
	min-height: 100vh; /* Fallback for browsers that do not support Custom Properties */
	min-height: calc(var(--vh, 1vh) * 100);
	/* background-color: var(--bgColor); */
	border-bottom: solid 2px #eaeaea;
	font-family: 'Poppins', sans-serif !important;
	font-weight: 900 !important;
	transition: background-color 0.5s;
	transition: background-image 0.5s;
}

.switch {
	display: flex;
	border-radius: 50px;
	width: 3rem;
	padding: 0.3rem;
	background-color: rgba(255, 255, 255, 0.397);
	transition: background-color 0.2s;
	cursor: pointer;
	z-index: 9999999;
	float: right;
}

.btn-toggle {
	width: 20px;
	height: 20px;
	border-radius: 20px;
	background-color: white;
	transition: transform 0.1s;
}

/* Dark Theme */

.dark-theme #main {
	/* background-color: #ffc300 !important; */
	/* border-bottom: 2px solid #dcdcdc; */
	background-image: url('/assets/images/marble.png') !important;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: background-image 0.5s;
	transition: background-color 0.5s;
}

.dark-theme footer {
	/* background-color: #ffc300 !important; */
	background-image: url('/assets/images/marble.png') !important;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: background-image 0.5s;
	transition: background-color 0.5s;
}

.dark-theme .switch {
	background-color: #ffc300;
}

.dark-theme .btn-toggle {
	transform: translateX(17px);
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 900 !important;
}

.box {
	padding: 0px 10px;
	font-size: 60px;
	font-weight: 900 !important;
	font-family: 'Poppins', sans-serif;
	color: var(--fontColor);
}

.animate-slideup {
	margin-right: 16px;
	transform: translateY(200px) rotate(15deg);
	-webkit-transform: translateY(200px) rotate(15deg);
	-moz-transform: translateY(200px) rotate(15deg);
	animation: slideup 1000ms cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
	transform-origin: top center;
	font-family: 'Poppins', sans-serif !important;
	font-weight: bold;
}

@keyframes slideup {
	0% {
		transform: translateY(200px) rotate(20deg);
		-webkit-transform: translateY(200px) rotate(20deg);
		-moz-transform: translateY(200px) rotate(20deg);
	}
	100% {
		transform: translateY(0px) rotate(0deg);
		-webkit-transform: translateY(0px) rotate(0deg);
		-moz-transform: translateY(0px) rotate(0deg);
	}
}

.fs {
	height: 12px;
	width: 12px;
	background-color: #ffc300;
	margin-left: -16px;
	margin-top: 28px;
	opacity: 0;
	animation: rotate-fs 1800ms cubic-bezier(0.5, 1, 0.89, 1) forwards;
	transform-origin: center;
}

@keyframes rotate-fs {
	0% {
		transform: rotate(0deg) scale(0);
		-webkit-transform: rotate(0deg) scale(0);
		-moz-transform: rotate(0deg) scale(0);
		opacity: 0;
	}
	30% {
		opacity: 1;
		transform: rotate(0deg) scale(1);
		-webkit-transform: rotate(0deg) scale(1);
		-moz-transform: rotate(0deg) scale(1);
	}
	100% {
		transform: rotate(720deg);
		-webkit-transform: rotate(720deg);
		-moz-transform: rotate(720deg);
		opacity: 1;
	}
}

.curtain {
	position: fixed;
	background-color: var(--contrast);
	width: 100vw;
	min-height: 100vh;
	top: 0px;
	left: 0px;
}

.progressBar {
	height: 2px;
	width: 2px;
	background-color: var(--bgColor);
}

.progressGrow-animation {
	animation: grow 2000ms cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
}

@keyframes grow {
	0% {
		width: 0px;
	}
	50% {
		width: calc(100vw);
		height: 2px;
	}
	100% {
		width: calc(100vw);
		height: calc(100vh);
	}
}

@media (max-width: 800px) {
	.flex {
		flex-wrap: wrap;
	}
	.animate {
		margin-right: 4px;
	}
	.fs {
		height: 12px;
		width: 12px;
		margin-top: 30px;
	}
}

@media (max-width: 520px) {
	.box {
		font-size: 40px;
	}
	.main {
		border: 5px solid #fc3c3c;
	}
	.animate-slideup {
		margin-right: 6px;
	}
	.fs {
		height: 8px;
		width: 8px;
		margin-left: -4px;
		margin-top: 20px;
	}
}

/* Menu */

body {
	background-color: #ffffff;
}

#menu {
	z-index: 5;
}

#menu-bar {
	width: 45px;
	height: 40px;
	margin: 30px 20px 0 115px;
	cursor: pointer;
}

.bar {
	height: 5px;
	width: 100%;
	background-color: #000000;
	display: block;
	border-radius: 5px;
	transition: 0.3s ease;
}

#bar1 {
	transform: translateY(-4px);
}

#bar3 {
	transform: translateY(4px);
}

.nav {
	transition: 0.3s ease;
	display: none;
}

.nav li {
	list-style: none;
	padding: 10px 0;
	text-align: right;
}

.nav li a {
	color: white;
	font-size: 16px;
	text-decoration: none;
	font-family: 'Poppins';
}

.nav li a:hover {
	color: #ffc300;
	transition: all 0.8s;
}

.is-active {
	color: #ffc300 !important;
	transition: all 0.8s;
}

.menu-bg,
#menu {
	top: 0;
	right: 0;
	position: fixed;
}

.menu-bg {
	z-index: 1;
	width: 0;
	height: 0;
	margin: 30px 0 20px 20px;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
	border-radius: 50%;
	transition: 0.3s ease;
	transform: translate(60%, -26%);
	-webkit-transform: translate(60%, -26%);
	-moz-transform: translate(60%, -26%);
	box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.4);
}

.change {
	display: block;
}

.change .bar {
	background-color: white;
}

.change #bar1 {
	transform: translateY(4px) rotateZ(-45deg);
}

.change #bar2 {
	opacity: 0;
}

.change #bar3 {
	transform: translateY(-6px) rotateZ(45deg);
}

.change-bg {
	width: 520px;
	height: 460px;
	transform: translate(60%, -26%);
	-webkit-transform: translate(60%, -26%);
	-moz-transform: translate(60%, -26%);
}

/* Additional Styles */

.logo {
	height: 90px;
	margin-bottom: -80px;
	width: auto;
	position: relative;
	bottom: 5px;
}

.about {
	text-align: center;
	height: 100%;
	width: 100%;
	margin-top: 100px;
}

.work,
.contact,
.testimonials,
.contact2 {
	text-align: center;
	height: 100%;
	width: 100%;
	margin-top: 100px;
	margin-bottom: 100px;
}

.testimonials {
	/* background-image: url("/assets/images/bg2-img.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover; */
	padding-top: 80px;
	padding-bottom: 80px;
	border-top: solid 2px #eaeaea;
	border-bottom: solid 2px #eaeaea;
}

.me2 {
	width: 500px;
	height: auto;
	position: absolute;
	bottom: 2px;
}

.curtain {
	z-index: 100000000;
}

.animate-slideup {
	z-index: 3;
}

.hidden {
	display: none;
}

.form-btn {
	float: right;
}

.section-title {
	font-weight: bold;
	font-size: 3rem;
	letter-spacing: 1px;
	font-family: 'Poppins', sans-serif !important;
	font-weight: 700 !important;
}

.flexbox {
	display: flex;
	margin-top: 50px;
	margin-bottom: 30px;
	text-align: center;
}

.flexbox div {
	flex: 1;
	margin: 8px;
}

.flexbox div img {
	width: 100%;
	height: 100px;
	width: auto;
}

.icon-text {
	font-weight: 600;
	letter-spacing: 2px;
}

.container {
	text-align: left;
}

.diff-text {
	font-weight: bold;
	font-size: 40px;
	background: linear-gradient(to top, #ffc300 40%, transparent 40%);
	color: #212529;
}

.intro-text,
.intro-text2 {
	font-size: 25px;
}

.chow {
	height: 32px;
	width: auto;
	color: #7d7d80;
}

.intro-text2 {
	margin-top: 60px;
	color: #7d7d80;
}

.intro-text {
	color: #7d7d80;
}

.footer h3 {
	text-align: center;
	height: 30vh;
}

.text-btn {
	font-size: 25px;
	font-weight: bold;
	text-decoration: none;
	color: rgb(33, 37, 41);
	background-image: linear-gradient(to top, #ffc300 40%, transparent 40%);
	background-repeat: no-repeat;
	background-size: 0 100%;
	transition: background-size 0.4s ease;
}

.text-btn:hover {
	background-size: 100% 100%;
	color: #000000;
	text-decoration: none;
}

.sub-header {
	font-size: 25px;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: 20px;
	margin-right: 20px;
	color: #7d7d80;
}

.resume {
	float: right;
}

/* effects */

.boxy:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	opacity: 0;
	transition: all 0.5s ease 0s;
}
.boxy:hover:before {
	opacity: 1;
}
.boxy {
	text-align: center;
	position: relative;
	overflow: hidden;
	color: #fff;
	margin-top: 30px;
	border-radius: 4px;
}
.boxy:after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 170%;
	top: 0;
	transform: skewX(45deg);
	transition: all 1s ease 0s;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: 1;
}
.boxy:hover:after {
	left: -170%;
	top: 0;
}
.boxy img {
	width: 100%;
	height: auto;
}
.boxy .box-content {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	transition: all 0.5s ease 0s;
}
.boxy:hover .box-content {
	bottom: 35%;
}
.boxy .box-content .name {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.boxy .box-content .post {
	display: block;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 25px;
	margin-left: 20px;
	margin-right: 20px;
}

.work-sub {
	margin-top: 80px;
	letter-spacing: 1px;
	font-family: 'Poppins', sans-serif !important;
	font-weight: 700 !important;
}

/* Button Hover */

.grid-container {
	display: grid;
}

.grid-child a {
	font-size: 18px;
	padding: 10px 20px 10px 20px;
}

.solidReveal {
	border: 2px solid #ffc300;
	background-color: #ffc300;
	color: black !important;
	border-radius: 4px;
}

.solidReveal span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

.solidReveal span:after {
	content: '\21E8';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

.solidReveal:hover span {
	padding-right: 25px;
}

.solidReveal:hover span:after {
	opacity: 1;
	right: 0;
}

.underline {
	border-bottom: 5px solid rgb(33, 37, 41);
	color: white;
	margin-left: 47%;
	margin-right: 47%;
}

.testimonial {
	max-width: 800px;
	margin: 0 auto !important;
	text-align: center;
	margin-top: 80px !important;
}
.testimonial blockquote {
	font-size: 1.5rem;
	font-style: italic;
}
.testimonial figure img {
	max-width: 100px;
	margin: 0 auto;
	border-radius: 50%;
}

.testimonial-wrap .owl-nav {
	display: none;
}

.slide-one-item .owl-dots {
	text-align: center;
}
.slide-one-item .owl-dots .owl-dot {
	display: inline-block;
	margin: 4px;
}
.slide-one-item .owl-dots .owl-dot span {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #888888;
}
.slide-one-item .owl-dots .owl-dot.active span {
	background: #ffc300;
}

.fa-user-circle {
	font-size: 48px;
	margin-right: 20px;
	margin-bottom: 15px;
}

.send-icn {
	fill: black;
	margin-top: 30px;
}

.send-icn:hover {
	fill: #333;
	cursor: pointer;
	transition: all 0.4s ease;
}

button {
	background: none;
	border: none;
	outline: none;
	margin: 2vmax;
	outline: 0 !important;
}

button:focus {
	outline: 0 !important;
}

button:hover small {
	opacity: 1;
}

small {
	display: block;
	opacity: 0;
}

.form-control {
	border-radius: 4px !important;
	border: 3px solid black !important;
}

.form-control:focus {
	border-color: #ffc300 !important;
	box-shadow: 0 5px 5px 0 rgba(233, 240, 243, 0.5), 0 0 0 1px #e6ecf8 !important;
}

.contact-form {
	margin-top: 60px;
}

/* Media Queries */

@media (max-width: 520px) {
	.work-sub {
		font-size: 1.3rem !important;
	}

	.sub-header {
		text-align: left;
	}

	.change-bg {
		width: 450px;
		height: 420px;
	}

	.nav li a {
		font-size: 15px;
	}

	.logo {
		height: 150px !important;
	}

	.me2 {
		width: 300px !important;
		height: auto;
	}

	#menu-bar {
		height: 30px;
		width: 35px;
	}

	.section-title {
		font-size: 2rem !important;
	}

	.about {
		margin-top: 80px !important;
	}

	.flexbox div img {
		width: 100%;
		height: 50px !important;
		width: auto;
	}

	.icon-text {
		font-weight: 600;
		letter-spacing: 2px;
		font-size: 10px;
	}

	.flexbox {
		margin-top: 25px !important;
		margin-bottom: 10px !important;
	}

	.intro-text,
	.intro-text2 {
		font-size: 20px !important;
	}

	.intro-text2 {
		margin-top: 0 !important;
	}

	.diff-text {
		font-size: 30px !important;
	}

	.about {
		margin-top: 100px !important;
	}

	.sub-header {
		font-size: 20px !important;
	}

	.text-btn {
		font-size: 20px !important;
	}

	.underline {
		margin-left: 41% !important;
		margin-right: 41% !important;
	}

	.testimonial blockquote {
		font-size: 18px !important;
	}

	.contact-form {
		margin-top: 20px !important;
	}
	.foot {
		font-family: 'Poppins', sans-serif !important;
		letter-spacing: 1px;
		font-size: 18px !important;
		font-weight: 700 !important;
	}

	footer {
		padding-bottom: 10% !important;
	}

	.hover-fx {
		font-size: 20px !important;
		width: 50px !important;
		height: 50px !important;
		line-height: 52px !important;
	}

	.wrap {
		margin-top: 30px !important;
	}

	.copyright {
		margin-top: 20px !important;
		font-size: 12px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.fa-coffee,
	.fa-js {
		font-size: 20px !important;
	}

	.fa-chevron-up {
		display: none !important;
	}

	.boxy:hover .box-content {
		bottom: 30% !important;
	}

	.logo {
		height: 80px !important;
		width: auto !important;
	}
}

@media (max-width: 768px) {
	.nav li a {
		font-size: 15px;
	}

	.sub-header {
		text-align: left;
	}

	#menu-bar {
		height: 30px;
		width: 35px;
	}

	.flexbox {
		margin-top: 25px !important;
	}

	.underline {
		margin-left: 41% !important;
		margin-right: 41% !important;
	}

	.fa-chevron-up {
		display: none !important;
	}
}

footer {
	background: #f6f6f6;
	padding-bottom: 2%;
	width: 100%;
	height: 100%;
	border-top: solid 2px #eaeaea;
	text-align: center;
	transition: background-color 0.2s;
}

.foot {
	font-family: 'Poppins', sans-serif !important;
	letter-spacing: 1px;
	font-size: 25px;
	font-weight: 700 !important;
}

.hover-fx {
	font-size: 25px;
	display: inline-block;
	cursor: pointer;
	margin: 15px;
	width: 60px;
	height: 60px;
	line-height: 62px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	color: #000;
	background-color: rgba(0, 0, 0, 0.2);
	transition: 300ms;
}

.hover-fx:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	box-sizing: content-box;
	box-shadow: 0 0 0 3px #000;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 300ms;
}

.hover-fx:hover {
	background-color: #000;
	color: #fff !important;
}

.hover-fx:hover:after {
	opacity: 1;
	transform: scale(1.15);
}

.wrap {
	margin-top: 50px;
}

.fa-coffee,
.fa-js {
	font-size: 25px;
	margin: 2px;
}

.copyright {
	margin-top: 30px;
}

.fa-chevron-up {
	float: right;
	position: relative;
	margin-right: 5%;
	bottom: 60px;
	font-size: 50px;
	color: black;
	font-size: 30px;
	border: 5px solid #000;
	padding: 10px;
}

@keyframes bounce {
	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}
.fa-chevron-up {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.fa-chevron-up:hover {
	cursor: pointer;
	animation-name: bounce;
	-moz-animation-name: bounce;
}

/* -------------------------- ZENFIT STYLES ------------------------------ */

.logo {
	height: 100px;
	width: auto;
	margin-bottom: 50px;
	margin-top: 80px;
}

.back-btn {
	font-size: 20px !important;
	font-weight: 500;
	cursor: pointer;
	/* background-color: #111; */
	color: #000;
	padding: 10px 15px !important;
	position: relative;
	top: -75px;
	margin-left: 15px;
	border: 5px solid #000;
	transition: all 0.5s;
}

.back-btn:hover {
	background-color: #000;
	transition: all 0.5s;
	text-decoration: none;
	color: #fff;
}

.fa-arrow-left {
	margin-right: 8px;
}

/* Zenfit Menu */

#menu2 {
	z-index: 5;
}

#menu-bar2 {
	width: 45px;
	height: 40px;
	margin: 30px 20px 0 80px;
	cursor: pointer;
}

.bar {
	height: 5px;
	width: 100%;
	background-color: #000000;
	display: block;
	border-radius: 5px;
	transition: 0.3s ease;
}

#bar1 {
	transform: translateY(-4px);
}

#bar3 {
	transform: translateY(4px);
}

.nav {
	transition: 0.3s ease;
	display: none;
}

.nav li {
	list-style: none;
	padding: 10px 0;
	text-align: right;
}

.nav li a {
	color: white;
	font-size: 16px;
	text-decoration: none;
}

.nav li a:hover {
	color: #ffc300;
	transition: all 0.8s;
}

.is-active2 {
	color: #ffc300 !important;
	transition: all 0.8s;
}

.menu-bg,
#menu2 {
	top: 0;
	right: 0;
	position: fixed;
}

.menu-bg {
	z-index: 2;
	width: 0;
	height: 0;
	margin: 30px 0 20px 20px;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
	border-radius: 50%;
	transition: 0.3s ease;
	transform: translate(60%, -26%);
	-webkit-transform: translate(60%, -26%);
	-moz-transform: translate(60%, -26%);
	box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.4);
}

.change {
	display: block;
}

.change .bar {
	background-color: white;
}

.change #bar1 {
	transform: translateY(4px) rotateZ(-45deg);
}

.change #bar2 {
	opacity: 0;
}

.change #bar3 {
	transform: translateY(-6px) rotateZ(45deg);
}

.change-bg {
	width: 520px;
	height: 460px;
	transform: translate(60%, -26%);
	-webkit-transform: translate(60%, -26%);
	-moz-transform: translate(60%, -26%);
}

.zenfit-logo {
	width: 400px;
	height: auto;
	margin-top: 10%;
}

#home-section {
	height: 100%;
	width: 100%;
	margin-top: 100px;
	margin-bottom: 100px;
}

.zenfit-sub {
	margin-top: 30px;
}

.proto-btn {
	font-size: 20px !important;
	cursor: pointer;
	background-color: #397a8e;
	color: white !important;
	padding: 15px 20px !important;
	border: none;
	border-radius: 2px;
	position: relative;
	top: 30px;
	box-shadow: 0 5px 5px 0 rgba(233, 240, 243, 0.5), 0 0 0 1px #e6ecf8;
	transition: all 0.5s;
}

.proto-btn:hover {
	background-color: #29515e;
	transition: all 0.5s;
	text-decoration: none;
}

.mock {
	height: 560px;
	width: auto;
}

.discover,
.design,
.define,
.develop,
.deliver {
	text-align: center;
	height: 100%;
	width: 100%;
	margin-top: 100px;
	margin-bottom: 100px;
}

.design-process {
	width: 100%;
	height: auto;
}

.typography-image {
	width: 100%;
	height: auto;
}

.zoom {
	width: auto;
}

@media (max-width: 520px) {
	.zenfit-logo {
		width: 60% !important;
		height: auto;
		margin-top: 30% !important;
	}

	.mock {
		height: auto;
		margin-top: 100px;
	}

	#home-section {
		margin-top: 0;
		margin-bottom: 100px;
	}

	.contact .underline {
		margin-bottom: 20% !important;
	}

	.modal-btn,
	.modal-btn2 {
		font-size: 25px !important;
	}

	.form-title {
		margin-bottom: 10px !important;
	}

	.text-style1,
	.text-style2 {
		margin-bottom: -50px;
	}

	.zenfit-sub {
		font-size: 22px;
	}

	#discover-section {
		margin-top: 0 !important;
	}

	.market-research {
		margin-top: 100px !important;
	}

	.comp-image {
		margin-top: 50px !important;
	}

	.insights {
		margin-top: 80px !important;
	}

	.secondary {
		font-size: 1.3rem !important;
	}

	.icon-container,
	.define {
		margin-top: 80px !important;
	}

	.persona {
		margin-top: 80px !important;
	}

	.back-btn {
		position: relative;
		top: 25px !important;
	}

	.user-stories {
		margin-top: 50px !important;
	}

	.flow-text {
		margin-top: 80px !important;
	}

	.tiles {
		margin-top: 30px;
	}

	.colour-block {
		padding: 0 !important;
		margin-top: 50px !important;
		margin-bottom: 50px !important;
	}

	.colours {
		margin-top: 80px !important;
	}

	.logo-dev {
		padding: 0 !important;
		margin-top: 0 !important;
	}

	.wordmark {
		margin-top: 100px !important;
	}

	.colour-inject {
		padding: 0 !important;
		margin-top: 50px !important;
	}

	.inject {
		margin-top: 50px !important;
	}

	.try {
		margin-top: 100px !important;
	}

	.icon-sub {
		padding: 30px 0 0 0 !important;
	}

	.typography-image {
		margin-top: 80px !important;
	}

	.persona-image,
	.stories {
		margin-top: 50px !important;
	}

	.box-color > .square {
		font-size: 1rem !important;
		padding-left: 5px !important;
		padding-top: 18px !important;
	}
	.box-color > .square2 {
		font-size: 0.7rem !important;
		padding-left: 5px !important;
	}

	.box-color > img {
		height: calc(100% - 12vh) !important;
	}

	.process-text {
		margin-top: 50px !important;
	}

	.containers {
		height: 40vh !important;
	}
}

@media (max-width: 768px) {
	.mock {
		height: auto;
		width: 100%;
		margin-top: 100px;
	}

	.zenfit-logo {
		width: 100%;
		height: auto;
		margin-top: 50%;
	}
	.zenfit-sub {
		font-size: 22px;
	}

	.market-research {
		margin-top: 100px !important;
	}

	.comp-image {
		margin-top: 50px !important;
	}

	.tiles {
		margin-top: 30px;
	}

	.logo-dev {
		padding: 0 !important;
		margin-top: 0 !important;
	}

	.wordmark {
		margin-top: 100px !important;
	}

	.colour-block {
		padding: 0 !important;
		margin-top: 50px !important;
		margin-bottom: 50px !important;
	}

	.colour-inject {
		padding: 0 !important;
		margin-top: 50px !important;
	}

	.inject {
		margin-top: 50px !important;
	}

	.try {
		margin-top: 100px !important;
	}

	.icon-sub {
		padding: 30px 0 0 0 !important;
	}

	.typography-image {
		margin-top: 80px !important;
	}

	.persona-image,
	.stories {
		margin-top: 50px !important;
	}
}

/* Modal Box */

#hidden-content-2 {
	/* Custom styling */
	max-width: 550px;
	padding: 10px 30px 30px 30px;

	/* Custom transition - fade from top*/
	opacity: 0;
	transform: translateY(-50px);
	transition: all 0.3s;
}

#hidden-content-3 {
	/* Custom styling */
	max-width: 550px;
	padding: 10px 30px 30px 30px;

	/* Custom transition - fade from top*/
	opacity: 0;
	transform: translateY(-50px);
	transition: all 0.3s;
}

.fancybox-slide--complete #hidden-content-2 {
	opacity: 1;
	transform: translateY(0);
}

.fancybox-slide--complete #hidden-content-3 {
	opacity: 1;
	transform: translateY(0);
}

.contact .underline {
	margin-bottom: 8%;
}

.modal-btn {
	border: 5px solid #000;
	padding: 15px 30px 15px 30px;
	font-size: 30px;
	color: #000;
	transition: all 0.5s;
	border-radius: 4px;
	font-weight: 600;
}

.modal-btn:hover {
	color: #fff;
	background-color: #000;
	transition: all 0.5s;
	text-decoration: none;
}

.form-title {
	padding-top: 30px;
	margin-bottom: -20px;
	font-weight: bold;
}

.fa-envelope-open-text {
	margin-left: 8px;
}

.items {
	font-weight: bold;
}

.intro-text3 {
	font-size: 20px;
	color: #7d7d80;
	font-family: 'Helvetica Neue', sans-serif !important;
}

.text-style1 {
	font-size: 15px;
	color: #7d7d80;
	font-family: 'Helvetica Neue', sans-serif !important;
	font-weight: 500;
}

.text-style2 {
	font-size: 15px;
	color: #333;
	font-family: 'Uber Move Text', 'Helvetica Neue' !important;
	font-weight: 500;
}

.list-item {
	color: #7d7d80;
}

.process-text {
	margin-top: 100px;
}

#discover-section,
#process-section,
#define-section,
#develop-section,
#deliver-section {
	margin-top: 200px;
}

.prompt {
	text-align: center;
	font-size: 10px;
	margin-top: 5px;
}

.details {
	text-align: center;
	margin-top: 100px;
}

.moz-details {
	text-align: center;
	margin-top: 100px;
}

.details h5 {
	font-family: 'Poppins', sans-serif !important;
	font-weight: bold !important;
}

.moz-details h5 {
	font-family: 'Uber Move Text', 'Helvetica Neue' !important;
	font-weight: bold !important;
}

.upper {
	text-transform: uppercase;
}

.bold {
	font-weight: bold;
	color: #333;
}

.secondary {
	margin-bottom: 20px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif !important;
}

.secondary-research {
	margin-top: 100px;
}

.list2 {
	margin-bottom: 30px;
}

.c-no {
	height: 150px;
	margin-top: 50px;
}

.counter-Txt {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 20px;
	color: #7d7d80;
}
.counter-Txt span {
	display: block;
	font-size: 36px;
	color: #000;
}
@media (min-width: 320px) and (max-width: 767px) {
	.c-no {
		height: 100%;
	}
	.counter-Txt {
		margin-top: 35px;
	}
	.margin-bot-35 {
		margin-bottom: 35px;
	}
}

.hmw {
	margin-top: 100px;
	text-align: center;
	font-weight: 600;
}

.fa-arrow-down {
	font-size: 50px;
	margin-top: 100px;
	-moz-animation: pulse 1.3s infinite;
	-webkit-animation: pulse 1.3s infinite;
	animation: bounce 3s infinite;
}

.bouncing {
	-moz-animation: pulse 1.3s infinite;
	-webkit-animation: pulse 1.3s infinite;
	animation: bounce 3s infinite;
}

.bouncing:hover {
	animation-play-state: paused;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	20% {
		transform: translateY(5px);
	}
	60% {
		transform: translateY(5px);
	}
}

.market-research,
.persona {
	margin-top: 200px;
}

.comp-image {
	margin-top: 100px;
	width: 100%;
	height: auto;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#scroll {
	position: fixed;
	right: 10px;
	bottom: 10px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	background-color: #000;
	text-indent: -9999px;
	display: none;
	z-index: 10;
	transition: all 0.5s;
	border-radius: 4px;
}
#scroll span {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -12px;
	height: 0;
	width: 0;
	border: 8px solid transparent;
	border-bottom-color: #ffffff;
}
#scroll:hover {
	background-color: #333;
	opacity: 1;
	filter: 'alpha(opacity=100)';
	-ms-filter: 'alpha(opacity=100)';
	transition: all 0.5s;
}

.interview-notes,
.persona-image,
.stories,
.sketch-image {
	height: auto;
	width: 100%;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.watch-mock {
	height: auto;
	width: 100%;
}

.task-flows {
	height: auto;
	width: 100%;
	margin-top: 100px;
}

.wire-flows {
	height: auto;
	width: 100%;
	margin-top: 50px;
}

.primary-research {
	margin-top: 30px;
}

.define-text {
	margin-bottom: 50px;
}

.themes {
	width: 100%;
	height: auto;
}

.tiles {
	height: auto;
	width: 100%;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	top: 0;
	transition: ease 0.5s;
}

.tiles:hover {
	top: 10px;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.3) !important;
	transition: ease 0.5s;
}

.icon-container,
.intervention {
	margin-top: 100px;
}

.chosen {
	border: 5px solid #397a8e;
}

.user-stories {
	margin-top: 100px;
}

.sketches {
	margin-top: 150px;
}

.list-text {
	color: #7d7d80 !important;
}

.task-details {
	margin-top: -20px;
}

.flow-text {
	margin-top: -20px;
}

.bubbles {
	width: 100%;
	height: auto;
}

/* Owl Carousel */

.carousel-wrap {
	margin: 30px auto;
	padding: 0 5%;
	width: 100%;
	position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
	position: relative;
	z-index: 100;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

/* end fix */
.owl-nav > div {
	margin-top: -26px;
	position: absolute;
	top: 40%;
	color: #000;
}

.owl-nav i {
	font-size: 35px;
}

.owl-nav .owl-prev {
	left: -30px;
}

.owl-nav .owl-next {
	right: -30px;
}

.version {
	margin-left: 10px;
}

.version-two,
.wireframes {
	margin-top: 80px;
}

.user-testing {
	margin-top: 50px;
}

.changes {
	height: auto;
	width: 100%;
	margin-top: 30px;
}

.change-list {
	margin-top: 20px;
	margin-bottom: 20px;
}

.mid-fi {
	margin-top: 100px;
}

/* Zenfit Carousels */

.owl-carousel .owl-dots {
	text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
	margin: 4px;
}
.owl-carousel .owl-dots .owl-dot span {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #bbbbbb;
}
.owl-carousel .owl-dots .owl-dot.active span {
	background: #ffc300;
}

.icon-image {
	width: 100%;
	height: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

.colour-block {
	height: auto;
	width: 100%;
	padding: 150px;
	margin-top: -100px;
}

.colours {
	margin-top: 150px;
}

.logo-dev {
	height: auto;
	width: 100%;
	padding: 300px;
	margin-top: -250px;
}

.wordmark {
	margin-top: 200px;
}

.colour-inject {
	height: auto;
	width: 100%;
	padding: 50px;
}

.inject {
	margin-top: -200px;
}

.mockup2 {
	width: 100%;
	height: auto;
}

.try-me {
	margin-top: 100px;
}

.try {
	margin-top: 150px;
	text-align: center;
}

.video-btn {
	font-size: 20px !important;
	cursor: pointer;
	background-color: #c5576b;
	color: white !important;
	padding: 15px 21px !important;
	border: none;
	border-radius: 2px;
	transition: all 0.5s;
	position: relative;
	top: 40px;
	box-shadow: 0 5px 5px 0 rgba(233, 240, 243, 0.5), 0 0 0 1px #e6ecf8;
}

.video-btn:hover {
	background-color: #88404d;
	transition: all 0.5s;
	text-decoration: none;
}

.video-btn3 {
	font-size: 20px !important;
	cursor: pointer;
	background-color: #c5576b;
	color: white !important;
	padding: 15px 21px !important;
	border: none;
	border-radius: 2px;
	transition: all 0.5s;
	box-shadow: 0 5px 5px 0 rgba(233, 240, 243, 0.5), 0 0 0 1px #e6ecf8;
	margin-left: 10px;
}

.video-btn3:hover {
	background-color: #88404d;
	transition: all 0.5s;
	text-decoration: none;
}

.video-btn4 {
	font-size: 20px !important;
	cursor: pointer;
	background-color: #397a8e;
	color: white !important;
	padding: 15px 21px !important;
	border: none;
	border-radius: 2px;
	transition: all 0.5s;
	box-shadow: 0 5px 5px 0 rgba(233, 240, 243, 0.5), 0 0 0 1px #e6ecf8;
}

.video-btn4:hover {
	background-color: #29515e;
	transition: all 0.5s;
	text-decoration: none;
}

video:focus {
	outline: none;
}

.proto-btn2 {
	font-size: 20px !important;
	cursor: pointer;
	background-color: #397a8e;
	color: white !important;
	padding: 15px 46px !important;
	border: none;
	border-radius: 2px;
	transition: all 0.5s;
	box-shadow: 0 5px 5px 0 rgba(233, 240, 243, 0.5), 0 0 0 1px #e6ecf8;
}

.proto-btn2:hover {
	background-color: #29515e;
	transition: all 0.5s;
	text-decoration: none;
}

.view-proto-title {
	margin-bottom: 30px;
}

.fancybox-content {
	padding: 30px !important;
	border-radius: 4px;
}

.marketing-site {
	margin-top: 200px;
}

.responsive-text {
	margin-bottom: 50px;
}

.marketing-mockup {
	height: auto;
	width: 100%;
	margin-top: 100px;
}

.multi-platform {
	margin-top: 200px;
}

.key-learnings {
	margin-top: 100px;
}

.new-list {
	padding: 10px;
	z-index: 8;
}

.learning {
	height: auto;
	width: 100%;
	margin-top: 100px;
}

.learning-icons {
	text-align: center;
}

.icon-sub {
	padding: 30px;
}

.contact2 {
	margin-top: 150px;
	padding-bottom: 100px;
}

.two {
	margin-bottom: 80px !important;
}

.connect {
	margin-bottom: 100px;
}

.modal-btn2 {
	border: 5px solid #000;
	padding: 15px 37px 15px 37px;
	font-size: 30px;
	color: #000;
	transition: all 0.5s;
	position: relative;
	top: 50px;
	border-radius: 4px;
	font-weight: 600;
}

.modal-btn2:hover {
	color: #fff;
	background-color: #000;
	transition: all 0.5s;
	text-decoration: none;
}

.arrow {
	margin-right: 18px;
}

.alliance {
	margin-bottom: 50px;
}

.containers {
	display: flex;
	width: 100%;
	padding: 4% 2%;
	box-sizing: border-box;
	height: 60vh;
}

.box-color {
	flex: 1;
	overflow: hidden;
	transition: 0.5s;
	margin: 0 2%;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	line-height: 0;
}

.box-color > img {
	width: 200%;
	height: calc(100% - 12vh);
	object-fit: cover;
	transition: 0.5s;
}

.box-color > .square {
	font-size: 1.2rem;
	font-weight: 700;
	display: block;
	text-align: left;
	line-height: 1;
	padding-left: 15px;
	padding-top: 8px;
}

.box-color > .square2 {
	font-size: 0.8rem;
	font-weight: 400;
	display: block;
	text-align: left;
	margin-top: 18px;
	padding-left: 15px;
}

.hex {
	margin-bottom: 20px;
}

.box-color:hover {
	flex: 1 1 50%;
}
.box-color:hover > img {
	width: 100%;
}

/*PRELOADING------------ */
#overlayer {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 7100;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.loader {
	z-index: 7700;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #000;
}

/* Uber Styles */

.site-blocks-cover {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	background-position: center center;
	background-image: url(/assets/images/moz-bg-min.png);
}

.site-blocks-cover-2 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	background-position: center center;
	background-image: url(/assets/images/moz-funnel-bg-min.png);
}

.site-blocks-cover-3 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	background-position: center center;
	background-image: url(/assets/images/nebula-bg-min.png);
}

.site-blocks-cover-4 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	background-position: center center;
	background-image: url(/assets/images/neb-teaser-min.png);
}

.site-blocks-cover .player {
	position: absolute;
	bottom: -250px;
	width: 100%;
}
.site-blocks-cover,
.site-blocks-cover > .container > .row {
	min-height: 600px;
	height: calc(100vh);
}

.site-blocks-cover-2 .player {
	position: absolute;
	bottom: -250px;
	width: 100%;
}
.site-blocks-cover-2,
.site-blocks-cover-2 > .container > .row {
	min-height: 600px;
	height: calc(100vh);
}

.site-blocks-cover-3 .player {
	position: absolute;
	bottom: -250px;
	width: 100%;
}
.site-blocks-cover-3,
.site-blocks-cover-3 > .container > .row {
	min-height: 600px;
	height: calc(100vh);
}

.site-blocks-cover-4 .player {
	position: absolute;
	bottom: -250px;
	width: 100%;
}
.site-blocks-cover-4,
.site-blocks-cover-4 > .container > .row {
	min-height: 600px;
	height: calc(100vh);
}


.portfolio-btn {
	font-size: 20px !important;
	font-weight: 500;
	cursor: pointer;
	color: #000;
	padding: 10px 15px !important;
	position: relative;
	top: 20px;
	margin-left: 15px;
	border: 5px solid #000;
	transition: all 0.5s;
}

.portfolio-btn:hover {
	background-color: #000;
	transition: all 0.5s;
	text-decoration: none;
	color: #fff;
}

#brief-section,
#end-section {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	background-position: center center;
	background-image: url(/assets/images/project-overview-min.png);
}

#mocks-section,
#flows-section {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	background-position: center center;
	background-image: url(/assets/images/mockups-bg-min.png);
}

#annotations-section {
	background-color: #F2f2f2;
}

.center {
	text-align: center;
	padding-left: 180px;
	padding-right: 180px;
}

.mockups {
	height: auto;
	width: 100%;
}

.new-case-btn {
	font-size: 24px;
	color: #ffffff;
}

.new-case-btn:hover {
	text-decoration: none;
	color: #ffc300;
	transition: all 0.5s;
}

video {
	width: 280px;
	height: auto;
	display: block;
	margin: 0 auto;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#challenge-section {
	padding-left: 24px;
	padding-right: 24px;
	background-color: #f2f2f2;
	padding-top: 120px;
	padding-bottom: 120px;
}

#approach-section {
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 120px;
}

#empathy-section,
#defines-section,
#ideates-section,
#annotations-section,
#flows-section,
#proto-section,
#implement-section {
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 120px;
	padding-bottom: 120px;
}

.space-up {
	padding-top: 64px;
}

.mt-10 {
	margin-top: 80px;
}

.fine-print {
	font-size: 14px;
	color: #7d7d80;
	margin-top: 24px;
}

.brief {
	text-align: center;
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 120px;
	padding-bottom: 120px;
}

.screens {
	text-align: center;
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 120px;
}

.moz-body-white {
	color: 	#b3b3b3;
	font-size: 20px;
	margin-top: 24px;
}

.moz-body-light {
	color: 	#ffffff;
	font-size: 20px;
	margin-top: 24px;
}

.moz-body {
	color: 	#3D3D3D;
	font-size: 20px;
	margin-top: 24px;
}

.moz-body-lg {
	color: 	#3D3D3D;
	font-size: 28px;
	margin-top: 24px;
}

 .caption {
	color: #7d7d80;
	font-weight: 600;
 }

 .quote-box {
	padding-top: 24px;
	padding-bottom: 24px;
	padding-left: 80px;
	padding-right: 80px;
	text-align: center; 
	background-color: #f2f2f2;
	font-size: 28px;
 }
 

 .quote-box-2 {
	padding-top: 24px;
	padding-bottom: 24px;
	padding-left: 80px;
	padding-right: 80px;
	background-color: #f2f2f2;
	font-size: 28px;
 }
 

.hero-text {
	padding-top: 15%;
	padding-left: 10%;
	font-family: 'Poppins', 'Helvetica Neue';
}

.moz-title {
	font-size: 4rem;
	font-weight: 600 !important;
	font-family: 'Poppins', 'Helvetica Neue';
}

.moz-title-white {
	font-size: 3rem;
	font-weight: 600 !important;
	font-family: 'Poppins', 'Helvetica Neue';
	color: #fff;
}


.moz-sub {
	margin-top: 20px;
	width: 100%;
}

.green {
	color: #05a357;
}

.regular {
	font-weight: 500;
}

#hero-section {
	border-bottom: 1px solid #e7e7e7;
}

.moz-btn {
	padding: 20px 100px;
	background: #000;
	color: #fff;
	position: relative;
	top: 40px;
	transition: all 0.5s;
	font-size: 20px;
	font-family: 'Helvetica Neue';
}

.moz-btn:hover {
	text-decoration: none;
	color: #fff;
	background: rgb(37, 37, 37);
	transition: all 0.5s;
}

.moz-btn:focus {
	text-decoration: none;
	color: #fff;
}

.overview,
.research,
.redesign,
.testing {
	text-align: center;
	height: 100%;
	width: 100%;
	margin-top: 100px;
	margin-bottom: 100px;
}

#overview-section,
#research-section,
#testing-section {
	margin-top: 150px;
}

#redesign-section {
	margin-top: 200px;
}

.testing-moz {
	margin-top: 150px;
}

.section-title-moz {
	font-weight: bold;
	font-size: 3rem;
	letter-spacing: 1px;
	font-family: 'Uber Move Text', 'Helvetica Neue' !important;
	font-weight: 700;
}

.moz-connect {
	margin-bottom: 90px;
}

.underline-green {
	border-bottom: 8px solid #05a357;
	color: white;
	margin-left: 47%;
	margin-right: 47%;
}

.connect2 {
	margin-bottom: 100px;
	font-family: 'Uber Move Text', 'Helvetica Neue' !important;
}

.intro-text4 {
	font-size: 20px;
	color: #333;
	font-family: 'Uber Move Text', 'Helvetica Neue' !important;
	margin-bottom: 50px;
}

.list-text4 {
	font-size: 20px;
	color: #333;
	font-family: 'Uber Move Text', 'Helvetica Neue' !important;
	margin-bottom: 50px;
	margin-top: -20px;
}

.core-flows {
	margin-top: 100px;
}

.heuristics {
	height: auto;
	width: 100%;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-redesign {
	height: auto;
	width: 100%;
}

.moz-sub {
	color: #333;
	font-family: 'Helvetica Neue' !important;
	font-weight: 600;
}

.moz {
	font-family: 'Uber Move Text', 'Helvetica Neue' !important;
	font-weight: 600 !important;
}

.overview-text,
.moz-colours {
	margin-top: 100px;
}

.diff-text-green {
	background: linear-gradient(to top, #05a357 40%, transparent 40%);
}

.preliminary-research {
	margin-top: 100px;
}

.core-flows-img {
	height: auto;
	width: 100%;
	margin-top: 50px;
}

.core-flows {
	height: auto;
	width: 100%;
	margin-top: 100px;
}

.moz-secondary,
.moz-primary {
	margin-top: 50px;
}

.typography-moz,
.iconography-moz {
	margin-top: 200px;
}

.heuristics-one {
	margin-top: 150px;
}

.rating {
	background: #000;
	color: #fff;
	padding: 4px 10px 4px 10px;
}

.severity {
	margin-top: -20px;
}

.help {
	margin-top: 80px;
}

.chart {
	margin-top: 50px;
}

.moz-btn2 {
	padding: 20px 100px;
	background: #000;
	color: #fff;
	position: relative;
	top: 40px;
	transition: all 0.5s;
}

.moz-btn2:hover {
	text-decoration: none;
	color: #fff;
	background: rgb(37, 37, 37);
	transition: all 0.5s;
}

.moz-btn2:focus {
	text-decoration: none;
	color: #fff;
}

.video-btn2 {
	cursor: pointer;
	background-color: #f6f6f6;
	color: #000 !important;
	padding: 20px 80px !important;
	border: none;
	transition: all 0.5s;
	position: relative;
	top: 90px;
}

.video-btn2:hover {
	background-color: #c5c5c5;
	transition: all 0.5s;
	text-decoration: none;
}

.video-btn2:focus {
	text-decoration: none;
	color: #fff;
}

.moz-btn:focus {
	text-decoration: none;
	color: #fff;
}

.try-moz {
	margin-top: 200px;
	margin-bottom: 80px;
	text-align: center;
}

.person {
	font-weight: 600;
}

@media (max-width: 520px) {
	.try-moz {
		margin-top: 10px;
		margin-bottom: 80px;
		text-align: center;
	}

	.chart {
		margin-top: 20px;
	}

	.testing-moz {
		margin-top: 100px;
	}

	.core-flows-img {
		margin-top: 20px;
	}

	.moz-title {
		font-size: 2.5rem;
		margin-top: 35%;
	}

	.screens {
		padding-bottom: 120px;
	}

	.fine-print {
		font-size: 10px;
		color: #7d7d80;
	}

	.moz-title-white {
		font-size: 2rem;
	}

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

	.moz-sub {
		font-size: 24px;
	}

	.moz-body-white {
		font-size: 16px;
	}

	.moz-body {
		font-size: 16px;
	}

	.moz-body-lg {
		font-size: 20px;
	}

	.caption {
		font: 10px;;
	}

	.site-blocks-cover {
		background-image: url(/assets/images/moz-mobile-bg-min.png);
	}

	.site-blocks-cover-2 {
		background-image: url(/assets/images/moz-funnel-mobile-min.png);
	}

	.site-blocks-cover-3 {
		background-image: url(/assets/images/nebula-mobile-min.png);
	}

	.site-blocks-cover-4 {
		background-image: url(/assets/images/neb-mobile-min.png);
	}

	.moz-btn {
		/* padding: 15px 40px !important; */
		background: #000;
		color: #fff;
		position: relative;
		top: 30px;
		width: 100% !important;
	}

	.fa-user-circle {
		font-size: 32px;
	}

	.person {
		font-size: 14px;
	}

	.underline-green {
		margin-left: 41% !important;
		margin-right: 41% !important;
	}

	#overview-section,
	#redesign-section {
		margin-top: 100px;
	}

	#defines-section,
	#ideates-section,
	#implement-section {
		margin-top: -100px;
	}


	#research-section {
		margin-top: 150px;
	}

	.section-title-moz {
		font-size: 2rem;
	}

	.iconography-moz {
		margin-top: 100px;
	}

	.typography-moz {
		margin-top: 100px;
	}

	.iconography-text,
	.heuristics-one {
		margin-top: 100px;
	}

	.quote-box,
	.quote-box-2 {
		padding-top: 24px;
		padding-bottom: 24px;
		background-color: #f2f2f2;
		font-size: 20px;
		padding-left: 24px;
		padding-right: 24px;
	 }

	 .center {
		text-align: center;
		padding-left: 0px;
		padding-right: 0px;
	}

	.new-case-btn {
		font-size: 16px;
		color: #ffffff;
	}
	
}

@media (max-width: 768px) {
	.try-moz {
		margin-top: 50px;
		margin-bottom: 80px;
	}

	.hero-text {
		padding-top: 10%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.moz-btn {
		padding: 15px 70px;
		background: #000;
		color: #fff;
		position: relative;
		top: 30px;
		font-size: 16px;
	}

	.underline-green {
		margin-left: 41% !important;
		margin-right: 41% !important;
	}

	.iconography-moz {
		margin-top: 100px;
	}

	.containers {
		height: 40vh;
	}

	.video-btn2 {
		padding: 20px 79px !important;
	}
}
