:root {
  --sds-blue: #1483c1;
  --sds-dark-blue: #1b345f;
  --sds-green: #96cb62;
  --sds-lite-green: #fef9e5;
  --sds-tan: #fef9e5;
  font-size: 14px;
  line-height: 1.1rem;
}

html, 
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

.grid-x {
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

a:link,
a:active,
a:visited {
  color: black;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #666;
  text-decoration: none;
}


.montserrat {
  font-family: "Montserrat", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
}


.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

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

.blue {
  color: var(--sds-blue);
}



.btn-green {
  border-radius:28px;
  padding: 16px 31px;
  background-color: var(--sds-green);
  display:inline-block;
	cursor:pointer;
	color:#ffffff!important;
  text-decoration:none!important;
	text-shadow:0px 1px 0px #2f6627;
  margin: 10px 0;
  font-weight: 700;
  text-transform: uppercase;
  border: 0;
}


.green-line-top {
  border-top: 10px solid var(--sds-green);
}
.green-line-bottom {
  border-bottom: 10px solid var(--sds-green);
}

.section-white,
.section-news {
  background-color: white;
  color: black;
  padding: 0 5%;
}

.section-tan {
  background-color: var(--sds-tan);
  color: black;
  padding: 0 5%;
}

.section-blue {
  background-color: var(--sds-blue);
  color: white;padding: 0 5%;
}

.section-green {
  background-color: var(--sds-green);
  color: white;padding: 0 5%;
} 

.section-lite-green {
  background-color: var(--sds-lite-green);
  color: black;padding: 0 5%;
}

.section-dark-blue {
  background-color: var(--sds-dark-blue);
  color: white;padding: 0 5%;
} 

.section-pattern {
  background-image: url('../img/bg_pattern.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 0 5%;
}



.block-blue {
  background-color: #d8f2fc;
  color: #000;
  border-radius: 20px;
  padding: 20px;
}

.block-green {
  background-color: #ecf4e0;
  color: #000;
  border-radius: 20px;
  padding: 20px;
}

.block-orange {
  background-color: #fcf0e0;
  color: #000;
  border-radius: 20px;
  padding: 20px;
}

.block-grey {
  background-color: #eae9f0;
  color: #000;
  border-radius: 20px;
  padding: 20px;
}


.heading {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 20px 0px;
} 

.intro {
  font-size: 1.2rem;
  font-weight: 700;
}

.intro-thin {
  font-size: 1.857rem;
  font-weight: 300;
}



.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }



#TopBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1000;
  height: 64px;
  box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
}
  #TopBar .grid-x {
    padding: 4px 0;
  }

  a.desktop-nav {
    display: inline-block;
    padding: 0 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
  }
  a.desktop-nav.active {
    color: var(--sds-green);
  }


.btn-nav {
  border-radius:28px;
  padding: 8px 15px;
  background-color: var(--sds-blue);
  display:inline-block;
	cursor:pointer;
	color:#ffffff!important;
  text-decoration:none!important;
	text-shadow:0px 1px 0px #2f6627;
  font-weight: 700;
}

#NavTrigger {
  font-size: 32px;
  padding: 12px;
  cursor: pointer;
}

  #MainNav {
    display: none;
    position: absolute;
    top: -4px;
    right: 0;z-index: 1001;
    background-color: var(--sds-dark-blue);
    text-align: left;
    padding: 0 50px;
    padding-top: -4px;
    width: 300px;
  }
    #MainNav.open {
      display: block;
    }

    #MainNav ul {
      list-style-type: none;
    }


  #MainNav a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 3px 0;
    font-weight: 700;
  }

  #MainNav ul ul a {
    font-weight: 300;
  }

  #MainNavClose {
    color: white;
    font-size: 32px;
    cursor: pointer;
    text-align: right;
    position: relative;
    right: -20px;
    padding-top: 10px;
  }



main {
  padding-top: 64px;
}



#Banner .grid-x {
  padding: 0;
}


.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.banner-media {
  width: 100%;
  height: 600px;
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
  padding: 0;
}
  .banner-media img,
  .banner-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
.banner-text {
  width: 100%;
  padding: 20px;
  z-index: 2;
  position: absolute;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  color: #FFF;
}

.banner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}


.blue-intro-text {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  padding: 20px 0px;
}




#Footer {
  border-top: 4px solid var(--sds-green);
  background-color: var(--sds-dark-blue);
  color: white;
  padding: 20px;
  position: relative;
}
  .footer-nav a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    text-align: left;
  }

#Footer a {
  color: white;
  text-decoration: none;
}
  #Footer a:hover {
    opacity: 0.8;
  }

#FooterCopyCredit {
  position: relative;
  padding: 0;
  /* top: -50px; */
}
  #FooterCopyCredit > .cell {
    display: flex;
    justify-content: right;
    align-items: center;
    
  }

  #FooterCopyCredit > .cell > div {
    /* width: 25%;
    display: inline-block; */
    padding: 0 20px;
    position: relative;
    top: -50px;
  }



  /* IntersectionObserver */
  .appear {
    transition: all 0.8s;
    opacity: 0;
    transform: translateY(40px);
  }
  
  .appear.inview {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
  }


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

    :root {
      font-size: 12px;
    }

    /* .grid-x {
      padding: 0 20px;
    } */

    #HeaderLogo {
      padding-left: 10px;
    }



    #MainNav a {
      color: white;
      text-decoration: none;
      display: block;
      padding: 8px 0;
      font-weight: 700;
      font-size: 1.2rem;
    }

    #Banner {
      padding: 0;
    }

    .banner-media {
      height: 280px;
    }

    /* .banner-text {
      font-size: 2.5rem;
    } */

    /* .heading {
      font-size: 2rem;
    } */

    /* .intro {
      font-size: 1rem;
    } */

    /* .intro-thin {
      font-size: 1.5rem;
    } */

    /* .blue-intro-text {
      font-size: 1.5rem;
    } */

    .btn-green {
      padding: 12px 24px;
    }

    .btn-nav {
      padding: 8px 12px;
    }


    /* #MainNav ul ul a {
      font-size: 0.8rem;
    } */

    /* #MainNavClose {
      font-size: 24px;
    } */

    #GetInPerfectHarmony {
      padding-top: 20px;
    }

    #FooterCopyCredit {
      padding: 0;
    }

    #FooterCopyCredit > .cell {
      display: block;
    }

    #FooterCopyCredit > .cell > div {
      display: block;
      padding: 0;
      width: 100%;
      top: 0;
    }
    
  }