* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */

header {
  position: sticky;
  top: 0px;
  z-index: 1;
}

.navbar {
  background: #222831;
  color: black;
}

.menu {
  border-radius: 36px;
  background: white;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
  font-family: 'Poppins', sans-serif;
}

.overlay-content {
  position: relative;
  top: 14%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 6px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 1vh;
  right: 4vw;
  font-size: 80px;
}

.location {
  width: 80vw;
  /* height: 80vh; */
  overflow: hidden;
  margin: 0 auto;
  border-radius: 20px;
}

.location a img {
  width: 100%;
  transition: 0.4s all ease-in-out;
}

.location a:hover img {
  transform: scale(1.8);
}

.special h5:hover,
.special h4:hover {
  text-decoration: underline;
}

/* Footer */

footer {
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  background-color: #24262b;
  padding: 70px 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
  font-size: 12px;
}

footer p {
  position: relative;
  top: 10vh;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
  margin: 0;
  box-sizing: border-box;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  /* background-color: #7af76a; */
  background-color: #f11f1f;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-flex;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 10px 10px 0;
  text-align: center;
  align-items: center;
  justify-content: space-around;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

.info {
  text-align: center;
}

.owner {
  width: 280px;
  height: 300px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 100%;
}

.owner img {
  width: 100%;
  transition: 0.4s all ease-in-out;
}

.owner:hover img {
  transform: scale(1.2);
}

.contact_us {
  display: inline-flex;
  justify-content: space-around;
  text-align: center;
}

.call a button,
.direction a button,
.book a button {
  width: 200px;
  height: 60px;
}

@media (max-width: 450px) {
  #about {
    background: url(Material/Background_Mobile.png) repeat-y #393e46;
    background-size: 80px;
    color: white;
    font-family: 'Lato', sans-serif;
  }

  .owner {
    width: 180px;
    height: 200px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 40px;
  }

  .owner img {
    width: 100%;
    transition: 0.4s all ease-in-out;
  }

  .owner:hover img {
    transform: scale(1.2);
  }

  .location {
    width: 90vw;
  }

  .location img {
    transform: scale(2.4);
  }

  .location img:hover {
    transform: scale(1.8);
  }

  .contact_us {
    display: block;
    justify-content: space-around;
    text-align: left;
  }

  .call a button,
  .direction a button,
  .book a button {
    width: 160px;
    height: 50px;
  }
}