.site-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 150%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: ease 0.2s all;
}

.site-overlay.active {
    visibility: visible;
    opacity: 1;
}

header .center {
    display: flex;
    align-items: center;
    justify-content: center;
}

header a {
    text-decoration: none;
    color: inherit;
    display: inline;
    display: block;
}

header a:hover {
}

header {
    box-shadow: 0px 0 3px 0px #615f5f;
    z-index: 2;
    position: relative;
}

header .menu-holder {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

header .menu-holder .two-logo {
    display: flex;
}

header .menu-holder .two-logo .logo {
    height: 80px;
}

header .menu-holder .menu {
    display: flex;
    color: #5a5a5a;
}

header .resp-menu-icon {
    display: none;
}

header .menu .item:hover {
    background-color: #33bfb3;
    color: #FFF !important;
}

header .menu .item.active a {
    color: #fff;
}

header .menu .item.active {
    background-color: #33bfb3;
}

header .menu-holder .menu .item {
    padding: 10px 15px;
    font-size: 15px;
    position: relative;
}

header .menu-holder .language {
    display: none;
}

header .menu-holder .language a.active {
    color: #ed1c24;
    background-color: #fff;
}

header .menu-holder .language span {
    padding: 0 5px;
    display: inline-block;
}

header .menu-holder .menu .item:hover .sub-menu {
    display: block;
}

header .menu-holder .menu .sub-menu {
    position: absolute;
    left: -5px;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    display: none;
    z-index: 2;
}

header .menu-holder .menu .item1 {
    padding: 5px;
    min-width: 110px;
    border-bottom: 1px solid #ddd;
}

header .menu-holder .menu .item1:last-of-type {
    border: 0;
}

header .resp {
    display: none;
}

@media (max-width: 1023px) {
    .site-overlay {
        display: block;
    }

    header a {
        color: #fff;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 3;
        background-color: #fff;
    }

    header .resp {
        display: block;
    }

    .header-space {
        padding-top: 90px;
    }

    header .menu-holder {
        position: relative;
        flex-direction: row-reverse;
        height: 90px;
    }

    header .menu-holder .menu {
        position: fixed;
        left: -1;
        display: block;
        top: 90px;
        z-index: 2;
        height: calc(100% - 90px);
        width: 291px;
        background-color: #3d3d3d;
        border-left: 0;
        border-top: 0;
        overflow-y: auto;
        transform: translateX(-290px);
        transition: ease 0.2s all;
    }

    header .menu-holder .menu.active {
        transform: translateZ(0);
    }

    header .resp-menu-icon {
        display: flex;
        background-color: #7fbe6b;
        color: #fff;
        width: 40px;
        height: 40px;
        font-size: 25px;
        cursor: pointer;
    }

    header .menu-holder .menu .item {
        padding: 10px;
        margin: 0;
        color: #fff;
        border-bottom: 1px solid #5c6469;
    }

    header .menu-holder .menu h4 {
        font-size: 21px;
        margin-bottom: 10px;
        width: 100%;
    }

    header .menu-holder .menu .social {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 0;
        margin-top: 10px;
    }

    header .menu-holder .menu .social a {
        margin-right: 15px;
    }

    header .menu-holder .menu .social .icon {
        width: 40px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #757575;
        border-radius: 30px;
        font-size: 20px;
    }

    header .icon.fa-facebook {
        background-color: #3b5998 !important;
    }
    header .icon.fa-google-plus {
        background-color: #e02f2f !important;
    }
    header .icon.fa-twitter {
        background-color: #55acee !important;
    }
    header .icon.fa-youtube {
        background-color: #e02f2f !important;
    }

    header .menu-holder .menu .item2 {
        border-bottom: 0;
    }

    header .menu-holder .menu .item2-holder {
        display: flex;
        align-items: center;
    }

    header .menu-holder .menu .item2 .icon {
        font-size: 31px;
        margin-right: 10px;
        color: #757575;
    }

    header .menu-holder .menu .item .sub-menu {
        position: initial;
        background-color: #757575;
        border: 0;
        transform: scaleY(0);
        transform-origin: top
    }

    header .menu-holder .menu .item1 {
        border-color: #5c6469
    }

    header .menu .item.active {
        background-color: #eee;
    }
}

@media (max-width: 767px) {
    header .menu-holder .menu {
        top: 90px;
        height: calc(100% - 90px);
    }
}
