/* global.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.04rem;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;

}

html,
body {
    scroll-behavior: smooth;
}

img,
svg {
    width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

a {
    display: inline-block;
    text-decoration: none;
}


ul li,
ol li {
    list-style: none;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-700 {
    font-weight: 700;
}
.fw-900{
    font-weight: 900;
}

.fa-bars:before, .fa-navicon:before {
    content: "\f0c9";
    color: #FE6E01;
    font-size: 38px;
}

@media (max-width: 768px){
    .fa-bars:before, .fa-navicon:before {
        font-size: 24px;
    }
   
}
/* @media (max-width: 991px){
    .container{
        max-width: 720px;
    }
   
} */