body {
    color: #000;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: none;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-origin: content-box;
    background-position: top;
    z-index: 999;
    transition: background-size 0.3s ease;
}


.logo-container img {
    display: block;
    width: 100%;
    height: auto;
}

.logo {
    display: none;
}

.nav-btn {
    width: 30px;
    height: 30px;
}

.nav-btn img {
    width: 30px;
    height: 30px;
}

.nav-container .contact-item {
    height: 40px;
    background: #5856ff;
    line-height: 40px;
    border-radius: 10px;
    font-weight: 700;
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-origin: content-box;
    background-position: bottom;

    transition: background-size 0.3s ease;
}

#footer {
    width: 100%;
    height: auto;
    background-color: #00613b;
}

.footer-bg {
    width: 100%;
    background-image: url(../images/footer-bg.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-container {

    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.contact-left h2 {
    line-height: 1.2;
}



.contact-btn {
    width: 200px;
    height: 120px;
    background-color: #ffff;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    align-content: space-between;
    cursor: pointer;
    background-image: linear-gradient(#00A162, #00A162);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-origin: content-box;
    background-position: bottom;
    transition: background-size 0.3s ease;
    border-radius: 10px;
}

.button-box {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 15px;
}

.button-box_arrow {
    justify-content: center;
    align-items: center;
    width: 1.875em;
    height: 1.875em;
    transition-property: transform;
    transition-duration: .5s;
    transition-timing-function: ease;
    display: flex;
    inset: 1em 1em auto auto;

}

.all-text {
    width: 100%;
    padding: 15px;
}

.contact-btn .button-box_arrow {
    color: #000;
}

.contact-btn .button-box_arrow .c-arrow {
    fill: #fff;
}

.contact-btn:hover {
    background-size: 100% 100%;
}

.contact-btn:hover .all-text {
    color: #fff;
}

.contact-btn:hover .button-box_arrow {
    transform: rotateZ(45deg);
    color: #fff;
}

.contact-btn:hover .button-box_arrow .c-arrow {
    fill: #000;
}

.footer-logo-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo-icon .footer-logo {

    height: auto;
    margin-bottom: 10px;
}

.footer-icon {
    display: flex;
    flex-wrap: wrap;
}

.icon-item {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: #013a20;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-image: linear-gradient(#00A162, #00A162);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-origin: content-box;
    background-position: bottom;
    transition: background-size 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.icon-item img {
    width: 25px;
    height: 25px;
}

.icon-item:hover {
    background-size: 100% 100%;
}

.footer-bottom-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width : 767px) {
    .nav-container {
        height: 100%;
        align-items: center;
    }

    .nav-item {
        position: relative;
    }

    .nav-item .font-bold {
        display: block;
        height: 100%;
        line-height: 50px;
    }

    .contact-left {
        width: 30%;
        margin: 0 10% 0 30%;
    }

    .contact-right {
        width: 20%;
        display: flex;
        align-items: center;
    }

}

@media screen and (max-width : 767px) {
    .logo-container {
        height: 50px;
        display: flex;
        align-items: center;
    }

    .btn-container {
        width: 40px;
        height: 40px;
        background-color: #dfdfdf;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 5px;
        right: 20px;
    }

    .nav-container {
        width: 100%;
        height: 0px;
        overflow: hidden;
        background-color: #fff;
    }

    .nav-item {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
    }

    .contact-left {
        width: 100%;
    }

    .contact-right {
        width: 100%;
        display: flex;
        align-items: center;
    }


}


.h5-show {
    display: block;
    height: 290px !important;
    overflow: hidden;
    transition: all .5s linear;
}

.h5-show .logo-container {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h5-show .nav-container {
    display: block;
    height: 240px;
}

.h5-show .contact-item {
    width: 120px;
}


.actives {
    color: #1e9944 !important;
}


.header-white {
    background-size: 100% 100%;
}

.header-white .logo {
    display: block;
}

.header-white .logo-white {
    display: none;
}

.header-white .nav-container .font-bold {
    color: #000;
}

.nav-container .nav-item:hover .font-bold {
    color: #5856ff;
}

.contact-item:hover {
    background-size: 100% 100%;
}