a:hover,
button:hover,
input[type="submit"]:hover {
  transform: scale(1.1);
}

.menu-item > a[href="#"] {
    cursor: default;
}

.main-site-navigation li.menu-item-has-children {
  position: relative;
}

.site-header .header-container .main-site-navigation .sub-menu {
	opacity: 0;
    position: absolute;
    top: 5.5rem;
    background: #fff;
    padding: 1rem;
    z-index: -1;
    box-shadow: 0px 10px 20px #00000029;
    width: max-content;
	transition-property: opacity;
    direction: ltr;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    left: 0;
    /* width: 100%; */
}

.site-header .header-container .main-site-navigation > li:hover .sub-menu {
	opacity: 1;
	z-index: 10;
}

.site-header .header-container .main-site-navigation .sub-menu li a {
    display: block;
}

.main-site-navigation li a:hover {
    background-color: #025CA626;
}

.main-site-navigation li.menu-item-has-children a {
    padding-left: 30px;
}

.site-header .header-container .main-site-navigation .menu-item-has-children > a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 21px;
    transform: translateY(-50%);
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14'><path d='M22.0446 0.0664909L23.9994 2.00658L13.2738 12.5011C13.1019 12.6702 12.8977 12.8043 12.6731 12.8954C12.4484 12.9866 12.2076 13.0331 11.9646 13.0323C11.7216 13.0315 11.4812 12.9833 11.2571 12.8906C11.0331 12.7979 10.8298 12.6625 10.6591 12.4922L-0.000444762 1.92495L1.96756 2.42599e-05L11.9724 9.91812L22.0446 0.0664909Z'/></svg>") no-repeat center / contain;
    transition: transform .3s ease;
}

.site-footer {
    background-color: #0055A6;
    padding: 4.9rem 13.5rem 3.7rem 6.2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.column .title-wrapper {
    margin: 0;
    font-size: 4.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-site-navigation,
.our-brands-navigation,
.qanda-menu-navigation {
    color: #fff;
    font-size: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-site-navigation a,
.our-brands-navigation a,
.qanda-menu-navigation a {
	display: block;
}

.footer-site-navigation .sub-menu {
    display: none;
}

.column .content-wrapper {
    color: #fff;
    font-size: 2.4rem;
}

.popup {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;

    align-items: center;
    justify-content: center;
}

.popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.8);
}

.popup-inner {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: #000;
    aspect-ratio: 16 / 9;
    max-height: 90vh;
}

.product-popup-inner {
    background: #fff;
    padding: 7.6rem 8.9rem;
    max-width: unset;
    width: 100%;
    max-height: unset;
    aspect-ratio: unset;
    overflow: auto;
    height: 100%;
}

.youtube-popup-video,
.youtube-popup-video iframe {
    width: 100%;
    height: 100%;
}

.youtube-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
}

.product-popup-close {
    width: 46px;
    height: 62px;
}

.product-popup-close svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-popup-content .split-content {
/*     display: flex; */
    gap: 11.1rem;
    padding: 7.8rem 14.1rem 3rem;
}

.product-popup-content .split-content .col h2,
.product-popup-content .split-content .col .title-wrapper {
    font-size: 4rem;
    margin: 0;
    font-weight: 700;
    margin-bottom: 3rem;
}

.product-popup-content .split-content .col .description {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 10rem;
}

.product-popup-content .split-content .col .description ul {
	padding: 0 25px 0 0;
	list-style-type: disc;
}

.product-popup-content .split-content .col:first-child {
	float: left;
	margin: 10px;
}

.product-popup-content .split-content .col .product-image {
    width: 500px;
    height: 515px;
}

.product-popup-content .split-content .col .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-popup-content .split-content .col .product-features {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem 8rem;
}

.product-popup-content .split-content .col .product-features li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 9px 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.product-popup-content .split-content .col .product-features .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-popup-content .split-content .col .product-features li span {
    font-size: 3.2rem;
}

@media (max-width: 1600px) {
    .product-popup-content .split-content {
        padding: 0;
        padding-top: 3rem;
        gap: 5rem;
    }
}

@media (max-width: 1500px) {
    .site-footer {
        padding: 4rem;
    }
}

@media (max-width: 1300px) {
    .column .title-wrapper {
        font-size: 3rem;
    }

    .column .content-wrapper,
    .footer-site-navigation,
    .our-brands-navigation,
    .qanda-menu-navigation {
        font-size: 1.8rem;
    }

    .product-popup-inner {
        padding: 3rem;
    }

    .product-popup-content .split-content .col .product-features {
        gap: 1rem;
    }
}

@media (max-width: 1023px) {
    .mobile-menu-button {
        display: grid;
		gap: 6px;
        width: 25px;
    }

    .mobile-menu-button .line {
        width: 100%;
        height: 2px;
        background-color: #000;
    }

    .mobile-menu-wrapper.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-wrapper.active .mobile-navigation {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-wrapper.active .mobile-navigation li a {
        font-size: 2.4rem;
        padding: 8px 12px;
    }

    .mobile-menu-wrapper.active .mobile-navigation .menu-item-has-children {
        /* display: flex;
        align-items: center; */
    }

    .mobile-menu-wrapper.active .mobile-navigation .menu-item-has-children > a::after {
        content: '';
        display: inline-flex;
        width: 13px;
        height: 14px;
        margin-right: 5px;
        background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 14'><path d='M22.0446 0.0664909L23.9994 2.00658L13.2738 12.5011C13.1019 12.6702 12.8977 12.8043 12.6731 12.8954C12.4484 12.9866 12.2076 13.0331 11.9646 13.0323C11.7216 13.0315 11.4812 12.9833 11.2571 12.8906C11.0331 12.7979 10.8298 12.6625 10.6591 12.4922L-0.000444762 1.92495L1.96756 2.42599e-05L11.9724 9.91812L22.0446 0.0664909Z'/></svg>") no-repeat center / contain;
        transition: transform .3s ease;
    }

    .mobile-menu-wrapper.active li.current-menu-item a {
    font-weight: 700;
    color: #0055A6;
    }

    .mobile-menu-wrapper.active .mobile-navigation li .sub-menu {
        display: none;
    }

    .mobile-menu-wrapper.active .mobile-navigation li .sub-menu.active {
        margin: 10px 10px 0 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .column .content-wrapper,
    .footer-site-navigation,
    .our-brands-navigation,
    .qanda-menu-navigation {
        font-size: 2.4rem;
    }

    .product-popup-content .split-content {
        flex-direction: column-reverse;
    }

    .product-popup-content .split-content .col .product-features {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .product-popup-content .split-content .col .product-image {
        width: 100%;
        height: auto;
    }
}