@import url('https://fonts.googleapis.com/css2?family=Playwrite+CU:wght@100..400&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-margin-top: 70px;
}

/* ==== font ==== */

@font-face {
    font-family: poppins;
    src: url(../font/Poppins/Poppins-Regular.ttf);
}
@font-face {
    font-family: poppins-bold;
    src: url(../font/Poppins/Poppins-Bold.ttf);
}

body{
    font-family: poppins;
    background: #000;
}

h1{
    font-size: 38px;
    font-family: "Playwrite CU", cursive;
}
h2{
    font-size: 38px;
    font-family: "Playwrite CU", cursive;
}
h3{
    font-size: 38px;
    font-family: "Playwrite CU", cursive;
}
p{
    line-height: 1.8;
}
/* ====== commen ====== */

.container{
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px 20px;
}

a{
    text-decoration: none;
}

ul li{
    list-style: none;
}

.section-padding{
    padding: 100px 0px;
}

.primary-btn{
    background: transparent;
    border: none;
    display: inline;
    a{
        padding: 12px 30px;
        font-size: 18px;
        color: #fff;
        display: inline-block;
        border-radius: 30px;
    }
}
.sticky {
    box-shadow: 0 2px 20px 0 #d1d1d199;
    position: fixed !important;
    top: 0;
    width: 100%;
    padding: 0;
    z-index: 999;
    transition: all .2s linear;
    background-color: #111111 !important;
}