@font-face {
    font-family: Arima;
    src: url(fonts/static/Arima-Regular.ttf);
    font-weight: 400;
    font-style: normal
  }
  @font-face {
    font-family: ArimaB;
    src: url(fonts/static/Arima-SemiBold.ttf);
    font-weight: 600;
    font-style: normal
  }
:root{
    /* --primary-font: 'Poppins', sans-serif; */
    --primary-font: 'Arima', sans-serif;;
    --primary-color:#6c0404;
    /* --primary-color:#ffd801; */
    --secondary-color:#e87a2b;
    --secondary-font:'Prata', serif;

    --animate-duration: 1000ms;
    --animate-delay: 0.5s;
    /* font-family: 'Prata', serif; */
/* font-family: 'Roboto', sans-serif; */
    --normal-font: 'Roboto', sans-serif;
}

html{
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-weight: 400;
   }
   .fixed-top {
    top: -40px !important;
    transform: translateY(40px) !important;
    transition: transform .3s;
}

   body{
    /* background-color: rgb(242,237,219); */
   }
   .primary-color{
    color: var(--primary-color);
   }

   .primary-bg-color{
    background-color: var(--primary-color);
   }
   .secondary-color{
    color: var(--secondary-color);
   }
   .secondary-bg-color{
    background-color: var(--secondary-color);
   }

   .secondary-font{
    font-family: 'Prata', serif;
   }
   .arima{
    font-family: 'Arima',serif;
   }

   .mega-btn{
    padding: 1rem 2rem;
    font-size: 2rem;
    text-decoration: none;
    background-color: var(--primary-color);
    border-radius: 0.5rem;

   }

   h1{
    font-size: 3.8rem;
   }
   h2{
    font-size: 3.6rem;
   }
   h4{
    font-size: 2.8rem;
   }
   p{
    font-size: 1.6rem;
   }
   .text-600{
    font-weight: 600;
   }
   .text-16{
    font-size: 16px;
   }

   .text-18{
    font-size: 18px;
   }

   .text-26{
    font-size: 26px;
   }

   .kode-head{
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30rem;
    padding: 10px;
   }

   .kode-head h1{
    font-size: 5rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
   }

   /* btns */
   .simple-btn{
    background-color: #041c7c;
    color: #fff;
    font-size: 18px;
    font-family: poppins,'sans';
    text-decoration: none;
    padding: 10px 20px;
   }

   .form-control{
    /* padding: 2rem 1rem !important; */
    font-size: 16px;
    color: #070707;
    padding: 10px 10px;
    font-weight: 700;

}

   @media (max-width:600px) {

    html{
        font-size: 50%;
    }
    p{
        font-size: 1.8rem;
    }
   }

