#cal table,
.clear {
  clear: both
}

.close-button,
h1,
h3 {
  text-align: center
}

.burger,
.hidden {
  display: none
}

#cal table caption,
.close-button,
:link:hover,
a:hover,
input {
  font-weight: 700
}

a {
  text-decoration: none;
}
body {
  background: #EEE;
  padding-top: 6em;
  box-sizing: border-box;
}

form {
  max-width: 50%;
  margin: 0 auto
}

form div {
  margin-top: 0;
  min-width: 40%;
  max-width: 80%;
  min-height: 50px;
  max-height: 80px;
  padding-left: 10%;
  padding-top: 15px
}

header {
  z-index: 9;
}
h1 {
  font-size: 2em;
  color: #3c2f2f;
  font-family: Lobster, Papyrus, serif
}

h3 {
  margin: 2em auto
}

input {
  float: right;
  height: 1.75em;
  border-radius: 5px
}

main {
  display: grid;
  grid-template-columns: repeat(10, 10vw);
  grid-template-rows: repeat(6, 10vh);
  /* background: #00a0b0; */
}
.main-box {
  background-color: rgba(255,255,255,0.8);
  grid-column-start: 5;
  grid-column-end: 10;
  grid-row-start: 3;
  grid-row-end: 6;
  padding: 1em;
  border-radius: 5px;
}
main p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  grid-column-start: 5;
  grid-column-end: 10;
  padding: 1em;
  font-size: 1.25em;
  line-height: 125%;
}
.big_frank {
  grid-column-start: 3;
  grid-row-start: 3;
}

.right {
  float: right
}

#opt-label {
  font-size: .9em
}

.clear {
  height: 0;
  margin: 0;
  padding: 0
}

.close-button {
  border-radius: 50%;
  margin-top: 1em;
  margin-right: 1em;
  height: 1.5em;
  width: 1.5em;
  background-color: beige;
  float: right;
  font-family: sans-serif;
  border: 2px solid #FFC90A;
  padding: 0
}

.container form,
.nav {
  float: left
}

.close-button:hover {
  cursor: pointer
}

.close-button span {
  position: absolute;
  margin: .2em 0 0 -.3em;
  padding: 0
}

.container {
  border-radius: 5px;
  overflow: auto;
  width: 65%;
  margin: 0 auto;
  background-color: #FFF;
  color: #000;
  padding: 5em 5em 12em
}

.form-container {
  width: 100%
}

.form-item {
  width: 90%;
  padding: .5em;
  margin-right: auto;
  margin-left: auto
}

.form-item input {
  width: 50%;
  border-radius: 5px
}

.headline-spacer {
  height: 80px
}

.left-column {
  float: left;
  width: 38%;
  padding: 4%;
  border: 1px solid red;
  background-color: #eb6841
}

.main-copy {
  background-color: #FFD;
  margin-top: 1em;
  padding: 1em;
  border-radius: 5px;
  font-size: 1.25em
}
.main-container {
  height: 100vh;
  width: 100vw;
  background-image: url("../images/sidekix-media-1129788-unsplash.jpg");
  background-size: cover;
  position: absolute;
  left:0;
  padding: 0;
}
.overlay25 {
  height: 100%;
  width: 100%;
  background-color: rgba(255,255,255,0.8);
  margin-top: -21px;

}
.nav-bar {
  height: 7em;
  position: absolute;
  top: 0px;
  margin: 0px;
  left: 0px;
  width: 100%;
  background-color: #29A036
}
.nav-bar_content {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
}

.nono {
  position: relative;
  float: none !important;
  margin: 0 auto;
  top: -20;
  left: 10%;
  bottom: 50px
}

.right-column {
  float: left;
  width: 38%;
  padding: 4%;
  border: 1px solid red;
  background-color: #eb6841
}

.nav-bar-logo {
  position: absolute;
  top: 0px;
  width: 15em;
}


.nav-item {
  height: 1.65em;
  padding: 1.65em
}

.nav-item a,
.nav-item span,
.nav-bar-logo a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-weight: 700
}

.nav-left {
  margin-left: 5%
}

.nav-center {
  margin-left: 25%
}


@media only screen and (max-width :1000px) {
  .big_frank {
    grid-column-start: 2;
  }
  .nav-item {
    display: none
  }

  .burger {
    grid-column-start: 7;
    grid-column-end: 7;
    display: block;
    height: 34%;
    border: 0;
    background: 0 0;
    outline: 0;
    padding: 0;
    cursor: pointer;
    border-bottom: 4px solid currentColor;
    width: 28px;
    transition: border-bottom 1s ease-in-out;
    -webkit-transition: border-bottom 1s ease-in-out;
    color: #c8ffff;
    float: right;
    margin-right: 2em;
    margin-top: 2.5em
  }

  .burger::-moz-focus-inner {
    border: 0;
    padding: 0
  }

  .burger:after,
  .burger:before {
    content: "";
    display: block;
    border-bottom: 4px solid currentColor;
    width: 100%;
    margin-bottom: 5px;
    transition: transform .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out
  }

  .burger.open {
    border-bottom: 4px solid transparent;
    transition: border-bottom .8s ease-in-out;
    -webkit-transition: border-bottom .8s ease-in-out
  }

  .burger.open:before {
    transform: rotate(-405deg) translateY(1px) translateX(-3px);
    -webkit-transform: rotate(-405deg) translateY(1px) translateX(-3px);
    transition: transform .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out
  }

  .burger.open:after {
    transform: rotate(405deg) translateY(-4px) translateX(-5px);
    -webkit-transform: rotate(405deg) translateY(-4px) translateX(-5px);
    transition: transform .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out
  }

  .open-nav {
    height: 4em;
    width: 100%;
    border-bottom: 3px solid #00a0b0;
    background-color: #29A036;
    text-align: center;
    padding-top: 2em
  }

  .open-nav a {
    text-decoration: none;
    color: #c8ffff;
    font-weight: 700
  }

  .vert-nav {
    width: 100%;
    /* margin-top: -1.5em */
  }
}

#cal table td,
#cal table th {
  text-align: right
}

@media only screen and (max-device-width :736px),
screen and (max-width :736px) {
  body {
    padding-left: 0;
    padding-right: 0
  }
  .big_frank {
    display: none;
  }
  main p {
    grid-column-start: 2;
  }
  .container {
    width: 100%;
    padding: 1em 0
  }

  .main-copy {
    float: none
  }
}

#next,
#prev {
  padding: 4px
}

#close,
#next {
  float: right;
  cursor: pointer
}

#cal {
  display: none;
  position: absolute;
  left: 40%;
  top: 75%;
  background: #4f372d;
  color: #fff;
  padding: 10px;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px
}

#cal table caption {
  font-size: 14pt;
  margin-top: 10px;
  margin-bottom: 10px;
  background: #00a0b0
}

#cal table td,
#cal table th {
  width: 2em;
  padding: 4px
}

#cal table td {
  color: #b2b8b7;
  cursor: pointer
}

#prev {
  float: left;
  cursor: pointer
}

#cal table td.futuredate {
  color: #fff
}

#cal table td.futuredate:hover,
#close:hover,
#next:hover,
#prev:hover {
  background: #ff0;
  color: #000
}

#close {
  color: #fff;
  padding: 0 4px
}

#close span {
  font-size: 20pt
}