:root {
  --blue: rgb(40, 33, 161);
  --mid-blue: rgb(40, 74, 202);
  --light-blue: rgb(86, 205, 227);
  --red: rgb(255, 148, 127);
  --yellow: rgb(246, 223, 0);
  --light-yellow: rgb(249, 247, 225);
  --fc-event-bg-color: rgb(246, 223, 0);
  --fc-event-border-color: rgb(246, 223, 0);
  --fc-button-bg-color: rgb(40, 33, 161);
  --fc-button-border-color: rgb(40, 33, 161);
  --fc-button-active-bg-color: rgb(40, 33, 161);
  --fc-button-active-border-color: rgb(40, 33, 161);
  --fc-event-text-color: #000;
  --title-font: "silkablack", Helvetica, Arial, Lucida, sans-serif;
  --body-font: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  --font-light: 300;
  --font-med: 400;
  --font-bold: 500;
  --font-xbold: 600;
  --font-xxbold: 700;
  --fast-speed: all 0.3s ease;
  --mid-speed: all 0.7s ease;
  --slow-speed: all 1s ease;
}

html {
  scroll-behavior: smooth;
}

a {
  display: inline-block;
  cursor: pointer;
}
a:focus {
  outline: 1px solid var(--red);
}

span {
  display: inline-block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 1.5;
  overflow-x: hidden;
  text-align: center;
}
button:focus {
  outline: 1px solid var(--red);
}

input,
textarea,
select {
  font-size: 1rem;
  font-weight: var(--font-med);
  font-family: var(--body-font);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

body {
  font-family: var(--body-font);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--blue);
}

.btn {
  background-color: var(--red);
  padding: 1.2rem 4rem;
  border-radius: 2rem;
  position: relative;
  color: var(--blue);
  font-weight: var(--font-xbold);
  transition: var(--fast-speed);
  font-size: 1.15rem;
  text-align: center;
}
.btn.btn--yellow {
  background-color: var(--yellow);
}
.btn.btn--lblue {
  background-color: var(--light-blue);
}
.btn:hover, .btn:focus {
  box-shadow: 0px 4px 6px rgba(40, 33, 161, 0.15);
}
.btn:hover .arrow, .btn:focus .arrow {
  left: -0.25rem;
}
.btn:active {
  transform: translateY(1px);
}
.btn .arrow {
  position: absolute;
  left: -1.25rem;
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--fast-speed);
}
.btn .arrow svg {
  width: 100%;
  height: 100%;
}
.btn .arrow svg path {
  fill: #fff;
}

img,
figure {
  width: 100%;
  height: 100%;
}

figure {
  overflow: hidden;
}

figcaption {
  display: none;
  opacity: 0;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.skip__to__main {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -105%);
  background-color: var(--red);
  color: #fff;
  padding: 1rem;
  transition: var(--fast-speed);
}
.skip__to__main:focus {
  border-color: var(--blue);
  transform: translate(-50%, 0%);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 2rem;
}
.header .logo {
  height: 6rem;
  width: auto;
  display: flex;
  align-items: center;
}
.header .logo svg {
  width: 100%;
  height: 100%;
}
.header .burger {
  display: none;
}
.header .mob__donate,
.header .mob__search {
  display: none;
}
.header .navbar .nav__menu {
  display: flex;
  align-items: center;
}
.header .navbar .nav__menu .nav__item {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  border-bottom: 1px solid transparent;
  transition: var(--fast-speed);
  position: relative;
}
.header .navbar .nav__menu .nav__item > a {
  padding: 1rem 1.5rem;
}
.header .navbar .nav__menu .nav__item > a.btn {
  padding: 0.75rem 3rem;
}
.header .navbar .nav__menu .nav__item.donate {
  margin-left: 4rem;
  border: none;
}
.header .navbar .nav__menu .nav__item.search {
  border: none;
}
.header .navbar .nav__menu .nav__item.search .toggle {
  border: none;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background-color: var(--yellow);
  margin-left: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: unset;
}
.header .navbar .nav__menu .nav__item.search .toggle:focus {
  outline: 2px solid var(--red);
}
.header .navbar .nav__menu .nav__item.search .search__form {
  position: absolute;
  background-color: var(--yellow);
  top: -8%;
  right: 98%;
  display: none;
  border-radius: 3rem;
}
.header .navbar .nav__menu .nav__item.search .search__form.open {
  display: block;
}
.header .navbar .nav__menu .nav__item.search .search__form form {
  display: flex;
}
.header .navbar .nav__menu .nav__item.search .search__form input {
  display: inline-block;
  border: none;
  outline: none;
  background: none;
  width: 28rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--blue);
  color: var(--blue);
  border-bottom-left-radius: 3rem;
  border-top-left-radius: 3rem;
}
.header .navbar .nav__menu .nav__item.search .search__form input:focus {
  outline: 1px solid var(--red);
}
.header .navbar .nav__menu .nav__item.search .search__form button {
  cursor: pointer;
  width: 8rem;
  padding: 1.5rem 2rem;
  background-color: var(--light-blue);
  border-bottom-right-radius: 3rem;
  border-top-right-radius: 3rem;
  overflow: unset;
  display: block;
  transition: var(--fast-speed);
}
.header .navbar .nav__menu .nav__item.search svg path {
  fill: var(--blue);
}
.header .navbar .nav__menu .nav__item:hover {
  border-color: #fff;
}
.header .navbar .nav__menu .nav__item:nth-of-type(2) {
  color: var(--red);
}
.header .navbar .nav__menu .nav__item:nth-of-type(2):hover {
  color: #fff;
}
.header .navbar .nav__menu .nav__item:nth-of-type(3) {
  color: var(--light-blue);
}
.header .navbar .nav__menu .nav__item:nth-of-type(3).nav__item--parent .chevron svg path {
  fill: var(--light-blue);
}
.header .navbar .nav__menu .nav__item:nth-of-type(3):hover {
  color: #fff;
}
.header .navbar .nav__menu .nav__item:nth-of-type(4) {
  color: var(--yellow);
}
.header .navbar .nav__menu .nav__item:nth-of-type(4).nav__item--parent .chevron svg path {
  fill: var(--yellow);
}
.header .navbar .nav__menu .nav__item:nth-of-type(4):hover {
  color: #fff;
}
.header .navbar .nav__menu .nav__item:nth-of-type(5) {
  color: var(--red);
}
.header .navbar .nav__menu .nav__item:nth-of-type(5):hover {
  color: #fff;
}
.header .navbar .nav__menu .nav__item:nth-of-type(6) {
  color: var(--light-blue);
}
.header .navbar .nav__menu .nav__item:nth-of-type(6):hover {
  color: #fff;
}
.header .navbar .nav__menu .nav__item.nav__item--active {
  border-color: #fff;
}
.header .navbar .nav__menu .nav__item.nav__item--parent .chevron {
  position: absolute;
  right: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.header .navbar .nav__menu .nav__item.nav__item--parent .chevron svg path {
  fill: #fd9381;
}
.header .navbar .nav__menu .nav__item.nav__item--parent:focus .inner__nav {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header .navbar .nav__menu .nav__item.nav__item--parent:focus-within .inner__nav {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header .navbar .nav__menu .nav__item.nav__item--parent:hover .inner__nav {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav {
  position: absolute;
  right: 0;
  transform: translateX(50%);
  background-color: #fff;
  width: 60rem;
  color: var(--blue);
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--mid-speed);
  z-index: 5;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav p {
  padding-bottom: 1rem;
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .inner__nav__menu {
  font-weight: var(--font-med);
  font-size: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .inner__nav__menu li {
  border-bottom: 1px solid rgba(177, 177, 177, 0.3);
  transition: var(--fast-speed);
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .inner__nav__menu li:hover {
  color: var(--red);
  border-color: var(--red);
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .inner__nav__menu li a {
  width: 100%;
  height: 100%;
  padding: 1rem 0 0.5rem 0;
  color: var(--blue);
  transition: var(--fast-speed);
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .inner__nav__menu li a:hover {
  color: var(--red);
}
.header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .img {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1700px) {
  .header .logo {
    height: 4rem;
  }
}
@media only screen and (max-width: 1600px) {
  .header .navbar .nav__menu .nav__item {
    font-size: 1.1rem;
  }
  .header .navbar .nav__menu .nav__item.donate {
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 1475px) {
  .header .navbar .nav__menu .nav__item {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1400px) {
  .header .mob__donate {
    display: block;
    margin-left: auto;
  }
  .header .mob__search {
    display: block;
    position: relative;
  }
  .header .mob__search .toggle {
    border: none;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background-color: var(--yellow);
    margin-left: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: unset;
  }
  .header .mob__search .toggle:focus {
    outline: 2px solid var(--red);
  }
  .header .mob__search svg path {
    fill: var(--blue);
  }
  .header .mob__search .mob__search__form {
    position: absolute;
    background-color: var(--yellow);
    top: -8%;
    right: 98%;
    display: none;
    border-radius: 3rem;
  }
  .header .mob__search .mob__search__form.open {
    display: block;
  }
  .header .mob__search .mob__search__form form {
    display: flex;
  }
  .header .mob__search .mob__search__form input {
    display: inline-block;
    border: none;
    outline: none;
    background: none;
    width: 20rem;
    padding: 1.5rem 2rem;
    border-right: 1px solid var(--blue);
    color: var(--blue);
    border-bottom-left-radius: 3rem;
    border-top-left-radius: 3rem;
  }
  .header .mob__search .mob__search__form input:focus {
    outline: 1px solid var(--red);
  }
  .header .mob__search .mob__search__form button {
    cursor: pointer;
    width: 8rem;
    padding: 1.5rem;
    background-color: var(--light-blue);
    border-bottom-right-radius: 3rem;
    border-top-right-radius: 3rem;
    overflow: unset;
    display: block;
    transition: var(--fast-speed);
  }
  .header .navbar .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--blue);
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    transition: var(--mid-speed);
    transform: translateX(-101%);
  }
  .header .navbar .nav__menu.nav--open {
    transform: translateX(0);
  }
  .header .navbar .nav__menu .nav__item {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  .header .navbar .nav__menu .nav__item.search {
    display: none;
  }
  .header .navbar .nav__menu .nav__item.donate {
    margin-left: 0;
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .chevron {
    cursor: pointer;
    padding: 1rem;
    top: 1rem;
    right: -3rem;
    transition: var(--fast-speed);
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .chevron.inner__nav--open {
    transform: rotate(180deg);
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 0;
    width: -moz-max-content;
    width: max-content;
    background-color: transparent;
    margin: 0 auto;
    left: 0;
    transform: translateX(0);
    display: none;
    box-shadow: none;
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav.inner__nav--open {
    display: block;
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav p {
    display: none;
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid {
    display: block;
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .inner__nav__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .inner__nav__menu li {
    text-align: center;
    color: #fff;
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .inner__nav__menu li a {
    color: #fff;
  }
  .header .navbar .nav__menu .nav__item.nav__item--parent .inner__nav .grid .img {
    display: none;
  }
  .header .burger {
    display: block;
    position: relative;
    z-index: 110;
    overflow: unset;
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }
  .header .burger .line {
    margin: 4px 0;
    background-color: #fff;
    height: 2px;
    width: 2rem;
    border-radius: 2px;
    position: relative;
    transition: var(--mid-speed);
  }
  .header .burger.nav--open .line:nth-of-type(1) {
    transform: rotate(45deg) translateY(14px);
  }
  .header .burger.nav--open .line:nth-of-type(2) {
    transform: translateX(100%);
    opacity: 0;
  }
  .header .burger.nav--open .line:nth-of-type(3) {
    transform: rotate(-45deg) translateY(-14px);
  }
}
@media only screen and (max-width: 675px) {
  .header .mob__donate {
    display: none;
  }
  .header .mob__search {
    margin-left: auto;
  }
  .header .mob__search .mob__search__form {
    top: 100%;
    right: 0;
  }
}
@media only screen and (max-width: 615px) {
  .header .mob__search .mob__search__form {
    top: 100%;
  }
  .header .mob__search .mob__search__form input {
    width: 12rem;
    padding: 1rem 2rem;
  }
  .header .mob__search .mob__search__form button {
    padding: 1rem;
    width: 6rem;
  }
  .header .logo {
    height: 3rem;
  }
}
@media only screen and (max-width: 550px) {
  .header .mob__search .mob__search__form {
    right: -2rem;
  }
  .header .mob__search .mob__search__form input {
    font-size: 1rem;
    width: 12rem;
  }
}
@media only screen and (max-width: 450px) {
  .header .mob__search {
    margin-left: auto;
    margin-right: 0.5rem;
  }
  .header .mob__search .toggle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .header .mob__search .mob__search__form {
    right: -4rem;
  }
  .header .mob__search .mob__search__form input {
    font-size: 1rem;
    width: 12rem;
  }
  .header .logo {
    height: 3rem;
  }
}
@media only screen and (max-width: 350px) {
  .header {
    padding: 2rem 1rem;
  }
  .header .logo {
    height: 2.5rem;
  }
  .header .burger {
    padding: 0.5rem;
  }
}
.main__hero {
  color: #fff;
  padding: 8rem 2rem;
}
.main__hero .wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10rem;
}
.main__hero .text h1 {
  font-size: 5rem;
  line-height: 1.15;
  font-weight: var(--font-xxbold);
  padding-bottom: 2rem;
  font-family: var(--title-font);
}
.main__hero .text h1 span {
  color: var(--light-blue);
}
.main__hero .text p {
  font-size: 1.4rem;
  padding-bottom: 1.5rem;
  font-weight: var(--font-light);
  line-height: 1.75;
}
.main__hero .text p a {
  color: var(--light-blue);
}
.main__hero .text p a:hover {
  color: var(--red);
}
.main__hero .text .btns {
  margin-top: 4rem;
}
.main__hero .text .btns .btn:first-of-type {
  margin-right: 3rem;
  margin-bottom: 1rem;
}
.main__hero .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.main__hero .scroll__arrow {
  grid-column: span 2/auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main__hero .scroll__arrow:hover svg {
  transform: rotate(90deg) translateX(2rem);
}
.main__hero .scroll__arrow svg {
  transform: rotate(90deg);
  width: 3.5rem;
  height: 3.5rem;
  transition: var(--fast-speed);
  pointer-events: none;
}
.main__hero .scroll__arrow svg path {
  fill: #fff;
}

@media only screen and (max-width: 1550px) {
  .main__hero .wrapper {
    gap: 4rem;
  }
}
@media only screen and (max-width: 1300px) {
  .main__hero .wrapper {
    gap: 2rem;
  }
  .main__hero .text h1 {
    font-size: 3.5rem;
    line-height: 1.25;
    font-weight: var(--font-xxbold);
    padding-bottom: 2rem;
  }
  .main__hero .text h1 span {
    color: var(--light-blue);
  }
  .main__hero .text p {
    font-size: 1.15rem;
    padding-bottom: 1.5rem;
    font-weight: var(--font-light);
    line-height: 1.75;
  }
  .main__hero .text .btns {
    margin-top: 4rem;
  }
  .main__hero .text .btns .btn {
    font-size: 1.15rem;
  }
  .main__hero .text .btns .btn:first-of-type {
    margin-right: 3rem;
  }
}
@media only screen and (max-width: 1050px) {
  .main__hero .wrapper {
    grid-template-columns: 1fr;
  }
  .main__hero .text {
    text-align: center;
    padding: 0 4rem;
  }
  .main__hero .text h1 {
    max-width: 40rem;
    margin: 0 auto;
  }
  .main__hero .img {
    padding: 2rem 4rem;
    width: 100%;
  }
  .main__hero .scroll__arrow {
    grid-column: span 1/auto;
  }
}
@media only screen and (max-width: 675px) {
  .main__hero {
    padding-top: 4rem;
  }
  .main__hero .text {
    text-align: center;
    padding: 0 1rem;
  }
  .main__hero .text h1 {
    font-size: 3rem;
  }
  .main__hero .text p {
    font-size: 1rem;
  }
  .main__hero .text .btns {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
  }
  .main__hero .text .btns .btn {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .main__hero .text .btns .btn:first-of-type {
    margin: 0 auto 1rem auto;
  }
  .main__hero .img {
    padding: 2rem 4rem;
  }
}
@media only screen and (max-width: 500px) {
  .main__hero {
    padding: 4rem 1.25rem 4rem 1.25rem;
  }
  .main__hero .img {
    padding: 2rem;
  }
  .main__hero .text {
    padding: 0;
  }
}
.second__hero {
  background-color: var(--red);
  padding: 12rem 2rem;
  color: #fff;
}
.second__hero .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1600px;
  margin: 0 auto;
  align-items: center;
  gap: 10rem;
}
.second__hero .text h2 {
  font-size: 1.15rem;
  font-weight: var(--font-bold);
  padding-bottom: 0.5rem;
  color: #fff;
}
.second__hero .text h3 {
  font-size: 5rem;
  line-height: 1.15;
  font-weight: var(--font-xxbold);
  padding-bottom: 4rem;
  font-family: var(--title-font);
}
.second__hero .text h3 span {
  color: var(--blue);
}
.second__hero .text p {
  font-size: 1.4rem;
  padding-bottom: 1.5rem;
  font-weight: var(--font-light);
  color: var(--blue);
}
.second__hero .text .btns {
  margin-top: 4rem;
}
.second__hero .text .btns .btn:first-of-type {
  margin-right: 3rem;
}
.second__hero .img {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1550px) {
  .second__hero .wrapper {
    gap: 4rem;
  }
}
@media only screen and (max-width: 1300px) {
  .second__hero .wrapper {
    gap: 2rem;
  }
  .second__hero .text h3 {
    font-size: 3.5rem;
    font-weight: var(--font-xxbold);
    padding-bottom: 2rem;
  }
  .second__hero .text p {
    font-size: 1.15rem;
    padding-bottom: 1.5rem;
    font-weight: var(--font-light);
    line-height: 1.75;
  }
}
@media only screen and (max-width: 1024px) {
  .second__hero {
    padding-top: 8rem;
  }
  .second__hero .wrapper {
    grid-template-columns: 1fr;
  }
  .second__hero .text {
    padding: 0 4rem;
  }
  .second__hero .img {
    padding: 0 12rem 2rem 12rem;
  }
  .second__hero .scroll__arrow {
    grid-column: span 1/auto;
  }
}
@media only screen and (max-width: 900px) {
  .second__hero .img {
    padding: 0 8rem 2rem 8rem;
  }
}
@media only screen and (max-width: 675px) {
  .second__hero {
    padding-top: 4rem;
  }
  .second__hero .text {
    padding: 0 2rem;
    text-align: center;
  }
  .second__hero .text h3 {
    font-size: 3rem;
  }
  .second__hero .text p {
    font-size: 1rem;
  }
  .second__hero .img {
    padding: 2rem 4rem;
  }
}
@media only screen and (max-width: 500px) {
  .second__hero {
    padding: 4rem 1.25rem 8rem 1.25rem;
  }
  .second__hero .img {
    padding: 2rem;
  }
  .second__hero .text {
    padding: 0 1.5rem;
  }
}
.cta__grid {
  background-color: #fff;
  padding: 10rem 2rem;
}
.cta__grid .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6rem;
  max-width: 1600px;
  margin: 0 auto;
}
.cta__grid .cta__item {
  padding: 1rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.cta__grid .cta__item:nth-of-type(4) {
  display: none;
}
.cta__grid .cta__item .img {
  height: 24rem;
}
.cta__grid .cta__item .text {
  color: var(--blue);
}
.cta__grid .cta__item .text h3 {
  font-size: 1.25rem;
  font-weight: var(--font-xbold);
  padding-bottom: 0.25rem;
  font-family: var(--title-font);
}
.cta__grid .cta__item .text p {
  font-size: 1.75rem;
  font-weight: var(--font-light);
}
.cta__grid .cta__item .divider {
  height: 1rem;
  padding: 1rem 0;
}
.cta__grid .cta__item .btn {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.cta__grid .cta__item:nth-child(1) .btn {
  background-color: var(--light-blue);
}
.cta__grid .cta__item:nth-child(2) .btn {
  background-color: var(--red);
}
.cta__grid .cta__item:nth-child(3) .btn {
  background-color: var(--yellow);
}

@media only screen and (max-width: 1200px) {
  .cta__grid .grid {
    gap: 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .cta__grid {
    padding: 6rem 2rem;
  }
  .cta__grid .grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta__grid .cta__item:nth-of-type(4) {
    display: block;
  }
}
@media only screen and (max-width: 700px) {
  .cta__grid .grid {
    grid-template-columns: 1fr;
  }
  .cta__grid .cta__item .img {
    height: 16rem;
  }
  .cta__grid .cta__item:nth-of-type(4) {
    display: none;
  }
}
@media only screen and (max-width: 450px) {
  .cta__grid .cta__item {
    padding: 1rem 0;
  }
  .cta__grid .cta__item .text h3 {
    font-size: 1rem;
  }
  .cta__grid .cta__item .text p {
    font-size: 1.25rem;
  }
}
.info__slider {
  background-color: var(--blue);
  padding: 8rem 2rem;
}
.info__slider .splide__slide {
  color: #fff;
}
.info__slider .splide__slide.is-active .content {
  opacity: 1;
}
.info__slider .splide__slide .content {
  opacity: 0;
  transition: var(--mid-speed);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 45rem;
  margin: 0 auto;
}
.info__slider .splide__slide .content p {
  font-size: 2rem;
  font-weight: var(--font-light);
  text-align: center;
}
.info__slider .splide__slide .content p:first-of-type {
  line-height: 1;
  padding-bottom: 3rem;
}
.info__slider .splide__slide .content p:last-of-type {
  font-size: 1.25rem;
  padding-bottom: 4rem;
}
.info__slider .splide__slide .content p strong {
  font-size: 4.5rem;
  color: var(--yellow);
  font-weight: var(--font-xxbold);
  font-family: var(--title-font);
}
.info__slider .splide__pagination li button {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 0.25rem;
  transition: var(--fast-speed);
}
.info__slider .splide__pagination li button.is-active {
  border-color: var(--yellow);
}
.info__slider .splide__pagination li button:hover {
  border-color: var(--yellow);
}

@media only screen and (max-width: 650px) {
  .info__slider .splide__slide .content p strong {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 550px) {
  .info__slider .splide__slide .content p {
    font-size: 1.5rem;
    font-weight: var(--font-light);
    padding-bottom: 1.25rem;
    text-align: center;
  }
  .info__slider .splide__slide .content p:last-of-type {
    font-size: 1rem;
    padding-bottom: 2rem;
  }
  .info__slider .splide__slide .content p span {
    font-size: 3rem;
    color: var(--yellow);
    font-weight: var(--font-xxbold);
  }
  .info__slider .splide__pagination li button {
    width: 1rem;
    height: 1rem;
  }
}
@media only screen and (max-width: 350px) {
  .info__slider .splide__slide .content p strong {
    font-size: 2rem;
  }
}
.news__grid {
  background-color: var(--yellow);
  padding: 8rem 0;
}
.news__grid h3 {
  text-align: center;
  padding-bottom: 4rem;
  font-size: 3.5rem;
  font-weight: var(--font-xxbold);
  color: var(--blue);
  font-family: var(--title-font);
}
.news__grid .grid {
  padding: 0 2rem;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.news__grid .grid .news__item {
  padding: 2rem;
  transition: var(--fast-speed);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news__grid .grid .news__item a {
  width: 100%;
  height: 100%;
  display: block;
}
.news__grid .grid .news__item:hover {
  background-color: #fff;
}
.news__grid .grid .news__item .img {
  height: 22rem;
}
.news__grid .grid .news__item .date {
  background-color: var(--light-blue);
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  padding: 0.25rem 2rem;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 2rem auto;
}
.news__grid .grid .news__item .title {
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
}
.news__grid .grid .news__item .more {
  text-align: center;
  border-bottom: 2px solid var(--blue);
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  color: var(--blue);
}
.news__grid .grid .news__item .more svg {
  margin-left: 1rem;
}
.news__grid .grid .news__item .more svg path {
  fill: var(--blue);
}
.news__grid .load__more__btn {
  margin: 4rem auto 0 auto;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.news__grid .long__divider {
  padding-top: 8rem;
  width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .news__grid h3 {
    padding-bottom: 0;
  }
  .news__grid .grid {
    gap: 0;
    grid-template-columns: 1fr 1fr;
  }
  .news__grid .grid .news__item .img {
    height: 14rem;
  }
}
@media only screen and (max-width: 775px) {
  .news__grid .grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 450px) {
  .news__grid .grid {
    padding: 0 1rem;
  }
  .news__grid .grid .news__item {
    padding: 1rem;
  }
  .news__grid .grid .news__item .date {
    margin-bottom: 1rem;
  }
  .news__grid .grid .news__item .img {
    height: 16rem;
  }
  .news__grid .grid .news__item .title {
    font-size: 1.25rem;
  }
}
.home__video {
  background-color: #fff;
  padding: 8rem 2rem 8rem 2rem;
}
.home__video .grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.home__video .grid h5 {
  font-size: 4rem;
  color: var(--blue);
  font-weight: var(--font-xxbold);
  text-align: right;
  line-height: 1.25;
  font-family: var(--title-font);
}
.home__video .grid .video {
  padding: 56.25% 0 0 0;
  position: relative;
  margin-bottom: 4rem;
}
.home__video .grid .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 915px) {
  .home__video .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home__video .grid h5 {
    text-align: center;
    font-family: var(--title-font);
  }
  .home__video .grid h5 br {
    display: none;
  }
}
@media only screen and (max-width: 450px) {
  .home__video {
    padding: 4rem 1rem 4rem 1rem;
  }
  .home__video .grid h5 {
    font-size: 3rem;
  }
}
.footer {
  background-color: var(--blue);
  position: relative;
}
.footer > .wrapper {
  padding: 4rem 2rem 4rem 2rem;
  max-width: 1660px;
  margin: 0 auto;
}
.footer .newsletter {
  position: relative;
  box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  color: var(--blue);
  transform: translateY(-75%);
  overflow: hidden;
  display: flex;
}
.footer .newsletter .left h5 {
  font-weight: var(--font-bold);
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  font-family: var(--title-font);
}
.footer .newsletter .left p {
  font-weight: var(--font-light);
}
.footer .newsletter .right label {
  font-size: 1.25rem;
}
.footer .newsletter .right .input {
  border-bottom: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .newsletter .right .input input {
  height: 100%;
  flex: 1;
  margin-right: 1rem;
  border: none;
  padding: 1rem;
  font-size: 1.15rem;
  color: var(--blue);
}
.footer .newsletter .right .input input:focus {
  outline: 1px solid var(--red);
}
.footer .newsletter .right .input button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: var(--fast-speed);
  font-size: 1.15rem;
}
.footer .newsletter .right .input button:hover {
  color: var(--light-blue);
}
.footer .newsletter .right .input button:hover path {
  fill: var(--light-blue);
}
.footer .newsletter .right .input button svg {
  margin-left: 0.5rem;
}
.footer .newsletter .right .input button svg path {
  transition: var(--fast-speed);
  fill: var(--blue);
}
.footer .footer__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.footer .footer__details .footer__left {
  color: #fff;
}
.footer .footer__details .footer__left .logo {
  max-width: 14rem;
}
.footer .footer__details .footer__left p {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: var(--font-light);
  padding: 2rem 0;
}
.footer .footer__details .footer__left .btns .btn:first-of-type {
  margin-right: 3rem;
  margin-bottom: 1rem;
}
.footer .footer__details .footer__left .social__links {
  display: flex;
  margin-top: 6rem;
}
.footer .footer__details .footer__left .social__links li {
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
}
.footer .footer__details .footer__left .social__links li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer__details .footer__left .social__links li a svg {
  transition: var(--fast-speed);
  width: 20px;
  fill: var(--blue);
}
.footer .footer__details .footer__left .social__links li a:hover svg {
  fill: var(--light-blue);
}
.footer .footer__details .footer__left .social__links li:last-of-type {
  margin-right: 0;
}
.footer .footer__details .footer__right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
}
.footer .footer__details .footer__right > div {
  padding: 0 4rem;
}
.footer .footer__details .footer__right > div.left {
  border-right: 1px solid rgba(255, 255, 0, 0.5);
}
.footer .footer__details .footer__right > div > div p {
  font-size: 1.5rem;
  padding-bottom: 1rem;
  font-weight: var(--font-bold);
  font-family: var(--title-font);
}
.footer .footer__details .footer__right > div > div.about p {
  color: var(--yellow);
}
.footer .footer__details .footer__right > div > div.community p {
  color: var(--red);
}
.footer .footer__details .footer__right > div > div.who-we-are p {
  color: var(--light-blue);
}
.footer .footer__details .footer__right > div > div.get-involved p {
  color: var(--yellow);
}
.footer .footer__details .footer__right > div > div ul li {
  font-weight: var(--font-med);
  font-size: 1.1rem;
}
.footer .footer__details .footer__right > div > div ul li a {
  padding: 0.25rem 0;
  transition: var(--fast-speed);
}
.footer .footer__details .footer__right > div > div ul li a:hover {
  color: var(--yellow);
}
.footer .footer__details .footer__right > div .divider {
  height: 1rem;
  margin: 2rem 0;
}
.footer .furniture {
  padding: 4rem 2rem;
  background-color: var(--light-blue);
}
.footer .furniture .wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 0.75rem;
}
.footer .furniture .wrapper img {
  width: 275px;
}
.footer .furniture .wrapper ul {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  gap: 0.75rem;
}
.footer .furniture .wrapper a {
  text-decoration: underline;
  transition: var(--fast-speed);
}
.footer .furniture .wrapper a:hover {
  color: var(--blue);
}
.footer .furniture .wrapper .site__by {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .footer .furniture .wrapper {
    flex-direction: row;
  }
  .footer .furniture .wrapper ul {
    margin-left: 2rem;
    flex-direction: row;
    margin-right: auto;
    margin-top: 0;
  }
  .footer .furniture .wrapper ul li span {
    display: inline;
  }
  .footer .furniture .wrapper ul a span {
    text-decoration: none;
  }
  .footer .furniture .wrapper .site__by {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1380px) {
  .footer {
    margin-top: 6rem;
  }
  .footer .newsletter {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1300px) {
  .footer .footer__details {
    gap: 0;
  }
  .footer .footer__details .footer__right > div {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .footer {
    margin-top: 4rem;
  }
  .footer .newsletter {
    transform: translateY(-20%);
  }
  .footer > .wrapper {
    padding-top: 0;
  }
  .footer .footer__details {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .footer .footer__details .footer__left .social__links {
    justify-content: center;
  }
  .footer .footer__details .footer__right {
    justify-content: center;
  }
  .footer .footer__details .footer__right > div {
    padding: 0 6rem;
  }
  .footer .footer__details .footer__right > div.left {
    padding-left: 0;
  }
  .footer .footer__details .footer__right > div.right {
    padding-right: 0;
  }
  .footer .footer__details .footer__left .social__links {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 915px) {
  .footer .newsletter {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media only screen and (max-width: 675px) {
  .footer .footer__details {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer .footer__details .footer__left .logo {
    margin: 0 auto;
  }
  .footer .footer__details .footer__left p {
    font-size: 1rem;
  }
  .footer .footer__details .footer__left .btns {
    display: flex;
    flex-direction: column;
  }
  .footer .footer__details .footer__left .btns .btn {
    display: block;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .footer .footer__details .footer__left .btns .btn:first-of-type {
    margin-right: auto;
  }
  .footer .footer__details .footer__left .social__links {
    justify-content: center;
  }
  .footer .footer__details .footer__right {
    justify-content: center;
  }
  .footer .footer__details .footer__right > div.left {
    padding-right: 2rem;
  }
  .footer .footer__details .footer__right > div.right {
    padding-left: 2rem;
    padding-right: 0;
  }
  .footer .footer__details .footer__right > div > div ul li {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .footer .newsletter .right .input {
    display: block;
    border: none;
  }
  .footer .newsletter .right .input input {
    border-bottom: 1px solid var(--red);
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 450px) {
  .footer .newsletter {
    padding: 2rem;
  }
  .footer .footer__details .footer__right {
    flex-direction: column;
  }
  .footer .footer__details .footer__right > div.left {
    padding: 0;
    border-right: none;
  }
  .footer .footer__details .footer__right > div.right {
    padding: 0;
  }
  .footer .footer__details .footer__right > div .divider {
    display: none;
  }
  .footer .footer__details .footer__right > div > div {
    margin-bottom: 2rem;
  }
}
.page__grid {
  background-color: var(--yellow);
  padding-top: 4rem;
}
.page__grid .grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 2rem 12rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
.page__grid .grid .page__grid__item {
  color: var(--blue);
  transition: var(--fast-speed);
  padding: 1rem 1rem 2rem 1rem;
}
.page__grid .grid .page__grid__item:hover {
  background-color: #fff;
}
.page__grid .grid .page__grid__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.page__grid .grid .page__grid__item .img {
  height: 16rem;
}
.page__grid .grid .page__grid__item .title {
  font-size: 1.25rem;
  padding: 0.5rem 0 1.5rem 0;
  text-align: center;
}
.page__grid .grid .page__grid__item .btn {
  width: -moz-max-content;
  width: max-content;
  margin: auto auto 0 auto;
}

@media only screen and (max-width: 1024px) {
  .page__grid .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 675px) {
  .page__grid .grid {
    gap: 2rem;
    padding: 1rem 1rem 8rem 1rem;
  }
}
@media only screen and (max-width: 615px) {
  .page__grid .grid {
    grid-template-columns: 1fr;
  }
  .page__grid .grid .page__grid__item .img {
    height: 12rem;
  }
}
.page__hero {
  background-color: var(--blue);
  padding: 2rem 1rem;
}
.page__hero h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: var(--font-xxbold);
  color: #fff;
  line-height: 1.25;
  font-family: var(--title-font);
}

.inner__page {
  background-color: #fff;
  color: var(--blue);
}
.inner__page .inner__content {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 8rem 2rem;
}
.inner__page .inner__content.inner__content--full-width {
  grid-template-columns: 1fr;
  max-width: 1200px;
  padding: 8rem 1rem;
}
.inner__page .inner__content .inner__copy .breadcrumbs {
  padding-bottom: 2rem;
}
.inner__page .inner__content .inner__copy .breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.inner__page .inner__content .inner__copy .breadcrumbs ul li {
  position: relative;
  padding: 0.25rem 0;
  color: rgb(184, 184, 184);
  font-size: 1rem;
}
.inner__page .inner__content .inner__copy .breadcrumbs ul li::after {
  content: ">";
  position: absolute;
  right: -0.25rem;
  color: rgb(184, 184, 184);
}
.inner__page .inner__content .inner__copy .breadcrumbs ul li:last-of-type::after {
  display: none;
}
.inner__page .inner__content .inner__copy .breadcrumbs ul li:first-of-type a {
  padding-left: 0;
}
.inner__page .inner__content .inner__copy .breadcrumbs ul li a {
  padding: 0 1rem;
  transition: var(--fast-speed);
}
.inner__page .inner__content .inner__copy .breadcrumbs ul li a:hover {
  color: var(--blue);
}
.inner__page .inner__content .inner__copy .content h1,
.inner__page .inner__content .inner__copy .content h2,
.inner__page .inner__content .inner__copy .content h3,
.inner__page .inner__content .inner__copy .content h4,
.inner__page .inner__content .inner__copy .content h5,
.inner__page .inner__content .inner__copy .content h6 {
  font-weight: var(--font-xbold);
  padding-bottom: 1.25rem;
  font-family: var(--title-font);
}
.inner__page .inner__content .inner__copy .content h1 {
  font-size: 2rem;
}
.inner__page .inner__content .inner__copy .content h2 {
  font-size: 1.9rem;
}
.inner__page .inner__content .inner__copy .content h3 {
  font-size: 1.8rem;
}
.inner__page .inner__content .inner__copy .content h4 {
  font-size: 1.7rem;
}
.inner__page .inner__content .inner__copy .content h5 {
  font-size: 1.6rem;
}
.inner__page .inner__content .inner__copy .content h6 {
  font-size: 1.5rem;
}
.inner__page .inner__content .inner__copy .content p {
  padding-bottom: 1.25rem;
  font-size: 1.15rem;
  font-weight: var(--font-light);
  line-height: 1.75;
}
.inner__page .inner__content .inner__copy .content p strong {
  font-weight: var(--font-xbold);
}
.inner__page .inner__content .inner__copy .content p em {
  font-style: italic;
}
.inner__page .inner__content .inner__copy .content p a {
  transition: var(--fast-speed);
  font-weight: var(--font-bold);
  word-break: break-all;
}
.inner__page .inner__content .inner__copy .content p a:hover {
  color: var(--red);
}
.inner__page .inner__content .inner__copy .content ul,
.inner__page .inner__content .inner__copy .content ol {
  padding: 0.5rem 0 2rem;
}
.inner__page .inner__content .inner__copy .content ul.search__results li,
.inner__page .inner__content .inner__copy .content ol.search__results li {
  padding-bottom: 1rem;
}
.inner__page .inner__content .inner__copy .content ul.search__results li a,
.inner__page .inner__content .inner__copy .content ol.search__results li a {
  font-weight: var(--font-bold);
  transition: var(--fast-speed);
  border-bottom: 1px solid transparent;
}
.inner__page .inner__content .inner__copy .content ul.search__results li a:hover,
.inner__page .inner__content .inner__copy .content ol.search__results li a:hover {
  border-color: var(--dark-blue);
}
.inner__page .inner__content .inner__copy .content ul li,
.inner__page .inner__content .inner__copy .content ol li {
  padding-bottom: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.75;
  list-style: disc;
  margin-left: 1rem;
  font-weight: var(--font-light);
}
.inner__page .inner__content .inner__copy .content ul strong,
.inner__page .inner__content .inner__copy .content ol strong {
  font-weight: var(--font-xbold);
}
.inner__page .inner__content .inner__copy .content ul em,
.inner__page .inner__content .inner__copy .content ol em {
  font-style: italic;
}
.inner__page .inner__content .inner__copy .content ul a,
.inner__page .inner__content .inner__copy .content ol a {
  transition: var(--fast-speed);
  font-weight: var(--font-bold);
  word-break: break-all;
}
.inner__page .inner__content .inner__copy .content ul a:hover,
.inner__page .inner__content .inner__copy .content ol a:hover {
  color: var(--red);
}
.inner__page .inner__content .inner__copy .content ol li {
  list-style: auto;
}
.inner__page .inner__content .inner__copy .content img {
  width: 100%;
  height: auto;
  max-height: 30rem;
}
.inner__page .inner__content .inner__copy .content iframe {
  margin-bottom: 1rem;
  width: 100%;
  height: 23rem;
}
.inner__page .inner__content .inner__sidebar {
  position: relative;
  color: var(--blue);
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.inner__page .inner__content .inner__sidebar h4 {
  font-size: 1.5rem;
  padding-bottom: 1rem;
  font-weight: var(--font-xbold);
  font-family: var(--title-font);
}
.inner__page .inner__content .inner__sidebar .side__navbar {
  height: -moz-max-content;
  height: max-content;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item {
  font-size: 1.15rem;
  position: relative;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item .expand {
  position: absolute;
  right: -1rem;
  top: 0rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  background-color: var(--yellow);
  border-radius: 50%;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item .expand.side__nav--open .line:first-of-type {
  opacity: 0;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item .expand .line {
  background-color: var(--blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  transition: var(--fast-speed);
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item .expand .line:first-of-type {
  height: 45%;
  width: 2px;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item .expand .line:last-of-type {
  height: 2px;
  width: 45%;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item.side__nav__item--active > a {
  border-bottom: 2px solid var(--red);
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item > a {
  border-bottom: 1px solid rgba(255, 148, 127, 0.5);
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  display: block;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item > a:hover {
  border-bottom: 2px solid var(--red);
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item.side__nav__item--parent .side__inner__nav {
  display: none;
  padding: 0.5rem 1rem 1rem 1rem;
  font-size: 1.15rem;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item.side__nav__item--parent .side__inner__nav.side__nav--open {
  display: block;
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item.side__nav__item--parent .side__inner__nav li.side__inner__nav__item--active a {
  border-bottom: 2px solid var(--red);
}
.inner__page .inner__content .inner__sidebar .side__navbar .side__nav__menu > .side__nav__item.side__nav__item--parent .side__inner__nav li a {
  border-bottom: 1px solid rgba(255, 148, 127, 0.5);
  padding: 0.35rem;
  margin-bottom: 0.5rem;
  width: 100%;
}
.inner__page .inner__content .inner__sidebar .side__menu__cta {
  background-color: var(--blue);
  padding: 4rem 2rem;
  display: grid;
  place-items: center;
  margin-top: 4rem;
}
.inner__page .inner__content .inner__sidebar .side__menu__cta .btn:first-of-type {
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1366px) {
  .inner__page .inner__content {
    gap: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .inner__page .inner__content {
    grid-template-columns: 1fr;
    padding: 8rem 4rem;
  }
  .inner__page .inner__content .inner__sidebar {
    order: 1;
  }
  .inner__page .inner__content .inner__copy .content iframe {
    height: 16rem;
  }
}
@media only screen and (max-width: 625px) {
  .inner__page .inner__content {
    padding: 4rem 2rem;
  }
  .inner__page .inner__content.inner__content--full-width {
    padding: 0 2rem;
  }
  .inner__page .inner__content .inner__copy .content p {
    font-size: 1rem;
  }
  .inner__page .inner__content .inner__copy .content p a {
    display: inline;
  }
  .inner__page .inner__content .inner__copy .content img {
    margin: 1rem 0rem;
  }
  .inner__page .inner__content .inner__copy .content ul li,
  .inner__page .inner__content .inner__copy .content ol li {
    font-size: 1rem;
  }
  .inner__page .inner__content .inner__copy .content h1 {
    font-size: 1.8rem;
  }
  .inner__page .inner__content .inner__copy .content h2 {
    font-size: 1.7rem;
  }
  .inner__page .inner__content .inner__copy .content h3 {
    font-size: 1.6rem;
  }
  .inner__page .inner__content .inner__copy .content h4 {
    font-size: 1.5rem;
  }
  .inner__page .inner__content .inner__copy .content h5 {
    font-size: 1.4rem;
  }
  .inner__page .inner__content .inner__copy .content h6 {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 450px) {
  .inner__page .inner__content .inner__sidebar .side__menu__cta {
    display: none;
  }
  .inner__page .inner__content .inner__copy .breadcrumbs {
    display: none;
  }
}
.card {
  width: 100%;
  border-bottom: 1px solid var(--dark-blue);
  margin-bottom: 0.25rem;
}
.card:last-of-type {
  margin-bottom: 1.5rem;
}
.card .card__outer {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  position: relative;
  background-color: var(--yellow);
  width: 100%;
}
.card .card__outer .question {
  font-weight: var(--font-bold);
  color: #2821a1;
  font-size: 1.15rem;
  text-align: left;
  padding-right: 2rem;
}
.card .card__outer .expand svg {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  transition: var(--fast-speed);
  fill: var(--blue);
}
.card .card__inner {
  padding: 1.5rem;
  display: block;
  background-color: var(--light-yellow);
}
.card .card__inner.hide {
  display: none;
  padding: 0 1rem;
}

#news .news__item {
  margin-bottom: 2rem;
  padding: 2rem 1rem 4rem 1rem;
  border-bottom: 1px solid rgb(184, 184, 184);
}
#news .news__item a,
#news .news__item > div {
  display: flex;
}
#news .news__item a .img,
#news .news__item > div .img {
  height: auto;
  width: 10rem;
  flex: 0 0 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#news .news__item a .img .overlay,
#news .news__item > div .img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
#news .news__item a .img .overlay:hover, #news .news__item a .img .overlay:focus,
#news .news__item > div .img .overlay:hover,
#news .news__item > div .img .overlay:focus {
  background-color: rgba(0, 0, 0, 0.4);
}
#news .news__item a .img a,
#news .news__item > div .img a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#news .news__item a .img a svg,
#news .news__item > div .img a svg {
  width: 2rem;
  height: 2rem;
  stroke: white;
}
#news .news__item a .text,
#news .news__item > div .text {
  flex: 1;
  padding-left: 2rem;
}
#news .news__item a .text h3,
#news .news__item > div .text h3 {
  font-weight: var(--font-bold);
  font-size: 2rem;
  padding-bottom: 0.5rem;
  font-family: var(--title-font);
}
#news .news__item a .text .date,
#news .news__item > div .text .date {
  color: rgb(184, 184, 184);
  font-size: 1rem;
  padding-bottom: 1rem;
}
#news .news__item a .text .summary,
#news .news__item > div .text .summary {
  padding-bottom: 2rem;
  font-size: 1.15rem;
  font-weight: var(--font-light);
}
#news .news__item a .text .btn,
#news .news__item > div .text .btn {
  width: -moz-max-content;
  width: max-content;
}

@media only screen and (max-width: 950px) {
  #news .news__item {
    padding: 2rem 0 4rem 0;
  }
  #news .news__item a .img {
    width: 8rem;
  }
  #news .news__item a .text h3 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 768px) {
  #news .news__item {
    padding: 2rem 0 4rem 0;
  }
  #news .news__item a {
    display: block;
  }
  #news .news__item a .img {
    width: 16rem;
    margin-bottom: 1rem;
  }
  #news .news__item a .text {
    padding-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  #news .news__item a .img {
    width: 14rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 450px) {
  #news .news__item a {
    text-align: center;
  }
  #news .news__item a .text .btn {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 400px) {
  #news .news__item a .img {
    width: auto;
    max-width: 12rem;
    margin: 0 auto;
  }
  #news .news__item a .text h3 {
    font-size: 1.5rem;
  }
  #news .news__item a .text .summary {
    font-size: 1rem;
  }
}
.contact__page {
  background-color: #fff;
  padding: 8rem 4rem;
}
.contact__page .contact__grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
.contact__page .contact__grid .contact__item {
  background-color: #fff;
  padding: 4rem;
  text-align: center;
  border: 1px solid var(--light-blue);
  border-top: 8px solid var(--blue);
  border-radius: 10px;
  color: var(--blue);
}
.contact__page .contact__grid .contact__item:nth-of-type(2) {
  border-color: var(--red);
}
.contact__page .contact__grid .contact__item:nth-of-type(3) {
  border-color: var(--yellow);
}
.contact__page .contact__grid .contact__item h2 {
  font-weight: var(--font-bold);
  font-size: 2rem;
  padding-bottom: 1rem;
  font-family: var(--title-font);
}
.contact__page .contact__grid .contact__item > p {
  font-weight: var(--font-light);
  padding-bottom: 1rem;
}
.contact__page .contact__grid .contact__item address p {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
}
.contact__page .contact__form {
  padding: 8rem 0;
  max-width: 1024px;
  margin: 0 auto;
}
.contact__page .contact__form .form .row {
  margin-bottom: 1.5rem;
}
.contact__page .contact__form .form .row label {
  color: var(--blue);
  padding-bottom: 0.5rem;
  display: block;
  font-size: 1.25rem;
  font-weight: var(--font-bold);
}
.contact__page .contact__form .form .row input,
.contact__page .contact__form .form .row select,
.contact__page .contact__form .form .row textarea {
  display: block;
  font-size: 1.25rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(177, 177, 177, 0.5);
  border-radius: 5px;
  color: var(--blue);
}
.contact__page .contact__form .form .row input:focus,
.contact__page .contact__form .form .row select:focus,
.contact__page .contact__form .form .row textarea:focus {
  outline: 2px solid var(--blue);
}
.contact__page .contact__form .form .row.namecheck {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .contact__page {
    padding: 8rem 2rem;
  }
  .contact__page .contact__grid {
    gap: 2rem;
  }
}
@media only screen and (max-width: 900px) {
  .contact__page {
    padding: 4rem 2rem;
  }
  .contact__page .contact__grid {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .contact__page .contact__grid .contact__item {
    max-width: 32rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 500px) {
  .contact__page {
    padding: 2rem;
  }
  .contact__page .contact__grid .contact__item {
    padding: 2rem;
  }
  .contact__page .contact__grid .contact__item h2 {
    font-size: 1.5rem;
  }
  .contact__page .contact__grid .contact__item address p {
    font-size: 1.15rem;
  }
}
#downloads .download {
  margin-bottom: 0.25rem;
  background-color: var(--light-blue);
}
#downloads .download a {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#downloads .download a p {
  padding-bottom: 0;
  font-weight: var(--font-bold);
}

table {
  font-size: clamp(13px, 2vw, 16px);
}

table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  width: 100%;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: 0.35em;
}

table th,
table td {
  text-align: center;
  border: 1px solid #57c5d9;
  padding: 0.5rem;
}

#committee__grid .committee__item {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto;
  margin-bottom: 6rem;
}
#committee__grid .committee__item .committee__img {
  width: 18rem;
  margin-right: 2rem;
}
#committee__grid .committee__item .committee__text h2 {
  padding-bottom: 0.75rem;
  font-family: var(--title-font);
}
#committee__grid .committee__item .committee__text .role {
  font-weight: var(--font-bold);
  padding-bottom: 0.5rem;
}

@media only screen and (max-width: 1366px) {
  #committee__grid .committee__item {
    grid-template-columns: auto;
  }
  #committee__grid .committee__item .committee__img {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  #committee__grid .committee__item {
    grid-template-columns: auto auto;
  }
  #committee__grid .committee__item .committee__img {
    width: 14rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 875px) {
  #committee__grid .committee__item {
    display: block;
    margin-bottom: 3rem;
  }
  #committee__grid .committee__item .committee__img {
    margin-bottom: 1.5rem;
    width: 100%;
  }
  #committee__grid .committee__item .committee__img img {
    max-height: 24rem;
  }
}
#mc_embed_signup {
  width: 100% !important;
}
#mc_embed_signup form {
  padding: 0 !important;
}
#mc_embed_signup #mc-embedded-subscribe-form #mc_embed_signup_scroll {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
#mc_embed_signup #mc-embedded-subscribe-form .indicates-required {
  display: none;
}
#mc_embed_signup #mc-embedded-subscribe-form #mce-responses {
  display: none;
}
#mc_embed_signup #mc-embedded-subscribe-form label {
  font-size: 1.25rem;
  font-family: var(--body-font);
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group {
  padding-bottom: 0;
}
#mc_embed_signup #mc-embedded-subscribe-form #mce-EMAIL,
#mc_embed_signup #mc-embedded-subscribe-form #mce-FNAME,
#mc_embed_signup #mc-embedded-subscribe-form #mce-LNAME {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0.5rem;
  border-bottom: 1px solid var(--red);
}
#mc_embed_signup #mc-embedded-subscribe-form #mce-EMAIL:focus,
#mc_embed_signup #mc-embedded-subscribe-form #mce-FNAME:focus,
#mc_embed_signup #mc-embedded-subscribe-form #mce-LNAME:focus {
  outline: 1px solid var(--red);
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  display: none !important;
}
#mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe {
  font-size: 1.25rem;
  background: none;
  border: none;
  color: var(--blue);
  display: inline-block;
  background-color: var(--light-blue);
  color: #fff;
  padding: 1.2rem 4rem;
  height: unset;
  line-height: 1;
  border-radius: 2rem;
}
#mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:focus {
  outline: 1px solid var(--red);
}
#mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover {
  background-color: var(--red);
}

@media only screen and (max-width: 1200px) {
  #mc_embed_signup #mc-embedded-subscribe-form label {
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 975px) {
  #mc_embed_signup #mc-embedded-subscribe-form #mc_embed_signup_scroll {
    flex-direction: column;
    align-items: flex-start;
  }
}
#mc_embed_shell.popup__newsletter {
  display: none;
  position: fixed;
  bottom: 2rem;
  z-index: 10;
  right: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  max-width: 44rem;
  margin-left: 2rem;
}

#mc_embed_shell.popup__newsletter > button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  overflow: unset;
}

#mc_embed_shell.popup__newsletter > button > svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--blue);
}

#mc_embed_shell.popup__newsletter #mc_embed_signup #mc-embedded-subscribe-form #mc_embed_signup_scroll {
  flex-direction: column;
  width: clamp(12rem, 30rem, 100%);
  gap: 1rem;
}

#mc_embed_shell.popup__newsletter #mc_embed_signup .mc-field-group {
  width: 100%;
}

#mc_embed_shell.popup__newsletter #mc_embed_signup form {
  margin: 0;
  margin-top: 1.5rem;
}

#mc_embed_shell.popup__newsletter .popup__newsletter__intro {
  color: var(--blue);
}
#mc_embed_shell.popup__newsletter .popup__newsletter__intro h5 {
  font-weight: var(--font-bold);
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  font-family: var(--title-font);
}
#mc_embed_shell.popup__newsletter .popup__newsletter__intro p {
  font-weight: var(--font-light);
}

#mc_embed_shell.popup__newsletter #mc_embed_signup #mc-embedded-subscribe-form label {
  font-size: 1rem;
}

#mc_embed_shell.popup__newsletter #mc_embed_signup #mc-embedded-subscribe-form input {
  font-size: 1rem;
}

@media only screen and (max-width: 600px) {
  #mc_embed_shell.popup__newsletter {
    padding: 1.25rem;
    bottom: 1.25rem;
    right: 1.25rem;
    margin-left: 1.25rem;
  }
  #mc_embed_shell.popup__newsletter #mc_embed_signup #mc-embedded-subscribe-form label,
  #mc_embed_shell.popup__newsletter #mc_embed_signup #mc-embedded-subscribe-form input {
    font-size: 0.8rem;
    line-height: 1;
  }
  #mc_embed_shell.popup__newsletter #mc_embed_signup #mc-embedded-subscribe-form input {
    padding: 0.25rem;
  }
  #mc_embed_shell.popup__newsletter .popup__newsletter__intro p {
    font-size: 0.8rem;
  }
  #mc_embed_shell.popup__newsletter .popup__newsletter__intro h5 {
    font-size: 1rem;
  }
  #mc_embed_shell.popup__newsletter #mc_embed_signup #mc-embedded-subscribe-form input#mc-embedded-subscribe {
    padding: 0.5rem 1.25rem;
  }
  #mc_embed_shell.popup__newsletter #mc_embed_signup form {
    margin-top: 0.75rem;
  }
  #mc_embed_shell.popup__newsletter #mc_embed_signup #mc-embedded-subscribe-form #mc_embed_signup_scroll {
    gap: 0.5rem;
  }
}
#live__grid {
  display: grid;
  gap: 2rem;
}
#live__grid .live__item {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #fcfcfc;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
#live__grid .live__item .img {
  height: 10rem;
  margin-bottom: 1rem;
}
#live__grid .live__item .img img {
  height: 100%;
  width: 100%;
  margin: 0;
}
#live__grid .live__item .btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media only screen and (min-width: 450px) {
  #live__grid {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  }
}/*# sourceMappingURL=style.css.map */