@charset "UTF-8";
@import url("https://use.typekit.net/uxk2jhd.css");
:root {
  --c-dark-grey: #2d3742;
  --c-dark-slate: #64859b;
  --c-light-slate: #bdccd4;
  --c-tint: #f2f5f6;
}

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, H3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration: none;
  color: var(--c-blue);
  font-weight: bold;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body, html {
  height: 100%;
}

/* TYPOGRAPHY */

body {
  font-family: "roboto", sans-serif;
  line-height: 1.6;
  margin: 0;
  font-size: 120%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
  color: var(--c-dark-grey);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
}

h1 {
  font-family: museo-slab, sans-serif;
  font-weight: 500;
  font-size: 3.5rem;
}

h2 {
  color: var(--c-blue);
  font-size: 2.6rem;
  font-family: museo-slab, sans-serif;
  font-weight: 300;
  margin-bottom: 0;
}

h2 + .row {
  padding-top: 25px;
}

h3 {
  font-family: museo-slab, sans-serif;
  color: var(--c-slate);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8rem;
}


.large {
  font-size: 1.4rem;
}

strong {
  font-weight: 700;
}

.centered-list {
  list-style-position: inside; /* Keeps bullets aligned with text */
  text-align: center;          /* Centers text and bullets */
  padding: 0;                  /* Remove default padding */
  margin: 0 auto;              /* Center the block itself */
}





/* SPACING */


header {
  padding: 20px;
  display: flex;
  flex-direction: column;
  background-color: #2d3742;
}

.section {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 0 auto;
}

.section--grow {
  flex: 1 0 auto;
}

.section-content {
  max-width: 1400px;
  margin: 0 auto;
}

.slim {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.center {
  text-align: center;
}

.spacer {
  width:150px;
  border-top: solid 1px #2d3742;
  margin: 75px auto;
}

.impact .col-33 {
  padding-top: 60px;
}

.impact .col-66 {
  padding-top: 0;
}


/* COLUMNS */

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.impact .row--split {
  flex-direction: column;

  > div:nth-child(1) {
    flex: 66% 0;
  }
  > div:nth-child(2) {
    flex: 1 0 0;
  }
}


.row.middle {
  align-items: center;
}

.column {
  padding: 20px;
  box-sizing: border-box;
}
.col-20 {
  width: 20%;
}
.col-25 {
  width: 25%;
}
.col-33 {
  width: 33.333%;
}
.col-50 {
  width: 50%;
}
.col-66 {
  width: 66.666%;
}
.col-75 {
  width: 75%;
}
.col-100 {
  width: 100%;
}

.overlap-layout {
  display: flex;
  position: relative;
}

.text-col {
  width: 66%;
  z-index: 2; /* Ensure text is on top */
  padding-right: 2rem; /* optional: spacing from image */
}

.image-col {
  width: 50%;
  margin-left: -16%; /* negative margin creates the overlap */
  z-index: 1;
}

.hero {
  width: 100%;
  height: auto;
  display: block;
}





/* IMAGES */

.icon-box svg {
  fill: var(--c-dark-slate);
  display: block;
  margin: 0 auto;
  height: 50px;
}

svg#Logo {
  height: 35px;
  width: 100%;
  margin: 0 auto;
}



/* BUTTONS */

.button {
  padding: 10px;
  font-family: museo-slab, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background-color: var(--c-dark-slate);
  color: #ffffff;
  margin-top: 30px;
  border: none;
  text-decoration: none;
  display: inline-block;
}




.black {
  background-color: #000c13;
  color: #ffffff;
  padding: 0;
}

.hero {
  width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}



.tinted {
  background-color: var(--c-tint);
}

/* SLIDER */

.glide {
  padding-left: 120px;
  padding-right: 120px;
}

.glide__slides {
  align-items: center;
}

.glide__slide img {
  mix-blend-mode: multiply;
}

.glide__arrow {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding: 10px;
}

.glide__arrow svg {
  fill: var(--c-dark-slate);
  
}

/* ---- FOOTER ---- */

footer {
  background-color: #dde6ed;
  padding: 90px;
  font-size: 80%;
  text-align: center;
}


form {
  margin-bottom: 40px;
  .inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;

    > * {
      flex: 1;
    }
  }

  input[type='text'], input[type='email'] {
    padding: 5px 10px;
    text-transform: uppercase;
  }
}

/* ---- MEDIA QUERIES ---- */

@media (max-width: 1200px) { /* large tablets / small laptops */ 

  }
@media (max-width: 1024px) { /* tablets */ 
  h1 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) { 
  .impact .row--split {
    flex-direction: row-reverse;
  }

  .impact .row--split:nth-child(odd) {
    flex-direction: row;
  }

  form .inputs {
    flex-direction: row;
  }
}
@media (max-width: 768px) {  /* phones */ 
  .text-col,
  .image-col
  {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
  }
  
  .col-20,
  .col-25,
  .col-33,
  .col-50,
  .col-66,
  .col-75,
  .col-100   {
    width: 50%;
  }
  
  h3 {
    text-wrap:wrap;
  }
  
  p {
  text-wrap: balance;
  }

  
  .impact .row--split {
    flex-direction: column;
  }
  .reverse {
    flex-direction: column-reverse;
  }
  
  .hero {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  

}
@media (max-width: 480px) {  /* small phones */ 

  .col-25,
  .col-33,
  .col-50,
  .col-66,
  .col-75,
  .col-100   {
    width: 100%;
  }
  
  .order {
    flex-direction: column-reverse;
  }
  


}


