@import url("https://fonts.googleapis.com/css?family=IM+Fell+French+Canon+SC|Montserrat|Allerta+Stencil|Open+Sans|Shadows+Into+Light");
/*:root {*/
  /*this is a CSS variable, change value to change the number of columns that appear in the .header div*/
/*  --header-grid-columns: 6;*/
/*}*/


/*
Navbar
*/

#my-fancy-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
}

#fill-in-the-blanks-text {
  display: inline-block;
  margin-top: -3rem !important;
}

.mobile-navbar {
  display: none;
}
.nav-icon {
  margin: 1em;
  width: 40px;
  cursor: pointer;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: #000;
  border-radius: 3px;
  content: "";
  display: block;
  height: 5px;
  margin: 7px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*.nav-icon-x:before {*/
/*  -webkit-transform: translateY(12px) rotate(135deg);*/
/*  -ms-transform: translateY(12px) rotate(135deg);*/
/*  transform: translateY(12px) rotate(135deg);*/
/*}*/

/*.nav-icon-x:after {*/
/*  -webkit-transform: translateY(-12px) rotate(-135deg);*/
/*  -ms-transform: translateY(-12px) rotate(-135deg);*/
/*  transform: translateY(-12px) rotate(-135deg);*/
/*}*/

/*.nav-icon-x div {*/
/*  -webkit-transform: scale(0);*/

/*  -ms-transform: scale(0);*/

/*  transform: scale(0);*/
/*}*/

/*
Main page layout
*/

.wrapper, .page-row__wrapper {
  font-family: sans-serif;
  background: #fBF5F3; 
                /* #FFFFFF*/; 
  
  border: 1px solid;
  display: grid;
  /*
  this is shorthand.
  grid-template: 1 /2 /3 /4;
  */
  
  grid-template-columns: repeat(2, 1fr) 300px;

  /* 
  grid template area names must form a square / rectangle. ALL areas with same name are making up ONE element when called with grid-area: [name] 
  */
  /* grid-template-areas:
    "header header header"
    "banner banner banner"
    "intro-text intro-text sidebar1"
    "intro-text intro-text sidebar1"
    "img-grid img-grid sidebar1"
    "mig-grid img-grid sidebar1"
    "vocab-grid vocab-grid vocab-grid"
    "vocab-grid vocab-grid vocab-grid"
    "text-section text-section text-section"
    "item-grid item-grid item-grid"
    "item-grid item-grid item-grid"
    "section section  ."
    "footer    footer     footer"; */
}






.text-section {
   grid-column: 1 / span 3;
    background: #fff;
    margin: 1px solid;
    padding-bottom: 50px;
    width: 100%;
   
}
.text-section a {
    text-align: left;
    
   
}

.vocab-grid {
    background: #fff !important;
    grid-column: 1 / span 3;
    display: flex;
    flex-wrap: wrap;
}

/*
Header styles
*/
.mobile-nav__links {
    grid-column: 1 / span 3;
    display: flex;
    text-align :center;
    height: 0px;
    overflow: hidden;
    flex-wrap: wrap;
    transition: all 0.5s ease;
}
.mobile-nav__links > div {
    width: 100%;
}
.header {
  margin-top: 10px;
  grid-column: 1 / span 3;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5px;
  width: 100%;
  height: 100%;
  padding-top: 15px;
  margin-bottom: 2.5%;
  margin-top: 20px;
  transition: all 0.5s ease;
}
.header-title__center {
    grid-column: span 2;
}
.header > div {
display: flex;
width: 100%;
justify-content: space-around;
}
.header > div > * {
    margin: auto 10px;
}

/*.header > div {*/
/*  -ms-grid-column-align: center;*/
/*  justify-self: center;*/
/*  -ms-flex-item-align: center;*/
/*  -ms-grid-row-align: center;*/
/*  align-self: center;*/
/*}*/

/* .right {*/
/*    grid-column-start: 5;*/
/*}*/

.circle-1 { 
    border-radius: 50%;
    background: green;
    height: 180px;
    width: 180px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.circle-1 a {
    color: white;
}

/*.call-info {*/
/*  grid-column: span var(--header-grid-columns);*/
/*  display: -ms-grid;*/
/*  display: grid;*/
/*  justify-items: center;*/
/*}*/
.nav-link {
  padding: 2.5% 0;
 
  grid-column: span 1;
}
.nav-link > a {
   border-bottom: 2px solid black;
}
.nav-link1 {
  padding: 2.5% 0;

  grid-column: span 1;
}
/*.call-info .icons span {*/
/*  width: 25px;*/
/*  padding: 2.5px;*/
/*}*/
/*.call-info .icons img {*/
/*  width: 25px;*/
/*}*/

.img-grid {
  grid-column: 1/ span 2;
  display: grid;
  grid-gap: 50px;

  grid-template-columns: repeat(2, 1fr);
 
  grid-template-rows: auto;
  padding-bottom: 5%;
  padding-left: 2.5%;
  justify-content: center;
  word-wrap: break-word;
}
.img-grid > div {
    padding: 2.5%;
}


.grid-span-3 {
    grid-column: 1/span 3;
}
/*grid-section__fullwidth*/
.grid-sctn__fw {
    grid-column: 1/span 3;
    margin: 2.5% auto;
}

.banner-img {
    height: 50vh;
    width: 100%;
    object-fit: cover;
}

.intro-text, .img-grid, .sidebar1 {
    background: #92DD42;
    padding: 2%;
    margin: 2.5%;
    border-radius: 20px;
}
 

.intro-text {
  grid-column: 1 / span 3;
  display: block;
  margin: 2.5%;
}
.item-grid {
  grid-column: 1 / span 3;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 5px;
  margin: 2.5%;
  border: 2px solid;
  padding: 2.5%;
}
.sidebar1 {
    margin-top: 15px;
  grid-column: 3 / auto;
  grid-row: auto/ span 3;
  margin-left: 5%;
     /* added by Nick */
  background: white;
  padding-top: 0;
  padding: 10px;
}

.section {
  grid-column: 1 / span 2;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 5px;
  margin: 0 2.5%;
}
.section .right {
  grid-column: span 1;
}

.footer {
  grid-column: 1 / span 3;

  display: -webkit-box;
  display: flex;
  justify-content: space-evenly;
  margin: 2.5% 0;
  border-top: 2px solid;
}


.tooltip-group a {
    margin-left: 10px;
}


/*

Tooltip (fixed position)
*/

.tooltip {
    position: relative;
    border-bottom: none;
    text-decoration: none;
    max-width: 100%;
    
   
}

.tooltip-text.tooltip-text__over {
    position: absolute;
    z-index: 100;
    min-width: 100%;
    top: 103px;
    left: 103.5%;
    margin: 0;
    padding: 0;
    margin-left: -100%;
    background: aliceblue;
    color: #333;
    text-align: left;
    border-radius: 10px;
    margin-top: -100px;
}

.tooltip-text_2 .tooltip-text__over {
     position: absolute;
    z-index: 1;
    min-width: 100%;
    bottom: 0%;
    left: 100%;
    margin: 0;
    padding: 0;
    padding-left: 2px;
    margin-left: -100%;
    /* background: ; */
    color: #0000CD;
    text-align: left;
}

/*.tooltip .tooltip-text.tooltip-text__over {*/
/*    position: absolute;*/
/*    z-index: 1;*/
/*    width: max-content;*/
/*    bottom: 0%;*/
/*    left: 103%;*/
/*    margin: 0;*/
/*    padding: 1%;*/
/*    margin-left: -103%;*/
/*    background: #92DD42;*/
/*    color: #0000CD;*/
/*    text-align: center;*/
/*    border-radius: 2px;*/
/*}*/
/*
Utility styles
*/

/*.vertical-space {*/
/*    margin: 2.5% auto;*/
/*}*/

.center {
    margin: auto;
}
.tooltiptext {
    color: white;
    background: yellow;
    
}
img, iframe, video {
  width: 100%;
}
.img-grid img:not(.icon) {
    object-fit: cover;
    height: 400px;
}
textarea {
    
    font-size: inherit;
    
}
/*div, span, p {*/
/*    font-size: 20pt;*/
/*}*/
.tooltip-group ~ textarea {
    margin-left: 65px;
}
.toggle-handle__click {
    cursor: pointer;
    /* margi-left: 2.5rem; */
}
a {
  text-decoration: none;
  color: black;
  font-family: sans-serif;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  
}
 .header a:hover {
  font-size: 110%;
}
.collapse {
  padding: 0;
  border: 0;
  margin: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.flex {
    display: flex;
    
}
.flex-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-grid {
    flex-wrap: wrap;
    justify-content: center;
    
}
.flex-grid > div {
    width: 32%;
    margin: auto 2%;
}
h1,
h2,
h3,
h4 {
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif",
    sans-serif;
    text-align: center;
    margin: 0.5em;
}


.img-grid {
  grid-column: 1/ span 2;
  font-family: "Montserrat", sans-serif;
  font-size: 20pt;
  font-weight: bold;
}
p {
  font-family: "Montserrat", sans-serif;
  font-size: 20pt;
  font-weight: bold;
}
a {
  font-family: "Allerta Stencil", serf;
  font-weight: bold;
  
}
.grid-item {
  /* background: rgb(172, 211, 82); */
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120%;
  font-weight: bold;
  /*
  grid-area is shorthand for grid row/column /start /endalign-contentin form: 
  
  grid-area: row start / coloumn start / row end / column end
  */


}
/*.page-section__border {*/
/*  height: 20px;*/
/*  width: 100%;*/
/*  background-color: blue;*/
/*  grid-column: 1/ span 3;*/
/*}*/
.text-center {
    text-align: center !important;
}
.text-left, .text-left > h2 {
    text-align: left !important;
}
.text-left .tooltip-text, .text-left .toooltip-text__over {
    text-align: left;
}
/* 
Responsive Styles
*/
@media screen and (min-width: 800px) {
    .header {
        height: 100% !important;
    }
}
@media screen and (max-width: 1200px) {
  .wrapper {
      width: 100vw;
    grid-template-columns: 100%;
    /*     grid-template-row: 500px repeat(6, 1fr); */
    
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .wrapper > div {
      grid-column: 1 / span 1;
  }
  .mobile-navbar {
    display: flex;
    justify-content: space-between;
  }
  .mobile-nav__links {
      grid-column: 1 / span 1;
      grid-template-columns: 100%;
  }
  .header {
    display: none;
    height: 0px;
    width: 0px;
    grid-template-columns: 100%;
  }
  .header-title__center {
      grid-column: span 1;
  }
  .header .nav-link,
  .header .call-info {
    width: 100%;
    text-align: center;
    grid-column: span 1;
  }
  .header > div {
      display: grid;
      grid-template-columns: 100%;
  }
  .intro-text,
  .img-grid,
  .item-grid,
  .text-section,
  .section,
  .footer{
    grid-column: 1/ span 1;
    grid-template-columns: 100%;
    justify-items: center;
    grid-gap: 0px;
    padding-left: 0;
    padding-right: 0;
  }
  .vocab-grid {
    grid-column: 1 / span 1;
    

  }
  
  
  
  
  
  
  .nav-link {
    padding: 5% 0;
  }
  .img-grid > div {
      text-align: center;
  }
  .tooltip-group {
    margin-left: 1% !important;
    margin-right: auto;
    
    
}

.sidebar1 {
    margin-left: 0px;
    grid-column-start: 1;
    grid-row: auto/auto;
}

  .footer {
    flex-wrap: wrap;
  } 
  
  .flex-grid > * {
      width: 100%;
  }
  



    
    
}













.hidden33:before, .hidden33:after {
   content: "•"; 
}
.redtext { color: #ff4d4d; }

.bluetext { color: #0000FF }

*.bckgrnd-blue {
  background: #95d0fc;  
}
.bckgrnd-white {
    background: white;
}
/* .orangetext { color: ;  } */

.burgundytext {
    color:#800020 ;
}
.border{ 
    
    border: 4px solid yellow;
    margin: 2.5% auto;
    padding: 2.5%;
}
.border-blue {
    border: 4px solid blue;
    margin: 2.5% auto;
    padding: 2.5%;
}

.cartoon-font {
    font-family: 'Permanent Marker', cursive !important;
}

.border-right {
    border-right: 1px solid black;
}
.border-left {
    border-left: 1px solid black;
}


@media(max-width: 900px) {
  #my-fancy-heading,
  #fill-in-the-blanks-text {
    font-size: 1.75rem;
  }


  #fill-in-the-blanks-text  {
    margin-top: 5rem !important;
  }
  
}