@charset "UTF-8";
/* BREAKPOINTS */
/* Colors */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.5;
  background-color: #dfe4e8;
  color: #3e3e3e;
}

.page-team {
  padding-top: 5rem;
}

html {
  min-height: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

h1, h2, h3 {
  margin-bottom: 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}
@media (max-width: 630px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.6rem;
}
@media (max-width: 630px) {
  h3 {
    font-size: 1.4rem;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 630px) {
  p {
    font-size: 0.9rem;
  }
}

section a {
  color: inherit;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

.wrapper {
  margin: 0 auto;
  max-width: 964px;
  padding: 0 2rem;
}
@media (max-width: 630px) {
  .wrapper {
    padding: 0 1.3rem;
  }
}

.space {
  height: 4rem;
}
@media (max-width: 630px) {
  .space {
    height: 2rem;
  }
}

.site-main {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .site-main {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.btn {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: #0065ac;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.btn:hover, .btn:focus {
  background-color: #3e3e3e;
}

.tac {
  text-align: center;
}

.hero {
  aspect-ratio: 16/10;
  display: flex;
  overflow: hidden;
  position: relative;
  background-color: #0065ac;
}
@media (max-width: 900px) {
  .hero {
    aspect-ratio: 13/10;
  }
}
.hero img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 100;
  text-align: center;
  width: 100%;
  padding: 0rem 0;
  background-color: #0065ac;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  padding-top: 5rem;
  z-index: 1;
}
@media (max-width: 630px) {
  .hero-content {
    padding: 1rem 1rem 1rem 1rem;
  }
}

.site-logo {
  width: 25vw;
  min-width: 190px;
  max-width: 300px;
  margin-bottom: 0;
  vertical-align: bottom;
}
@media (max-width: 630px) {
  .site-logo {
    width: 100%;
    max-width: 150px;
  }
}

.site-slogan h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 1.1;
}
@media (max-width: 900px) {
  .site-slogan h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
@media (max-width: 630px) {
  .site-slogan h1 {
    font-size: 1.5rem;
    margin-top: 4rem;
  }
}

.header-temp-text {
  color: white;
  text-transform: uppercase;
}

.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4rem;
}
@media (max-width: 900px) {
  .cols-2 {
    grid-template-columns: 1fr;
  }
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .cols-3 {
    grid-template-columns: 1fr;
  }
}

.cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .cols-4 {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.col > :first-child {
  margin-top: 0;
}

.col-styled {
  position: relative;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  background: #95abbb;
  color: white;
  min-height: 33vw;
}
.col-styled h2 {
  margin-top: 0;
}
.col-styled p {
  font-size: 1.4rem;
}
@media (max-width: 630px) {
  .col-styled p {
    font-size: 1.2rem;
    text-transform: none;
  }
}
@media (max-width: 630px) {
  .col-styled br {
    display: none;
  }
}
@media (max-width: 630px) {
  .col-styled {
    min-height: auto;
    aspect-ratio: 2/1;
    justify-content: center;
  }
}
@supports (mix-blend-mode: soft-light) {
  .col-styled::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url("images/background-image.jpg") no-repeat;
    background-size: 100vw;
    mix-blend-mode: soft-light;
    opacity: 0.4;
  }
  @media (max-width: 630px) {
    .col-styled::before {
      background-size: cover;
    }
  }
}

.cols-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 1100px) {
  .cols-1-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.col-content {
  z-index: 1;
  position: relative;
}
@media (max-width: 630px) {
  .col-content {
    text-align: center;
  }
}

Nature’s Worth .col-blue-1 {
  background: #95abbb;
}

.col-blue-2 {
  background: #66859b;
}

.col-blue-3 {
  background: #416986;
}

.col-red-1 {
  background: #9c8a93;
  padding: 0;
}
.col-red-1 .col-content {
  padding: 5vw;
}
.col-red-1 .col:first-child {
  display: flex;
  align-items: center;
}
@media (max-width: 1100px) {
  .col-red-1 .col:first-child {
    flex-direction: column;
    margin-top: 2rem;
  }
}
.col-red-1 img {
  vertical-align: bottom;
  position: relative;
  z-index: 2;
}

.jules-img {
  width: 75%;
}

/* Timeline */
.timeline {
  list-style: none;
  padding-left: 0;
  position: relative;
  margin-left: 0.5rem;
  margin-top: 2rem;
}
.timeline h3 {
  font-size: 2rem;
  margin-bottom: 0rem;
  margin-top: 0;
}
@media (max-width: 630px) {
  .timeline h3 {
    font-size: 1.7rem;
  }
}
.timeline::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 0;
  width: 4px;
  background-color: #8d8d8d;
}

.timeline-element {
  padding-left: 3rem;
  position: relative;
  margin-left: 0;
  margin-bottom: 1.5rem;
}
.timeline-element::before {
  content: "";
  display: block;
  position: absolute;
  left: -11px;
  top: 0.7rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #8d8d8d;
  border: 4px solid #dfe4e8;
}
@media (max-width: 630px) {
  .timeline-element {
    padding-left: 2rem;
  }
}

.site-footer {
  padding: 2rem 3rem;
  background-color: #dfe4e8;
  color: #75797b;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: center;
}
.site-footer a {
  color: #75797b;
  text-decoration: none;
}
.site-footer .cols-4 {
  align-items: center;
  grid-gap: 2rem;
}
@media (max-width: 630px) {
  .site-footer {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.footer-logo {
  max-width: 220px;
}
