:root {
  --color: #531812;
  --color2: #f1f1f1;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

* {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  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;
}

.divider {
  height: 0;
  border-bottom: 2px dashed #fff;
}

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

a.goFood,
button {
  transition: box-shadow 0.2s ease-in-out;
}
a.goFood:hover,
button:hover {
  box-shadow: 0px 4px 10px rgba(240, 105, 52, 0.9);
}

a.goFood {
  color: #fff;
  border-radius: 10px;
  background-color: var(--color);
}

.active {
  display: flex !important;
}

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

.pos-r {
  position: relative;
}

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

.items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.items .item {
  position: relative;
  flex: 0 0 calc(50% - 10px);
}
.items .item:hover .details, .items .item:focus .details {
  opacity: 1;
}
.items .item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.items .item .details {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  box-shadow: 0px 8px 34px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.5s ease-in;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.items .item .details .name {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 10px;
}
.items .item .details .price {
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  color: #000000;
  padding: 8px 12px;
}

nav {
  background: #fff;
}
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: 96px;
  height: 89px;
}
nav .container ul.links {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 40px;
}
nav .container ul.links li a {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  font-weight: var(--regular);
}
nav .container ul.links li a.goFood {
  padding: 10px 16px;
}
nav .container ul.links li a:not(.goFood) {
  color: #000;
}
nav .container ul.links li a:not(.goFood).active, nav .container ul.links li a:not(.goFood):hover {
  color: var(--color);
}

.hero,
.drinks,
.foods,
.why,
.contact-us,
.seo,
footer {
  padding: 100px 0;
}
.hero .container,
.drinks .container,
.foods .container,
.why .container,
.contact-us .container,
.seo .container,
footer .container {
  padding: 0 130px;
}

.hero {
  background-color: var(--color2);
}
.hero .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
.hero .container .left,
.hero .container .right {
  flex: 0 0 calc(50% - 10px);
  flex-wrap: wrap;
}
.hero .container .left .title {
  white-space: pre-line;
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
  text-transform: capitalize;
  color: #000000;
}
.hero .container .left .description {
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  margin: 30px 0;
}
.hero .container .left .goFood {
  font-size: 18px;
  padding: 12px 30px;
  text-align: center;
}
.hero .container .left .social {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.hero .container .right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero .container .right .left,
.hero .container .right .right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(50% - 10px);
  flex-direction: column;
  gap: 20px;
}
.hero .container .right .left img,
.hero .container .right .right img {
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.foods {
  background: var(--color);
}
.foods .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.foods .container .top h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
  text-transform: capitalize;
  color: #ffffff;
}
.foods .container .top .divider {
  margin-top: 30px;
  flex: 1 0 auto;
  background-color: var(--color);
  height: 2px;
  border-bottom: 2px dashed #fff;
}
.foods .container .bottom {
  margin-top: 40px;
  display: flex;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
.foods .container .bottom .left,
.foods .container .bottom .right {
  flex: 0 0 calc(50% - 10px);
}
.foods .container .bottom .right .all-items {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}
.foods .container .bottom .right .all-items .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex: 0 0 100%;
}
.foods .container .bottom .right .all-items .item .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: #ffffff;
  max-width: 60%;
}
.foods .container .bottom .right .all-items .item .divider {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 16px;
  flex: 1 0 auto;
  border-bottom: 1px dashed #fff;
}
.foods .container .bottom .right .all-items .item .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #ffffff;
}

.drinks {
  background-color: var(--color2);
}
.drinks .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.drinks .container .top h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
  text-transform: capitalize;
  color: #000;
}
.drinks .container .top .divider {
  margin-top: 30px;
  flex: 1 0 auto;
  background-color: #fff;
  height: 2px;
  border-bottom: 2px dashed #000;
}
.drinks .container .bottom {
  margin-top: 40px;
}
.drinks .container .bottom .items .item {
  flex: 0 0 calc(33.3333% - 15px);
}
.drinks .container .bottom .items .item img {
  height: 280px;
}

.why {
  background-color: var(--color);
}
.why .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 230px;
  gap: 10px;
}
.why .container .left,
.why .container .right {
  flex: 1 0 50%;
}
.why .container .right {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.why .container .right h2 {
  white-space: pre-line;
  font-weight: 700;
  font-size: 60px;
  line-height: 64px;
  color: #ffffff;
}
.why .container .right p {
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.why .container .right .icons {
  display: inline-flex;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.contact-us {
  background-color: var(--color2);
}
.contact-us .container .content {
  border: 1px solid #000;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 80px;
  padding-top: 40px;
}
.contact-us .container h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 74px;
  color: #000000;
  text-align: center;
  margin: 0 auto 20px;
}
.contact-us .container .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  flex-basis: calc(40% - 10px);
  flex-grow: 0;
}
.contact-us .container .contact-form input {
  border-radius: 0px;
  width: 100%;
  background-color: var(--color2);
  height: 56px;
  border: none;
  border-bottom: 2px solid #000;
  outline: none;
  padding: 0px;
}
.contact-us .container .contact-form input::-moz-placeholder {
  text-align: left;
  color: #000;
}
.contact-us .container .contact-form input::placeholder {
  text-align: left;
  color: #000;
}
.contact-us .container .contact-form button {
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 30px;
  border-radius: 10px;
  width: 100%;
  background-color: var(--color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  height: 56px;
  text-align: center;
  outline: none;
  border: none;
}
.contact-us .container .sl {
  flex-basis: calc(40% - 10px);
}
.contact-us .container .sl .item {
  width: 100%;
  padding: 20px;
  display: inline-flex;
  white-space: pre-line;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--color);
  border-radius: 6px;
  border-left: 10px solid #e19849;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.contact-us .container .sl .item:first-of-type {
  margin-bottom: 20px;
}

.seo {
  background: url("assets/general-bg.webp") no-repeat, var(--color);
  background-size: 100% 100%;
}
.seo .container {
  color: #fff;
}
.seo .container h2 {
  font-size: 60px;
  line-height: 70px;
  font-feature-settings: "kern" off;
  margin-bottom: 20px;
  font-weight: 700;
}
.seo .container p {
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
}
.seo .container p a {
  text-decoration: underline;
}

footer {
  background-color: unset;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .container .logo {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
footer .container .logo .footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
footer .container .logo .footer-social a {
  line-height: 14px;
}
footer .container .logo > a > img {
  width: 180px;
}
footer .container .details {
  max-width: 39%;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000;
}
footer .container iframe {
  border-radius: 10px;
}

.copyright {
  text-align: center;
  background-color: var(--color);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  padding: 6px 0;
}

.seo a {
  color: var(--color2);
}
.seo a:hover {
  text-decoration: none !important;
}

button {
  cursor: pointer;
}

svg {
  transition: all 0.5s ease-in-out;
}
svg:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .items .item {
    position: relative;
    flex: 0 0 calc(50% - 10px);
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .items .item .details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    box-shadow: 0px 8px 34px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s ease-in;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .items .item .details .name {
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 10px;
  }
  .items .item .details .price {
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000000;
    padding: 8px 12px;
  }
  nav {
    background: #fff;
  }
  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: 96px;
    height: 89px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 10px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .drinks,
  .foods,
  .why,
  .contact-us,
  .seo,
  footer {
    padding: 80px 0;
  }
  .hero .container,
  .drinks .container,
  .foods .container,
  .why .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero {
    background-color: var(--color2);
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
  .hero .container .left .title {
    white-space: wrap;
    font-weight: 600;
    font-size: 64px;
    line-height: 68px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .description {
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin: 10px 0;
  }
  .foods {
    background: var(--color);
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top h2 {
    font-weight: 600;
    font-size: 64px;
    line-height: 68px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .top .divider {
    margin-top: 30px;
    flex: 1 0 auto;
    background-color: var(--color);
    height: 2px;
    border-bottom: 2px dashed #fff;
  }
  .foods .container .bottom {
    margin-top: 40px;
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
  }
  .foods .container .bottom .left,
  .foods .container .bottom .right {
    flex: 0 0 calc(50% - 10px);
  }
  .foods .container .bottom .right .all-items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .foods .container .bottom .right .all-items .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 100%;
  }
  .foods .container .bottom .right .all-items .item .name {
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    text-transform: capitalize;
    color: #ffffff;
    max-width: 60%;
  }
  .foods .container .bottom .right .all-items .item .divider {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 16px;
    flex: 1 0 auto;
    border-bottom: 1px dashed #fff;
  }
  .foods .container .bottom .right .all-items .item .price {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .drinks .container .top h2 {
    font-weight: 600;
    font-size: 64px;
    line-height: 68px;
    text-transform: capitalize;
    color: #000;
  }
  .why .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
    gap: 10px;
  }
  .why .container .left,
  .why .container .right {
    flex: 0 0 50%;
  }
  .why .container .left img {
    width: 100%;
  }
  .why .container .right {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .why .container .right h2 {
    white-space: wrap;
    font-weight: 600;
    font-size: 52px;
    line-height: 54px;
    color: #ffffff;
  }
  .why .container .right p {
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
  }
  .why .container .right .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .why .container .right .icons img {
    height: 82px;
  }
  .contact-us .container .content {
    border: 1px solid #000;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 40px;
    padding-top: 40px;
  }
  .contact-us .container h2 {
    font-weight: 600;
    font-size: 52px;
    line-height: 68px;
    color: #000000;
    text-align: center;
    margin: 0 auto 20px;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: calc(44% - 10px);
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    border-radius: 0px;
    width: 100%;
    background-color: var(--color2);
    height: 56px;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    padding: 0px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    height: 56px;
    text-align: center;
    outline: none;
    border: none;
  }
  .contact-us .container .sl {
    flex-basis: calc(44% - 10px);
  }
  .contact-us .container .sl .item {
    width: 100%;
    padding: 20px;
    display: inline-flex;
    white-space: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--color);
    border-radius: 6px;
    border-left: 10px solid #e19849;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }
  .contact-us .container .sl .item:first-of-type {
    margin-bottom: 20px;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container h2 {
    font-size: 52px;
    line-height: 60px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: unset;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  footer .container .logo {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  footer .container .logo .footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .logo .footer-social a {
    line-height: 14px;
  }
  footer .container .logo > a > img {
    width: 160px;
  }
  footer .container .details {
    max-width: 36%;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container iframe {
    border-radius: 10px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    padding: 6px 0;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .items .item {
    position: relative;
    flex: 0 0 calc(50% - 10px);
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .items .item .details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    box-shadow: 0px 8px 34px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s ease-in;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .items .item .details .name {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    padding: 6px 8px;
  }
  nav {
    background: #fff;
  }
  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: 96px;
    height: 89px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 10px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .drinks,
  .foods,
  .why,
  .contact-us,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .drinks .container,
  .foods .container,
  .why .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero {
    background-color: var(--color2);
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
  .hero .container .left .title {
    white-space: wrap;
    font-weight: 600;
    font-size: 44px;
    line-height: 45px;
    text-transform: capitalize;
    color: #000000;
  }
  .hero .container .left .description {
    font-size: 17px;
    line-height: 20px;
    color: #000000;
    margin: 10px 0;
  }
  .hero .container .right {
    flex: 0 1 calc(50% - 10px);
  }
  .foods {
    background: var(--color);
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top h2 {
    font-weight: 600;
    font-size: 44px;
    line-height: 45px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .top .divider {
    margin-top: 30px;
    flex: 1 0 auto;
    background-color: var(--color);
    height: 2px;
    border-bottom: 2px dashed #fff;
  }
  .foods .container .bottom {
    margin-top: 40px;
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
  }
  .foods .container .bottom .left,
  .foods .container .bottom .right {
    flex: 0 0 calc(50% - 10px);
  }
  .foods .container .bottom .right .all-items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .foods .container .bottom .right .all-items .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 100%;
  }
  .foods .container .bottom .right .all-items .item .name {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    color: #ffffff;
    max-width: 62%;
  }
  .foods .container .bottom .right .all-items .item .divider {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 12px;
    flex: 1 0 auto;
    border-bottom: 1px dashed #fff;
  }
  .foods .container .bottom .right .all-items .item .price {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .drinks .container .top h2 {
    font-weight: 600;
    font-size: 44px;
    line-height: 45px;
    text-transform: capitalize;
    color: #000;
  }
  .drinks .container .bottom .items .item img {
    height: 180px;
  }
  .why .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 60px;
    gap: 10px;
  }
  .why .container .left,
  .why .container .right {
    flex: 1 1 50%;
  }
  .why .container .left {
    flex-basis: 40%;
  }
  .why .container .left img {
    width: 100%;
    height: 100%;
  }
  .why .container .right {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .why .container .right h2 {
    white-space: wrap;
    font-weight: 500;
    font-size: 42px;
    line-height: 44px;
    color: #ffffff;
  }
  .why .container .right p {
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    font-weight: 300;
  }
  .why .container .right .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .why .container .right .icons img {
    height: 64px;
  }
  .contact-us .container .content {
    border: 1px solid #000;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 40px;
    padding-top: 40px;
  }
  .contact-us .container h2 {
    font-weight: 600;
    font-size: 52px;
    line-height: 68px;
    color: #000000;
    text-align: center;
    margin: 0 auto 20px;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: calc(40% - 10px);
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    border-radius: 0px;
    width: 100%;
    background-color: var(--color2);
    height: 56px;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    padding: 0px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    height: 56px;
    text-align: center;
    outline: none;
    border: none;
  }
  .contact-us .container .sl {
    flex-basis: calc(44% - 10px);
    flex-grow: 1;
  }
  .contact-us .container .sl .item {
    width: 100%;
    padding: 20px;
    display: inline-flex;
    white-space: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--color);
    border-radius: 6px;
    border-left: 10px solid #e19849;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }
  .contact-us .container .sl .item:first-of-type {
    margin-bottom: 20px;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container h2 {
    font-size: 52px;
    line-height: 60px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: unset;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .container .logo {
    order: 2;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  footer .container .logo .footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .logo .footer-social a {
    line-height: 14px;
  }
  footer .container .logo > a > img {
    width: 160px;
  }
  footer .container .details {
    order: 3;
    flex-grow: 1;
    max-width: calc(100% - 180px);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container iframe {
    order: 1;
    border-radius: 10px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    padding: 6px 0;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .items .item {
    position: relative;
    flex: 0 0 calc(50% - 10px);
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .items .item .details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    box-shadow: 0px 8px 34px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s ease-in;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .items .item .details .name {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    padding: 6px 8px;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 90px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 76px;
    height: 70px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: stretch;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
    position: absolute;
    left: 0;
    width: 100%;
    top: 91px;
    background-color: #fff;
  }
  nav .container ul.links li {
    text-align: left;
    height: 42px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 10px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .drinks,
  .foods,
  .why,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .drinks .container,
  .foods .container,
  .why .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    background-color: var(--color2);
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
  .hero .container .left {
    flex-grow: 1;
  }
  .hero .container .left .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
  }
  .hero .container .left .description {
    font-size: 17px;
    line-height: 20px;
    color: #000000;
    margin: 10px 0;
  }
  .hero .container .right {
    flex: 0 1 calc(30% - 10px);
  }
  .hero .container .right .left {
    flex-grow: 1;
  }
  .hero .container .right .left img {
    width: 100%;
  }
  .hero .container .right .right {
    display: none;
  }
  .foods {
    background: var(--color);
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 35px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .top .divider {
    margin-top: 30px;
    flex: 1 0 auto;
    background-color: var(--color);
    height: 2px;
    border-bottom: 2px dashed #fff;
  }
  .foods .container .bottom {
    flex-grow: 1;
    margin-top: 40px;
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
  }
  .foods .container .bottom .left,
  .foods .container .bottom .right {
    flex: 0 0 100%;
  }
  .foods .container .bottom .right .all-items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .foods .container .bottom .right .all-items .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 100%;
  }
  .foods .container .bottom .right .all-items .item .name {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    color: #ffffff;
    max-width: 70%;
  }
  .foods .container .bottom .right .all-items .item .divider {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 12px;
    flex: 1 0 auto;
    border-bottom: 1px dashed #fff;
  }
  .foods .container .bottom .right .all-items .item .price {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .drinks .container .top h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 35px;
    text-transform: capitalize;
    color: #000;
  }
  .drinks .container .bottom .items .item {
    flex: 0 0 calc(50% - 10px);
  }
  .drinks .container .bottom .items .item img {
    height: 220px;
  }
  .why .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 60px;
    gap: 10px;
  }
  .why .container .left,
  .why .container .right {
    flex: 1 1 50%;
  }
  .why .container .left {
    display: none;
  }
  .why .container .right {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .why .container .right h2 {
    white-space: pre-line;
    font-weight: 500;
    font-size: 42px;
    line-height: 44px;
    color: #ffffff;
  }
  .why .container .right p {
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    font-weight: 300;
  }
  .why .container .right .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .why .container .right .icons img {
    height: 64px;
  }
  .contact-us .container .content {
    border: 1px solid #000;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 40px;
    padding-top: 40px;
  }
  .contact-us .container h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 35px;
    color: #000000;
    text-align: center;
    margin: 0 auto 20px;
  }
  .contact-us .container .contact-form {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: 100%;
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    border-radius: 0px;
    width: 100%;
    background-color: var(--color2);
    height: 56px;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    padding: 0px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    height: 56px;
    text-align: center;
    outline: none;
    border: none;
  }
  .contact-us .container svg {
    display: none;
  }
  .contact-us .container .sl {
    order: 0;
    flex-basis: calc(44% - 10px);
    flex-grow: 1;
  }
  .contact-us .container .sl .item {
    width: 100%;
    padding: 20px;
    display: inline-flex;
    white-space: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--color);
    border-radius: 6px;
    border-left: 10px solid #e19849;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }
  .contact-us .container .sl .item:first-of-type {
    margin-bottom: 20px;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 35px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: unset;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .container .logo {
    order: 2;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  footer .container .logo .footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .logo .footer-social a {
    line-height: 14px;
  }
  footer .container .logo > a > img {
    width: 160px;
  }
  footer .container .details {
    order: 3;
    flex-grow: 1;
    max-width: calc(100% - 180px);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container iframe {
    order: 1;
    border-radius: 10px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    padding: 6px 0;
  }
}
@media screen and (max-width: 568px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .items .item {
    position: relative;
    flex: 0 0 calc(50% - 10px);
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .items .item .details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    box-shadow: 0px 8px 34px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s ease-in;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .items .item .details .name {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
  }
  .items .item .details .price {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    padding: 6px 8px;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 90px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 76px;
    height: 70px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: stretch;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
    position: absolute;
    left: 0;
    width: 100%;
    top: 91px;
    background-color: #fff;
  }
  nav .container ul.links li {
    text-align: left;
    height: 42px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 10px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .drinks,
  .foods,
  .why,
  .contact-us,
  .seo,
  footer {
    padding: 20px 0;
  }
  .hero .container,
  .drinks .container,
  .foods .container,
  .why .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 20px;
  }
  .hero {
    background-color: var(--color2);
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
  .hero .container .left {
    flex-grow: 1;
  }
  .hero .container .left .title {
    text-align: center;
    white-space: wrap;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
  }
  .hero .container .left .description {
    font-size: 17px;
    line-height: 20px;
    color: #000000;
    margin: 10px 0;
  }
  .hero .container .left .social {
    justify-content: center;
  }
  .hero .container .right {
    display: none;
  }
  .foods {
    background: var(--color);
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 35px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .top .divider {
    margin-top: 30px;
    flex: 1 0 auto;
    background-color: var(--color);
    height: 2px;
    border-bottom: 2px dashed #fff;
  }
  .foods .container .bottom {
    flex-grow: 1;
    margin-top: 40px;
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
  }
  .foods .container .bottom .left,
  .foods .container .bottom .right {
    flex: 0 0 100%;
  }
  .foods .container .bottom .right .all-items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .foods .container .bottom .right .all-items .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 100%;
  }
  .foods .container .bottom .right .all-items .item .name {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    color: #ffffff;
    max-width: 70%;
  }
  .foods .container .bottom .right .all-items .item .divider {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 12px;
    flex: 1 0 auto;
    border-bottom: 1px dashed #fff;
  }
  .foods .container .bottom .right .all-items .item .price {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .drinks .container .top h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    text-transform: capitalize;
    color: #000;
  }
  .drinks .container .bottom .items .item {
    flex: 0 0 calc(50% - 10px);
  }
  .drinks .container .bottom .items .item img {
    height: 180px;
  }
  .why .container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
  }
  .why .container .left,
  .why .container .right {
    flex: 1 1 50%;
  }
  .why .container .left {
    display: none;
  }
  .why .container .right {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .why .container .right h2 {
    white-space: pre-line;
    font-weight: 500;
    font-size: 42px;
    line-height: 44px;
    color: #ffffff;
  }
  .why .container .right p {
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    font-weight: 300;
  }
  .why .container .right .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .why .container .right .icons img {
    height: 64px;
  }
  .contact-us .container .content {
    border: 1px solid #000;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    padding-top: 20px;
  }
  .contact-us .container h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 30px;
    color: #000000;
    text-align: center;
    margin: 0 auto 20px;
  }
  .contact-us .container .contact-form {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: 100%;
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    border-radius: 0px;
    width: 100%;
    background-color: var(--color2);
    height: 56px;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    padding: 0px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    height: 56px;
    text-align: center;
    outline: none;
    border: none;
  }
  .contact-us .container svg {
    display: none;
  }
  .contact-us .container .sl {
    order: 0;
    flex-basis: calc(44% - 10px);
    flex-grow: 1;
  }
  .contact-us .container .sl .item {
    width: 100%;
    padding: 20px;
    display: inline-flex;
    white-space: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--color);
    border-radius: 6px;
    border-left: 10px solid #e19849;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
  }
  .contact-us .container .sl .item:first-of-type {
    margin-bottom: 20px;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container h2 {
    font-weight: 400;
    font-size: 34px;
    line-height: 35px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: unset;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  footer .container .logo {
    order: 2;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  footer .container .logo .footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .logo .footer-social a {
    line-height: 14px;
  }
  footer .container .logo > a > img {
    width: 120px;
  }
  footer .container .details {
    order: 3;
    flex-grow: 1;
    max-width: calc(100% - 140px);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container iframe {
    order: 1;
    border-radius: 10px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    padding: 6px 0;
  }
}/*# sourceMappingURL=style.css.map */