/* WHIN Manufacturing Alliance styles */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Font faces ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
@font-face {
    font-family: "AeroMaticsLight";
    src: url("../fonts/aeromatics/aero_matics_display_light-webfont.woff2") format("woff2"),
         url("../fonts/aeromatics/aero_matics_display_light-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "AeroMaticsRegular";
    src: url("../fonts/aeromatics/aero_matics_regular-webfont.woff2") format("woff2"),
         url("../fonts/aeromatics/aero_matics_regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}


/* General declarations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
* {
	box-sizing: border-box;
}
body,
html {
	width: 100%;
	height: 100%;
}

body {
	color: #58595b;
	font-family: Lato, Arial, sans-serif;
	overflow-x: hidden;
}
hr {
	max-width: 50px;
	border-width: 3px;
	border-color: #ccc;
}
a {
	color: #00bfb0;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
a:hover {
	color: #008073;
	text-decoration: none;
}
h1 {
}
h2 {
	font-size: 2.4rem;
}
h3 {
}
h4 {
	color: #58595b;
	text-align: left;
	text-transform: uppercase;
}
.bg-primary {
	background-color: #F05F40 !important;
}
.bg-dark {
	background-color: #212529 !important;
}
.text-faded {
	color: rgba(255, 255, 255, 0.7);
}

section {
	padding: 6rem 0;
	position: relative;
	z-index: 20;
}
.section-heading {
	margin-top: 0;
}
.container {
	position: relative;
}

::-moz-selection {
	color: #fff;
	background: #212529;
	text-shadow: none;
}
::selection {
	color: #fff;
	background: #212529;
	text-shadow: none;
}
img::selection {
	color: #fff;
	background: transparent;
}
img::-moz-selection {
	color: #fff;
	background: transparent;
}

.hidden {
	display: none;
}
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0.0;
}
.visible {
  transition: opacity 0.5s ease;
  opacity: 1.0;
}
.justified {
	text-align: justify;
}
.hidden {
	display: none;
}
.text-primary {
	color: #F05F40 !important;
}
.dropCap {
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1;
}
.clear {
	clear: both;
}
.pipe {
	opacity: 0.5;
	padding: 0 0.333rem;
}

/* 3. Navbar ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#mainNav {
	background: #20b7aa;
	border-bottom: 1px solid rgba(33, 37, 41, 0.1);
	font-family: "AeroMaticsRegular", Arial, sans-serif;
	font-size: 1.1rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.5px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 99;
}
#mainNav.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}
/* Logo */
#mainNav .navbar-brand {
	letter-spacing: 0.25rem;
}
#mainNav .navbar-brand {
	color: #fff;
	font-weight: 700;
	opacity: 0.9;
	text-transform: uppercase;
}
#mainNav .navbar-brand img {
	padding: 1rem 0;
	width: 90px;
}
#mainNav .navbar-brand img.logo-black {
	display: none;
}
#mainNav .navbar-brand img.logo-white {
	display: inline;
}
@media (max-width: 640px) {
	#mainNav .navbar-brand {
		font-size: 1rem;
	}
	#mainNav .navbar-brand img {
		width: 50px;
	}
}
/* Links */
#mainNav .nav-link,
#mainNav .nav-link:focus {
	border-bottom: 1px solid transparent;
	border-radius: 3px;
	color: #eee;
	font-size: 1rem;
	text-transform: uppercase;
}
#mainNav .nav-link:hover,
#mainNav .nav-link:focus:hover {
	border-bottom: 1px solid #00bdaa;
	color: #fff;
}
#mainNav .navbar-nav > li.nav-item > a.nav-link {
	margin: 0 0.5rem;
	padding: 0.25rem 1rem;
}
#mainNav .nav-item.active .nav-link {
	background-color: #777;
	border: 0;
	color: #fff;
}
#mainNav .nav-item.active .nav-link:hover,
#mainNav .nav-item.active .nav-link:focus:hover {
	border-bottom: 0;
	color: #fff;
}
/* Links when scrolled down */
#mainNav.navbar-shrink {
	border-bottom: 1px solid rgba(32, 32, 32, 0.1);
	background-color: rgba(255,255,255,0.95);
	color: #000;
}
#mainNav.navbar-shrink .logo-black {
	display: inline !important;
}
#mainNav.navbar-shrink .logo-white {
	display: none !important;
}
#mainNav.navbar-shrink .nav-link,
#mainNav.navbar-shrink .nav-link:focus {
	color: #999;
}
#mainNav.navbar-shrink .nav-link:hover,
#mainNav.navbar-shrink .nav-link:focus:hover {
	color: #000;
}
@media (max-width: 992px) {
	#mainNav {
		border-bottom: 1px solid rgba(32, 32, 32, 0.1);
	}
	#mainNav .navbar-brand {
		opacity: 1;
		text-transform: uppercase;
	}
	#mainNav .navbar-nav > li.nav-item > a.nav-link {
		padding-right: 0;
		text-align: right;
	}
}

/* Content ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
section.content {
	background: url("../img/backgrounds/polygonsFaded.png");
	background-size: cover;
	min-height: 52rem;
	padding: 5.4rem 0 5rem 0;
}

.breadcrumbs {
	font-size: 1.25rem;
	margin: 2rem 0 1rem 0;
	text-align: center;
}
.breadcrumbs a {
	display: inline-block;
	margin-right: 0.5rem;
}
.breadcrumbs a:not(:last-child) {
	color: #333;
}
.breadcrumbs a:not(:last-child):hover {
	color: #00bfb0;
}
.breadcrumbs a:not(:last-child):after,
.breadcrumbs a:not(:last-child):hover:after {
	color: #333;
	content: ">";
	padding-left: 0.5rem;
}

.listItem {
	margin: 1rem 0;
}
.listItemHead {
	font-size: 1.25rem;
	font-weight: 300;
}
/* color: #509994; */
.listItemSubhead {
	color: #58597b;
}
.listItemBody {
	font-size: 0.9rem;
}

.paginator {
	font-size: 1.25rem;
	margin-top: 2rem;
	text-align: center;
}
.paginator a {
	margin-right: 0.1rem;
}
.paginator a.selected {
	font-weight: 700;
}
.paginator a:after {
	content: ",";
	font-weight: normal;
}
.paginator a:nth-child(-n+2),
.paginator a:nth-last-child(-n+2) {
	font-size: 2rem;
	position: relative;
	top: 0.1rem;
}
.paginator a:nth-child(-n+2):after,
.paginator a:nth-last-child(-n+3):after {
	content: "";
	display: none;
}

.carousel {
	background: #20b7aa;
}
.carousel-item {
	height: auto;
}

/*background-position: top center;*/
.hero {
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
  min-height: 20rem;
	width: 100%;
}
.companyLogo {
    background: #fff;
	border-radius: 1rem;
	border: 1px solid black;
	box-shadow: 0 0 10px rgba(0,0,0,0.333);
    padding: 1.5rem 2.5rem;
	position: absolute;
	top: -7rem;
	width: 16rem;
}
.companyLogo img {
	width: 100%;
}
.companySummary {
	padding: 5rem 0 2rem 0;
}
.companyAddress {
	color: #008073;
	padding: 4rem 0 2rem 0;
}
@media (max-width: 992px) {
	.companyAddress {
		padding: 0 0 2rem 0;
	}
}

/*color: #999;*/
.highlighted {
	background-image: linear-gradient(to right, #6ceeff, #83f1fb, #96f3f8, #a8f6f5, #b9f8f4);
	-moz-box-shadow:    inset 0 0 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
	box-shadow:         inset 0 0 10px rgba(0,0,0,0.5);
	color: #58595b;
	font-style: italic;
	padding: 2.5rem 0 3rem 0;
}

/* Footer ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#footer {
	background: #008073;
	color: rgba(255,255,255,0.667);
	font-size: 0.85rem;
	overflow: hidden;
	padding: 2.5rem 0 5rem 0;
	text-align: center;
}
#footer .footerLogo {
	margin-bottom: 0.5rem;
	width: 4rem;
}
#footer span {
	color: #fff;
}
#footer .footerNav {
	font-family: "AeroMaticsRegular", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.5px;
}
#footer .footerNav a {
	border-bottom: 1px solid transparent;
	border-radius: 3px;
	color: rgba(255,255,255,0.667);
	font-size: 1rem;
	text-transform: uppercase;
}
#footer .footerNav span {
	opacity: 0.25;
	padding: 0 1rem;
}
#footer .socials {
	margin-top: 2rem;
}
#footer .socialLogo {
	margin: 0 0.5rem;
	opacity: 0.667;
	height: 2rem;
}
#footer .socialLogo:hover {
	opacity: 1;
}
#footer .footerLogos {
	text-align: left;
}
#footer .footerLogos img {
	margin-top: 5%;
	opacity: 0.667;
	width: 75%;
}
#footer .footerRegion {
	text-align: right;
}
#footer .footerRegion img {
	width: 60%;
}
#footer a:hover {
	color: #7fdfd7;
}
.footerColor {
	height: 10rem;
	left: -10%;
	position: absolute;
	width: 120%;
}
#footerColor1 {
	background-color: #20b7aa;
	bottom: -6rem;
	opacity: 0.333;
	transform: rotate(2deg);
}
#footerColor2 {
	background-color: #20b7aa;
	bottom: -7rem;
	opacity: 0.5;
	transform: rotate(-1deg);
}
#footerColor3 {
	background-color: #00e6ff;
	bottom: -8rem;
	opacity: 0.4;
}
#footerColor4 {
	background-color: #ff57ba;
	bottom: -9.1rem;
	opacity: 0.5;
	transform: rotate(0.5deg);
}
@media (max-width: 992px) {
	#footer .footerLogos img {
		max-width: 33%;
	}
	#footer .footerNav {
		margin-top: 2rem;
	}
	#footer .footerLogos {
		text-align: center;
	}
	#footer .footerRegion {
		display: none;
	}
}

/* Buttons ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.btn {
	background: #00bfb0;
	background-size: contain;
	border: 0;
	border-radius: 5px;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.5rem;
	padding: 1rem 2rem;
	text-transform: uppercase;
}
.btn:hover {
	background: #008073;
}
@media (min-width: 992px) {
	.btn {
		font-size: 1.4rem;
	}
}

/* Bootstrap boxes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.service-box {
	max-width: 400px;
}
