/*Remove tap highlight on iOS/ANdroid */
* {
  	-webkit-tap-highlight-color: rgba(0,0,0,0);
  	-webkit-touch-callout: none;
	-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
  	font-family: 'Open Sans', sans-serif;
}


/* Layout styles */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	min-width: 320px;
	background-color: #ffffff;
	color: #333333;
	font-size: 18px;
	line-height: 140%;
	scroll-behavior: smooth;
	font-weight: 400;
}

ul, li {
	list-style: none;
	padding: 0;
	margin: 0;
}

#container {
	min-width: 320px;
}

.main {
	position: relative;
	padding-top: 50px;
}

header, footer, .footer {
    width: 100%;
}

header {
	position: fixed;
	height: 50px;
	left: 0;
	top: 0;
	z-index: 10;
	background: #ffffff;
	box-shadow: 0 0 2px 1px rgba(0,0,0,0.1);
	padding: 0 16px;
	box-sizing: border-box;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	height: 100%;
	box-sizing: border-box;
}

a {
	color: #3CC4FF;
	text-decoration: none;
	transition: all 0.4s ease;
	cursor: pointer;
}

a:hover {
	color: #009EE2;
}

.uppercase {
	text-transform: uppercase;
}

a.menuItem {
	color: #333333;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 5px 10px 10px 30px;
	display: block;
}

a.menuItem:hover, a.menuItem.active {
	color: #f19e2a;
}

/* mobile menu sliding effect */
#container, header, body {
    transition: transform 0.4s ease 0s;
}

/** Start: Mobile Menu CSS  **/

#mobile_menu_wrapper {
    display: none;
	width: 260px;
	position: fixed;
	top: 0;
	left: auto;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.openMenu #mobile_menu_wrapper {
	display: block;
}

#mobile_menu_wrapper:after {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    content: "";
    display: block;
    height: 120%;
    left: auto;
    right: 100%;
    position: absolute;
    top: -10%;
    width: 20px;
    z-index: 99;
}

.openMenu #container, .openMenu header {
    transform: translate3d(-260px, 0px, 0px);
}

.mobileNavbar {
    height: 50px;
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	position: absolute;
}

#mobile_menu {
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
}

/* End mobile menu */

.menu {
	display: none;
}

.mobileMenu {
	background-image: url("../images/menu.svg");
	width: 48px;
	height: 48px;
	background-size: 36px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.logo {
	background-image: url("../images/jobsta_logo_dark_sub.png");
	width: 110px;
	height: 50px;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
}

#content {
	position: relative;
	height: 100%;
	min-height: calc(100vh - 320px);
	z-index: 2;
	background-color: #ffffff;
}

.contentSectionContainer {
	padding: 24px 16px;
	box-sizing: border-box;
	width: 100%;
}

.blueBackground {
	background-color: #0a4057;
	color: #ffffff;
}

.clientImages {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.clientImages img {
	max-width: 50%;
}

.contentSection {
	max-width: 1024px;
	margin: 0 auto;
}

.landingHeaderContainer {
	background-color: #0a4057;
}

.landingHeader {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

h1, h2, h3 {
	margin: 0;
	line-height: 120%;
}

.landingHeaderContainer h1 {
	color: #ffffff;
	font-size: 28px;
	letter-spacing: 2px;
	margin:0 auto;
	padding: 20px 16px;
	max-width: 1024px;
	box-sizing: border-box;
	text-transform: none;
}

h1 {
	text-transform: uppercase;
	font-size: 32px;
	letter-spacing: 2px;
	margin: 10px 0;
}

h2 {
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 5px 0;
}

h3 {
	margin: 5px 0;
}

p {
	letter-spacing: 1px;
}

p:last-of-type {
	margin-bottom: 0;
}

img {
	max-width: 100%;
	height: auto;
}

input[type=text], textarea {
	width: 100%;
	outline: none;
	font-size: 20px;
	border: 1px solid #cccccc;
    transition: transform 0.4s ease 0s;
	padding: 4px;
}

input[type=text]:focus, textarea:focus {
	border: 1px solid #009EE2;
}
input.error, textarea.error {
	border-color: #ff0000;
}

.formRow.error label, .errorMsg {
	color: #ff0000;
}

.errorMsg {
	font-size: 14px;
}

.hidden {
	display: none;
}

.successMsg {
	color: #396F00;
	background-color: #dff2bf;
	padding: 10px;
}

input[type=checkbox] {
	width: 30px;
	height: 30px;
}

label {
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
}

textarea {
	resize: vertical;
}

.highlightText {
	color: #009EE2;
	font-weight: 600;
}

.splitElement, .teamElement {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.teamElement {
	font-size: 80%;
	justify-content: center;
}

.teamElement > div:not(:last-child) {
	margin-right: 7px;
}

.serviceElement, .productElement, .referenceElement, .contactElement {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 30px 0;
	gap: 20px;
}

.serviceElement.inverse, .productElement.inverse, .referenceElement {
	flex-wrap: wrap-reverse;
}

.referenceElement, .contactElement {
	align-items: flex-start;
}

.serviceElement img, .productElement img {
	flex-grow: 0;
	flex-shrink: 0;
}

.serviceElement h2 {
	color: #009EE2;
}

.serviceElement.inverse h2 {
	color: #f6a431;
}

.formContainer {
	width: 100%;
	max-width: 740px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.formRow {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.noWrap {
	flex-wrap: nowrap;
}

.centerBox {
	margin-top: 40px;
	text-align: center;
}

.bottomLine {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
}

.inverse .bottomLine .line {
	background-color: #f6a431;
}

.inverse .bottomLine .dot {
	background-color: #f6a431;
}

.bottomLine .line {
	height: 2px;
	width: 100%;
	background-color: #009EE2;
}

.bottomLine .dot {
	width: 10px;
	height: 10px;
	background-color: #009EE2;
	border-radius: 100%;
}


a.button, .button {
	padding: 10px 20px;
	text-transform: uppercase;
	white-space: nowrap;
	color: #ffffff;
	text-decoration: none;
	background-color: #0279ac;
	transition: all 0.3s ease;
	cursor: pointer;
	letter-spacing: 1px;
	font-size: 18px;
	display: inline-block;
	margin: 10px 0;
	border: none;
}

a.button:hover, .button:hover {
	background-color: #009EE2;
}

footer {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	z-index: 1;
	box-sizing: border-box;
	background-color: #222222;
	color: #f8f8f8;
	font-size: 14px;
	padding: 10px 16px;
	position: relative;
}

.footerContainer {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.footerMain {
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}

.footerMain > div {
	width: 100%;
}

.footerMeta {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 20px;
	gap: 10px;
}

.footerMeta > div {
	display: flex;
	gap: 10px;
}

footer .logo {
	background-image: url("../images/jobsta_orange_white_web.png");
	width: 110px;
	height: 50px;
}


.contactLinks {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 60px;
}

footer a.iconMail {
	font-size: 10px;
	border: 2px solid #3CC4FF;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
}