/*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: 20px;
	line-height: 140%;
	scroll-behavior: smooth;
	font-weight: 300;
}

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

.contentSection li {
	line-height: 200%;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.contentSection li:before {
	font-family: 'jobstaweb';
	content: "\e902";
	color: #f6a431;
}

.contentSectionSplitContainer li {
	line-height: 160%;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.contentSectionSplitContainer li:before {
	font-family: 'jobstaweb';
	content: "\e900";
	color: #ffffff;
	font-size: 26px;
}

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

.contactElement {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 30px 0;
}

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

header {
	position: fixed;
	height: 50px;
	left: 0;
	top: 0;
	z-index: 10;
	background: #ffffff;
	box-shadow: 0 1px 4px 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: 14px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
}


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

/* 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;
}

#mobile_menu a.menuItem {
	padding: 5px 10px 10px 30px;
}

/* 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/jobstago_logo.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 - 340px);
	z-index: 2;
	background-color: #ffffff;
}

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

.fullContentSectionContainer {
	padding: 0;
	box-sizing: border-box;
	width: 100%;
}

.blueBackground {
	background-color: #0279ac;
	color: #ffffff;
}

.greyBackground {
	background-color: #f2f2f2;
}

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

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

.contentSectionWide {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	gap: 40px;
	padding: 20px 0;
}

.contentSectionSplitContainer {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 20px;
	box-sizing: border-box;
}

.contentSectionSplitContainer.reverse {
	flex-direction: column-reverse;
}

.contentSectionSplitContainer img, .contentSectionSplitContainer video {
	flex-shrink: 0;
	border-radius: 8px;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,0.3);
}

.contentSectionSplitContainer.plainImage img {
	box-shadow: none;
}

.imageSplitContainer {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 20px;
}

.contentSectionSplitContainer .imageSplitContainer img {
	width: 100%;
}

.landingHeaderContainer {
	background-image: url("../images/landing.webp");
	background-size: cover;
	min-height: 500px;
	max-height: 660px;
	background-position: center;
	color: #ffffff;
	position: relative;
	box-sizing: border-box;
}

.landingHeaderContainerBackground {
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
}

.landingHeader {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	height: 100%;
}

.landingHeaderContainer h1 {
	font-size: 28px;
	text-align: left;
}

.landingHeader li {
	font-size: 20px;
	list-style-type: '\2192';
	list-style-position: inside;
	line-height: 140%;
	font-weight: 400;
	color: #f2f2f2;
}

.landingContactButton {
	margin-top: 40px;
}

.landingHighlightButton {
	border-radius: 100%;
	font-size: 22px;
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #3CC4FF;
	align-self: center;
	font-weight: 600;
	flex-shrink: 0;
	margin: 20px 0;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,0.3);
	position: absolute;
	right: 0;
	bottom: 0;
}

/*
.landingHeader h2 span {
	color: #6CDF86;
}*/

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

h1 {
	font-size: 30px;
	letter-spacing: 2px;
	margin: 10px auto;
	text-align: center;
}

h2 {
	letter-spacing: 2px;
	margin: 5px 0;
	font-weight: 400;
}

h3 {
	margin: 5px 0;
}

p {
	letter-spacing: 1px;
}

.info {
	font-size: 80%;
	color: #888888;
	letter-spacing: 0;
}

.bold {
	font-weight: 600;
}

img, video {
	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;
	box-sizing: border-box;
}

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;
	width: 100%;
}

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

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

textarea {
	resize: vertical;
}

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

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

.clientElementContainer, .featureElementContainer {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.clientElementContainer {
	margin-top: 20px;
	gap: 20px 0;
}

.clientElementContainer > div {
	width: 100%;
	font-weight: 300;
	box-sizing: border-box;
	padding: 10px;
	font-size: 85%;
	border-radius: 4px;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-shrink: 0;
	margin-bottom: 10px;
	background-color: #f2f2f2;
	gap: 40px;
}

.clientElementContainer img {
	margin: 0 auto;
	height: 50px;
	display: block;
}

.comment {
	font-style: italic;
}

.featureElementContainer > div {
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
}

.priceOptions {

}

.priceElement {
	border-radius: 5px;
	text-align: center;
	background-color: #f2f2f2;
	box-sizing: border-box;
	box-shadow: 0 2px 6px 0 rgba(0,0,0,0.3);
}

.priceElementHeader {
	padding: 20px 0;
	background-color: #0279ac;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	color: #ffffff;
}

.priceElementHeader .subHeader {
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 400;
}

.priceElementHeader .price {
	margin-top: 15px;
	font-size: 40px;
}

.priceElementContent {
	padding: 20px;
}

.priceElementContent > div {
	margin: 20px 0;
	font-size: 16px;
	line-height: 120%;
}

.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;
}

.formRow div {
	width: 100%;
	box-sizing: border-box;
}

.noWrap {
	flex-wrap: nowrap;
}

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

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

a.button.blueButton, .button.blueButton {
	background-color: #0279ac;
}

a.button.blueButton:hover, .button.blueButton: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;
	gap: 20px;
}

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

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

.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/jobstago_logo_white.png");
	width: 110px;
	height: 50px;
}

footer h3 {
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.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;
}