* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    background: #2C3039;
    position: relative;
    padding-bottom: 54px;
}

nav {
    width: 100%;
}

nav .navbar {
    background: #E41827;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}

nav .navbar a img {
    height: 30px;
}

nav .navbar .center {
    display: flex;
    align-items: center;
    gap: 16px;
}

nav .navbar .center a {
    color: white;
    text-decoration: none;
}

nav .navbar .center a .ri-account-circle-line {
    display: none;
}

nav .navbar .center a i {
    font-size: 24px;
}

nav .navbar .center a button {
    padding: 6px 16px;
    color: #E41827;
    border-radius: 8px;
    background: white;
    font-weight: bold;
    border: none;
    font-family: "Play", sans-serif;
}

nav .navbar .center a button:hover {
    opacity: .5;
}

nav .navbar .right {
    display: none;
}

nav .attention {
    display: none;
}

p.moving-attention {
    background: black;
    font-size: 21px;
    padding-block: 4px;
    color: white;
    text-shadow:
        -1px -1px 0 #FFBB00,
        1px -1px 0 #FFBB00,
        -1px 1px 0 #FFBB00,
        1px 1px 0 #FFBB00;
}

p.moving-attention a {
    text-decoration: none;
    color: white;
}

/* ANIMATION */
.moving-attention marquee {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    49% {
        opacity: 1;
        text-shadow:
            -2px -2px 0 #FFBB00,
            2px -2px 0 #FFBB00,
            -2px 2px 0 #FFBB00,
            2px 2px 0 #FFBB00;
    }

    50%,
    100% {
        opacity: 0.5;
        text-shadow:
            -1px -1px 0 #FFBB00,
            1px -1px 0 #FFBB00,
            -1px 1px 0 #FFBB00,
            1px 1px 0 #FFBB00;
    }
}

/* BOTTOM NAVIGATION */
section.bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: black;
    padding-block: 8px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

section.bottom-nav .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: white;
}

section.bottom-nav .item.active {
    color: #E41827;
    font-weight: bold;
}

section.bottom-nav .item i {
    font-size: 16px;
}

section.bottom-nav .item span {
    font-size: 12px;
}

footer {
    background: #1B1E25;
    color: #9CA0AB;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    align-items: center;
    justify-content: center;
}

footer a {
    color: white;
    text-decoration: none;
    font-family: "Play", sans-serif;
    text-decoration: underline;
}

footer img {
    height: 36px;
}

footer p {
    text-align: center;
    font-size: 12px;
    max-width: 700px;
}

footer .qlinks {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    width: 100%;
    justify-content: center;
}

@media(min-width: 768px) {
    nav {
        display: flex;
        justify-content: space-between;
        gap: 32px;
        align-items: center;
        position: absolute;
        top: 32px;
    }

    nav .navbar {
        padding: 0 16px;
        border-radius: 0 20px 20px 0;
        gap: 32px;
    }

    nav .navbar .center a .ri-account-circle-line {
        display: block;
    }

    nav .navbar .center a button {
        display: none;
    }

    nav .navbar .right {
        display: flex;
        gap: 16px;
        font-size: 14px;
    }

    nav .navbar .right .item {
        padding: 24px 16px;
        text-decoration: none;
        color: white;
    }

    nav .navbar .right .item:hover {
        opacity: .7;
    }

    nav .navbar .right .item.active {
        font-weight: bold;
        border-bottom: 2px solid white;
    }

    nav .attention {
        display: none;
        text-align: center;
        padding-right: 30px;
        font-family: "Play", sans-serif;
        color: white;
        text-shadow:
            -1px -1px 0 #FFBB00,
            1px -1px 0 #FFBB00,
            -1px 1px 0 #FFBB00,
            1px 1px 0 #FFBB00;
    }

    nav .attention a {
        text-decoration: none;
        color: white;
    }

    /* BOTTOM NAVIGATION */
    body {
        padding-bottom: 0;
    }

    section.bottom-nav {
        display: none;
    }
}

@media(min-width: 930px) {}

@media(min-width: 980px) {
    nav .navbar {
        padding: 0 48px;
    }
}

@media(min-width: 1094px) {
    .moving-attention {
        display: none;
    }

    nav .attention {
        display: block;
        animation: shine 1s infinite;
    }
}

@keyframes shine {

    0%,
    49% {
        opacity: 1;
        text-shadow:
            -1.1px -1.1px 0 #FFBB00,
            1.1px -1.1px 0 #FFBB00,
            -1.1px 1.1px 0 #FFBB00,
            1.1px 1.1px 0 #FFBB00;
    }

    50%,
    100% {
        opacity: 0.5;
        text-shadow:
            -1px -1px 0 #FFBB00,
            1px -1px 0 #FFBB00,
            -1px 1px 0 #FFBB00,
            1px 1px 0 #FFBB00;
    }
}

/* GOOGLE TRANNSLATOR */
nav .gt_container--hich1m .gt_switcher .gt_selected a {
    border: none !important;
    width: min-content !important;
}

nav .gt_container--hich1m .gt_switcher .gt_selected a:hover {
    background: transparent !important;
}

nav .gt_container--hich1m .gt_switcher .gt_selected {
    background: transparent !important;
}

nav .gt_container--hich1m .gt_switcher {
    width: 70px !important;
}

nav .gt_container--hich1m .gt_switcher .gt_selected a:after {
    color: white !important;
}

nav .gt_container--hich1m .gt_switcher .gt_option {
    position: absolute !important;
    right: 24px;
    top: 70px;
}

nav .gt_container--hich1m .gt_switcher a {
    font-size: 15px !important;
}

nav .gt_container--hich1m .gt_switcher .gt_selected {
    z-index: 1;
}

@media(min-width: 768px) {
    nav .gt_container--hich1m .gt_switcher .gt_option {
        right: auto;
        left: 270px;
    }
}

@media(min-width: 980px) {
    nav .gt_container--hich1m .gt_switcher .gt_option {
        right: auto;
        left: 300px;
    }
}