header {
    z-index: 998;
    position: relative;
    width: 100%;
}

header.sticky-top .top-header {
    display: none;
}

header .top-header {
    background-color: #09422d;
    padding: 6px 0;
}

header .top-header .left a {
    color: #f9d600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 400;

}

header .top-header .left a:last-child {
    margin-left: 20px;
}

header .top-header .right {
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 6px;
}

header .top-header .right a {
    display: inline-block;
}

header .top-header .right svg {
    width: 16px;
    height: 16px;
    color: #f9d600;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 0.4s;
}

header .top-header .right svg:hover {
    background-color: #fff;
    color: #09422d;
}

header .main-header {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

header .main-header .navbar {
    padding: 0;
    align-items: center;
}

header .main-header .navbar-nav {
    height: 80px;
    padding: 0;
}

header .main-header .navbar-brand img {
    width: 200px;

}

header .main-header .navbar-toggler {
    box-shadow: none;
    outline: none;
    border: none;
}

header .main-header .navbar-toggler svg {
    width: 30px;
    height: 30px;
    color: #09422d;
}

header .main-header .nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

header .main-header .nav-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: #f9d600;
    transition: all 0.4s;
}

header .main-header .nav-link {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    color: #09422d;
    font-weight: 800;
    padding: 0 15px !important;
    font-size: 20px;
    transition: all 0.4s;

}

header .main-header .nav-item:hover::before {
    width: 100%;
}

header .main-header .nav-item:hover .nav-link {
    color: #09422d;
}

header .main-header .nav-link svg {
    width: 14px;
    height: 14px;
    color: #000;
    transition: all 0.4s;
}

header .main-header .nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

header .main-header .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
}

header .main-header .nav-item:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

header .main-header .dropdown-menu li {
    position: relative;
}

header .main-header .dropdown-menu a {
    font-size: 16px;
    color: #09422d;
    text-transform: uppercase;
    background-color: transparent;
    font-weight: 700;
    transition: all 0.4s;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    
}

header .main-header .dropdown-menu li:hover a {
    color: #f9d600;
    background-color: #09422d;

}

header .main-header .header-btn a {
    padding: 10px 20px;
    background-color: #09422d;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #f9d600;
    border-radius: 4px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    
}
header .main-header .header-btn a {

}

/* Keyframes for background blink */
@keyframes blinkBg {
    0% {
        background-color: #09422d;
    }

    50% {
        background-color: #0b6144;
    }

    100% {
        background-color: #0e7a56;
    }
}

header .main-header .header-btn a svg {
    animation: shakeIcon .5s infinite alternate;
}


@keyframes shakeIcon {

    0%,
    100% {
        transform: rotate(-6deg);
    }

    50% {

        transform: rotate(6deg);
    }
}


@media (max-width:1200px) {
    header .main-header .nav-link {

        padding: 0 10px !important;
        font-size: 16px;

    }

    header .main-header .header-btn a {
        padding: 6px 20px;
        background-color: #09422d;
        text-transform: uppercase;
        font-size: 16px;
    }

}


@media (max-width:568px) {
    header .top-header .left a:last-child {
        margin-left: 6px;
    }

    header .main-header .navbar-brand {
        margin: 0;
    }

    header .main-header .navbar-brand img {
        width: 180px;

    }

    header .main-header .header-btn {
        display: none;
    }
}


header .mobile-header .offcanvas {
    background: #000;
}

header .mobile-header .offcanvas .btn-close {
    box-shadow: none;
    opacity: 1;
}

header .mobile-header .offcanvas .btn-close svg {
    color: #09422d;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    padding: 10px;
    border-radius: 50%;
    background-color: #fff;
}

header .mobile-header .offcanvas .navbar-nav {
    display: block;
    width: 100%;
}

header .mobile-header .offcanvas .nav-link {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
header .mobile-header .offcanvas .dropdown-menu{
    border-radius: 0;
    background-color: #fff;
    margin-bottom: 20px;
    transition: display 0.4s ease-in-out;
}
header .mobile-header .offcanvas .dropdown-menu a{
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    background: transparent;
}

header .mobile-header .offcanvas .social-icon {
    text-align: center;
    margin-top: 30px;
}

header .mobile-header .offcanvas .social-icon p {
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

header .mobile-header .offcanvas .social-icon p::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #fff;
}

header .mobile-header .offcanvas .social-icon p span {
    padding: 10px 20px;
    background-color: #000;
    position: relative;
}

header .mobile-header .offcanvas .social-icon svg {
    color: #fff;
    margin-right: 6px;
    width: 20px;
    height: 20px;
}

header .mobile-header .offcanvas .social-icon a:last-child svg {
    margin-right: 0;
}