/* =========================
   NAVBAR
========================== */
.navbar_Logo {
    position: fixed;
    z-index: 10;
    top: 20px;
    left: 20px;

    width: 160px;
    filter: drop-shadow(0px 0px 1px #000);
}

.navbar_mainLayout {
    position: fixed;
    z-index: 10;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);

    width: fit-content;
    min-width: 650px;
    max-width: 1200px;
    border-radius: 50px;
    padding: 10px;
    min-height: 60px;
    background: #1d1d1dd4;
    border: 1px solid #cccccc;
    box-shadow: inset 1px 1px 10px 5px #0b0b0b;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.navbar_menu {
    width: fit-content;
    min-width: 150px;
    min-height: 45px;
    padding: 5px 10px;
    padding-bottom: 10px;
    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Steamed", sans-serif;
    font-size: 25px;
    line-height: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4a4a4a;
    background: transparent;
    text-shadow:
        3px 3px 0 transparent,
        -3px 3px 0 transparent,
        3px -3px 0 transparent,
        -3px -3px 0 transparent,
        3px 0 0 transparent,
        -3px 0 0 transparent,
        0 3px 0 transparent,
        0 -3px 0 transparent;

    cursor: pointer;
    transition: all 0.5s;
}

.navbar_menu.xxl {
    width: fit-content;
    min-width: 220px;
}

.navbar_menu.xl {
    width: fit-content;
    min-width: 180px;
}

.navbar_menu:hover,
.navbar_menu.active {
    color: #ffffff;
    text-shadow:
        3px 3px 0 #633f13,
        -3px 3px 0 #633f13,
        3px -3px 0 #633f13,
        -3px -3px 0 #633f13,
        3px 0 0 #633f13,
        -3px 0 0 #633f13,
        0 3px 0 #633f13,
        0 -3px 0 #633f13;

    background: #fed250;
    border: 2px solid #633f13;
    box-shadow:
        inset 1px -2px 1px 1px #d7a81a,
        inset 2px 2px 1px 1px #ffffff80;
}

.navbar_soicalMainLayout {
    position: fixed;
    z-index: 1056;
    top: 30px;
    right: 20px;

    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.soical_menu {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: url("../images/button/nav_soical.png");
    background-position: center;
    background-size: cover;

    cursor: pointer;
    transition: all 0.5s;
}

.soical_menu img {
    width: 40px;
    height: 40px;
    padding-bottom: 5px;

    filter: drop-shadow(0px 0px 0px #633f13) drop-shadow(1px 1px 2px #000000a9);
}

.soical_menu:hover {
    box-shadow: 0px 0px 10px #ffbb00d8;
}

.offcanvas.offcanvas-top {
    z-index: 1057;
}

.lang-switcher {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 5px;
}

.lang-dropdown.show {
    display: flex;
    margin-top: 5px;
}

.langMobileBtn.active {
    box-shadow: 0px 0px 10px #ffbb00d8;
}

/* =========================
   COOKIE FOOTER BAR
========================== */
.cookieMainLayout {
    width: 100%;
    max-width: 1200px;
    min-height: 100px;
    border-radius: 20px;
    padding: 20px;

    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    background: #1d1d1de5;
    border: 1px solid #cccccc;
    box-shadow: inset 1px 1px 10px 5px #0b0b0bde;

    display: flex;
    align-items: center;
    gap: 50px;
}

.cookie_title {
    color: #fff;
    text-shadow:
        3px 3px 0 #633f13,
        -3px 3px 0 #633f13,
        3px -3px 0 #633f13,
        -3px -3px 0 #633f13,
        3px 0 0 #633f13,
        -3px 0 0 #633f13,
        0 3px 0 #633f13,
        0 -3px 0 #633f13;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 800;
    line-height: 30px;
    font-family: "PSL345pro", sans-serif;
    letter-spacing: 2px;
}

.cookie_titleBtn {
    color: #fff;
    text-shadow:
        2px 2px 0 #633f13,
        -2px 2px 0 #633f13,
        2px -2px 0 #633f13,
        -2px -2px 0 #633f13,
        2px 0 0 #633f13,
        -2px 0 0 #633f13,
        0 2px 0 #633f13,
        0 -2px 0 #633f13;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 800;
    line-height: 25px;
    font-family: "PSL345pro", sans-serif;
    letter-spacing: 2px;
}

.cookie_link {
    color: #fff;
    width: 120px;
    min-width: 120px;

    transition: all 0.5s;
}

.cookie_link:hover {
    color: #fed250;
}

.cookieMainLayout {
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.cookieMainLayout.hide {
    opacity: 0;
    visibility: hidden;
}


/* =========================
   FOOTER MAIN
========================== */
.footerMainLayout {
    width: 100%;
    min-height: 150px;
    background: #000;
    padding: 20px;
    gap: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer_socialLayout {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px;
    font-size: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    color: #fff;
}

.footer_socialLayout.facebook {
    background: #315aaf;
}

.footer_socialLayout.youtube {
    background: #a12323;
}

.footer_socialLayout.discord {
    background: #3e46ac;
}

.footer_logo {
    width: 200px;
}

.footer_link {
    color: #c7c7c7;
    transition: all 0.5s;
}

.footer_linkHr {
    width: 2px;
    height: 20px;
    background: #c7c7c7;
    margin: 0 10px;
}

.footer_link:hover {
    color: #fff;
    transition: all 0.5s;
}

/* =========================
   Popup Button
========================== */
.popupButton img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popupButton {
    position: fixed;
    z-index: 10;
    width: 180px;
    transition: all .5s;
}

.popupButton.first {
    bottom: 120px;
    right: 60px;
}