/* Logo size fix for new header logo */
.logo svg {
    width: 120px !important;
    height: 120px !important;
}

/* Larger logo for desktop */
@media screen and (min-width: 920px) {
    .logo svg {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Allow header animation to scale logo on scroll */
header.active .logo {
    transform: translateX(-50%) translateY(-50%) scale(0.55) !important;
    margin-top: 15px !important;
}

/* Fix logo positioning at 1160px and below when header is active */
@media screen and (max-width: 1160px) {
    header.active .logo {
        transform: translateY(-50%) scale(0.55) !important;
        left: 20px !important;
        margin-top: 15px !important;
        height: 90px !important;
        width: 90px !important;
    }
}
