@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
* { box-sizing: border-box; }

html{scroll-behavior:smooth}

body {
	margin: 0;
	padding: 0;
	background-color: #fff;
	font-size: 18px;
    font-family: 'Roboto', sans-serif !important;
	font-weight: 300;
	color: #3a3a3a;
	line-height: 1.25;
}

a {text-decoration: none;}


.page { position: relative; margin: 0 auto; max-width: 100%;}

.page {
    display: grid;
    background-color: white;
    grid-template-areas: 
    "top_bar"
    "header"
    "hero"
    "categories"
    "freespace"
    "footer"
    ;
    margin: 0;
}

.top_bar {
    grid-area: top_bar;
    width: 100%;
	height: 30px; 
    background: #5f5d36;
    color: #fff;
}

.top_bar .content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 30px;
}
.top_bar .content p {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8em;
}
.top_bar p a {
    color: white;
}


header {
    grid-area: header;
    position: relative;	
    height: 209px;
    max-width: 100%;
    background-color: rgb(255, 255, 255);
}

.logo_area {
    min-height: 159px;
}

.logo_area .content {
    display: flex;
}

.logo {flex: 0 0 30%; }

.infobox {
    flex: 0 0 70%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.textbox {
    width: 100%;
    text-align: center;
    position: relative;
    top: -10px;
    color: #3a3a3a;
    font-size: 0.85em;
}

.textbox a {
    color: #5d5d5d;
}

i.fa-solid.fa-phone {
    color: #5d5d5d;
}

.textbox > span {margin-right: 10px;}
.textbox > span:nth-child(2) {margin-right: 10px;}

.search {display: flex; align-items: center;}

.navigation {
    height: 50px;
    background-color: #00511e;
    width: 100%;
}

.content {
	margin: 0 auto;
	max-width: 1170px;
	box-sizing: border-box;
}

.navigation > .content { 
    max-width: 100%;
    position: relative; 
    padding: 0; 
}

.wsmenu>.wsmenu-list>li>a {
    display: block;
    padding: 0 28px 0 19px;
    line-height: 50px;
    text-decoration: none;
    position: relative;
}




.hero {
    grid-area: hero;
    position: relative;
    margin-bottom: 40px;
}

.hero > img {
    object-fit: cover;
	width: 100%;
	height: 100%;
    transition: all .3s ease-in-out;
}

.overlay_container {
    /* max-width: 40%; */
    position: absolute;
    top: 45%;
    left: 38%;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0 10px 32px 10px;
    color: white !important;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    /* border: 1px solid red; */
    border-radius: 10px;
    width: 386px;
}

.overlay_container p {color: #fff;}

.button_container {
    margin: 10px 0 0 0;
    padding: 16px 0 0 0;
}

a.btn {
    line-height: 16px;
    border-radius: 24px;
    min-width: 240px;
    font-size: 0.9em;
    font-weight: 600;
    padding: 16px 32px;
    background-color: #fcf3ef;
    color: #000;
    text-decoration: none;
    transition: 0.3s;

}

a.btn:hover {
    background-color: #00511e;
    color: #fff;
}

.categories {
    min-height: 400px;
    grid-area: categories;
}


/*THE CATEGORY CARDS DUDE!*/
ul.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    list-style-type: none;
    padding: 0;
  }
  
  .cards li {
    background-color: rgba(255,255,255,.9);
    border-radius: 6px;
    border: solid 1px #dedede;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(20px, 1fr) auto;  
    transition: transform .5s ease;
  }

  .cards li:hover {
    box-shadow: 0 2px 5px rgb(0 0 0 / 50%);
}
  
  .cards a {
    background-color: #00511e;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 15px;
  }
  
  .cards a i {
      margin-left: 10px;
  }
  
  .cards img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
  }
  ul.cards img {
    max-width: 100%;
    height: auto;
}


.cards h3 {
    margin: 5px 0;
    /* padding: 0; */
}
.cards p {
    margin: -4px 0 17px 0;
}

a.collectionlink {
    padding: 6px 0;
}

.freespace {
    min-height: 400px;
    grid-area: freespace;
    margin: 0 0 50px 0;
}

ul > li > img a {
    padding: 10px 0;
    }


/*PHOTO GALLERY CLOSE BUTTON*/
.mfp-close {
    color: #fff;
    font-family: Arial,Baskerville,monospace;
    font-size: 60px !important;
    font-style: normal;
    height: 60px !important;
    line-height: 44px;
    opacity: .65;
    padding: 0 0 18px 10px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    width: 75px !important;
}


footer {
    grid-area: footer;
    position: relative;
    background-color: rgb(53, 53, 53);
    color: rgb(187, 187, 187);
    font-size: 0.7em;
    text-align: center;
    padding: 20px;
}


/*Search Box Styling*/
input.ccm-search-block-text {
    height: 44px;
    line-height: 11px;
    border: 1px solid #00511e;
    font-size: 1em;
}

input.btn.btn-secondary.ccm-search-block-submit {
    visibility: hidden;
}



/* 
                     _ _                                     
                    | (_)                                    
  _ __ ___   ___  __| |_  __ _    __ _ _   _  ___ _ __ _   _ 
 | '_ ` _ \ / _ \/ _` | |/ _` |  / _` | | | |/ _ \ '__| | | |
 | | | | | |  __/ (_| | | (_| | | (_| | |_| |  __/ |  | |_| |
 |_| |_| |_|\___|\__,_|_|\__,_|  \__, |\__,_|\___|_|   \__, |
                                    | |                 __/ |
                                    |_|                |___/ 
*/
@media screen and (max-width: 974px) {
    .wsmobileheader.clearfix {
        /* border: 1px solid red; */
        min-height: 78px;
        box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.12);
        -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.12);
        -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.12);
    }
    
    header {
        height: 66px;
        background-color: #fff;
    }
    .logo_area {
        height: 159px;
    }
    .logo_area .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .infobox {
        display: none;
    }
    .logo {
        flex: 0 0 auto; 
        z-index: 999;
    }

    .logo img {
        display: none;
    }

    .navigation {visibility: hidden;}

    .hero > img {
        height: 220px;
    }


    .overlay_container {
        /* max-width: 40%; */
        position: absolute;
        top: 45%;
        left: 28%;
        text-align: center;
        margin: 0;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 0 10px 32px 10px;
        color: white !important;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        /* border: 1px solid red; */
        border-radius: 10px;
        width: 229px;
    }

    .overlay_container p {
        color: #fff;
        font-size: 0.85em;
    }

    .button_container {
        margin: 0;
        padding: 0;
    }

    a.btn {
        line-height: 16px;
        border-radius: 24px;
        min-width: 200px;
        font-size: 0.85em;
        font-weight: 600;
        padding: 10px 25px;
        background-color: #fcf3ef;
        color: #000;
        text-decoration: none;
        transition: 0.3s;
    }

    .categories .content {
        padding: 10px;       
    }
    .freespace .content {
        padding: 10px;     
    }

    .freespace img {
        object-fit: contain;
        width: 100%;
        height: auto;
    }

    ul.cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
        list-style-type: none;
        padding: 0;
      }


}