body {

  background: #fff !important;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  /* color: #1a1e21; */
}

.section-title h2 {
  text-shadow: 1px 1px 2px #4444;
}

/*****************************
    NavBar
******************************/
header nav {
  background: #fff;
  box-shadow: 0px 0px 5px #393939;
}

header nav a.navbar-brand h2 {

  color: var(--bs-orange);
}

header nav ul.action-menu .nav-item .nav-link {
  margin: 0px 20px;
  font-size: 13px;
  font-weight: 500;
  color: black;
}

header ul.navbar-nav .nav-item .nav-link {
  margin: 0px 10px;
  font-size: 15px;
  font-weight: 800;
  color: brown;
}

.navbar-toggler {
  outline: none !important;
  outline-color: transparent !important;
  padding: none !important;
  border: none !important;
  border-radius: none !important;

}

@media(max-width: 567px) {}

/*****************************
    Login Form
******************************/
.form-login {
  bottom: 45% !important;
}


.carousel-item {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-item::before {
  content: '';
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.carousel-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 40%;
  left: 0;
  right: 0;
}



.carousel-caption h5 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 700;
  width: 80%;
  margin: 0px auto 30px auto;
}

.carousel-caption p {

  font-size: 20px;
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0px auto 30px auto;
}


@media(max-width:768px) {
  .carousel-caption h5 {
    font-size: 38px;
  }
}

@media(max-width:577px) {
  .carousel-caption h5 {
    font-size: 25px;

  }

  .carousel-caption p {
    font-size: 13px;
  }

}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

p.card-text {
  text-align: justify;
}

@keyframes animate {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
  }
}

a.highlight {
  color: blue;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li+li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #ffb03b;
  position: absolute;
  left: 0;
  top: 2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb03b 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ffb03b;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .about .content,
  .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }

  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



.course .box {
  padding: 10px 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.course .box img {
  border-radius: 5px;
}

.course .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}

.swing {
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    float:left;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.swing img {
    border: 5px solid #f8f8f8;
    display: block;
}
.swing:after{
    content: '';
    position: absolute;  
    width: 20px; height: 20px;  
    border: 1px solid #999;
    top: -10px; left: 50%;
    z-index: 0;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}
/* nail */
.swing:before{
    content: '';
    position: absolute;
    width: 5px; height: 5px;
    top: -14px;left: 54%;
    z-index: 5;
    border-radius: 50% 50%;
    background: #000;
}
 
@keyframes swing {
    0% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}
section.img-section{
  background-image: url(../img/bg-image.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 30px;
  padding-bottom: 110px;
}
p.bold{
  font-weight: bolder; 
  color: rgb(8, 146, 192);
}
.text-president p{
  text-align: justify;
  font-weight: bolder; 

}
.text-president{
  margin: 20PX 0;
}
.heading H2{
  margin: 50PX 0;
  color: brown;
}
.links p{
  color: rgb(41, 164, 236);
}
.links p:hover{
  color: rgb(255, 255, 255);
}

        table {
            width: 100%;
            border-collapse: collapse;
        }

        td {
            padding: 10px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .form-container {
            text-align: center;
            border-radius: 18px;
            background-color: #CCC;
            padding: 15px;
            margin-top: 20px;
        }

        .normaltext {
            vertical-align: top;
            display: inline-block;
        }

        .labelfrmt {
            margin-right: 5px;
        }

        select, input[type="text"], input[type="date"] {
            width: 160px;
            height: 23px;
            margin-bottom: 5px;
        }

        input[type="submit"] {
            width: auto;
            padding: 5px 15px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .table-1{
padding: 100PX 0;
        }
      

        .dropdowen{
          text-align: center;
        }
        .clr-w a{
          color: white;
        }
    

.containers{
  width: 100%;
  /* height: 520PX; */
}


       .header-text{
          font: 400 1em/1.5 "Neuton";
          background: #090d00;
          color: rgba(72, 67, 67, 0.25);
          text-align: end;
          margin: 0;
      }
      
    .header-text  p {
          text-transform: uppercase;
          letter-spacing: .5em;
          display: inline-block;
          border: 4px double rgba(255, 255, 255, .25);
          border-width: 4px 0;
          /* padding: 1.5em 0em;
           */
          /* position: absolute; */
          text-align: center;

          top: 18%;
          left: 50%;
          width: 100%;
          margin: 0 0 0 -20em;
      }
      
     .header-text p span {
          font: 700 3.7em/1 "Oswald", sans-serif;
          letter-spacing: 0;
          padding:4px 0;
          text-align: center;
          display: block;
          margin: 0 auto;
          text-shadow: 0 0 80px rgba(255, 255, 255, .5);
      
          /* Clip Background Image */
          background: url(https://i.ibb.co/RDTnNrT/animated-text-fill.png) repeat-y;
          -webkit-background-clip: text;
          background-clip: text;
      
          /* Animate Background Image */
          -webkit-text-fill-color: transparent;
          -webkit-animation: aitf 80s linear infinite;
      
          /* Activate hardware acceleration for smoother animations */
          -webkit-transform: translate3d(0, 0, 0);
          -webkit-backface-visibility: hidden;
      }
      
      /* Animate Background Image */
      @-webkit-keyframes aitf {
          0% { background-position: 0% 50%; }
          100% { background-position: 100% 50%; }
      }
      



.portofolio_thumb a img {
    height: 183px !important;
    width: 204px !important;
}
.portofolio_thumb {
    background: url("imgdis/portofolio_back.png") no-repeat scroll 0 0 transparent;
    height: 205px;
    padding: 8px;
    width: 225px;
}
.post_portofolio {
    float: left;
    margin-left: 10px;
    padding-bottom: 0;
    text-align: left;
    width: 225px;
}
div#fancy_inner {border-color:#BBBBBB}
		div#fancy_close {right:-15px;top:-12px}
		div#fancy_bg {background-color:#FFFFFF}

