#hero {
    height: 100vh;
    margin-top: unset;
}

#header #logo {
    transition: all 0.3s ease;
    transform: scale(0.8) translateY(-11px);
    left: 50%;
    margin-left: -102px;
}

/* #header #logo.isblack {
    opacity: 0;
}

#header #logo.isblack.open {
    opacity: 1;
} */

#header.is_top #logo {
    transform: unset;
}

.logo {
    z-index: 1;
}

.myicons1 i {
    transition: all 0.3s ease;
}

.myicons1 i:hover {
    transform: translateY(-5px);
}

/* --------------------------[ Menu ]----------------------------- */

.hunnibal-nemu,
.h-continer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    transition: all 0.3s ease;
}

.hunnibal-nemu {
    transform: scale(1.4);
    display: none;
    opacity: 0;
}

.hunnibal-nemu-open {
    opacity: 1;
    transform: scale(1);
}

.h-continer {
    display: flex;
}

.h-sec {
    padding: 20px;
    padding-top: 100px;
    box-sizing: border-box;
}

.h-sec-left {
    position: relative;
    width: 50%;
    padding-right: 40px;
    overflow: hidden;
    background-color: #483769;
}

.h-sec-right {
    width: 50%;
    background-color: #ecb04a;
    text-align: center;
    padding-top: 240px;
}

.h-sec-over {
    opacity: 0;
    position: absolute;
    top: 0;
    left: unset;
    right: 0;
    bottom: 0;
    width: 50%;
    /* background-color: #f7f7f7; */
    transform: translateX(-50px);
    transition: all 0.3s ease;
}

.h-sec-over-show {
    opacity: 1;
    transform: translateX(0px) !important;
}

.drop-down ul {
    display: none;
}

.h-sec-left ul {
    list-style: none;
    padding: 0;
}

.h-sec-over ul {
    margin-top: 30px;
}

.hunnibal-nemu li {
    margin: 14px 0;
}

.hunnibal-nemu a {
    margin: 14px 0;
    color: #00bda7;
    font-weight: bold;
}

.hunnibal-nemu .h-sec-over b {
    font-size: 1.5em;
}

.hunnibal-nemu .h-sec-over span {
    display: none;
    cursor: pointer;
    margin-bottom: 18px;
}

/* --------------------------[ Icone ]----------------------------- */
.hunnibal-nemu-icon {
    z-index: 1;
    position: fixed;
    cursor: pointer;
}

.hunnibal-nemu-icon .icon {
    display: inline-block;
    vertical-align: middle;
}

.hunnibal-nemu-icon .icon i {
    background-color: #777772;
    width: 32px;
    display: block;
    height: 3px;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.hunnibal-nemu-icon .title {
    display: inline-block;
    vertical-align: middle;
    margin: 14px;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 18px;
}

.hunnibal-nemu-icon .h-open i:nth-child(1) {
    transform: translateY(8px) rotate(405deg);
}

.hunnibal-nemu-icon .h-open i:nth-child(2) {
    transform: scaleX(0);
}

.hunnibal-nemu-icon .h-open i:nth-child(3) {
    transform: translateY(-10px) rotate(-405deg);
}

/* --------------------------[ Search ]----------------------------- */
.hunnibal-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #483769;
    padding-top: 130px;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.hunnibal-search #search {
    border: 0;
    width: 50%;
    padding: 12px;
    border-radius: 20px;
    vertical-align: middle;
}

.hunnibal-search #search:active {
    border: 0;
}

.hunnibal-search button {
    background: unset;
    border: 0;
    transition: all 0.3s ease;
}

.hunnibal-search button:hover {
    transform: scale(1.2);
}

.hunnibal-search button i {
    font-size: 2em;
    vertical-align: middle;
    color: #ffffff;
}

.hunnibal-search .h-close {
    position: absolute;
    /* top: 20px; */
    /* right: 86px; */
    height: 33px;
    cursor: pointer;
}

.hunnibal-search .h-close i {
    background-color: #ffffff;
    width: 28px;
    display: block;
    height: 3px;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.hunnibal-search .h-close i:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hunnibal-search .h-close i:nth-child(2) {
    transform: translateY(0px) rotate(-45deg);
}

/* --------------------------[ Mobile ]----------------------------- */
@media (max-width: 768px) {

    #header.is_top #logo,
    #header #logo {
        transform: translateY(8px) scale(0.7) !important;
    }

    .hunnibal-nemu-icon .icon {
        top: -26px;
        position: absolute;
    }

    .h-sec-left {
        width: 100%;
    }

    .h-sec-over {
        width: 100%;
        left: 100%;
        padding-right: 40px;
    }

    .h-sec-over-show {
        left: 41%;
    }

    .h-sec-right {
        display: none;
    }

    .hunnibal-nemu-icon .title {
        display: none;
    }

    .myicons1 {
        right: 8px;
        top: -20px !important;
    }

    .lang {
        right: unset;
        left: 62px;
    }

    .hunnibal-nemu .h-sec-over span {
        display: block;
    }
}