
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #0c0c0c;
    background-color: #ffffff;
}

.layout_padding {
    padding-top: 90px;
    padding-bottom: 90px;
}

.heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.heading_container h2 {
    position: relative;
    font-weight: bold;
    margin-right: 10px;
}

.heading_container img {
    width: 30px;
}

.header_and_about_area {
    height: 98vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #f8f3ee;
}

@media (max-width: 992px) {
    .header_and_about_area {
        height: auto;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}