@charset "utf-8";

@font-face {
  font-family: 'bluu';
  src: url('fonts/bluunext-bold-webfont.woff2') format('woff2'),
       url('fonts/bluunext-bold-webfont.woff') format('woff'),
       url('fonts/bluunext-bold.ttf') format('truetype'),
       url('fonts/bluunext-bold-webfont.svg#bluu_nextbold') format('svg');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'bluu';
  src: url('fonts/bluunext-bolditalic-webfont.woff2') format('woff2'),
       url('fonts/bluunext-bolditalic-webfont.woff') format('woff'),
       url('fonts/bluunext-bolditalic.ttf') format('truetype'),
       url('fonts/bluunext-bolditalic-webfont.svg#bluu_nextbold_italic') format('svg');
  font-weight: normal;
  font-style: italic;

}

@font-face {
  font-family: 'bluu_nexttitling';
  src: url('fonts/BluuNext-Titling.ttf') format('truetype'),
      url('fonts/bluunext-titling.woff2') format('woff2'),
      url('fonts/bluunext-titling.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

.inter-vh {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


body {
  font-family: "open sans", sans-serif;
  margin:0;
  padding:0;
  height:100%;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  box-sizing: border-box;
  /*background-color: #160F29;*/
}

#logo {
  margin-bottom: 5px;
  padding-bottom: 5px;
}

/* FOOTER STUFF - the container and main divs are necessary to create a footer that stays at the bottom */
#container {
  min-height: 100%;
  position: relative;
}

main {
  padding-bottom: 300px; /* Height of the footer */
}


footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 170px;
  background-color:#160F29;
  font-size: 0.8em;
  color: white;
  display: flex;
  flex;
}
/* END FOOTER STUFF */

 .position-relative {
     position: relative !important;
  }
  
  .position-bottom {
    position: absolute !important;
    bottom: 20px !important;
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    width: 165px; /* Need a specific value to work */
  }

.padding {
  padding: 50px;
}

p {
  line-height: 1.6em;
}

.white {
  color: white;
}

.flex-box {
    display: flex;
}

.align-top {
    vertical-align: top;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.study-label {
      color: white;
      padding: 0;
      margin: 0;
  }

a:hover {
  opacity: 0.8;
}

a:active {
  color: #160F29;
}

a:visited {
  color: #160F29;
}

h1 {
  font-family: "inter-vh", sans-serif;
  text-transform: uppercase;
  font-size: 2.9em;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 0.5;
}

h2 {
  font-family: "inter-vh", sans-serif;
  color: #5800FF;
  font-size: 1.5em;
  text-align: center;
  margin-top: 1px;
  font-weight: normal;
}

h3 {
  font-family: "inter-vh", sans-serif;
  font-size: 1.9em;
  color: #5800FF
}

h4 {
  font-family: "inter-vh", sans-serif;
  font-size: 1.5em;
  color: #5800FF;
}

h5 {
  font-family: "inter-vh", sans-serif;
  font-size: 1em;
  color: #5800FF;
}

video {
  width: 70%;
}

/*Subtle shadow for images where it's not clear where the edge is*/
.drop-shadow {
  -webkit-box-shadow: 1px -1px 14px 1px rgba(205,205,205,0.69); 
  box-shadow: 1px -1px 14px 1px rgba(205,205,205,0.69);
}

.shadow {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.case-study-wrapper {
    /*padding-top: 100px;*/
}


.row {
  padding: 25px 0;
}

.padding-vertical {
  padding: 15px 0;
}

.padding-vertical-medium {
  padding: 75px 0;
}

.padding-bottom-small {
  padding-bottom: 40px;
}


.padding-bottom-medium {
  padding-bottom: 75px;
}

.padding-vertical-large {
  padding: 200px 0;
}

.wrapper-narrow {
  margin: 0 auto;
  width: 60%;
}

.wrapper-wide {
  margin: 0 auto;
  width: 80%;
}

.wrapper-full {
  margin: 0 auto;
  width: 100%;
  height: 500px;
  text-align: center;
}

.grid-row { 
  display: flex;
  flex-wrap: wrap;
}

.grid-column {
  flex-basis: 50%;
}

.center-text {
    text-align: center;
}

.grid-item {
  flex: 1;
  height: 300px;
  min-width: 350px;
}

.grid-item-overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(255,255,255,0.3);
  opacity: 0;
  transition: opacity 0.25s;
}

.grid-item-overlay:hover {
  opacity: 1;
}

.wrapper-item {
  height: 500px;
}

.wrapper-item-overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(255,255,255,0.3);
  opacity: 0;
  transition: opacity 0.25s;
}

.wrapper-item-overlay:hover {
  opacity: 1;
}

.green {
  background-color: #9AE66E;
}

.pink {
  background-color: #E900FF;
}

.blue {
  background-color: #5800FF;
}

.dark-blue {
  background-color: #160F2A;
}

.orange {
  background-color: #FFC600;
}

.text-blue {
  color: #5800FF;
}

/*.bg-image-empowerment-council {*/
/*  background-image: url("assets/empowerment-council-devices.png");*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  background-size: contain;*/
/*}*/

/*.bg-image-pink-blob {*/
/*  background-image: url("assets/pink-blob-logo-outline-white-lg.png"); */
/*  background-position: center;*/
/*  background-repeat: space;*/
/*  background-size: 25%;*/
/*}*/

/*.bg-image-nourishing-beginnings {*/
/*  background-image: url("assets/nourishing-beginnings-logo.png");*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  background-size: 85%;*/
/*}*/

/*.bg-image-aom {*/
/*  background-image: url("assets/age-of-majority-mockup.png");*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  background-size: cover;*/
/*}*/

.bg-image-empowerment-council-wrapper {
  background-image: url("assets/empowerment-council-devices.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.bg-image-pink-blob-wrapper {
  background-image: url("assets/pink-blob-logo-outline-white-lg.png"); 
  background-position: center;
  background-repeat: space;
  background-size: 15%;
}

.bg-image-nourishing-beginnings-wrapper {
  background-image: url("assets/nourishing-beginnings-logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
}

.bg-image-aom-wrapper {
  background-image: url("assets/age-of-majority-mockup.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-image-TCAF-guide-wrapper {
  background-image: url("assets/TCAF-guide-overview.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.detail-image-0 {
  width: 60%;
}

.detail-image-1 {
  width: 85%;
}

.detail-image-2 {
  width: 70%;
}

.detail-image-3 {
  width: 50%;
}

.detail-image-4 {
  width: 30%;
}

.detail-image-5 {
  width: 15%;
}

.height-limit {
  max-height: 550px;
  width: auto;
}

.height-limit-med {
  max-height: 350px;
  width: auto;
}

.height-limit-sm {
  max-height: 150px;
  width: auto;
}

.center {
  text-align: center;
}

.flex-area {
  display: flex;
  justify-content: space-around;
}

.cs-grid-container-two {
  display: inline-grid;
  width: 95%;
  gap: 1%;
  grid-template-columns: 50% 50%;
  justify-items: center;
  align-items: center;
}

.cs-grid-container-two-focus-left {
  display: inline-grid;
  max-height: 400px;
  width: auto;
  gap: 1%;
  grid-template-columns: 70% 30%;
  justify-items: center;
}

.cs-grid-container-two-focus-right {
  display: inline-grid;
  max-height: 400px;
  width: auto;
  gap: 1%;
  grid-template-columns: 45% 55%;
  justify-items: center;
  align-items: center;
}

.cs-grid-container-three {
  display: inline-grid;
  width: 80%;
  gap: 1%;
  grid-template-columns: 33.33% 33.33% 33.33%;
  align-items: center;
  justify-items: center;
}

.cs-grid-container-four {
  display: inline-grid;
  width: 80%;
  gap: 1%;
  grid-template-columns: 25% 25% 25% 25%;
  align-items: center;
  justify-items: center;
}

.cs-grid-item {
  width: 100%;
  align-items: center;
}

.cs-grid-item-small {
  width: 35%;
  align-items: center;
}

.cs-grid-item-med {
  width: 55%;
  align-items: center;
}

.cs-grid-item-large {
  width: 75%;
  align-items: center;
}

.cs-grid-item-large-wide {
  width: 70%;
  align-items: center;
}

.cs-grid-item-xlarge {
  width: 85%;
  align-items: center;
}

.cs-grid-item-large-height-limit {
  width: 75%;
  align-items: center;
}

.quote {
  width: 50%;
  margin: 0 auto;
  padding: 100px 0;
  font-family: "bluu", sans-serif;
  font-size: 1.5em;
  line-height: 1.5em;
  color: #160F29;
  text-align: center;
}

.quote-med {
  width: 50%;
  margin: 0 auto;
  padding: 100px 0;
  font-family: "bluu", sans-serif;
  font-size: 2.1em;
  line-height: 1.7em;
  color: #5800FF;
  text-align: center;
}

button {
  color: #5800FF;
  border: none;
  font-family: "inter-vh", sans-serif;
  font-size: 1em;
  padding: 3px 10px;
  margin: 2px 1px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
  background-color: white;
}

.button-small {
  color: #5800FF;
  border: none;
  width: 165px;
  font-family: "inter-vh", sans-serif;
  font-size: 0.9em;
  padding: 9px 9px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 25px;
  transition: 0.3s;
  background-color: white;
}

/*button:hover {*/
/*  background-color: #E900FF;*/
/*  opacity: 0.8;*/
/*}*/

/*.button-small:hover {*/
/*  background-color: #160F2A;*/
/*  opacity: 0.8;*/
/*}*/

.bottom-nav {
  display: flex;
  justify-content: space-between;
}


/*Media queries*/


/*Exra Large Screen*/
@media screen and (max-width: 30000px) {

  .bg-image-pink-blob-wrapper {
    background-size: 11%;
  }

  .bg-image-nourishing-beginnings-wrapper {
    background-size: 40%;
  }

}


/*Large Screen*/
@media screen and (max-width: 100px) {

  .wrapper-wide {
      width: 60%;
  }
  
  video {
    width: 75%;
  }
  
  .bg-image-nourishing-beginnings-wrapper {
    background-size: 50%;
  }

}


/*Tablet*/
@media screen and (max-width: 1024px) {

  .quote, 
  .quote-med {
    width: 60%;
    padding: 60px 0;
    font-size: 1.8em;
    line-height: 1.3em;
    text-align: center;
  }
  
  .bg-image-pink-blob-wrapper {
    background-size: 20%;
  }
  
  .bg-image-nourishing-beginnings-wrapper {
    background-size: 80%;
  }
  
  .cs-grid-container-two-focus-right {
    display: flex;
    flex-direction: column;
    max-height: 1000px;
  }
  
  .cs-grid-item-large-wide {
    width: 60%;
  }
  
  .extra-padding {
      padding-top: 100px;
  }

  .detail-image-3 {
    width: 400px;
  }
  
  .height-limit {
    max-height: 300px;
  }
  
  video {
    width: 70%;
  }

}

/*Phone*/
@media screen and (max-width: 500px) {
    
  header {
    padding: 45px 10px;
  }

  p {
    font-size: 0.9em;
    line-height: 1.5em;
  }
  
  .flex-box {
    /*flex-direction: column;*/
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  h1 {
    font-size: 2.3em;
    line-height: 1;
  }
  
  h2 {
    font-size: 1.5em; 
  }

  h3 {
    font-size: 1.3em; 
  }

  h4 {
    font-size: 1.1m;
  }
  
  video {
    width: 95%;
  }

  button {
    /*padding: 0;*/
    /*margin: 0;*/
  }
  
   .bg-image-pink-blob-wrapper {
      background-size: 25%;
   }

   .bg-image-nourishing-beginnings-wrapper {
     background-size: 75%;
    }

   .grid-item {
     height: 175px;
     min-width: 100%;
    }
  
  .wrapper-full {
    height: 300px;
    text-align: center;
   }
  
   .wrapper-item {
    height: 300px;
   }

  .cs-grid-container-two {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
  }
  
  .extra-padding {
      padding-top: 70px;
      padding-bottom: 80px;
  }

  .cs-grid-item {
    padding: 18px 20px;
  }
  
  .cs-grid-item-large {
    margin: 20px 0;
    width: 85%;
  }

  .cs-grid-container-three {
    gap: 0;
    grid-template-columns: 50% 50%;
    width: unset;
  }

  .cs-grid-container-four {
    gap: 1%;
    grid-template-columns: 33.33% 33.33% 33.33%;
    align-items: center;
  }

  .cs-grid-item-large-wide {
    width: 80%;
  }

  .row {
    padding: unset;
  }
  
  .wrapper-narrow {
    width: 90%;
  }
  
  .wrapper-wide {
    width: 95%;
  }

  .detail-image-0 {
    width: 70%;
  }
  
  .detail-image-1 {
    width: 100%;
  }

  .detail-image-2 {
    width: 95%;
    padding: 10px;
  }

  .detail-image-3 {
    width: 90%;
  }

  .detail-image-4 {
    width: 75%;
  }

  .detail-image-5 {
    width: 95%;
  }

  .height-limit {
    max-height: 250px;
    width: auto;
  }

  .quote,
  .quote-med {
    width: 70%;
    padding: 65px 0;
    font-size: 1.4em;
    line-height: 1.3em;
  }

  .flex-area {
    flex-direction: column;
    max-width: 95%;
  }
  
  .padding-vertical-medium {
    padding: 25px 0;
  }

  .padding-bottom-medium {
    padding-bottom: 25px;
  }
  
}