/*.banner-black-friday-wrap {
    background: #000000;
    padding: 100px 0 30px;

    @media only screen and (min-width:1235px) { 
        padding: 120px 0 30px;

        .columns {
            padding: 0;
        }
    }


    .banner-black-friday-row {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 16px;

        @media only screen and (min-width:641px) { 
            grid-template-columns: 1fr 1fr;
            row-gap: 0;
            column-gap: 16px;
        } 

        @media only screen and (min-width:1025px) { 
            grid-template-columns: 1fr 275px;
        }
    }

    .wrap-img {
        align-self: center;
        justify-self: center;
        img {
            width: 350px;
            height: 100%;

            @media only screen and (min-width:1025px) { 
                width: 100%;
                height: auto;
            }
        }
    }

    .wrap-note {
        p {
            color: #706F6F;
            font-size: 10px;
            line-height: 14px;
            text-align: left;
            margin-bottom: 0;

            @media only screen and (min-width:1025px) { 
                text-align: right;
            }

            a {
                color: #706F6F;
                text-decoration: underline;

                &:hover, &:focus {
                    color: #fff;
                }
            }
        }   
    }

    .wrap-contact {
        border-radius: 14px;
        background-color: #3F3F3F;
        padding: 16px;
        align-self: center;
        justify-self: center;

        
        p {
            color: #fff;
            font-size: 15px;
            line-height: 20px;
            font-weight: 300;
            margin-bottom: 0;
            span {
                display: block;
                a {
                    color: #fff;
                    font-weight: 700;

                    &:focus,
                    &:hover {
                        color: #fff;
                        text-decoration: underline; 
                    }
                }
            }
        }
    }
}

.footer-note {
    p {
        color: #a7a7a7;
        font-size: 12px;
        line-height: 1.3em;

        a {
            color: #a7a7a7;
            font-weight: 700;
            text-decoration: none;

            &:focus,
            &:hover {
                color: #fff;
                text-decoration: underline;
            }
        }
    }
}
*/