



.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

:root {
    --primary: rgb(127,20,166);
    --primary-dark: rgb(87,10,86);
    --primary-light:  rgb(137,50,226);
    --green-dark:#455c30;
    --green-light:#93cf5b;
    --green-mid:#547f2b;
        
        --secondary: rgb(87,115,112);
    --secondary-dark: rgb(50,70,70);
    --secondary-light:  rgb(117,135,130);
}


/***** palette ******/
.dark-green {
    color: var(--green-dark);
}

.light-green {
    color: var(--green-light);
}

.dark-green-bg {
    background-color: var(--green-dark);
}

.light-green-bg {
    background-color: var(--green-light);
}

/**** main layout *****/
html {
        background:  rgba(69, 92, 48, 1);
}
body {
    padding: 0 0 50px 0;
    margin: 0;
    color:#070903;
/*
    background: rgb(147, 207, 91);
    background: linear-gradient(180deg, rgba(147, 207, 91, 1) 4%, rgba(69, 92, 48, 1) 75%);
*/
    background: rgb(147, 207, 91);
    background: linear-gradient(0deg, rgba(78, 64, 81, 1) 4%, rgba(52, 94, 49, 1) 75%);
    font-family: 'Montserrat', 'Lato', 'Open Sans', sans-serif;
/*    background:#103310;*/
}

.custom-container {
    background-color: #ebf3db;
    padding:0;
    border-radius: 20px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,.5) ;
}



.nav-link,
.navbar-brand {
    font-size:1.2rem;
    cursor: pointer;
}

 .navbar-brand2 img {
            
            height:70px;
     padding:5px 0;
            /* Add top padding of 20px */

}

.nav-link {
    color: var(--green-dark);
    margin-right: 1em !important;
    border-bottom:4px solid transparent;
}

.nav-link:hover {
    border-color:purple;
        text-decoration:none;
}

.navbar-collapse {
    justify-content: flex-end;
}

.header {
    border-bottom: 5px solid var(--primary);
}

.subpage-header, .hero, main {
    border-bottom: 2px solid var(--primary);
}


.full-width {
    width: 100%;

}

.wrap {
    width: 80%;
    max-width: 24em;
    margin: 0 auto;
    padding: 0.25em 0.625em;
}

.align-center {
    align-items: center;
}

.overlay {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}

* .description {
    left: 50%;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -55%);
    text-align: center;
}

.description h1 {
    color: #6ab446;
}

.description p {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5;
}

.features {
    margin: 4em auto;
    padding: 1em;
    position: relative;
}

.feature-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.features img {
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

/*footer logos */
.footer-container {
/*    border-top: solid 1px green;*/
    padding-top: 10px;
}

.logos-flex-container {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    /*justify-content: space-evenly;*/
}

.logos-flex-item {
    display:inline-flex;
    width:40%;
    min-width: 200px;
    height:auto;
    margin:5px auto;
    padding: 5px;
    text-align: center;
}

.logos-flex-item img {
    text-align: center;
    height: auto !important;
    width: 100%;
    object-fit: contain;

}

.card, .list-group-item {
    background-color: rgba(245, 249, 237, 1);
    border-color:rgba(100,100,100,.1);
}

#example1 {
    border: none;
    background: url(example-weeds.png);
    background-size: 240px 192px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 15px;
}
.bg-primary {
        background-color: var(--primary) !important;
}
.link-primary{
    color:var(--primary) !important;
    display:inline-flex;
    align-items: center;
}
.link-primary:hover {
    color:var(--primary-light) !important;
}
.link-primary span {
    font-size:inherit;
}
.badge.rounded-pill {
    display:flex;
    align-items: center;
    font-size:.9rem;
}
.badge.rounded-pill span {
    margin-left:5px;
}

.btn {
    display:inline-flex;
    align-items: center;
    justify-content: center;transition:all .5s ease;
}
a.btn:hover {
    text-decoration: none;
}

.btn-primary , .navbar-toggler {
    color: white;
    background-color: var(--primary);
    border-color:var(--primary-dark);
    
    border-radius: 10px;
}
.btn-primary:hover, .navbar-toggler:hover  {
    text-decoration:none;
    background-color:var(--primary-light);
     border-color:var(--primary);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color:var(--secondary-dark);
}

.btn-secondary:hover {
        background-color: var(--secondary-light);
    border-color:var(--secondary);
}


.card.rounded {
    border-radius: 40px;
    /* Adjust the value to control the amount of rounding */
    overflow: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    /* Remove underline by default */
}

a:hover {
    color: var(--primary-light);
    /* Darker green color on hover */
    text-decoration: underline;
    /* Underline on hover */
}
.share-buttons {
 display:flex;
    flex-flow:row;
    justify-content: flex-start;
    align-items: center;
    margin:auto 5px;
    display:none;
   
}
a.share-button  {
    display:flex;
   margin:auto 0 auto 10px;  
}
.share-button img{
    width:22px;
    height:auto;
}
.special-hr {
    border: none;
    border-top: 5px solid var(--primary);
    /* Custom color and thickness */
    width: 100%;
    margin: 0;
    opacity:1;
}

.hero {
    position:relative;
    padding: 5rem 3rem;
    color:#113311;
}
.hero:before {
    position:absolute;
    display:block;
    content:'';
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color: rgba(20, 120, 20, .5);
    background-image: url('images/microgreens_hero.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 1;
    z-index:0;
}

.hero h1 {
    font-weight:500;
    position:relative;
    z-index: 1;
}
.hero p {
    font-size:1.5rem;
    position:relative;
    z-index: 1;
}
.hero .btn-container {
    display: flex;
    flex-direction: row;
/*    justify-content: center;*/
    position:relative;
}

.subpage-header {
    position:relative;
    background-color:#2b635b;
    background: linear-gradient(0deg, rgba(19, 70, 51, 1) 4%, rgba(49, 92, 38, 1) 75%);
    border-bottom:4px solid var(--primary);
    color:#fbfaeb;
}
.subpage-header:before {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:rgba(59, 100, 91, 1);
    background-image:url('images/microgreens_growing.jpg');
    background-size:cover;
    background-repeat: no-repeat;
    background-blend-mode:darken;
    content:'';
    display:block;
    opacity:.2;
    z-index:0;
}
.subpage-header * {
    position:relative;
}

.btn-container .btn {
    margin: auto 3% auto 0;
}

.row {
    position: relative;
}
.album {
    border-radius:none;
}
.plant-bg {
    position: relative;
/*    background-color:#6b843f;*/
    background: rgb(235,243,219);
background: linear-gradient(0deg, rgba(235,243,219,0) 70%, rgba(84, 127, 43,1) 100%);
}

.plant-bg:before {
    position: absolute;
    background-image: url('images/microgreens-bunch-short.png');
    background-size:auto 50px;
    background-repeat: repeat-x;
    width: 100%;
    height:50px;
    content: '';
    top:-50px;
    left:0;
    right:0;
    
}



#home-cards-section {
    background:var(--green-mid);
}
.plant-bg-color
{
    background-color:#6b843f;
}
.caption {
    margin: 5px auto;
}
.col {
/*    margin-bottom:1rem;*/
}

.card-image {

    border-bottom:4px solid var(--primary);
}

#home-cards-section .card-image {

    overflow:hidden;
    position:relative;
}

#home-cards-section .card-image:before { 
    content:'';
    display:block;
padding-top:53%;
}



#home-cards-section .card-image img {
    position:absolute;
    top:0;
    width:100%;
    height:auto;
}
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow:hidden;
}


.video-container.vertical { 

    padding-bottom: 177.78%;
}

.video-container.ratio_4_3 { 

    padding-bottom: 75%;
}


.card .video-container {
    border-bottom:4px solid var(--primary);
}
.video-caption {
    margin:2px 0 5px;
        color:#343;
}
.video-title {
    font-size:1.2rem;    
}
.video-caption p {
    font-size:1rem;
    color:#565;
}
.video-container iframe,
.video-container video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.interactive-container {
    position: relative;
    width: 100%;
    min-width: 964px;
    height: 0;
    min-height: 540px;
    overflow: hidden;
    padding-bottom: 56.25%;
}

.interactive-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

img.responsive {
    width: 100%;
    height: auto;
}
#interactive .img-container {
    overflow:hidden;
    display:flex;
    align-items: center;
    justify-content: center;
    min-height:300px;
    max-height:400px;
    background:rgba(10,30,10,.4)
}
#interactive .img-container a  {
    background:var(--green-dark);
    position:absolute;
    display:flex;
    top:0;
    left:0;
    right:0;
    bottom:0;
    justify-content: center;
}

.img-container a .overlay-icon  {
   opacity:.5;
    position:absolute;
   display:flex;
    align-items:center;
    justify-content: center;
    left:0;
    right:0;
    top:0;
    bottom:0;
    height:100%;
    z-index:1;
    
    transition:all.5s ease;
    
}
.img-container a .overlay-icon span {
    font-size:150px;
    color:white;
}
.img-container a img {
    opacity:.7;
    transition:opacity .5s ease;
/*    filter: blur(1px);*/
}

.img-container a:hover img {
    opacity:1;
}
.img-container a:hover .overlay-icon {
    opacity:.7;
    transform:scale(1.1);
}

img.responsive-height {
    height:300px;
    width:auto;
}

.section-heading {
    text-transform:uppercase;
    font-size:1.2rem;
}


.info-section {
    border-bottom:1px solid var(--primary);
    
}
.info-section.light-shade {
    background:rgba(255,255,255,.2);
}
.info-section  h2 {
    line-height:1.3;
    font-weight:500;
}
.info-section  h3 {
    font-size:1.3rem;
    font-weight:600;
}
.info-section  p {
    line-height:1.7;
}
.info-section  p.lead {
    font-size:1.4rem;
    color:inherit;
}
.info-section  li {
    margin:1rem 0;
}
.info-section > div {
    margin:auto;;
}
.info-section .row {
    align-items: center;
}

.info-section .row.row-grid {
    align-items:stretch;
}

.info-section .white-box { 
    padding:1rem;
    border-radius:6px;
    background:rgba(245, 249, 237, 1);
    box-shadow:0 0 2px 0px rgba(0,0,0,.2);
}

.info-section .white-box .list-group {  
    margin-left:-1rem; margin-right:-1rem;
    border-radius:0;
    position:relative;
}
.info-section .white-box .list-group-item span.material-symbols-rounded
{
    background-color:var(--primary);
    color:white;
    padding:2px 3px;
    height:100%;
    border-radius:4px;
}

.info-section .white-box .list-group-item:hover {
    background-color:rgb(230,220,230);
}

.info-section .white-box .list-group-item:hover span.material-symbols-rounded {
    background-color:var(--primary-light);
}

.info-section .white-box h3 { 
    text-transform:uppercase;
    font-size:92%;
    border-bottom:1px solid var(--primary);
}
.info-section .row.row-grid .row {
    align-items:flex-start;
}
.info-section .row.row-grid .card {
    height:100% !important;
}

.img-container.white-border, .video-container.white-border {
   box-shadow:  0px 0px 0 8px rgba(255, 255, 255, 1);
    
}


.info-section .img-container {
    margin:auto;
    width:100%;
    padding-top:calc(100%);
    height:100%;
    position:relative;
    overflow: hidden;
    background:rgba(0,0,0,.1);
}
.info-section .img-container:after {
   content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
}
.info-section .img-container img { 
    position:absolute;
    top:0;
    height:100%;
    width:auto;
    z-index:0;
}
.img-container.inset-gradient-right:after {
/*   background: linear-gradient(90deg, rgba(235,243,219, 1) 0%, rgba(235,243,219, 0) 75%);*/
}
.img-container.inset-gradient-left:after {
/*   background:  linear-gradient(270deg, rgba(235,243,219, 1) 0%, rgba(235,243,219, 0) 75%);*/
  
}
.card-list-section .card {
   background:rgba(255,255,255,.2);
    border-color:rgba(0,0,0,.1);
}
.card-list-section .card .img-container { 
    margin-top:1rem;
    border:2px solid white;
    width:90%;
    right:-5%;
    padding-top:90%;
    

}
img.fit-horizontal { 
    height:auto !important;
    width:100% !important;
}

img.fit-vertical {
    height:100% !important;
    width:auto !important;
}


@media screen and (max-width: 970px) {

}
@media screen and (min-width: 1280px) {
    .plant-bg {
        background: linear-gradient(0deg, rgba(235,243,219,0) 70%, rgba(84, 127, 43,1) 100%);
    }
    .logos-flex-item {
    width:30%;
    max-width: 400px;
    max-height:180px;
    height:auto;
    margin:20px auto;
    padding: 5px;
}
}
@media screen and (max-width: 768px) {
    .hero {
        padding:3rem;
    }
    .hero:before {
        opacity:.5;
    }    
    .hero .btn-container {
    flex-direction: column;
    }
    
    .hero .btn-container .btn {
     margin:auto auto 10px 0;
    }
    .plant-bg {
        background: linear-gradient(0deg, rgba(235,243,219,0) 85%, rgba(84, 127, 43,1) 97%, rgba(84, 127, 43,0) 0px);
    }
    
    .card {
        margin-bottom:1rem;
    }
    
    .resource-thumbnail.img-container {
    padding-top:42%;
        overflow:hidden; 
    }
    .resource-thumbnail.img-container .img-responsive {
    width:100%;
        height:auto;
        top:-12%;
    }
}
/* .flex-item img {
  width:200px;
}
 */
/*footer-container .img {
  display: flex;
flex-flow: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin: auto;
width: 100%;
max-width: 960px;
    }
/* .item {
  padding: 10px;*/

}
