*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* =========== color =========== */

:root{
    --primary-color: #e18d5d;
    --secondary-color: #000;
}

/* ========= font ========= */

@font-face {
    font-family: lexend;
    src: url(../font/Lexend/Lexend-VariableFont_wght.ttf);
}

@font-face {
    font-family: Josefin;
    src: url(../font/Josefin_Sans/static/JosefinSans-Regular.ttf);
}


body{
    font-family: lexend;

}

h6{
    font-size: 18px;
    font-weight: 400;
}

h1,h3,h4,h5{
    font-family: Josefin;

}
h2{
    font-size: 45px;
    font-family: Josefin;
    font-weight: 600;
    line-height: 1.4;
}

p{
    font-size: 16px;
    line-height: 1.7;
}
h3{
font-size: 40px;
font-family: Josefin;
font-weight: 400;
}
/* ========== other ========= */

.container{
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0px 20px;
}

.full-container{
    width: 100%;
    padding: 0px 50px;
}

ul li{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    width: 100%;
}

.Categorie-btn{
    display: block;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    width: 200px;
    margin: 0 auto;
    color: #fff;
    transition: all .2s;
    text-transform: uppercase;
}

.Categorie-btn:hover{
    background-color: var(--primary-color);
}

.primary-btn a{
    display: block;
    padding: 15px 22px;
    background-color: var(--primary-color);
    border: 1px solid  var(--primary-color);
    font-size: 15px;
    /* width: 200px; */
    margin: 0 auto;
    color: #fff;
    transition: all .2s;
    text-transform: uppercase;
}

.primary-btn a:hover{
    background-color: var(--secondary-color);
}

.section-tagline{
    font-size: 20px;
    color: #a65fc3;
    font-weight: 600;
}

.top-scroll{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-color: #2ba6a2c8;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;

    .scroll-value{
        font-size: 24px;
    }
}

.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: #f4f4f4 !important
}

.white-background{
    background: url(../upload/banner/background-white.jpg);
    background-position: center;
    background-size: cover;
}