* {
  margin: 0;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Darker Grotesque", "Fahkwang", "Pavanam", "Poppins", Arial,
    Helvetica, sans-serif;
}

html,
body {
  margin: 0;
  height: 24vh;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: #ffffff;
}

.logo {
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 22px;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 60%;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
}

.nav-links li {
  list-style: none;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 6px;
  border-radius: 2px;
  background-color: #000000;
  margin: 5px;
  transition: all 0.2s ease;
}

.nav-links li:hover,
a:hover {
  color: #a81338;
}

.nav-links a:active {
  color: #c5b30d;
}

.nav-links a:visited {
  color: #020000;
}

.banner {
  width: 100%;
  position: relative;
  z-index: -1;
}

.banner-image {
  width: 100%;
  height: 24vh;
  object-fit: cover;
  overflow: hidden;
}

.content {
  position: relative;
  z-index: -1;
  top: 3vh;
  width: 45%;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14vh;
}

.content h1 {
  text-align: center;
  margin-top: 2vh;
}

.content h2 {
  text-align: center;
  margin-top: 2vh;
}

.content h3 {
  text-align: center;
  margin-top: 2vh;
}

.content p {
  font-weight: normal;
  margin-top: 1vh;
}

.content a:link {
  text-transform: unset;
  text-decoration: underline;
}

.content a:visited {
  color: #000000;
}


/* .covid19 a {
  color: #c30606;
  font-size: 26px;
} */

.covid19 a:link {
  color: #c30606;
  font-size: 26px;
}

.covid19 a:hover {
  color: #c30606;
  font-size: 28px;
}

.covid19 a:visited {
  color: #c30606;
}

.content em {
  font-style: italic;
}

#home {
  text-align: center;
}

.testimonial {
  font-style: italic;
}

.price {
  border: solid 3px black;
  margin: 3vh;
  padding: 10px;
  text-align: center;
}

.price p {
  margin: 3px;
  padding: 5px;
}

#covid {
  color: #c30606;
  border: solid 3px #c30606;
  margin: 2vh;
  padding: 4vh;
}

#covid h2 {
  margin: 3px;
  padding: 5px;
}

#covid p {
  margin: 3px;
  padding: 5px;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8vh;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  margin-top: -80px;
  clear: both;
}

.photo {
  float: right;
  height: 300px;
  width: 225px;
  margin: 4vh;
}

.gallery {
  margin: 10px 50px;
}

.gallery img {
  width: 200px;
  height: 200px;
  border: #020000;
  border: 2px solid brown;
  margin-bottom: 10vh;
  border-radius: 3px;
  filter: grayscale(60%);
  transition: 0.8s;
}

.row {
  display: flex;
}

.column {
  flex: 16.6%;
  padding: 5px;
}

.gallery img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.mapouter {
  position: relative;
  text-align: center;
  height: 400px;
  width: 400px;
  margin-top: 0vh;
  margin-left: auto;
  margin-right: auto;
}

.gmap_canvas {
  overflow: hidden;
  background: none;
  height: 400px;
  width: 400px;
  border: #000000;
  border-width: 4px;
  border-style: double;
}

.contact p {
  text-align: center;
  font-size: larger;
}

hr {
  width: 100%;
  margin-bottom: 20px;
}

/* link behavior */

a:link {
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
}

a:hover {
  color: #be0936;
}

a:active {
  color: #94b113;
}

a:visited {
  color: #616161;
}

a {
  outline: none;
}

@media screen and (max-width: 1600px) {
  .nav-links {
    width: 70%;
  }

  .content {
    width: 60%;
  }
}

@media screen and (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 8vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
  }

  .nav-links li {
    opacity: 0;
  }

  .burger {
    display: block;
  }

  .content {
    width: 85%;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-9px, 7px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-9px, -7px);
}