@media only screen and (min-width: 1024px) {
	.page-wrapper {
		display: flex;
    	flex-direction: column;
    	min-height: 100%;
    	padding-left: 320px;
    	width: unset;
    	z-index: 99;
	}
	#header .magehq-menu {
		position: fixed;
    	left: 0;
    	top: 42px;
	}
	.left-vertical-menu {
		width: 320px;
	}
	.magehq-menu .logo-menu {
		width: 320px;
	}
	.megamenu-topline {
		    display: flex;
	    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	    flex-wrap: wrap;
	    align-items: center;
	    width: 320px;
	}
	.switchers {
		border-right: 1px solid rgba(0, 0, 0, 0.12);
	    width: 45%;
	    padding: 7px 0;
	    text-align: center;
	    min-height: 38px;
	}
}
.hyva-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.hyva-features__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
}

/* Divider */
.hyva-features__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0%;
    height: 100%;
    width: 1px;
    background: #e5e7eb;
}

/* Icon */
.hyva-features__icon svg {
    width: 28px;
    height: 28px;
    stroke: #000;
}

/* Text */
.hyva-features__text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .hyva-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hyva-features__item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hyva-features {
        grid-template-columns: 1fr;
    }

    .hyva-features__item::after {
        display: none;
    }
}
.hyva-footer {
    background: #3f7f33;
    padding: 60px 40px;
    color: #fff;
}

.hyva-footer__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* LEFT */
.hyva-footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.hyva-footer__title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hyva-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hyva-footer__col li {
    margin-bottom: 8px;
}

.hyva-footer__col a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.hyva-footer__col a:hover {
    text-decoration: underline;
}

/* CONTACT */
.hyva-footer__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 10px;
}

.hyva-footer__icon svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
}

/* SUBSCRIBE */
.hyva-footer__subscribe {
    background: #fff;
    color: #000;
    padding: 32px;
}

.hyva-footer__subscribe h3 {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hyva-footer__form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #000;
}

.hyva-footer__form input {
    flex: 1;
    border: none;
    padding: 10px 0;
    font-size: 14px;
    outline: none;
}

.hyva-footer__form button {
    background: #50af51;
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    color:#fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hyva-footer__inner {
        grid-template-columns: 1fr;
    }

    .hyva-footer__subscribe {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hyva-footer__cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hyva-footer__cols {
        grid-template-columns: 1fr;
    }
}
