.grid {
    display: grid;
    grid-template-columns: repeat(6, 16.6667%);
    grid-template-rows: repeat(4, auto);
    grid-gap: 15px 0;
    grid-template-areas:
    "title title title title title title"
    "banner banner banner banner banner banner"
    "article1 article1 article1 article1 article1 article1"
    "article2 article2 article2 article2 article2 article2"
    "footer footer footer footer footer footer";
}
.article1  {
    display: grid;
    grid-column: 1/7;
    grid-row: 3/4;
    grid-area: article1;
    justify-content: center;
    align-items: center;
}
.responsive  {
    width: 100%;
    height: auto;
}
.article2  {
display: grid;
grid-column: 1/7;
grid-row: 4/5;
grid-area: article2;
justify-content: center;
align-items: center;
}
.p1  {
    font-size: 16px;
    font-weight: bold;
    padding: 25px 10px;
    text-align: justify;
    text-indent: 15px;
    color: #000;
    background-color: #ddd;
}
.footer  {
    display: grid;
    grid-column: 1/7;
    grid-row: 7/8;
    grid-area: footer;
}
.bottom  {
    color: #fff;
    background-color: #222;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem;
    width: 100%;
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
body  {
    width: 100vh;
    height: 100vh;
    margin: 0 auto;
    font-family: times, helvetica;
    padding: 0;
    color: #000;
    background-color: #eee;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.grid  {
    display: grid;
    grid-template-columns: 100%;
    grid-auto-rows: auto;
    grid-template-areas:
    "title"
    "banner"
    "article1"
    "article2"
    "footer";
    width: 100%;
    height: auto;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 10px;
  width: 50%;
  height: 40%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap .menu > div {
  background-color: #444;
  border-radius: 10%;
  width: 80vw;
  height: 100vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.3s ease;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.menu-wrap .menu > div > div {
  text-align: right;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.3s ease;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.title  {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    grid-area: title;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #afafb5;
    padding: 20px 10px;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
#fs1  {
    font-size: 1rem;
    color: #222;
    padding-top: 10px;
    margin: auto;
    font-weight: bold;
    text-align: center;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.highlight  {
    font-size: 1.3rem;
    font-weight: bold;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.article1  {
    display: grid;
    grid-column: 1;
    grid-row: 3;
    grid-area: article1;
    justify-content: center;
    align-items: center;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
#map  {
    width: 400px;
    height: 30px;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.responsive  {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
}
/*@media only screen and (min-width: 320px) and (max-width: 414px) {
.responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
}*/
@media only screen and (min-width: 320px) and (max-width: 414px) {
.article2  {
display: grid;
grid-column: 1;
grid-row: 4;
grid-area: article2;
justify-content: center;
align-items: center;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.p1  {
    font-size: 16px;
    font-weight: bold;
    padding: 15px 20px;
    text-align: justify;
    text-indent: 15px;
    color: #000;
    background-color: #ddd;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.footer  {
    display: grid;
    grid-column: 1;
    grid-row: 6;
    grid-area: footer;
}
}
@media only screen and (min-width: 320px) and (max-width: 414px) {
.bottom  {
    color: #fff;
    background-color: #222;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem;
    width: 100%;
}
}
@media only screen and (min-width: 415px) and (max-width: 1024px) {
.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 80px;
  width: 30%;
  height: 30%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
}
