@font-face {
  font-family: "Inter-Regular";
  src: url("/public/fonts/Inter-Regular.woff") format("woff");
};


@font-face {
  font-family: "Inter-Medium";
  src: url("/public/fonts/Inter-Medium.woff") format("woff");
};


@font-face {
  font-family: "Inter-Bold";
  src: url("/public/fonts/Inter-Bold.woff") format("woff");
};

/* -------------------- MISC -------------------- */

html {
  background: white;
  font-size: 16px;
}

body {
  font-family: 'Inter-Regular', sans-serif;
}

:root {
  --light-blue: #d8ecf5;
  --dark-blue: #10597a;
  --white: #ffffff;
  --yellow: #ffde02;
  --gray: #888888;
  --dark-gray: #23272b;
  --black: #000000;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
}

h1,h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
  letter-spacing:-0.10rem;
}

h2 span, h4 span {
  display: block;
  font-size: 75%;
}

h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing:-0.05rem;
}

h4 a {
  color: #212529 ;
  color: inherit;
}

h4 a:hover {
  color: #10597a;
}

a {
  color: var(--gray);
}

p,li {
  font-weight: 300;
}

p strong {
  font-family: 'Inter-Bold', sans-serif;
  font-weight: bold;
}

.text.smaller p, .text.smaller li {
  font-size: 1.3rem;
}

a:focus, a:hover {
  text-decoration: none;
}

.quote p:before {
  content: "«";
}

.quote p:after {
  content: "»";
}

a:focus, a:hover {
  text-decoration: none;
}

.h-flex{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.h-flex.center{
  align-items: center;
}

.v-flex{
  display: flex;
  flex-direction: column;
  align-items: space-between;
}

.v-flex.center{
  justify-content: center;
}




/* -------------------- HEADER -------------------- */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  padding: 0 2rem;
  transition: all 0.4s ease;
}

header.landing {
  background: none;
  transition: all 0.5s  ease;
}

header.landing.mini {
  background: var(--white);
}

header.mini {
  box-shadow: 1px 0 6px rgb(0 0 0 / 8%);
}

header.mini .logo img {
  height: 3rem;
}

.logo {
  padding: 15px;
  display: inline-block;
}

.logo img{
  height: 5rem;
  transition: all 0.5s  ease;
}

main:not(.landing) {
  padding-top: 116px;
}



/* --- Navigation --- */

.main-nav ul{  
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
}

.main-nav ul li{  
  list-style: none;
  margin-right: 20px;
}

.main-nav ul li:last-child{ 
  margin-right: 0px;
} 

.main-nav ul li a{  
  font-size: 1.25rem;
  font-weight: 300;
  display: inline-block;
  color: var(--dark-blue);
  padding: 0.5rem 1rem;
}

.main-nav ul li a.active {  
  background-color: var(--dark-blue);
  color: var(--white);
}

.main-nav ul li a:hover{  
  background-color: var(--dark-blue);
  color: var(--white);
}

.nav-link {
  
}


/* --- Slide Navigation --- */
#slide_nav{
  display: none;
}

#slide_content{
  background-color: white;
}




/* --- Hamburger --- */

.burger-wrapper{
  display: none;
}

.hamburger {
  padding: 10px;
  cursor: pointer;
}

.hamburger-box {
  position: relative;
  width: 30px;
  height: 18px;
}

.hamburger .hamburger-inner, 
.hamburger .hamburger-inner:after, 
.hamburger .hamburger-inner:before {
  background-color: black;
}

.hamburger-inner, 
.hamburger-inner:after, 
.hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 2px;
  transition: 0.3s;
  background-color: #000;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner:before {
  top: -8px;
}

.hamburger-inner:after {
  bottom: -8px;
  width: 10px;
}

.hamburger-inner:after, 
.hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger--arrow .hamburger-inner{
  background-color: rgba(0, 0, 0, 0) !important;
}

.hamburger--arrow .hamburger-inner:before {
  transform: translate3d(-8px,2px,0) rotate(-40deg) scaleX(.7);
}

.hamburger--arrow .hamburger-inner:after {
  transform: translate3d(-8px,-2px,0) rotate(40deg) scaleX(.7);
  width: 30px;
}




.banner {
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  width:100%;
  height:40vh;
}





/* -------------------- CONTENT -------------------- */

main {
  min-height: 80vh;
}

.header-img.landing {
  height: 45vw;
}

.header-img {
  height: 35vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.support-me {
  position: absolute;
  left: 4rem;
  top: 10rem;
  display: flex;
  align-items: center;
  text-align: center;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  color: var(--dark-blue);
  background-color: var(--yellow);
  transform: scale(1) rotate(-12deg);
  justify-content: center;
  animation: pulse 2s infinite;
  transition: 200ms all ease;
}
.support-me:hover {
  animation: none;
}

.support-me h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  margin:0;
  
}

@keyframes pulse {
  0% {
    transform:scale(1) rotate(-12deg);
}
70% {
  transform:scale(1) rotate(-12deg);
}
85% {
  transform: scale(1.2) rotate(-12deg);
}
100% {
  transform:scale(1) rotate(-12deg);
}
}

.social-line {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 4rem;
  background-color: var(--dark-blue);
  color: #61bade;
  padding-right: 1rem;
}

.social-line .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  border-radius: 50%;
  width: 2.5rem !important;
  height: 2.5rem;
  border: 1px solid var(--yellow);
}

.social-line .social-icon > * {
  max-width: 1.9rem;
  max-height: 1.9rem;
  color: var(--yellow);
  padding-top: 2px;
}

.social-icon svg {
  height: 1.5rem;
  width: 1.5rem !important;
}

.btn {
  border-radius: 0;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--dark-gray);
  color: var(--white);
  text-decoration: none;
}

.btn-dark {
  background-color: #125a7b;
  border-radius: 0;
  cursor: pointer;
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--dark-blue);
}

.btn-white {
  background-color: var(--white);
  color: var(--dark-blue);
}

.btn-light-blue {
  background-color: var(--light-blue);
  color: var(--dark-blue);
}

section.dark-blue .btn-dark {
  background-color: var(--yellow);
  color: var(--dark-blue);
  border: none;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section {
  display: flex;
  justify-content: center;  
  padding-top: 100px;
  padding-bottom: 100px;
}

section .inner {
  max-width: 1400px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

section.light-blue {
  background-color: var(--light-blue);
}

section.dark-blue {
  background-color: var(--dark-blue);
  color: var(--white);
}

section.white {
  background-color: var(--white);
}

section.yellow {
  background-color: var(--yellow);
}

.tile-wrapper {
  aspect-ratio: 1 / 1;
  max-height: 250px;
}

.tile {
  background-color: var(--yellow);
  color: var(--dark-blue);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.tile.dark-blue {
  background-color: var(--dark-blue);
  color: var(--white);
}

.tile.light-blue {
  background-color: var(--light-blue);
  color: var(--dark-blue);
}

.tile.white {
  background-color: var(--white);
  color: var(--dark-blue);
}

.tile:hover {
  background-color: var(--dark-gray);
  color: var(--white);
}

.tile h3 {
  margin-bottom: 0;
}

.blog-entry {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 50px;
}

.blog-entry img {
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 15px;
  aspect-ratio: 16 / 9;
}

.blog-entry h4 {
  flex: 1 0 auto;
}

.media-item {
  margin-bottom: 80px;
}

.media-item img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.collapse-wrapper {
  margin-top: 50px;
}


.collapse-block .collapse-title {
  background-color: var(--light-blue);
  padding: 20px;;
  cursor: pointer;
  border-bottom: 1px solid lightgray;
}

.collapse-block .collapse-title h4 {
  margin-bottom: 0;
  color: var(--dark-blue);
}

.collapse-block .collapse-detail  {
  display: none;
  padding: 20px;
  border-left: 1px solid var(--light-blue);
  border-right: 1px solid var(--light-blue);
  border-bottom: 1px solid var(--light-blue);
}

.download-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.download-gallery img {
  max-height: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.download-img {
  position: relative;
}

.download-img .download-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.download-icon {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}


.download-icon:hover {
  color: rgba(255, 255, 255, 1);
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.img-block {
  height: 500px;
  background-size: cover;
  background-repeat: no-repreat;
  background-position: center center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev, .swiper-button-next {
  color: var(--dark-blue) !important;
  top: 40% !important;
  right: 0 !important;
}

.testimonial-slider .swiper-slide {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.testimonial-slider .swiper-slide img {
  max-height: 500px;
  aspect-ratio: 0.75;
  width: 100%;
  object-fit: cover;
}

.testimonial-slider .details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  color: var(--dark-blue);
}

section.dark-blue .swiper-button-prev, section.dark-blue .swiper-button-next {
  color: white !important;
}

section.dark-blue .testimonial-slider .details {
  color: var(--white);
}

.name-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.name-swiper .swiper-slide p {
  margin-bottom: 5px;
}

.name-swiper .swiper-slide p strong {
  font-family: 'Inter-Bold', sans-serif;
  font-weight: revert;
}

form .response {
  width: 100%;
  font-size: 1.25rem;
}

form label {
  font-size: 1rem;
  margin-bottom: .1rem;
  color: black;
  font-weight: 300;
}

.hidden {
  display:none !important;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-inline-group {
  display: flex;
}

.form-check {
  margin-bottom: 1rem;
}

.form-control {
  border: none;
  border-radius: 0;
  padding: 0.5rem;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

input[type="checkbox"] {
  // display: none;
  opacity: 0;
}

input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 2rem;
  display: flex;
  align-items: center;
}

input[type="checkbox"] ~ label::before {
  content: " ";
  position: absolute;
  left: 0rem;
  width: 1rem;
  height: 1rem;
  border: 1px solid black;
}

input[type="checkbox"]:checked ~ label::before {
  background-color: black;
}

/* -------------------- FOOTER -------------------- */
.footer {
  background-color: #d8ecf5;
}

.footer-wrapper {
  max-width: 1400px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.footer-link-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
}

.footer-social .social-icon:not(:last-child) {
  padding-right: 15px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-address p {
  color: var(--gray);
  margin-bottom: 0;
}


/* -------------------- SECTION SPECIFIC COLORS -------------------- */
section.dark-blue form label {
  color: #ffffff;
}

section.dark-blue input[type="checkbox"] ~ label::before {
  border: 1px solid #fff;
}

section.dark-blue input[type="checkbox"]:checked ~ label::before {
  background: #fff;
}

section.light-blue form label, section.yellow form label, section.white form label {
  color: #000000;
}


/* -------------------- MEDIAQUERIES -------------------- */
@media (max-width: 1419.98px) {
.main-nav ul li{  
  margin-right: 12px;
}

.logo img {
  height: 4.5rem;
}

.testimonial-slider {
  margin: 0 15px !important;
}
}

@media (max-width: 1199.98px) {
.nav-link {
  padding: 0.5rem;
}

.main-nav ul li{  
  margin-right: 10px;
}

.main-nav ul li a {
  font-size: 1rem;
}

.logo img {
  height: 4rem;
}
}

@media (max-width: 991.98px) {
main:not(.landing) {
  padding-top: 100px;
}

h1, h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}


.header-img {
  height: 45vw;
}

.header-img.landing {
  height: 55vw;
}

/* --- SLIDE NAV --- */
#slide_nav{
  height: 100%;
  width: 100%;
  display: block;
  background: #10597a;
  position: fixed;
  top: 0;
  left: 0;
}

#slide_content{
  Background: white;
  min-height: 100vh;
  *box-shadow: -6px 0px 40px rgb(0, 0, 0);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: 0.4s -webkit-transform;
  transition: 0.4s -webkit-transform;
  transition: 0.4s transform;
  transition: 0.4s transform, 0.4s -webkit-transform;
}


#slide_nav.open .side-nav-content{
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";  
}

#slide_content.open, header.open {
  transform: translateX(50vw);
}

.side-nav-content{
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  margin: 26px;
  margin-top: 75px;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.burger-wrapper{
  display: inline-block;
}

.side-nav-content .active{
  color: white;
}

.side-nav-content ul{
  padding: 0;
  list-style: none;
}

.side-nav-content ul li{
  width: fit-content;
  margin-bottom: 15px;
}

.side-nav-content a {
  color: white;
  font-size: 1.25rem;
}

.side-nav-content a:hover {
  color: white !important;
}

.supporters .carousel-cell {
  width: 50%;
}

.testimonial-carousel .carousel-cell {
  width: 100%;
}
}

@media (max-width: 767.98px) {


.header-img {
  height: 55vw;
}

.header-img.landing {
  height: 65vw;
}

.logo img {
  height: 3rem;
}

.banner {
  height: 100vh;
}

.support-me {
  left:2rem;
  top: 7rem;
  width: 10rem;
  height: 10rem;
}
.support-me h2 {
  font-size: 1.5rem;  
}

.lead {
  bottom: 6rem;
  left:0;
  right:0;
  padding: 2rem;
  width: auto;
  background-color: rgba(255,255,255,0.7);
}
.lead h2{
  font-size: 3.5rem;
}

.attribution {
  float: none !important;
  position: static !important;
}

.feed-wrapper .in-wrapper{
  width: 100%;
}

.feed-item {
  margin-bottom: 20px;
}

.testimonial-slider .swiper-slide img {
  height: 300px;
}
}

@media (max-width: 575.98px) {
main:not(.landing) {
  padding-top: 84px;
}

header {
  padding: 0 0.25rem;
}

.header-img{
  height: 65vw;
}

.header-img.landing {
  height: 75vw;
}

.support-me {
  left: 1rem;
  top: 6rem;
  width: 7rem;
  height: 7rem;
}

.support-me h2 {
  font-size: 1rem;
}

.img-block {
  height: 300px;
}

.footer-wrapper {
  flex-direction: column;
}

.footer-wrapper > * {
  font-size: 0.875rem;
}

.footer-link-wrapper{
  justify-content: center;
  flex-direction: column;
}

.footer-links {
  justify-content: center;
}

.tile {
  padding: 15px;
}

.tile h3 {
  font-size: 1.2rem;
}

.download-img {
  max-width: 45%;
}
}

