@font-face {
    font-family: 'stencils';
    src: url(fonts/stencil.ttf);
}

:root{
    /* --primary-font: 'Poppins', sans-serif; */
    --primary-font: 'Montserrat', sans-serif;
    --primary-color:#055761;
    /* --primary-color:#ffd801; */
    --secondary-color:#041c7c;
    --animate-duration: 1000ms;
    --animate-delay: 0.5s;
}

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::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb
{
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: var(--dark-yellow);
}

.stencils{
    font-family: 'stencils', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.roboto{
    font-family: 'Roboto Slab', serif;
}
   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: 'Poppins', sans-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: 2rem;
    color: #070707;
    padding: 10px 10px;
    font-weight: 600;
}

   @media (max-width:600px) {

    html{
        font-size: 50%;
    }
    p{
        font-size: 1.8rem;
    }
    .section-padding{
        padding: 50px 0px;
    }
   }