@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --serif-font: "Merriweather", serif;
    --sans-font: "Montserrat", sans-serif;
    --sans-condensed-font: sans-serif;
}

html,
body {
    margin: 0;
    font-family: var(--sans-font);
    font-size: 18px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

header > div {
    text-align: center;
    margin: 15px 15px;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    gap: 10px;
}

header > div img {
    max-width: 100%;
}

nav .container {
    padding: 0;
}

nav > .navbar-container {
    margin: 0;
    max-width: 100%;
}

.navbar  {
    padding: 0;
}

nav {
    font-size: 1.25em;
    font-weight: 600;
    font-family: "Merriweather", serif;
    background-color: #f6f6f6;
    color: #000000;
}

p {
    margin-bottom: 20px;
}

label[for="menu-toggle"] div {
    display: inline;
    border-style: solid;
    border-color: black;
    border-width: 1px;
    text-transform: uppercase;
}

.menu-button {
    user-select: none;
    border: 1px solid #000000;
}

.menu-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    cursor: pointer;
}

.menu-button:hover {
    color: #f7f019;
    background-color: #000000;
}

.menu-button:hover svg {
    color: #f7f019;
}

.menu-button svg {
    width: 24px;
    height: 24px;
}

.menu-expander::after {
    content: "+";
}

input.menu-toggle { 
    display: none;
}

.navbar .menu-items {
    padding: 0;
    margin: 0;
    width: 100%;
    display: none;
    list-style-type: none;
}

.navbar-container input[type="checkbox"]:checked ~ .menu-items {
    display: block;
}

.navbar-container input[type="checkbox"]:checked ~ .submenu-header > .menu-expander::after {
    content: "-";
}

nav ul {

}

nav li:first-child {
    border-top-width: 0px;
}

nav .submenu-items li:first-child {
    border-top-width: 1px;
}

nav li {
    border-color: #c5c5c5;
    border-top-width: 1px;
    border-top-style: solid;
    margin:0;
}

nav .submenu-header {
}

nav a {
    font-size: 1em;
    color: inherit;
    text-decoration: none;
    display: block;

    margin: 0px 0;
    padding: 8px 0;
    padding-left: 30px;
}

nav a:hover {
    background-color: #000000;
    color: #ffffff;
}

.submenu-header {
    display: block;
    position: relative;
}

.submenu-header label {
    position: absolute;
    top: 3px;
    right: 0;

    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 4px 20px 4px 0;
    width: 32px;
    height: 32px;
    background-color: #575757;
    color: #ffffff;
}

.submenu-items label {
    top: 3px;
}

submenu-items li {
    border-color: #808080;
}

ul.submenu-items a {
    padding: 14px 0;
    padding-left: 50px;

    background-color: #575757;
    color: #ffffff;
    font-family: var(--sans-font);
    font-weight: 300;
    font-size: 0.75em;
    text-transform: none;
}

ul.submenu-2 a {
    padding-left: 75px;
}

.submenu-items a:hover {
    background-color: #000000;
    color: #f7f019;
}

.footer-top {
    background: #575757;
    color: #f7f019;
    
    font-family: var(--sans-font);
    font-size: 0.70em;
    font-weight: 700;
    text-transform: uppercase;
    
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;

    padding: 10px 0;
}

.footer-middle {
    background: #d8d8d8;

    padding: 20px;
}

.footer-middle h4 {
    text-transform: uppercase;
}

a.social-media {
    -webkit-text-decoration: none;
    text-decoration: none;
}

a.social-media img {
    width: 32px;
    height: 32px;
}

.footer-bottom {
    background: #f7f019;
    border-top: 1px solid #000000;

    font-family: "Lato", sans-serif;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;

    padding: 10px 20px;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: rgb(44, 61 ,116);
    text-decoration: solid underline;
}

.footer-bottom p {
    margin: 12px 0;
}


.link-box {
    border: 1px solid black;
    width: 100%;
}

.link-box a {
    text-decoration: none;
    color: dimgray;
}

.link-box p {
    background: gold;
    color: dimgray;
    min-height: 55px;
}

.link-box a img {
    width: 100%;
}

.link-box a p {
    background: dimgray;
    color: white;
    min-height: 0;
    text-align: center;
}

.catalog-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
}

@media (min-width: 768px) {

    header > div {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .menu-button {
        display: none;
    }

    .navbar > .container {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .navbar .menu-items {
        max-width: 1000px;
        display: flex;
        -webkit-justify-content: center;
        justify-content: space-evenly;
        list-style-type: none;
        
    }

    .navbar .menu-items > li {
        -webkit-flex-grow: 1;
        flex-grow: 1;
        text-align: center;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        display: flex;
    }

    .navbar-container input[type="checkbox"]:checked ~ .submenu-items {
        display: none;
    }

    nav {
        border-bottom: 7px solid #999999;
        border-top: 1px solid #e7e7e7;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        position: relative;
    }

    nav li {
        border-top-width: 0;
    }

    nav li a {
        padding: 6px 0;
        background: transparent url('../images/icons/nav-separator.png') left center no-repeat;
    }

    nav li:last-child {
        background: transparent url('../images/icons/nav-separator.png') right center no-repeat;
    }

    nav ul li a:hover {
        margin-bottom: -7px;
        border-bottom: 7px solid #f7f019;
    }

    nav ul.submenu-items li a:hover {
        margin-bottom: 0;
        border-bottom-width: 0;
        background-color: #000000;
    }
    
    .navbar .menu-items a:hover {
        background-color: inherit;
        color: inherit;
    }

    .navbar .submenu-items a:hover {
        background-color: #000000;
    }

    .menu-items .menu-expander {
        display: none;
    }

    .menu-items.submenu-items {
        display: none;
    }

    .products-header {
        position: relative;
    }

    .products-header:hover > ul {
        position: absolute;
        left: auto;
        display: block;
        background-color: #575757;
        color: #ffffff;
        border-top: solid #f7f019 7px;
        z-index: 999;
    }
    
    .products-header > ul li:hover {
        color: #f7f019;
    }

    .products-header > ul.submenu-items li a {
        padding: 15px;
        background-image: none;
    }

    .products-header > ul.submenu-items li  {
        border-bottom: 0;
    }
}

.field-validation-error {
    display: block;
}

.validation-summary-valid {
    display: none;
}

.CMHead
{
    background: gold;
    color: black;
    padding: 5px 20px;
    font-weight: bold;
    border-bottom: 3px solid dimgray;
}