*, *::after, *::before {box-sizing: border-box;}
a {cursor: pointer;}

html {
  font-family: sans-serif; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  overflow-x: hidden; /* added this to avoid IOS horizontal scroll bars, I don't like this fix because it doesn't tell you what's causing the width bug */
}
body {
  font-family: -system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-weight: 400;
  font-size: 15px;
  color: #333333;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}





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

.wrap {
    max-width: 1240px;
    margin: 10px auto 20px;
    width: 90%;
    padding-bottom: 50px;
}

/* header styles */

#logo {
    display: block;
}



a {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    -webkit-touch-callout: none;
}


header {
    background: #fff;
    padding: 20px 27px;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    z-index: 99999;
    top: 0;
}
.logo {
    /* background: hsl(243, 47%, 49%); */
    display: block;
    /* width: 100%; */
    background-size: contain;
    height: 60px;
    width: 100%;
    z-index: 444;
    position: relative;
    /*padding: 12px 24px;
    float: left;*/
}

a.logo::after {
    display: block;
    background: url(/assets/images/logo-black-1.svg?v=1) no-repeat center top;
    background-size: contain;
    content: "";
    height: 100%;
    width: 100%;
    /* border: 15px solid #151334; */
}



.hero {
    background-image: url('https://uploaded-images.outeast.com/uploads/hero_image/desktop_high_res/6/HP_hero_DT_180727_2x_optimized.jpg');
    background-size: cover;
    background-position: center center;
    /* min-height: 260px; */
    height: 70vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    background-repeat: no-repeat;
    display: flex;
    position: relative;
}

.hero::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 26%);
    /* visibility: hidden; */
}
  .hero-content {
    /* background: rgba(0,0,0,0.5); */
    padding: 30px;
    /* border-radius: 10px; */
    max-width: 760px;
}
.hero-content h1 {
    font-size: 1.7em;
    margin: 0;
    line-height: 1.3;
    font-weight: 300;
    color: white;
    position: relative;
}
@media (max-width: 750px) {
    .hero {height: 53vh;}
    .hero-content h1 {
        font-size: 17px;
    }
}