



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

:root {
    --app-background: #7D8895;
    --app-background-light: #A0B0BB;
    --black: #112;
    --dark-color: #223;
    --rad:4px;
    --primary:#6D007D;
    --primary-dark:#4D005D;
    --primary-light:#9D21AD;
    --heading-font:'Barlow Semi Condensed', sans-serif;
     --body-font:'Lato', sans-serif;
}


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

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

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

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

/**** main layout *****/
html {
        background:  rgba(255, 255, 255);
}


body {
    padding: 0;
    margin: 0;
    color:var(--dark-color);
/*
    background: rgb(147, 207, 91);
    background: linear-gradient(180deg, rgba(147, 207, 91, 1) 4%, rgba(69, 92, 48, 1) 75%);
*/
    background: rgb(180, 220,230);
/*	font-family: 'Dosis', sans-serif;*/

/*    background:#103310;*/
}
main {
    
    background-image: linear-gradient(180deg, rgba(180, 220, 230, .0) 0%, rgba(100, 100, 200, .3) 100%);
}
h1 {
	font-family: var(--heading-font);
	font-weight:500;
    position:relative;
    z-index: 1;
    font-weight:bold
}
h2 {
	font-family: var(--heading-font);
	font-size:1.9rem;
    font-weight:bold;
}
h3 {
	font-family: var(--heading-font);
	font-size:1.5rem;
    font-weight:bold;
}
h4 {
	font-family: var(--heading-font);
}

p, ul, li {
	font-family: var(--body-font);
	font-size:1.2rem;
    font-weight:normal;
    line-height:1.5;
}



main .lesson-section {
    padding-top:10px; padding-bottom:10px;
}
main .lesson-section:nth-child(even) {
    background:rgba(255,255,255,.3);
    
}
.lesson-section h3 {
    font-size:1.9rem;
    font-weight:bold;
}
.lesson-section p {
    font-size:1.1rem;
    font-weight:400;
    line-height:1.5;
}
.lesson-section p .paragraph-headings {
    font-weight:bolder !important;
}
.lesson-section p.training-time-label{
    font-weight:600;
    border-bottom:1px solid var(--dark-color);
    padding:2px 0;
    text-transform:uppercase;
    font-size:16px;
    display:inline-flex;
}

.lesson-section .btn-container {
    margin-bottom:20px;
}
.heading-label {
    font-size:20px;
    display:flex;
    margin:1rem auto .2rem auto;
    line-height:18px;
    text-transform:uppercase
}

.interactive-thumbnail{
    border:2px solid white;
    margin-top:20px;
}
.custom-container {
    background-color: #ffffff;
    padding:0;
    border-radius: 20px;
    box-shadow: 0 0 10px 0px rgba(0,0,0,.5) ;
    font-family: 'Dosis', sans-serif;
}



.nav-link,
.navbar-brand {
    font-size:1.5rem;
    font-family: 'Dosis', sans-serif;
    cursor: pointer;
    font-weight:bold;

}

 
#title-brand {
    background:url(images/TitleHorizontal.svg) no-repeat;
    text-indent:-1000px;
    background-position: center center;
    font-size:.1rem;
    overflow:hidden;
}
.navbar-brand#title-brand {
    min-width:220px;
    min-height:56px
}

.nav-link {
    color: #525252;
    margin-right: 1em !important;
    border-bottom:4px solid transparent;
}

.nav-link:hover {
    color: #6f037e;
    border-color:black;
        text-decoration:none;
}

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

.header {
    border-bottom: 5px solid var(--primary);
        background-color: #ffffff;
    

}

.subpage-header, .hero, main {
    border-bottom: 6px solid var(--primary);
    position:relative;


}


.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: #0f2129;
}

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

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

.feature-title {
    color: #333;
    font-size: 1.5rem;
    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 {
    padding-top: 10px;
    background-color: #ffffff;
}

.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(218, 225, 230);
    border-color:rgba(100,100,100);
}

#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: #0c2a36 !important;
}
.link-primary span {
    font-size:inherit;
}
.badge.rounded-pill {
    display:flex;
    align-items: center;
    font-size:1rem;
}
.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: white;
    
    border-radius: var(--rad);
    font-family: var(--heading-font);
    font-weight:bold;
    letter-spacing:.02rem;
}
.btn-primary:hover, .navbar-toggler:hover  {
    background-color: var(--primary-light);
     border-color:var(--primary);
}

.btn-primary:active, .navbar-toggler:active  {
  
    background-color: var(--primary-dark);
     border-color:var(--primary-light);
    transform: scale(.95);
}

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

.btn-secondary:hover {
        background-color: var(--secondary-dark);
    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: #8999ad;
    /* 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:white;
}
.hero:before {
    position:absolute;
    display:block;
    content:'';
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color:rgb(170,170,170);
    background-image:url(images/scene-bg.jpg);
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    opacity: 1;
    z-index:0;
}


.hero h1 {
    font-weight:500;
    position:relative;
    z-index: 1;
    font-weight:bold;
        
     

}

.hero .container>div {   
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);}

.hero p {
    font-size:1.7rem;
    position:relative;
    z-index: 1;

}
.hero .btn-container {
    display: flex;
    flex-direction: row;
/*    justify-content: center;*/
    position:relative;

}

.subpage-header {
    position:relative;
/*    background-color:#262626;*/
    border-bottom:4px solid var(--primary);
    color:#ffffff;
    padding: 5rem 3rem;

}
.subpage-header:before {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:rgb(100,100,110);
    background-image:url(images/scene-bg.jpg);
    background-position:center center;
    background-blend-mode: multiply;
    content:'';
    display:block;
    opacity:1;
    z-index:0;
/*    padding: 5rem 3rem;*/
}


.subpage-header * {
    position:relative;
}
.subpage-header .container {
    
     -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.subpage-header h2 {
    font-size:2rem;
    font-weight:bold;
}

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

.row {
    position: relative;
}
.album {
    border-radius:none;
}


.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);

}
.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.5rem;    
}
.video-caption p {
    font-size:1rem;
    color:#6a705c;
}
.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:170px;
    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.4rem;
}


.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.5rem;
    font-weight:600;
}
.info-section  p {
    line-height:1.7;
}
.info-section  p.lead {
    font-size:1.6rem;
    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(238, 240, 230, 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(21, 136, 194,.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) {
    .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 .btn-container {
    flex-direction: column;
    }
    
    .hero .btn-container .btn {
     margin:auto auto 10px 0;
    }
    
    .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%;
    }
    
    .lesson-section div:first-child  {
        order:2;
    }
}

/* .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;*/

}
