@charset "utf-8";

/* CSS Document */
.footer {
    padding: 56px 0 18px;
    background: #ffffff;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-shadow: 5px 0 5px -4px rgba(0, 0, 0, 0.15), 
              -5px 0 5px -4px rgba(0, 0, 0, 0.15),
              0 6px 24px 0 rgba(0, 0, 0, 0.1);
}

.footer__inner {
    box-shadow: none;
}

.footer__nav--list {
    display: flex;
    justify-content: space-between;
    margin: 0 30px;
    padding: 0 0 56px 0;
    list-style: none;
}

.footer__nav--item {
    width: 20%;
}

.footer__nav--ttl {
    font-family: "NormsProBold", Arial, sans-serif;
    color: #000000;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 400;
}

.footer__logo img {
    max-width: 100%;
    width: 150px;
    height: auto;
}

.footer a {
    color: #a1a1a1;
    display: block;
    font-family: "NormsProRegular", Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.9px;
    margin: 12px 0;
    padding: 0 15px 0 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__copyright {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    position: relative;
}

.footer__copyright::before {
    content: "";
    border-top: 1px solid #d8d8d8;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    height: 1px;
}

.footer__copyright--container {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding-bottom: 20px;
    margin: 0 auto;
}

.footer__copyright--txt {
    display: flex;
    justify-content: center;
}

.footer__copyright--txt p {
    color: #a1a1a1;
    padding-bottom: 5px;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
    font-weight: 300;
}

.footer__copyright--policy {
    display: flex;
    justify-content: center;
}

.footer-social-media {
    margin-left: 20px;
}

.social-links-container a {
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    margin-right: 0px;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
}

.social-links-container .footerTwitter {
    background-image: url(https://splus-assets.pnimedia.com/dynamic/Content/images/RetailerSpecific/SPLUS/twitter?v=c779420797b1568c);
}

.social-links-container .footerTwitter:hover {
    background-image: url(https://splus-assets.pnimedia.com/dynamic/Content/images/RetailerSpecific/SPLUS/twitter-hov?v=ca41e801dfc9827b);
}

.social-links-container .footerFacebook {
    background-image: url(https://splus-assets.pnimedia.com/dynamic/Content/images/RetailerSpecific/SPLUS/facebook?v=84555554e72c7947);
}

.social-links-container .footerFacebook:hover {
    background-image: url(https://splus-assets.pnimedia.com/dynamic/Content/images/RetailerSpecific/SPLUS/facebook-hov?v=b82e7036069a1db5);
}

.social-links-container .footerYoutube {
    width: 32px;
    background-image: url(https://splus-assets.pnimedia.com/dynamic/Content/images/RetailerSpecific/SPLUS/youtube?v=c5780c3d45862a15);
}

.social-links-container .footerYoutube:hover {
    background-image: url(https://splus-assets.pnimedia.com/dynamic/Content/images/RetailerSpecific/SPLUS/youtube-hov?v=dee08a762767963f);
}

@media screen and (max-width: 992px) {
    .footer__nav--list {
        gap: 20px;
    }

    .footer-social-media {
        margin-left: 0;
    }

    .social-links-container {
        display: flex;
    }
}

@media screen and (max-width: 576px) {
    .footer__nav--list {
        flex-direction: column;
        gap: 32px;
        padding-bottom: 17px;
        margin-bottom: 60px !important;
        margin: 0 5%;
    }

    .footer__nav--item {
        width: 100%;
    }
}

@media screen and (max-width: 530px) {
    .footer__copyright {
        display: block;
        text-align: left;
        padding: 27px 30px 30px;
    }

    .footer__copyright--txt {
        flex-direction: column;
    }

    .footer__copyright--txt p {
        text-align: left;
        line-height: 18px;
        font-size: 10px;
    }

    .footer__copyright--policy {
        flex-direction: column;
    }
}

footer {
    clear: both;
    width: auto;
    position: relative;
}