header{
    background-color: #fff;
    margin-bottom: 50px;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

header > .container {
    display: grid;
}

header .top_bar {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
}

.top_bar .row {
    display: flex;
}

.top_bar .row .account {
    display: none;
}

header .top_bar .top_bar_item {
    font-size: 14px;
    margin: 10px 0 auto 20px;
}

header .mid_bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 0 20px;
}

header .logo {
    order: 1;
    display: flex;
    justify-content: center;
}

header .logo img {
    max-width: 100%;
    height: 40px;
    display: block;
}

.language { 
    margin-left: 20px;
    border-radius: 14px;
}
.language span {
    color: white;
    margin-right: 10px;
}
.language_button {
    background: none;
    border: none;
    font-size: 18px;
    border-radius: 7px;
}
.language_button.active {
    background: var(--secondary-bg-color);
}

.banner {
    width: 100%;
    height: 134px;
    top: 80px;
    display: block;
    position: relative;
    background-image: url("../image/banner/banner_mobile.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    object-fit: contain;
    object-position: center center;
}

.banner button {
    padding: 2px 25px;
    margin: 0;
    font-size: 0.7rem;
    position: relative;
    top: 95px;
    left: 138px;
    z-index: 2;
    border-bottom-width: 4px;
}

.donwload_button {
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 23px;
    background: var(--color_red_light);
    border-radius: 50px;
    text-align: center;
    border: none;
    cursor: pointer;
    padding: 10px 45px;
    display: flex;
    margin: 0 auto;
    border-bottom: 8px solid var(--color_red_dark);
}

nav {
    display: flex;
    align-items: center;
}

.header-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: transparent;
    color: red;
    border: 2px solid rgb(255, 0, 0);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.header-button:hover {
    background-color: red;
    color: white;
}

.header-link {
    color: black;
    padding-top: 3px;
    font-size: 15px;
}

.header-link:hover {
    color: rgb(13, 0, 113);
    padding-top: 3px;
    font-size: 15px;
}