html{
    scroll-behavior: smooth;
}
body{
  background-color: #f8f9fa;
}
h1,h2,h3,h4,h5,h6,p{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #0a9496cc;
}
  
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 2px solid #fc5304b9;
    border-top-color: #348eb72d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
  
@-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
@keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 4px;
    bottom: 80px;
    z-index: 996;
    background: #FC5404;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
  
.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}
  
.back-to-top:hover {
    background: #fc5304b9;
    color: #fff;
}
  
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
@media(max-width: 520px){
    .back-to-top {
      position: fixed;
      visibility: hidden;
      opacity: 0;
      right: 4px;
      bottom: 6px;
      z-index: 996;
      background: #FC5404;
      width: 30px;
      height: 35px;
      border-radius: 2px;
      transition: all 0.6s;
}
.back-to-top i {
    font-size: 22px;
    color: #fff;
    line-height: 0;
   }
}

.mybtn{
  color: #005f73;
  border-radius: 5px;
  -webkit-animation-delay: 0.8s;
  transition: all ease-in-out 0.4s;
  text-decoration: none;
  animation-delay: 0.8s;
  margin-top: 6px;
  padding: 6px 10px;
  border: 2px solid #ef6603;
}
.mybtn:hover{
  background: #ef6603;
  color: #fff;
  text-decoration: none;
  border: 2px solid #ef6603;
}