/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
header {
  display: flex;
    background-color: black;
    color: whitesmoke;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: sticky;
    top: 0;
}
header, h1 {
    display: flex;
    padding: 5px;
    font-size: 30px;
    justify-content: center;
}
#menu__toggle {
    opacity: 0;
  }
  #menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
  }
  #menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    left: 0 !important;
  }
  .menu__btn {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: whitesmoke;
    transition-duration: .25s;
    top: 7px;
  }
  .menu__btn > span::before {
    content: '';
    top: -8px;
  }
  .menu__btn > span::after {
    content: '';
    top: 8px;
  }
  .menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: black;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .25s;
  }
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: whitesmoke;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
  }
  .menu__item:hover {
    background-color: #CFD8DC;
  }





img {
    width: 100%;
}
body {
    background-color: #e6e6e6;
}
.title {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 10px;
  padding-bottom: 20px;
}
p {
  font-size: 17px;
  margin: 10px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 25px;
}
blockquote {
  text-align: center;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  margin: 15px;
  line-height: 30px;
  font-weight: bold;
  color: #444;
}
footer p {
  background-color: black;
  padding: 10px;
  color: whitesmoke;
  font-size: 10px;
  margin: 0;
  text-align: center;
}
hr {
  width: 75%;
}
.small {
  width: 50%;
}
.paragraph1 {
  padding: 20px;
}
.group {
  width: 90%;
  height: auto;
  margin: auto;
  display: block;
  border: 5px solid black;
  z-index: 10000;
}
h2 {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
}
#address {
  display: none;
}
form {
  text-align: center;
}
input {
  border-radius: 10px;
  width: 90%;
  height: 25px;
  margin-bottom: 20px;
}
textarea {
  border-radius: 5px;
  width: 90%;
  height: 100px;
  resize: none;
}
.stay {
    position:fixed;
    bottom:0;
    width: 100%;
}
iframe {
  width: 100%;
}
.center {
  text-align: center;
  border: 5px solid black;
}
ul {
  font-size: 17px;
  margin: 10px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 25px;
}
li {
  padding-bottom: 30px;
}
h3 {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
}
a {
  text-decoration: none;
  color: #222222;
  font-weight: bolder;
}
input {
  background-color: #EFEFEF;
  border-width: 2px;
  border-color: #222222;
  color: #333;
}
.icon {
  display: block;
  width: 50px;
  margin: auto;
}
.logo {
  width: 50px;
  margin-left: 20px;
}
ul.Bullets {
  list-style: disc;
  margin: 30px;
}