.carousel-container {
  margin-bottom: 20px;
}

/* Carousel */

.carousel {
  text-align: center;
  color: #ffffff;
}

.carousel-cell {
  display: grid;
  //margin-right: 20px;
  overflow: hidden;
  width: 100%;
}

.carousel-cell img {
  display: block;
  height: 400px;
}

.carousel-slide {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  max-width: 100%;
  height: 400px;
}

.carousel-slide-image {
  display: grid;
  justify-self: end;
  align-self: center;
}

.carousel-slide-copy {
  display: grid;
  justify-self: start;
  align-self: center;
  text-align: left;
  max-width: 400px;
  width: 100%;
}

.carousel-slide-copy h1 {
  font-size: 2rem;
  color: #ffffff;
}

.carousel-slide-copy p {
  font-size: 6rem;
  line-height: 5.5rem;
  color: #ffffff;
	font-family: 'Indivisa Text Sans Black';
}

.carousel-slide-copy a {
  text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 3rem;
    font-family: 'Indivisa Display Sans Regular Italic';
}

.carousel-arrow {
  display: none;
  justify-items: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 6rem;
  color: #ffffff;
  width: 17px;
  height: 48px;
  background: url(../img/downArrow.png);
}

.flickity-page-dots {
  bottom: 400px;
}

.dot {
  border: 1px solid white;
}

/* Media Queries */
@media screen and (max-width: 1680px) {
  /* Homepage */
  .flickity-page-dots {
    bottom: 200px;
  }

  .carousel-arrow {
    bottom: 3rem;
  }
}

@media screen and (max-width: 1440px) {
  /* Homepage */
  .flickity-page-dots {
    bottom: 200px;
    left: 90px;
  }
}

@media screen and (max-width: 1280px) {
  /* Homepage */
  .flickity-page-dots {
    bottom: 130px;
    left: 150px;
  }

  .carousel-arrow {
    bottom: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  /* Homepage */
  .flickity-page-dots {
    bottom: 60px;
    left: 150px;
  }

  .carousel-arrow {
    bottom: -7rem;
  }
}

@media screen and (max-width: 990px) {
  .carousel-slide-copy {
    font-size: 1.5rem;
  }

  .carousel-slide-copy p {
    font-size: 5rem;
    line-height: 3.8rem;
    color: #ffffff;
  }
  .flickity-page-dots {
    display: none;
  }
}



@media screen and (max-width: 620px) {
    .carousel-slide {
    height: 0vh;
    grid-template-columns: 1fr;
  }
  
  .carousel-slide-image {
    justify-self: center;
    align-content: center;
  }
  
    .carousel-slide-copy {
    justify-self: center;
    text-align: center;
  }
}

@media screen and (max-width: 568px) {
  .carousel-cell img {
    height: 200px;
  }
  .carousel-slide {
    height: 100vh;
  }

}

@media screen and (max-width: 480px) {
  .carousel-slide {
    grid-template-columns: 1fr;
    height: 800px;
  }

  .carousel-slide-image {
    justify-self: center;
    height: 200px;
  }

  .carousel-slide-copy h1,
  p,
  a {
    text-align: center;
    padding: 10px;
  }

  .carousel-cell img {
    height: 200px;
  }

  .flickity-page-dots {
    bottom: 10px;
    left: 0px;
  }

  .carousel-arrow {
    bottom: 90rem;
  }
}

/* iPhone 8 Plus, 7 Plus, 6 Plus */
@media screen and (max-width: 414px) {
  /* Home Page */
  .carousel-slide {
    grid-template-columns: 1fr;
    height: 400px;
  }

  .carousel-slide-image {
    justify-self: center;
  }

  .carousel-slide-copy h1,
  p,
  a {
    text-align: center;
    padding: 10px;
  }

  .carousel-cell img {
    height: 200px;
  }

  .flickity-page-dots {
    bottom: 620px;
    left: 0px;
  }

  .carousel-arrow {
    bottom: 90rem;
  }

  .carousel-slide-image {
    justify-self: center;
    align-self: end;
  }

  .carousel-slide-copy {
    font-size: 1.5rem;
    justify-self: start;
    align-self: start;
    text-align: center;
  }

  .carousel-slide-copy h1,
  p {
    padding: 10px;
    margin: 0px;
  }
}

/* iPhone X, 8, 7, 6 */
@media screen and (max-width: 375px) {
  .flickity-page-dots {
    bottom: 670px;
    left: 0px;
  }
}