/* Ukon Style CSS */

/* Brand & Logo */

.ulogo {
	background: url("../images/logo.png") no-repeat;
	background-size: contain;
	height: 250px;
}

.ulogo-powered {
	background: url("../images/logo-powered.png") no-repeat;
	background-size: contain;
	/* height: 250px; */
}

/* End Brand */

/* Huruf - Huruf */

.u-huruf-v {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	/* background-color: #2e5579; */
  /* color: rgb(68, 75, 141); */
	padding: 7px;
  /* border-bottom-left-radius: 5px;
  border-top-left-radius: 5px; */
	display: inline-block;
}
/* Card */

/* From Uiverse.io by JaydipPrajapati1910 */ 
.ucard {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background-color: red;
    border-radius: 20px;
    border: none;
    color: white;
    position: relative;
    /* cursor: pointer; */
    /* font-weight: 900; */
    transition-duration: .2s;
    background: linear-gradient(0deg, #c3bcbc, #f3f1f1);
  }
  
  .ucard:before, .ucard:after {
    content: '';
    position: absolute;
    left: -3px;
    top: -3px;
    border-radius: 20px;
    background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
          #0000ff, #00ff00,#ffff00, #ff0000);
    background-size: 400%;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    z-index: -1;
    animation: steam 25s linear infinite;
  }
  
  @keyframes steam {
    0% {
      background-position: 0 0;
    }
  
    50% {
      background-position: 300% 0;
    }
  
    100% {
      background-position: 0 0;
    }
  }
  
  .ucard:after {
    filter: blur(100px);
  }
  
/* End Card */

/* ---BORDER */

.uborder {
  border: 1px solid #000;
  border-radius: 10px;
}

.uborder-bottom-dashed {
  border-bottom: 1px dashed;
}

/* ---END BORDER */

/* Button */

.ubutton {
    position: relative;
    text-decoration: none;
    cursor: pointer;
  }
  
  .ubutton::before {
    content: "";
    transition: 0.5s;
  }
  
  .ubutton:hover::before {
    opacity: 0.7;
  }
  
  .ubutton::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
    /* border-radius: 9px; */
    transition: 0.3s;
    opacity: 0;
    filter: blur(10px);
  }
  
  .ubutton:hover:after {
    opacity: 0.5;
  }

  
/* End Button */

/* Background */
.ubg-1 {
	background: url("images/bg1.jpg") no-repeat;
	background-size: cover;
  opacity: 0.99;
}

.ubg-2 {
	background: url("images/bg2.jpg") no-repeat;
	background-size: cover;
  opacity: 0.99;
}

.ubg-3 {
	background: url("bg3.jpg") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

.ubg-4 {
	background: url("../images/bg4.png") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

.ubg-5 {
	background: url("../images/bg5.jpg") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

.ubg-6 {
	background: url("../images/bg6.png") no-repeat;
	background-size: cover;
    opacity: 0.99;
}

/* Sticky Backgound */

.ubg-stk-1 {
	background: url("../images/bg-stk1.png") no-repeat right;
	background-size: contain;
    opacity: 0.99;
}

.ubg-stk-2 {
	background: url("../images/bg-stk2.png") no-repeat bottom;
	background-size: contain;
    opacity: 0.99;
}

.ubg-stk-3 {
	background: url("../images/bg-stk3.png") no-repeat right;
	background-size: contain;
    opacity: 0.99;
}

.ubg-stk-4 {
	background: url("../images/bg-stk4.png") no-repeat right;
	background-size: contain;
    opacity: 0.99;
}

/* Linier Background */
.ubgx-1 {
  background: linear-gradient(0deg, #c3bcbc, #f3f1f1);
}

/* Button 2 */
.ubtn {
  padding: 10px;
  font-weight: bold;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  align-items: center;
  border: solid black 2px;
  outline: none;
  cursor: pointer;
}

.svg {
  height: 25px;
  margin-right: 10px;
}

.ubtn .text {
  z-index: 10;
  font-size: 14px;
}

.ubtn:hover .text {
  animation: text forwards 0.3s;
  /*color: white;*/
}

@keyframes text {
  from {
    color: black;
  }

  to {
    color: white;
  }
}

.svg {
  z-index: 6;
}

.ubtn:hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 300px;
  animation: wave1 2.5s ease-in-out forwards;
}

.ubtn:hover::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 300px;
  animation: wave2 2.5s ease-in-out forwards;
}

@keyframes wave1 {
  0% {
    z-index: 1;
    background: #EB4335;
    width: 0;
    height: 0;
    opacity: 1;
  }

  1% {
    z-index: 1;
    background: #EB4335;
    width: 0;
    height: 0;
    opacity: 1;
  }

  25% {
    z-index: 1;
    background: #EB4335;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  26% {
    z-index: 3;
    background: #34A853;
    width: 0;
    height: 0;
    opacity: 1;
  }

  50% {
    z-index: 3;
    background: #34A853;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  70% {
    z-index: 3;
    background: #34A853;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  100% {
    z-index: 3;
    background: #34A853;
    width: 800px;
    height: 800px;
    opacity: 1;
  }
}

@keyframes wave2 {
  0% {
    z-index: 2;
    background: #FBBC05;
    width: 0;
    height: 0;
    opacity: 1;
  }

  11% {
    z-index: 2;
    background: #FBBC05;
    width: 0;
    height: 0;
    opacity: 1;
  }

  35% {
    z-index: 2;
    background: #FBBC05;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  39% {
    z-index: 2;
    background: #FBBC05;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  40% {
    z-index: 4;
    background: #4285F4;
    width: 0;
    height: 0;
    opacity: 1;
  }

  64% {
    z-index: 4;
    background: #4285F4;
    width: 800px;
    height: 800px;
    opacity: 1;
  }

  100% {
    z-index: 4;
    background: #4285F4;
    width: 800px;
    height: 800px;
    opacity: 1;
  }
}

.ubtn:hover .red {
  animation: disappear 0.1s forwards;
  animation-delay: 0.1s;
}

.ubtn:hover .yellow {
  animation: disappear 0.1s forwards;
  animation-delay: 0.3s;
}

.ubtn:hover .green {
  animation: disappear 0.1s forwards;
  animation-delay: 0.7s;
}

.ubtn:hover .blue {
  animation: disappear 0.1s forwards;
  animation-delay: 1.1s;
}

@keyframes disappear {
  from {
    filter: brightness(1);
  }

  to {
    filter: brightness(100);
  }
}
