/** Import Fonts
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@font-face {
	font-family: Kalmansk;
	src: url('../fonts/Kalmansk-Regular.otf');
	font-display: fallback;
}

@font-face {
	font-family: Bahnschrift;
	src: url('../fonts/BAHNSCHRIFT.html\ 1.woff');
}

@font-face {
	font-family: Poppins;
	src: url('../fonts/Poppins-Medium.ttf');
}

/** BASIC ELEMENTS STYLE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html {
	font-family: Kalmansk, Bahnschrift, Poppins;
}

body {
	background-color: #F3EFF5;
}

.bg-info {
	background-color: #F3EFF5 !important;
}

/*? DESKTOP PROPERTIES */

.navbar {
	font-family: Bahnschrift;
	/* background: #291F1E; */
	background: #ffffff;
	min-height: 50px;
	padding: 0 10px;
	/* border-bottom: 1px solid #908c8c; */
	max-width: 90%;
	margin: auto;
	border-radius: 10px;
	top: 5px;
	box-shadow: 3px 9px 29px 0px rgba(0,0,0,0.1);

}

.navbar-nav > li > a {
	line-height: 50px;
	text-transform: uppercase;
	color: #c9c9cb;
	padding: 0;
}

.navbar a:focus, .navbar .active {
	color: #0367e0;
}

@media (min-width: 768px) {
	.non-touch .navbar a:hover {
		color: #B6B6B9;
	}
}

@media (max-width: 768px) {
	.non-touch .navbar a:hover {
		color: #0367e0;
	}
}

.navbar-brand img.logo {
    margin-top: 3px;
    width: 60px;
	/* height: 20px; */
}

.navbar span {
	color: rgb(6, 6, 6);
	font-weight: 800;
	background: linear-gradient(to right, #509ccc97 0, #fff 10%, #4d4d4d 20%);
	background-position: 0;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shine 10s infinite linear;
	animation-fill-mode: forwards;
	-webkit-text-size-adjust: none;
	font-weight: 600;
	font-size: 22px;
	text-decoration: none;
	white-space: nowrap;
}
@keyframes shine {
	0% {
		background-position: 0;
	}
	100% {
		background-position: 150px;
	}
	
}
  

/*? MOBILE PROPERTIES */

@media (max-width: 767px) {
	.navbar-nav {
		z-index: 99;
		display: block;
		position: fixed;
		width: 100%;
		top: 50px;
		left: 0px;
		height: calc(100vh - 50px);
		background: #fff;
		padding: 20px;
		font-size: 16px;
		list-style: none;
		margin: 0;
	}

	.navbar-nav > li > a {
		color: #ACACAF;
		display: inline-block;
		width: 100%;
		border-bottom: 1px dotted #c9c9cb;
	}

	.navbar-brand img.logo {
		margin-top: 0px;
	}
}

.hamburger-menu {
	cursor: pointer;
	background-image: url('../media/menu.png') !important;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
}

.cross-menu {
	cursor: pointer;
	background-image: url('../media/cross.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
}

button.navbar-toggler:focus {
	outline: 1px none;
}


@media (max-width: 768px) and (orientation: landscape) {
	.touch .navbar {
		height: 10%;
	}

	.touch .navbar .hamburger-menu,
	.touch .navbar .cross-menu {
		position: absolute;
		top: -10%;
	}
}

/** SECTION STYLES - fullPage.js
–––––––––––––––––––––––––––––––––––––––––––––––––– */

section {
    text-align: center;
}

h2 {
	font-family: Poppins;
    font-size: 6vw;
    margin-bottom: 20px;
}

h3 {
	font-family: Bahnschrift;
    font-weight: 300;
    font-size: 2vw;
}

/** ANIMATED CONTENT PAGES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/** ANIMATED ON LOAD EVENT */

.sec-content {
	opacity: 0;
	margin: 0 10%;
}

.sec-content.loaded {
	animation: fadeInContent 1s forwards;
	will-change: opacity;
}

@keyframes fadeInContent {
	0%   {opacity: 0;}
	100% {opacity: 1;}
}

/*? ANIMATED ICON SCROLL ON DESKTOP
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media (min-width: 768px) {
	.non-touch .icon-scroll {
		position: fixed;
		top: 90%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
				transform: translate(-50% , -50%);
		width: 1em;
		height: 3.125em;
		z-index: 99;
		-webkit-animation: fadeInUp 1.5s;
				animation: fadeInUp 1.5s;
		will-change: opacity;
	}

	.non-touch .icon-scroll .mouse {
		height: 2em;
		width: 1.3em;
		border: 2px solid rgba(80, 50, 50, 0.8);
		border-radius: 2em;
	}

	.non-touch .icon-scroll .wheel {
		position: relative;
		display: block;
		height: .3em;
		width: .3em;
		margin: .3em auto 0;
		background: rgba(80, 50, 50, 0.8);
		animation: mouse-wheel 1.5s ease infinite;
		border-radius: 50%;
		will-change: transform;
	}

	@keyframes fadeInUp {
		from {
			transform : translate(-50%, 3em);
			opacity: 0;
		}
		to {
			transform : translate(-50%, -50%);
			opacity: 1;
		}
	}

	@keyframes mouse-wheel {
		0% {
			opacity: 1;
			transform: translateY(0);
		}

		100% {
			opacity: 0;
			transform: translateY(.4em);
		}
	}
}

/*! REMOVE ANIMATION WHEN RESOLUTION BELOW 992px */

@media (max-width: 768px) {
	.icon-scroll {
		display:none;
	}
}

/** ADD MENU TOGGLE CLOSE ANIMATION
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#collapse_target.closeOut {
	animation: fadeOutDropMenu .5s;
	will-change: opacity;
}

@keyframes fadeOutDropMenu {
	0% {
		opacity: 1;
	}
	75% {
		opacity: 0;
	}
}

/*? FADE IN MENU WHEN IN LANDSCAPE OR LARGER
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.nav-item {
	animation: fadeIn 1.5s;
	will-change: opacity;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*? ANIMATED GO TO BOTTOM ARROW ON MOBILE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media (max-width: 768px) {
	.touch .page-bottom {
		position: absolute;
		left: 50%;
		cursor: pointer;
		transform: translateX(-50%);
		bottom: 3%;
		height: 6px;
		width: 80px;
	}

	.touch .page-bottom-arrow {
		height: 2em;
		cursor: pointer;
		-webkit-animation: bounceDown 2s ease infinite;
		        animation: bounceDown 2s ease infinite;
		fill: #1585fd;
		will-change: transform;
	}

	.touch .page-bottom {
		bottom: 20px;
	}

	@-webkit-keyframes bounceDown {
		0%   { -webkit-transform: translateY(-0.5em); }
		50%  { -webkit-transform: translateY(0em); }
		75%  { -webkit-transform: translateY(-0.5em); }
		100% { -webkit-transform: translateY(-0.5em); }
	}

	@keyframes bounceDown {
		0%   { transform: translateY(-0.5em); }
		50%  { transform: translateY(0em); }
		75%  { transform: translateY(-0.5em); }
		100% { transform: translateY(-0.5em); }
	}

	.non-touch .page-bottom {
		display: none;
	}
}

@media (min-width: 768px) {
	.page-bottom {
		display: none;
	}
}

/*? ANIMATED GO TO TOP ARROW ON DESKTOP
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-top {
	position: absolute;
	left: 50%;
	cursor: pointer;
	transform: translateX(-50%);
}

.non-touch .page-top {
	bottom: 3%;
}

.non-touch .page-top-arrow {
	height: 1em;
	width: 50px;
	transition: transform .45s cubic-bezier(.37,.16,.12,1);
}

.page-top-arrow svg, .page-top-arrow svg:focus {
	fill: #1585fd;
}

.non-touch .page-top:hover .page-top-arrow {
	transform: translateY(-20%);
}

/*? ANIMATED GO TO TOP ARROW ON MOBILE PORTRAIT
	–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media (max-width: 768px) {

	.touch .page-top-arrow {
		height: 15px;
		width: 80px;
		-webkit-animation: bounceUp 2s ease infinite;
				animation: bounceUp 2s ease infinite;
		will-change: transform;
	}

	.touch .page-top {
		bottom: 20px;
	}

	@-webkit-keyframes bounceUp {
		0%   { -webkit-transform: translateY(0); }
		50%  { -webkit-transform: translateY(-0.5em); }
		75%  { -webkit-transform: translateY(0); }
		100% { -webkit-transform: translateY(0); }
	}

	@keyframes bounceUp {
		0%   { transform: translateY(0); }
		50%  { transform: translateY(-0.5em); }
		75%  { transform: translateY(0); }
		100% { transform: translateY(0); }
	}
}

/*? STILL GO TO TOP ARROW ON MOBILE LANDSCAPE
	–––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-top-alt {
	position: absolute;
	left: 96%;
	bottom: 4%;
	transform: translateX(-50%);
}

@media (max-width: 992px) and (orientation: landscape) {
	.touch .go-to-top-arrow-circle {
		fill: #f3eff5;
	}

	.touch .go-to-top-arrow-chevron {
		fill: #1585fd;
	}

	.touch .go-to-top-arrow {
		height: 2em;
		cursor: pointer;
		-webkit-animation: bounceUpAlt 2s ease infinite;
				animation: bounceUpAlt 2s ease infinite;
		will-change: transform;
	}

	@-webkit-keyframes bounceUpAlt {
		0%   { -webkit-transform: translateY(0); }
		50%  { -webkit-transform: translateY(-0.1em); }
		75%  { -webkit-transform: translateY(0); }
		100% { -webkit-transform: translateY(0); }
	}

	@keyframes bounceUpAlt {
		0%   { transform: translateY(0); }
		50%  { transform: translateY(-0.1em); }
		75%  { transform: translateY(0); }
		100% { transform: translateY(0); }
	}

	.touch .page-top-arrow {
		display: none;
	}
}

.non-touch .page-top-alt {
	display: none;
}

/*? ANIMATED HOME PAGE ON MODERN DESKTOP BROWSERS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#nxs {
	margin-top: -4%;
	font-family: Kalmansk;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50% , -50%);
}

#nxs h1 {
	text-align: center;
	background: url('../images/photos/dobra.jpg');
	background-size: 120%;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
	width: 100%;
	cursor: context-menu;
	filter: drop-shadow(0px 4px 2px #000000);
	color: transparent;
	animation: animatedBackground 10s 1.2s linear infinite;
	will-change: background-position;
}

/*! ANIMATION FOR CHROME, FIREFOX */

@supports not (-ms-ime-align:auto) {
	@keyframes animatedBackground {
		0% {
			background-position: 0 0;
		}
		50% {
			background-position: 30% 0;
		}
		100% {
			background-position: 0 0;
		}
	}
}

/*! ANIMATION FOR EDGE */

@supports (-ms-ime-align:auto) {
	@keyframes animatedBackground {
		0% {
			background-position: 0 0;
		}
		50% {
			background-position: -75px 0;
		}
		100% {
			background-position: 0 0;
		}
	}
}

/* DESKTOP FONT SIZE */

@media (min-width: 768px) {
	#nxs h1 {
		font-size: 22vw;
	}
}

/* PHONES IN PORTRAIT MODE FONT SIZE */

@media (max-width: 768px) {
	#nxs h1 {
		font-size: 25vw;
	}
	
}

/*! SUPPORT FOR PHONES WITH NAVIGATION BUTTONS */

@media (max-width: 722px) and (orientation: landscape) {
	.touch #nxs h1 {
		font-size: 60vh;
	}
}

.home-text {
	position: absolute;
	display: block;
	overflow: hidden;
	font-size: 6.2vw;
	font-weight: 300;
	white-space: nowrap;
	color: #291F1E;
	text-transform: uppercase;
	top: 85%;
	left: 0;
	width: 100%;
	letter-spacing: 3px;
	text-align: center;
	cursor: context-menu;
}

.home-text-cover {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #F3EFF5;
	-webkit-animation: reveal 5s 1s forwards;
			animation: reveal 5s 1s forwards;
	will-change: transform;
}

@-webkit-keyframes reveal {
  from { -webkit-transform: translateX(0); }
  to { -webkit-transform: translateX(100%);}
}

@keyframes reveal {
  from { transform: translateX(0); }
  to { transform: translateX(100%);}
}

@media (min-width: 992px) {
	.down-in {
		-webkit-animation: down-in 0.8s 0s forwards ease-in;
				animation: down-in 0.8s 0s forwards ease-in;
		will-change: transform;
	}

	@-webkit-keyframes down-in {
		0% {
			-webkit-transform: translate(-20%, -40%) scale(.6);
		}
		30% {
			-webkit-transform: translate(-20%, -20%) scale(.6);
		}
		100% {
			-webkit-transform: translate(-50%, -50%) scale(1);
		}
	}

	@keyframes down-in {
		0% {
			transform: translate(-20%, -40%) scale(.6);
		}
		30% {
			transform: translate(-20%, -20%) scale(.6);
		}
		100% {
			transform: translate(-50%, -50%) scale(1);
		}
	}

	.down-out {
		-webkit-animation: down-out 1.2s 0s forwards ease-out;
				animation: down-out 1.2s 0s forwards ease-out;
		will-change: transform;
	}

	@-webkit-keyframes down-out {
		0% {
			-webkit-transform: translate(-50%, -50%) scale(1);
		}
		30% {
			-webkit-transform: translate(-20%, -20%) scale(.6);
		}
		100% {
			-webkit-transform: translate(-20%, -40%) scale(.6);
		}
	}

	@keyframes down-out {
		0% {
			transform: translate(-50%, -50%) scale(1);
		}
		30% {
			transform: translate(-20%, -20%) scale(.6);
		}
		100% {
			transform: translate(-20%, -40%) scale(.6);
		}
	}
}

/** ABOUT US
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/** UNIVERSAL PROPERTIES */

.about-us .text h1 {
	font-family: Poppins;
	text-align: left;
	color: #291F1E;
}

.about-us .h1-underline {
	border-top: 2px solid #0367E0;
	margin-top: -.5em;
	margin-bottom: 2em;
	width: 200px;
}

.about-us-text {
	position: relative;
	font-family: Poppins;
	font-weight: bold;
	font-size: 1.2rem;
	text-transform: uppercase;
	text-align: center;
	color: #0367E0;
}

.about-us-text:after {
	content: "";
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #F3EFF5;
		transform: scaleX(0);
		transform-origin: 0 50%;
	pointer-events: none;
	animation: revealer 5s forwards;
}

/**************************************************************************************
CARD CUSTOM BOOTSTRAP PROPERTIES
***************************************************************************************/
.card img {
	width: 64px;
	height: auto;
	margin: auto;
}
.btn-formations {
	margin: 5%;
}

@media (min-width: 1019px) {
	.d-md-flex {
		display: -ms-flexbox!important;
		display: flex!important;
	}
}
/**************************************************************************************
CARD CUSTOM BOOTSTRAP PROPERTIES
***************************************************************************************/

@keyframes revealer {
	0% {
			transform-origin: 100% 0;
			transform: scaleX(1);
	}

	30% {
		transform-origin: 100% 0;
		transform: scaleX(1);
	}

	100% {
			transform-origin: 100% 100%;
			transform: scaleX(0);
	}
}

/*? DESKTOP PROPERTIES */

@media (min-width: 992px) {

	.about-us {
		height: 70%;
	}

	.about-us .text p {
		font-family: Bahnschrift;
		text-align: justify;
		text-justify: inter-word;
		margin-bottom: 2em;
	}

	.about-us .text {
		width: 70%;
	}

	.about-us-space {
		height: 5vh;
		width: 100%;
	}

	.hex-grid {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 30%;
		z-index: 199;
		background: url('../media/aifinger.webp');
		background-size: cover;
		background-repeat: no-repeat;
		opacity: 0;
	}

	.hex-grid svg {
		position: absolute;
		height: 142.2%;
		top: -5%;
		left: 0;
	}

	.hex-about-us, .hex-about-us:hover, .hex-about-us:active {
		display: none;
	}

	/* ANIMATE HEX GRID */
	.hex-grid.loaded-slow {
		animation: leftEntrance 2s .3s forwards;
	}

	.hex-grid.loaded-fast,
	.hex-grid.show {
		animation: leftEntrance 2s forwards;
	}

	@keyframes leftEntrance {
		from {width: 0; opacity: 0;}
		to {width: 30%; opacity: 1;}
	}

	.hex-grid.cover {
		animation: leftExit 1s forwards;
	}

	@keyframes leftExit {
		from {width: 30%; opacity: 1;}
		to {width: 0; opacity: 0;}
	}

	.hex-grid svg polygon:nth-child(27),
	.hex-grid svg polygon:nth-child(29) {
		animation: blink 2s infinite;
	}

	@keyframes blink {
		0% {fill: #45775a}
		50% {fill: #3e8059}
		100% {fill: #45775a}
	}

	/* ANIMATION END */
}

@media (max-width: 992px) {
	.about-us {
		height: 80%;
	}

	.about-us .text p {
		font-family: Bahnschrift;
		text-align: justify;
		text-justify: inter-word;
		margin-bottom: 2em;
		font-size: .8em;
	}

	.about-us-space {
		height: 6vh;
		width: 100%;
	}

	.hex-grid svg {
		display: none;
	}

	.hex-about-us, .hex-about-us:hover, .hex-about-us:active {
		position: absolute;
		cursor: pointer;
		top: -1%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
				transform: translate(-50% , -50%);
		font-size: max(10vh, 50px);
		color: #08ab4d;
		text-decoration: none;
	}
}

/*? MOBILE PROPERTIES */

.touch .about-us-text {
	font-size: .9rem;
	text-align: start;
}

/* PORTRAIT MODE */

/* GESTURE ENABLED PHONES */
@media (max-width: 768px) and (orientation: portrait) {
	.touch .about-us .text p {
		font-family: Bahnschrift;
		font-size: 1.5vh;
		text-align: justify;
		text-justify: inter-word;
		margin-bottom: 1.5em;
	}

	.touch .about-us-space {
		height: 3vh;
		width: 100%;
	}
}

/* DESKTOP MODE */
@media (min-width: 768px) and (orientation: portrait) {
	.touch #content2 p {
		font-family: Bahnschrift;
		font-size: 1.2vh;
		text-align: justify;
		text-justify: inter-word;
		margin-bottom: 3em;
	}

	.touch #content2 .about-us-space {
		height: 3vh;
		width: 100%;
	}

	.touch #content2 .h1-underline {
		width: 470px;
		border: 2px solid #08ab4d;
	}

	.touch .about-us-text {
		font-size: 1rem;
	}
}

/* LANDSCAPE MODE */

/* GESTURE ENABLED PHONES */

@media (min-width: 768px) and (max-width: 992px) {
	.touch .about-us .text h1 {
		font-size: 5vh;
	}

	.touch .about-us .h1-underline {
		border-top: 2px solid #08ab4d;
		margin-top: -.5em;
		margin-bottom: 1em;
		width: 100px;
	}

	.touch .about-us .text p {
		font-family: Bahnschrift;
		font-size: 2.5vh;
		text-align: justify;
		text-justify: inter-word;
		margin-bottom: 1.5em;
	}

	.touch .hex-about-us, .touch .hex-about-us:hover, .touch .hex-about-us:active {
		display: none;
	}
}

/* NAV BUTTONS PHONES */

@media (max-width: 722px) and (orientation: landscape) {
	.touch .about-us .text h1 {
		font-size: 5vh;
	}

	.touch .about-us .h1-underline {
		border-top: 2px solid #08ab4d;
		margin-top: -.5em;
		margin-bottom: 1em;
		width: 100px;
	}

	.touch .about-us .text p {
		font-family: Bahnschrift;
		font-size: 2.5vh;
		text-align: justify;
		text-justify: inter-word;
		margin-bottom: 1.5em;
	}

	.touch .about-us-space {
		height: 5vh;
		width: 100%;
	}

	.touch .hex-about-us, .touch .hex-about-us:hover, .touch .hex-about-us:active {
		display: none;
	}
}

/** OUR SERVICES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/** UNIVERSAL PROPERTIES */

.carousel-container {
	position: absolute;
	top: 40%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50% , -50%);
	z-index: 0;
	height: 85%;
	width: 95%;
}

.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23291F1E' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
	cursor: pointer;
}

.carousel-control-next-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23291F1E' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
	cursor: pointer;
}

.carousel-indicators {
	left: 0;
	bottom: 5%;
}

.carousel li {
	position: relative;
	width: 10px;
	height: 5px;
	background-color: #515b6c;
	line-height: 0;
	margin: 0 20px 0 0;
}

/*Active Element*/
.carousel-indicators li.active {
	background: #1f2638;
	background-clip: padding-box;
	border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
	width: 10px;
}

.carousel-item {
	font-family: Poppins;
	background-color: #F3EFF5;
	height: 65vh;
	width: 100%;
	border: 1px solid #F3EFF5;
}

.carousel-item img {
	position: absolute;
	top: 30%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50% , -50%);
	object-fit: none;
}

.carousel-caption {
	position: absolute;
	top: 50%;
	color: #291F1E;
}

.carousel-caption h3 {
	text-align: center;
	font-size: 3em;
	font-family: Poppins;
}

.carousel-caption p {
	text-align: justify;
	text-justify: inter-word;
	font-family: Bahnschrift;
	width: 80%;
	margin: auto;
}
/*
.svc-footer {
	position: absolute;
	width: 100%;
	height: 15%;
	bottom: 0;
	left: 0;
	z-index: 99;
	background-color: #08ab4d;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}

.svc-footer span {
	font-family: 'Lucida Sans', Bahnschrift;
	font-style: normal;
	font-size: 5vh;
}

.svc-footer #quote-text {
	position: absolute;
	font-family: Poppins;
	font-style: italic;
	text-align: left;
	color: #F3EFF5;
	width: 95%;
	top: 35%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50% , -50%);
	font-size: 2.2vh;
	text-align: center;
	line-height: 0.8;
}


.svc-footer #author {
	position: absolute;
	font-family: Poppins;
	text-align: left;
	color: #F3EFF5;
	width: 80%;
	top: 65%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50% , -50%);
	font-size: 2.2vh;
	text-align: center;
	font-weight: bold;
}
*/
/*? DESKTOP PROPERTIES */

@media (max-width: 992px) {
	.non-touch .carousel-caption {
		position: absolute;
		top: 47%;
		color: #291F1E;
	}

	.carousel-item img {
		left: 50.35%;
	}

	.non-touch .carousel-caption h3 {
		text-align: center;
		font-size: 2.5em;
		font-family: Poppins;
	}

	.non-touch .carousel-caption p {
		text-align: justify;
		text-justify: inter-word;
		font-family: Bahnschrift;
		width: 100%;
		margin: auto;
		font-size: 1.85vh;
	}

	.non-touch .svc-footer #quote-text {
		font-size: 1.7vh;
	}

	.non-touch .svc-footer #author {
		font-size: 1.7vh;
	}
}

/*? MOBILE PROPERTIES */

/* PORTRAIT MODE */

/* GESTURE ENABLED PHONES */

@media (max-width: 768px) and (orientation: portrait) {
	.carousel-container {
		width: 92%;
	}

	.carousel-item img {
		top: 30%;
	}

	.touch .carousel-caption {
		top: 65%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
				transform: translate(-50% , -50%);
		width: 100%;
	}

	.touch .carousel-caption h3 {
		position: relative;
		top: 10%;
		width: 80%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
				transform: translate(-50% , -50%);
		font-size: 4vh;
	}

	.touch .carousel .carousel-item:nth-child(3) h3,
	.touch .carousel .carousel-item:nth-child(5) h3,
	.touch .carousel .carousel-item:nth-child(6) h3 {
		line-height: 1;
	}

	.touch .carousel-caption p {
		font-size: 1.7vh;
	}

	.touch .carousel-indicators {
		position: fixed;
		bottom: -3.5%;
	}

	.touch .svc-footer #quote-text {
		font-size: 1.65vh;
	}

	.touch .svc-footer #author {
		font-size: 1.65vh;
		top: 75%;
	}
}

/* DESKTOP MODE */

@media (min-width: 768px) and (orientation: portrait) {
	.touch #content3 .carousel-container {
		width: 92%;
	}

	.touch #content3 .carousel-item img {
		top: 30%;
	}

	.touch #content3 .carousel-caption {
		top: 65%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
				transform: translate(-50% , -50%);
		width: 100%;
	}

	.touch #content3 .carousel-caption h3 {
		position: relative;
		top: 10%;
		width: 80%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
				transform: translate(-50% , -50%);
		font-size: 4vh;
	}

	.touch #content3 .carousel .carousel-item:nth-child(3) h3,
	.touch #content3 .carousel .carousel-item:nth-child(5) h3,
	.touch #content3 .carousel .carousel-item:nth-child(6) h3 {
		line-height: 1;
	}

	.touch #content3 .carousel-caption p {
		font-size: 1.7vh;
	}

	.touch #content3 .carousel-indicators {
		position: fixed;
		bottom: -3.5%;
	}

	.touch #content3 .svc-footer #quote-text {
		font-size: 1.65vh;
	}

	.touch #content3 .svc-footer #author {
		font-size: 1.65vh;
		top: 75%;
	}
}

/* NAV BUTTONS PHONES */

@media (max-width: 412px) and (orientation: portrait) {
	.touch .carousel-indicators {
		position: fixed;
		bottom: -4%;
	}
}

/* BOTH TYPE PHONES PORTRAIT MODE */
@media (max-width: 722px) and (orientation: portrait) {
	.touch .carousel-control-next,
	.touch .carousel-control-prev {
		display: none;
	}
}

/* LANDSCAPE MODE */

/* BOTH TYPE PHONES */

@media (min-width: 768px) and (max-width: 992px) and (orientation: landscape), (max-width: 722px) and (orientation: landscape) {
	.touch .carousel-item img {
		top: 20%;
		left: 25%;
		width: 60px;
		height: 60px;
		object-fit: cover;
	}

	.touch .carousel-item {
		position: fixed;
		top: 22%;
	}

	.touch .carousel-caption {
		top: 20%;
	}

	.touch .carousel-caption h3 {
		font-size: 7vh;
	}

	.touch .carousel-caption p {
		font-size: 3vh;
	}

	.carousel-control-prev-icon,
	.carousel-control-next-icon {
		position: fixed;
		top: 55%;
	}

	.touch .carousel-indicators {
		bottom: -9%;
	}

	.touch .svc-footer p {
		font-size: 2.5vh;
	}
}

/* NAV BUTTONS PHONES */

@media (max-width: 722px) and (orientation: landscape) {
	.touch .carousel-caption {
		top: 15%;
	}

	.touch .carousel-indicators {
		bottom: -11%;
	}
}

/** OUR CUSTOMERS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/** UNIVERSAL PROPERTIES */

#content4 {
	position: absolute;
	top: -.5px;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100.5%;
	background-image: url(../media/customers-bg.png);
	background-size: cover;
	background-position-x: center;
	background-position-y: center;
}

.logos {
	position: absolute;
	display: table;
	width: 86%;
	top: 35%;
	left: 7%;
	list-style: none;
	background-color: #fff;
	padding: 30px 0;
	border-radius: 20px;
	box-shadow: 3px 9px 29px 0px rgba(0,0,0,0.1);
	display: flex;
    justify-content: center;
    align-content: center;
}

.logos li {
	display: inline-block;
	width: 31%;
}

.logos li:first-child img {
	margin: 5%;
	width: 47%;
}

.logos li:nth-child(2) img {
	width: 47%;
	margin-top: 2%;
}


.logos li:nth-child(3) img {
	margin: 4.5%;
	width: 27%;
}

.logos li:nth-child(4) img {
	width: 26%;
	margin-top: 5%;
}

.logos li:nth-child(5) img {
	width: 30%;
	margin-top: 5%;
}

.logos li:last-child img {
	margin: 5%;
	width: 47%;
}

.logos li img {
	object-fit: cover;
	transition: filter, transform .5s;
}

.logos li img:hover {
	transform: scale(1.1);
	filter: grayscale(0);
	cursor: pointer;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.modal-content {
	position: absolute;
	top: 23vh;
	left: 10%;
	width: 400px;
	height: 300px;
	background-color: #F3EFF5;
	border-radius: 8px;
}

.modal-content:before,
.modal-content:after {
	content: "";
	position: absolute;
	width: 0;
	border-left: 195.6px solid transparent;
	border-right: 195.6px solid transparent;
	left: 3.5px;
}

.modal-content:before {
	bottom: 99.8%;
	border-bottom: 90px solid #F3EFF5;
}

.modal-content:after {
	top: 99.8%;
	width: 0;
	border-top: 90px solid #F3EFF5;
}

.modal-header {
    border-bottom: 0 none;
}

.modal-header a,
.modal-footer a {
	font-size: 0;
}

.modal-header button:focus {
	outline: none;
}

.modal-header img {
	position: absolute;
	top: 0;
	left: 35%;
	width: 100px;
	object-fit: cover;
}

.modals .modal:first-child .modal-header img,
.modals .modal:nth-child(3) .modal-header img {
	left: 38%;
    top: -5%;
}

.modals .modal:nth-child(2) .modal-header img {
    left: 38%;
    top: -15%;
}

.modals .modal:nth-child(4) .modal-header img,
.modals .modal:nth-child(5) .modal-header img,
.modals .modal:last-child .modal-header img {
    left: 37%;
    top: -17%;
}

.modal-body {
    margin-top: -1em;
}

.modal-body p {
	font-family: Bahnschrift;
	text-align: center;
	text-justify: inter-word;
	padding: 0 15px;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
}

.modals .modal:nth-child(3) .modal-body p {
	margin-top: 5%;
}

.modal-footer {
    border-top: 0 none;
}

.modal-footer ul.reviews {
	position: absolute;
	display: table;
	height: 30%;
	width: 80%;
	top: 92%;
	left: 5%;
	list-style: none;
	z-index: 1199;
}

.modal-footer ul.reviews li {
	display: table-cell;
	float: left;
	width: 33%;
	text-align: center;
}

.modal-footer ul.reviews li:first-child {
	margin-top: 6px;
}

.modal-footer ul.reviews li:last-child {
	margin-top: 5px;
}

.modals .modal:nth-child(2) .modal-footer ul.reviews li:last-child {
	margin-top: 4px;
}

.modal-footer img {
	width: 70px;
	object-fit: cover;
}

a.mobile{
	display: none
}

a.desktop{
	display: inline;
}

.cust-quote {
	position: absolute;
	width: 100%;
	height: 15%;
	top: 65%;
	left: 0;
	z-index: 99;
	line-height: .5;
}

.cust-quote span {
	font-family: 'Lucida Sans', Bahnschrift;
	font-style: normal;
	font-size: 5vh;
}

.cust-quote #quote-text {
	position: absolute;
	font-family: Poppins;
	font-style: italic;
	text-align: left;
	width: 95%;
	top: 35%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50% , -50%);
	font-size: 2.2vh;
	text-align: center;
	line-height: 0.8;
}


.cust-quote #author {
	position: absolute;
	font-family: Poppins;
	text-align: left;
	width: 80%;
	top: 65%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50% , -50%);
	font-size: 2.2vh;
	text-align: center;
	font-weight: bold;
}

/* DESKTOP SMALLER SCREEN */

@media (max-width: 992px) {
	.non-touch .logos {
		height: 40%;
		width: 90%;
		left: 2.5%;
	}

	.non-touch .logos li {
		width: 33%;
	}

	.non-touch .logos li img {
		height: 50%;
		width: 50%;
	}

	.non-touch .logos li:first-child img,
    .non-touch .logos li:nth-child(2) img,
    .non-touch .logos li:nth-child(3) img,
    .non-touch .logos li:nth-child(4) img,
    .non-touch .logos li:nth-child(5) img,
    .non-touch .logos li:last-child img {
		width: 30%;
        min-width: 60px;
	}
}

/*? MOBILE PROPERTIES */

.touch a.desktop{
	display:none;
}

.touch a.mobile{
	display:inline;
}

/* PORTRAIT MODE */

/* GESTURE ENABLED PHONES */

@media (max-width: 768px) and (orientation: portrait) {
	.touch .logos {
		position: absolute;
		display: block;
		height: 80%;
		width: 90%;
		top: 30%;
		left: -1%;
		list-style: none;
	}

	.touch .logos li {
        margin-top: 25px;
		height: 25%;
		width: 100%;
	}


	.touch .logos li:first-child img,
    .touch .logos li:nth-child(2) img,
    .touch .logos li:nth-child(3) img,
    .touch .logos li:nth-child(4) img,
    .touch .logos li:nth-child(5) img,
    .touch .logos li:last-child img {
        min-width: 60px;
		width: 25%;
		height: auto;
		object-fit: contain;
	}

    .touch .logos li:nth-child(2) img {
        margin-top: -5%;
    }

    .touch .logos li:nth-child(4) img {
        margin-top: -.5%;
    }

	.touch .logos li img {
		filter: grayscale(0);
	}

	.touch .modal-content {
		position: absolute;
		top: 23vh;
		left: 6%;
		width: 357px;
		height: 270px;
		background-color: #F3EFF5;
		border-radius: 8px;
	}

	.touch .modal-content:before,
	.touch .modal-content:after {
		content: "";
		position: absolute;
		width: 0;
		border-left: 174px solid transparent;
		border-right: 174px solid transparent;
		left: 3.5px;
	}

    .touch .modals .modal:first-child .modal-header img,
    .touch .modals .modal:nth-child(3) .modal-header img {
        top: -5%;
        left: 35%;
    }

    .touch .modals .modal:nth-child(2) .modal-header img {
        top: -15%;
        left: 35%;
    }

    .touch .modals .modal:nth-child(4) .modal-header img,
    .touch .modals .modal:nth-child(5) .modal-header img,
    .touch .modals .modal:last-child .modal-header img {
        top: -15%;
        width: 80px;
        left: 37%;
    }


	.touch .modal-body p {
		font-size: 1.6vh;
	}

	.touch .cust-quote {
		top: 75%;
	}

	.touch .cust-quote span {
		font-family: 'Lucida Sans', Bahnschrift;
		font-style: normal;
		font-size: 5vh;
	}

	.touch .cust-quote #quote-text {
		font-size: 1.4vh;
	}

	.touch .cust-quote #author {
		font-size: 1.4vh;
	}
}

/* DESKTOP MODE */

@media (min-width: 768px) and (orientation: portrait) {
	.touch .logos img {
		filter: grayscale(0);
	}

	.touch .logos li:first-child img {
		margin: 35px;
		width: 70%;
		height: 70%;
	}

	.touch .logos li:nth-child(2) img,
    .touch .logos li:nth-child(3) img,
    .touch .logos li:nth-child(4) img,
    .touch .logos li:nth-child(5) img {
		width: 50%;
		height: 50%;
	}

	.touch .logos li:last-child img {
		width: 50%;
		height: 50%;
	}

	.touch .modal-content {
		position: absolute;
		top: 30vh;
		left: -20%;
		width: 700px;
		height: 400px;
		background-color: #F3EFF5;
		border-radius: 8px;
	}

	.touch .modal-content:before,
	.touch .modal-content:after {
		content: "";
		position: absolute;
		width: 0;
		border-left: 346px solid transparent;
		border-right: 346px solid transparent;
		left: 3.5px;
	}

	.modal-content:before {
		border-bottom: 200px solid #F3EFF5;
	}

	.modal-content:after {
		border-top: 200px solid #F3EFF5;
	}

	.touch .modal-header img {
		transform: scale(1.4);
	}

	.touch .modals .modal:first-child .modal-header img {
		left: 44%;
	}

    .touch .modals .modal:nth-child(2) .modal-header img,
    .touch .modals .modal:nth-child(3) .modal-header img,
    .touch .modals .modal:nth-child(4) .modal-header img,
    .touch .modals .modal:nth-child(5) .modal-header img,
    .touch .modals .modal:last-child .modal-header img {
		left: 43%;
	}

    .touch .modal-body {
        margin-top: 1em;
    }

	.touch .modal-body p {
		font-size: 1.2vh;
	}

	.touch .modal-footer ul {
		position: absolute;
		width: 80%;
		left: 10%;
	}

	.touch .cust-quote {
		top: 52%;
	}

	.touch .cust-quote span {
		font-family: 'Lucida Sans', Bahnschrift;
		font-style: normal;
		font-size: 5vh;
	}

	.touch .cust-quote #quote-text {
		font-size: 1.2vh;
	}

	.touch .cust-quote #author {
		font-size: 1.2vh;
	}
}

/* NAV BUTTONS PHONES */

@media (max-width: 412px) and (orientation: portrait) {
	.touch .modal-content {
		top: 25vh;
		left: 3.5%;
		width: 320px;
		height: 230px;
		background-color: #F3EFF5;
		border-radius: 8px;
	}

	.touch .modal-content:before,
	.touch .modal-content:after {
		content: "";
		position: absolute;
		width: 0;
		border-left: 155.5px solid transparent;
		border-right: 155.5px solid transparent;
		left: 3.5px;
	}

	.touch .modal-body p {
		font-size: .6rem;
	}
}

@media (max-width: 320px) and (orientation: portrait) {
	.touch .modal-content {
		top: 25vh;
		left: 1%;
		width: 300px;
		height: 210px;
		background-color: #F3EFF5;
		border-radius: 8px;
	}

	.touch .modal-content:before,
	.touch .modal-content:after {
		content: "";
		position: absolute;
		width: 0;
		border-left: 146px solid transparent;
		border-right: 146px solid transparent;
		left: 3.5px;
	}

	.modal-footer ul.reviews li:nth-child(2) {
		margin-top: 2px;
	}

	.touch .modal-footer .reviews img {
		transform: scale(.7);
	}
}

/* LANDSCAPE MODE */

@media (min-width: 722px) and (orientation: landscape) {
	.touch .logos li img {
		filter: grayscale(0);
	}

	.touch .modal-content {
		position: absolute;
		top: 15vh;
		left: 20%;
		width: 270px;
		height: 180px;
		background-color: #F3EFF5;
		border-radius: 8px;
	}

	.touch .modal-content:before,
	.touch .modal-content:after {
		content: "";
		position: absolute;
		width: 0;
		border-left: 130px solid transparent;
		border-right: 130px solid transparent;
		left: 3.5px;
	}

	.touch .modal-content:before {
		border-bottom: 60px solid #F3EFF5;
	}

	.touch .modal-content:after {
		border-top: 60px solid #F3EFF5;
	}

	.touch .modal-header img {
		transform: scale(.7);
	}

	.touch .modals .modal:nth-child(1) .modal-header img {
		top: -15%;
		left: 26%;
	}

	.touch .modals .modal:nth-child(2) .modal-header img {
		top: -20%;
		left: 26%;
	}

	.touch .modals .modal:nth-child(3) .modal-header img {
		top: -15%;
		left: 22%;
	}

	.touch .modal-body p {
		position: absolute;
		top: -55%;
		left: 0;
		font-size: 10px;
	}

	.touch .modal-footer ul {
		left: 8px;
	}

	.touch .modal-footer ul img {
		width: 50px;
	}

	.touch .modal-footer li:nth-child(2) img {
		margin-top: 10%;
		margin-left: 10%;
	}

	.touch .modal-footer li:nth-child(3) img {
		margin-top: 0%;
	}

	.touch button.close {
		z-index: 999;
	}
}

/** CONTACT US
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/** UNIVERSAL PROPERTIES */

.upper-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background-color: #0367e0cf;
}

.contact-header {
	position: absolute;
	top: 15%;
	left: 14%;
	width: 80%;
	height: 15%;
}

.contact h3 {
	text-transform: capitalize;
	font-family: Poppins;
	color: #f3eff5;
	position: absolute;
	font-size: 2.5rem;
}

.contact h4 {
	font-family: Bahnschrift;
	color: #291F1E;
	position: absolute;
	font-size: 2.5vh;
	top: 50%;
}

label, .description {
	color: #a6a6ac33;
	text-transform: capitalize;
	font-size: 1rem;
}

form {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 1rem 0;
	margin: 0 10px;
	z-index: 299;
}

form h2 {
	font-size: 1.5rem;
	font-family: Poppins;
	text-align: left;
	text-transform: capitalize;
}

input, label {
	width: 90%;
	display: block;
	text-align: left;
	background: none;
	outline: none;
	resize: none;
	border: 0;
}

textarea {
	width: 39%;
	display: block;
	text-align: left;
	background: none;
	outline: none;
	resize: none;
	border: 0;
	resize: none;
}

input, textarea {
	transition: all .3s;
	border-bottom: 2px solid #bebed2;
	margin-bottom: 10px;
}

p, placeholder, input, textarea {
	font-family: Bahnschrift;
}
#qualiopi-text {
	font-size: 10px;
}

input::placeholder, textarea::placeholder {
	color: #291F1E;
	opacity: .3;
}

.contact button,
.contact button:active,
.contact button:focus {
	text-transform: uppercase;
	position: absolute;
	top: 80%;
	right: -5%;
	font-weight: 600;
	width: 20%;
	height: 20%;
	border: none;
	outline: none;
	cursor: pointer;
	margin-right: 5%;
	font-size: 6vh;
	background-color: transparent;
}

.contact button:hover {
	opacity: .8;
}

.col-4 {
	color: #F3EFF5;
}

.col-4 h2 {
	font-size: 1.5rem;
	font-family: Poppins;
	text-align: left;
	text-transform: capitalize;
	padding: 16px;
}

.col-4 p,
.col-4 a,
.col-4 a:active,
.col-4 a:focus {
	text-align: left;
	padding: 6px 16px;
	color: #ACACAF;
}

.col-4 i {
	vertical-align: top;
	margin-right: 12px;
	padding-left: 16px;
}

.col-4 td {
	display: flex;
	align-items: center;
	align-content: center;
}

.col-4 td p {
	margin-bottom: 0;
}


/*? DESKTOP PROPERTIES */

@media (min-width: 922px) {
	.form-holder {
		position: absolute;
		top: 60%;
		left: 50%;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-50% , -50%);
		width: 70%;
		height: 60%;
		background-color: #F3EFF5;
		box-shadow: 3px 3px 10px 3px rgba(0,0,0,0.2);
	}

	.form-holder .col-4 {
		background-color: #291F1E;
	}

	.mobile-contact {
		display: none;
	}

	.upper-bg img {
		position: absolute;
		top: 0;
		width: 50%;
		height: 100%;
		object-fit: contain;
	}
}

@media (max-width: 922px) {
	.upper-bg img {
		display: none;
	}
}

/*? MOBILE PROPERTIES */

/* PORTRAIT MODE */

@media (max-height: 650px) {
	textarea {
		height: 20%;
	}
}

@media (max-width: 922px) {
	.contact-header {
		display: none;
	}

	.form-holder {
		position: absolute;
		top: 45%;
		left: 50%;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-45% , -50%);
		width: 85%;
		height: 60%;
		background-color: #F3EFF5;
		box-shadow: 3px 3px 10px 3px rgba(0,0,0,0.2);
	}

	input, label {
		transform: scale(.8);
		width: 100%;
		margin-left: -10%;
	}

	textarea {
		transform: scale(.8);
		width: 90%;
		margin-left: -9%;
	}

	#single-label {
		margin-left: -10%;
	}

	.contact button,
	.contact button:active,
	.contact button:focus {
		margin-right: 10%;
	}
	.col-4 {
		display: none;
	}

	.mobile-contact {
		position: absolute;
		top: 80%;
		left: 50%;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-45% , -50%);
		width: 85%;
		height: 10%;
		background-color: #291F1E;
		box-shadow: 3px 3px 10px 3px rgba(0,0,0,0.2);
	}

	.mobile-contact table {
		margin: 15px auto;
	}

	.mobile-contact p,
	.mobile-contact span,
	.mobile-contact a,
	.mobile-contact a:active,
	.mobile-contact a:focus {
		font-size: .8rem;
		text-align: left;
		color: #ACACAF;
	}

	.mobile-contact i {
		display: none;
	}

	.mobile-contact td {
		display: flex;
		align-items: left;
		align-content: left;
		height: 1rem;
	}

}

/* LANDSCAPE MODE */
@media (max-width: 922px) and (orientation: landscape) {
	.touch .contact-header {
		display: none;
	}

	.touch .form-holder {
		position: absolute;
		top: 50%;
		left: 50%;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-45% , -50%);
		width: 85%;
		height: 55%;
		background-color: #F3EFF5;
		box-shadow: 3px 3px 10px 3px rgba(0,0,0,0.2);
	}

	.touch #contact-form {
		position: absolute;
		top: -20%;
		transform: scale(.5);
	}

	.touch button {
		font-size: 2.5rem;
		top: 140%;
	}

	.non-touch .mobile-contact {
		position: absolute;
		top: 80%;
		left: 50%;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-45% , -50%);
		width: 85%;
		height: 10%;
		background-color: #291F1E;
		box-shadow: 3px 3px 10px 3px rgba(0,0,0,0.2);
	}

	.touch .mobile-contact {
		position: absolute;
		top: 85%;
		left: 50%;
				-webkit-transform: translate(-50%, -50%);
				transform: translate(-45% , -50%);
		width: 85%;
		height: 15%;
		background-color: #291F1E;
		box-shadow: 3px 3px 10px 3px rgba(0,0,0,0.2);
	}

	.touch .mobile-contact table {
		margin: 5px 26%;
	}

	.mobile-contact p,
	.mobile-contact span,
	.mobile-contact a,
	.mobile-contact a:active,
	.mobile-contact a:focus {
		font-size: .8rem;
		text-align: left;
		color: #ACACAF;
	}
}

/* DESKTOP MODE */

@media (min-width: 922px) and (orientation: landscape) {
	.touch .contact-header {
		display: none;
	}

	.touch .form-holder {
		top: 55%;
		height: 80%;
	}

	.touch .upper-bg img {
		display: none;
	}
}


/*additional code*/
