:root{
  --fontbold: /*'geistbold', 'iAWriterQuattroS-Bold',*/ 'Helvetica', 'Geist Bold', 'Arial', 'Courier New', sans-serif;
  --fontnormal: /*'geistregular', 'iAWriterQuattroS-Regular',*/ 'Helvetica', 'Arial', 'Courier New', sans-serif;
  }

/* Reset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

div#signup
{
  margin-top:50px;
}

.ml-embedded {
  margin-top:1em;
}

@font-face {
  font-family: 'iAWriterQuattroS-Bold';
  src: url('fonts/iAWriterQuattroS-Bold.woff2') format('woff2'),
       url('fonts/iAWriterQuattroS-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'iAWriterQuattroS-Regular';
  src: url('fonts/iAWriterQuattroS-Regular.woff2') format('woff2'),
       url('fonts/iAWriterQuattroS-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'geistblack';
  src: url('fonts/geist-black-webfont.woff2') format('woff2'),
       url('fonts/geist-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'geistbold';
  src: url('fonts/geist-bold-webfont.woff2') format('woff2'),
       url('fonts/geist-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


@font-face {
  font-family: 'geistlight';
  src: url('fonts/geist-light-webfont.woff2') format('woff2'),
       url('fonts/geist-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


@font-face {
  font-family: 'geistmedium';
  src: url('fonts/geist-medium-webfont.woff2') format('woff2'),
       url('fonts/geist-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


@font-face {
  font-family: 'geistregular';
  src: url('fonts/geist-regular-webfont.woff2') format('woff2'),
       url('fonts/geist-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


@font-face {
  font-family: 'geistsemibold';
  src: url('fonts/geist-semibold-webfont.woff2') format('woff2'),
       url('fonts/geist-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


@font-face {
  font-family: 'geistthin';
  src: url('fonts/geist-thin-webfont.woff2') format('woff2'),
       url('fonts/geist-thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


@font-face {
  font-family: 'geistultrablack';
  src: url('fonts/geist-ultrablack-webfont.woff2') format('woff2'),
       url('fonts/geist-ultrablack-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}


@font-face {
  font-family: 'geistultralight';
  src: url('fonts/geist-ultralight-webfont.woff2') format('woff2'),
       url('fonts/geist-ultralight-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}     

header {
  display:none;
}      

body, footer {
  background-color: hsl(100, 3%, 90%);
  font-family: var(--fontnormal);
  color: #3B312E;
  line-height: 1.3;
  font-size: 1.2em;
  margin:auto;
  letter-spacing: normal;
}


/* grid container */
.left-sidebar-grid {
  display:grid;
  grid-template-areas:
      'header'
      'left-sidebar'
      'main-content'
      'left-sidebar-text'
      'main-content-text'
      'footer';
}

/* general column padding */
.left-sidebar-grid > * {
  padding:1rem;
}

/* assign columns to grid areas */
.left-sidebar-grid > .header {
  grid-area:header;
}
.left-sidebar-grid > .main-content {
  grid-area:main-content;
  background-color:hsl(76,25%,35%);
}
.left-sidebar-grid > .main-content-text {
  grid-area:main-content-text;
  
}
.left-sidebar-grid > .left-sidebar {
  grid-area:left-sidebar;
  background-color:hsl(76,25%,35%);
}
.left-sidebar-grid > .left-sidebar-text {
  grid-area:left-sidebar-text;
}
.left-sidebar-grid > .footer {
  grid-area:footer;
}

footer {
  display:none;
  height:5rem;
  background-color:hsl(60, 1%, 27%);
  display:none; /* change to flex */
  align-items:center;
  padding:1rem;
  justify-content: center;
  color:white;
  font-size: 1em;
}

/* tablet breakpoint */
@media (min-width:768px) {
  .left-sidebar-grid {
      grid-template-columns:repeat(3, 1fr);
      grid-template-areas:
          'header header header'
          'left-sidebar main-content main-content'
          'left-sidebar-text main-content-text main-content-text'
          'footer footer footer';
  }

  section.left-sidebar{
      height: 100vh;
  }
}

section.left-sidebar, main.main-content {
  display:flex;
  align-items:center;
  color:white;
}

div.keylinetext {
  position:relative;
  margin:auto;
}

div#text {
  padding-top: 50px;
}

h1 {
  font-family: var(--fontbold);
  margin-bottom:1em;
  font-size: 2em;
  line-height: 1.1;
}

h2 {
font-family: var(--fontnormal);
font-size: 2em;
margin-bottom:0.5em;
margin-top:2em;
}

.button {
  margin-right:10px;
  margin-top:20px;
  background-color: #6D6F43;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius:20px;
}

.button:hover {
  background-color: #7E8468;
}

#circle {
  max-width: 300px;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: auto;
}

#slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
}

#slideshow img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

#slideshow img.active {
  opacity: 1;
}

#logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 120%;
  height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #6D6F43;
  opacity: 0.5;
}

#logo img {
  max-width: 80%;
  max-height: 80%;
}

li {
margin-bottom: 0.5rem;
background-color: rgba(255,255,255,0.2);
list-style-position: inside;
border-radius:2px;
padding: 0.25rem;
list-style-type:none;
}

ul li {
list-style-type: none;
}

ol li {
  list-style-type: decimal-leading-zero;
}

p {
margin-bottom:1em;
}

p.nobottommargin {
  margin-bottom:0em;
}

p.bold {
font-family: var(--fontbold);
}

a {
color:inherit;
}

div.offerings {
width: 100%;
border-radius:2px;
padding: 0.5rem;
margin-bottom:1em;
}

div.orange {
background-color: rgba(176, 107, 43, 1);
color:white;
}

div.green {
background-color: hsl(355,56%,33%);
color:white;
}

div.yellow {
background-color: #FFCD42;
}

span#textnumbers {
font-size:1.5em;

}


/*

#footer {
  position:fixed;
  bottom: 0;
  display: flex;
  width: 100%;
  z-index:-100;
}

#acknowledgement {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
opacity:0.2;
padding-bottom:5px;
}

*/