/* ------------------------------ */
/* ----------- Header ----------- */
/* ------------------------------ */

header {
    min-height: var(--height-header); 
}
 
.site_header {
    position: relative;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    background-color: var(--brand-white);
    box-shadow: 0 2px 12px 0 rgba(36,50,66,.075);
    -webkit-transition: top var(--transition-2);
    -o-transition: top var(--transition-2);
    transition: top var(--transition-2);
}
 
.site_header__inside {
    width: 100%;
}
 
.site_header__row {
     margin-left: 0;
     margin-right: 0;
}

.site_logo {
    line-height: 1;
}
   
.site_logo a {
     display: inline-block;
}


/* Navigation */
.site_nav li {
    display: inline-block;
    margin-right: 35px;
}

.site_nav li:last-child {
    margin-right: 0;
}

.site_nav li a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
}

.site_nav li a::before, .site_nav li a::after {
    content: "";
    position: absolute;
    width: 0;
}

.site_nav li a::before {
    height: 2px;
    bottom: 0px;
    left: 0;
    background-color: rgba(34, 60, 88, .1);
    transition: width .5s;
}

.site_nav li a::after {
    bottom: -40px;
    left: 50%;
    margin-left: -10px;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--brand-color);
    opacity: 0;
    transition: .5s;
    transition-delay: unset;
}

.site_nav li.nav__item--active a::before {
    background-color: var(--brand-color);
}

.no-touchevents .site_nav li:not(.nav__item--active) a:hover::before, .no-touchevents .site_nav li.nav__item--active a::before {
    width: 100%;
}



/* ------------------------------ */
/* -------- Media Queries ------- */
/* ------------------------------ */


@media all and (min-width: 768px) {



}


@media all and (max-width: 1399.98px) and (min-width: 1240px) {



}


@media all and (max-width: 1239.98px) {



}


@media all and (max-width: 991.98px) {



}


@media all and (max-width: 767.98px) {



}