/* Mega menu */
header .grandparent.kids-1 .header__grandparent__links {
    margin: 0;
    margin-right: 25px;
    border-radius: 0;
}

a.megamenu-item:hover {
  transform: translateY(4px);
  transition: all 0.3s;
}

a.megamenu-item:hover h5 {
  text-decoration: underline;
}

/* Newsletter subscription */
.newsletter-form .input-row:nth-of-type(2),
.newsletter-form .input-row:nth-of-type(3) {
    width: calc(50% - 5px);
    display: inline-block;
}

/* Footer background */
footer.footer-sections:before {
    opacity: 0.05;
}

/* Responsive fix for footer logos */
@media only screen and (max-width: 768px) {
    .logos-f {
        display: flex;
        flex-flow: row;
    }
    
    .main-logo {
        flex: 0 0 25%;
        width: 25%;
    }
    
    .footer_logos {
        flex: 0 0 75%;
        width: 75%;
        margin: 0;
    }
    
    .footer_logos > li {
        flex: 0 0 33.333%;
        width: 33.333%;
    }
}