*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* ============ font ========== */

@font-face {
    font-family: poppins;
    src: url(../font/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: Marcellus;
    src: url(../font/Marcellus/Marcellus-Regular.ttf);
}

body{
    font-family: poppins;
}

h1,h2,h3,h4,h5{
    font-family: Marcellus;
}

h1{
    font-size: 48px;
}

h2{
    font-size: 38px;
}

h3{
    font-size: 38px;
}

h5{
    font-size: 24px;
}
/* ===== commen ====== */

.container{
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px 15px;
}

ul li{
    list-style: none;
}

a{
    text-decoration: none;

}

.primary-btn{
    background: transparent;
    border: none;
    a{
        display: inline-block;
        padding: 10px 25px;
        background-color: #6d9427;
        color: #fff;
        border-radius: 50px;
        font-size: 18px;
        transition: all .2s linear;
    }
}

.primary-btn:hover a{
    background-color: #2b5c59;

}

.section-padding{
    padding: 80px 0;
}

.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: #ebf4c9 !important
}

.inner-banner {
    padding: 150px 0 100px;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgb(0 0 0 / .5), rgb(0 0 0 / .5)), url(../upload/banner/inner-banner.webp);
    background-position: center;
    background-size: cover
}

.call-now{
    position: relative;
}
.numbers-box{
    visibility: hidden;
    transition: all .2s linear;
    position: absolute;
    top: 45px;
    right: -50px;
    width: 200px;
    display: flex;
    flex-direction: column;
    transform: translateY(10px);
    z-index: 999;
    a{
        border-radius: 0;
    }
}
.call-now:hover .numbers-box{
    visibility: visible;
    transform: translateY(0px);

}