/* HEADER */
@media (max-width: 767px) {}
@media (max-width: 1199px) {}
@media (min-width: 768px) {}
@media (min-width: 1200px) {}
@media (min-width: 1440px) {}

.site-header {
    background-color: var(--white);
}
.site-header .header-top-wrapper {
    background-color: var(--brown);    
}
.site-header .header-top-wrapper .header-top-content {}
.site-header .nav-container {}
.site-header .nav-container .main-navigation {}
.site-header .nav-container .main-navigation .top-menu-wrapper {
    background-color: var(--brown);
}
.site-header .nav-container .main-navigation .top-menu {}
.site-header .top-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.site-header .top-menu ul li a {
    font-family: 'Roboto', sans-serif;
    color: var(--white);
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}
@media (max-width: 1199px) {
    .site-header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .site-header .header-top-wrapper {
        height: 32px;   
    }
    .site-header .header-top-wrapper .header-top-content {
        padding: 0 20px;
    }
    .site-header .top-menu ul {
        height: 32px;
    }
    .site-header .top-menu ul li {
        margin-right: 20px;
    }
    .site-header .top-menu ul li:last-child {
        margin-right: 0;
    }
    .site-header .top-menu ul li a {
        font-size: 12px;
        line-height: 14px;
    }
}
@media (min-width: 1200px) {
    .site-header .header-top-wrapper {
        height: 40px;   
    }
    .site-header .header-top-wrapper .header-top-content {
        padding: 0 40px;
    }
    .site-header .top-menu ul {
        height: 40px;
    }
    .site-header .top-menu ul li {
        margin-right: 32px;
    }
    .site-header .top-menu ul li:last-child {
        margin-right: 0;
    }
    .site-header .top-menu ul li a {
        font-size: 14px;
        line-height: 16px;
    }
}
@media (min-width: 1440px) {
   .site-header .header-top-wrapper .header-top-content {
       max-width: 1440px;
       margin: 0 auto;
    }
}



/* BREADCRUMBS ************************************/
/**************************************************/
@media (max-width: 1199px) {
    .breadcrumbs {
        display: none;
    }
}
@media (min-width: 1200px) {
    .breadcrumbs {
        display: block;
        max-width: 1290px;
        margin: 16px 0 24px 0;
    }
}

/**************************************************/
/* END BREADCRUMBS ********************************/
/**************************************************/

/* FROM OLD */
