/******************************************
//HOMEPAGE - HERO
*/
#hero {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue);
}

#hero h1 span.white {
  color: #fff;
}

#hero p {
  margin: 2rem 0;
  color: #fff;
  line-height: 1.75;
}

#hero .button  {  
  color: #fff;
  background-color: var(--darkblue);  
}

#hero .button:hover {
  color: var(--darkblue);
  background-color: #fff;
}



@media screen and (min-width: 1025px) {
  #hero {
    padding-top: 8rem;
    padding-bottom: 8rem;
    text-align: left;
    font-size: 1.6rem;
  }
  
  #hero h1 {
    font-size: 4.375rem;
    letter-spacing: 10px;
  }

  #hero p {
    max-width: 550px;
    margin: 1rem 0 2rem;
  }
}

@media screen and (min-height: 901px) {
  #hero {
    padding-top: 9rem;
    padding-bottom: 10rem;
  }
}

/* Down Arrow */
.down-arrow {
  display: flex;
  width: 55px;
  height: 55px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  border-radius: 50%;
  transform: translateY(50%);
}

.down-arrow .fa-chevron-down {
  font-size: 2rem;
  color: #fff;
}

.down-arrow .fa-chevron-down:hover {
  cursor: pointer;
}

/******************************************
//HOMEPAGE - ABOUT
*/
#about {
  background: var(--blue);
}

#about div.container {
  padding: 4rem 10px;
  background: url('../images/about-bg.png') no-repeat;
  background-size: cover;
  background-position: top;
}

#about h2 {
  padding: 1rem 5px;
  font-size: 1.8rem;  
  color: #fff;
  background: var(--darkblue);
}

#about p {
  margin: 1rem 0;
  line-height: 1.5;
  text-align: left;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  #about div.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 6rem;
    padding: 6rem 10px;
    background-position: left;
  }

  #about h2 {
    font-size: 2rem;
  }
}

/* Events Slider */
#about .about__events {
  height: 345px;
}

#about .home-event-slider {
  width: 300px;
  height: 200px;
  margin: 1rem auto 0;
}

#about .home-event-slider img {
  height: 300px;
  margin-right:2px;  
  padding: 0 2px;
}

.slick-dots {
  bottom: -160px !important;
}

.slick-dots li, .slick-dots li button {
  width: 13px;
  height: 13px;
  padding: 0;
  font-size: 0;
}

.slick-dots li button:before {
  font-size: 0px !important;
  height: 13px;
  width: 13px;
  opacity: 1;
  background: var(--blue);
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  font-size: 0;
  opacity: 1;
  background: var(--darkblue);
}

#about .slick-next, #about .slick-prev {
    top: 60%;
}

#about .slick-next {
    right: -15px;
}

#about .slick-prev:before, #about .slick-next:before {
  font-family: 'Font Awesome 5 Pro';
  font-size: 4rem;
  line-height: 1;
  opacity: .75;
  color: var(--darkblue);
}

/*
#about .slick-next:before {
  content: '\f054';
}

#about .slick-prev:before {
  content: '\f053';
}
*/

#about .slick-next:before {
    content: '';
}

#about .slick-prev:before {
    content: '';
}


@media screen and (min-width: 768px) {
  #about .slick-prev {
    left: -30px;
  }
}

@media screen and (min-width: 1024px) {
  #about .about__events {
    height: 445px;
  }

  #about .home-event-slider {
    width: 400px;
    height: 300px;
    margin: 1rem auto 0;
  }

  .slick-dots {
    bottom: -48px !important;
  }

  .slick-dots li button:before {
    background-color: #fff;
  }

  #about .slick-next, #about .slick-prev {
    top: 40%;
  }

  #about .slick-next {
    right: -20px;
  }

  #about .slick-prev {
    left: -35px;
  }
}




/******************************************
//HOMEPAGE - INFO BOXES
*/
#info, #infoTop {
    padding: 4rem 10px;
}

.info-box__text h2:before {
  position: absolute;
  content: '';
  width: 173px;
  height: 26px;
  background: url('../images/h2-underline.png') no-repeat;
  bottom: -7px;
  z-index: -1;
}

.info-box__text p {
  margin: 2rem 0 0;
  font-size: 1.125rem;
  text-align: left;
  line-height: 1.5;
}

.info-box__photo {
  margin-bottom: 4rem;
  padding-top: 2rem;
}

.info-box__photo:last-of-type {
  margin-bottom: 0;
}

.info-box__photo div.image-underlay {
  width: 300px;
  margin: 0 20px 0 40px;
  padding: 30px 0;
  background: var(--blue);
}

.info-box__photo img {
  width: 300px;
  margin-left: -60px;
}

@media screen and (min-width: 768px) {
  #info, #infoTop {
    padding: 6rem 10px; 
  }

  .info-box__photo {
    margin-bottom: 6rem;
  }

  .info-box__photo div.image-underlay {
    width: 560px;
    margin: 0 auto; 
  }

  .info-box__photo img {
    width: 560px;
  }
}

@media screen and (min-width: 1200px) {
  #info, #infoTop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6rem;
  }

  .info-box__text {
    align-self: center;
  }

  .info-box__photo {
    margin-bottom: 0;
    padding-top: 0;
    justify-self: end;
    width: 100%;
  }

  .info-box__photo div.image-underlay {
    width: calc(100% - 30px);
    margin: 0 0 0 30px;
  }

  #info .info-box__photo.movement {
    grid-column: 1/2;
    grid-row: 1/1;   
  }

  #info .info-box__photo.community {
    grid-column: 1/2;
    grid-row: 3/3;
  }

  #infoTop .info-box__photo.eventregistration {
        grid-column: 1/2;
        grid-row: 2/2;
  }
}
