  /*
  *  Slider Homepage
  */

  .carousel-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
  }

  .carousel-slide {
    display: inline-flex;
    /* flex-wrap: wrap; */
    width: 600%;
  }

  .carousel-item {
    width: 100%;
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    color: #FFF;
  }

  .carousel-description {
    width: 75%;
    position: relative;
    margin: 100px auto;
  }

  #prevBtn, #nextBtn {
    position: absolute;
    top: 40%;
    border: none;
    font-size: 20px;
    background: transparent;
    color: #FFF;
    outline: none;
  }

  #prevBtn {
    left: 0;
    padding: 5px 20px 5px 15px;
    color: #FFF;
  }

  #nextBtn {
    right: 0;
    padding: 5px 15px 5px 20px;
  }

  /*
    Slider Testimoni
  */

  .carousel2-wrapper {
    position: relative;
  }

  .carousel2-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
  }

  .carousel2-slide {
    display: inline-flex;
    width: 800%;
    height: 650px;
  }

  .carousel2-item {
    width: 100%;
    height: 650px;
    color: #FFF;
    text-align: center;
  }

  .carousel2-item .carousel2-item__title {
    margin-top: 75px;
    font-weight: bold;
  }

  .carousel2-description .carousel2-description__text {
    padding: 0 50px;
    font-size: 20px;
    margin-top: 50px;
  }

  .carousel2-img img,
  .carousel2-img .alumnus-photo  {
    margin-top: 75px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background-position: center center;
    background-size: cover;
    border: 5px solid rgb(95, 224, 116);
  }

  .carousel2-item:nth-child(odd) {
    background-color: rgba(66,185,226, 0.75);
  }

  .carousel2-item:nth-child(even) {
    background-color: rgba(95,224,116, 0.75);
  }

  .carousel2-description {
    width: 75%;
    position: relative;
    margin: auto;
  }

  #prevBtn2, #nextBtn2 {
    position: absolute;
    top: 45%;
    border: none;
    font-size: 30px;
    background: transparent;
    color: #FFF;
    outline: none;
  }

  #prevBtn2 {
    left: 0;
    padding: 5px 20px 5px 15px;
  }

  #nextBtn2 {
    right: 0;
    padding: 5px 15px 5px 20px;
  }

  /*
  *  Slider Video
  */

  .carousel3-wrapper {
    position: relative;
  }

  .carousel3-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
  }

  .carousel3-slide {
    display: inline-flex;
    width: 200%;
  }

  .carousel3-item {
    width: 100%;
    height: 220px;
    color: #FFF;
    text-align: center;
  }

  .carousel3-description {
    width: 75%;
    position: relative;
    margin: auto;
  }

  #indicator1, #indicator2 {
    margin: 0 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-radius: 50%;
    width: 16px;
    height: 16px;

    border: 2px solid #42BAE3;
    transition: 0.2s all linear;

    position: relative;
    outline: none ;
    cursor: pointer;
  }

  .slider-indicator {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  #indicator1:checked,
  #indicator2:checked {
    border: 6px solid #42BAE3;
  }

  .video-slider img {
    border-radius: 15px;
    box-shadow: 6px 6px 6px rgb(197, 197, 197);
    width: 320px;
  }

@media (max-width:500px) {
  .carousel-item {
    height: 400px;
  }

  .carousel-description {
    margin: 75px auto;
  }

  
  .carousel2-item .carousel2-item__title {
    font-size: 20px;
  }

  .carousel2-description .carousel2-description__text {
    font-size: 16px;
  }

  .carousel2-img img,
  .carousel2-img .alumnus-photo {
    margin-top: 50px;
    width: 125px;
    height: 125px;
  }

  .carousel2-description {
    width: 100%;
  }

  .video-slider img {
    border-radius: 15px;
    box-shadow: 6px 6px 6px rgb(197, 197, 197);
    width: 200px;
  }

  .carousel3-container {
    height: 450px;
    overflow-y: hidden;
  }
}