
:root {
  font-family: "Roboto";
  font-size: 16px;
  line-height: 2rem;
  font-weight: 400;
}

body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

header {
  min-height: 500px;
  border-top: 1rem solid rgb(255,204,0);
  border-bottom: 1rem solid rgb(255,204,0);
  display: flex;
  flex-direction: column;
}

header.plain-page {
  height: 100vh;
}


header .nav {
  height: 150px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

header .nav .brand-logo {
  display: block;
  height: 110px;
}

.banner {
  position: relative;
  background-image: url('/assets/banner.jpg');
  background-size: cover;
  background-position: center;
  flex-grow: 1;

  display: flex;
  flex-direction: row;
  align-items: center;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom:  0; left: 0;
  background-color: #000;
  opacity: 0.35;
}

.banner h1 {
  color: #fff;
  font-family: "Roboto Slab";
  font-size: 4rem;
  line-height: 5rem;
  z-index: 1;
  position: relative;
}

.container {
  width: 85rem;
  max-width: 100%;
  margin: auto;
  padding: 0 2rem;
}

main h1,
main h2 {
  position: relative;
  padding: 1.25rem 0 1.25rem 2rem;
  margin: 3rem 0 5rem;

  font-family: "Roboto Slab";
  font-weight: 700;
  color: rgba(0,151,143,1);
  border-left: 5px solid #FF6900;
  font-style: normal;
  letter-spacing: 0px;
  text-align: left;
  background: linear-gradient(90deg, #004494, #00978F 50%, #00978F);
  background-clip: text;
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

main h2 {
  font-size: 52px;
  line-height: 50px;
}

main h1:after,
main h2:after {
  content: '';
  position: absolute;
  bottom: -1.75rem;
  left: 0;
  height: 1px;
  width: 20rem;
  background-color: #979797;
}

main h3 {
  font-size: 2rem;
  font-family: "Roboto Slab";
  color: #004494;
}

main > section:nth-child(2n) {
  background-color: #D8D8D8;
}

main section {
  padding: 2rem 0;
}

.subtitle {
  color: rgba(119,118,118,1);
  font-size: 1.5rem;
  line-height: 1.7em;
}

.subhead {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7em;
  color: #00978F;
}

.subhead strong {
  color: #004494;
}

.exposed {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7em;
  color: #004494;
}

footer {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

@media (min-width: 900px) {
  .row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 4rem;
  }

  .col1 { width: calc(100% * 1 / 12); }
  .col2 { width: calc(100% * 2 / 12); }
  .col3 { width: calc(100% * 3 / 12); }
  .col4 { width: calc(100% * 4 / 12); }
  .col5 { width: calc(100% * 5 / 12); }
  .col6 { width: calc(100% * 6 / 12); }
  .col7 { width: calc(100% * 7 / 12); }
  .col8 { width: calc(100% * 8 / 12); }
  .col9 { width: calc(100% * 9 / 12); }
  .col10 { width: calc(100% * 10 /12); }
  .col11 { width: calc(100% * 11 /12); }
  .col12 { width: calc(100% * 12 /12); }
}


.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
}

button, .btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 4px;
  background-color: #FF6900;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
}

.btn.cta {
  margin: 2rem 0;
}

@media (max-width: 900px) {
  main h2 {
    font-size: 30px;
    line-height: 36px;
  }
  main h2:after {
    width: 100%;
  }
  aside img {
    display: block;
    max-height: 750px;
    margin: auto;
  }
  .btn.cta {
    width: 100%;
  }
  .sm-hidden {
    display: none;
  }
}
