@charset "UTF-8";
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  padding: 0;
  margin: 0;
}

#wrapper {
  max-width: 800px;
  margin: auto;
  padding: 0;
}

.body__light {
  background-color: #FFF9EF;
}
.body__light h1 {
  color: #02434A;
}
.body__light p {
  color: #02434A;
}
.body__light section .logo {
  border-bottom: 2px solid #02434A;
}
.body__dark {
  background-color: #000000;
}
.body__dark h1 {
  color: #FFF9EF;
}
.body__dark p {
  color: #000000;
}
.body__dark section .logo {
  border-bottom: 2px solid #FFF9EF;
}

nav {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 16px;
  border-bottom: 1px solid #02434A;
}

p {
  line-height: 1.75em;
  max-width: 800px;
  margin: 0;
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.5em;
}

h1, h2, h3, h4 {
  font-family: "roca", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #02434A;
}

h1 {
  font-size: 2.5em;
  line-height: 1.15em;
  margin: 0;
  padding: 0;
  margin-bottom: 12px;
}
h1 strong {
  font-size: 1.45em;
}

h2 {
  font-size: 2em;
  margin-bottom: 0;
}

hr {
  border: none;
  border-bottom: 5px solid #02434A;
}

ul.reset, ul.reset li, ul.reset ul li {
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style-type: none;
}

dl {
  color: #02434A;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1em;
  line-height: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
  margin-bottom: 16px;
}

ul.reset {
  display: flex;
}

.intro {
  text-align: center;
}

.link__holder {
  display: flex;
  justify-content: space-between;
}
.link__dark {
  color: #FFF9EF;
}
.link__light {
  color: #02434A;
}
.link__video-script {
  display: flex;
  padding: 0 16px;
  justify-content: center;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}
.link__video-script img {
  width: 24px;
  margin-right: 8px;
}

.button {
  border-radius: 100px;
  border: 2px solid #02434A;
  cursor: pointer;
  font-size: 1.25em;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-self: flex-start;
  vertical-align: middle;
  margin-right: 16px;
}
.button__margin-b {
  margin-bottom: 16px;
}
.button:last-child {
  margin-right: 0px;
}
.button__large {
  padding: 16px 24px;
}
.button__medium {
  padding: 8px 12px;
}
.button__holder {
  display: flex;
  flex-direction: column;
}
.button__icon {
  width: 24px;
}
.button__icon--left {
  margin-left: 8px;
}
.button__icon--right {
  margin-right: 8px;
}
.button__primary {
  color: #FFF9EF;
  background-color: #02434A;
}
.button__primary:hover {
  background-color: #025059;
}
.button__secondary {
  color: #02434A;
  background-color: #FFF9EF;
}
.button__secondary:hover {
  background-color: #fffffe;
}

.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section {
  margin-left: auto;
  margin-right: auto;
  padding: 48px;
  display: flex;
}
section .logo {
  width: 200px;
  margin-bottom: 24px;
  padding-bottom: 16px;
}

.size__40 {
  width: 40%;
}
.size__50 {
  width: 50%;
}
.size__75 {
  width: 75%;
}

.margin__ML--10 {
  margin-left: 10%;
}
.margin__MR--5 {
  margin-right: 5%;
}
.margin__MR--10 {
  margin-right: 10%;
}

.column {
  flex-direction: column;
}

.card {
  border-radius: 16px;
  padding: 24px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.card__message {
  font-style: italic;
}

.emoji {
  font-style: normal;
}

.lightbox * {
  font-family: "Inter", sans-serif;
}
.lightbox h1, .lightbox h2, .lightbox h3, .lightbox h4 {
  font-family: "roca", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.15em;
  color: #02434A;
}
.lightbox h2 {
  font-size: 2em;
}
.lightbox h3 {
  font-size: 1.5em;
  margin-bottom: 8px;
  margin-top: 40px;
}
.lightbox p {
  margin-bottom: 16px;
  font-size: 1em;
}
.lightbox ul li {
  color: #02434A;
  font-size: 1em;
}
.lightbox__wrapper {
  padding: 48px;
}

.content__holder {
  flex-direction: column;
}

@media only screen and (max-width: 400px) {
  h1 {
    font-size: 1.5em;
  }
  .size__40 {
    width: 100%;
  }
  .size__50 {
    width: 100%;
  }
  .size__75 {
    width: 100%;
  }
}
.accordion {
  background-color: #FFF9EF;
  color: #02434A;
  cursor: pointer;
  padding: 18px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-bottom: 1px solid #02434A;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.5em;
}

.active, .accordion:hover {
  background-color: #fff3e0;
}

.accordion:after {
  content: "+";
  color: #02434A;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "−";
}

.panel {
  padding: 0 18px;
  background-color: #FFF9EF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
  color: #02434A;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 16px;
  margin-bottom: 16px;
}/*# sourceMappingURL=main.css.map */