@charset "utf-8";
/* CSS Document */

.mainnav {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3498db;
    color: white;
    padding: 5px 0;
    border-bottom: 1px solid#4b99cd;
}

.logo1 {
    display: unset;
}

.logo1-hide,
.logohidde {
    display: none;
}

.mainmenu {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containmenu {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-left: auto;
    margin-right: 0;
}

.menuitem {
    display: block;
    padding: 8px 25px;
    transform-origin: 0 0;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
}

.menuitem:hover {
    transform: scale(1.2) translateX(-4px) translateY(-4px);
    -webkit-transform: scale(1.2) translateX(-4px) translateY(-4px);
    -moz-transform: scale(1.2) translateX(-4px) translateY(-4px);
    -ms-transform: scale(1.2) translateX(-4px) translateY(-4px);
    -o-transform: scale(1.2) translateX(-4px) translateY(-4px);
}

.mainfixed {
    z-index: 1000;
    position: fixed;
    margin: 0;
    top: 0;
    padding-top: 6px;
    box-shadow: 0px 5px 3px 0px rgba(55, 55, 55, 0.8);
    -webkit-box-shadow: 0px 5px 3px 0px rgba(55, 55, 55, 0.8);
    -moz-box-shadow: 0px 5px 3px 0px rgba(55, 55, 55, 0.8);
}

.menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 40px;
    padding: 4px 8px;
    box-sizing: border-box;
    cursor: pointer;
    background: #3498db;
    display: none;
    overflow: hidden;
    z-index: 999;
}

.menu-icon.active {
    width: 50px;
    height: 50px;
    border-width: 4px;
    border-radius: 50%;
    border-style: solid;
    background: #3498db;
    border-color: white;
    padding: 2px 2px;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    display: block;
    background: white;
    margin: 6px 0;
    transition: .5s;
}

.menu-icon.active span {
    position: absolute;
    background: white;
    width: calc(100% - 30%);
    top: calc(50% - 8px);
    margin-left: 4px;
}

.menu-icon.active span:nth-last-child(1) {
    transform: rotate(45deg);
}

.menu-icon.active span:nth-last-child(3) {
    transform: rotate(-45deg);
}

.menu-icon.active span:nth-last-child(2) {
    display: none;
}

@media screen and (max-width:2560px) {}


@media screen and (max-width:1920px) {}

@media screen and (max-width:1700px) {}

@media screen and (max-width:1400px) {}

@media screen and (max-width:10240px) {}

@media screen and (max-width:1024px) and (orientation:portrait) {
    .mainnav {
        width: 100%;
        max-width: 100%;
        height: unset;
    }

    .logo1 {
        display: none;
    }

    .mainmenu {
        width: 80%;
    }

    .containmenu {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
    }
}

@media screen and (max-width:800px) {}

@media screen and (max-width:600px) and (orientation:portrait) {

    .mainnav,
    .mainfixed {
        display: none;
        height: unset;
        position: fixed;
        width: 0;
        height: 0;
        max-width: 100%;
        top: 80px;
        z-index: 999;
        transition: 1s ease-in-out;
    }

    .menu-icon {
        display: block;
        z-index: 999;
    }

    .mainnav.active,
    .mainfixed.active {
        display: block;
        width: 100%;
        max-width: 100%;
        height: unset;
        position: fixed;
        top: 80px;
        z-index: 999;
        transition: 1s ease-in-out;
    }

    .mainmenu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 95%;
        max-width: 95%;
        transition: transform 1s linear;
    }

    .containmenu {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .menuitem .active {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 20px 20px;
        margin: 20px;
        font-size: 1.5em;
        line-height: 1.5;
        text-align: center;
        box-sizing: border-box;
        background-color: #3498db;
    }

}

@media screen and (max-width:500px) {
    .menuitem {
        margin: 8px 15px;
    }
}