.name {
  text-shadow: 2px 2px #45a9a1;
}

.bg {
  background-image: url("../asset/background.jpg");
  background-size: cover;          /* scale to cover entire screen */
  background-repeat: repeat;    /* prevent tiling */
  background-position: center top;  /* makes it stay in place while scrolling */
  background-attachment: fixed;
  width: 100%;
}

@keyframes glowingWhiteBorder {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3),
                0 0 10px rgba(255, 255, 255, 0.3),
                0 0 15px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
                0 0 20px rgba(255, 255, 255, 0.6),
                0 0 30px rgba(255, 255, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3),
                0 0 10px rgba(255, 255, 255, 0.3),
                0 0 15px rgba(255, 255, 255, 0.3);
  }
}

.info .rounded-md {
  border: 2px solid rgba(255, 255, 255, 0.8);
  animation: glowingWhiteBorder 2s ease-in-out infinite;
  padding: 20px;
}

.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%;
}

.text-xxs {
  font-size: 0.65rem;
  line-height: 0.9rem;
}

.participants-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
}

.participants-link:hover {
  background: #ace2d2;
  color: white;
  box-shadow: 0 0 10px #ace2d2,
              0 0 20px #ace2d2,    
              0 0 40px #ace2d2,    
              0 0 100px #ace2d2;
  transform: scale(1.1);
  border: solid 3px white;
}

.participants-link span {
  position: absolute;
  display: block;
}

.participants-link .border-animate-1 {
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ace2d2);
  animation: animate1 1s linear infinite;
}

@keyframes animate1 {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.participants-link .border-animate-2 {
  top: -100%;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ace2d2);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes animate2 {
  0% { top: -100%; }
  50%, 100% { top: 100%; }
}

.participants-link .border-animate-3 {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(270deg, transparent, #ace2d2);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes animate3 {
  0% { right: -100%; }
  50%, 100% { right: 100%; }
}

.participants-link .border-animate-4 {
  bottom: -100%;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #ace2d2);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animate4 {
  0% { bottom: -100%; }
  50%, 100% { bottom: 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:hover h1 {
  font-size: 2.7vw !important;
}


.prev_saa .prev_wrapper .prev_block:nth-last-child(11):hover h1 {
  background: #e5dfc2a0;
  color: #232120;
  font-size: 3vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(10):hover h1 {
  background: #faefc2;
  color: #4c3825;
  font-size: 3vw;
  opacity: 0.4;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(9):hover h1 {
  background: #faefc2;
  color: #4c3825;
  font-size: 3vw;
  opacity: 0.4;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(8):hover h1 {
  background: #d0e8da;
  color: #009b9a;
  font-size: 3vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(7):hover h1 {
  background: #27989c;
  color: white;
  font-size: 3vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(6):hover h1 {
  background: #6c6b79;
  color: white;
  font-size: 3vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(5):hover h1 {
  background: #121212;
  color: white;
  font-size: 3vw;
  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: 3vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(3):hover h1 {
  background: rgb(135, 168, 201);
  color: white;
  font-size: 3vw;
  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: 3vw;
  opacity: 0.8;
}

.prev_saa .prev_wrapper .prev_block:nth-last-child(1):hover h1 {
  background: #121212;
  color: #dece9e;
  font-size: 3vw;
  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;
}


.designs {
  margin: 0 30px;
}

.designs a span{
    position: absolute;
    display: block;
}

.designs a:hover span{
  display: none;
}

.designs a{
  position: relative;
  overflow: hidden;
}

.designs a:hover{
    transform: scale(1.1);
}

.designs a img:hover{
  overflow: visible;
}

.designs a img:hover{
  filter: drop-shadow(0 0 0px rgba(81, 255, 130, 1));
}

.designs a span:nth-child(1){
    top: 0;
    left: -100%;
    width: 100%;
    height: 0.324vh;
    background: linear-gradient(90deg, transparent, #8ac9af);
    animation: animate1 1s linear infinite;
}

.designs a span:nth-child(2){
    top: -100%;
    right: 0;
    width: 0.324vh;
    height: 100%;
    background: linear-gradient(180deg, transparent, #8ac9af);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}

.designs a span:nth-child(3){
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 0.324vh;
    background: linear-gradient(270deg, transparent, #8ac9af);
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
}

.designs a span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 0.324vh;
    height: 100%;
    background: linear-gradient(360deg, transparent, #8ac9af);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes animate1 {
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}

@keyframes animate2 {
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}

@keyframes animate3 {
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}

@keyframes animate4 {
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}

.text-xxs {
  font-size: 0.65rem; /* 10.4px */
  line-height: 0.9rem;
}

