@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* CSS Document */
HTML, BODY {
	margin: 0;	
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 1.3;
	color: #000000;
	background: #ffffff;
}

a {
	color: inherit;
	font-weight: 400;
	text-decoration: none;
}

DIV.inner {
	width: 100%;
	max-width: 1400px;
	min-width: 320px;
	margin: 0px auto;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
}

a img {
	border:none;
	display: block;
}
h2 {
	font-weight: 400;
}
p {
	font-weight: 300;
    display: block;
    font-size: 18px;
    margin-top: 0px;
}


p.center {
	text-align: center;
}

div.wrapper {
	overflow: hidden;
}
div.wrapper div.left {
	width: 50%;
	float: left;
}
div.wrapper div.right {
	width: 50%;
	float: right;
}

div.wrapper div.left.p45, div.wrapper div.right.p45 {
	width: 45%;
}

@media screen and (max-width: 500px) {
	div.wrapper div.left, div.wrapper div.right, div.wrapper div.left.p45, div.wrapper div.right.p45 {
		width: auto;
		float: none;
	}
}

/* Menu Top */
div#menu-top {
	width: 100%;
	min-width: 320px;
	position: fixed;
	z-index: 100;
	top: 0px;
	left: 0px;
	box-sizing: border-box;
	
	background: rgba(255,255,255,1);
	padding: 0px 5px;
	line-height: 43px;
	overflow: hidden;
}
div#menu-top a {
	color: #5f5f5f;
	font-weight: 500;
	font-size: 14px;
	display: inline-block;
	padding: 0px 10px;
	margin-right: 0px;
	position: relative;
	box-shadow: inset 0 -3px 0 -1px transparent;
	transition: box-shadow .5s ease-in-out;
	vertical-align: middle;
}
div#menu-top a.hover:hover {
	box-shadow: inset 0 -43px 0 -1px #ecb84a;
	color: #ffffff;
}
div#menu-top a::before {
	font-size: 16px;
}
div#menu-top a.phone::before {
	font-family: "Font Awesome 5 Free";
	content: "\f879";
	font-weight: 900;
	padding-right: 7px;
}
div#menu-top a.email::before {
	font-family: "Font Awesome 5 Free";
	content: "\f1fa";
	font-weight: 900;
	padding-right: 7px;
}
div#menu-top a.support::before {
	font-family: "Font Awesome 5 Free";
	content: "\f059";
	font-weight: 900;
	padding-right: 7px;
}

div#menu-top div#socials {
	float: right;
	text-align: right;
	overflow: hidden;
	vertical-align: middle;
}
div#menu-top div#socials a {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /*text-indent: 99999px;*/
    overflow: hidden;
    margin-right: 10px;
	padding: 0px;
	
	font-size: 35px;
}
div#menu-top div#socials a.facebook {
    /*background-image: url(/images/social/facebook.png);*/
}
div#menu-top div#socials a.linkedin {
    /*background-image: url(/images/social/linkedin.png);*/
}
div#menu-top div#socials a.twitter {
    /*background-image: url(/images/social/twitter.png);*/
}
div#menu-top div#socials a.instagram {
    /*background-image: url(/images/social/instagram.png);*/
}
div#menu-top div#socials a i {
    line-height: 44px;
}

/* Menu */
div#menu {
	width: 100%;
	min-width: 320px;
	position: fixed;
	text-align: right;
	z-index: 100;
	top: 50px;
	right: 0px;
	
	box-sizing: border-box;
	padding: 0px 15px 0px 15px;
	background: rgba(255,255,255,0.9);
}

div#menu .openmenu {
	display: none;
	color: #5f5f5f;
}
div#menu .links {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	padding: 70px 0px 0px 0px;
}
div#menu .links li {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	display: inline-block;
}
div#menu .links li span.expandsub {
	display: none;
}
div#menu .links li ul {
	position: absolute;
	background: rgba(255,255,255,0.9);
	text-align: left;
	
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	
	max-height: 0px;
	box-sizing: border-box;
	opacity: 0;
	z-index: -999999;
	overflow: hidden;
}
@media screen and (min-width: 650px) {
	div#menu .links li:hover ul {
		max-height: 2000px;
		opacity: 1;
		z-index: 999999;
		
		-webkit-transition: max-height 500ms ease-in-out, opacity 500ms ease-in-out;
		-moz-transition: max-height 500ms ease-in-out, opacity 500ms ease-in-out;
		-o-transition: max-height 500ms ease-in-out, opacity 500ms ease-in-out;
		transition: max-height 500ms ease-in-out, opacity 500ms ease-in-out;
	}
	
	div#menu .links li ul {
		-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.43);
		-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.43);
		box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.43);
	}
}
div#menu .links li ul li {
	display: block;
}
div#menu .links a {
	display: block;
	padding: 10px 15px;
	color: #fffffff;
	font-size: 20px;
	font-weight: 500;
	
	color: #5f5f5f;
	
	box-shadow: inset 0 -3px 0 -1px transparent;
	transition: box-shadow .5s ease-in-out;
}
@media screen and (min-width: 650px) {
	div#menu .links a:hover {
		box-shadow: inset 0 -48px 0 -1px #ecb84a;
		color: #ffffff;
	}
}
div#menu a.logo {
	float: left;
	text-align: left;
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 20px;
}
div#menu a.logo img {
	width: auto;
	height: 75px;
	display: block;
	float: left;
}
div#menu a.logo span {
	display: block;
    border-left: 2px solid #ecb84a;
    margin-left: 15px;
    padding-left: 15px;
    color: #ecb84a;
    line-height: 25px;
    font-size: 26px;
    float: left;
    font-weight: 500;
}


/* Sections */
section {
	padding: 70px 0px;
	box-sizing: border-box;
	position:relative;
	overflow: hidden;
	border-bottom: 2px solid #ffffff;
	text-align: center;
}
section.first.column1textonly  {
	padding-top: 234px !important;
}
section.column1textonly .text.width-80  {
	width: 80%;
}
section.column1textonly .text.spacing-10  {
	padding-left: 10%;
}
section.column1textonly .text.textcolour-white  {
	color: #ffffff;
}
section.column1textonly.text-center  {
	text-align: center;
}
section.column1textonly .text .textalign-center  {
	text-align: center;
}
section.column1textonly .text .large  {
	font-size: 60px;
    font-weight: 200;
    display: block;
	margin: 0px;
}

div.input-row input[type=text], 
div.input-row input[type=email], 
div.input-row input[type=number], 
div.input-row input[type=password], 
div.input-row textarea {
	color: #000000;
}
form#requestform * {
	box-sizing: border-box;
}
form#requestform h2 {
	margin: 0px 0px 10px 0px;
    background: #5f5f5f;
    color: #ffffff;
    padding: 0px 15px;
    line-height: 36px;
    font-size: 24px;
    text-align: center;
}
form#requestform .wrapper {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
form#requestform .wrapper .input-row {
	width: calc( (100% - 15px) / 2 );
	flex-basis: calc( (100% - 15px) / 2 );
}
form#requestform .margin {
	margin-top: 15px;
}
form#requestform .action-row .btn {
    background: #ecb84a;
    padding: 10px 15px;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    border: 0px solid #ffffff;
    box-sizing: border-box;
    color: #000000;
    margin-top: 0px;
    line-height: 47px;
    padding: 0px 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    display: inline-block;
    width: 250px;
}
form#requestform select {
    background: transparent;
    color: #000000;
}


form#requestform div.table {
	margin-top: 15px;
}
form#requestform div.table .row {
	overflow: hidden;
	display: flex;
}
form#requestform div.table .row:nth-of-type(odd) {
	background: rgba(0,0,0,0.05);
}
form#requestform div.table .row.header {
	background: #5f5f5f;
	text-align: left;
	color: #ffffff;
}
form#requestform div.table .row .cell {
	float: left;
	box-sizing: border-box;
	padding: 8px;
}
form#requestform div.table .row .cell:nth-of-type(1) {
	width: calc( ( 100% - 34px ) / 4 );
}
form#requestform div.table .row .cell:nth-of-type(2) {
	width: calc( ( 100% - 34px ) / 4 );
}
form#requestform div.table .row .cell:nth-of-type(3) {
	width: calc( ( 100% - 34px ) / 4 );
}
form#requestform div.table .row .cell:nth-of-type(4) {
	width: calc( ( 100% - 34px ) / 4 );
}
form#requestform div.table .row .cell:nth-of-type(5) {	
	width: 34px;
	line-height: 47px;
}
form#requestform div.table .row .cell:nth-of-type(5) i {	
	display: block;
	cursor: pointer;
	line-height: 47px;
}
.moreRequests {
	background: #5f5f5f;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	margin-top: 15px;
	display: block;
	line-height: 40px;
}
.mobileOnly {
	display: none;
}
@media screen and (max-width: 700px) {
	.mobileOnly {
		display: block;
	}
	form#requestform .wrapper .input-row {
		width: 100%;
		flex-basis: 100%;
	}
	form#requestform div.table .row.header {
		display: none;
	}
	form#requestform div.table .row {
		flex-wrap: wrap;
		position: relative;
		padding-top: 15px;
	}
	form#requestform div.table .row .cell {
		text-align: left;
		display: flex;
		flex-basis: 100% !important;
		width: 100% !important;
	}
	form#requestform div.table .row .cell .input-row {
		flex-grow: 1;
	}
	form#requestform div.table .row .cell:nth-of-type(1)::before {
		content: "Employee:";
		display: inline-block;
		line-height: 47px;
		margin-right: 10px;
	}
	form#requestform div.table .row .cell:nth-of-type(2)::before {
		content: "Item:";
		display: inline-block;
		line-height: 47px;
		margin-right: 10px;
	}
	form#requestform div.table .row .cell:nth-of-type(3)::before {
		content: "Requested Date:";
		display: inline-block;
		line-height: 47px;
		margin-right: 10px;
	}
	form#requestform div.table .row .cell:nth-of-type(4)::before {
		content: "Additional Info:";
		display: inline-block;
		line-height: 47px;
		margin-right: 10px;
	}
	form#requestform div.table .row .cell.actions {
		position: absolute;
		top: 5px;
		left: 5px;
		width: auto !important;
		padding: 0px;
	}
	form#requestform div.table .row .cell.actions i {
		line-height: 18px;
	}
}

@media screen and (max-width: 1200px) {
	div#menu-top {
		position: static;
	}
	div#menu {
		text-align: center;
		position: absolute;
	}
	div#menu a.logo {
		float: none;
		clear: both;
		margin: 20px auto 0px auto;
		display: inline-block;
		text-align: left;
	}
	div#menu .links {
		float: none;
		clear: both;
		padding: 0px 0px 0px 0px;
	}
}
@media screen and (max-width: 950px) {
	div#menu-top {
		text-align: center;
	}
	div#menu-top div#socials {
		display: none;
	}
}@media screen and (max-width: 650px) {
	div#menu-top a.support {
		display: none;
	}
}
@media screen and (max-width: 550px) {
	div#menu a.logo img {
		height: 60px;
	}
	div#menu a.logo span {
		line-height: 20px;
		font-size: 18px;
	    margin-left: 10px;
		padding-left: 10px;
	}
	div#menu-top a {
		font-size: 12px;
	}
	div#menu-top a::before {
		font-size: 12px;
	}
}


section.first.column1textonly {
	padding-top: 174px !important;
    padding-bottom: 10px;
}
@media screen and (max-width: 800px) {
	section.first.column1textonly {
		padding-top: 119px !important;
		padding-bottom: 10px;
	}
	section.column1textonly .text .large {
		font-size: 32px;
	}
}
@media screen and (max-width: 550px) {
	section.first.column1textonly {
		padding-top: 105px !important;
		padding-bottom: 10px;
	}
}


.popupNotice {
	position: fixed;
	top: 0px;
	left: 0px;
	background: rgba(0,0,0,0.6);
	width: 100%;
	height: 100vh;
	z-index: -800;
	display: none;
	opacity: 0;
}
.popupNotice.show {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	
	opacity: 1;
	z-index: 800;
}
.popupNotice .inside {
	padding: 20px 20px 20px 20px;
	background: #ffffff;
	border: 1px solid #5f5f5f;
	border-radius: 10px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}
.popupNotice .inside h2 {
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	line-height: 32px;
	margin: 0px 0px 25px 0px;
}
.popupNotice .inside .close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 32px;
	cursor: pointer;
	line-height: 32px;
}