.pc-none {
    display: none;
}

.header-parent {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 60px;
    position: absolute;
    z-index: 4;
    background: white;
}

.header-content-left {
    width: 20vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ac1821;
    color: white;
}

.header-content-center {
    height: 100%;
    display: flex;
    align-items: center;
    width: 62vw;
}

.header-content-center img {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4vw;
}

.header-content-right2 {
    width: 20vw;
    height: 100%;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-hr2,
.header-hr2::before,
.header-hr2::after {
    content: '';
    height: 0.1vw;
    max-height: 2px;
    width: 6vw;
    max-width: 100px;
    background-color: black;
    position: absolute;
    transform-origin: 50% 50%;
}

.header-hr2::after {
    top: 2vw;
    right: 0%;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.header-hr2::before {
    top: -2vw;
    right: 0%;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.header-hr2.animate {
    background-color: transparent;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-hr2.animate::before {
    top: 0 !important;
    transform: rotate( -45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.header-hr2.animate::after {
    top: 0 !important;
    transform: rotate( 45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navigation-menu2 {
    width: 100%;
    height: max-content;
    position: absolute;
    background: #ac1821;
    z-index: 3;
    top: -160vw;
    padding: 6vw 0px;
    bottom: 0%;
    display: flex;
    flex-direction: column;
    transition: all 2000ms 300ms;
    box-shadow: 3px 4px 16px #191818a8;
    justify-content: space-evenly;
}

.is-active {
    top: 14vw !important;
    transition: all 2000ms 300ms;
}

.navigation-menu-content {
    width: 80%;
    margin: auto;
    height: max-content;
    /* min-height: 20vw; */
    display: block;
    justify-content: space-evenly;
    align-items: center;
    color: white;
    font-size: 20px;
    flex-direction: column;
    padding-bottom: 3vw;
}

.navigation-menu-content-1 {
    letter-spacing: 1px;
    text-align: left;
}

.navigation-menu-content-2,
.navigation-menu-content-3 {
    display: grid;
    flex-direction: row;
    width: 100%;
    height: max-content;
    margin: auto;
    grid-template-columns: auto auto;
    grid-gap: 3vw;
    letter-spacing: 1px;
    text-align: center;
    justify-items: start;
}

.navigation-menu-content-2 {
    padding: 5% 0%;
}

.navigation-menu-content-3 {
    padding-top: 5%;
}

.navigation-menu-sub-content {
    font-size: clamp(10px, 3vw, 15px);
    width: 37vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-left: 1px solid white;
    padding-left: 6vw;
    line-height: 100%;
}