/* 

COLOR PALETTE CSS HEX 
--black: #000 (default font color)
--anti-flash-white: #ebebeb (background)
--white: #fff (background, font color, button font color, accent)
--white-opacity-8: rgba(255 255 255 / 0.8) (background~column block use with black type)
--chili-red: #da291c (cart icon, spyglass icon)
--dark-spring-green: #007a35 (eco friendly accents and font color, icons)
--denim: #225daa (buttons & links, icons) 
--polynesian-blue: #1b4a88 (hover states on buttons and links) 
--ultra-violet: #69498f (icons, accents)

FONT
font: myriad-pro

FONT WEIGHT
font-weight: 400 (regular) (class: fw4)
font-weight: 700 (bold) (class: fw7)

FONT SIZE
h1: 40px
h2: 
h3:
h4:
p: 18px (base font size)

LINE HEIGHT
line height 1.25em (class: lh125)

*/

/* #HEADER */
    /* #header min 768*/
@media (min-width: 768px)
{
    .logo {
        max-width: 30%;
    }
    figure.customer-logo {
        height: 48px;
        width: 265px;
    } 
}
    /* end header min 768 */

    /* #header min 1024 */
@media (min-width: 1024px) {
    .top-bg .container {
        max-width: 1280px;
    }
    .header .top-bg p.left {
        display: inline-block;
        font-size: 13px;
        line-height: 27px;
        padding-left: 45px;
    }
    .header .top-bg p.right {
        float: right;
        font-size: 13px;
        line-height: 27px;
        padding-right: 45px;
    }
    .panel.wrapper {
        display: none;
    }
    .panel.header {
        padding: 10px 20px;
    }
    .container {
        margin: 0 auto;
        max-width: 1280px;
        padding-left: 0;
        padding-right: 0;
        width: auto;
    }
    .logo-row {
        display: block;
        padding: 20px 0 0;
    }
    .header.content {
        clear: both;
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 1280px;
        padding: 0;
        position: relative;
    }
    .nav-toggle {
        display: none;
    }
    .logo {
        display: block;
        margin: 8px;
        max-width: 25%;
        padding: 8px;
    }
    .logo img {
        display: block;
        max-height: inherit;
        width: 305px;
    }
    .account-top {
        margin: 0;
        padding: 8px 0;
        position: relative;
    }
    .account-top ul li {
        padding-right: 5px;
    }
    .minicart-wrapper {
        display: block;
        margin: 0;
        padding: 8px;
        position: static;
    }
    .action.showcart::before {
        background-size: auto;
    }
    .counter.qty {
        font-size: 12px;
        line-height: 25px;
    }
    .counter {
        text-align: center;
    }
    .pagebuilder-mobile-only {
        display: none !important;
    }
}
    /* end header min 1024 */
/* END HEADER */


/* #FOOTER */
    /* #footer min 1024 */
@media (min-width: 1024px) {
    footer {
        padding: 40px 0;
    }
    .footer__column {
        border-right: 1px solid #888b88;
        box-sizing: border-box;
        float: left;
        min-height: 280px;
        padding: 0 20px;
        width: 23%;
    }
    .footer__h2 {
        display: none;
    }
    .footer__column-content {
        display: grid;
        font-size: 14px;
        line-height: 22px;
        margin-top: 20px;
        text-align: start;
    }
    .column-content-mobile.phone {
        display: none;
    }
    .column-content-mobile-hide {
        display: block;
    }
    .column-content-mobile {
        display: none;
    }
    .column-content__ul {
        margin-top: 0;
    }
    .column-content__li>a {
        white-space: normal;
    }
    .footer__li {
        display: none;
    }
    .call-icon {
        font-size: 16px;
        margin-bottom: 2px;
        position: relative;
        padding-left: 30px;
    }
    .call-icon::before {
        background: url(../images/phone-icon.svg) no-repeat;
        background-size: 80%;
        content: '';
        height: 20px;
        left: 0;
        position: absolute;
        top: 0;
        width: 23px;
    }
    .footer__email {
        margin-bottom: 7px;
    }
    .footer__column .social-icons {
        margin: 6px 0 11px;
    }
    .footer__column .social-icons li a {
        height: 32px;
        width: 32px;
    }
      .footer__column.right {
        box-sizing: border-box;
        float: right;
        margin: 0 20px 0 0;
        min-height: 243px;
        width: 290px;
    }
    .column-content__newsletter {
        overflow: hidden;
        padding-top: 40px;
        width: auto;
    }
      .hbspt-form {
        width: 100%;
    }
    .content-subscribe {
        text-align: start;
    } 
    .sub-footer .sub-footer-div {
        display: flex;
        justify-content: space-between;
    }
}
    /* end footer min 1024 */
/* END FOOTER */