
/***############### General Styling Reset and Setup: reset, grid, typography, general classes and divs.  Mobile-first styling setup. ***/
/***########## Reset the styles, add box-sizing: border-box. ***/
html, body, div, span, p, img, a, br, ul, li, ol, header, nav, footer, table, button, label, input, textarea, select, tr, td, th, h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    border: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
}

/*For ease of development and maintainability, combine an element's width, padding, margin, and border into a final value, and enable this on all elements. */
/*Also reduce the chance of font-resizing on mobile devices.*/
html { box-sizing: border-box; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
*, *:before, *:after { box-sizing: inherit; }

/***########## Grid Column layout available.  Desktop and mobile settings.  Automatically make columns full width below a certain width. Very-small (vsm) 
columns display at their designated widths at all device sizes, small (sma) above the first breakpoint, large (lar) above the next breakpoint. ***/
.content { width: 100%; padding: 20px 10px 20px 10px; }
.content-row { width: 100%; padding: 20px 0 20px 0; }
.content-row:after { content: ""; display: block; clear: both; }
.content-row.no-content-row-padding { padding: 0; }
.content-row:first-of-type { padding-top: 0; }
.content-row:last-of-type { padding-bottom: 0; }
 
.col-sma-1, .col-sma-2, .col-sma-3, .col-sma-4, .col-sma-5, .col-sma-6, .col-sma-7, .col-sma-8, .col-sma-9, .col-sma-10, .col-sma-11, .col-sma-12,
.col-lar-1, .col-lar-2, .col-lar-3, .col-lar-4, .col-lar-5, .col-lar-6, .col-lar-7, .col-lar-8, .col-lar-9, .col-lar-10, .col-lar-11, .col-lar-12 {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.col-vsm-1, .col-vsm-2, .col-vsm-3, .col-vsm-4, .col-vsm-5, .col-vsm-6, .col-vsm-7, .col-vsm-8, .col-vsm-9, .col-vsm-10, .col-vsm-11, .col-vsm-12 {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}

.col-vsm-1 { width: 8.333333%; }
.col-vsm-2 { width: 16.666667%; }
.col-vsm-3 { width: 25%; }
.col-vsm-4 { width: 33.333333%; }
.col-vsm-5 { width: 41.666667%; }
.col-vsm-6 { width: 50%; }
.col-vsm-7 { width: 58.33333%; }
.col-vsm-8 { width: 66.666667%; }
.col-vsm-9 { width: 75%; }
.col-vsm-10 { width: 83.333333%; }
.col-vsm-11 { width: 91.666667%; }
.col-vsm-12 { width: 100%; }  

/* Switch to 12 columns at 700px for small columns and 1200px for large columns. */
@media only screen and (min-width: 700px){    
    .col-sma-1, .col-sma-2, .col-sma-3, .col-sma-4, .col-sma-5, .col-sma-6, .col-sma-7, .col-sma-8, .col-sma-9, .col-sma-10, .col-sma-11, .col-sma-12 {
        float: left;
        padding-left: 15px;
        padding-right: 15px;
    }
    .col-sma-1 { width: 8.333333%; }
    .col-sma-2 { width: 16.666667%; }
    .col-sma-3 { width: 25%; }
    .col-sma-4 { width: 33.333333%; }
    .col-sma-5 { width: 41.666667%; }
    .col-sma-6 { width: 50%; }
    .col-sma-7 { width: 58.33333%; }
    .col-sma-8 { width: 66.666667%; }
    .col-sma-9 { width: 75%; }
    .col-sma-10 { width: 83.333333%; }
    .col-sma-11 { width: 91.666667%; }
    .col-sma-12 { width: 100%; }    
}

@media only screen and (min-width: 1200px){
    .content { padding: 20px 0 20px 0; }
    .content-row { padding: 25px 0 25px 0; }
    .content-row:first-of-type { padding-top: 0; }
    .content-row:last-of-type { padding-bottom: 0; }
       
    .col-lar-1, .col-lar-2, .col-lar-3, .col-lar-4, .col-lar-5, .col-lar-6, .col-lar-7, .col-lar-8, .col-lar-9, .col-lar-10, .col-lar-11, .col-lar-12 {
        float: left;
        padding-left: 15px;
        padding-right: 15px;
    }
    .col-lar-1 { width: 8.333333%; }
    .col-lar-2 { width: 16.666667%; }
    .col-lar-3 { width: 25%; }
    .col-lar-4 { width: 33.333333%; }
    .col-lar-5 { width: 41.666667%; }
    .col-lar-6 { width: 50%; }
    .col-lar-7 { width: 58.33333%; }
    .col-lar-8 { width: 66.666667%; }
    .col-lar-9 { width: 75%; }
    .col-lar-10 { width: 83.333333%; }
    .col-lar-11 { width: 91.666667%; }
    .col-lar-12 { width: 100%; }
}

/***########## General Styling and Typography settings. ***/
body { background-color: #f3f3f3; }
h1 { font-size: 24px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 18px; }
ul { list-style-type: none; }
p,
address { padding-bottom: 16px; line-height: 22.4px; }
a { text-decoration: none; }
img { max-width: 100%; font-size: 0px; } /*Don't allow images to go offscreen horizontally */
address { font-style: normal; }
a:link, a:visited { color: #000000; }
a:hover { color: #0000cc; }
input, textarea, select { outline: 0; transition: 0.2s; }
input:focus, textarea:focus, select:focus { box-shadow: 0px 0px 3px 3px rgba(0, 102, 204, 0.6); transition: 0.2s; }

.body-wrapper { position: relative; width: 100%; min-width: 300px; padding: 0; border: 0; margin-left: auto; margin-right: auto;
                background-color: #ffffff; }

@media only screen and (min-width: 500px){
}

@media only screen and (min-width: 700px){
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }  
}

@media only screen and (min-width: 1200px){      
    h1 { font-size: 36px; }   
    h2 { font-size: 26px; }  
    h3 { font-size: 24px; }  
    h4 { font-size: 18px; }
}

@media only screen and (min-width: 1600px){
}

/***########## General layout settings and general classes. ***/
.justify-content > div { display: flex; flex-wrap: wrap; justify-content: center; }

/* General Resuable Classes */
.sr-only { display: block; width: 0; height: 0; opacity: 0; }
.width-100-percent { width: 100%; }
.clear-both { clear: both; }

/* Use .inner-wrapper for layouts where you want to have backgrounds go out of the site 'border' provided by .body-wrapper '*/
.inner-wrapper { position: relative; padding: 0; margin-left: auto; margin-right: auto; }

@media only screen and (min-width: 700px){
    .float-right-above-a-breakpoint { float: right; }
}

/* Form Validation classes */
.javascript-validation-results-contact-us { display: none; font-weight: bold; }
.javascript-validation-results-contact-us.show { display: block; }
.required-field-needed { box-shadow: 0px 0px 3px 3px rgba(204, 0, 0, 1); }
/***########## End of General Styling Reset and Setup ****/





/***############### Beginning of Website-specific style sheet. ****/

/*

The first three colors are using an adjancent color scheme with 30 degrees.

Color 1: fern green                4f7942     (79, 121, 66)
Color 2: adjacent cobalt blue      325b53     (50, 91, 83)                       
Color 3: green-yellow              77874a     (119, 135, 74)                                          
 

Color 4: light fern green          71bc78     (113, 188, 120)
Color 5: dark fern green           356127     (53, 97, 39)
Color 6: light green-yellow        e5f2c2     (229, 242, 194)
Color 7: light cobalt-blue         c7e9e3     (199, 233, 227)      

*/

@font-face {
    font-family: 'Source Sans Pro'; 
    src: url('../fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'Source Sans Pro'; 
    src: url('../fonts/Source_Sans_Pro/SourceSansPro-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: 'Cabin'; 
    src: url('../fonts/Cabin/static/Cabin-Regular.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'Cabin'; 
    src: url('../fonts/Cabin/static/Cabin-Bold.ttf');
    font-weight: bold;
}

/*Site-specific grid customizations*/
.body-wrapper { width: 100%; margin-left: auto; margin-right: auto; background-color: #ffffff; }

html, body, div, span, p, img, a, br, ul, li, ol, header, nav, footer, table, button, label, input, textarea, tr, td, th, h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', sans-serif;
}

body { }
h1, h2, h3, h4 { font-weight: bold; }
h1 { }
h2 { padding: 0 0 15px 0; color: #77874a; }
h3 { padding: 0 0 12px 0; font-size: 20px; color: #77874a; }
h4 { padding: 0 0 10px 0; color: #4f7942; }

a, a:link, a:visited { color: #4f7942; transition: 0.2s; }
a:hover { color: #77874a; transition: 0.2s; }
a:focus-visible { outline: 2px solid #4f7942; } 

input, textarea, select { border: 1px solid #aaaaaa; }
input:focus, textarea:focus, select:focus, .woocommerce form .form-row textarea:focus { border: 1px solid #aaaaaa; box-shadow: 0px 0px 3px 3px rgba(79, 121, 66, 0.6); transition: 0.2s; }
input::placeholder, textarea::placeholder { color: #4f7942; opacity: 0.8; }

header { min-height: 210px; }
.header__background { position: absolute; top: 0; width: 100%; min-height: 220px; }

.nav { background-color: #356127; }
.nav ul { font-size: 0; }
.nav li { padding-bottom: 25px; text-align: center; }
.nav li:last-of-type { padding-bottom: 0; }
.nav a { border-bottom: 2px solid rgba(255, 255, 255, 0); font-size: 18px; color: #ffffff; transition: 0.1s all ease-in; }
.nav a:hover { border-bottom: 2px solid rgba(199, 233, 227, 1); color: #c7e9e3; transition: 0.1s all ease-in; }
.nav a:focus-visible,
button:focus-visible { outline: 2px solid #ffffff; }
.nav .current_page_item a { border-bottom: 2px solid rgba(255, 255, 255, 1); }
.nav .current_page_item a:hover { border-bottom: 2px solid rgba(199, 233, 227, 1); }

.mobile-nav { display: block; }
.desktop-nav { display: none; }
.dropdown-button-wrapper { position: absolute; top: 17px; left: 10px; width: 26px; }
#dropdownButton { width: 26px; background-color: transparent; cursor: pointer; }
#dropdownButton:hover { }
#dropdownButton:focus-visible { outline: 2px solid #4f7942; outline-offset: 3px; }
.dropdown-part-1 { border-bottom: 3px solid #4f7942; margin-bottom: 6px; transition: 0.4s ease-in; }
.dropdown-part-2 { border-bottom: 3px solid #4f7942; margin-bottom: 6px; transition: 0.4s ease-in; }
.dropdown-part-3 { border-bottom: 3px solid #4f7942; transition: 0.4s ease-in; }
#mobileNav.show .dropdown-part-1 { transform: translateY(9px) rotate(45deg); transition: 0.4s ease-in; } 
#mobileNav.show .dropdown-part-2 { opacity: 0; transition: 0.4s ease-in; } 
#mobileNav.show .dropdown-part-3 { transform: translateY(-9px) rotate(-45deg); transition: 0.4s ease-in; } 

#dropdownContent { padding: 0; background-color: #4f7942; background-image: linear-gradient(#4f7942, #71bc78, #4f7942); transition: 0.8s all ease-in; }    
#dropdownContent .menu-main-nav-container li { display: block; height: 0; padding-bottom: 0px; opacity: 0; transition: 0.8s all ease-in; }
#mobileNav.show #dropdownContent { padding: 15px; transition: 0.8s all ease-in; }
#mobileNav.show .menu-main-nav-container li { height: 21px; margin-bottom: 20px; opacity: 1; transition: 0.8s all ease-in; }
#mobileNav.show .menu-main-nav-container li:last-of-type { margin-bottom: 0; } 

.logo { position: absolute; top: 5px; left: auto; right: 10px; width: 44px; height: 44px; border: 3px solid rgba(79, 121, 66, 0.8);
       border-radius: 12px; background-color: rgba(255, 255, 255, 0.9); }
.logo__link { display: block; border-radius: 12px; cursor: pointer; }
.logo__link:focus-visible { outline: 6px solid #4f7942; }
.logo__image { display: block; }
.logo:hover { background-color: rgba(255, 255, 255, 0.75); transition: 0.4s ease-in; }


.footer { position: relative; text-align: center; }
.footer__addditional-wrapper { padding-top: 60px; padding-bottom: 60px; }
.footer__background { position: absolute; top: 0; width: 100%; min-height: 532px; opacity: 0.35;
                      background: url('../images/greenhouse-with-variety-of-plants.jpg') 50% 50%/cover no-repeat; }
.footer__copyright { width: 90%; margin-left: auto; margin-right: auto; padding-bottom: 40px; font-size: 17px; font-weight: bold; color: rgba(51, 51, 51, 0.92); }
.footer__location { width: 90%; padding-bottom: 40px; margin-left: auto; margin-right: auto; line-height: normal; }
.footer__location-header { padding-bottom: 15px; font-size: 20px; font-weight: bold; color: rgba(79, 121, 66, 0.92); }
.footer__location-address { padding-bottom: 10px; font-size: 17px; font-weight: bold; color: rgba(51, 51, 51, 0.92); }
.footer__location-hours { padding-bottom: 10px; font-size: 17px; font-weight: bold; color: rgba(51, 51, 51, 0.92); }
.footer__phone { font-size: 17px; font-weight: bold; color: rgba(51, 51, 51, 0.92); }

.footer__nav { padding-bottom: 40px; }
.footer__nav__item { display: inline-block; position: relative; }
.footer__nav__item__link { display: block; position: relative; padding: 10px 15px; }
.footer__nav__item__background { display: block; position: absolute; top: 0; left: 0; opacity: 0; width: 100%; height: 45px; border-radius: 28px;
                                 background: radial-gradient(rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0) 100%);
                                 filter: blur(2px); transition: 0.4s ease-in; }
.footer__nav__item__link__text { position: relative; top: 0; left: 0; font-size: 20px; font-weight: bold; transition: 0.4s ease-in; }
.footer__nav__item__link:hover .footer__nav__item__link__text { color: rgba(113, 188, 120, 0.92); transition: 0.4s ease-in; }
.footer__nav__item__link:hover .footer__nav__item__background { opacity: 1; transition: 0.4s ease-in; }

.footer__social { width: 90%; margin-left: auto; margin-right: auto; font-size: 0; }
.footer__social-item { display: inline-block; position: relative; padding: 0 18px; cursor: pointer; }
.footer .footer__social-link { display: block; position: relative; width: 32px; height: 32px; color: rgba(79, 121, 66, 0.92); transition: 0.4s ease-in; }
.footer .footer__social-link__background { display: block; position: absolute; top: -12px; left: -12px; opacity: 0; width: 56px; height: 56px;
                                           border-radius: 28px; background: radial-gradient(rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0) 100%);
                                           filter: blur(2px); transition: 0.4s ease-in; }
.footer .footer__social-link:hover .footer__social-link__background { opacity: 1; transition: 0.4s ease-in; }
.footer .footer__social-icon { position: absolute; top: 0; left: 0; }
.footer .footer__social-link .footer__social-icon::before { display: inline-block; width: 32px; height: 32px; border-radius: 16px; transition: 0.4s ease-in; }
.footer .footer__social-link:hover .footer__social-icon::before { color: rgba(113, 188, 120, 0.92); transition: 0.4s ease-in; }


.main-title-container { position: relative; top: 0; left: 0; width: 100%; padding: 5px 0; text-align: center; background-color: rgba(252, 252, 252, 0.9); 
                       transition: 0.6s; cursor: pointer; }
.main-title-container__background { position: absolute; top: 0; left: 0; opacity: 0; width: 100%; height: 94px; border-radius: 10px; transition: 0.6s; }
.main-title-container:hover .main-title-container__background { opacity: 1; transition: 0.6s; }
.main-title-container__title:focus-visible { outline: 4px solid #4f7942; }
.main-title-container__title { display: inline-block; position: relative; padding: 10px 6px; font-size: 19px; font-family: 'Calibri', sans-serif; 
                               font-weight: bold; color: #4f7942; text-shadow: 0.15px 0.2px #090909; }
.main-title-container__title:hover { color: #4f7942; }


/*General use classes*/
.content-backround-container { }
.hide-element { display: none }

.content-background-container.general-layout { padding-bottom: 20px; }
.content-background-container.hide { display: none; }
.content__subheader { text-align: center; }
.content__highlighted-phrase { font-size: 17px; font-weight: bold; color: #444444; }
.content__content-image { display: block; width: 100%; min-height: 200px; margin: 0 auto; }
.content__content-image.hide { display: none; }

.input-container { display: inline-block; }


/*Shared styles*/
/*Breadcrumbs*/
.breadcrumbs { padding-bottom: 30px; font-size: 0; }
.breadcrumbs__breadcrumb { display: inline-block; padding-right: 10px; }
.breadcrumbs__breadcrumb__link,
.breadcrumbs__breadcrumb__content { font-size: 18px; color: #4f7942; }


/*Blog posts*/
.blog-post { padding-bottom: 60px; }
.blog-post__title { display: block; padding-bottom: 12px; font-size: 20px; color: #4f7942; }
.blog-post__title__prefix { display: inline-block; padding-right: 10px; font-size: inherit; font-weight: bold; color: #71bc78; text-transform: uppercase; }
.blog-post__title__link { font-size: inherit; color: inherit; }
.blog__categories { padding-bottom: 4px; }
.blog__categories__link { text-transform: uppercase; }
.blog__date { padding-bottom: 12px; font-weight: bold; color: #707070; }
.blog__image-container { float: right; height: auto; padding-left: 15px; padding-bottom: 15px; }
.blog__image-link { display: block; overflow: hidden; border-radius: 2px; transition: 0.5s ease-in; }
.blog__image { display: block; width: 150px; height: 150px; transition: 0.8s ease-in; } 
.blog__image-container:hover .blog__image-link { box-shadow: 0 0 6px 0px #325b53; transition: 0.5s ease-in; }
.blog__image-container:hover .blog__image { transform: scale(1.12); transition: 0.8s ease-in; }
.blog__content { }
.blog__content p:last-of-type { padding-bottom: 12px; }
.blog__read-more { display: inline-block; color: #4f7942; }
.blog__read-more:hover { font-style: italic; }


/*Button styling*/
.search-form__button, 
.wpcf7 .wpcf7-submit { padding: 10px 15px; margin-top: 0; border-radius: 15px; background-color: #4f7942; color: #f9f9f9; font-weight: bold; cursor: pointer; 
                     transition: 0.4s ease-in; }
.search-form__button:hover, 
.wpcf7 .wpcf7-submit:hover { background-color: #71bc78; transition: 0.4s ease-in; }


/*Search form*/
#searchForm .search-controls { display: none; }
#searchForm.show .search-controls { display: inline-block; }
.search-form { position: absolute; top: 155px; right: 15px; }
.search-form .search-form__label { display: block; padding-bottom: 2px; font-size: 24px; font-weight: bold; color: #ffffff; }
.search-form .search-form__input { width: 160px; padding: 8px; border-radius: 15px; background-color: rgba(255, 255, 255, 0.9); }
.search-form .search-form__input:focus { border: 1px solid rgba(255, 255, 255, 0.9); background-color: rgba(255, 255, 255, 0.65); }
.search-form .search-form__input:focus::Placeholder { opacity: 0.9; }
.search-form .search-form__button { margin-left: 10px; background-color: rgba(79, 121, 66, 0.9); }
.search-form .search-form__button:hover { background-color: rgba(113, 188, 120, 0.9); }
.search-form__search { position: relative; top: 8px; margin-left: 15px; }
.search-form__search-icon { display: block; opacity: 0.9; width: 20px; height: 30px; background: url('../images/search-icon.png') 50% 50%/cover no-repeat; cursor: pointer; }
.search-form__search-icon:focus-visible { outline: 2px solid #ffffff; }
#searchForm.show .search-form__search-icon { display: none; }
.search-form__close-search-icon { display: none; }
#searchForm.show .search-form__search { margin-left: 15px; }
#searchForm.show .search-form__close-search-icon { display: block; opacity: 0.9; width: 20px; height: 30px; color: #ffffff; 
                                 background: url('../images/search-icon-close.png') 50% 50%/cover no-repeat; cursor: pointer; }
#searchForm.show .search-form__close-search-icon:focus-visible { outline: 2px solid #ffffff; }


/*Widgets*/


/*Index page*/
.index-content-image { width: 100%; min-height: 220px; }


.slideshow { position: relative; width: 100%; max-width: 670px; padding-bottom: 20px; margin-left: auto; margin-right: auto; background-color: #ffffff; }
.slideshow__image { position: relative; height: 160px; padding-bottom: 0px; margin-left: auto; margin-right: auto; background: 50% 50%/cover no-repeat; }
.slideshow__image:nth-of-type(2) { position: absolute; top: 0; left: 0; width: 100%; }
.slideshow__slide-background { position: absolute; top: 0; left: 0; opacity: 0;  width: 100%; height: 160px;
                               background: radial-gradient(rgba(255, 255, 255, 0.1) 40%, rgba(50, 91, 83, 0.4) 80%); transition: 0.5s ease-in; }
.slideshow__image:hover .slideshow__slide-background { opacity: 1; transition: 0.5s ease-in; }
.slideshow__image__link-wrapper { position: absolute; top: 118px; right: 25px; }
.slideshow .slideshow__image__link { display: block; text-align: right; font-size: 16px; font-weight: bold; 
                                    background-color: rgba(53, 97, 39, 0.88); box-shadow: 0 0 2px 10px rgba(53, 97, 39, 0.88);
                                    color: #ffffff; text-shadow: 0.8px 1.2px #333333; }
.slideshow .slideshow__image__link:focus-visible { outline: 2px solid #ffffff; }
.slideshow__image__link-decoration-container { position: relative; }
.slideshow__image__link-decoration { position: absolute; width: 100%; height: 2px; background-color: rgba(255, 255, 255, 0); transition: 0.3s ease-in; }
.slideshow__image__link-wrapper:hover .slideshow__image__link-decoration { height: 2px; background-color: rgba(255, 255, 255, 1); transition: 0.3s ease-in; }

.slideshow__buttons { display: flex; flex-wrap: wrap; justify-content: center; border-radius: 0 0 15px 15px; }
.slideshow__slide-button { display: block; float: left; opacity: 0.45; width: 20px; height: 20px; margin-top: 10px; margin-left: 18px; background-color: #4f7942;
                border-radius: 5px; cursor: pointer; transition: 0.2s; }
.slideshow__slide-button:hover { opacity: 0.25; transition: 0.2s; }
.slideshow__slide-button:focus-visible { outline: 2px dashed #325b53; }
.slideshow__button-text { }

.pause-play-button { opacity: 1; margin-left: 0; font-size: 0; background-color: transparent; }
.pause-play-button:hover { opacity: 0.8; }

.pause-button-left,
.pause-button-right { display: inline-block; opacity: 1; width: 5px; height: 20px; background-color: #4f7942; }
.pause-button-left { margin-left: 2px; margin-right: 6px; }
.pause-play-button.paused .pause-button-left,
.pause-play-button.paused .pause-button-right { display: none; opacity: 1; border: 0; }

.pause-play-button.paused .play-button { width: 0; height: 0; margin-left: 1px; border-top: 10px solid transparent; border-left: 18px solid #4f7942; border-bottom: 10px solid transparent; border-radius: 0; background-color: transparent; }


#slideButton3 { margin-bottom: 10px; }

.slideshow__icon { width: 27px; height: 27px; border-radius: 5px; user-select: none; }
.slideshow__icon.left { position: absolute; top: 66px; left: 3%; }
.slideshow__icon.right { position: absolute; top: 66px; right: 3%; }

.slideshow__icon__button { display: block; width: 100%; border-radius: 5px; font-size: 20px; line-height: 27px; background: rgba(255, 255, 255, 1);
                           color: rgba(50, 91, 83, 0.8); text-align: center; transition: 0.2s; }
.slideshow__icon:hover .slideshow__icon__button { background: rgba(255, 255, 255, 0.85); color: rgba(50, 91, 83, 0.95); transition: 0.2s; }
.slideshow__icon__button:focus-visible { outline: 2px dotted #ffffff; }

.currentSlideButton { opacity: 1; }
.slideshow__slide-button.currentSlideButton:hover { opacity: 0.8; }

.index-product { position: relative; padding-bottom: 25px; }
.index-product__name { padding-bottom: 5px; text-align: center; }
.index-product__name-link { font-size: 20px; font-weight: bold; color: #77874a; }
.index-product__image { float: left; width: 120px; height: 100px; margin-right: 10px; }
.index-product__background-layer { width: 120px; height: 100px; opacity: 0; 
                                   background-color: rgba(119, 135, 74, 0.35); transition: 0.4s ease-in; }
.index-product__background-layer:hover { opacity: 1; transition: 0.4s ease-in; cursor: pointer; }
.index-product__image-link { position: relative; display: inline-block; width: 100%; height: 100%; }
.index-product__image-link:focus-visible { outline: 3px solid #4f7942; }
.index-product__description { }

.index-product.zero .index-product__image { background: url('../images/plants/trees-outside-nursery.jpg') 50% 50%/cover no-repeat; }
.index-product.one .index-product__image { background: url('../images/supplies/two-watering-cans.jpg') 50% 50%/cover no-repeat; }


.subfooter-container { padding-bottom: 20px; }
.page.index .subfooter-container__background { background: url('../images/cacti-inside-sunny-greenhouse.jpg') 50% 50%/cover no-repeat; }


/*Products in custom WooCommerce shortcode.*/
.item { position: relative; padding-bottom: 60px; }
.item__background-image { width: 100%; height: 240px; margin-bottom: 5px; }
.item__inspect-background { display: none; }
.item__inspect-background:focus-visible { outline: 2px solid #4f7942; }
.item__zoom-in-container-close { display: none; }
.item__zoom-in-container { display: none; }
.item__title { min-height: 76px; padding-left: 25px; padding-right: 25px; text-align: center; }
.item__title__link { font-size: 20px; font-weight: bold; color: #4f7942; }
.item__notes { padding-bottom: 5px; font-weight: bold; color: #325b53; }
.item__rating-and-count { padding-bottom: 8px; color: #4f7942; }
.item__rating { font-weight: bold; }
.woocommerce.product-page-products .star-rating { float: left; }
.item__reviews { float: left; padding-left: 10px; }
.item__description { padding-bottom: 5px; }
.item__price { font-size: 18px; font-weight: bold; text-align: center; color: #325b53; }
.item__add-to-cart { margin-left: 20px; font-size: inherit; font-weight: inherit; }

.item:last-of-type { padding-bottom: 0; }


/*Blog page, Category page, Archive pages, Search results page*/
.blog-posts .blog-post { padding-bottom: 40px; }
.blog-posts .blog-post__title { display: block; padding-bottom: 12px; }
.blog-posts .blog-post__title__link { font-size: 20px; font-weight: bold; color: #4f7942; }
.blog-posts .blog__categories { padding-bottom: 4px; text-transform: uppercase; color: #325b53; }
.blog-posts .blog__categories__link { }
.blog-posts .blog__categories__link:hover { text-decoration: underline; }
.blog-posts .blog__date { padding-bottom: 10px; font-weight: bold; color: #707070; }

.blog-posts .blog__image-container { display: block; float: left; width: 30%; padding-left: 0; padding-bottom: 0; }
.blog-posts .blog__image-link { display: inline-block; width: 100%; height: 90px; }
.blog-posts .blog__image { width: auto; height: 90px; }

.blog-posts .blog__content-wrapper { float: left; width: 100%; padding-left: 0; }
.blog-posts .blog-post.has-image .blog__content-wrapper { width: 70%; padding-left: 15px; }
.blog-posts .blog__content { }
.blog-posts .blog__content p:last-of-type { padding-bottom: 12px; }
.blog-posts .blog__read-more { display: inline-block; color: #4f7942; }
.blog-posts .blog__read-more:hover { font-style: italic; }

.blog-col-right__bg-img { width: 100%; max-width: 280px; height: 180px; margin-left: auto; margin-right: auto; background: url('../images/greenhouse-with-variety-of-plants.jpg') 50% 50%/cover no-repeat; }


/*About Us page*/


/*Contact Us page*/
.page.contact .subfooter-container__background { background: url('../images/contact/potted-plants-inside-sunny-greenhouse.jpg') 50% 50%/cover no-repeat; }


/*Plants page*/
.page.plants .content__content-image { min-height: 140px; margin-bottom: 15px; }


/*Supplies page*/


/*404*/
.four04-one { background: url('../images/empty-plant-pot.jpg') 50% 50%/cover no-repeat; }


/*500*/
.five00-one { background: url('../images/watering-can-green.png') 50% 50%/cover no-repeat; }


/*Search results page*/
.search-query-text { display: inline-block; font-size: inherit; font-weight: inherit; }
.search-results__header { padding-bottom: 50px; }


/*Post pages*/
.single .content-background-container { padding-bottom: 20px; }


/*Single blog pages*/
.blog-post-content .breadcrumbs { padding-bottom: 10px; }
.blog-post-content .blog__date { font-size: 18px; }
.blog-post-content .blog__categories { padding-bottom: 8px;  }
.blog-post-content .blog__tags { padding-bottom: 30px; }

.single-blog-post-content .blog__image-container { float: none; padding-bottom: 10px; padding-left: 0; }
.single-blog-post-content .blog__image-link { height: 200px; }
.single-blog-post-content .blog__image { float: none; width: 100%; height: 200px; padding-left: 0; }


/*Categories pages*/
.all-categories__link { font-size: 20px; font-weight: bold; }

.categories-list { }
.categories-list__category { padding-bottom: 15px; }
.categories-list__category-link { font-size: 20px; font-weight: bold; }


/*Archive pages*/
.archive-title-text { display: inline-block; font-size: inherit; font-weight: inherit; font-style: italic; }


/*Customized plugin styles.*/
/*General Testimonials*/
.testimonial { }
.testimonial:last-of-type { padding-bottom: 0; }
.testimonial__provided-name { color: #4f7942; }
.testimonial__comma { color: #4f7942; }
.testimonial__link { color: #4f7942; }
.testimonial__label { color: #707070; }


/*Contact Form 7*/
.wpcf7 p { padding-bottom: 20px; }
.wpcf7 input, .wpcf7 textarea { width: 100%; padding: 10px 15px; border: 1px solid #aaaaaa; border-radius: 5px; }
.wpcf7 label { display: inline-block; padding-bottom: 0; font-size: 19px; font-weight: bold; color: #4f7942; }
.wpcf7-form-control { margin-top: 10px; }
.wpcf7 .wpcf7-submit { width: 150px; }
.wpcf7 .wpcf7-submit:hover {}

.wpcf7-response-output { font-size: 18px; font-weight: bold; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output { margin-left: 0; border-color: #4f7942; }


/*WooCommerce*/
/*General WooCommerce Styling*/
.woocommerce { }
.woocommerce button { background-color: #4f7942; color: #ffffff; transition: 0.2s; }
.woocommerce button:hover { color: #ffffff; transition: 0.2s; }
.woocommerce input, 
.woocommerce textarea, 
.woocommerce select { width: 100%; padding: 10px 15px; border: 1px solid #aaaaaa; border-radius: 5px; }
.woocommerce input[type="checkbox"] { width: auto; }
.woocommerce label { padding-bottom: 0; font-size: 19px; font-weight: bold; color: #4f7942; }

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button { padding: 10px 15px; border: 1px solid #aaaaaa; border-radius: 5px; line-height: initial; background-color: #4f7942; color: #ffffff; }
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover { background-color: #71bc78; color: #ffffff; }
.woocommerce #respond input#submit:focus-visible, 
.woocommerce a.button:focus-visible, 
.woocommerce button.button:focus-visible, 
.woocommerce input.button:focus-visible { box-shadow: inset 0 0 2px 2px #356127; }

.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea { height: auto; }
.woocommerce #review_form #respond .form-submit input { width: auto; }
#add_payment_method table.cart td.actions .coupon .input-text, 
.woocommerce-cart table.cart td.actions .coupon .input-text, 
.woocommerce-checkout table.cart td.actions .coupon .input-text { padding: 10px 15px; }
.woocommerce button.button { margin-top: 15px; }
.woocommerce .single_add_to_cart_button.button { margin-top: 0; }
#add_payment_method table.cart td.actions .coupon .input-text, 
.woocommerce-cart table.cart td.actions .coupon .input-text, 
.woocommerce-checkout table.cart td.actions .coupon .input-text { width: auto; }
.select2-container .select2-selection--single .select2-selection__rendered { padding: 10px 15px; }
.select2-container .select2-selection--single { height: auto; }
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 12px; }
.woocommerce .quantity .qty { width: auto; }
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt { background-color: #4f7942; color: #ffffff; transition: 0.2s; }
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover { background-color: #71bc78; transition: 0.2s; }

.product_title.entry-title { color: #77874a; }
.woocommerce ul.products li.product .woocommerce-loop-category__title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product h3 { font-size: 1.25em;}
.woocommerce-Reviews-title,
.woocommerce-Reviews-title span { font-size: 20px; }

.products { }
.product { }
.comment-form-comment .required { display: none; }

/*WooCommerce prices*/
.woocommerce div.product p.price, 
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price { color: #4f7942; }
.woocommerce div.product p.price span { }

/*WooCommerce breadcrumbs*/
.woocommerce .woocommerce-breadcrumb { padding-bottom: 30px; margin-bottom: 0; }
.woocommerce .woocommerce-breadcrumb a,
.woocommerce .woocommerce-breadcrumb span { font-size: 18px; color: #4f7942; }
.woocommerce .wc-delimiter { padding-left: 10px; padding-right: 10px; }

/*Ratings*/
.woocommerce .star-rating span { font-family: star; color: #4f7942; }
.woocommerce ul.products li.product .star-rating { font-size: 16px; }

.star-rating__average-and-number { padding-bottom: 4px; }
.star-rating__average { display: inline-block; }
.star-rating__number { display: inline-block; padding-left: 10px; }

.entry-summary .star-rating__average-and-number { display: inline-block; padding-bottom: 0; margin-top: 0; margin-left: 0; }
.entry-summary .star-rating__number { display: none; }
.entry-summary .woocommerce-review-link { display: inline-block; }

.comment_container .star-rating__average-and-number { display: none; }

/*Products, supplies*/
.woocommerce-ordering.custom-form { float: none; padding-bottom: 15px; margin: 0; }
.woocommerce .woocommerce-ordering select,
.woocommerce-ordering select { vertical-align: initial; width: auto; padding: 10px 15px; border: 1px solid #aaaaaa; border-radius: 5px; }
.custom-form__sort-results { padding-top: 5px; font-size: 18px; }
.woocommerce.product-page-products .star-rating { float: left; }

.added_to_cart.wc-forward { padding-left: 20px; font-size: inherit; font-weight: inherit; color: #999999; }

/*WooCommerce search form*/
.searchform input { width: auto; }

/*WooCommerce shopping cart icon*/
.woocommerce-cart-total { position: absolute; top: 232px; right: 20px; padding: 4px 5px; border: 3px solid rgba(79, 121, 66, 0.8); 
                         border-radius: 8px; background-color: #ffffff; }

/*WooCommerce Cart page*/
.woocommerce table.shop_table_responsive tr .product-thumbnail::before, 
.woocommerce-page table.shop_table_responsive tr .product-thumbnail::before { content: ""; }
.woocommerce #content table.cart .product-thumbnail, 
.woocommerce table.cart .product-thumbnail, 
.woocommerce-page #content table.cart .product-thumbnail, 
.woocommerce-page table.cart .product-thumbnail { display: block; }
#add_payment_method table.cart img, 
.woocommerce-cart table.cart img, 
.woocommerce-checkout table.cart img { width: 60px; }
.product-thumbnail a:focus-visible {
    outline: 0;
}  
.product-thumbnail a:focus-visible img {
    outline: 2px solid #4f7942;
}

/*WooCommerce Checkout page*/
.woocommerce .checkout_coupon.woocommerce-form-coupon .button { margin-top: 0; }

/*WooCommerce Account page*/

/*Shopping Cart Icon*/
.cart-icon { position: absolute; right: 10px; top: 110px; background-color: rgba(255, 255, 255, 0.7); }
a.cart-icon__link { display: block; width: auto; height: 100%; padding: 2px 8px; border: 2px solid #ffffff; border-radius: 4px; font-size: 20px; font-weight: bold; color: #333333; }
a.cart-icon__link:focus-visible { outline: 4px solid #71bc78; }


/* Clearing variable width columns */
@media only screen and (min-width: 700px) {
    /*Products in custom WooCommerce shortcode.*/
    .item:nth-of-type(3n+1){ content: ""; display: block; clear: both; }
}

@media only screen and (min-width: 700px) and (max-width: 1199px) {
     /*Index page*/  
    .index-blog-posts .blog-post:nth-of-type(2n+1) { content: ""; display: block; clear: both; }
    
    
    /*Single blog pages*/
    .single-blog-post-content .blog-post:nth-of-type(2n) { content: ""; display: block; clear: both; }
}



@media only screen and (min-width: 500px){
    
    header { min-height: 220px; }
    .header__background { min-height: 240px; }
    
    
    /*Index page*/    
    .slideshow__image { height: 220px; }
    .slideshow__slide-background { height: 220px; }
    
    .slideshow__image__link-wrapper { top: 175px; }
    
    .slideshow__icon.left { top: 96px; }
    .slideshow__icon.right { top: 96px; }
    
    
    /*Blog page, Category page, Archive pages, Search results page*/
    .blog-posts .blog__image-link { height: 120px; }
    .blog-posts .blog__image { height: 120px; }
    
    .blog-col-right__bg-img { margin-left: 0; margin-right: 0; }
}



@media only screen and (min-width: 700px){

    .content { }

    header { min-height: 320px; }
    .header__background { min-height: 320px; }
    
    .dropdown-button-wrapper { border-radius: 1px; box-shadow: 0 0 4px 6px rgba(255, 255, 255, 0.8); background-color: rgba(255, 255, 255, 0.8); }

    .logo { width: 84px; height: 84px; border-width: 4px; }
    .logo__link:focus-visible { outline-color: #71bc78; }
    
    .footer__background { min-height: 470px; }

    .main-title-container { top: 74px; width: 242px; padding: 0; margin-left: auto; margin-right: auto; border: 3px solid rgba(79, 121, 66, 0.9); border-width: 4px; border-radius: 10px; }
    .main-title-container__title { width: 100%; padding: 8px 10px; font-size: 32px; text-shadow: 0.8px 1px #090909; }
    .main-title-container:hover { background-color: rgba(252, 252, 252, 0.75); transition: 0.6s; }
    .main-title-container__title:focus-visible { outline-color: #71bc78; border-radius: 10px; }
    
    
    /*General use classes*/
    .content-background-container.general-layout { float: right; width: 60%; padding-bottom: 0; padding-left: 30px; }
    .content__highlighted-phrase { font-size: 18px; }

    
    /*Search form*/
    .search-form { position: absolute; top: 260px; right: 15px; width: auto; }
    .search-form .search-form__input { width: auto; }
    .search-form .search-form__button { }
    
    
    /*Widgets*/    

    
    /*Products in custom WooCommerce shortcode.*/
    .item:last-of-type { padding-bottom: 0; }
    
    /*WooCommerce shopping cart icon*/
    .woocommerce-cart-total { position: absolute; top: 250px; right: 20px; padding: 10px 15px; }
    
    
    /*Index page*/
    .slideshow { padding-bottom: 0; }
    .slideshow__image { height: 260px; }
    .slideshow__slide-background { height: 260px; }
    .slideshow__image__link-wrapper { top: 201px; }
    .slideshow .slideshow__image__link { font-size: 22px; box-shadow: 0 0 2px 15px rgba(53, 97, 39, 0.88); }
    .slideshow__icon { width: 33px; height: 33px; }
    .slideshow__icon.left { position: absolute; top: 114px; }
    .slideshow__icon.right { position: absolute; top: 114px; }
    
    .slideshow__icon__button { font-size: 24px; line-height: 33px; }
    
    .index-product__image { float: none; width: 100%; height: 220px; }
    
    
    /*Plants page*/

    
    /*Supplies page*/

    
    /*Blog page, Category page, Archive pages, Search results page*/
    .blog-posts .blog__image-container { width: 30%; max-width: 240px; height: 200px; }
    .blog-posts .blog__image-link { height: 200px; }
    .blog-posts .blog__image { height: 200px; }
    .blog__content-wrapper { width: 70%; }
    
    .blog-col-right__bg-img { max-width: 500px; }
    
    
    /*Contact Us page*/
    
    
    /*Customized plugin styles.*/
    /*General Testimonials*/
    .testimonial { padding-bottom: 15px; }
    .testimonial:last-of-type { padding-bottom: 15px; }
    
    
    /*WooCommerce*/
    .woocommerce button.button { margin-top: 0; }
    
    /*WooCommerce breadcrumbs*/
    .archive.woocommerce .woocommerce-breadcrumb { padding-left: 15px; }
    
    /*Products, supplies*/
    .woocommerce-product-page-header { padding-left: 15px; padding-right: 15px; }
    .woocommerce-ordering.custom-form { padding-left: 15px; }
    .custom-form__sort-results { display: inline-block; padding-left: 15px; padding-top: 0; }
    
    /*Shopping Cart Icon*/
    .cart-icon { top: 200px; }

}



@media only screen and (min-width: 1200px){      

    h2 { font-size: 30px; }
    h3 { font-size: 26px; }

    .body-wrapper {  }
    .inner-wrapper { width: 1200px; }

    header { min-height: 240px; }
    .header__background { min-height: 240px; }

    .mobile-nav { display: none; }
    .desktop-nav { display: block; }
    #dropdownButton { display: none; }

    .nav ul { width: 862px; margin-left: auto; margin-right: 0; }
    .nav li { display: inline-block; padding: 14px 60px 14px 0; }
    .nav a { font-size: 19px; }

    .logo { position: absolute; top: 20px; left: auto; right: 20px; width: 104px; height: 104px; }

    .footer { }
    .footer__background { min-height: 480px; }
    .footer__location-header { font-size: 24px; }
    .footer__copyright { font-size: 19px; }
    .footer__location-address { font-size: 19px; }
    .footer__location-address { font-size: 19px; }
    .footer__location-hours { font-size: 19px; }
    .footer__phone { font-size: 19px; }

    .main-title-container { top: 80px; left: 70px; width: 500px; margin-left: 0; margin-right: 0; }
    .main-title-container__background { height: 74px; }
    .main-title-container__title { padding: 12px 10px; font-size: 48px; line-height: 50px; }


    /*General use classes*/
    .content__content-image { height: 360px; }

    
    /*Search form*/
    .search-form { position: absolute; top: 185px; right: 25px; }
    
    
    /*Widgets*/
        
    
    /*Shared styles*/
    .main-title-container { margin-left: 0; margin-right: 0; }
    
    /*Blog posts*/
    .blog-post { padding-bottom: 0px; }
    .blog-post__title { font-size: 24px; }

    
    /*Products in custom WooCommerce shortcode.*/
    .item { }
    .item__title__link { font-size: 24px; }
    .item__background-image { height: 300px; cursor: zoom-in; }
    .item__title { }
    .item__description { }
    .item__price { font-size: 19px; }

    .item__inspect-background.show { display: inline-block; float: left; width: 18px; height: 28px; margin-right: 15px; margin-bottom: 5px;
                                      background: url('../images/magnifying-glass.png') 50% 50%/cover no-repeat; cursor: pointer; }
    .item__zoom-in-container-close.inspect { display: block; position: absolute; left: 360px; top: 352px; padding-left: 10px; padding-right: 10px; 
                                              border-radius: 12px; font-size: 24px; font-weight: bold; background-color: #77874a; color: #ffffff; 
                                              transition: 0.4s ease-in; cursor: pointer; }
    .item__zoom-in-container-close.inspect:hover { background-color: #4f7942; transition: 0.4s ease-in; }
    .item__zoom-in-container.inspect { display: block; position: absolute; top: 400px; left: 15px; width: 370px; height: 300px; overflow: hidden; z-index: 101; 
                                    border: 1px solid #999999; border-radius: 10px; box-shadow: 0 0 6px 12px rgba(0,0,0,0.9); }
    .item__zoom-in { width: 370px; height: 300px; background-color: #cccccc; transform: scale(2); }

    /*WooCommerce shopping cart icon*/
    .woocommerce-cart-total { position: absolute; top: 300px; right: 20px; }
    
    
    /*Index page*/
    .index-content-image { height: 400px; }
   
    .index-product { padding-bottom: 0; }
    .index-product__name { padding-left: 15px; text-align: left; }
    .index-product__name-link { font-size: 22px; }
    .index-product__image { width: 100%; height: 300px; }
    .index-product__background-layer { width: 100%; height: 300px; }
    .index-product__description { padding-top: 3px; }

    
    /*Plants page*/
    .page.plants .content__content-image { float: right; width: 33.333333%; height: 150px; margin-left: 15px; margin-bottom: 0; }
    
    
    /*Supplies*/
    
    
    /*Blog page, Category page, Archive pages, Search results page*/
    .blog-posts .blog-post { padding-bottom: 50px; }
    .blog-posts .blog__image-container { width: 30%; max-width: 240px; height: 180px; }
    .blog-posts .blog__image-link { height: 180px; }
    .blog-posts .blog__image { height: 180px; }
    .blog__content-wrapper { width: 70%; }
    
    .blog-col-right__bg-img { width: auto; height: 130px; }
    
    
    /*Single blog pages*/
    .single-blog-post-content .blog__image-link { }
    .single-blog-post-content .blog__image { }
    
    
    /*Customized plugin styles.*/
    /*WooCommerce*/
    /*Ratings*/
    .star-rating__average-and-number { padding-bottom: 0; margin-top: -26px; margin-left: 105px; }
    
    /*Shopping Cart Icon*/
    .cart-icon { right: 20px; top: 140px; }

}

@media only screen and (min-width: 1600px){

    header { min-height: 300px; }
    .header__background { min-height: 300px; }
    
    .nav li { padding-top: 15px; padding-bottom: 15px; }
    .nav a { font-size: 20px; }
    
    
    /*Index page*/
    .slideshow { position: relative; margin-left: auto; margin-right: 0px; }
    .slideshow__image { padding-bottom: 56.25%; }
    .slideshow__slide-background { padding-bottom: 56.25%; }
    .slideshow__image__link-wrapper { top: 300px; right: 60px; }
    .slideshow .slideshow__image__link { font-size: 28px; }
    
    .slideshow__icon { width: 36px; height: 36px; }
    .slideshow__icon.left { position: absolute; top: 170px; left: 3%; }
    .slideshow__icon.right { position: absolute; top: 170px; right: 3%; }
    .slideshow__icon__button { font-size: 27px; line-height: 36px; }
    
    
    /*Search form*/
    .search-form { position: absolute; top: 240px; right: 25px; }
    
    
    /*Customized plugin styles.*/
    
    /*Shopping Cart Icon*/
    .cart-icon { right: 20px; top: 190px; }
    
}
