@import url('https://fonts.googleapis.com/css2?family=Amita:wght@400;700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-margin-top: 300px;
}

/* =========== fonts ========== */

@font-face {
    font-family: "Poppins", sans-serif;
    src: url(../font/Poppins/Poppins-Regular.ttf);
}

/* @font-face {
    font-family: "Amita", serif;
    src: url(../font/Amita/Amita-Regular.ttf);
} */

body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h1{
 font-size: 50px;   
 font-family: "Amita", serif;
line-height: 1.3;
font-weight: 700;
}

h3{
    font-size: 40px;
    font-family: "Amita", serif;
    line-height: 1.3;
    font-weight: 700;
}

h2{
    font-size: 40px;
    font-family: "Amita", serif;
    line-height: 1.3;
    font-weight: 700;
}

h5{
    font-size: 24px;
    font-family: "Poppins", sans-serif;

}
/* ========== colors ======== */

:root{
    --primary-color: #f9a246;
    --secondary-color: #f5763f;
    --black-color: #1f1f1f;
    --para-color: #5c6574;
}


/* =============== commen ========= */

a{
    display: inline-block;
    text-decoration: none;
}

ul li{
    list-style: none;
}

img{
    max-width: 100%;
    height: auto;
}

.section-padding{
    padding: 80px 0px;
}
.container{
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px 15px;
}

.primary-btn {
    font-size: 18px;
    padding: 15px 30px;
    min-width: 170px;
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
}
.primary-btn:before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    right: 0;
    width: 0;
    background-color: #8d2c6e;
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
}
.primary-btn:hover::before{
    width: 100%;
}

.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; */
}

.inner-banner{
    padding: 100px 0px;
    text-align: center;
    color: #fff;
}