
body::-webkit-scrollbar{
  display: none;
}

body {
  font-family: 'Raleway';
  font-size: 14px;
  color: #dd1622;
  margin: 0;
  padding: 0;
  width: 1080px;
  margin: auto;
}

@font-face {
  font-family: 'Raleway';
  src: url('./Roboto-Regular.ttf');
}

.swiper-container {
  width: 100%;
  /*height: 100%;*/
  top: 20px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;

  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.swiper-pagination {

  text-align: right;
  width: 1075px;
  background-color:  #204394;
}

.swiper-pagination-bullet {
  background-color: #ba141b;
  font-weight: 500;
  padding: 5px;
  border-radius: 10px;
  width: auto;
  height: 15px;
  text-align: center;
  line-height: 15px;
  font-size: 14px;
  color: #ffffff;
  opacity: 1;
  background: rgba(0, 0, 0, 0);
}

.swiper-pagination-bullet-active {
  font-weight: 600;
  color: yellow;
  background: yellow -webkit-linear-gradient(left, #fff, #fff) no-repeat 0 0/30px;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.199);
  -webkit-animation: sweep 12s ease-in infinite;
          animation: sweep 12s ease-in infinite;
}


  /* ================================== */


.tv {
  position: fixed;
  z-index: 90;
  color: #fff;
  margin-top: -8px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
  }

section {
  border-radius: 10px 10px 0 0;
  background-color:#2e75b5; 
  box-shadow: 5px 5px 5px #777777;
}

article {
	max-width: 1080px;
  grid-gap: 25px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr; /* fractions */

	/* margin: 55px auto;	place article in the center!! */
}

/* to make images in your webpage 
automatically scale with grid layouts!! */
img {
  border-radius: 5px 5px 0 0;
	width: 100%;
	height: 353px;
  border-color:  #fff;
  border-style: double;
  border-width: 0 0 5px 0;
}

h1 {text-align:center;font-size:50px}

.desc {
  font-family: 'Raleway';
  color: #fff;
  width: 330px;
  font-size: 14px;
  font-weight: 200;
  padding: 2px 2px 5px 2px;
  text-align: center;
  /*batasi karakter teks*/
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

table {
  width: 1080px;

}

div.sticky {
  z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  margin: auto;
  background-color: #ffffff;
  padding: 0px;
  width: 1080px;
  object-position: center;
}


div.sticky2 {
  z-index: 9;
  position: sticky;
  top: 50vh;
  margin: auto;
  background-color: rgba(0, 0, 0, 0);
  /*padding: 50px 0px;*/
  font-size: 20px;
  width: 1080px;
  object-position: center;
}

div.sticky3 {
  text-align: center;
  z-index: 9;
  position:fixed;
  top: 99vh;
  margin: auto;
  background-color: rgba(0, 0, 0, 0);
  font-size: 20px;
  width: 1080px;
  object-position: center;
}

div.sticky4 {
  margin-top:-512px;
  z-index: 9;
  position:sticky;
  background-color: rgba(0, 0, 0, 0);
  font-size: 20px;
  width: 1080px;
}

#myBtn {
  font-size: 18px;
  font-weight:900 ;
  width: 30px;
  height: 30px;
  z-index: 99;
  background-color: #ba141b;
  color: white;
  cursor: pointer;
  padding: 1px;
  border-width: 0px ;
  float: right;
  margin-right: 15px;
}

#myBtn:hover {
  background-color: #555;
}

/* CSS Kedip | Teks | Objek 
(Chrome, Safari, Firefox, IE, ...)
*/

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}

.blink {
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}

/* css ini di buat oleh caksup */

/*light sweap */
@-webkit-keyframes sweep {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000% 2000%;
  }
}

@keyframes sweep {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000% 2000%;
  }
} 