﻿:root {
    --white: #fff;
    --wtw-red: #ef3125;
    --wtw-green: #82c341;
    --wtw-bright-orange: #faa419;
    --wtw-orange: #f47320;
    --wtw-body-copy-gray: #31373c;
    --wtw-cool-gray: #f5f6fa;
    --wtw-light-cool-gray: #cbd4de;
    --wtw-medium-cool-gray: #7c92a0;
    --wtw-dark-gray: #484c55;
    --wtw-warm-gray: #c7c9c8;
    --wtw-form-disable: #f2f2f2;
    --wtw-blue: #0054a5;
    --wtw-midnight-blue: #0f1c42;
    --wtw-light-blue: #01bce9;
    --wtw-light-blue-rgb: 149, 227, 253;
    --wtw-medium-blue: #465aa6;
    --wtw-dark-blue: #1f3466;
    --wtw-deep-blue: #012d5c;
    --wtw-deep-blue-alt: #0f1c42;
    --wtw-light-blue-alt: #95e3fd;
    --wtw-powder-blue: #beeef9;
    --wtw-background-blue: #edf9ff;
    --wtw-spacer: 26px;
    --wtw-mobile-spacer: 17px;
    --wtw-grid-spacer: 1fr;
    --link-font: Oswald, sans-serif;
    --font: Hind, sans-serif;
}

/* TEMP FIXES */
.PreFooter {
    margin-left: 0 !important;
    height: 440px !important;
    max-width: 1360px !important;
    min-width: 1360px !important;
}

.PreFooter-img-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

    .PreFooter-img-wrapper img {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 1360px !important;
        min-width: 1360px !important;
    }

.PreFooter-Text {
    margin-left: 0 !important;
    height: 440px !important;
    max-width: 1360px !important;
    min-width: 1360px !important;
}

.home-con-top-margin {
    max-width: 1400px;
    margin-top: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 10px !important;
}

@media (min-width: 746px) {
    .home-con-top-margin {
        padding: 0 20px !important;
    }
}

body {
    font-family: var(--font);
}

    body.modal-open {
        padding-right: 0px !important;
    }

/* WW Header */
.ww-header {
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible;
    background-color: var(--white);
    padding: 20px;
    z-index: 999;
}

    .ww-header a {
        text-decoration: none;
    }

.ww-header-row-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.ww-header-img {
    max-width: 165px;
    flex-shrink: 1;
    width: 100%;
}

    .ww-header-img img {
        width: 100%;
    }

.ww-header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    column-gap: 50px;
}

.ww-header-cart {
    position: relative;
    right: 0;
    padding: 10px;
}

.ww-header-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 22px;
    color: var(--white);
    background: var(--wtw-orange);
    border-radius: 50%;
    pointer-events: none;
}

.ww-cart-dropdown {
    position: absolute;
    display: none;
    width: 225px;
    padding: 12px 16px;
    margin-top: 0;
    margin-left: -95px;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.ww-header-cart:hover .ww-cart-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ww-cart-add-success {
    position: absolute;
    top: 45px;
    left: -230px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 350px;
    height: 50px;
    color: #2bd396;
    background-color: #dcf8ee;
    border: 1px solid #e1e7ec;
    border-radius: 4px;
    box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.2);
    animation: hideBox 5s forwards;
}

@keyframes hideBox {
    0%, 90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.ww-header-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 45px;
    height: 45px;
    background: var(--wtw-background-blue);
}

    .ww-header-mobile-menu div {
        width: 80%;
        height: 5px;
        background-color: var(--wtw-dark-blue);
    }

.ww-header-mobile-menu-x {
    position: relative;
    width: 45px;
    height: 45px;
    background: var(--wtw-background-blue);
}

    .ww-header-mobile-menu-x::before,
    .ww-header-mobile-menu-x::after {
        content: "";
        position: absolute;
        top: 8px;
        left: 20px;
        height: 30px;
        border-left: 5px solid var(--wtw-dark-blue);
    }

    .ww-header-mobile-menu-x::before {
        transform: rotate(-45deg);
    }

    .ww-header-mobile-menu-x::after {
        transform: rotate(45deg);
    }

.mobile-nav-dropdown {
    top: 70px !important;
}

.ww-header-bottom {
    display: none;
}

.ww-header-desktop {
    display: none !important;
}

.ww-header-search {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.ww-header-search form {
    flex-grow: 1;
}

.ww-header-search-button {
    border: none !important;
    background-color: var(--white) !important;
}

.ww-header-search form input {
    display: inline-block;
    width: 100% !important;
    height: 42px !important;
    font-size: 18px;
    line-height: 1;
    background-color: var(--white);
    outline: none !important;
    overflow: visible;
}

.ww-header-search form img {
    width: 26px;
    height: 26px;
}

.ww-header-link {
    font-size: 16px;
    font-weight: 700;
    min-width: 90px;
}

.ww-header-top > .ww-header-link ~ .ww-header-link {
    min-width: unset;
}

    .ww-header-link a {
        color: var(--wtw-medium-cool-gray);
    }

        .ww-header-link a:hover {
            color: var(--wtw-medium-blue);
        }

.ww-header-v-spacer {
    width: 2px;
    height: 30px;
    background-color: var(--wtw-light-cool-gray);
}

.ww-header-button {
    width: 140px;
    padding: 9px;
    font-family: var(--link-font);
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    background: var(--wtw-medium-cool-gray);
    border-radius: 0 0 5px 5px;
}

    .ww-header-button:hover,
    .ww-header-button.orange:hover {
        background: var(--wtw-medium-blue);
    }

    .ww-header-button.orange {
        background: var(--wtw-orange);
    }

.ww-header-menu {
    display: none;
}

@media (min-width: 1024px) {
    .ww-header {
        justify-content: center;
        padding: 0 20px;
    }
    
    .ww-header-mobile-menu {
        display: none !important;
    }

    .ww-header-desktop {
        display: flex !important;
    }

    .ww-header-img {
        min-width: 200px;
        max-width: 360px;
        padding-top: 20px;
    }

    .ww-header-row-container {
        min-width: 750px;
        margin-left: 25px;
        flex-grow: 1;
    }

    .ww-header-top {
        height: 80px;
        padding: 15px 0;
        column-gap: 15px;
        border-bottom: 2px solid var(--wtw-light-cool-gray);
    }

    .ww-header-bottom {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: 80px;
    }

    .ww-header-menu {
        position: relative;
        display: unset;
        height: 100%;
        padding: 20px;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--wtw-medium-blue);
    }

        .ww-header-menu a {
            color: var(--wtw-medium-blue);
            text-decoration: none;
        }

        .ww-header-menu:hover {
            background-color: var(--wtw-background-blue);
        }

            .ww-header-menu:hover .ww-header-menu-list {
                display: unset !important;
            }

    .ww-header-menu-list {
        position: absolute;
        top: 80px;
        left: 0;
        display: none;
        min-width: 300px;
        padding: 10px 25px 21px !important;
        font-size: 16px;
        text-align: left !important;
        background-color: var(--wtw-background-blue);
        box-shadow: rgb(15 28 66 / 20%) 0 19px 6px -12px;
    }

        .ww-header-menu-list.end {
            right: 0;
            left: auto;
        }

        .ww-header-menu-list ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

            .ww-header-menu-list ul li {
                padding: 5px 0;
                text-transform: none;
                border-bottom: 2px solid var(--wtw-powder-blue);
            }

    .ww-header-sub-menu {
        position: absolute;
        display: none;
        min-width: 300px;
        padding: 10px 25px 21px !important;
        font-size: 16px;
        text-align: left !important;
        background-color: var(--wtw-background-blue);
        box-shadow: rgb(15 28 66 / 20%) 0 19px 6px -12px;
        left: 90%;
    }

        .ww-header-sub-menu.right {
            right: 92%;
            left: auto;
        }

    .ww-header-menu-list ul li:hover .ww-header-sub-menu {
        display: unset !important;
    }
}

@media (min-width: 1440px) {
    .ww-header-row-container {
        width: 1000px;
    }

    .ww-header-menu {
        font-size: 22px;
    }

    .ww-header-img {
        width: 360px;
        max-width: 360px;
    }

    .ww-header-search form input {
        width: 250px !important;
    }

    .ww-header-link {
        font-size: 18px;
    }

    .ww-header-button {
        width: 180px;
        font-size: 20px;
    }
}
/* WW Header */

/* HERO SECTION */
.hero-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero-left {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 275px;
    max-width: 275px;
    padding: 15px;
}

    .hero-left img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.hero-right {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 15px;
}

.hero-right-promo-img {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 85px;
    height: 85px;
}

    .hero-right-promo-img img {
        width: 100%;
        height: 100%;
    }

.hero-right-text-container {
    font-size: 65px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -3.14px;
    text-transform: uppercase;
}

.hero-right-text-1 {
    color: var(--wtw-medium-cool-gray);
}

.hero-right-text-2 {
    color: var(--wtw-blue);
}

.hero-right-text-3 {
    color: var(--wtw-deep-blue);
}

.hero-promo-img {
    margin-top: 0;
    margin-right: 0;
}

.hero-right-box-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    column-gap: 15px;
}

.hero-right-box {
    max-width: 200px;
}

    .hero-right-box img {
        width: 100%;
        padding: 2px;
    }

    .hero-right-box a {
        text-decoration: none;
    }

@media (min-width: 746px) {
    .hero-right-promo-img {
        top: 0;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 15px;
    }

    .hero-left {
        max-width: 350px;
    }

        .hero-left img {
            width: 100%;
        }

    .hero-right {
        max-width: 550px;
    }

    .hero-right-promo-img {
        width: 110px;
        height: 110px;
        top: 0;
        right: 0;
    }

    .hero-right-text-container {
        font-size: 100px;
    }

    .hero-right-box-container {
        margin-top: 80px;
    }
}

@media (min-width: 1440px) {
    .hero-left {
        max-width: 525px;
        flex-grow: 1;
    }

        .hero-left img {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
        }

    .hero-right {
        max-width: 800px;
    }

    .hero-right-promo-img {
        width: 180px;
        height: 180px;
    }

    .hero-right-text-container {
        font-size: 135px;
    }
}
/* HERO SECTION */

/* FIND MY WATERWAY */
.find-ww-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 330px;
    margin: 0 auto;
    background: var(--wtw-dark-blue);
    border-radius: 5px;
}

.find-ww-title {
    height: 100px;
    font-family: var(--link-font);
    font-size: 34px;
    font-weight: 300;
    line-height: 100px !important;
    text-transform: uppercase;
    color: var(--wtw-powder-blue);
}

.find-ww-text-container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    color: var(--white);
    background: var(--wtw-medium-cool-gray);
    border-radius: 0 0 5px 5px;
}

.find-ww-arrow {
    width: 330px;
    margin: -1px 0 0;
    border-top: 15px solid var(--wtw-dark-blue);
    border-right: 165px solid transparent;
    border-left: 165px solid transparent;
}

.find-ww-text {
    width: 100%;
    margin: 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    color: var(--white);
}

.find-ww-selector {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 10px 20px;
}

    .find-ww-selector select {
        width: 215px;
        height: 50px;
        font-size: 24px;
        font-weight: 500;
        line-height: 24px;
        color: var(--wtw-deep-blue);
    }

.find-ww-dropdown {
    max-width: 215px;
}

.find-ww-go {
    max-width: 70px;
}

    .find-ww-go input {
        top: 6px;
        padding: 6px 21px 9px;
        font-family: var(--link-font);
        font-size: 24px;
        color: var(--white);
        text-decoration: none;
        background: var(--wtw-blue);
        border: none;
        border-radius: 5px;
    }

        .find-ww-go input:hover {
            background: var(--wtw-light-blue);
        }

@media (min-width: 1024px) {
    .find-ww-container {
        width: 100%;
        height: 100px;
    }

    .find-ww-title {
        width: 25%;
        margin: 0 auto;
        font-size: 25px;
        text-align: center;
    }

    .find-ww-text-container {
        align-items: center;
        justify-content: space-between;
        width: 75%;
        padding-right: 25px;
        border-radius: 0 5px 5px 0;
    }

    .find-ww-arrow {
        display: none;
    }

    .find-ww-text {
        display: flex;
        align-items: center;
        max-width: 350px;
        height: 100px;
        margin: 0 0 0 -1px;
        padding-left: 10px;
        text-align: center;
        border-top: 50px solid transparent;
        border-right: 0 solid transparent;
        border-bottom: 50px solid transparent;
        border-left: 60px solid var(--wtw-dark-blue);
    }

    .find-ww-selector {
        width: 100%;
        margin: 0;
        gap: 20px;
    }
}

@media (min-width: 1440px) {
    .find-ww-title {
        width: 35%;
        font-size: 40px;
        text-align: center;
    }

    .find-ww-text-container {
        align-items: center;
        justify-content: space-between;
        width: 65%;
        padding-right: 25px;
    }

    .find-ww-text {
        max-width: 425px;
    }
}
/* FIND MY WATERWAY */

/* Blank spacer */
.wwRule-blank {
    position: relative;
    width: 100%;
    height: 4em;
}
/* Blank spacer */

/* Blue Box */
.blue-box {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    padding: 30px;
    background-color: var(--wtw-background-blue);
}

@media (min-width: 768px) {
    .blue-box {
        width: calc(100% - 60px);
        padding: 60px;
        margin: 0 30px;
    }
}
/* Blue Box */

/* Ghosted CTA */
.ghosted-cta {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.02px;
    color: var(--wtw-medium-cool-gray);
}
/* Ghosted CTA */

/* WW Boxes */
.box {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
    width: 100%;
    margin: 0 0 50px;
}

.box-title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.23;
    text-transform: uppercase;
    color: var(--wtw-deep-blue);
}

.box-img {
    width: 100%;
    height: 240px;
}

    .box-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 0%;
    }

.box-sub {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--wtw-blue);
}

.box-text {
    flex: 1;
    font-size: 18px;
    color: var(--wtw-dark-gray);
}

.box-link {
    margin-top: auto;
    padding-top: 1em;
}

@media (min-width: 1024px) {
    .box {
        width: 45%;
        margin: 0;
    }
}

@media (min-width: 1440px) {
    .box-title {
        font-size: 24px;
    }
}
/* WW Boxes */

/* WW Button */
.ww-button {
    width: 100%;
    padding: 9px;
    font-family: var(--link-font);
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    background: var(--wtw-blue);
    border-radius: 0 0 5px 5px;
    box-shadow: 1px 9px 1px -3px var(--wtw-dark-blue);
}

    .ww-button:hover {
        background: var(--wtw-light-blue);
    }

@media (min-width: 768px) {
    .ww-button {
        font-size: 20px;
    }
}
/* WW Button */

/* Better Way To Clean */
.bw2c-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.bw2c-cta,
.bw2c-text,
.bw2c-img {
    width: 100%;
}

.bw2c-text {
    font-size: 22px;
    color: var(--wtw-dark-gray);
}

.bw2c-container .ghosted-cta {
    font-size: 40px;
}

.bw2c-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .bw2c-img img {
        width: 100%;
        max-width: 490px;
        max-height: 250px;
        margin: 0 auto;
        object-fit: cover;
        object-position: 50% 100%;
    }

    .bw2c-img .ww-button {
        width: 60%;
        margin: 0 auto;
        transform: translate(0, -20px);
    }

    .bw2c-img a {
        text-decoration: none;
    }

@media (min-width: 768px) {
    .bw2c-container {
        gap: 75px;
    }
}

@media (min-width: 1024px) {
    .bw2c-container .ghosted-cta {
        font-size: 55px;
    }

    .bw2c-img .ww-button {
        width: 30%;
        font-size: 30px;
    }
}

@media (min-width: 1440px) {
    .bw2c-cta {
        width: 30%;
    }

    .bw2c-text {
        width: 60%;
    }

        .bw2c-text .box-title {
            font-size: 32px;
        }
}
/* Better Way To Clean */

/* CCC CTA */
.ccc-cta-container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding-bottom: 50px;
    background-image: url(/images/ccc-home-background.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.ccc-cta-icon {
    position: absolute;
    right: 50px;
    bottom: 0;
    order: 3;
    width: 100px;
    margin-left: 50px;
}

    .ccc-cta-icon svg {
        width: 100%;
    }

.ccc-cta-text-container {
    display: flex;
    flex-direction: column;
    order: 2;
    width: 100%;
    padding: 0 25px;
}

.ccc-cta-title {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
}

.ccc-cta-text {
    margin: 20px 0 30px;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.09;
    color: var(--wtw-light-blue);
    width: 85%;
}

.ccc-cta-img {
    position: relative;
    order: 1;
    width: 335px;
    height: 192px;
}

    .ccc-cta-img img {
        position: absolute;
        top: -25px;
        height: 100%;
    }

@media (min-width: 1440px) {
    .ccc-cta-container {
        align-items: center;
        justify-content: space-between;
        padding: 50px;
    }

    .ccc-cta-icon {
        position: relative;
        right: 0;
        order: 1;
        width: 125px;
        margin: 0;
    }

    .ccc-cta-text-container {
        align-items: flex-start;
        width: 40%;
        padding: 0;
    }

    .ccc-cta-img {
        order: 3;
        width: 540px;
        height: 311px;
    }

        .ccc-cta-img img {
            top: -75px;
        }
}
/* CCC CTA */

/* WW Underlined Links */
.ww-link-white,
.ww-link-blue {
    display: inline-block;
    align-self: flex-start;
    padding-bottom: 5px;
    font-family: var(--link-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 5px solid var(--wtw-bright-orange);
}

.ww-link-white {
    color: var(--white);
}

.ww-link-blue {
    color: var(--wtw-blue);
}

    .ww-link-white:hover,
    .ww-link-blue:hover {
        border-bottom: 5px solid var(--wtw-dark-blue);
    }

.ww-link-white:hover {
    color: var(--white);
}

.ww-link-blue:hover {
    color: var(--wtw-blue);
}
/* WW Underlined Links */

/* Pre Footer Image */
.pre-footer {
    width: 100%;
}

    .pre-footer img {
        display: block;
        width: 100%;
        height: auto;
    }
/* Pre Footer Image */

/* Footer */
.ww-footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    max-width: 1376px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--wtw-blue) 50px, var(--wtw-deep-blue) 50px);
}

    .ww-footer ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .ww-footer ul li {
            display: inline-block;
            margin-left: 25px;
        }

    .ww-footer a {
        color: var(--white);
        text-decoration: none;
        text-transform: uppercase;
    }

        .ww-footer a:hover {
            text-decoration: underline;
        }

.ww-footer-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 700;
}

.ww-footer-social {
    position: absolute;
    top: 75px;
    right: 25px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 50px;
}

    .ww-footer-social ul li {
        margin-left: 5px;
    }

    .ww-footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        margin-left: 0;
        background-color: var(--wtw-light-blue);
        border-radius: 50%;
    }

.ww-footer-sitemap {
    padding: 20px;
}

    .ww-footer-sitemap ul li {
        display: list-item;
        margin-bottom: 10px;
    }

.ww-footer-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white);
    column-gap: 20px;
    row-gap: 10px;
    text-align: center;
}

.ww-footer-rule {
    width: 95%;
    height: 0.5px;
    margin-bottom: 10px;
    background: var(--white);
}

.ww-footer-desktop {
    display: none;
}

@media (min-width: 1440px) {
    .ww-footer-links {
        width: 50%;
    }

    .ww-footer-social {
        top: 0;
        right: 25px;
        position: absolute;
    }

    .ww-footer-desktop {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 20px;
    }

        .ww-footer-desktop ul li {
            display: list-item;
        }

    .ww-footer-mobile {
        display: none;
    }

    .ww-footer-locations {
        width: 30%;
    }

    .ww-footer-pages {
        width: 40%;
    }

    .ww-footer-rule {
        display: none;
    }

    .ww-footer-info {
        position: absolute;
        right: 50px;
        bottom: 25px;
        flex-direction: row;
        width: unset;
    }

        .ww-footer-info ul {
            display: inline-block;
        }
}
/* Footer */