@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;
}
a img {
	border:none;
	display: block;
}
img {
	width: 100%;
	height: auto;
}
strong {
	font-weight: bold;
}

.inner {
	width: 100%;
	min-width: 320px;
	box-sizing: border-box;
	max-width: 1400px;
	margin: 0px auto;
	position: relative;
	overflow: hidden;
}

/* Wrapper Elements */
div.wrapper {
	overflow: hidden;
}

/* Content */
h1 {
	margin: 0px;
}
h2 {
	margin: 0px;
}

/* 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: 16px;
	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 #ec774a;
	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: "\f590";
	font-weight: 900;
	padding-right: 7px;
	font-size: 18px;
}
div#menu-top a.support {
	background: #ec774a;
	color: #ffffff;
}

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 #ec774a;
		color: #ffffff;
	}
}
div#menu a.logo {
	float: left;
	text-align: left;
	overflow: hidden;
	margin-top: 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 #ec774a;
    margin-left: 15px;
    padding-left: 15px;
    color: #ec774a;
    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;
}


/* List Styling */
section ul, section ul li {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	position: relative;
}
section ul {
	padding-left: 20px;
}
section ul li {
	padding-left: 30px;
}
section ul li::before {
	position: absolute;
	left: 0px;
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: 900;
}


/* Footer */
div#footer {
	padding: 0px 0px 70px 0px;
	background: #5f5f5f;
	color: #ffffff;
}
div#footer .catchline {
	font-size: 19px;
	line-height: 30px;
	text-align: center;
	border-bottom: 2px solid #ffffff;
	padding: 15px 0px;
	margin-bottom: 40px;
	background: #ffffff;
	color: #5f5f5f;
}
div#footer .menus {
	overflow: hidden;
	font-weight: 300;
	line-height: 26px;
}
div#footer .menus dl {
	width: 33%;
	float: left;
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}
div#footer .menus dl:nth-of-type(2) {
	width: 34%;
}
div#footer .menus dl dd, div#footer .menus dl ul, div#footer .menus dl li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

div#footer .menus dl dt {
	font-size: 24px;
	font-weight: 100;
	margin-bottom: 20px;
	padding: 0px 15px;
}
div#footer .menus dl dt a {
	font-weight: 100;
}
div#footer .menus dl dd {
	padding: 0px 15px;
}
div#footer .menus dl dd.menulinks {
	padding: 0px 0px;
}
div#footer .menus dl dd a {
	font-weight: 300;
}
div#footer .menus dl dd a.social {
	font-size: 35px;
	margin-right: 15px;
}
div#footer .menus dl dd .pad {
	padding-right: 8px;
}


div#footer .menus dl dd.menulinks ul li a {
	display: block;
	box-shadow: inset 0 -3px 0 -1px transparent;
	transition: box-shadow .5s ease-in-out;
	vertical-align: middle;
	padding: 0px 15px;
	max-width: 150px;
}
div#footer .menus dl dd.menulinks ul li a.hover:hover {
	box-shadow: inset 0 -43px 0 -1px #ec774a;
	color: #ffffff;
}

/* Mini customer feedback */
a#mini-customer-feedback {
	display: inline-block;
    width: 152px;
	text-align: center;
}
a#mini-customer-feedback .stars {
	overflow: hidden;
	height: 26px;
	position: relative;
	margin: 0px auto;
	clear: both;
	text-align: left;
}
a#mini-customer-feedback .stars .fa-star {
	font-size: 24px;
}
a#mini-customer-feedback .stars .fa-star:nth-of-type(1) {
	position: absolute;
	top: 0px;
	left:0px;
}
a#mini-customer-feedback .stars .fa-star:nth-of-type(2) {
	position: absolute;
	top: 0px;
	left:31px;
}
a#mini-customer-feedback .stars .fa-star:nth-of-type(3) {
	position: absolute;
	top: 0px;
	left:62px;
}
a#mini-customer-feedback .stars .fa-star:nth-of-type(4) {
	position: absolute;
	top: 0px;
	left:93px;
}
a#mini-customer-feedback .stars .fa-star:nth-of-type(5) {
	position: absolute;
	top: 0px;
	left:124px;
}
a#mini-customer-feedback .stars .fa-star {
	color: #5f5f5f;
}
a#mini-customer-feedback .stars .fa-star.checked {
	color: #ec774a;
}
a#mini-customer-feedback .stars .black-backing {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 99;
	height: 30px;
    overflow: hidden;
	width: 100%;
}
a#mini-customer-feedback .stars .gold-top {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 100;
	height: 30px;
    overflow: hidden;
	width: 100%;
}
a#mini-customer-feedback .caption {
	color: #5f5f5f;
	font-size: 12px;
	line-height: 12px;
	margin-top: 0px;
}


/* Main Feedback */
#rotatingFeedback {
	background: #5f5f5f;
	color: #ffffff;
	padding: 40px 0px;
}
#rotatingFeedback h2 {
	font-size: 60px;
	font-weight: 200;
	display: block;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	margin: 0px 0px 15px 0px;
}
#rotatingFeedback .reviews {
	overflow: hidden;
	display: flex;
}
#rotatingFeedback .reviews .review {
	display: inline-block;
	width: calc( 25% - 16px );
	box-sizing: border-box;
	vertical-align: top;
	padding: 10px;
	
	margin: 0px 8px 0px 8px;
	
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#rotatingFeedback .reviews .review .rating {
	overflow: hidden;
    height: 22px;
}
#rotatingFeedback .reviews .review .rating .fa-star {
	font-size: 22px;
	line-height: 22px;
	margin-right: 3px;
}
#rotatingFeedback .reviews .review .rating .fa-star {
	color: #212121;
}
#rotatingFeedback .reviews .review .rating .fa-star.checked {
	color: #ec774a;
}
#rotatingFeedback .reviews .review .date {
	font-size: 10px;
	line-height: 16px;
	font-style: italic;
	margin-bottom: 7px;
}
#rotatingFeedback .reviews .review .comment {
	font-size: 14px;
	font-style: italic;
}
#rotatingFeedback .reviews .review .comment::before {
	content: "\0022";
}
#rotatingFeedback .reviews .review .comment::after {
	content: "\0022";
}

section.first.column2textonly  {
	padding-top: 234px !important;
	min-height: 100vh;
	
	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;
}
section.first.column1textonly  {
	padding-top: 234px !important;
}


/* Media Queries */
@media screen and (max-width: 1400px) {
	.inner {
		padding-left: 15px;
		padding-right: 15px;
	}
}
@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: 1100px) {
	div#footer .menus dl {
		float: none;
		clear: both;
		width: 100%;
		margin-bottom: 35px;
	}
	div#footer .menus dl:nth-of-type(2) {
		width: 100%;
	}
	div#footer .menus dl:nth-of-type(3) {
		margin-bottom: 0px;
	}
	#rotatingFeedback .reviews {
		flex-wrap: wrap;
	}
	#rotatingFeedback .reviews .review {
		width: calc( 50% - 16px );
	}
	#rotatingFeedback .reviews .review:nth-of-type(4n+1) {
		margin-bottom: 16px;
	}
	#rotatingFeedback .reviews .review:nth-of-type(4n+2) {
		margin-bottom: 16px;
	}
}
@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;
	}
	div#menu {
		padding: 0px;
		background: transparent;
		
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
        user-select: none;
	}
	div#menu a.logo {
		margin: 0px auto;
		padding: 20px 0px;
		display: block;
		text-align: center;
		vertical-align: top;
		background: rgba(255,255,255,0.90);
	}
	div#menu a.logo img {
		float: none;
		display: inline-block;
		vertical-align: top;
	}
	div#menu a.logo span {
		float: none;
		display: inline-block;
		text-align: left;
		vertical-align: top;
	}
	div#menu .openmenu {
		display: block;
		font-size: 20px;
		line-height: 40px;
		text-align: left;
		padding: 0px 15px 0px 15px;
		cursor: pointer;
		background: rgba(255,255,255,0.85);
		font-weight: 500;
	}
	div#menu .openmenu:before {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f0c9";
		line-height: 40px;
	}
	div#menu .openmenu:after {
		content: "Menu";
		padding-left: 7px;
		line-height: 40px;
	}
	div#menu .links {
		overflow: hidden;
		max-height: 0px;
		opacity: 0;
	}
	div#menu.open .links {
		background: rgba(255,255,255,0.95);
		max-height: 50000px;
		opacity: 1;
		text-align: left;
		line-height: 32px;
		
		-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;
		
		-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.43);
		-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.43);
		box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.43);
	}
	div#menu .links a {
		padding: 7px 52px 7px 15px;
		font-weight: 300;
	}
	div#menu .links li {
		display: block;
		position: relative;
	}
	div#menu .links li ul {
		position: static;
		background: transparent;
		text-align: left;
		background: rgba(0,0,0,0.15);
	}
	div#menu .links li.open ul {
		max-height: 5000px;
		opacity: 1;
		z-index: 999999;
		
		-webkit-transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out;
		-moz-transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out;
		-o-transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out;
		transition: max-height 800ms ease-in-out, opacity 800ms ease-in-out;
	}
	div#menu .links li ul a {
		padding: 7px 15px;
	}
	div#menu .links li.open a {
		box-shadow: inset 0 -48px 0 -1px #ec774a;
		color: #ffffff;
	}
	div#menu .links li.open ul a {
		box-shadow: inherit;
		color: inherit;
	}

	div#menu .links li span.expandsub {
		display: block;
		position: absolute;
		top: 7px;
		right: 10px;
		cursor: pointer;
		width: 32px;
		text-align: center;
		
		-webkit-border-radius: 7px;
		-moz-border-radius: 7px;
		border-radius: 7px;
		background: rgba(255,255,255,0.3);
		
		-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
		-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
		box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
	}
	div#menu .links li span.expandsub:before {
		display: block;
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f107";
		line-height: 32px;
		
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	div#menu .links li.open span.expandsub:before {
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}
@media screen and (max-width: 550px) {
	#rotatingFeedback .reviews .review {
		width: calc( 100% - 16px );
	}
	#rotatingFeedback .reviews .review:nth-of-type(4n+1) {
		margin-bottom: 16px;
	}
	#rotatingFeedback .reviews .review:nth-of-type(4n+2) {
		margin-bottom: 16px;
	}
	#rotatingFeedback .reviews .review:nth-of-type(4n+3) {
		margin-bottom: 16px;
	}
	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#footer .catchline {
		font-size: 14px;
		line-height: 19px;
	}
	
	div#menu-top a {
		font-size: 12px;
	}
	div#menu-top a::before {
		font-size: 12px;
	}
}