.navigation img {
    width: 140px;
    height: auto;
}

a:link {
    color: #B5531A;
}

#header-bottom {
    height: 2.2rem;
    text-align: center;
}

#hero {

    background-color: #B5531A;
    height: 480px;
}

.features img {
    width: 54px;
    height: 63px;
    object-fit: contain;
    margin-bottom: 15px;
}

@media only screen and (max-width: 900px) {

    .header .logo {
        height: 3.2rem;
        padding-left: 2.4rem !important;
    }
}



/* Mobile Breack */
@media only screen and (max-width: 600px) {
    #header img {
        /* width: 280px;
        height: 220px; */
        object-fit: contain;
        margin-bottom: 15px;

    }

    #sidebar {
        position: relative;
        width: 100vh;
    }


    #hero {

        width: 30%;

    }



    #mainfeature {
        padding: 2rem;
    }

    #content {
        margin: 0;
    }

    #sidebar {
        /* visibility: hidden; */
    }


}


.header {
    /* padding: 0 4.8rem; */
    height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    max-width: 1440px;
    margin: 0 auto;
    border-bottom: solid 1px #0000001f;
    box-shadow: 3px 3px 2px 2px gray .1;


}

.header .logo {
    height: 3.2rem;
    padding-left: 2.4rem !important;
}

.navbar-list {
    display: flex;
    gap: 4.8rem;
    list-style: none;
    padding: 0 2.4rem !important;
}

.navbar-link:link,
.navbar-link:visited {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    color: #B5531A;
    transition: all 0.3s;
}

.navbar-link:hover,
.navbar-link:active {
    color: #364fc7;
}

.mobile-navbar-btn {
    display: none;
    background: transparent;
    cursor: pointer;
    margin-right: 8px;
}

.mobile-nav-icon {
    width: 4rem;
    height: 4rem;
    color: #b5531a;
}

.mobile-nav-icon[name="close-outline"] {
    display: none;
}

/* 980px  */
@media (max-width: 62em) {
    .mobile-navbar-btn {
        display: block;
        z-index: 999;
        /* border: 3px solid #212529; */
        color: #272921;
    }

    .header {
        position: relative;
    }

    .header .logo {
        height: 3.2rem;
        width: auto;
        /* padding: 0 2.4rem 0 0 !important */
    }

    .navbar {
        /* display: none; */
        width: 100%;
        height: 100vh;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 500;

        display: flex;
        justify-content: center;
        align-items: center;

        /* to get the tranisition  */
        transform: translateX(100%);
        transition: all 0.5s linear;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .navbar-list {
        flex-direction: column;
        align-items: center;

    }

    .active .navbar {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
        display: block;
    }

    .active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"] {
        display: none;
    }
}

/* Below 560px  */
@media (max-width: 35em) {
    .header {
        /* padding: 0 2.4rem; */
    }

    .header .logo {
        height: 3.2rem;
        width: auto;
    }
}