header.header_big .logo a img {
    max-height: 80px;
}

header.header_big .header__top .form-inline {
    padding: 23px 0;
}

header.header_big .header__top .logo {
    padding-top: 5px;
    padding-bottom: 5px;
}

header.header_big .bg-dark {
    background: #fff !important;
}

header.header_big .logo--default {
    margin-top: 20px;
}

header.header_big .logo.logo--default a img {
    max-height: 45px;
    height: 45px;
}

/* Custom top header scrolled animation */
.custom-top-header::after {
    border-bottom: 2px solid var(--primary-color);
    width: 0%;
    left: 0;
    right: 0;
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    margin: 0 auto;
    -moz-transform-style: preserve-3d;
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -ms-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -ms-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.scrolled .custom-top-header::after {
    width: 100%;
}