.header {
    width: 100%;
    height: 80px;
    left: 0px;
    top: 0px;
    background-color: #fff;
    z-index: 99;

}

.header .header-container {
    width: 100%;
    height: 80px;
}

.header-container img {
    width: 140px;
    height: auto;
}


.header-nav .header-nav-ul-li>a {
    line-height: 80px;
}


.header-nav-Languages .Languages-nav {
    position: absolute;
    width: 120px;
    right: 0;
    top: 80px;
    background-color: #000000;
}

.header-nav-Languages {
    height: 80px;
}

.header-nav-Languages .icon-Languages {
    transition: all 0.5s ease;
    font-size: 22px;
}

.header-nav-Languages .icon-indicate {
    transition: all 0.5s ease;
    font-size: 18px;
    color: #b61a37;
}

.header-nav-Languages:hover .icon-Languages {
    color: #b61a37;
}

.header-nav-Languages:hover .icon-indicate {
    transform: rotate(180deg);
}

.header-nav-Languages:hover .Languages-nav {
    display: block;
}

.menu-btn {
    display: none;
}

.header-down-nav {
    display: none;
}

.footer-container .copyright {
    line-height: 1.5;
}

.footer-contact .footer-contact-btn a {
    background-color: #a91833;
    border-color: #a91833;
    border-radius: 50px;
    text-align: center;
    font-size: 1.125rem;
    max-width: 200px;
}


@media (max-width:830px) {
    .header {
        width: 100%;
        height: 80px;
        transition: background 0.5s ease-in-out;
    }

    .header .header-container {
        width: 100%;
        height: 80px;
    }

    .header-container img {
        width: 150px;
        height: auto;
    }

    .header-nav {
        display: none;
    }

    .header-nav-Languages {
        display: none !important;
    }

    .menu-btn-open {
        display: block;
    }

    .menu-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }


    .menu-btn-open .icon {
        font-size: 30px;

    }


    .menu-btn-close {
        display: none;
    }

    .menu-btn-close .icon {
        font-size: 21px;
    }

    .header-down-nav {
        width: 100%;
        height: 0px;
        overflow: hidden;
        background-color: #fff;
        border-top: 1px solid #16161b14;
        transition: height 0.5s ease-in-out;
        z-index: 99;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .header-down-nav-ul>li {
        height: 60px;
        line-height: 60px;
        width: 100%;
        border-bottom: 1px solid #16161b14;

    }

    .mobile-nav-back-btn {
        height: 60px;
        line-height: 60px;
        width: 100%;
        border-bottom: 1px solid #16161b14;

    }

    .mobile-nav ul li {
        height: 60px;
        line-height: 60px;
        width: 100%;
        border-bottom: 1px solid #16161b14;

    }

    .header-down-Languages {
        height: 60px;
        line-height: 60px;
        width: 100%;
        border-top: 1px solid #16161b14;
    }

    .header-down-Languages .icon {
        font-size: 22px;
    }


    .mobile-nav {
        transition: transform 300ms cubic-bezier(0, 0, 0.2, 1) 0ms;
        background-color: #fff;
        transform: translateX(100%);
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 99;
    }

    .active {
        background: #fff;
    }

    .active .menu-btn-open {
        display: none;
    }

    .active .menu-btn-close {
        display: flex;
    }

    .active .header-down-nav {
        height: calc(100vh - 80px);
    }

    .mobile-nav.is-open {
        transform: translateX(0);
    }
}