/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

p, ul, ol, dl, blockquote, pre {
  margin-bottom: 0;
}

/* Link Reset */
a {
  color: inherit;
  text-decoration: none;
}

/* List Reset */
ul, ol {
  list-style: none;
}

/* Form Reset */
button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

input, textarea, select {
  border: none;
  background: transparent;
}

/* Image Reset */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Table Reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Misc Reset */
article, aside, footer, header, nav, section {
  display: block;
}

body {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgb(34, 34, 34);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.65;
}

.heading-display {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.heading-xxl {
  font-size: 2.25rem;
  line-height: 1.1;
}

.heading-xl {
  font-size: 2rem;
  line-height: 1.1;
}

.heading-lg {
  font-size: 2.5rem;
  line-height: 1.1;
}

.heading-md {
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1.1;
}

.heading-sm {
  font-size: 1.5rem;
  line-height: 1.1;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #13603f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 0.2s ease, text-underline-offset 0.2s ease;
}
a:hover {
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-fluid {
  max-width: 100%;
  padding: 0;
}

.grid-col-1 {
  grid-column: span 1;
}
.grid-col-2 {
  grid-column: span 2;
}
.grid-col-3 {
  grid-column: span 3;
}
.grid-col-4 {
  grid-column: span 4;
}
.grid-col-5 {
  grid-column: span 5;
}
.grid-col-6 {
  grid-column: span 6;
}
.grid-col-7 {
  grid-column: span 7;
}
.grid-col-8 {
  grid-column: span 8;
}
.grid-col-9 {
  grid-column: span 9;
}
.grid-col-10 {
  grid-column: span 10;
}
.grid-col-11 {
  grid-column: span 11;
}
.grid-col-12 {
  grid-column: span 12;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-col-6 {
    grid-column: span 6;
  }
}
@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-col-1, .grid-col-2, .grid-col-3, .grid-col-4, .grid-col-5, .grid-col-6, .grid-col-7, .grid-col-8, .grid-col-9, .grid-col-10, .grid-col-11, .grid-col-12 {
    grid-column: span 1;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 24px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
  }
}
.btn--primary {
  color: #ffffff;
  background-color: #13603f;
  border-color: #13603f;
}
.btn--primary:hover {
  color: #13603f;
  background-color: #ffffff;
  border-color: #13603f;
}
.btn--secondary {
  color: #ffffff;
  background-color: #e83b3a;
  border-color: #e83b3a;
}
.btn--secondary:hover {
  color: #e83b3a;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn--outline {
  color: #13603f;
  background-color: transparent;
  border-color: #13603f;
}
.btn--outline:hover {
  color: #ffffff;
  background-color: #13603f;
}
.btn--white {
  color: #e83b3a;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn--white:hover {
  color: #fff !important;
  background-color: #e83b3a !important;
}
.btn--green {
  color: #ffffff;
  background-color: green;
  border-color: green;
}
.btn--green:hover {
  color: green !important;
  background-color: #ffffff;
  border-color: green;
}
.btn-link {
  padding: 0;
  color: #ffffff;
  background-color: transparent;
  border-color: transparent;
  font-weight: 400;
}
.btn-link:hover {
  color: #13603f;
  text-decoration: underline;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5em;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}
.btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.wysiwyg a {
  color: #13603f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 0.2s ease, text-underline-offset 0.2s ease;
}
.wysiwyg a:hover {
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.wysiwyg ul,
.wysiwyg ol {
  margin: 0 0 1.5rem 1.5rem;
  padding-left: 1.5rem;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg li + li {
  margin-top: 0.5rem;
}
.wysiwyg blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #13603f;
  font-style: italic;
  color: #374151;
}
.wysiwyg hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

body {
  background: #468DD3;
  overflow-x: hidden;
}
body.theme-purple {
  background: #e9e9ff;
}
body.theme-purple input, body.theme-purple textarea {
  border-color: #5d5daf !important;
}
body.theme-purple input, body.theme-purple textarea,
body.theme-purple .page_title h1,
body.theme-purple .event-card__content *,
body.theme-purple .team-content *,
body.theme-purple .text-content * {
  color: #5d5daf !important;
}
body.theme-purple .st0 {
  fill: #5d5daf !important;
}
body.theme-red {
  background: #ffdede;
}
body.theme-red input, body.theme-red textarea {
  border-color: #e83b3a !important;
}
body.theme-red input, body.theme-red textarea,
body.theme-red .page_title h1,
body.theme-red .event-card__content *,
body.theme-red .team-content *,
body.theme-red .text-content * {
  color: #e83b3a !important;
}
body.theme-red .st0 {
  fill: #e83b3a !important;
}
body.theme-green {
  background: #cbefdc;
}
body.theme-green input, body.theme-green textarea {
  border-color: #13603f !important;
}
body.theme-green input, body.theme-green textarea,
body.theme-green .page_title h1,
body.theme-green .event-card__content *,
body.theme-green .team-content *,
body.theme-green .text-content * {
  color: #13603f !important;
}
body.theme-green .st0 {
  fill: #13603f !important;
}

.footer-nav {
  position: fixed;
  bottom: 2rem;
  left: 1rem;
  right: 1rem;
  z-index: 30;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-nav {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.5rem 6rem;
  background: #e83b3a;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-logo {
  max-width: 10rem;
}

.mobile-menu-nav {
  width: 100%;
  text-align: center;
}

.mobile-menu-nav .nav-item + .nav-item {
  margin-top: 1rem;
}

.mobile-menu-nav .nav-link {
  display: inline-block;
  color: #ffffff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.page_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  padding-bottom: 2rem;
  margin-left: -1rem;
  position: relative;
}
@media (max-width: 768px) {
  .page_title {
    margin: 0;
    padding-bottom: 1rem;
    flex-direction: column;
  }
}
.page_title .page_title-logo {
  display: none;
}
@media (max-width: 768px) {
  .page_title .page_title-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.page_title .page_title-logo a {
  display: inline-flex;
}
.page_title .page_title-logo svg {
  width: 120px;
  height: auto;
}
.page_title .page_title-logo svg .st0,
.page_title .page_title-logo svg path {
  fill: #ffffff;
}
.page_title h1 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page_title h1 {
    font-size: 3rem;
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .page_title .btn {
    display: none;
  }
}

.text-content {
  padding: 1.75rem;
  padding-top: 0;
  max-width: 600px;
}
@media (max-width: 768px) {
  .text-content {
    padding: 1rem;
    padding-top: 0;
    margin-bottom: 6rem;
  }
}
.text-content form {
  max-width: 450px;
  margin-bottom: 50px;
}
.text-content textarea,
.text-content input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ffffff;
  border-radius: 0.25rem;
  background-color: transparent;
  color: #ffffff;
  margin-bottom: 1rem;
}

.blog.home {
  background-image: url("../images/background-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: unset;
  height: 100vh;
  width: 100vw;
}
@media (max-width: 768px) {
  .blog.home {
    background-image: url("../images/background.jpg");
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .blog.home .page_title {
    justify-content: center;
    padding-inline: 1rem;
    padding-block: 2rem;
  }
}
@media (max-width: 768px) {
  .blog.home .page_title > a:first-child {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .blog.home .page_title > a:first-child img {
    width: 220px;
  }
}
@media (max-width: 768px) {
  .blog.home .page_title > a:last-child {
    display: none;
  }
}
.blog.home .page_title img {
  width: 140px;
  height: auto;
}
@media (min-width: 768px) {
  .blog.home .page_title img {
    display: none;
  }
}
@media (max-width: 768px) {
  .blog.home .page_title .btn--green {
    display: inline-flex;
    position: absolute;
    right: 1rem;
  }
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-inline: 1.75rem;
}
@media (max-width: 768px) {
  .team-content {
    margin-bottom: 7rem;
  }
}
.team-content p {
  color: #ffffff;
}

.team-row {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  flex: 1 1 auto;
}
@media (max-width: 768px) {
  .team-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.team-row .image {
  flex: 0 0 33.333%;
}
@media (max-width: 768px) {
  .team-row .image {
    flex: 0 0 100%;
    max-width: 28rem;
    width: 100%;
    margin-inline: auto;
  }
}
.team-row .image img {
  width: 100%;
  height: auto;
  display: block;
}
.team-row .text {
  flex: 1 1 66.667%;
}
@media (max-width: 768px) {
  .team-row .text {
    flex: 1 1 100%;
  }
}
.team-row .text h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .team-row .text h2 {
    margin-bottom: 1rem;
  }
}
.team-row .text p {
  color: #ffffff;
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  padding-top: 0;
}
@media (max-width: 768px) {
  .events__list {
    padding: 1rem;
    margin-bottom: 6rem;
  }
}
.events__list .event-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  max-width: 625px;
  align-items: center;
}
.events__list .event-card .event-card__title {
  display: block;
  color: inherit;
  font-size: 1.45rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .events__list .event-card .event-card__title {
    font-size: 1rem;
  }
}
.events__list .event-card .event-card__time {
  display: block;
  line-height: 1;
  color: inherit;
  font-size: 1.45rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .events__list .event-card .event-card__time {
    font-size: 1rem;
  }
}
.events__list .event-card .event-card__location {
  display: block;
  font-size: 1.45rem;
  color: inherit;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 768px) {
  .events__list .event-card .event-card__location {
    font-size: 1rem;
    line-height: 1.2;
  }
}

.navbar-nav {
  margin-top: 1.5rem;
}
.navbar-nav li {
  display: block;
}
.navbar-nav li a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  font-size: 2.65rem;
  color: #ffffff;
  font-weight: 600;
  font-family: "Google Sans Flex", Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo img {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.site__sidebar {
  background-color: #e83b3a;
  min-height: 100vh;
  position: relative;
  padding-right: 2rem;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .site__sidebar {
    display: none;
  }
}
.site__sidebar:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: #e83b3a;
}

.home.blog .site__sidebar {
  background-color: transparent;
}
.home.blog .site__sidebar:before {
  display: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.socials .socials__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #e83b3a;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.socials .socials__button:hover, .socials .socials__button:focus-visible {
  color: #13603f;
  transform: translateY(-1px);
}
.socials .socials__button:active {
  transform: translateY(0);
}

.socials .socials__icon {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}

.socials .socials__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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