body {
    margin-top: 0;
}
.mian-logo > span {
   font-size: 1.35em;
}
.main-header {
    z-index: 999;
}
hr.border-light {
   max-width: 300px;
   opacity: 0.9;
}
.carousel-item {
    transition: transform 1s ease-in-out;
}
.carousel-caption {
    top: 48%;
    transform: translate(0, -50%);
    bottom: auto;
    left: 0;
    right: 0;
     width: 0;
     opacity: 0;
     overflow: hidden;
     text-align: left;
}
.carousel-item.active .carousel-caption  {
    animation: widthSlide 3.5s 1;
    opacity: 1;
     z-index: 999;
     width: 100% ;
}
@keyframes widthSlide {
    0% {
        width: 0% ;
        opacity: 0;
   }
  50% {
       width: 100% ;
        opacity: 1;
   }
    100% {
        width: 100% ;
        opacity: 1;
   }
}
.carousel-caption h5 {
   font-size: 5em;
   text-transform: uppercase;
   font-weight: 900;
   -webkit-text-stroke: 2px #E2FADB;
   color: #00000059;
   position: relative;
   width: fit-content;
   padding-right: 10px;
}
.carousel-caption h5:after {
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: #fff;
   bottom: -20px;
   opacity: 1;
}
.carousel-item.active .carousel-caption h5:after {
   width: 10%;
   height: 4px;
   animation: titleCover 2.5s 1;
   opacity: 0;
}

@keyframes titleCover {
    0% {
       left: 0;
       right: 0;
       width: 100%;
       height: 100%;
      opacity: 1;
   }
  20% {
       left: 0;
       right: 0;
       width: 100%;
       height: 100%;
      opacity: 1;
   }
  30% {
       left: 0;
       right: 0;
       width: 100%;
       height: 100%;
       opacity: 1;
   }
   55% {
       left: 0;
       right: 0;
       width: 100%;
       height: 5px;
       opacity: 1;
   }
  95% {
       left: 0;
       right: 0;
       width: 10%;
   }
    100% {
       left: 0;
       right: 0;
       width: 10%;
       opacity: 0.5;
   }
}
.carousel-item > img {
   height: 100vh;
   object-fit: cover;
   transform: scale(1);
}
.carousel-item.active > img {
   transform: scale(4);
   animation: bgScale 200s 1;
}
@keyframes bgScale {
 0% {
     transform: scale(1);
   }
 100% {
     transform: scale(4);
   }
}
.carousel-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 40%);
    z-index: 99;
}

.carousel-caption p {
    font-size: 1.35em;
    font-weight: 600;
    text-transform: uppercase;
}
.carousel-caption * {
    white-space: nowrap;
}
.carousel-indicators {
   right: 10px;
   left: auto;
   margin: 0;
   width: 25px;
   flex-wrap: wrap;
   bottom: auto;
   top: 45%;
   transform: translate(0, -50%);
   gap: 10px;
   z-index: 9999;
}
.carousel-indicators [data-bs-target] {
   width: 15px;
   height: 15px;
   border-radius: 100px;
   border: none;
}
li.nav-item > a:after {
   content: '';
   position: absolute;
   height: 3px;
   background: white;
   left: 0;
   bottom: -10px;
   right: 0;
   margin: 0 auto;
   opacity: 0;
   width: 85%;
 transition: 0.3s all ease-in-out;
}
li.nav-item > a.active:after,
li.nav-item > a:hover:after {
   bottom: 0;
   opacity: 0.8;
}
li.nav-item > a {
   position: relative;
}


@media screen and (max-width: 991px) {
 .carousel-caption h5 {
   font-size: 3.5em;
}
 .carousel-caption p {
   font-size: 1em;
   font-weight: 900;
   text-transform: uppercase;
}
}

@media screen and (max-width: 768px) {
 .carousel-caption h5 {
   font-size: 3.5em;
}
 .carousel-caption p {
   font-size: 1em;
   font-weight: 600;
}
 .carousel-item img {
   height: 80vh;
}
 .mian-logo > span {
   font-size: 1em;
}
.carousel-indicators {
   right: 0;
   bottom: 0;
   left: 0;
   padding: 0;
   margin-right: 15%;
   margin-bottom: 1rem;
   margin-left: 15%;
   flex-wrap: nowrap;
   top: auto;
   transform: unset;
   width: auto;
   gap: 5px;
}
 .carousel-indicators [data-bs-target] {
   width: 12px;
   height: 12px;
}
}

@media screen and (max-width: 575px) {
 .carousel-caption h5 {
   font-size: 2em;
}
 .carousel-item img {
   height: 60vh;
}
 .carousel-caption p {
   font-size: 0.75em;
}
 .carousel-caption {
    width: 100%;
   opacity: 0;
}
.carousel-item.active .carousel-caption {
    animation: sample 2.5s 1;
   opacity: 1;
}
 .carousel-caption * {
   white-space: unset;
}
@keyframes sample {
    0% {
        opacity: 0;
   }
  50% {
        opacity: 1;
   }
    100% {
        opacity: 1;
   }
}
 .carousel-caption h5 {
   -webkit-text-stroke: 1px #E2FADB;
}
 hr.border-light {
   max-width: 200px;
}
}

@media screen and (max-width: 480px) {
.carousel-caption h5 {
   font-size: 1.45em;
}
 .carousel-caption p {
   font-size: 0.7em;
}
 .carousel-item img {
   height: 50vh;
}
}

.box {
    background-color: darkorange;
    border: 1px solid black;
    width: 100px;
    height: 100px;
    position: absolute;
  }
  
  .containfoot {
    text-align: left;
    position: absolute;
    bottom: 0px;
    right:0px;
    left:0px;
    height: 250px;
    width: 100%;
    background: rgb(0 0 0 / 40%);
  }
  
  .top {
    top: 20px;
  }
  
  .left {
    left: 20px;
  }
  
  .bottom {
    bottom: 20px;
  }
  
  .right {
    right: 20px;
  }
  
  .containfoot-caption {
    position:absolute;
    top:0px;
    width:100%;
  }

  .footer {
    position:absolute;
    bottom:2px;
    left: 10px;
    width:100%;
    text-align: left;
  }
  .footer span{
    text-align: left;
		text-transform: uppercase;
		letter-spacing: 2px;
        left:5px;
		font-size: 18px;
		text-shadow: 1px 1px 1px rgba(10, 10, 10, 0.7)
  }
  
.waktu{
	width:10px;
	height:5px;
	}

	.jam-digital {
		width: 25%;
		margin: 1% 1%;
        left: 10px;
	 }
	 #jam span {
		float: left;
		text-align: center;
		font-size: 30px;
		margin: 0 1%;
		padding: 2px;
		width: 20%;
		border-radius: 5px;
		box-sizing: border-box;
	 }
	 #jam span:nth-child(1) {
		background: #a70c0c;
	 }
	 #jam span:nth-child(2) {
		background: #f6ab29;
	 }
	 #jam span:nth-child(3) {
		background: #298f19;
	 }
	 #jam::after {
		content: "";
		display: block;
		clear: both;
	 }
	 #unit span {
		float: left;
		width: 10%;
		margin-bottom: 0px;
		text-align: left;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-size: 14px;
		text-shadow: 1px 1px 1px rgba(10, 10, 10, 0.7)
	 }
	 span.turn {
		animation: turn 0.7s ease;
	 }
	 @keyframes turn {
		0% {transform: rotateX(0deg)}
		100% {transform: rotateX(360deg)}
	 }
	 @media screen and (max-width: 580px){
		#jam span {
		   float: left;
		   text-align: center;
		   font-size: 20px;
		   margin: 0 1.5%;
		   padding: 10px;
		   width: 5%;
		}
		h1 {
		   margin: 20px 5%;
		}
		.jam-digital {
		   width: 50%;
		   margin: 10% 20%;
		}
		#unit span {
		   width: 13%;
		   margin-bottom: 0px;
		}
	 }

	 .borderless table {
		border-top-style: none;
		border-left-style: none;
		border-right-style: none;
		border-bottom-style: none;
	}

    
.info {
	height: 46px;
	line-height: 46px;
}

.info ul li {
	display: inline-block;
    margin-right: 15px;
    color: #FDFDFD;
    text-shadow: 1px 1px 1px rgba(10, 10, 10, 0.7);
}

.info ul.left-info li {
	border-left: 1px solid rgba(250,250,250,0.3);
	padding: 0px 20px;
}

.info ul.left-info li:last-child {
	border-right: 1px solid rgba(250,250,250,0.3);
}

.info ul.left-info li i {
	margin-right: 10px;
	font-size: 12px;
}

.info ul.left-info li a {
	color: #fff;
	font-size: 10px;
	font-weight: 600;
}

.info ul.right-icons {
	float: right;
}

.info ul.right-icons li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-right: 1px solid rgba(250,250,250,0.3);
}

.info ul.right-icons li:first-child {
	border-left: 1px solid rgba(250,250,250,0.3);
}