/* index2 */

* {
    margin: 0;
    padding: 0;
    color: wheat;

}

img {
    padding: 0;
    margin: 0;
}

.big-banner {
    width: 100vw;
    border-bottom: 8px solid rgb(41, 41, 41);
    vertical-align: top;
}

.slidedown-pc-menu-bar2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    z-index: 999999;
    background-image: url('../img/bato2.png');
    background-size: cover;
    background-color: #3d3a39;
}

.top-logo {
    padding: 30px 80px;
    width: 200px;
}

.menu-list {
    display: flex;
    flex-direction: row;
    color: white;
}

.menu-list span {
    margin: 0px 30px;
    padding: 30px 0;
    border-bottom: 3px solid rgba(0, 0, 0, 0);
}

.menu-list span:hover {
    cursor: hand;
    border-bottom: 3px solid #cb291c;
}

.menu-left{
    display: flex;
    justify-content: center;
    align-items: center;

}
.mobile-menu-bar {
    width: 100vw;
    max-height: 30vw;
    z-index: 999999;
    background-image: url('../img/bato2.png');
    background-size: cover;
    background-color: #3d3a39;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.mobile-logo {
    width: 30vw;
    padding: 40px 0;
}

.mb-menu {
    position: absolute;
    right: 14px;
    top: 42px;
    width: 8vw;
    height: 8vw;
    opacity: 0.8;
}

.mobile-menu-list-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e4bb82;
    background-image: url('../img/bato.png');
    z-index: 999999;
}

.mobile-menu-list {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.mobile-menu-list span {
    padding: 20px 0;
    font-size: large;
}

.mobile-menu-list span a {
    color: white;
    text-decoration: none;
}

.mobile-close-icon {
    width: 6vw;
    padding-top: 50px;
}

.show-code {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.close-btn {
    position: absolute;
    right: -5px;
    top: 4px;
}

.close-btn img {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 100%;
}


/* index2 */