.name {
  text-shadow: 2px 2px #45a9a1;
}

.bg {
  background-image: url("../asset/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.judges-container {
  position: relative;
  padding-bottom: 7vh;
  overflow: hidden;
}

.quotes-wrapper {
  width: 500%;
  min-height: 100%;
  display: flex;
  justify-content: space-between;
  transition: 1s;
}

.card {
  /* width: 100%; */
  /* min-height: 100%; */
  display: flex;

  /* background-image: url("../asset/home/quotes_bg.png");
  background-size: 100% 100%; */

  margin: 3vh 10vw;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
  align-items: center;
  justify-content: center;
}

.card-thumb {
  width: 70%;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.card-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1);
}

.card-body {
  width: 120%;
  min-height: fit-content;
  height: auto;
  border-radius: 10px;
  position: relative;
  color: black !important;
}

.card-body p {
  padding: 1vh 0;
}

.review {
  font-size: 1.09vw;
  line-height: 20px;
  font-weight: 400;
  text-align: justify;
}

.indicators {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.indicators button {
  background: none;
  border: none;
  outline: none;
  width: 1.17vw;
  height: 1.17vw;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  margin-left: 0.39vw;
  transition: 0.5s;
}

button.active {
  width: 3.125vw;
  border-radius: 50px;
  background: white;
}

@media only screen and (max-width: 820px) {
  .judges-container {
    width: 80%;
    padding-bottom: 0;
  }

  .card {
    flex-direction: column;
    width: 80vw;
  }

  .card-thumb {
    width: 100%;
    border-radius: 10px;
  }

  .card-thumb > img {
    position: relative;
    width: 25vw;
    left: 50%;
    margin-left: -25%;
  }

  .card-body {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .indicators {
    display: none;
  }

  .review {
    font-size: 2vw;
    line-height: 2.25vw;
    font-weight: 400;
  }
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  display: block;
  /* top: 50%; */
  /* margin-top: 215vh; */
  width: auto;
  padding: 2.73vh 1.25vw 2.73vh 1.25vw;
  /* margin-top: -50px; */
  color: white;
  /* font-weight: bold; */
  font-size: 4vw;
  /* border-radius: 0 3px 3px 0; */
  user-select: none;
  -webkit-user-select: none;
  z-index: 5;
}

.next {
  right: 10%;
}

.prev {
  left: 10%;
}

.prev:hover,
.next:hover {
  /* background-color: rgba(0, 0, 0, 0.8); */
  text-shadow: 0 0 10px rgb(243, 233, 220), 0 0 20px rgb(233, 215, 190),
    0 0 40px rgb(223, 197, 162), 0 0 80px rgb(213, 179, 132),
    0 0 120px rgb(203, 162, 105), 0 0 160px rgb(193, 143, 77);
}

.peserta_container {
  width: 100%;
  max-width: 100%;
}

.gallery_title {
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding-top: 16.2vh;
}

.gallery_title h1 {
  text-shadow: 0 0 10px #f88029, 0 0 20px #f88029, 0 0 40px #f88029,
    0 0 80px #f88029, 0 0 120px #f88029, 0 0 160px #f88029;
  letter-spacing: 0.78vw;
  font-weight: bold;
  font-size: 4vw;
}

.gallery_title p {
  padding-top: 4.86vh;
  letter-spacing: 0.78vw;
  padding-bottom: 9.72vh;
  font-size: 1.5vw;
}

.gallery {
  width: 85vw;
  padding: 0 0.3vw;
  margin: 0 auto;
  transition: 0.3s;
}

.gallery:hover .gallery-column a figure .gallery-image {
  filter: grayscale(1);
}

.gallery-column {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.gallery-column a {
  margin: 5px;
  width: 22.5%;
  overflow: hidden;
}

@media screen and (max-width: 473px) {
  .gallery {
    width: 90vw;
  }

  .gallery-column a {
    width: 22%;
  }
}

.gallery-column a figure img {
  width: 100%;
}

.gallery-column .gallery-link:hover {
  box-shadow: 0 0 12px rgba(243, 233, 220, 0.867);
}

.gallery-column .gallery-link:hover .gallery-thumb .gallery-image {
  filter: grayscale(0);
  transform: scale(1.1);
}

.gallery-column .gallery-link:hover .gallery-thumb .gallery-caption {
  opacity: 1;
}

.gallery-column .gallery-link .gallery-thumb .gallery-image {
  width: 100%;
  transition: 0.3s;
  display: block;
}

.gallery-column .gallery-link .gallery-thumb {
  position: relative;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4.273vh 1.17vw 2.56vh;
  width: 100%;
  font-size: 1.5vw;
  line-height: 1.35vw;
  color: white;
  opacity: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: 0.3s;
  text-shadow: 0 0 10px rgb(243, 233, 220), 0 0 20px rgb(233, 215, 190),
    0 0 40px rgb(223, 197, 162), 0 0 80px rgb(213, 179, 132),
    0 0 120px rgb(203, 162, 105), 0 0 160px rgb(193, 143, 77);
}

/* PREV SAA */
.prev_saa {
  width: auto;
  height: auto;
}

.prev_saa img {
  max-width: 100%;
  width: 100%;
}

.prev_saa .prev_wrapper .prev_block {
  width: 100%;
  overflow: hidden;
  height: 4vw;
  transition: all 0.5s ease;
  margin-top: -0.25vw;
}

.prev_saa .prev_wrapper .prev_block:hover {
  width: 100%;
  overflow: hidden;
  height: 20vw;
}

.prev_saa .prev_wrapper .prev_block:hover h1 {
  font-weight: 600;
}

.prev_saa .prev_wrapper .prev_block h1 {
  margin-top: -1.75vw;
  transition: all 0.5s ease;
  color: #ffffff33;
  font-size: 3.5vw;
  position: relative;
  top: 50%;
  z-index: 5;
  text-align: center;
  font-weight: 800;
}

.prev_saa .prev_wrapper {
  display: table;
}

.prev_saa .prev_wrapper a {
  text-decoration: none;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(8):hover h1 {
  background: #d0e8da;
  color: #009b9a;
  font-size: 2vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(7):hover h1 {
  background: #27989c;
  color: white;
  font-size: 2vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(6):hover h1 {
  background: #6c6b79;
  color: white;
  font-size: 2vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(5):hover h1 {
  background: #121212;
  color: white;
  font-size: 2vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(4):hover h1 {
  background: rgba(108, 123, 138, 0.6);
  color: white;
  font-size: 2vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(3):hover h1 {
  background: rgb(135, 168, 201);
  color: white;
  font-size: 2vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(2):hover h1 {
  background: linear-gradient(220deg, #eb8c70, #d2c18f);
  color: white;
  font-size: 2vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(1):hover h1 {
  background: #121212;
  color: #dece9e;
  font-size: 2vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block img {
  margin-top: -3.25vw;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: grayscale(1) brightness(0.1);
}

.prev_saa .prev_wrapper .prev_block:hover img {
  filter: none;
}
