.logo-container img {
    width: 100%;
}

.container {
    max-width: 1200px !important;
}

.mouseenter {
    animation: mouse-enter 0.5s ease-out forwards;
}

@keyframes mouse-enter {
    from {
        transform: rotate(0px);
    }

    to {
        transform: rotate(180deg);
    }
}

.mouseleave {
    animation: mouse-leave 0.5s ease-out forwards;
}

@keyframes mouse-leave {
    from {
        transform: rotate(180deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.language-img {
    width: 30px;
    height: 30px;
}

.language-nav {
    position: absolute;
    right: -40px;
    top: 60px;
    min-width: 140px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: height 0.5s linear;
}

.language-nav li {
    height: 40px;
    line-height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff !important;
}

.language-nav li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 20px !important;
}

.language-container:hover .language-nav {
    height: 80px;
    opacity: 1;
}

.language-nav li:hover {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

.scrollShow {
    animation: scroll-show 0.5s ease-out forwards;
}

@keyframes scroll-show {
    from {
        background-color: none;
    }

    to {
        background-color: #282828;
    }
}

.scrollHidden {
    animation: scroll-hidden 0.5s ease-out forwards;
}

@keyframes scroll-hidden {
    from {
        background-color: #282828;
    }

    to {
        background-color: none;
    }
}

.footer-nav {
    background: linear-gradient(110deg, #238ad4, #3a5984);
}

.footer-nav .container {
    justify-content: space-between;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
}



.footer-nav-links div a:hover {
    text-decoration: underline;
}


.footer-copyright {
    width: 100%;
    background-color: #212223;
}

@media screen and (min-width: 920px) {
    .header-container {
        width: 100%;
        height: 60px;
    }

    .logo-container {
        margin-left: 20px;
        width: 250px;
        height: auto;
    }

    .nav-container {
        height: 60px;
        line-height: 60px;
    }

    .language-container {
        margin-right: 40px;
        position: relative;
        height: 60px;
    }

    .nav-container .nav-item {
        display: block;
        position: relative;
        cursor: pointer;
    }

    .nav-container .nav-item>a {
        position: relative;
        display: block;
    }

    .nav-about {
        display: flex !important;
        align-items: center;
    }

    .nav-about img {
        width: 15px;
        height: 15px;
        margin-left: 10px;
    }

    .nav-icon {
        margin-left: 10px;
        width: 15px;
        height: 15px;
    }

    .nav-container .nav-item>a::after {
        content: "";
        width: 0px;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 45px;
        left: 0px;
    }

    .about-nav {
        position: absolute;
        right: -40px;
        top: 60px;
        min-width: 140px;
        height: 0px;
        overflow: hidden;
        opacity: 0;
        transition: height 0.5s linear;
    }

    .about-nav li {
        height: 40px;
        line-height: 40px;
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff !important;
    }

    .about-nav li a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0 20px !important;
    }

    .nav-language {
        display: none !important;
    }

    .nav-about:hover .about-nav {
        height: 80px;
        opacity: 1;
    }

    .about-nav li:hover {
        background-color: rgba(0, 0, 0, 0.4) !important;
    }

    .nav-container .nav-item:hover a::after {
        width: 100%;
    }

    .active::after {
        width: 100% !important;
    }
}

@media screen and (max-width: 920px) and (min-width: 767px) {
    .header-container {
        width: 100%;
        height: 60px;
    }

    .logo-container {
        margin-left: 20px;
        width: 180px;
        height: auto;
    }

    .nav-container {
        height: 60px;
        line-height: 60px;
        margin-left: 10px !important;
    }

    .language-container {
        position: relative;
        height: 60px;
    }

    .nav-container .nav-item {
        display: block;
        position: relative;
        cursor: pointer;
    }

    .nav-container .nav-item>a {
        position: relative;
        display: block;
    }

    .nav-about {
        display: flex !important;
        align-items: center;
    }

    .nav-about img {
        width: 15px;
        height: 15px;
        margin-left: 10px;
    }

    .nav-icon {
        margin-left: 10px;
        width: 15px;
        height: 15px;
    }

    .nav-container .nav-item>a::after {
        content: "";
        width: 0px;
        height: 2px;
        background-color: #fff;
        position: absolute;
        top: 45px;
        left: 0px;
    }

    .about-nav {
        position: absolute;
        right: -40px;
        top: 60px;
        min-width: 140px;
        height: 0px;
        overflow: hidden;
        opacity: 0;
        transition: height 0.5s linear;
    }

    .about-nav li {
        height: 40px;
        line-height: 40px;
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff !important;
    }

    .about-nav li a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0 20px !important;
    }

    .nav-language {
        display: none !important;
    }

    .nav-about:hover .about-nav {
        height: 80px;
        opacity: 1;
    }

    .about-nav li:hover {
        background-color: rgba(0, 0, 0, 0.4) !important;
    }

    .nav-container .nav-item:hover a::after {
        width: 100%;
    }

    .active::after {
        width: 100% !important;
    }
}

@media screen and (max-width: 767px) {
    .logo-container {
        margin-left: 10px;
        width: 200px;
        height: 60px;
        line-height: 60px;
        padding: 10px 0px;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .btn-container {
        width: 30px;
        height: 30px;
        border: 1px solid #fff;
        cursor: pointer;
        margin-right: 20px;
    }

    .btn-container img {
        display: block;
        width: 20px;
        height: 20px;
        margin: 5px auto;
        transform: rotate(90deg);
    }

    .nav-container {
        display: block;
        width: 100%;
        height: 0px;
        overflow: hidden;
        opacity: 0;
        transition: height 0.5s linear;
    }

    .nav-container .nav-item {
        display: block;
        cursor: pointer;
        line-height: 50px;
        transition: height;
    }

    .nav-container .nav-item>a {
        position: relative;
        display: block;
    }

    .nav-about {
        display: flex !important;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-about img {
        width: 15px;
        height: 15px;
        margin-left: 10px;
    }

    .nav-icon {
        margin-left: 10px;
        width: 15px;
        height: 15px;
    }

    .about-nav-container {
        width: 100%;
        height: 0px;
        overflow: hidden;
        opacity: 0;
        transition: height 0.5s linear;
    }

    .about-nav-container ul li {
        line-height: 40px;
    }

    .show {
        opacity: 1;
        padding: 10px;
        height: 370px;
        background: rgba(0, 0, 0, 0.7);
        box-sizing: border-box;
    }

    .active-show {
        opacity: 1;
        height: 80px;
        padding: 0 20px;
    }

    .active {
        color: #007acf;
    }
}

@media screen and (min-width: 1100px) {
    .line-split {
        width: 0;
        height: 100px;
        border-left: 2px solid #3565a4;
        border-right: 2px solid #6295d6;
    }

    .footer-nav-links div {
        margin: 0 10px;
        min-width: 120px;
    }
}

@media screen and (max-width: 1100px) {
    .line-split {
        display: none;
    }

    .footer-nav-links {
        margin-top: 20px;
    }

    .footer-nav-links div {

        width: 100%;
        margin: 10px auto;
    }

    .footer-nav-links div ul li {
        margin: 0 0 10px 10px;
        font-size: 16px !important;

    }
}