:root {
  --benny-green: rgba(149,200,68,255);
}
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  src: local(''),
      url('webfonts/RobotoSlab-VariableFont_wght.ttf') format('ttf'), 
}
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto Slab', serif;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
* Initial state, hidden off screen
*/
.clicky-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
}

/**
* Open/Close Menu Behavior with JS
*/
.clicky-menu ul[aria-hidden="false"] {
  visibility: visible;
}

/* Prevent offscreen-submenus */
.clicky-menu .sub-menu--right {
  left: auto !important;
  right: 0 !important;
}


#errorMsg {
  color: #C34700;
  font-size: xx-large;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

html, body {
  height: 100vh;
  font-size: 18px;
  background-color: #fff;
}

header {
  background-image: url('../Images/banner.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: background-image 2s ease-in-out;
  -o-transition: background-image 2s ease-in-out;
  transition: background-image 2s ease-in-out;
  width: 100%;
  height: 70%;
  padding-top: 2rem;
  color: #fff;
}

/* Hidden SVG used for down arrows */
svg[hidden] {
  display: none;
  position: absolute;
}

.nav-wrapper-outer {
  width: 100%;
  background-color: rgba(65, 57, 57, .75);
}

.nav-wrapper-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}
.clicky-menu {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 991px) {
  .clicky-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* General Link & Button Styles */
.clicky-menu a, .ben-logo a,
.clicky-menu button {
  margin: .25em;
  background: transparent;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-family: inherit;
  border-radius: 3px;
  padding: 1rem;
}

.clicky-menu a:hover,
.clicky-menu button:hover {
  background: var(--benny-green);
  color: #000;
}

.clicky-menu a:focus,
.clicky-menu button:focus {
  outline: .125em dotted purple;
  outline-offset: -.125em;
}

/* Top Level Items */
.clicky-menu > li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.clicky-menu > li > a,
.clicky-menu > li > button {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  font-size: inherit;
  cursor: pointer;
}
@media (min-width: 991px) {
  .clicky-menu > li > a,
  .clicky-menu > li > button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }	
}

/* Icon */
.clicky-menu svg {
  width: 1.5em;
  height: 1.5em;
  margin-left: .5em;
}

.clicky-menu [aria-expanded="true"] svg {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}

/* Submenu Styles */
.clicky-menu ul {
  min-width: 100%;
  width: 12em;
  margin-top: .25em;
  padding: 0;
  list-style: none;
  background-color: rgba(65, 57, 57, .6);
  border-radius: 3px;
  z-index: 1;
}

/* Responsive Submenu Behavior */
.clicky-menu ul[aria-hidden="false"] {
  position: static;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
}

@media (min-width: 991px) {
  .clicky-menu ul[aria-hidden="false"] {
    position: absolute;
    width: auto;
  }
}

/* Submenu Links */
.clicky-menu ul a {
  display: block;
  padding-top: .375em;
  padding-bottom: .375em;
}
@media (min-width: 991px) {
  .clicky-menu ul a {
    padding: .375em 1em;
    white-space: nowrap;
  }
}
.ben-logo img {
  width: 150px;
  height: auto;
}

#menu-toggle {
  color: #fff;
  line-height: 50px;
  font-size: 32px;
  cursor: pointer;
  display: none;
  margin: 24px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  -ms-transform: rotate(-45deg) translate(-9px, 6px);
      transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  -ms-transform: rotate(45deg) translate(-8px, -8px);
      transform: rotate(45deg) translate(-8px, -8px);
}

.subheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  padding-top: 2em;
  padding-bottom: 1em;
  margin: 0 auto;
  margin-top: 8em;
  background-color: rgba(65, 57, 57, .9);
}
.subheader h2 {
  font-size: 2em;
}

@media screen and (min-width: 1300px) and (max-width: 1400px){
  .subheader {
    margin-top: 2em;
  }
}
.subdetail {
  padding: 1em;
}


.subdetail ul.clicky-menu li button {
  border-radius: 9px 9px 9px 9px;
  color: #EEE;
  background-color: rgb(65, 57, 57);
  padding: .5em;
}

.subdetail ul.clicky-menu ul {
  border-radius: 9px 9px 9px 9px;
  color: #EEE;
  background-color: slategray;
  padding: .5em;
}

.main-wrapper {
  width: 95%;
  padding: 0 2rem;
  margin: 1rem auto;
}
.main-header {
  text-align: center;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 40%;
  grid-template-columns: 60% 40%; 
  grid-gap: 2rem;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: 2rem 0;
}
@media (max-width: 991px) {
  .grid {
    grid-template-columns: 100%;
  }
}

.grid3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 33% 33%;
  grid-template-columns: 33% 33% 33%; 
  grid-gap: 2rem;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: 2rem 0;
}
@media (max-width: 991px) {
  .grid3 {
    grid-template-columns: 100%;
  }
}

.card {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card > img {
  width: 100%;
  height: auto;
  display:block;
}

/* Slideshow container */
.slideshow-container {
  margin: auto;
  max-width: 800px;
}

.blurb {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1em;
  justify-content: start;
}
.blurb p, .blurb2 p {
  padding: 10px;
  font-size: larger;
}

.blurb2 > ul {
  padding: 10px;
  list-style-type: disc;
  list-style-position: inside;
  font-size: larger;
}


.mySlides img {
  object-fit: cover; 
  object-position: 55% 50%;
  width: 100%;
  height: auto;
}
.myImages img {
  width: 100%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.overlay {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
}

.overlay-inner {
  background: white;
  width: 800px;
  height: 600px;
  padding: 20px;
}

.overlay img {
  object-fit: cover; 
  object-position: 55% 50%;
  width: 100%;
}

#slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.slider-left, .slider-right {
  position: absolute;
  bottom: 23px;
  background: rgba(192, 192, 192, 0.6);
  padding: 15px;
  text-align: center;
}

.slider-left {
  left: 20px;
}

.slider-right {
  right: 20px;
}


.monofont{
  font-family: 'Roboto Mono', monospace;
  font-weight: bold;
  font-size: smaller;
}

footer{
  width: 100%;
  background: #111;
}
footer .content{
  max-width: 1350px;
  margin: auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .content p,a{
  color: #fff;
}
footer .content .box{
  width: 33%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
footer .content .topic{
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;

}
footer .content p{
  text-align: justify;
}
footer .content .lower .topic{
  margin: 24px 0 5px 0;
}
footer .content .lower i{
  padding-right: 16px;
}
footer .content .middle{
  padding-left: 80px;
}
footer .content .middle a{
  line-height: 32px;
}
footer .content .right input[type="text"]{
  height: 45px;
  width: 100%;
  outline: none;
  color: #d9d9d9;
  background: #000;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 17px;
  border: 2px solid #222222;
}
footer .content .right input[type="submit"]{
  height: 42px;
  width: 100%;
  font-size: 18px;
  color: #d9d9d9;
  background: black;
  outline: none;
  border-radius: 5px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 12px;
  border: 2px solid #eb2f06;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.content .right input[type="submit"]:hover{
  background: white;
  color:  black;
}
footer .content .media-icons a{
  font-size: 16px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  line-height: 43px;
  border-radius: 5px;
  border: 2px solid #222222;
  margin: 30px 5px 0 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.content .media-icons a:hover{
  border-color: #eb2f06;
}
footer .bottom{
  width: 100%;
  text-align: right;
  color: #d9d9d9;
  padding: 0 40px 5px 0;
}
footer .bottom a{
  color: #eb2f06;
}
footer a{
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
footer a:hover{
  color: #eb2f06;
}
@media (max-width:1100px) {
  footer .content .middle{
    padding-left: 50px;
  }
}
@media (max-width:950px){
  footer .content .box{
    width: 50%;
  }
  .content .right{
    margin-top: 40px;
  }
}
@media (max-width:560px){
  footer{
    position: relative;
  }
  footer .content .box{
    width: 100%;
    margin-top: 30px;
  }
  footer .content .middle{
    padding-left: 0;
  }
}

@media screen and (max-width: 990px) {
  header {
    background-position: right bottom;
    padding-top: 0;
  }
  .nav-wrapper-inner {
    width: 100%;
  }

  #menu-toggle {
    display: block;
  }
  #site-navigation {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: calc(100vh - 100px);
    top: 100px;
    left: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    z-index: 999999;
    font-size: xx-large;
    background-color: rgba(65, 57, 57, .8);
  }

  .subheader {
    width: 100%;
    padding-top: 5em;
    padding-bottom: 1em;
    margin: 0 auto;
    margin-top: 2em;
    background-color: rgba(65, 57, 57, .9);
  }
  .subheader h2 {
    font-size: small;
  }
  .subdetail {
    padding: 1em;
    font-size: small;
  }

  .main-wrapper {
    width: 100%;
    padding: 0;
  }
.overlay-inner {
  width: 100%;
  padding: 0;
}

}
