<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* --------------------------------------- Back to top style */
#back2Top {
  width: 60px;
  height: 60px;
  /* line-height: 60px; */
  overflow: hidden;
  z-index: 999;
  display: none;
  cursor: pointer;
  position: fixed;
  /* Mit edit */
  padding: 7px 0px 0px 0px;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 0px 3px 2px rgba(255,255,255, 0.5);
  background-color: rgba(13, 69, 117, .5);
  /* .end Mit edit */
  color: white;
  text-align: center;
  font-size: 30px;
  text-decoration: none;
}

#back2Top:hover {
  background-color: #FAFAFA;
  color: #25629e;
  box-shadow: 0 0px 5px 3px rgba(0,0,0, 0.25);
}

.w3-card {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.w3-animate-bottom {
  position: relative;
  animation: animatebottom 0.4s
}

@keyframes animatebottom {
  from {
    bottom: -300px;
    opacity: 0
  }

  to {
    bottom: 0;
    opacity: 1
  }
}
/* ------------------------------- .end - Back to top style */

/* ------------------------------------ Social Float button */
.social-buttons {
  position: fixed;
  z-index: 100;
  right: 10px;
  top:150px;
}

.social-icon {
  z-index: 0;
  display: block;
  height: 50px;
  width: 50px;
  margin: 30px 10px;
  -webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,.4));

  transition: transform .5s;
}

.social-icon:hover {
  transform: translate(0px, -3px) scale(1.05);
}

/* ------------------------------------------ Footer CSS */
.footer-box {
  position: relative;
  height:auto;
  padding: 50px 50px 100px 50px;
  background:
    /* top, transparent red */
    linear-gradient(
      /* rgba(0, 5, 31, 0.85),
      rgba(0, 5, 31, 0.85) */
      rgba(0, 14, 31, 0.85),
      rgba(0, 14, 31, 0.85)
    ),
    /* bottom, image */
    url('../../../assets/images/footer/footer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 992px) {
  .footer-box {
    padding: 50px 50px 100px 50px;
  }
}

.footer-title {
  font-family: 'BukhariScript-R',sans-serif;
  font-size: 3rem;
  text-align: center;
  color: white;
  margin-top: 30px;
}

.footer-detail {
  color:white;
  font-family: 'Kanit',sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
}

.footer-detail span {
  font-size: 1.2rem;
}

.social-icon-footer {
  width: 50px;
}

.social-icons-footer-set a {
  max-width: 50px;
  margin-right: 35px!important;
}

.social-icons-footer-set a:last-child {
  margin-right: 0px!important;
}

.bottom-footer {
  position: relative;
  bottom:0px;
  padding: 12px;
  background-color: #af2d1c;
  text-align: center;
  color: white;
  letter-spacing: .25rem;
}

@media screen and (max-width: 480px) {
  .social-icon-footer {
    width: 40px;
  }

  .social-icons-footer-set a {
    max-width: 50px;
    margin-right: 25px!important;
  }

  .bottom-footer {
    font-size: 1rem;
  }
}


/* ------------------------------------------ Footer CSS */
</pre></body></html>