
html, body {
  position:relative;
  overflow-x:hidden;
}

.clear {clear:both;}

.showMobile {display:none !important;}
.hideMobile {display:block;}

html,body {
  margin:0;
  padding:0;
  background:#fff;
  min-height:100%;
  font-family:'lato', 'sans-serif';
  line-height:1.6;
  color:#1B2526;
}

.container {
  position:relative;
  overflow-x:hidden;
  width:100%;
}

.wrapper {
  width:90%;
  max-width:1400px;
  position:relative;
  margin:0 auto;
}

header {
  width:100%;
  box-sizing:border-box;
  position:fixed;
  z-index:50;
  padding:1rem;
  transition:0.3s all;
}

header.active {
  padding:0.5rem 0rem;
  transition:0.3s all;
  box-shadow:0px 0px 15px rgba(0,0,0,.2);
  background:#000;
}

header .logo {
  display: flex;
  align-items: center;
}

header.active .logo img{
  max-width:210px;
  transition:0.3s all;
}

header .logo img{
  max-width:300px;
  max-height:auto;
  transition:0.3s all;

}

.hero {
  min-height:600px;
  height:300px;
  background-image: linear-gradient(rgba(0,0,0,1),rgba(25,78,82,.60)), url('../media/bg-clouds.jpg');
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
  position:relative;
  margin-bottom:3rem;
}

.hero.interior {
  min-height:300px;
  height:300px;
  background-image: linear-gradient(rgba(0,0,0,1),rgba(25,78,82,.60)), url('../media/bg-clouds.jpg');
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
  position:relative;
  margin-bottom:3rem;
}

.hero .wrapper {
  height:100%;
}

.heroTxt {
  color:#fff;
  width:70%;
  z-index:10;
  position:relative;
}

.heroTxt h1 {
  font-weight:300;
  letter-spacing:0.05rem;
  font-size:2.25rem;
  margin-bottom:2rem;
}

.heroTxt h1 span.bold {
  font-weight:700;
  font-size:2.5rem;
}

.heroTxt h1 span.type1, .heroTxt h1 span.type2 {
  opacity:0;
}

.heroTxt a.btn {
  opacity:0;
}

.container.active .heroTxt h1 span.type1 {
  opacity:1;
  transition:1s .5s all;
}

.container.active .heroTxt h1 span.type2 {
  opacity:1;
  transition:1s 2s all;
}

.container.active .heroTxt a.btn {
  opacity:1;
  transition:1s 3s all;
}

.hero .heading h1 {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 5rem;
  color: rgba(255,255,255,1);
  transform: translateY(0.7rem);
  text-transform: uppercase;
}

.clearPhotoSpace {
  padding:7rem 0rem;
}

.photoSpace {
  position:absolute;
  z-index:1;
  right:0;
  top:10rem;
}

.photoSpace .photo {
  height:400px;
  width:40vw;
  z-index:2;
}

.photoSpace .desc {
  position: absolute;
  top: 12rem;
  left: 0vw;
  z-index:1;
  box-sizing: border-box;
  padding-right: 5rem;
  width: 40vw;
  text-align: right;
  border-top: 1px solid #d4e0e2;
  background-image: linear-gradient(20deg, rgb(234 240 241 / 0%) 50%, rgb(213 222 222 / 60%));
  transition:1s all;
}

.photoSpace .desc p {
  color: #5f8172;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.4;
}

.photoSpace .desc p.author {
  color:#000;
}

.container.active .photoSpace .desc {
  left:-40vw;
}

.grid {
  background-image:url('../media/grid.png');
  background-size:cover;
  width:800px;
  height:400px;
  position:absolute;
}

.hero .grid {
  right:0;
  bottom:0;
  transform: translate(0px,300px);
  z-index:0;
}

.jet {
  position:absolute;
  right:0;
  bottom:0;
  transform:scale(.01) translate(5000%, 20%);
  transition:3s 0s all;
  z-index:1;
}

.container.active .jet {
  transform: translate(27%, 30%) scale(.75);
}

nav.mainnav ul{
  list-style:none;
  margin:0;
  padding:0;
  text-transform:uppercase;
  font-weight:bold;
  font-size:0.9rem;
}

nav.mainnav ul li {
  padding:0rem 0.2rem;
}

nav.mainnav ul li a {
  color:#fff;
  display:block;
  text-decoration:none;
  padding:1rem 1rem;
}

nav.mainnav ul li:hover a {
  color:#ACC871;
}

.btn {
  border-radius:5px;
  padding:1rem 2rem;
  background:#f0f0f0;
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:bold;
  font-size:0.9rem;
  letter-spacing:.1rem;
  border:0;
}

.btn svg {
  padding-left:1rem;
}

.btn-primary {
  background:#19555E;
  color:#fff;
}

.btn-outline {
  background:none;
  border:1px solid #19555E;
  color:#19555E;
}

.btn-outline.dark {
  background:none;
  border:1px solid #fff;
  color:#fff;
}

main {
  padding:3rem 0rem;
}

main a {
  color:#5f8172;
}

section {
  padding:3rem 0rem;
  position:relative;
}

.cardImg {
  width:100%;
  height:0;
  padding-bottom:45%;
  overflow: hidden;
  background:#000;
  position:relative;
  margin-bottom:1rem;
}

.cardImg img {
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.card {
  margin-bottom:3rem;
}

.card h3 {
  text-transform:uppercase;
  color:#000;
  border-bottom:1px solid #EAF0F1;
  padding:1rem 0rem;
  font-size:1rem;
  margin:0rem 0rem 1rem 0rem;
  font-weight:900;
}

.card h3 a {
  color:inherit;
  text-decoration:inherit;
  display:block;
}

.testimonial p {
  font-size:1.4rem;
  font-weight:300;
}

 p.author {
  font-size:1rem;
  font-weight:700;
}

section.highlight {
  background-image: linear-gradient(rgba(234,240,241,1),rgba(234,240,241,0))
}

.highlight .grid {
  top:0;
  left:0;
}

.photo {
  position:relative;
  min-height:300px;
}

.photo img {
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
  clip-path: polygon(20% 0%, 80% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%, 0% 86%, 0% 20%);
}


footer {
  padding:5rem 0rem;
  border-top:1px solid #EAF0F1;
}

footer .logo {
  width:100%;
  max-width:225px;
  transform: translateX(-58px);
}

footer .footernav {
  list-style:none;
  margin:0;
  padding:0;
}

footer .footernav li {
  border-bottom:1px solid #EAF0F1;
}

footer .footernav li:last-child {
  border-bottom:0;
}

footer h3 {
  text-transform:uppercase;
  font-weight:900;
  font-size:1rem;
}

footer .subfoot {
  font-size:0.9rem;
  border-top:1px solid #d4e0e2;
  margin-top:2rem;
}

footer .subfoot a {
  color:#19555E;
}

footer .footernav li a {
  padding:0.5rem 0rem;
  display:block;
  text-decoration:none;
  color:#19555E;
}

footer .footernav li:hover a {
  text-decoration:underline;
}

.certifications {
  margin-bottom:2rem;
}

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

.cardList {
  margin:0;
  list-style:none;
  padding:3rem 0rem;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 3rem;
  justify-content: space-between;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 3rem;
  justify-content: space-between;
}

.cardList ul {
  margin:0;
  padding:0;
  list-style:none;
}

.cardList ul li {
  list-style:disc;
  margin-left:2rem;
}

.cardList ul li:first-child {
  font-weight:bold;
  list-style:none;
  margin-left:0rem;
  border-bottom:1px solid #d4e0e2;
  padding:0.5rem 0rem;
  text-transform:uppercase;
  margin-bottom:1rem;
}

.cardList li img {
  width:100%;
  height:250px;
  object-fit:cover;
}

.startForm input[type="text"], .startForm select {
	border:0px;
	padding:7px 10px;
	width:94%;
	font-size:15px;
	font-family:"Roboto";
	font-weight:300;
	box-shadow:2px 2px 6px rgba(0,0,0,.1);
	border:1px solid #a8a8a8;
}


.startForm input[type="text"]:focus, .startForm select:focus, .startForm textarea:focus {
	box-shadow:4px 4px 6px rgba(0,0,0,.3);
 }

.startForm input[type="text"].txtHalf {
	width:50%;
}

.startForm textarea, .comment-form textarea {
	border:0px;
	padding:7px 10px;
	width:94%;
	height:100px;
	font-size:15px;
	font-family:"Roboto";
	font-weight:300;
	box-shadow:2px 2px 6px rgba(0,0,0,.1);
	border:1px solid #a8a8a8;
}

article.press {
  border-bottom:1px solid #d4e0e2;
  padding:2rem 0rem;
}

article.press h2 {
  color:#19555E;
}


/**RESPONSIVE NAVIGATION**/

.menu-switch {
	float:right;
  display: block;
	top:0px;
	right:0px;
  position: absolute;
  overflow: hidden;
  background:none;
  padding: 0;
  width: 42px;
  height: 42px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
          transition: background 0.3s;
}

.menu-switch:focus {
	outline:none;
}

.menu-switch span {
  display: block;
  position: absolute;
  top: 20px;
  left: 5px;
  right: 5px;
  height: 4px;
  border-radius:2px;
  background: #fff;
  -webkit-transition: background 0 0.3s;
          transition: background 0 0.3s;
}

.menu-switch span::before,
.menu-switch span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  border-radius:2px;
  height: 4px;
  background-color: #fff;
  content: "";
   -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0;
          transition-delay: 0.3s, 0;
}

.menu-switch span::before {
  top: -10px;
}

.menu-switch span::after {
  bottom: -10px;
}


.menu-switch span::before,
.menu-switch span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
          transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0;
          transition-delay: 0.3s, 0;
}

.menu-switch span::before {
  -webkit-transition-property: top, -webkit-transform;
          transition-property: top, transform;
}

.menu-switch span::after {
  -webkit-transition-property: bottom, -webkit-transform;
          transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.menu-switch.active {
}

.menu-switch.active span {
  background: none;
}

.menu-switch.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu-switch.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-switch.active span::before,
.menu-switch.active span::after {
  -webkit-transition-delay: 0, 0.3s;
          transition-delay: 0, 0.3s;
}

.responsiveMenu {
	position:fixed;
	top:-100%;
	width:100%;
	visibility:hidden;
	display:block;
	height:100%;
	z-index:40;
	background:rgba(29,70,95,.9);
	box-shadow:0;
	opacity:0;
    overflow: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	left:0%;
}

.expand {
	visibility:visible;
	opacity:1;
	top:0px;
}

.responsiveMenu ul {
	padding:0px;
	margin-top:120px;
}

.responsiveMenu ul li {
	font-size:18px;
	font-weight:bold;
	text-transform:uppercase;
	font-family:"Lato";
	text-transform:uppercase;
}

.responsiveMenu ul li a {
	color:#ffffff;
	text-align:Center;
	padding:20px 20px;
	display:block;
	text-decoration:none;
}

/**END RESPONSIVE NAVIGATION**/