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

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  border: none;
  padding: 0px;
  background: none;
  color: inherit;
  font: inherit;
  padding: 0;
  outline: inherit;
}

@media (min-width: 901px) {
  .show-mobile-only {
    display: none;
  }
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  color: #221F1F;
}

h1,
h2 {
  font-family: "Passion One", sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 599px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (max-width: 599px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

h4 {
  font-size: 1.125rem;
}

strong {
  font-weight: 700;
}

.white {
  color: #FFFFFF;
}

.line-clamp, .line-clamp-4, .line-clamp-3, .line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.spacer {
  height: 1rem;
}

.line-clamp, .line-clamp-4, .line-clamp-2, .line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  -webkit-line-clamp: 4;
}

@media (min-width: 600px) {
  .list__columns--2 ul {
    column-count: 2;
    column-gap: 30px;
    width: max-content;
  }
  .list__columns--2 li {
    width: max-content;
  }
}

.container, .container--narrow, .container--small, .container--smaller {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  box-sizing: content-box;
  padding-left: 24px;
  padding-right: 24px;
}
.container--smaller {
  max-width: 1000px;
}
.container--small {
  max-width: 700px;
}
.container--narrow {
  max-width: 500px;
}

.flex, .fdc {
  display: flex;
  flex-wrap: wrap;
}

.fdc {
  flex-direction: column;
}

.jcc {
  justify-content: center;
}

.jcfe {
  justify-content: flex-end;
}

.jcsb {
  justify-content: space-between;
}

.jcse {
  justify-content: space-evenly;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.aifs {
  align-items: flex-start;
}

.gap-0 {
  gap: 0.25rem;
}

.gap-1 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 1.5rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.row-reverse {
  flex-direction: row-reverse;
}

.display-none {
  display: none !important;
}

.fade-in {
  opacity: 0;
}
.fade-in--active {
  animation: fade-in 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(100px);
}
.fade-right--active {
  animation: fade-right 1s ease-out 0s 1 normal forwards;
}

.fade-left {
  opacity: 0;
  transform: translateX(-100px);
}
.fade-left--active {
  animation: fade-left 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(100px);
}
.fade-up--active {
  animation: fade-up 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-in-container {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.zoom-in {
  transform: scale(1);
  z-index: -1;
}
.zoom-in--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
    z-index: -1;
  }
  100% {
    transform: scale(1.075);
    z-index: -1;
  }
}
.zoom-out-container {
  overflow: hidden;
  max-width: 100%;
}

.zoom-out {
  transform: scale(1.075);
  z-index: -1;
}
.zoom-out--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-out {
  0% {
    transform: scale(1.075);
    z-index: -1;
  }
  100% {
    transform: scale(1);
    z-index: -1;
  }
}
.delay {
  animation-delay: 0.25s;
}

.delay-long {
  animation-delay: 0.5s;
}

.delay-longer {
  animation-delay: 0.75s;
}

.button, .button--black, .button--grey {
  position: relative;
  border: 1px solid #1CAB4D;
  outline: none;
  background-color: transparent;
  color: #221F1F;
  transition: 1s;
  cursor: pointer;
  padding: 5px 15px;
  display: flex;
  width: fit-content;
  text-transform: uppercase;
}
.button--green, .button--light-green {
  cursor: pointer;
  padding: 15px;
  display: flex;
  width: fit-content;
  outline: none;
  border: none;
  text-transform: uppercase;
  background-color: #1CAB4D;
}
.button--green:hover, .button--light-green:hover {
  background-color: #A9F009;
}
.button--light-green {
  background-color: #A9F009;
  padding: 5px 15px;
  font-weight: 600;
}
.button--light-green:hover {
  background-color: #1CAB4D;
}

.button::after, .button--black::after, .button--grey::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: #FFFFFF;
  transition: 0.5s;
  transform-origin: center;
}
.button::before, .button--black::before, .button--grey::before {
  content: "";
  transform-origin: center;
  position: absolute;
  top: 80%;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: #FFFFFF;
  transition: 0.5s;
}
.button:hover::before, .button--black:hover::before, .button--grey:hover::before, .button:hover::after, .button--black:hover::after, .button--grey:hover::after {
  transform: scale(0);
}
.button--grey::after, .button--grey::before {
  background-color: #EFEFED;
}
.button--black {
  border: 1px solid #A9F009;
  color: #FFFFFF;
}
.button--black::after, .button--black::before {
  background-color: #000;
}

.footer {
  position: relative;
}

.footer__arrow {
  position: absolute;
  top: 0;
  transform: translateY(-99%);
}

.footer__content {
  background-color: #000000;
  padding-bottom: 48px;
}
.footer__content .footer__logo {
  position: relative;
  margin-top: -48px;
}
@media (max-width: 599px) {
  .footer__content .footer__logo {
    margin-top: 0;
  }
}

.footer__links {
  margin-top: 30px;
  gap: 30px;
}
@media (max-width: 599px) {
  .footer__links {
    flex-direction: column;
  }
}

.footer__fg {
  margin-top: 40px;
  gap: 10px;
}
@media (max-width: 599px) {
  .footer__fg {
    justify-content: center;
  }
}
.footer__fg p {
  font-size: 0.75rem;
  color: #FFFFFF;
}

.nav__main {
  padding-top: 50px;
  padding-bottom: 50px;
  gap: 25px;
}
@media (max-width: 1063px) {
  .nav__main {
    justify-content: center;
  }
}

.nav__list {
  gap: 25px;
}
@media (max-width: 599px) {
  .nav__list {
    gap: 15px;
  }
}

.nav__link {
  font-size: 1.125rem;
}

.partners {
  position: relative;
}
.partners--content {
  position: relative;
  padding-top: 24px;
  padding-bottom: 50px;
}
.partners--content h2, .partners--content p {
  text-align: center;
}
.partners--content h2 {
  margin-bottom: 24px;
}
.partners__logos {
  gap: 16px;
  margin-top: 48px;
}

.partner__logo {
  width: 237px;
}

.partners__form {
  padding-top: 50px;
  padding-bottom: 250px;
  background-color: #1CAB4D;
}
@media (max-width: 900px) {
  .partners__form {
    padding-bottom: 150px;
  }
}
.partners__form h2, .partners__form p {
  text-align: center;
  padding-bottom: 16px;
}
.partners__form p {
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.partners__form .form-input input, .partners__form .form-input textarea {
  border-radius: 0px;
  border: none;
}
.partners__form .form-input label {
  display: none;
}
.partners__form .form-input ::placeholder {
  color: #221F1F;
}
.partners__form .submit-button button {
  background-color: #A9F009;
  border: none;
  border-radius: 0px;
  color: #221F1F;
  text-transform: uppercase;
  font-weight: 700;
}
.partners__form .submit-button button:hover {
  background-color: #1CAB4D;
}

.home__header {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  z-index: 0;
}

.home__goals {
  position: relative;
}
.home__goals--content, .home__goals--content-summit {
  background-color: #EFEFED;
  position: relative;
  padding-top: 24px;
  padding-bottom: 50px;
}
.home__goals--content h2, .home__goals--content-summit h2 {
  text-align: center;
}
.home__goals--content-summit {
  padding-top: 50px;
}
.home__goals--cards {
  gap: 24px;
  padding-top: 48px;
}
.home__goals--card {
  background-color: #1CAB4D;
  flex: 1;
  padding: 24px;
  gap: 24px;
}
.home__goals--card p {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}
.home__goals--text {
  margin-top: 48px;
}
.home__goals--button {
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

.home__arrow {
  position: absolute;
  top: 0;
  transform: translateY(-99%);
  width: 100%;
}

.home__improve {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 100px;
  background-color: #FFFFFF;
}
.home__improve h2 {
  text-align: center;
}
.home__improve--cards {
  gap: 24px;
  padding-top: 48px;
}
@media (max-width: 900px) {
  .home__improve--cards {
    justify-content: center;
  }
}
.home__improve--text {
  text-align: center;
  margin-top: 24px;
}
.home__improve img {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 300px;
}
.home__improve--card p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Passion One", sans-serif;
  margin-top: 24px;
}

.home__innovate {
  position: relative;
}
.home__innovate--content {
  padding-top: 24px;
  padding-bottom: 48px;
  background-color: #221F1F;
}
.home__innovate--content h2 {
  color: #FFFFFF;
  text-align: center;
}

.innovate__arrow--top {
  position: absolute;
  top: 0;
  transform: translateY(-99%);
  width: 100%;
}

.innovate__arrow--bottom {
  position: absolute;
  bottom: 0;
  transform: translateY(99%) rotate(180deg);
  width: 100%;
}

.home__innovate--cards {
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .home__innovate--cards {
    flex-direction: column;
  }
}
.home__innovate--card {
  flex: 1;
}
.home__innovate--card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.home__innovate--text {
  width: 100%;
  min-height: 130px;
  background-color: #A9F009;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home__innovate--text p {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.home__highlights {
  margin-top: 175px;
}
.home__highlights--cards {
  gap: 24px;
}
@media (max-width: 599px) {
  .home__highlights--cards {
    flex-direction: column;
  }
}
.home__highlights h2 {
  margin-bottom: 24px;
}
.home__highlights h2, .home__highlights h3, .home__highlights p {
  text-align: center;
}
.home__highlights--left, .home__highlights--right {
  flex: 1;
}
.home__highlights--left {
  border: 1px solid #1CAB4D;
}
.home__highlights--left h3 {
  font-size: 1.25rem;
  text-align: center;
  max-width: 350px;
}
.home__highlights .button--green, .home__highlights .button--light-green {
  margin-top: 24px;
}
.home__highlights--right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
@media (max-width: 599px) {
  .home__highlights--right {
    display: flex;
    flex-direction: column;
  }
}

.highlights__left--details {
  padding: 24px 24px 0px;
}

.highlights__right--details {
  padding: 24px 24px 0px;
  border: 1px solid #1CAB4D;
}
.highlights__right--details h3 {
  font-size: 1.25rem;
}

.home__partners {
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 250px;
  background-color: #1CAB4D;
}
.home__partners h2 {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .home__partners {
    padding-bottom: 150px;
  }
}

.partner__card {
  width: 225px;
  margin: 0 12px;
}
.partner__card img {
  width: 100%;
}

.home__summit {
  position: relative;
}
.home__summit--content {
  background-color: #000;
  position: relative;
  padding-top: 24px;
  padding-bottom: 50px;
}
.home__summit--content h1, .home__summit--content p {
  text-align: center;
  color: #FFFFFF;
}
.home__summit--content p {
  text-transform: uppercase;
}
.home__summit--content img {
  position: absolute;
}
@media (max-width: 900px) {
  .home__summit--content img {
    position: relative;
  }
}
.home__summit--description {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 901px) {
  .home__summit--description {
    margin-top: -40px;
  }
}
.home__summit--flex {
  gap: 50px;
}
@media (max-width: 900px) {
  .home__summit--flex {
    flex-direction: column;
  }
}
.home__summit .button--black {
  margin-top: 24px;
}

.countdown {
  color: #FFFFFF;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid #1CAB4D;
  gap: 24px;
}

.square {
  font-size: 1.75rem;
}

.label {
  font-size: 0.875rem;
}

.summit__archives {
  padding-top: 50px;
  padding-bottom: 250px;
  background-color: #1CAB4D;
}
.summit__archives h2 {
  margin-bottom: 30px;
}
.summit__archives a {
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .summit__archives {
    padding-bottom: 150px;
  }
}

.page__intro--text {
  background-color: #000;
  padding-bottom: 50px;
  color: #FFFFFF;
  text-align: center;
}
.page__intro--text p {
  text-transform: uppercase;
}
@media (max-width: 599px) {
  .page__intro--text {
    padding-top: 24px;
  }
  .page__intro--text h1 {
    font-size: 1.875rem;
  }
}

.summit__intro {
  padding-top: 50px;
  padding-bottom: 50px;
}
.summit__intro--text {
  text-align: center;
}

.summit__flex {
  gap: 24px;
}

.summit__keynote {
  position: relative;
}
.summit__keynote--content {
  background-color: #1CAB4D;
  padding-top: 50px;
  padding-bottom: 50px;
}
.summit__keynote--flex {
  gap: 50px;
}
@media (max-width: 900px) {
  .summit__keynote--flex {
    flex-direction: column;
  }
}
.summit__keynote--right, .summit__keynote--left {
  flex: 1;
}
.summit__keynote--right {
  gap: 24px;
}

.summit__arrow {
  position: absolute;
  bottom: 0;
  transform: translateY(99%) rotate(180deg);
}

.summit__accordions {
  margin-top: 200px;
  margin-bottom: 50px;
}
.summit__accordions h2 {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 25px;
}

.accordion {
  cursor: pointer;
  padding: 16px;
  width: 100%;
  outline: none;
  transition: all 0.2s;
  position: relative;
  background-color: #EFEFED;
  margin-top: 12px;
}
.accordion h2 {
  text-transform: uppercase;
  font-weight: normal;
  text-wrap: initial;
  padding-right: 60px;
  font-size: 1.375rem;
  margin-bottom: 0px;
  margin-top: 0px;
}
.accordion::after {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  max-height: 100%;
}
.accordion--active + .panel {
  margin-bottom: 12px;
  background-color: #EFEFED;
  padding: 24px;
}
.accordion--active:last-of-type {
  border-bottom: none;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel .button--grey {
  margin-top: 16px;
}

.accordion__image {
  max-width: 200px;
  margin-right: 20px;
  object-fit: cover;
}

.accordion__text-image {
  max-width: 600px;
}

.summit__button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

.resources__accordions {
  margin-top: 50px;
  margin-bottom: 50px;
}

.resources__resource {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1CAB4D;
  gap: 10px;
}

.resources__description {
  max-width: 750px;
}

.resources__title {
  font-weight: 700;
  text-transform: uppercase;
}

.news__index {
  padding-top: 50px;
  padding-bottom: 200px;
}
@media (max-width: 900px) {
  .news__index {
    padding-bottom: 150px;
  }
}

.news__preview {
  border: 1px solid #1CAB4D;
  flex-basis: 45%;
}
.news__preview h3 {
  font-size: 1.25rem;
  text-align: center;
  max-width: 350px;
}
.news__preview--container {
  gap: 24px;
}
.news__preview .button--green, .news__preview .button--light-green {
  margin-top: 24px;
}
@media (max-width: 599px) {
  .news__preview {
    flex-basis: 100%;
  }
}

#load-more {
  margin-top: 40px;
}

.news__post {
  position: relative;
}

.news__post--image {
  clip-path: polygon(50% 0%, 100% 15%, 100% 100%, 0 100%, 0 15%);
  width: 100%;
  aspect-ratio: 700/400;
  margin-top: -50px;
}
@media (max-width: 599px) {
  .news__post--image {
    margin-top: 0px;
  }
}

.news__post--text {
  padding-top: 24px;
  padding-bottom: 200px;
}
.news__post--text h2 {
  max-width: 500px;
  margin-bottom: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .news__post--text {
    padding-bottom: 150px;
  }
}

/*# sourceMappingURL=app.css.map */
