* {
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
    font-family: "poppins", sans-serif;
    src: url(../font/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: "poppins-medium", sans-serif;
    src: url(../font/Poppins/Poppins-Medium.ttf);
}

body {
    font-family: "poppins", sans-serif;
}

h1 {
    font-size: 45px;
    line-height: 1.3;
}

h2 {
    font-size: 45px;
    line-height: 1.3;
}

h4 {
    font-size: 24px;
}

h3 {
    font-size: 42px;
}

h5 {
    font-size: 18px;
}

p {
    line-height: 1.5;
    font-size: 16px;
    color: #464646;
    letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

.container {
    width: 100%;
    max-width: 1340px;
    padding: 0px 20px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

.primary-btn {
    border: none;
}

.primary-btn a {
    padding: 10px 25px;
    font-size: 16px;
    letter-spacing: 1px;
    background-color: #fbb104;
    transition: all .2s linear;
    color: #ffffff;
    display: inline-block;
}

.primary-btn a:hover {
    background-color: #fc6e05;
    color: #fff;
}


.section-padding {
    padding: 80px 0px;
}

.sticky {
    box-shadow: 0px 2px 20px 0px #d1d1d199;
    position: fixed !important;
    top: 0;
    width: 100%;
    padding: 0px;
    z-index: 999;
    transition: all .2s linear;
    background-color: #ffffff !important;

    nav {
        a {
            color: var(--black);
        }
    }
}

.float {
    a {
        width: 50px;
        height: 50px;
        padding: 20px;
        background: #fbb104;
        border-radius: 5px;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }
}

.inner-banner{
    padding: 130px 0px 80px;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../uploads/banner/inner-banner.jpg);
    background-position: center;
    background-size: cover;
}