header {
    position: relative;
    z-index: 998;
    width: 100%;
    top: 0;
    left: 0;
}

header .top-header {
    background-color: #0f0f0f;
    padding: 6px 0;
    position: relative;
}

header .top-header .left a {
    color: #F5F3E7;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 600;
}

header .top-header .right {
    text-align: right;
}

header .top-header .right a {
    display: inline-flex;
    font-size: 15px;
    color: #F5F3E7;
    font-weight: 600;
}

header .top-header .right a:nth-child(2n) {
    margin-left: 6px;
    padding-left: 6px;
    border-left: 1px solid #F5F3E7;
}

header .main-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(215, 162, 42, 0.2);
}

header .main-header .navbar {
    width: 100%;
    height: 80px;
    position: relative;
    align-items: start;
    padding: 0;
}

header .main-header .navbar-brand img {
    width: 240px;
    /* height: 120px;
    padding: 10px;
    border-radius: 50%; */
    background-color: #fff;
}

header .main-header .navbar-toggler {
    height: 80px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    outline: none;
}

header .main-header .navbar-toggler svg {
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 4px;
    color: #003d20;
    border: 2px solid #003d20;
}

header .main-header .nav-item {
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
}

header .main-header .nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 15px !important;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
    transition: all 0.4s;
    gap: 4px;
}

header .main-header .nav-item:hover .nav-link {
    color: #003d20;
}

header .main-header .nav-link svg {
    width: 10px;
    height: 10px;
    color: #003d20;
    transition: all 0.4s;
}

header .main-header .nav-item:hover .nav-link svg {
    transform: rotate(-180deg);
}

header .main-header .dropdown-menu {
    position: absolute;
    display: block;
    top: 100%;
    border: none;
    background-color: #F5F3E7;
    transition: all 0.4s;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

header .main-header .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    
}

header .main-header .dropdown-menu li {
    position: relative;
}

header .main-header .dropdown-menu li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: #003d20;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

header .main-header .dropdown-menu li:hover::before {
    height: 100%;
    opacity: 1;
    visibility: visible;
    
}

header .main-header .dropdown-menu li a {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    transition: all 0.4s;
    background-color: transparent;
    transition: all 0.4s;
}

header .main-header .dropdown-menu li:hover a {
    transform: translateX(5px);
    color: #003d20;
        background-color: #D6A229;

}

header .header-btn {
    display: inline-flex;
    align-items: center;
    height: 100%;
}
header .header-btn a {
    padding: 6px 20px;
    display: inline-block;
    background-color: #003d20;
    color: #F5F3E7;
    border-radius: 50px;
    font-size: 18px;
    margin-left: 10px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s;
}

header .header-btn a:hover {
    background-color: #000;
    color: #fff;
}


@media (max-width:1200px) {
    header .main-header .nav-link {
        padding: 10px 8px !important;
        font-size: 16px;
    }

    header .header-btn a {
        padding: 6px 12px;
        font-size: 16px;
    }
}

@media (max-width:568px){
    header .top-header .left {
        text-align: center;
    }
    header .top-header .right {
    text-align: center;
}

    header .header-btn a {
    padding: 6px 14px;
    font-size: 16px;
    margin-left: 0;
    font-weight: 600;
}
header .main-header .navbar-brand {
    padding: 0;
    margin: 0;
}
header .main-header .navbar-brand img {
    width: 120px;
    /* height: 120px; */
    padding: 10px;
    /* border-radius: 50%; */
    background-color: #fff;
}
}


header .mobile-header .offcanvas {
    background-color: #F5F3E7;
    
}

header .mobile-header .offcanvas .brand {
    text-align: center;
    margin-top: 14px;
}

header .mobile-header .offcanvas .brand img {
    width: 120px;
}

header .mobile-header .offcanvas .btn-close {
    position: absolute;
    top: 4px;
    right: 25px;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
}

header .mobile-header .offcanvas .btn-close svg {
    width: 24px;
    height: 24px;
    padding: 6px;
    border-radius: 50%;
    background-color: #003d20;
    color: #fff;
}

header .mobile-header .offcanvas .navbar-nav {
    display: block;
    width: 100%;
}

header .mobile-header .offcanvas .nav-link {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

header .mobile-header .offcanvas .dropdown-menu {
    border-radius: 0;
    border: none;
    background-color: #fff;
}

header .mobile-header .offcanvas .dropdown-item {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.4s;
}

header .mobile-header .offcanvas .dropdown-item:hover {
    background-color: #003d20;
    color: #F5F3E7;
}