.logo-white {
    display: block;
}

.logo-black {
    display: none;
}

.shadow-yp {
    box-shadow: 0px 4px 10px 0px rgb(0 0 0 / 7%);
}

.shadow-yp .logo-white {
    display: none;
}

.shadow-yp .logo-black {
    display: block;
}

.header li a {
    transition-duration: 0.2s;
    border-top: 4px solid transparent;
}

.header li a:hover {
    border-top: 4px solid #77b233;
    color: #77b233;
}

.header li {
    display: flex;
    justify-content: flex-end;
}

#Navbar li a {
    padding: 10px 0;
    display: block;
    transition: 0.1s;
}

#Navbar li a:hover {
    color: var(--main-color);
}

.header-nav {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 1, 0.8) -15%,
            rgba(4, 4, 4, 0.9));
    transition: transform 0.75s cubic-bezier(0.8, 0, 0, 0.8),
        background-color 0.5s, font-size 0.5s linear;
}

.header-nav.down {
    transform: translate3d(0, -100%, 0);
}

.w-8 {
    width: 2rem
        /* 32px */
    ;
}

.h-8 {
    height: 2rem
        /* 32px */
    ;
}

.font-semibold {
    font-weight: 600;
}

.menu-svg {
    display: block;
}

.close-svg {
    display: none;
}

.is-closed .menu-svg {
    display: none;
}

.is-closed .close-svg {
    display: block;
}

.menu {
    height: calc(100vh - 3rem);
    transform: translateX(100%);
    transition: 0.2s;
}

.menu.is-show {
    transform: translateX(0);
}

.flex-1 {
    flex: 1 1 0%;
}

.sticky {
    position: sticky;
}

.w-4 {
    width: 1rem
        /* 16px */
    ;
}

* {
    outline: none;
}

@media (min-width: 1024px) {
    .lg\:w-7\/12 {
        width: 58.333333%;
    }
}

.accordion {
    width: 100%;
    padding: 20px 0 20px;
    background-color: transparent;
}

.accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px 0;
    color: #ffffff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li:last-child .link {
    border-bottom: 0;
}

.accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 10px;
    color: #ffffff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 11px;
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.submenu {
    display: none;
    background: #303030;
    background-color: transparent;
    font-size: 13px;
}

.submenu a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    padding: 12px;
    padding-left: 36px;

    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.footer a:hover {
    text-decoration: underline;
}

.pb-6 {
    padding-bottom: 1.5rem
        /* 24px */
    ;
}