
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    font-family: Roboto, Nunito, Oxygen, Ubuntu, Cantarell, sans-serif;
      -webkit-font-smoothing: antialiased;
  }
  
    html  {
    overflow-y: auto;
    overflow-x: auto;
    background-color: #ffffff;
  }

  html, body, #root {
    height: 100%;
  }

  #root, body {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
  }
  
  .yellowbg {
    background-color: #E9B000;
  }

  .pinkbg {
    background-color: #fb43eb;
  }
  
  .bluebg {
    background-color: #457493;
  }

  .greenbg {
    background-color: #46877f;
  }

/* ############### header ########################### */
  .header-flex {
    display: flex;
    /*align-items: stretch;*/
  }

  .header-flex-item:nth-of-type(1) { flex-grow: 1; }

  .header-flex-item:nth-of-type(2) { flex-grow: 2; }

  .header-flex-item:nth-of-type(3) { flex-grow: 1; }

  .header-flex-item:nth-of-type(2) span {
    align-self: flex-end;
  }

  .itembottom {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      height: 100%;
      margin-right: 2rem;
  }

  .itemcenter {
    float:inline-end;
  }

  .itemright {
    float: right;
  }

  .cellbottom {
    display: table-cell;
    vertical-align: bottom;
    height: 100%;
  }

  .imgheader {
    height: 80px;
    width: auto;
    margin: 5px 0 0 0;
  }

  /* ############### footer ########################### */
  .landing-footer {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding: 1rem;
  }

  .center {
    align-items: center;
    justify-items: center;
  }

  .imgfooter {
    height: 100px;
    width: auto;
    margin: 0.1rem 0.4rem 0.1rem 0.4rem;
    /*padding: 0 0.2rem 0 0.2rem; */
  }

  .footertitle {
    margin-bottom: 0.1rem;
  }

  .footersubtitle {
    font-weight: 600;
  }

  .footersub {
    font-size: .9rem;
  }

  .footertxt, .footersubtitle, .footersub {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
  }

  .link {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: #505052;
  }
  
  .link:hover {
    color: black;
    text-decoration: underline;
  }

  .linksocial {
    cursor: pointer;
    text-decoration: none;
    color: black;
    margin: 0 .2rem 0 .2rem;
  }
  /* ############### main, ########################### */
  .wrap  {
    display: flex;
    flex-wrap: wrap;
  }

  .container {
    flex: 100%;  /* 33% */
    min-height: 80vh; /*  90vh */
    color: white;
    padding: 2rem;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
  }
/*    */
@media screen and (min-width: 768px) {
    .container {
        flex: 50%;
        min-height: 70vh;
    }
  }
  
 @media screen and (min-width: 1600px) {
    .container {
        flex: 25%;
        min-height: 90vh;
    }
  }


  .boximgcnt {
    height: 12rem;
  }

  .boximg {
    height: 100%;
    width: auto;
    margin: 0.08rem;
  }

  .boxheader {
    min-height: 6rem;
    padding-top: 10%;
  }

  .boxcontent {
    min-height: 12rem;
    padding-top: 6%;
  }

  .boxhead2 {
    margin: 0;
    font-weight: 300;
    font-size: 3.75rem;
    line-height: 1.2;
  }

  .boxheadsub {
    font-size: 3rem;
  }

  .boxlink {
    margin-top: auto;
  }

  .outlinebutton {
    display: inline-flex;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    min-width: 64px;
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid white;
    color: inherit;
    cursor: pointer;
  }
  
    /* MENU  */
  /* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Button styling */
.menu-toggle {
  display: inline-block;
  padding: .75em 15px;
  line-height: 1em;
  font-size: 1em;
  color: #333;
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: #504646;
}

/*
 Default styles + Mobile first
 Offscreen menu style
*/
.main-menu {
  position: absolute;
  display: none;
  left: -200px;
  top: 0;
  height: 100%;
	/* overflow-y: scroll; */
	overflow-x: visible;
	transition: left 0.3s ease,
				      box-shadow 0.3s ease;
	z-index: 999;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 2.5em 0 0;
  /* Hide shadow w/ -8px while 'closed' */
  -webkit-box-shadow: -8px 0 8px rgba(0,0,0,.5);
     -moz-box-shadow: -8px 0 8px rgba(0,0,0,.5);
          box-shadow: -8px 0 8px rgba(0,0,0,.5);
  min-height: 100%;
  width: 200px;
  background: #1a1a1a;
}

.main-menu a {
  display: block;
  padding: .75em 15px;
  line-height: 1em;
  font-size: 1.2em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #383838;
}

.main-menu li:first-child a {
  border-top: 1px solid #383838;
}

.main-menu a:hover,
.main-menu a:focus {
  background: #333;
  text-decoration: underline;
}

.main-menu .menu-close {
  position: absolute;
  right: 0;
  top: 0;
}

/*
 On small devices, allow it to toggle...
 :target for non-JavaScript
 [aria-expanded] will be used if/when JavaScript is added to improve interaction, though it's completely optional.
*/
.main-menu:target,
.main-menu[aria-expanded="true"] {
  display: block;
  left: 0;
  outline: none;
  -moz-box-shadow: 3px 0 12px rgba(0,0,0,.25);
  -webkit-box-shadow: 3px 0 12px rgba(0,0,0,.25);
  box-shadow: 3px 0 12px rgba(0,0,0,.25);
}

.main-menu:target .menu-close,
.main-menu[aria-expanded="true"] .menu-close {
  z-index: 1001;
}

.main-menu:target ul,
.main-menu[aria-expanded="true"] ul {
  position: relative;
  z-index: 1000;
}

/* 
 We could us `.main-menu:target:after`, but
 it wouldn't be clickable.
*/
.main-menu:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop{
  position: absolute;
  display: block;  
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: #000;
  background: rgba(0,0,0,.85);
  cursor: default;
}

@supports (position: fixed) {
  .main-menu,
  .main-menu:target + .backdrop,
  .main-menu[aria-expanded="true"] + .backdrop{
    position: fixed;
  }
}

/*
 Larger screen styling
 Horizontal menu
*/
@media (min-width: 768px) {
  .menu-toggle,
  .main-menu .menu-close {
    display: none;
  }
  
  /* Undo positioning of off-canvas menu */
  .main-menu {
    position: relative;
		left: auto;
		top: 50px;
		height: auto;
    display: block;
  }
  
  .main-menu ul {
    display: flex;
    
    /* Undo off-canvas styling */
    padding: 0;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    height: auto;
    width: auto;
    background: none;
  }
  
  .main-menu a {
    color: #494a4b;
    border: 0 !important; /* Remove borders from off-canvas styling */
  }
  
  .main-menu a:hover,
  .main-menu a:focus {
    background: none; /* Remove background from off-canvas styling */
    color: #1b1616;
  }
}

.logo {
  float: right;
  margin: 0 30px 0 10px;
  font-size: 1.5em;
}

