/*

aPPa

*/

@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,700|Playfair+Display');
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@600&display=swap");
body {
  margin: auto;
  font-family: 'Dosis', sans-serif;
  overflow: auto;
  background: linear-gradient(315deg, rgb(70, 5, 183) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgb(111, 110, 110) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
}

@keyframes gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
      transform: translateX(1);
  }

  25% {
      transform: translateX(-25%);
  }

  50% {
      transform: translateX(-50%);
  }

  75% {
      transform: translateX(-25%);
  }

  100% {
      transform: translateX(1);
  }
}
/*---------------------------------------
  Typorgraphy              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0px;
  }
  
  h1 {
    color: #010134;
    font-family: 'Dosis', sans-serif;
    font-size: 40px;
    line-height: normal;
  }
  
  .support-cus, p {
  
    font-size: 20px;
  
  }
  
  h2 {
    color: #0b0239;
    font-size: 35px;
    line-height: normal;
  }
  
  .smooth-image {
    image-rendering: optimizeQuality; /* Standard */
    -webkit-font-smoothing: antialiased; /* For WebKit-based browsers */
    -moz-osx-font-smoothing: black; /* For Firefox on macOS */
  }
  
  h4 {
    color: #0b0b0b;
    font-size: 20px;
    font-weight: 400;
  }
  
  p {
    color: #080808;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0.2px;
  }
  
  strong, span {
    color: #0c0404;
    font-weight: normal;
  }
  
  
  
  /*---------------------------------------
    Buttons               
  -----------------------------------------*/
  
  .arrow-btn i {
    background: #000000;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: 32px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .arrow-btn i:hover {
    background: #0c0c0c;
  }
  
  
  
  /*---------------------------------------
    General               
  -----------------------------------------*/
  
  html{
    -webkit-font-smoothing: antialiased;
  }
  
  a {
    color: #0e0d0d;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }
  
  a:hover, a:active, a:focus {
    color: #000000;
    outline: none;
  }
  
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .section-title {
    margin: 0;
    padding-bottom: 32px;
  }
  
  .parallax-section {
    background-attachment: fixed !important;
    background-size: cover !important;
  }
  
  #about, #work,
  #contact, footer {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  
  /*---------------------------------------
    Pre loader section              
  -----------------------------------------*/
  
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff00;
  }
  
  .spinner {
    border: 1px solid transparent;
    border-radius: 5px;
    position: relative;
  }
  
  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65px;
    height: 65px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #000000;
    border-top-color: #f9f9f9;
    animation: spinner .9s linear infinite;
  }
  
  /*---------------------------------------
    Home section              
  -----------------------------------------*/
  
  #home {
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
     align-items: center;
    height: 75vh;
    text-align: center;
    position: relative;
    margin: 82px 12px 0 12px;
  }
  
  .home-wrapper {
    background: rgba(8, 8, 8, 0); /* kamionhead */
  }
  
/*---------------------------------------
  Mobile Responsive styles              
-----------------------------------------*/

@media (max-width: 980px) {

    h1 {font-size: 30px;}
   
    #about .about-thumb {
     padding-left: 0px;
    }
   
    #work .work-thumb {
     margin-top: 25px;
    }
   
   }
   
   @media (max-width: 768px) {
   
     h1 {
       font-size: 17px;
     }
   
     h2 {font-size: 15px;}
   
     footer .col-md-4 {
       margin-bottom: 35px;
     }
   
     footer .col-md-6 {
       text-align: center;
     }
   
     footer .copyright-text {
       padding-bottom: 8px;
     }
   
   }
   
   @media (max-width: 580px) {
   
     h3 {
       font-size: 14px;
       letter-spacing: 4px;
     }
   
     #about .about-thumb {
       padding: 22px 12px;
       margin-top: 0px;
     }
   
   }
   

     /* Styling buttons & webpage */

body {
    background: rgb(#d8d3d390);
    font-family: 'Dosis', sans-serif;
    text-align: center;
  }
  
  button {
      margin-top: 50px;
      background-color: rgba(255, 255, 255, 0.377);
      border: 3px solid #121212;
      color: #403f3f;
      font-size: 15px;
      padding: 10px 20px;
      
  }
  
  button:hover {
      background-color: #f0494900;
      color: #8587ed;
      border: 3px solid #f0494900;
      transition: all 0.3s ease 0s;
  }
  
  p {
      margin: 1em 0;
    font-size: 20px;
  }
  /*---------------------------------------
  About section              
-----------------------------------------*/

#about {
    padding-top: 100px;
  }
  
  #about .col-md-4 img {
    border-radius: 5px;
    margin-bottom: 28px;
  }
  
  #about .col-md-4 a {
    background: #c306067e;/*--linkbox--*/
    border-radius: 8px;
    color: #000000;
    padding: 6px 12px;
    display: inline-block;
    margin-bottom: 40px;
  }
  
  #about .col-md-4 a:hover {
    background: #4f4d4da1;   /*--link hower--*/
    color: #ffffff;
  }
  
  #about .about-thumb {
    background: #f5f7f789; /*--o nama box--*/
    border-radius: 5px;
    padding: 42px 32px;
  }