:root{
    --colorthea:#fff;
}
nav
{
    background: #14181c;
}
nav .sa-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}

nav .sa-logo img {
    width: 220px;
}

nav .sa-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav .sa-item {
    margin-left: 5rem;
}

nav .sa-item a {
    display: inline-block;
    font-size: 1.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.2rem;
    color: var(--colorthea);
    font-weight: 700;
}
nav .sa-item a:hover
{
    color: var(--xaRed);
}
nav .sa-item a:hover:before {
    right: 0;
}

nav .sa-item a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: -2px;
    background: var(--xaRed);
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.sa-active-menu {
    color: var(--xaRed) !important;
    position: relative;
    border-bottom: 2px solid var(--xaRed);
}

.sa-active-menu:hover:before {
    right: 100% !important;
}

menu .icon-nav {
    display: none;
}

.sa-change .sa-bar1 {
    -webkit-transform: rotate(-41deg) translate(-8px, 5px);
    transform: rotate(-41deg) translate(-8px, 5px)
}

.sa-change .sa-bar2 {
    opacity: 0;
}

.sa-change .sa-bar3 {
    -webkit-transform: rotate(40deg) translate(-8px, -7px);
    transform: rotate(40deg) translate(-8px, -7px);
}

@media only screen and (max-width: 1230px) {
    nav .sa-container {
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 1200px) {
    .sa-show-menu {
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 999;
        background: var(--xaListLink);
        flex-flow: column;
    }

    nav {
        padding: 0;
    }

    nav .sa-container {
        padding: 0;
    }

    nav .sa-item {
        margin-left: 0;
    }

    nav .sa-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 100;
        padding: 1.5rem;
    }

    nav .sa-logo img {
        width: 150px;
        border: none;
    }

    nav .sa-icon-nav {
        display: inline-block;
        cursor: pointer;
    }

    .sa-bar1, .sa-bar2, .sa-bar3 {
        width: 35px;
        height: 4px;
        background: var(--xaRed);
        margin: 0.6rem 0;
        transition: 0.4s;
    }

    nav .sa-container .sa-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        flex: 1;
        z-index: 999;
        overflow: auto;
    }

    nav .sa-container .sa-menu li {
        padding: 4rem 0;
    }

    .sa-active-menu-mb-t {
        background: var(--xaBlackTitle);
    }

    .sa-active-menu-mb-b {
        background: var(--xaListLink);
    }
}

@media only screen and (max-width: 768px) {
    nav .sa-container .sa-menu li {
        padding: 3rem 0;
        width: 100%;
        text-align: center;
    }
}



