﻿.header {
    height: 70px;
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 1;
}

.header-inner {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .navs {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .header .navs a {
        color: #111111;
        text-decoration: none;
    }

        .header .navs a:hover {
            text-decoration: none;
            color: #111111;
        }

        .header .navs a.active {
            color: #111111;
            text-decoration: none;
        }

@media (max-width: 1400px) {
    .header .navs a {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .header .navs a {
        margin: 13px 0;
    }
}

@media (max-width: 768px) {
    .header .navs a {
        font-size: 14px;
    }
}

