body {
  position: relative;
  background-color: #103F37;
  background-image: url(../assets/images/bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  animation: slidein_mobile 40s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  color: white;
  font-size: 15px;
}
@media (min-width: 800px) {
  body {
    animation: slidein 40s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
}
@keyframes slidein {
  from {
    background-size: 300% 300%;
  }
  to {
    background-size: 200% 200%;
  }
}
@keyframes slidein_mobile {
  from {
    background-size: 300% 200%;
  }
  to {
    background-size: 200% 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  font-family: "DM Mono", monospace;
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
  line-height: 117%;
}

::-moz-selection {
  color: #103F37;
  background: white;
}

::selection {
  color: #103F37;
  background: white;
}

a {
  text-decoration: none;
}

p {
  font-size: 15px;
  max-width: 600px;
}

h1 {
  font-size: 30px;
}
@media (min-width: 800px) {
  h1 {
    font-size: 45px;
  }
}

h2 {
  font-size: 25px;
  max-width: 800px;
}
@media (min-width: 800px) {
  h2 {
    font-size: 35px;
  }
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  padding: 15px 15px;
  color: #103F37;
  font-weight: 500;
}
@media (min-width: 800px) {
  .btn {
    padding: 20px 30px;
  }
  .btn:hover, .btn:focus-visible {
    opacity: 0.8;
  }
  .btn:active {
    opacity: 0.6;
  }
}

.btn.white {
  background-color: white;
}

img.ex-link {
  width: 11px;
  height: 11px;
  transform: translateY(1px);
  margin-left: 10px;
}
@media (min-width: 800px) {
  img.ex-link {
    width: 13px;
    height: 13px;
  }
}

.btn.orange {
  background-color: #F2623D;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}
nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgb(16, 63, 55) 0%, rgb(16, 63, 55) 5%, rgba(16, 63, 55, 0) 100%);
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 800px) {
  nav {
    padding: 20px 40px;
    align-items: center;
  }
}

.logo {
  font-size: 20px;
}
@media (min-width: 800px) {
  .logo {
    font-size: 35px;
  }
}

.nav-buttons {
  display: flex;
  z-index: 20;
  flex-direction: row;
}
.nav-buttons .btn {
  padding: 10px 10px;
  font-size: 13px;
}
.nav-buttons .btn.white {
  margin-right: 10px;
}
@media (min-width: 800px) {
  .nav-buttons .btn.white {
    margin-right: 20px;
  }
}
@media (min-width: 800px) {
  .nav-buttons {
    font-size: 35px;
    flex-direction: row;
  }
  .nav-buttons .btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 800px) {
  main {
    padding: 0 20px;
  }
}

.hero {
  margin-top: 50px;
  margin-bottom: 40px;
  padding: 60px 20px;
}
@media (min-width: 800px) {
  .hero {
    padding: 120px 0;
    margin-bottom: 0px;
  }
}

.content {
  background-color: #103F37;
  padding: 40px 20px 20px 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 800px) {
  .content {
    padding: 40px;
    margin-bottom: 60px;
  }
}
.content h2 {
  margin-bottom: 0px;
}
@media (min-width: 800px) {
  .content h2 {
    margin-bottom: 40px;
  }
}

#content-img {
  width: calc(100% - 40px);
  max-width: 450px;
  z-index: -1;
  position: absolute;
  bottom: 40px;
  right: 20px;
  opacity: 0.25;
  pointer-events: none;
}
@media (min-width: 800px) {
  #content-img {
    opacity: 1;
    width: 100%;
    bottom: 0px;
    right: 40px;
    max-width: 450px;
    z-index: 0;
    pointer-events: all;
    opacity: 0.7;
  }
}
@media (min-width: 1000px) {
  #content-img {
    max-width: 450px;
    opacity: 1;
  }
}

.accordion {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  pointer-events: none;
}

dt {
  pointer-events: all;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
dt a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 0;
}
@media (min-width: 800px) {
  dt a:hover, dt a:focus-visible {
    color: #AE573B;
  }
}
dt a p {
  font-size: 30px;
}
@media (min-width: 800px) {
  dt a p {
    font-size: 35px;
  }
}
dt a span {
  display: inline-block;
  font-size: 12px;
  vertical-align: top;
  width: 22px;
  margin-right: 10px;
  padding-top: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.tab-1,
.tab-2,
.tab-3,
.tab-4,
.tab-5 {
  display: flex;
}

dd {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 35px;
  padding-bottom: 60px;
}
@media (min-width: 800px) {
  dd {
    padding-bottom: 80px;
  }
}
dd p {
  font-size: 20px;
  line-height: 128%;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
}
@media (min-width: 800px) {
  dd p {
    pointer-events: none;
  }
}

#path-a,
#path-b,
#path-c,
#path-d,
#path-e {
  fill: #103F37;
}

@media (min-width: 800px) {
  .path-link-1:hover #path-a {
    fill: #544939;
    cursor: pointer;
  }
  .path-link-2:hover #path-b {
    fill: #544939;
    cursor: pointer;
  }
  .path-link-3:hover #path-c {
    fill: #544939;
    cursor: pointer;
  }
  .path-link-4:hover #path-d {
    fill: #544939;
    cursor: pointer;
  }
  .path-link-5:hover #path-e {
    fill: #544939;
    cursor: pointer;
  }
}
.tab-active-1 .tab-1 {
  color: #F2623D;
}
.tab-active-1 .tab-1:hover {
  text-decoration: none;
  cursor: default;
}
.tab-active-1 #path-a {
  fill: #98543B;
  z-index: 20;
}
.tab-active-1 .path-link-1:hover #path-a {
  fill: #98543B;
  cursor: default;
}

.tab-active-2 .tab-2 {
  color: #F2623D;
}
.tab-active-2 .tab-2:hover {
  text-decoration: none;
  cursor: default;
}
.tab-active-2 #path-b {
  fill: #98543B;
}
.tab-active-2 .path-link-2:hover #path-b {
  fill: #98543B;
  cursor: default;
}

.tab-active-3 .tab-3 {
  color: #F2623D;
}
.tab-active-3 .tab-3:hover {
  text-decoration: none;
  cursor: default;
}
.tab-active-3 #path-c {
  fill: #98543B;
}
.tab-active-3 .path-link-3:hover #path-c {
  fill: #98543B;
  cursor: default;
}

.tab-active-4 .tab-4 {
  color: #F2623D;
}
.tab-active-4 .tab-4:hover {
  text-decoration: none;
  cursor: default;
}
.tab-active-4 #path-d {
  fill: #98543B;
}
.tab-active-4 .path-link-4:hover #path-d {
  fill: #98543B;
  cursor: default;
}

.tab-active-5 .tab-5 {
  color: #F2623D;
}
.tab-active-5 .tab-5:hover {
  text-decoration: none;
  cursor: default;
}
.tab-active-5 #path-e {
  fill: #98543B;
}
.tab-active-5 .path-link-5:hover #path-e {
  fill: #98543B;
  cursor: default;
}

.quote {
  padding: 40px 20px 20px 20px;
  margin-bottom: 40px;
  background-image: url(../assets/images/quote-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: slidein 40s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@media (min-width: 800px) {
  .quote {
    padding: 40px;
    margin-bottom: 60px;
  }
}
.quote h2 {
  margin-bottom: 40px;
}
@keyframes slideout {
  from {
    background-size: 200% 200%;
  }
  to {
    background-size: 300% 300%;
  }
}
.source-cta {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 800px) {
  .source-cta {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.source {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  background-color: #103F37;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
@media (min-width: 800px) {
  .source {
    flex-direction: row;
    margin-bottom: 0px;
    padding: 10px 20px;
  }
}
.source .src-name {
  font-weight: 500;
  margin-right: 0;
  margin-bottom: 8px;
}
@media (min-width: 800px) {
  .source .src-name {
    margin-right: 20px;
    margin-bottom: 0px;
  }
}
.source .src-role {
  font-weight: 300;
}

.ft-cta {
  background-color: #103F37;
}

.ft-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  overflow: hidden;
  position: relative;
}
.ft-cta-container .ft-img {
  display: block;
  position: absolute;
  bottom: 60px;
  right: 20px;
  width: 80%;
  max-width: 500px;
  z-index: 1;
  opacity: 0.5;
}
@media (min-width: 800px) {
  .ft-cta-container .ft-img {
    opacity: 1;
    bottom: 40px;
    right: 20px;
  }
}
@media (min-width: 800px) {
  .ft-cta-container {
    padding: 80px 20px;
  }
}

.ft-download-container {
  position: relative;
  z-index: 3;
}
.ft-download-container p {
  font-size: 20px;
  max-width: 800px;
}
@media (min-width: 800px) {
  .ft-download-container p {
    font-size: 35px;
  }
}
.ft-download-container .btn {
  margin-top: 40px;
}

.ft-quote-container {
  position: relative;
  z-index: 3;
  margin-top: 60px;
  padding-bottom: 20px;
}
@media (min-width: 800px) {
  .ft-quote-container {
    padding-bottom: 40px;
  }
}
.ft-quote-container p {
  margin-bottom: 40px;
  font-size: 30px;
  max-width: 800px;
}
@media (min-width: 800px) {
  .ft-quote-container p {
    font-size: 45px;
  }
}
.ft-quote-container span {
  text-decoration: underline;
  font-size: 30px;
}
@media (min-width: 800px) {
  .ft-quote-container span {
    font-size: 45px;
  }
}

.ft-socials {
  background-color: #D3EADF;
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  padding: 30px 30px;
}
@media (min-width: 800px) {
  .ft-socials {
    padding: 20px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.socials {
  display: flex;
  margin-top: 30px;
}
@media (min-width: 800px) {
  .socials {
    margin-top: 0;
  }
}
.socials a {
  display: block;
  margin-right: 25px;
}
.socials a img {
  width: 25px;
  display: block;
}
@media (min-width: 800px) {
  .socials a:hover img, .socials a:focus-visible img {
    opacity: 0.8;
  }
  .socials a:active img {
    opacity: 0.6;
  }
}

.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 800px) {
  .contact-copy {
    align-items: flex-end;
  }
}
.contact-copy a {
  color: #103F37;
  margin-bottom: 10px;
}
@media (min-width: 800px) {
  .contact-copy a {
    margin-bottom: 5px;
  }
  .contact-copy a:hover, .contact-copy a:focus-visible {
    opacity: 0.8;
  }
  .contact-copy a:active {
    color: #103F37;
    opacity: 0.6;
  }
}
.contact-copy p {
  color: #103F37;
  text-align: left;
  font-size: 12px;
  opacity: 0.8;
}
@media (min-width: 800px) {
  .contact-copy p {
    text-align: right;
  }
}
.contact-copy p a {
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */