:root {
  --color: #8ec63d;
  --color2: #000;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

* {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 400;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

input,
textarea {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

a.goFood {
  padding: 10px 20px;
  background: var(--color2);
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}
a.goFood:hover {
  transform: scale(1.1) !important;
}

.active {
  display: flex !important;
}

button {
  cursor: pointer;
}

.line {
  margin-bottom: 6px;
  width: 36px;
  height: 2px;
  background-color: var(--color2);
}

.pos-r {
  position: relative;
}

.hamburger {
  display: none;
  margin: auto 0;
}

.shadow {
  color: rgba(255, 255, 255, 0);
  position: absolute;
  left: -3px;
  top: 3px;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 108px;
  line-height: 102%;
  text-transform: capitalize;
  -webkit-text-stroke: 1px black;
}

.items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}
.items .item {
  flex: 0 0 calc(20% - 24px);
  display: flex;
  flex-direction: column;
}
.items .item img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  max-width: 204px;
  max-height: 204px;
}
.items .item:hover .details, .items .item:focus .details {
  opacity: 1;
}
.items .item .details {
  opacity: 0;
  border-radius: 20px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5px 30px;
  row-gap: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.5s ease-in-out;
}
.items .item .details .price {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  background-color: var(--color);
  border-radius: 10px;
  padding: 6px;
  text-transform: capitalize;
  max-width: -moz-max-content;
  max-width: max-content;
}
.items .item .details .name {
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}

nav {
  background: linear-gradient(180deg, #8ec63d 10.83%, #99cb50 43.03%, #d4e6b4 64.72%, #fbfdf8 78.14%, #fdfdfb 90%);
}
nav.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  transition: position 1s ease-in-out;
}
nav.sticky .hamburger {
  margin: 0 20px;
}
nav .container {
  padding: 0 130px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  height: 120px;
}
nav .container .logo {
  margin-left: 0;
  justify-self: flex-start;
}
nav .container .logo img {
  width: 100%;
  height: 90px;
}
nav .container ul.links {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}
nav .container ul.links li:last-child {
  margin-right: 0;
}
nav .container ul.links li a:not(.goFood) {
  color: #000;
  font-size: 18px;
  line-height: 18px;
  font-weight: var(--regular);
  font-weight: var(--semibold);
}
nav .container ul.links li a:not(.goFood).active {
  color: #fff;
}
nav .container ul.links li a:not(.goFood):hover {
  text-decoration: underline;
}

.hero,
.foods,
.drinks,
.find-us,
.seo,
footer {
  padding: 60px 0;
}
.hero .container,
.foods .container,
.drinks .container,
.find-us .container,
.seo .container,
footer .container {
  padding: 0 130px;
}

.hero {
  padding: 0;
  background-color: var(--color);
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 0px;
       column-gap: 0px;
}
.hero .container .left,
.hero .container .right {
  flex: 0 0 50%;
  max-height: 841px;
}
.hero .container .left img,
.hero .container .right img {
  width: 100%;
}
.hero .container .left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container .left .title {
  color: #fff;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 108px;
  line-height: 102%;
  text-transform: capitalize;
}
.hero .container .left .description {
  max-width: 90%;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-transform: capitalize;
  color: #000000;
  margin: 40px 0;
}
.hero .container .left .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.hero .container .left .social a.goFood {
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  line-height: 24px;
  transition: all 0.5s ease-in-out;
}
.hero .container .left .social a.goFood:hover {
  transform: scale(1.1) !important;
}
.hero .container .left .social a.tel {
  line-height: 24px;
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.hero .container .left .social a.tel:hover {
  transform: scale(1.1) !important;
}

.slick-slide {
  margin-right: 10px;
}

.foods {
  background-color: #ebebeb;
}
.foods .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.foods .container .top h2 {
  color: var(--color);
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 108px;
  line-height: 102%;
  text-transform: capitalize;
}
.foods .container .top .divider {
  flex: 1 1 40%;
  height: 0;
  border-bottom: 2px dashed #000;
  margin: 0 20px;
}
.foods .container .bottom {
  flex: 0 0 100%;
  margin-top: 20px;
}

.drinks {
  background-color: var(--color);
}
.drinks .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.drinks .container .top h2 {
  color: #fff;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 108px;
  line-height: 102%;
  text-transform: capitalize;
}
.drinks .container .top .divider {
  flex: 1 1 25%;
  height: 0;
  border-bottom: 2px dashed #000;
  margin: 0 20px;
}
.drinks .container .bottom {
  flex: 0 0 100%;
  margin-top: 20px;
}

.find-us {
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.3) 100%), url("assets/find-us-0.webp");
  padding-bottom: 0;
}
.find-us .container h2 {
  width: 100%;
  color: var(--color);
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 108px;
  line-height: 102%;
  text-transform: capitalize;
  text-align: center;
}
.find-us .container h2 .shadow {
  width: 100%;
}
.find-us .container .content {
  background-color: var(--color);
  padding: 60px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.find-us .container .content .left,
.find-us .container .content .right {
  color: #000;
  flex: 0 0 calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.find-us .container .content .left .contact-form {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.find-us .container .content .left .contact-form input {
  width: 100%;
  background-color: transparent;
  border-radius: 10px;
  border: 1.5px solid #000;
  color: #000;
  padding: 24px;
  outline: none;
}
.find-us .container .content .left .contact-form input::-moz-placeholder {
  text-align: center;
  color: #000;
}
.find-us .container .content .left .contact-form input::placeholder {
  text-align: center;
  color: #000;
}
.find-us .container .content .left .contact-form button {
  color: #fff;
  border-radius: 10px;
  background-color: #000;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  padding: 20px;
  outline: none;
  border: none;
}
.find-us .container .content .right {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-content: stretch;
  row-gap: 20px;
  flex-wrap: wrap;
}
.find-us .container .content .right div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1.5px solid #000;
  padding: 36px 20px;
}

.why {
  display: flex;
  flex-direction: row;
}
.why .left,
.why .right {
  flex: 0 0 50%;
  height: 500px;
}
.why .right {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("assets/find-us.webp");
  display: flex;
  align-items: center;
}
.why .right h2 {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 96px;
  text-transform: capitalize;
  color: #ffffff;
  padding: 0 60px;
}

.seo {
  background-color: var(--color);
}
.seo .container h2 {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 76px;
  line-height: 70px;
  font-feature-settings: "kern" off;
  color: #000000;
  margin-bottom: 30px;
}
.seo .container p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: justify;
  color: #000000;
}
.seo .container p a {
  color: #fff;
  text-decoration: underline;
}

footer {
  background: #fff;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .container .logo > a > img {
  width: 180px;
}
footer .container .details {
  max-width: calc(100% - 190px);
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  color: #000;
}
footer .container .details .footer-social {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .container .details .footer-social a {
  line-height: 14px;
}
footer .container .details .footer-social a.tel {
  line-height: 24px;
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
footer .container .details .footer-social a.tel:hover {
  transform: scale(1.1) !important;
}

svg,
a.goFood {
  transition: all 0.5s ease-in-out;
}
svg:hover,
a.goFood:hover {
  transform: scale(1.1) !important;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .shadow {
    color: rgba(255, 255, 255, 0);
    position: absolute;
    left: -3px;
    top: 3px;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 102%;
    text-transform: capitalize;
    -webkit-text-stroke: 1px black;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 calc(20% - 24px);
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    min-height: 204px;
    max-height: 204px;
    border-radius: 20px;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item .details {
    opacity: 0;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 30px;
    row-gap: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s ease-in-out;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background-color: var(--color);
    border-radius: 10px;
    padding: 6px;
    text-transform: capitalize;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  nav {
    background: linear-gradient(180deg, #8ec63d 10.83%, #99cb50 43.03%, #d4e6b4 64.72%, #fbfdf8 78.14%, #fdfdfb 90%);
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 60px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: #fff;
  }
  .hero,
  .foods,
  .drinks,
  .find-us,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .find-us .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero {
    padding: 0;
    background-color: var(--color);
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 50%;
    max-height: 680px;
  }
  .hero .container .left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .title {
    color: #fff;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .hero .container .left .description {
    max-width: 90%;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
    color: #000000;
    margin: 40px 0;
  }
  .hero .container .left .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    line-height: 24px;
  }
  .hero .container .left .social a.tel {
    line-height: 24px;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
  }
  .hero .container .right {
    overflow: hidden;
  }
  .hero .container .right img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .foods {
    background-color: #ebebeb;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .foods .container .top h2 {
    color: var(--color);
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .foods .container .top .divider {
    flex: 1 1 40%;
    height: 0;
    border-bottom: 2px dashed #000;
    margin: 0 20px;
  }
  .foods .container .bottom {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .drinks {
    background-color: var(--color);
  }
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .drinks .container .top h2 {
    color: #fff;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .drinks .container .top .divider {
    flex: 1 1 25%;
    height: 0;
    border-bottom: 2px dashed #000;
    margin: 0 20px;
  }
  .drinks .container .bottom {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .find-us {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.3) 100%), url("assets/find-us-0.webp");
    padding-bottom: 0;
  }
  .find-us .container h2 {
    width: 100%;
    color: var(--color);
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 102%;
    text-transform: capitalize;
    text-align: center;
  }
  .find-us .container h2 .shadow {
    width: 100%;
  }
  .find-us .container .content {
    background-color: var(--color);
    padding: 60px;
    display: flex;
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    color: #000;
    flex: 0 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
  }
  .find-us .container .content .left .contact-form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .content .left .contact-form input {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 24px;
    outline: none;
  }
  .find-us .container .content .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .find-us .container .content .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
  }
  .find-us .container .content .left .contact-form button {
    color: #fff;
    border-radius: 10px;
    background-color: #000;
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
  }
  .find-us .container .content .right {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-content: stretch;
    row-gap: 20px;
    flex-wrap: wrap;
  }
  .find-us .container .content .right div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid #000;
    padding: 36px 20px;
  }
  .why {
    display: flex;
    flex-direction: row;
  }
  .why .left,
  .why .right {
    flex: 0 0 50%;
    height: 500px;
  }
  .why .right {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("assets/find-us.webp");
    display: flex;
    align-items: center;
  }
  .why .right h2 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 108%;
    text-transform: capitalize;
    color: #ffffff;
    padding: 0 60px;
  }
  .seo {
    background-color: var(--color);
  }
  .seo .container h2 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 70px;
    font-feature-settings: "kern" off;
    color: #000000;
    margin-bottom: 30px;
  }
  .seo .container p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: #000000;
  }
  .seo .container p a {
    color: #fff;
    text-decoration: underline;
  }
  footer {
    background: #fff;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    max-width: calc(100% - 190px);
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
  footer .container .details .footer-social a.tel {
    line-height: 24px;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .shadow {
    color: rgba(255, 255, 255, 0);
    position: absolute;
    left: -3px;
    top: 3px;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 102%;
    text-transform: capitalize;
    -webkit-text-stroke: 1px black;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 calc(33.3333% - 24px);
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    min-height: 204px;
    max-height: 204px;
    border-radius: 20px;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item .details {
    opacity: 0;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 30px;
    row-gap: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s ease-in-out;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background-color: var(--color);
    border-radius: 10px;
    padding: 6px;
    text-transform: capitalize;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  nav {
    background: linear-gradient(180deg, #8ec63d 10.83%, #99cb50 43.03%, #d4e6b4 64.72%, #fbfdf8 78.14%, #fdfdfb 90%);
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: #fff;
  }
  .hero,
  .foods,
  .drinks,
  .find-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .find-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
    background-color: var(--color);
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 50%;
    max-height: 680px;
  }
  .hero .container .left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .title {
    color: #fff;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .hero .container .left .description {
    max-width: 90%;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
    margin: 40px 0;
  }
  .hero .container .left .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .hero .container .left .social a.goFood {
    padding: 6px 12px;
    background-color: #fff;
    color: #000;
    line-height: 24px;
  }
  .hero .container .left .social a.tel {
    line-height: 24px;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
  }
  .hero .container .right {
    overflow: hidden;
  }
  .hero .container .right img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .foods {
    background-color: #ebebeb;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .foods .container .top h2 {
    color: var(--color);
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .foods .container .top .divider {
    flex: 1 1 40%;
    height: 0;
    border-bottom: 2px dashed #000;
    margin: 0 20px;
  }
  .foods .container .bottom {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .drinks {
    background-color: var(--color);
  }
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .drinks .container .top h2 {
    color: #fff;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .drinks .container .top .divider {
    flex: 1 1 25%;
    height: 0;
    border-bottom: 2px dashed #000;
    margin: 0 20px;
  }
  .drinks .container .bottom {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .find-us {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.3) 100%), url("assets/find-us-0.webp");
    padding-bottom: 0;
  }
  .find-us .container h2 {
    width: 100%;
    color: var(--color);
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 102%;
    text-transform: capitalize;
    text-align: center;
  }
  .find-us .container h2 .shadow {
    width: 100%;
  }
  .find-us .container .content {
    background-color: var(--color);
    padding: 60px;
    display: flex;
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    color: #000;
    flex: 0 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
  }
  .find-us .container .content .left .contact-form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .content .left .contact-form input {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 24px;
    outline: none;
  }
  .find-us .container .content .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .find-us .container .content .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
  }
  .find-us .container .content .left .contact-form button {
    color: #fff;
    border-radius: 10px;
    background-color: #000;
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
  }
  .find-us .container .content .right {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-content: stretch;
    row-gap: 20px;
    flex-wrap: wrap;
  }
  .find-us .container .content .right div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid #000;
    padding: 36px 20px;
  }
  .why {
    display: flex;
    flex-direction: row;
  }
  .why .left,
  .why .right {
    flex: 0 0 50%;
    height: 500px;
  }
  .why .right {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("assets/find-us.webp");
    display: flex;
    align-items: center;
  }
  .why .right h2 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 108%;
    text-transform: capitalize;
    color: #ffffff;
    padding: 0 20px;
  }
  .seo {
    background-color: var(--color);
  }
  .seo .container h2 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 62px;
    line-height: 70px;
    font-feature-settings: "kern" off;
    color: #000000;
    margin-bottom: 30px;
  }
  .seo .container p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: #000000;
  }
  .seo .container p a {
    color: #fff;
    text-decoration: underline;
  }
  footer {
    background: #fff;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    max-width: calc(100% - 190px);
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
  footer .container .details .footer-social a.tel {
    line-height: 24px;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .shadow {
    color: rgba(255, 255, 255, 0);
    position: absolute;
    left: -2px;
    top: 2px;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
    -webkit-text-stroke: 1px black;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 calc(50% - 15px);
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    min-height: 204px;
    max-height: 204px;
    max-width: 100%;
    border-radius: 20px;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item .details {
    opacity: 0;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 30px;
    row-gap: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s ease-in-out;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background-color: var(--color);
    border-radius: 10px;
    padding: 6px;
    text-transform: capitalize;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  nav {
    background: linear-gradient(180deg, #8ec63d 10.83%, #99cb50 43.03%, #d4e6b4 64.72%, #fbfdf8 78.14%, #fdfdfb 90%);
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    width: 100%;
    background: linear-gradient(0deg, #8ec63d 10.83%, #99cb50 43.03%, #d4e6b4 64.72%, #fbfdf8 78.14%, #fdfdfb 90%);
    z-index: 100;
    top: 120px;
    left: 0;
    gap: 20px;
  }
  nav .container ul.links li {
    height: 44px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: #fff;
  }
  .hero,
  .foods,
  .drinks,
  .find-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .find-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
    background-color: var(--color);
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 50%;
    max-height: 680px;
  }
  .hero .container .left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .title {
    color: #fff;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .hero .container .left .description {
    max-width: 90%;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000000;
    margin: 40px 0;
  }
  .hero .container .left .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 10px;
         column-gap: 10px;
    flex-wrap: wrap;
  }
  .hero .container .left .social a.goFood {
    padding: 6px 12px;
    background-color: #fff;
    color: #000;
    line-height: 24px;
  }
  .hero .container .left .social a.tel {
    line-height: 24px;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
  }
  .hero .container .right {
    overflow: hidden;
  }
  .hero .container .right img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .foods {
    background-color: #ebebeb;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .foods .container .top h2 {
    color: var(--color);
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .foods .container .top .divider {
    flex: 1 1 30%;
    height: 0;
    border-bottom: 2px dashed #000;
    margin: 0 20px;
  }
  .foods .container .bottom {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .drinks {
    background-color: var(--color);
  }
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .drinks .container .top h2 {
    color: #fff;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .drinks .container .top .divider {
    flex: 1 1 25%;
    height: 0;
    border-bottom: 2px dashed #000;
    margin: 0 20px;
  }
  .drinks .container .bottom {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .find-us {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.3) 100%), url("assets/find-us-0.webp");
    padding-bottom: 0;
  }
  .find-us .container h2 {
    width: 100%;
    color: var(--color);
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
    text-align: center;
  }
  .find-us .container h2 .shadow {
    width: 100%;
  }
  .find-us .container .content {
    background-color: var(--color);
    padding: 30px;
    display: flex;
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    color: #000;
    flex: 0 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
  }
  .find-us .container .content .left .contact-form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .content .left .contact-form input {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 24px;
    outline: none;
  }
  .find-us .container .content .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .find-us .container .content .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
  }
  .find-us .container .content .left .contact-form button {
    color: #fff;
    border-radius: 10px;
    background-color: #000;
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
  }
  .find-us .container .content .right {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-content: stretch;
    row-gap: 20px;
    flex-wrap: wrap;
  }
  .find-us .container .content .right div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid #000;
    padding: 20px;
  }
  .find-us .container .content .right div img {
    width: 48px;
  }
  .why {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .why .left,
  .why .right {
    flex: 0 0 100%;
    height: 500px;
  }
  .why .right {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("assets/find-us.webp");
    display: flex;
    align-items: center;
    height: 400px;
  }
  .why .right h2 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    line-height: 128%;
    text-transform: capitalize;
    color: #ffffff;
    padding: 0 20px;
  }
  .seo {
    background-color: var(--color);
  }
  .seo .container h2 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 50px;
    font-feature-settings: "kern" off;
    color: #000000;
    margin-bottom: 30px;
  }
  .seo .container p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: #000000;
  }
  .seo .container p a {
    color: #fff;
    text-decoration: underline;
  }
  footer {
    background: #fff;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    margin-top: 20px;
    max-width: 100%;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
  footer .container .details .footer-social a.tel {
    line-height: 24px;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .shadow {
    color: rgba(255, 255, 255, 0);
    position: absolute;
    left: -2px;
    top: 2px;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
    -webkit-text-stroke: 1px black;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    min-height: 204px;
    max-height: 204px;
    max-width: 100%;
    border-radius: 20px;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item .details {
    opacity: 0;
    border-radius: 20px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 30px;
    row-gap: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s ease-in-out;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background-color: var(--color);
    border-radius: 10px;
    padding: 6px;
    text-transform: capitalize;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  nav {
    background: linear-gradient(180deg, #8ec63d 10.83%, #99cb50 43.03%, #d4e6b4 64.72%, #fbfdf8 78.14%, #fdfdfb 90%);
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 80px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    width: 100%;
    background: linear-gradient(0deg, #8ec63d 10.83%, #99cb50 43.03%, #d4e6b4 64.72%, #fbfdf8 78.14%, #fdfdfb 90%);
    z-index: 100;
    top: 100px;
    left: 0;
    gap: 20px;
  }
  nav .container ul.links li {
    height: 44px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: #fff;
  }
  .hero,
  .foods,
  .drinks,
  .find-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .find-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
    background-color: var(--color);
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
    padding-right: 0;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 100%;
    max-height: 580px;
  }
  .hero .container .left {
    padding: 30px 0;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .title {
    color: #fff;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .hero .container .left .description {
    max-width: 90%;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000000;
    margin: 40px 0;
  }
  .hero .container .left .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero .container .left .social a.goFood {
    padding: 6px 12px;
    background-color: #fff;
    color: #000;
    line-height: 24px;
  }
  .hero .container .left .social a.tel {
    line-height: 24px;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
  }
  .hero .container .right {
    display: none;
    overflow: hidden;
  }
  .hero .container .right img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .foods {
    background-color: #ebebeb;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .foods .container .top h2 {
    color: var(--color);
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .foods .container .top .divider {
    flex: 1 1 10%;
    height: 0;
    border-bottom: 2px dashed #000;
    margin: 0 20px;
  }
  .foods .container .bottom {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .drinks {
    background-color: var(--color);
  }
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .drinks .container .top h2 {
    color: #fff;
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
  }
  .drinks .container .top .divider {
    display: none;
    flex: 1 1 0%;
    height: 0;
    border-bottom: 2px dashed #000;
    margin: 0 20px;
  }
  .drinks .container .bottom {
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .find-us {
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.3) 100%), url("assets/find-us-0.webp");
    padding-bottom: 0;
  }
  .find-us .container h2 {
    width: 100%;
    color: var(--color);
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 102%;
    text-transform: capitalize;
    text-align: center;
  }
  .find-us .container h2 .shadow {
    width: 100%;
  }
  .find-us .container .content {
    background-color: var(--color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    color: #000;
    flex: 0 0 calc(50% - 10px);
    display: flex;
    flex-direction: column;
  }
  .find-us .container .content .left .contact-form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .content .left .contact-form input {
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 24px;
    outline: none;
  }
  .find-us .container .content .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
  }
  .find-us .container .content .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
  }
  .find-us .container .content .left .contact-form button {
    color: #fff;
    border-radius: 10px;
    background-color: #000;
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    padding: 20px;
    outline: none;
    border: none;
  }
  .find-us .container .content .right {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-content: stretch;
    row-gap: 20px;
    flex-wrap: wrap;
  }
  .find-us .container .content .right div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid #000;
    padding: 20px;
  }
  .find-us .container .content .right div img {
    width: 48px;
  }
  .why {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .why .left,
  .why .right {
    flex: 0 0 100%;
    height: 500px;
  }
  .why .right {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("assets/find-us.webp");
    display: flex;
    align-items: center;
    height: 400px;
  }
  .why .right h2 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 128%;
    text-transform: capitalize;
    color: #ffffff;
    padding: 0 20px;
  }
  .seo {
    background-color: var(--color);
  }
  .seo .container h2 {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 40px;
    font-feature-settings: "kern" off;
    color: #000000;
    margin-bottom: 30px;
  }
  .seo .container p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: #000000;
  }
  .seo .container p a {
    color: #fff;
    text-decoration: underline;
  }
  footer {
    background: #fff;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    margin-top: 20px;
    max-width: 100%;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
  footer .container .details .footer-social a.tel {
    line-height: 24px;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
  }
}/*# sourceMappingURL=style.css.map */