@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Responsiveness */
@media screen and (max-width: 992px) {
  .fa-instagram, .fa-envelope-o{
    font-size: 15px;
    vertical-align: middle;
    color: #f3822c;
  }
  .socmed-item{
    max-width: 90px;
  }

  .max-width-limit{
    max-width: 50%;
  }
  
  #socmed-div{
    width: 80%;
    background-color: white;
    border-radius: 20px;
}
} 

/* Medium to Extra Large*/
@media screen and (min-width: 993px) {
  .fa-instagram, .fa-envelope-o{
    font-size: 25px;
    vertical-align: middle;
    color: #f3822c;
  }

  .socmed-item{
    max-width: 175px;
  }

  .max-width-limit{
    max-width: 25%;
  }

  #socmed-div{
    width: 30%;
    background-color: white;
    border-radius: 20px;
}
  
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    -ms-overflow-style: none; /*hide scrollbar for IE or Edge*/
    background-color: #FFF;
    height: 100%;
    min-height: 100%;
}

*{
  box-sizing: border-box;
}
  
.bg-white-border{
    position: relative;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.115);
    border-radius: 10px;
    border: 0.5px solid rgb(182, 182, 182);
    background-color: rgba(255, 255, 255, 0.5);

}


/* Footer */
.footer{
    background-color: #f3822c;
    color: white;
}

.footer-container{
  -webkit-transition: all 0.3s ease-in-out; 
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.sm-icon {
  text-align: center;
  text-decoration: none;
  color: #f3822c;
}

.sm-icon:hover {
  opacity: 0.7;
}

.contact-us{
  position: relative;
  background-color: wheat;
  box-shadow: 0 -2px rgba(236, 236, 236, 0.306);
}

.gradient {
  /* #FEE540 */
  background-image: linear-gradient(to right,#EF3825 ,#f3be2c);
  color: white;
}




/* Background Slider */
#main-div, .navbar, .footer-container, .alert, .tm-section{
  z-index: 1;
  position: relative;
}

.slideshow { 
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  list-style: none;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.slideshow li { 
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  animation: imageAnimation 8s linear infinite; 
}

.slideshow li:nth-child(1) { 
  background-image: url(../images/bg-1.jpg) 
}
.slideshow li:nth-child(2) { 
  background-image: url(../images/bg-2.jpg);
  animation-delay: 2s; 
}
.slideshow li:nth-child(3) { 
  background-image: url(../images/bg-3.jpg);
  animation-delay: 4s; 
}
.slideshow li:nth-child(4) { 
  background-image: url(../images/bg-4.jpg);
  animation-delay: 6s; 
}

@keyframes imageAnimation { 
  0% { 
    opacity: 0; 
    animation-timing-function: ease-in;
  }
  12.5% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  25% {
    opacity: 1
  }
  37.5% {
    opacity: 0
  }
}

/* STYLING SCROLLBARS */

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}



/* Overriding Bootstrap Glow */
.form-control:focus, 
.custom-select:focus, 
.custom-file-upload:focus, 
.custom-file-upload:active, 
.btn:focus, 
.btn:active,
#inputAspirasi:focus,
#input-nim:focus{
  border-color: #f3822c97;
  box-shadow:  0 0 8px #f35a2c;
}