body {
  font-family: var(--font1);
  font-size: 18px;
}
.bloginfo::after {
  content: "";
  background-image: url(../../img/angansweets/anganlogo.png);
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  width: 90vw;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}
.food-review {
  display: flex;
}
.food-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 12px;
}
.food-img img {
  max-width: 220px;
  border-radius: 50px;
}
.food-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font1);
}
.food-details p,
span {
  font-size: 18px;
}
.gallery-heading {
  margin: 20px auto;
}
@media screen and (max-width: 1012px) {
  .bloginfo::after {
    background-size: 100vw 100vw;
  }
  .food-review {
    flex-direction: column;
    margin-top: 30px;
  }
  .carousel-cell img {
    width: 150px;
  }
}
/* FOOTER SECTION */
#footer {
  width: 80vw;
  margin-top: 30px;
}
.footer-contents {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.none {
  display: none;
}
.footer-content-left .email-textbox {
  margin: 10px;
}
.textbox-subscription {
  border: 2px solid black;
  padding: 8px 80px;
  border-radius: 5px;
}
.email-textbox .btn {
  background: #9b59b6;
  padding: 4px 12px;
  color: black;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: 5px;
  font-family: var(--font1);
  cursor: pointer;
  font-size: 16px;
  border-radius: 20px;
  border: 2px solid black;
}
.social-medias {
  text-align: center;
  margin-top: 30px;
}
.social-medias a {
  font-size: 30px;
  margin: 0px 10px;
  color: black;
}
.footer-content-right ul li {
  list-style: none;
}
.footer-content-right ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: black;
  display: block;
  transition: 0.5s;
}
.footer-content-right ul li:hover::after {
  width: 40%;
}
.footer-content-right ul li a {
  text-decoration: none;
  font-size: 20px;
  color: black;
  margin-left: 10px;
}
.tiktok{
  height: 25px;
  width: 27.86px;
}
@media screen and (max-width: 920px) {
  .footer-contents{
    flex-direction: column;
  }
  .email-textbox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .email-textbox .btn{
    margin-top: 10px;
  }
  .footer-content-right{
    display: none;
  }
}


