/**
 * Custom
 */
:root {
    --custom-primary-color: #9418ba;
    --custom-secondary-color: #f1c40f;
}

/**
 * OverWrite
 */
a:hover {
  color: var(--custom-primary-color);
}

/**
 * Custom
 */
.header-logo-link span {
    font-size: 16px;
    font-weight: 300;
    line-height: 14px;
}
.header-logo-link span b {
    font-weight: 600;
    letter-spacing: .75px;
}
.header-logo-link span i {
    font-weight: 800;
    letter-spacing: 2px;
    
    font-size: 26px;
    line-height: 24px;
}
.header-logo-link svg {
    margin: 3px 0 0 10px;
}
.header-logo-link:hover {
    color: var(--custom-secondary-color);
}
.header-logo-link:hover b {
    color: #000000;
}
.header-logo-link:hover i {
    color: var(--custom-primary-color);
}

.custom-header-button b small {
    color: var(--custom-primary-color);
}
.custom-header-button:hover b em {
    color: var(--custom-primary-color);
}
.custom-header-button:hover b i {
    color: var(--custom-secondary-color);
}

@media (max-width: 1480px) {
    #menu-primary-menu > li > a > span {
        display: none ! important;
    }
    .custom-header-button i {
        position: static;
        left: auto;
        top: auto;

        font-size: 1em;
        color: #000;
        opacity: 1;
        transform: translate(0,0);
    }
    .custom-header-button:hover i {
        transform: translate(0,0);
    }
}
@media (max-width: 991px) {
    .custom-header-button {
        display: none;
    }
}
@media (max-width: 767px) {
    #menu-primary-menu {
        display: none;
    }
    .site-search > .form-container {
        width: calc( 100% + 2rem );
        margin: -7px -3.75rem 0 -3.75rem ! important;
        padding: .05em 0 .05em 3.75rem ! important;
    }
}
