@charset "UTF-8";

:root {
  --primary: #5A0F20;
  --secondaryColor: #EC7918;
  --bodyTextColor: #1A1A1A;
  --whiteColor: #ffffff;
  --bgColor: #F4E8D4;
  --bgColor2: #C2B8AE;
  --bgColor3: #F7F3EC;
  --blackColor: #000000;
  --redColor: #CA1E45;
  --font-sixteen: 16px;
  --transition: .7s;
  --main-font-family: "Josefin Sans", sans-serif;
  --heading-font-family: "Cormorant Garamond", serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--main-font-family);
  font-size: var(--font-sixteen);
  color: var(--bodyTextColor);
}

p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--bodyTextColor);
  font-size: var(--font-sixteen);
}
p:last-child {
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-family: var(--heading-font-family);
  font-weight: bold;
}
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--primary);
}
.h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: var(--secondaryColor);
}

a {
  text-decoration: none;
  outline: 0 !important;
  transition: var(--transition);
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

.ptb-140 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.pt-140 {
  padding-top: 140px;
}

.pb-140 {
  padding-bottom: 140px;
}

.mw-1560 {
  max-width: 1560px;
  margin: auto;
}

.bg-color3 {
  background-color: var(--bgColor3);
}

@keyframes waviy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
}
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.default-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--bgColor);
  padding: 5px;
  transition: var(--transition);
}
.default-btn span {
  font-size: 15px;
  padding: 15.5px 35px 11px;
  line-height: 1;
  border: 1px solid var(--bgColor);
  transition: var(--transition);
}
.default-btn:hover {
  background-color: var(--secondaryColor);
}

.section-title {
  margin-bottom: 50px;
}
.section-title .sub {
  color: var(--secondaryColor);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: 48px;
  margin-bottom: 0;
}

.pagination-area {
  display: flex;
  justify-content: center;
  user-select: none;
  margin-top: 35px;
}
.pagination-area a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  font-size: 18px;
  background-color: var(--bgColor);
  color: var(--bodyTextColor);
  border-radius: 5px;
  transition: var(--transition);
  margin: 0 5px;
}
.pagination-area a svg path {
  transition: var(--transition);
}
.pagination-area a:hover, .pagination-area a.active {
  background-color: var(--primary);
  color: var(--whiteColor);
}
.pagination-area a:hover svg path, .pagination-area a.active svg path {
  stroke: var(--whiteColor);
}
.pagination-area a:first-child {
  margin-left: 0;
}
.pagination-area a:last-child {
  margin-right: 0;
}

.lightbox-overlay {
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.85);
}
.lightbox-overlay .lightbox-content {
  max-width: 70vw;
  max-height: 70vh;
}
.lightbox-overlay .lightbox-image {
  max-width: 100%;
  max-height: 70vw;
  border-radius: 6px;
}
.lightbox-overlay .lightbox-close {
  background: transparent;
  color: var(--whiteColor);
  position: absolute;
  font-size: 24px;
  cursor: pointer;
  border: none;
  top: 15px;
  right: 15px;
}
.lightbox-overlay .lightbox-nav {
  top: 50%;
  padding: 0;
  width: 38px;
  height: 38px;
  border: none;
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  border-radius: 50%;
  color: var(--whiteColor);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.35);
}
.lightbox-overlay .lightbox-nav.prev {
  left: -50px;
}
.lightbox-overlay .lightbox-nav.next {
  right: -50px;
}

@media only screen and (max-width: 767px) {
  .ptb-140 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-140 {
    padding-top: 50px;
  }
  .pb-140 {
    padding-bottom: 50px;
  }
  .section-title {
    margin-bottom: 35px;
  }
  .section-title h2 {
    font-size: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb-140 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pt-140 {
    padding-top: 100px;
  }
  .pb-140 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ptb-140 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pt-140 {
    padding-top: 100px;
  }
  .pb-140 {
    padding-bottom: 100px;
  }
}

.restaurant-about-image {
  overflow: hidden;
  position: relative;
  margin-right: 100px;
}
.restaurant-about-image img {
  border-radius: 25px;
}
.restaurant-about-image .wrap-info {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  padding: 25px 30px 25px 25px;
  border-radius: 0 20px 0 20px;
}
.restaurant-about-image .wrap-info h5 {
  font-size: 18px;
  margin-bottom: 0;
  font-family: var(--main-font-family);
  font-weight: 600;
}
.restaurant-about-image .wrap-info span {
  font-size: 15px;
  display: block;
  margin-top: 10px;
}
.restaurant-about-image .wrap-info .shape1 {
  position: absolute;
  top: -29.5px;
  left: -1px;
  transform: rotate(-90deg);
}
.restaurant-about-image .wrap-info .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-about-image .wrap-info .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.restaurant-about-image .wrap-info .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-about-image .rectangle-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 133px;
  height: 77px;
  background-color: var(--whiteColor);
  border-radius: 0 20px 0 20px;
}
.restaurant-about-image .rectangle-wrap .shape1 {
  position: absolute;
  top: -1px;
  left: -29.5px;
  transform: rotate(90deg);
}
.restaurant-about-image .rectangle-wrap .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-about-image .rectangle-wrap .shape2 {
  position: absolute;
  bottom: -29.5px;
  right: -1px;
  transform: rotate(90deg);
}
.restaurant-about-image .rectangle-wrap .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}

.restaurant-about-content {
  max-width: 535px;
}
.restaurant-about-content .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.restaurant-about-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
}
.restaurant-about-content p {
  margin-bottom: 0;
}
.restaurant-about-content .about-btn {
  margin-top: 65px;
}

.cafe-about-image {
  overflow: hidden;
  position: relative;
  margin-right: 100px;
}
.cafe-about-image img {
  border-radius: 25px;
}
.cafe-about-image .wrap-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  height: 57px;
  background-color: var(--whiteColor);
  border-radius: 0 15px 0 15px;
}
.cafe-about-image .wrap-top .shape1 {
  position: absolute;
  top: -1px;
  left: -29.5px;
  transform: rotate(90deg);
}
.cafe-about-image .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.cafe-about-image .wrap-top .shape2 {
  position: absolute;
  bottom: -29.5px;
  right: -1px;
  transform: rotate(90deg);
}
.cafe-about-image .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.cafe-about-image .wrap-fun {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  padding: 25px 30px 25px 25px;
  border-radius: 0 20px 0 20px;
}
.cafe-about-image .wrap-fun .fun {
  display: flex;
  gap: 20px;
  line-height: 1;
  align-items: center;
}
.cafe-about-image .wrap-fun .fun h3 {
  font-size: 48px;
  margin-bottom: 0;
  color: var(--secondaryColor);
  font-family: var(--main-font-family);
  font-weight: 400;
  line-height: 1;
}
.cafe-about-image .wrap-fun .fun h3.plus {
  position: relative;
  top: -5px;
}
.cafe-about-image .wrap-fun .fun p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}
.cafe-about-image .wrap-fun .fun p span {
  display: block;
}
.cafe-about-image .wrap-fun .shape1 {
  position: absolute;
  top: -29.5px;
  left: -1px;
  transform: rotate(-90deg);
}
.cafe-about-image .wrap-fun .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.cafe-about-image .wrap-fun .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.cafe-about-image .wrap-fun .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}

.cafe-about-content .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.cafe-about-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
}
.cafe-about-content p {
  margin-bottom: 0;
}
.cafe-about-content .list {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}
.cafe-about-content .list li {
  list-style-type: none;
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.cafe-about-content .list li i {
  display: flex;
  font-size: 25px;
  color: var(--secondaryColor);
}
.cafe-about-content .list li h5 {
  margin-bottom: 0;
  font-size: 28px;
}
.cafe-about-content .list li:last-child {
  margin-bottom: 0;
}
.cafe-about-content .about-btn {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .restaurant-about-image {
    margin-right: 0;
  }
  .restaurant-about-image .wrap-info {
    padding: 21px 25px 20px 20px;
  }
  .restaurant-about-image .wrap-info span {
    margin-top: 8px;
  }
  .restaurant-about-content {
    max-width: 100%;
  }
  .restaurant-about-content .sub {
    margin-bottom: 10px;
  }
  .restaurant-about-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .restaurant-about-content .about-btn {
    margin-top: 30px;
  }
  .cafe-about-image {
    margin-right: 0;
  }
  .cafe-about-image .wrap-fun .fun h3 {
    font-size: 37px;
  }
  .cafe-about-image .wrap-fun .fun p {
    font-size: var(--font-sixteen);
  }
  .cafe-about-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .cafe-about-content .list {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .cafe-about-content .list li {
    margin-bottom: 15px;
  }
  .cafe-about-content .list li h5 {
    font-size: 25px;
  }
  .cafe-about-content .about-btn {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-about-image {
    margin-right: 0;
  }
  .restaurant-about-content {
    max-width: 100%;
  }
  .restaurant-about-content h2 {
    margin-bottom: 20px;
  }
  .restaurant-about-content .about-btn {
    margin-top: 40px;
  }
  .cafe-about-image {
    margin-right: 0;
  }
  .cafe-about-content .list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .cafe-about-content .about-btn {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .restaurant-about-image {
    margin-right: 0;
  }
  .restaurant-about-content {
    max-width: 100%;
    margin-left: 20px;
  }
  .cafe-about-image {
    margin-right: 25px;
  }
  .cafe-about-content .list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .cafe-about-content .about-btn {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .restaurant-about-content {
    max-width: 100%;
  }
  .cafe-about-image {
    margin-right: 50px;
  }
}
#back-to-top {
  right: 20px;
  z-index: 9;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 25px;
  transition: var(--transition);
  background: var(--primary);
  color: var(--whiteColor);
  border-radius: 50%;
}
#back-to-top:hover {
  background: var(--secondaryColor);
  color: var(--whiteColor);
}

.restaurant-blog-area.bg-color3 .restaurant-blog-card .image .wrap-top {
  background-color: var(--bgColor3);
}
.restaurant-blog-area.bg-color3 .restaurant-blog-card .image .wrap-top .shape1 svg {
  fill: var(--bgColor3);
}
.restaurant-blog-area.bg-color3 .restaurant-blog-card .image .wrap-top .shape2 svg {
  fill: var(--bgColor3);
}
.restaurant-blog-area.bg-color3 .restaurant-blog-card .image .wrap-bottom {
  background-color: var(--bgColor3);
}
.restaurant-blog-area.bg-color3 .restaurant-blog-card .image .wrap-bottom .shape1 svg {
  fill: var(--bgColor3);
}
.restaurant-blog-area.bg-color3 .restaurant-blog-card .image .wrap-bottom .shape2 svg {
  fill: var(--bgColor3);
}

.restaurant-blog-card .image {
  overflow: hidden;
  position: relative;
}
.restaurant-blog-card .image a img {
  border-radius: 25px;
}
.restaurant-blog-card .image .wrap-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 51px;
  background-color: var(--whiteColor);
  border-radius: 20px 0 20px 0;
}
.restaurant-blog-card .image .wrap-top .shape1 {
  position: absolute;
  bottom: -29.5px;
  left: -1px;
  transform: rotate(0deg);
}
.restaurant-blog-card .image .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-blog-card .image .wrap-top .shape2 {
  position: absolute;
  top: -1px;
  right: -29.5px;
  transform: rotate(0deg);
}
.restaurant-blog-card .image .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-blog-card .image .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 65px;
  background-color: var(--whiteColor);
  border-radius: 20px 0 20px 0;
}
.restaurant-blog-card .image .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.restaurant-blog-card .image .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-blog-card .image .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.restaurant-blog-card .image .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-blog-card .image .arrow-btn {
  position: absolute;
  right: 45px;
  bottom: 18px;
}
.restaurant-blog-card .image .arrow-btn i {
  display: flex;
  font-size: 25px;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.restaurant-blog-card .image .arrow-btn i:hover {
  color: var(--primary);
}
.restaurant-blog-card .content {
  margin-top: 30px;
}
.restaurant-blog-card .content .meta {
  display: flex;
  margin-bottom: 12px;
  padding-left: 0;
  padding-right: 0;
}
.restaurant-blog-card .content .meta li {
  list-style-type: none;
  color: var(--secondaryColor);
  position: relative;
  margin-right: 40px;
}
.restaurant-blog-card .content .meta li a {
  color: var(--secondaryColor);
}
.restaurant-blog-card .content .meta li a:hover {
  color: var(--primary);
}
.restaurant-blog-card .content .meta li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  right: -20.5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D9D9D9;
}
.restaurant-blog-card .content .meta li:last-child {
  margin-right: 0;
}
.restaurant-blog-card .content .meta li:last-child::before {
  display: none;
}
.restaurant-blog-card .content h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.restaurant-blog-card .content p {
  margin-bottom: 0;
}
.restaurant-blog-card.white-style .image .wrap-top {
  background-color: var(--whiteColor);
}
.restaurant-blog-card.white-style .image .wrap-top .shape1 svg {
  fill: var(--whiteColor);
}
.restaurant-blog-card.white-style .image .wrap-top .shape2 svg {
  fill: var(--whiteColor);
}
.restaurant-blog-card.white-style .image .wrap-bottom {
  background-color: var(--whiteColor);
}
.restaurant-blog-card.white-style .image .wrap-bottom .shape1 svg {
  fill: var(--whiteColor);
}
.restaurant-blog-card.white-style .image .wrap-bottom .shape2 svg {
  fill: var(--whiteColor);
}

@media only screen and (max-width: 767px) {
  .restaurant-blog-card .content h3 {
    font-size: 25px;
  }
}
.cafe-reservation-area {
  background-color: var(--bgColor3);
}

.cafe-reservation-form .form-group label {
  font-size: 18px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.cafe-reservation-form .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 55px;
  background-color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  color: var(--blackColor);
  font-size: 15px;
  border-radius: 0;
  transition: var(--transition);
}
.cafe-reservation-form .form-group .form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.cafe-reservation-form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.cafe-reservation-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.cafe-reservation-form .form-group .default-btn {
  width: 100%;
  border: none;
}
.cafe-reservation-form .form-group .default-btn span {
  padding: 15.5px 28px 11px;
}

.cafe-reservation-image {
  overflow: hidden;
  position: relative;
  margin-top: 100px;
}
.cafe-reservation-image img {
  border-radius: 25px;
}
.cafe-reservation-image .wrap-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 260px;
  height: 70px;
  background-color: var(--bgColor3);
  border-radius: 0 15px 0 15px;
}
.cafe-reservation-image .wrap-top .shape1 {
  position: absolute;
  top: -1px;
  left: -29.5px;
  transform: rotate(90deg);
}
.cafe-reservation-image .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.cafe-reservation-image .wrap-top .shape2 {
  position: absolute;
  bottom: -29.5px;
  right: -1px;
  transform: rotate(90deg);
}
.cafe-reservation-image .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.cafe-reservation-image .reservation-rating-info {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--bgColor3);
  padding: 25px 30px 25px 0;
  border-radius: 0 20px 0 20px;
}
.cafe-reservation-image .reservation-rating-info .ratings {
  display: flex;
  gap: 55px;
  align-items: center;
}
.cafe-reservation-image .reservation-rating-info .ratings .rating {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}
.cafe-reservation-image .reservation-rating-info .ratings .rating .content .list {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.cafe-reservation-image .reservation-rating-info .ratings .rating .content .list li {
  list-style-type: none;
}
.cafe-reservation-image .reservation-rating-info .ratings .rating .content .list li i {
  color: var(--secondaryColor);
  font-size: var(--font-sixteen);
}
.cafe-reservation-image .reservation-rating-info .ratings .rating .content span {
  display: block;
  font-size: 13px;
  margin-top: 10px;
}
.cafe-reservation-image .reservation-rating-info .ratings .rating::before {
  position: absolute;
  content: "";
  top: 0;
  right: -32px;
  width: 1px;
  height: 100%;
  background-color: #D9D9D9;
  transform: rotate(15deg);
}
.cafe-reservation-image .reservation-rating-info .ratings .rating:last-child::before {
  display: none;
}
.cafe-reservation-image .reservation-rating-info .shape1 {
  position: absolute;
  top: -29.5px;
  left: -1px;
  transform: rotate(-90deg);
}
.cafe-reservation-image .reservation-rating-info .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.cafe-reservation-image .reservation-rating-info .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.cafe-reservation-image .reservation-rating-info .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}

.cafe-fun-items {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
}
.cafe-fun-items .fun h3 {
  font-size: 48px;
  margin-bottom: 0;
  line-height: 1;
  font-family: var(--main-font-family);
  font-weight: 500;
}
.cafe-fun-items .fun span {
  display: block;
  margin-top: 2px;
}

@media only screen and (max-width: 767px) {
  .cafe-reservation-form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .cafe-reservation-form .form-group label {
    font-size: var(--font-sixteen);
  }
  .cafe-reservation-form .form-group .default-btn {
    width: auto;
  }
  .cafe-reservation-image {
    margin-top: 50px;
    height: 55vh !important; 
  }
  .cafe-reservation-image .wrap-top {
    width: 70px;
    height: 50px;
  }
  .cafe-reservation-image .reservation-rating-info .ratings {
    display: block;
  }
  .cafe-reservation-image .reservation-rating-info .ratings .rating {
    margin-bottom: 20px;
  }
  .cafe-reservation-image .reservation-rating-info .ratings .rating::before {
    display: none;
  }
  .cafe-reservation-image .reservation-rating-info .ratings .rating:last-child {
    margin-bottom: 0;
  }
  .cafe-fun-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .cafe-fun-items .fun h3 {
    font-size: 35px;
  }
  .cafe-fun-items .fun:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cafe-reservation-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .cafe-reservation-form .form-group label {
    font-size: var(--font-sixteen);
  }
  .cafe-reservation-form .form-group .default-btn {
    width: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cafe-reservation-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .cafe-reservation-form .form-group label {
    font-size: var(--font-sixteen);
  }
  .cafe-reservation-form .form-group .default-btn {
    width: auto;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cafe-reservation-form .form-group .default-btn span {
    padding: 15.5px 10px 11px;
  }
}
.fast-food-category-area {
  background-color: var(--bgColor3);
}

.fast-food-category-item {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  background-color: var(--whiteColor);
  padding: 35px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.fast-food-category-item .content h3 {
  font-size: 32px;
  margin-bottom: 3.5px;
}
.fast-food-category-item .content p {
  margin-bottom: 0;
}
.fast-food-category-item .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  background-color: var(--bgColor3);
  border-radius: 20px 0 20px 0;
}
.fast-food-category-item .wrap-bottom .arrow-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: var(--transition);
  opacity: 0;
}
.fast-food-category-item .wrap-bottom .arrow-btn i {
  display: flex;
  font-size: 18px;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.fast-food-category-item .wrap-bottom .arrow-btn i:hover {
  color: var(--primary);
}
.fast-food-category-item .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.fast-food-category-item .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-category-item .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.fast-food-category-item .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-category-item:hover .wrap-bottom .arrow-btn {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .fast-food-category-item {
    padding: 30px 25px;
  }
  .fast-food-category-item .content h3 {
    font-size: 25px;
  }
  .fast-food-category-item .wrap-bottom .arrow-btn {
    opacity: 1;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fast-food-category-item {
    gap: 10px;
    padding: 30px 25px;
  }
}
.chef-touch-image {
  overflow: hidden;
  position: relative;
  margin-right: 50px;
}
.chef-touch-image img {
  border-radius: 25px;
}
.chef-touch-image .wrap-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  height: 57px;
  background-color: var(--whiteColor);
  border-radius: 0 15px 0 15px;
}
.chef-touch-image .wrap-top .shape1 {
  position: absolute;
  top: -1px;
  left: -29.5px;
  transform: rotate(90deg);
}
.chef-touch-image .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.chef-touch-image .wrap-top .shape2 {
  position: absolute;
  bottom: -29.5px;
  right: -1px;
  transform: rotate(90deg);
}
.chef-touch-image .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.chef-touch-image .wrap-fun {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  padding: 25px 30px 25px 25px;
  border-radius: 0 20px 0 20px;
}
.chef-touch-image .wrap-fun .fun {
  display: flex;
  gap: 20px;
  line-height: 1;
  align-items: center;
}
.chef-touch-image .wrap-fun .fun h3 {
  font-size: 48px;
  margin-bottom: 0;
  color: var(--secondaryColor);
  font-family: var(--main-font-family);
  font-weight: 400;
  line-height: 1;
}
.chef-touch-image .wrap-fun .fun h3.plus {
  position: relative;
  top: -5px;
}
.chef-touch-image .wrap-fun .fun p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}
.chef-touch-image .wrap-fun .fun p span {
  display: block;
}
.chef-touch-image .wrap-fun .shape1 {
  position: absolute;
  top: -29.5px;
  left: -1px;
  transform: rotate(-90deg);
}
.chef-touch-image .wrap-fun .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.chef-touch-image .wrap-fun .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.chef-touch-image .wrap-fun .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}

.chef-touch-content {
  max-width: 530px;
  margin-left: 50px;
}
.chef-touch-content .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.chef-touch-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
}
.chef-touch-content p {
  margin-bottom: 0;
}
.chef-touch-content .touch-btn {
  margin-top: 65px;
}

@media only screen and (max-width: 767px) {
  .chef-touch-image {
    margin-right: 0;
  }
  .chef-touch-image .wrap-fun .fun h3 {
    font-size: 37px;
  }
  .chef-touch-image .wrap-fun .fun p {
    font-size: var(--font-sixteen);
  }
  .chef-touch-content {
    max-width: 100%;
    margin-left: 0;
  }
  .chef-touch-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .chef-touch-content .touch-btn {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chef-touch-image {
    margin-right: 0;
  }
  .chef-touch-content {
    max-width: 100%;
    margin-left: 0;
  }
  .chef-touch-content .touch-btn {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chef-touch-image {
    margin-right: 0;
  }
}
.chef-all-btn {
  text-align: end;
}

.chef-card {
  position: relative;
  overflow: hidden;
  background-color: var(--bgColor3);
  border-radius: 25px;
}
.chef-card .image {
  position: relative;
  margin: 12px 12px 0 12px;
}
.chef-card .image img {
  border-radius: 20px;
}
.chef-card .image .list {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
  background-color: var(--primary);
  padding: 18px 12px;
  border-radius: 100px;
  opacity: 0;
  transition: var(--transition);
}
.chef-card .image .list li {
  list-style-type: none;
  margin-bottom: 15px;
}
.chef-card .image .list li a i {
  display: flex;
  font-size: 18px;
  color: var(--whiteColor);
  transition: var(--transition);
}
.chef-card .image .list li a i:hover {
  color: var(--secondaryColor);
}
.chef-card .image .list li:last-child {
  margin-bottom: 0;
}
.chef-card .content {
  padding: 22px 30px 30px;
}
.chef-card .content h3 {
  font-size: 28px;
  margin-bottom: 0;
}
.chef-card .content span {
  font-size: 15px;
  display: block;
  margin-top: 7px;
}
.chef-card .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 65px;
  background-color: var(--whiteColor);
  border-radius: 20px 0 20px 0;
}
.chef-card .wrap-bottom .share {
  position: absolute;
  bottom: 22px;
  right: 20px;
}
.chef-card .wrap-bottom .share i {
  display: flex;
  font-size: 23.5px;
  color: var(--secondaryColor);
  cursor: pointer;
  transition: var(--transition);
}
.chef-card .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.chef-card .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.chef-card .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.chef-card .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.chef-card:hover .image .list {
  opacity: 1;
}
.chef-card:hover .wrap-bottom .share i {
  color: var(--primary);
}

@media only screen and (max-width: 767px) {
  .chef-all-btn {
    text-align: start;
  }
  .chef-card .content h3 {
    font-size: 25px;
  }
}
.products-dishes-image {
  overflow: hidden;
  position: relative;
}
.products-dishes-image img {
  border-radius: 25px;
}
.products-dishes-image .wrap-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 145px;
  height: 72px;
  background-color: var(--whiteColor);
  border-radius: 20px 0 20px 0;
}
.products-dishes-image .wrap-top .shape1 {
  position: absolute;
  bottom: -29.5px;
  left: -1px;
  transform: rotate(0deg);
}
.products-dishes-image .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.products-dishes-image .wrap-top .shape2 {
  position: absolute;
  top: -1px;
  right: -29.5px;
  transform: rotate(0deg);
}
.products-dishes-image .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.products-dishes-image .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 145px;
  height: 75px;
  background-color: var(--whiteColor);
  border-radius: 20px 0 20px 0;
}
.products-dishes-image .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.products-dishes-image .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.products-dishes-image .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.products-dishes-image .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}

.products-dishes-inner {
  margin-left: 100px;
  padding-top: 20px;
}
.products-dishes-inner .top {
  margin-bottom: 45px;
}
.products-dishes-inner .top .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.products-dishes-inner .top h2 {
  font-size: 48px;
  margin-bottom: 0;
}

.products-dishes-slider {
  margin-left: -210px;
}

.products-dishes-card {
  background-color: var(--bgColor3);
  padding: 50px 50px 35px 50px;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  transition: var(--transition);
}
.products-dishes-card .image {
  text-align: center;
}
.products-dishes-card .content {
  margin-top: 40px;
  padding-right: 2px;
}
.products-dishes-card .content h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.products-dishes-card .content p {
  margin-bottom: 0;
}
.products-dishes-card .content .bottom {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}
.products-dishes-card .content .bottom .price {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondaryColor);
}
.products-dishes-card .content .bottom .list {
  display: flex;
  gap: 5px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.products-dishes-card .content .bottom .list li {
  list-style-type: none;
}
.products-dishes-card .content .bottom .list li i {
  color: var(--secondaryColor);
}
.products-dishes-card .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85px;
  height: 85px;
  background-color: var(--whiteColor);
  border-radius: 20px 0 20px 0;
}
.products-dishes-card .wrap-bottom .cart-btn {
  background-color: transparent;
  padding: 0;
  border: none;
  position: absolute;
  right: 25px;
  bottom: 30px;
}
.products-dishes-card .wrap-bottom .cart-btn i {
  display: flex;
  font-size: 35px;
  color: var(--primary);
  transition: var(--transition);
}
.products-dishes-card .wrap-bottom .cart-btn i:hover {
  color: var(--secondaryColor);
}
.products-dishes-card .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.products-dishes-card .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.products-dishes-card .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.products-dishes-card .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.products-dishes-card:hover {
  background-color: var(--bgColor);
}

.products-dishes-button {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 45px;
}
.products-dishes-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--bgColor);
  color: var(--primary);
  font-size: 20px;
  transition: var(--transition);
}
.products-dishes-button i:hover {
  background-color: var(--bgColor);
  border: 1px solid var(--bgColor);
  color: var(--primary);
}
.products-dishes-button .products-dishes-button-prev i {
  transform: rotate(180deg);
}

@media only screen and (max-width: 767px) {
  .products-dishes-inner {
    margin-left: 0;
    padding-top: 0;
  }
  .products-dishes-inner .top {
    margin-bottom: 30px;
  }
  .products-dishes-inner .top h2 {
    font-size: 35px;
  }
  .products-dishes-slider {
    margin-left: 0;
  }
  .products-dishes-card {
    padding: 25px;
  }
  .products-dishes-card .content {
    margin-top: 30px;
    padding-right: 0;
  }
  .products-dishes-card .content h3 {
    font-size: 25px;
  }
  .products-dishes-card .content .bottom {
    display: block;
    margin-top: 15px;
  }
  .products-dishes-card .content .bottom .price {
    font-size: 20px;
  }
  .products-dishes-card .wrap-bottom {
    width: 60px;
    height: 60px;
  }
  .products-dishes-card .wrap-bottom .cart-btn {
    right: 15px;
    bottom: 15px;
  }
  .products-dishes-card .wrap-bottom .cart-btn i {
    font-size: 28px;
  }
  .products-dishes-button {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .products-dishes-inner {
    margin-left: 0;
    padding-top: 0;
  }
  .products-dishes-slider {
    margin-left: 0;
  }
  .products-dishes-card {
    padding: 30px;
  }
  .products-dishes-card .content {
    margin-top: 35px;
    padding-right: 0;
  }
  .products-dishes-card .content .bottom {
    gap: 20px;
    margin-top: 20px;
  }
  .products-dishes-card .content .bottom .price {
    font-size: 20px;
  }
  .products-dishes-card .wrap-bottom {
    width: 60px;
    height: 60px;
  }
  .products-dishes-card .wrap-bottom .cart-btn {
    right: 15px;
    bottom: 15px;
  }
  .products-dishes-card .wrap-bottom .cart-btn i {
    font-size: 28px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .products-dishes-inner {
    margin-left: 35px;
  }
  .products-dishes-slider {
    margin-left: -250px;
  }
  .products-dishes-card {
    padding: 40px 40px 35px 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .products-dishes-inner {
    margin-left: 35px;
  }
  .products-dishes-slider {
    margin-left: -250px;
  }
  .products-dishes-card {
    padding: 40px 40px 35px 40px;
  }
}
.restaurant-faq-content {
  max-width: 550px;
}
.restaurant-faq-content .top {
  max-width: 525px;
  margin-bottom: 40px;
}
.restaurant-faq-content .top .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.restaurant-faq-content .top h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.restaurant-faq-content .accordion .accordion-item {
  border: none;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #f3f3f3;
}
.restaurant-faq-content .accordion .accordion-item .accordion-button {
  display: flex;
  gap: 20px;
  border: none;
  box-shadow: unset;
  position: relative;
  padding: 25px 50px 25px 0;
  background-color: transparent;
  color: var(--primary);
  font-size: 23.5px;
  font-weight: 500;
  border-radius: 0;
  transition: var(--transition);
  line-height: 1.1;
}
.restaurant-faq-content .accordion .accordion-item .accordion-button::before {
  position: absolute;
  content: "\f108";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: flaticon_aroz;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--bgColor);
  color: var(--primary);
  transition: var(--transition);
  font-weight: 300;
  font-size: 20px;
  border-radius: 50px;
}
.restaurant-faq-content .accordion .accordion-item .accordion-button::after {
  display: none;
}
.restaurant-faq-content .accordion .accordion-item .accordion-button.open::before {
  transform: translateY(-50%) rotate(90deg);
}
.restaurant-faq-content .accordion .accordion-item .accordion-body {
  padding: 0 35px 25px 0;
}
.restaurant-faq-content .accordion .accordion-item:first-child {
  border-top: 1px solid #f3f3f3;
}

.restaurant-faq-reservation {
  background-color: var(--bgColor);
  padding: 65px 55px;
  margin-top: -360px;
}
.restaurant-faq-reservation .top {
  margin-bottom: 30px;
}
.restaurant-faq-reservation .top .sub {
  color: var(--secondaryColor);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.restaurant-faq-reservation .top h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.restaurant-faq-reservation form .form-group {
  margin-bottom: 20px;
}
.restaurant-faq-reservation form .form-group label {
  font-size: 18px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.restaurant-faq-reservation form .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 50px;
  background-color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  color: var(--blackColor);
  font-size: 15px;
  border-radius: 5px;
  transition: var(--transition);
}
.restaurant-faq-reservation form .form-group .form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.restaurant-faq-reservation form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.restaurant-faq-reservation form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.restaurant-faq-reservation form .reservation-btn {
  margin-top: 35px;
}
.restaurant-faq-reservation form .reservation-btn .default-btn {
  border: none;
}
.restaurant-faq-reservation.with-border-radius {
  border-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .restaurant-faq-content {
    max-width: 100%;
  }
  .restaurant-faq-content .top {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .restaurant-faq-content .top h2 {
    font-size: 35px;
  }
  .restaurant-faq-content .accordion .accordion-item .accordion-button {
    font-size: 20.5px;
    padding: 20px 50px 20px 0;
  }
  .restaurant-faq-content .accordion .accordion-item .accordion-body {
    padding: 0 0 20px 0;
  }
  .restaurant-faq-reservation {
    padding: 25px;
    margin-top: 0;
  }
  .restaurant-faq-reservation .top {
    margin-bottom: 25px;
  }
  .restaurant-faq-reservation .top h2 {
    font-size: 35px;
  }
  .restaurant-faq-reservation form .form-group label {
    font-size: 15px;
  }
  .restaurant-faq-reservation form .reservation-btn {
    margin-top: 25px;
  }
  .restaurant-faq-reservation form .reservation-btn .default-btn span {
    padding: 15.5px 30px 11px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-faq-content {
    max-width: 100%;
  }
  .restaurant-faq-content .top {
    max-width: 100%;
  }
  .restaurant-faq-reservation {
    padding: 35px;
    margin-top: 0;
  }
}
.faq-accordion {
  max-width: 855px;
  margin: auto;
}
.faq-accordion .accordion .accordion-item {
  border: none;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid #f3f3f3;
}
.faq-accordion .accordion .accordion-item .accordion-button {
  display: flex;
  gap: 20px;
  border: none;
  box-shadow: unset;
  position: relative;
  padding: 25px 50px 25px 0;
  background-color: transparent;
  color: var(--primary);
  font-size: 23.5px;
  font-weight: 500;
  border-radius: 0;
  transition: var(--transition);
  line-height: 1.1;
}
.faq-accordion .accordion .accordion-item .accordion-button::before {
  position: absolute;
  content: "\f108";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-family: flaticon_aroz;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--bgColor);
  color: var(--primary);
  transition: var(--transition);
  font-weight: 300;
  font-size: 20px;
  border-radius: 50px;
}
.faq-accordion .accordion .accordion-item .accordion-button::after {
  display: none;
}
.faq-accordion .accordion .accordion-item .accordion-button.open::before {
  transform: translateY(-50%) rotate(90deg);
}
.faq-accordion .accordion .accordion-item .accordion-body {
  padding: 0 35px 25px 0;
}
.faq-accordion .accordion .accordion-item:first-child {
  border-top: 1px solid #f3f3f3;
}

@media only screen and (max-width: 767px) {
  .faq-accordion .accordion .accordion-item .accordion-button {
    font-size: 20.5px;
    padding: 20px 50px 20px 0;
  }
  .faq-accordion .accordion .accordion-item .accordion-body {
    padding: 0 0 20px 0;
  }
}
.fast-food-products-button {
  display: flex;
  gap: 20px;
  justify-content: end;
  align-items: center;
}
.fast-food-products-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--bgColor);
  color: var(--primary);
  font-size: 20px;
  transition: var(--transition);
}
.fast-food-products-button i:hover {
  background-color: var(--bgColor);
  border: 1px solid var(--bgColor);
  color: var(--primary);
}
.fast-food-products-button .fast-food-products-button-prev i {
  transform: rotate(180deg);
}

.fast-food-products-card {
  background-color: var(--bgColor3);
  padding: 50px 50px 35px 50px;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  transition: var(--transition);
}
.fast-food-products-card .image {
  text-align: center;
}
.fast-food-products-card .content {
  margin-top: 40px;
  padding-right: 2px;
}
.fast-food-products-card .content h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.fast-food-products-card .content p {
  margin-bottom: 0;
}
.fast-food-products-card .content .bottom {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}
.fast-food-products-card .content .bottom .price {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondaryColor);
}
.fast-food-products-card .content .bottom .list {
  display: flex;
  gap: 5px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.fast-food-products-card .content .bottom .list li {
  list-style-type: none;
}
.fast-food-products-card .content .bottom .list li i {
  color: var(--secondaryColor);
}
.fast-food-products-card .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85px;
  height: 85px;
  background-color: var(--whiteColor);
  border-radius: 20px 0 20px 0;
}
.fast-food-products-card .wrap-bottom .cart-btn {
  background-color: transparent;
  padding: 0;
  border: none;
  position: absolute;
  right: 25px;
  bottom: 30px;
}
.fast-food-products-card .wrap-bottom .cart-btn i {
  display: flex;
  font-size: 35px;
  color: var(--primary);
  transition: var(--transition);
}
.fast-food-products-card .wrap-bottom .cart-btn i:hover {
  color: var(--secondaryColor);
}
.fast-food-products-card .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.fast-food-products-card .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.fast-food-products-card .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.fast-food-products-card .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.fast-food-products-card:hover {
  background-color: var(--bgColor);
}

@media only screen and (max-width: 767px) {
  .fast-food-products-button {
    justify-content: start;
  }
  .fast-food-products-card {
    padding: 25px;
  }
  .fast-food-products-card .content {
    margin-top: 30px;
    padding-right: 0;
  }
  .fast-food-products-card .content h3 {
    font-size: 25px;
  }
  .fast-food-products-card .content .bottom {
    display: block;
    margin-top: 15px;
  }
  .fast-food-products-card .content .bottom .price {
    font-size: 20px;
  }
  .fast-food-products-card .wrap-bottom {
    width: 60px;
    height: 60px;
  }
  .fast-food-products-card .wrap-bottom .cart-btn {
    right: 15px;
    bottom: 15px;
  }
  .fast-food-products-card .wrap-bottom .cart-btn i {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fast-food-products-card {
    padding: 30px;
  }
  .fast-food-products-card .content {
    margin-top: 35px;
    padding-right: 0;
  }
  .fast-food-products-card .content .bottom {
    gap: 20px;
    margin-top: 20px;
  }
  .fast-food-products-card .content .bottom .price {
    font-size: 20px;
  }
  .fast-food-products-card .wrap-bottom {
    width: 60px;
    height: 60px;
  }
  .fast-food-products-card .wrap-bottom .cart-btn {
    right: 15px;
    bottom: 15px;
  }
  .fast-food-products-card .wrap-bottom .cart-btn i {
    font-size: 28px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fast-food-products-card {
    padding: 40px 40px 35px 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fast-food-products-card {
    padding: 40px 40px 35px 40px;
  }
  .fast-food-products-card .content .bottom {
    gap: 20px;
  }
  .fast-food-products-card .content .bottom .price {
    font-size: 25px;
  }
}
.restaurant-features-items {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.restaurant-features-card {
  max-width: 315px;
  position: relative;
}
.restaurant-features-card .icon {
  margin-bottom: 45px;
}
.restaurant-features-card .icon i {
  display: flex;
  font-size: 70px;
  color: var(--secondaryColor);
}
.restaurant-features-card h3 {
  font-size: 32px;
  margin-bottom: 15px;
}
.restaurant-features-card p {
  margin-bottom: 0;
}
.restaurant-features-card::before {
  position: absolute;
  content: "";
  right: -75px;
  top: 0;
  width: 0.5px;
  height: 100%;
  background-color: #E2E2E2;
  transform: rotate(10deg);
}
.restaurant-features-card:last-child::before {
  display: none;
}

@media only screen and (max-width: 767px) {
  .restaurant-features-items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .restaurant-features-card {
    max-width: 100%;
  }
  .restaurant-features-card .icon {
    margin-bottom: 25px;
  }
  .restaurant-features-card h3 {
    font-size: 25px;
  }
  .restaurant-features-card::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-features-items {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .restaurant-features-card {
    max-width: 100%;
  }
  .restaurant-features-card .icon {
    margin-bottom: 25px;
  }
  .restaurant-features-card::before {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .restaurant-features-card .icon {
    margin-bottom: 30px;
  }
  .restaurant-features-card::before {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .restaurant-features-card {
    max-width: 300px;
  }
  .restaurant-features-card::before {
    right: -52px;
  }
}
.restaurant-testimonials-content .top {
  margin-bottom: 100px;
}
.restaurant-testimonials-content .top .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.restaurant-testimonials-content .top h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.restaurant-testimonials-content .testimonials-info {
  display: flex;
  gap: 85px;
  align-items: center;
}
.restaurant-testimonials-content .testimonials-info .rating {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}
.restaurant-testimonials-content .testimonials-info .rating .content .list {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.restaurant-testimonials-content .testimonials-info .rating .content .list li {
  list-style-type: none;
}
.restaurant-testimonials-content .testimonials-info .rating .content .list li i {
  color: var(--secondaryColor);
  font-size: 20px;
}
.restaurant-testimonials-content .testimonials-info .rating .content span {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}
.restaurant-testimonials-content .testimonials-info .rating::before {
  position: absolute;
  content: "";
  top: 0;
  right: -42px;
  width: 1px;
  height: 100%;
  background-color: #D9D9D9;
  transform: rotate(15deg);
}
.restaurant-testimonials-content .testimonials-info .rating:last-child::before {
  display: none;
}
.restaurant-testimonials-content .testimonials-btn {
  margin-top: 70px;
}

.restaurant-testimonials-slider {
  position: relative;
  margin-left: 100px;
}

.restaurant-testimonials-item .icon {
  margin-bottom: 30px;
}
.restaurant-testimonials-item .icon i {
  display: flex;
  font-size: 45px;
  color: var(--secondaryColor);
}
.restaurant-testimonials-item .sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bgColor);
  font-size: 20px;
  padding: 8px 30px;
  border-radius: 50px;
  margin-bottom: 15px;
}
.restaurant-testimonials-item p {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}
.restaurant-testimonials-item .info {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 500px;
  margin-top: 75px;
}
.restaurant-testimonials-item .info .image img {
  max-width: 50px;
  border-radius: 50%;
  border: 1px solid var(--blackColor);
}
.restaurant-testimonials-item .info .content h3 {
  font-size: 20px;
  margin-bottom: 0;
  font-family: var(--main-font-family);
  font-weight: 500;
}
.restaurant-testimonials-item .info .content span {
  font-size: 15px;
  display: block;
  margin-top: 10px;
}

.restaurant-testimonials-button {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.restaurant-testimonials-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--bgColor);
  color: var(--primary);
  font-size: 20px;
  transition: var(--transition);
}
.restaurant-testimonials-button i:hover {
  background-color: var(--bgColor);
  border: 1px solid var(--bgColor);
  color: var(--primary);
}
.restaurant-testimonials-button .restaurant-testimonials-button-prev i {
  transform: rotate(180deg);
}

.fast-food-testimonials-area {
  background-color: var(--bgColor3);
}

.fast-food-testimonials-image {
  overflow: hidden;
  position: relative;
}
.fast-food-testimonials-image img {
  border-radius: 25px;
}
.fast-food-testimonials-image .wrap-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 60px;
  background-color: var(--bgColor3);
  border-radius: 20px 0 20px 0;
}
.fast-food-testimonials-image .wrap-top .shape1 {
  position: absolute;
  bottom: -29.5px;
  left: -1px;
  transform: rotate(0deg);
}
.fast-food-testimonials-image .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-testimonials-image .wrap-top .shape2 {
  position: absolute;
  top: -1px;
  right: -29.5px;
  transform: rotate(0deg);
}
.fast-food-testimonials-image .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-testimonials-image .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 65px;
  background-color: var(--bgColor3);
  border-radius: 20px 0 20px 0;
}
.fast-food-testimonials-image .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.fast-food-testimonials-image .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-testimonials-image .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.fast-food-testimonials-image .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}

.fast-food-testimonials-inner {
  position: relative;
  overflow: hidden;
  background-color: var(--whiteColor);
  padding: 100px 65px 70px;
  border-radius: 25px;
}
.fast-food-testimonials-inner .quote-icon {
  position: absolute;
  right: 40px;
  top: 40px;
}
.fast-food-testimonials-inner .quote-icon i {
  display: flex;
  font-size: 45px;
  color: var(--secondaryColor);
}
.fast-food-testimonials-inner .wrap-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 60px;
  background-color: var(--bgColor3);
  border-radius: 20px 0 20px 0;
}
.fast-food-testimonials-inner .wrap-top .shape1 {
  position: absolute;
  bottom: -29.5px;
  left: -1px;
  transform: rotate(0deg);
}
.fast-food-testimonials-inner .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-testimonials-inner .wrap-top .shape2 {
  position: absolute;
  top: -1px;
  right: -29.5px;
  transform: rotate(0deg);
}
.fast-food-testimonials-inner .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-testimonials-inner .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 65px;
  background-color: var(--bgColor3);
  border-radius: 20px 0 20px 0;
}
.fast-food-testimonials-inner .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.fast-food-testimonials-inner .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-testimonials-inner .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.fast-food-testimonials-inner .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}

.fast-food-testimonials-item .sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bgColor);
  font-size: 20px;
  padding: 8px 30px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.fast-food-testimonials-item p {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
}
.fast-food-testimonials-item .info {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 50px;
}
.fast-food-testimonials-item .info .image img {
  max-width: 50px;
  border-radius: 50%;
  border: 1px solid var(--blackColor);
}
.fast-food-testimonials-item .info .content h3 {
  font-size: 20px;
  margin-bottom: 0;
  font-family: var(--main-font-family);
  font-weight: 500;
}
.fast-food-testimonials-item .info .content span {
  font-size: 15px;
  display: block;
  margin-top: 10px;
}

.fast-food-testimonials-button {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 1;
}
.fast-food-testimonials-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--bgColor);
  color: var(--primary);
  font-size: 20px;
  border-radius: 50px;
  transition: var(--transition);
}
.fast-food-testimonials-button i:hover {
  background-color: var(--bgColor);
  border: 1px solid var(--bgColor);
  color: var(--primary);
}
.fast-food-testimonials-button .fast-food-testimonials-button-prev i {
  transform: rotate(180deg);
}

.cafe-testimonials-area {
  background-color: var(--bgColor);
}

.cafe-testimonials-content {
  max-width: 525px;
}
.cafe-testimonials-content .top {
  margin-bottom: 220px;
}
.cafe-testimonials-content .top .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.cafe-testimonials-content .top h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.cafe-testimonials-content .testimonials-info {
  display: flex;
  gap: 85px;
  align-items: center;
}
.cafe-testimonials-content .testimonials-info .rating {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}
.cafe-testimonials-content .testimonials-info .rating .content .list {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.cafe-testimonials-content .testimonials-info .rating .content .list li {
  list-style-type: none;
}
.cafe-testimonials-content .testimonials-info .rating .content .list li i {
  color: var(--secondaryColor);
  font-size: 20px;
}
.cafe-testimonials-content .testimonials-info .rating .content span {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}
.cafe-testimonials-content .testimonials-info .rating::before {
  position: absolute;
  content: "";
  top: 0;
  right: -42px;
  width: 1px;
  height: 100%;
  background-color: #D9D9D9;
  transform: rotate(15deg);
}
.cafe-testimonials-content .testimonials-info .rating:last-child::before {
  display: none;
}
.cafe-testimonials-content .testimonials-btn {
  margin-top: 70px;
}

.cafe-testimonials-inner {
  background-color: var(--whiteColor);
  padding: 70px 60px;
  position: relative;
}

.cafe-testimonials-item .icon {
  margin-bottom: 50px;
}
.cafe-testimonials-item .icon i {
  display: flex;
  font-size: 45px;
  color: var(--secondaryColor);
}
.cafe-testimonials-item .sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bgColor);
  font-size: 20px;
  padding: 8px 30px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.cafe-testimonials-item p {
  font-size: 27px;
  line-height: 1.3;
}
.cafe-testimonials-item .info {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 500px;
  margin-top: 50px;
}
.cafe-testimonials-item .info .image img {
  max-width: 50px;
  border-radius: 50%;
  border: 1px solid var(--blackColor);
}
.cafe-testimonials-item .info .content h3 {
  font-size: 20px;
  margin-bottom: 0;
  font-family: var(--main-font-family);
  font-weight: 500;
}
.cafe-testimonials-item .info .content span {
  font-size: 15px;
  display: block;
  margin-top: 10px;
}

.cafe-testimonials-button {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.cafe-testimonials-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--bgColor);
  color: var(--primary);
  font-size: 20px;
  border-radius: 50px;
  transition: var(--transition);
}
.cafe-testimonials-button i:hover {
  background-color: var(--bgColor);
  border: 1px solid var(--bgColor);
  color: var(--primary);
}
.cafe-testimonials-button .cafe-testimonials-button-prev i {
  transform: rotate(180deg);
}

@media only screen and (max-width: 767px) {
  .restaurant-testimonials-content .top {
    margin-bottom: 30px;
  }
  .restaurant-testimonials-content .top h2 {
    font-size: 35px;
  }
  .restaurant-testimonials-content .testimonials-info {
    display: block;
  }
  .restaurant-testimonials-content .testimonials-info .rating {
    margin-bottom: 25px;
  }
  .restaurant-testimonials-content .testimonials-info .rating::before {
    display: none;
  }
  .restaurant-testimonials-content .testimonials-info .rating:last-child {
    margin-bottom: 0;
  }
  .restaurant-testimonials-content .testimonials-btn {
    margin-top: 30px;
  }
  .restaurant-testimonials-slider {
    margin-left: 0;
  }
  .restaurant-testimonials-item .icon {
    margin-bottom: 25px;
  }
  .restaurant-testimonials-item p {
    font-size: 20px;
    line-height: 1.4;
  }
  .restaurant-testimonials-item .info {
    margin-top: 30px;
  }
  .restaurant-testimonials-button {
    position: relative;
    margin-top: 30px;
  }
  .fast-food-testimonials-inner {
    padding: 100px 25px 95px;
  }
  .fast-food-testimonials-inner .quote-icon {
    right: 30px;
    top: 25px;
  }
  .fast-food-testimonials-item p {
    font-size: 20px;
    line-height: 1.4;
  }
  .fast-food-testimonials-item .info {
    margin-top: 30px;
  }
  .cafe-testimonials-content {
    max-width: 100%;
  }
  .cafe-testimonials-content .top {
    margin-bottom: 30px;
  }
  .cafe-testimonials-content .top h2 {
    font-size: 35px;
  }
  .cafe-testimonials-content .testimonials-info {
    display: block;
  }
  .cafe-testimonials-content .testimonials-info .rating {
    margin-bottom: 25px;
  }
  .cafe-testimonials-content .testimonials-info .rating::before {
    display: none;
  }
  .cafe-testimonials-content .testimonials-info .rating:last-child {
    margin-bottom: 0;
  }
  .cafe-testimonials-content .testimonials-btn {
    margin-top: 30px;
  }
  .cafe-testimonials-inner {
    padding: 25px;
  }
  .cafe-testimonials-item .icon {
    margin-bottom: 25px;
  }
  .cafe-testimonials-item p {
    font-size: 20px;
    line-height: 1.4;
  }
  .cafe-testimonials-item .info {
    margin-top: 30px;
  }
  .cafe-testimonials-button {
    position: relative;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-testimonials-content .top {
    margin-bottom: 50px;
  }
  .restaurant-testimonials-content .testimonials-btn {
    margin-top: 50px;
  }
  .restaurant-testimonials-slider {
    margin-left: 0;
  }
  .restaurant-testimonials-item .info {
    margin-top: 50px;
  }
  .cafe-testimonials-content {
    max-width: 100%;
  }
  .cafe-testimonials-content .top {
    margin-bottom: 50px;
  }
  .cafe-testimonials-content .testimonials-btn {
    margin-top: 50px;
  }
  .cafe-testimonials-inner {
    padding: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .restaurant-testimonials-content .top {
    margin-bottom: 50px;
  }
  .restaurant-testimonials-content .testimonials-btn {
    margin-top: 50px;
  }
  .restaurant-testimonials-slider {
    margin-left: 0;
  }
  .restaurant-testimonials-item .info {
    margin-top: 50px;
  }
  .fast-food-testimonials-inner {
    padding: 100px 50px 70px;
  }
  .cafe-testimonials-content .testimonials-info {
    gap: 40px;
  }
  .cafe-testimonials-content .testimonials-info .rating::before {
    right: -22px;
  }
  .cafe-testimonials-inner {
    padding: 50px 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .restaurant-testimonials-slider {
    margin-left: 70px;
  }
  .cafe-testimonials-inner {
    padding: 55px 40px;
  }
}
.footer-area {
  background-color: var(--bodyTextColor);
}

.footer-overview {
  margin-bottom: 100px;
}
.footer-overview .left {
  max-width: 375px;
}
.footer-overview .left .widget-logo {
  display: block;
  margin-bottom: 25px;
}
.footer-overview .left p {
  margin-bottom: 0;
  color: var(--bgColor);
}
.footer-overview .right h5 {
  font-size: 32px;
  color: var(--bgColor);
  margin-bottom: 25px;
}
.footer-overview .right .newsletter-form {
  position: relative;
}
.footer-overview .right .newsletter-form .form-control {
  display: inline-block;
  height: 65px;
  background-color: transparent;
  border: 1px solid #F4E8D4;
  box-shadow: unset;
  outline: 0;
  border-radius: 0;
  color: var(--whiteColor);
  transition: var(--transition);
  padding: 15px 25px;
}
.footer-overview .right .newsletter-form .form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.footer-overview .right .newsletter-form .form-control:focus::placeholder {
  color: transparent;
}
.footer-overview .right .newsletter-form .default-btn {
  border: none;
  position: absolute;
  right: 7px;
  top: 5.5px;
  background-color: var(--bgColor);
  color: var(--primary);
}
.footer-overview .right .newsletter-form .default-btn span {
  border: 1px solid var(--primary);
  transition: var(--transition);
}
.footer-overview .right .newsletter-form .default-btn:hover {
  background-color: var(--secondaryColor);
}

.footer-links {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(244, 232, 212, 0.5);
  border-bottom: 1px solid rgba(244, 232, 212, 0.5);
  margin-bottom: 100px;
  padding: 30px 0 28px;
}
.footer-links li {
  line-height: 1;
  font-size: 15px;
  list-style-type: none;
}
.footer-links li a {
  color: var(--bgColor);
}
.footer-links li a:hover {
  color: var(--secondaryColor);
}

.single-footer-widget .find span {
  font-size: 15px;
  display: block;
  margin-bottom: 3.5px;
  color: var(--whiteColor);
}
.single-footer-widget .find p {
  font-size: 15px;
  color: var(--bgColor);
}
.single-footer-widget .follow {
  margin-top: 30px;
}
.single-footer-widget .follow span {
  font-size: 15px;
  display: block;
  margin-bottom: 3.5px;
  color: var(--whiteColor);
}
.single-footer-widget .follow .list {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  font-size: 15px;
  padding-left: 0;
  padding-right: 0;
}
.single-footer-widget .follow .list li {
  list-style-type: none;
}
.single-footer-widget .follow .list li a {
  color: var(--bgColor);
}
.single-footer-widget .follow .list li a:hover {
  color: var(--secondaryColor);
}
.single-footer-widget .info span {
  font-size: 15px;
  display: block;
  margin-bottom: 8.5px;
  color: var(--whiteColor);
}
.single-footer-widget .info .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.single-footer-widget .info .list li {
  list-style-type: none;
  margin-bottom: 12px;
  line-height: 1;
  font-size: 15px;
  color: var(--bgColor);
}
.single-footer-widget .info .list li a {
  color: var(--bgColor);
}
.single-footer-widget .info .list li a:hover {
  color: var(--secondaryColor);
}
.single-footer-widget .info .list li:last-child {
  margin-bottom: 0;
}

.copyright-area {
  background-color: var(--blackColor);
  padding-top: 30px;
  padding-bottom: 30px;
}
.copyright-area p {
  font-size: 15px;
  color: var(--bgColor);
}
.copyright-area p span {
  color: var(--secondaryColor);
}
.copyright-area p a {
  color: var(--secondaryColor);
}
.copyright-area p a:hover {
  color: var(--whiteColor);
}
.copyright-area .lists {
  display: flex;
  justify-content: end;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.copyright-area .lists li {
  list-style-type: none;
  position: relative;
  font-size: 15px;
  margin-right: 40px;
}
.copyright-area .lists li a {
  color: var(--bgColor);
}
.copyright-area .lists li a:hover {
  color: var(--secondaryColor);
}
.copyright-area .lists li::before {
  position: absolute;
  content: "";
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background-color: #D9D9D9;
}
.copyright-area .lists li:last-child {
  margin-right: 0;
}
.copyright-area .lists li:last-child::before {
  display: none;
}

@media only screen and (max-width: 767px) {
  .footer-overview {
    margin-bottom: 50px;
  }
  .footer-overview .left {
    max-width: 100%;
  }
  .footer-overview .right .newsletter-form .default-btn {
    position: relative;
    margin-top: 10px;
  }
  .footer-links {
    display: block;
    margin-bottom: 50px;
  }
  .footer-links li {
    margin-bottom: 25px;
  }
  .footer-links li:last-child {
    margin-bottom: 0;
  }
  .copyright-area {
    text-align: center;
  }
  .copyright-area .lists {
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-overview .left {
    max-width: 100%;
  }
  .footer-links {
    gap: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-links {
    gap: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-links {
    gap: 50px;
  }
}
.restaurant-gallery-area {
  background-color: var(--bodyTextColor);
}
.restaurant-gallery-area .section-title h2 {
  color: var(--whiteColor);
}
.restaurant-gallery-area.bg-transparent-style {
  background-color: transparent;
}

.restaurant-gallery-card {
  overflow: hidden;
  position: relative;
}
.restaurant-gallery-card img {
  border-radius: 25px;
}
.restaurant-gallery-card .wrap-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 57px;
  background-color: var(--bodyTextColor);
  border-radius: 0 20px 0 20px;
}
.restaurant-gallery-card .wrap-top .shape1 {
  position: absolute;
  top: -1px;
  left: -29.5px;
  transform: rotate(90deg);
}
.restaurant-gallery-card .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bodyTextColor);
}
.restaurant-gallery-card .wrap-top .shape2 {
  position: absolute;
  bottom: -29.5px;
  right: -1px;
  transform: rotate(90deg);
}
.restaurant-gallery-card .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bodyTextColor);
}
.restaurant-gallery-card .wrap-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85px;
  height: 65px;
  background-color: var(--bodyTextColor);
  border-radius: 0 20px 0 20px;
}
.restaurant-gallery-card .wrap-bottom .shape1 {
  position: absolute;
  top: -29.5px;
  left: -1px;
  transform: rotate(-90deg);
}
.restaurant-gallery-card .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bodyTextColor);
}
.restaurant-gallery-card .wrap-bottom .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.restaurant-gallery-card .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bodyTextColor);
}
.restaurant-gallery-card .zoom {
  position: absolute;
  left: 30px;
  bottom: 18px;
}
.restaurant-gallery-card .zoom i {
  display: flex;
  font-size: 33px;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.restaurant-gallery-card .zoom i:hover {
  color: var(--whiteColor);
}
.restaurant-gallery-card.wrap-style2 .wrap-top {
  background-color: var(--whiteColor);
}
.restaurant-gallery-card.wrap-style2 .wrap-top .shape1 svg {
  fill: var(--whiteColor);
}
.restaurant-gallery-card.wrap-style2 .wrap-top .shape2 svg {
  fill: var(--whiteColor);
}
.restaurant-gallery-card.wrap-style2 .wrap-bottom {
  background-color: var(--whiteColor);
}
.restaurant-gallery-card.wrap-style2 .wrap-bottom .shape1 svg {
  fill: var(--whiteColor);
}
.restaurant-gallery-card.wrap-style2 .wrap-bottom .shape2 svg {
  fill: var(--whiteColor);
}
.restaurant-gallery-card.wrap-style2 .zoom i {
  color: var(--secondaryColor);
}
.restaurant-gallery-card.wrap-style2 .zoom i:hover {
  color: var(--primary);
}

.restaurant-gallery-button {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 50px;
}
.restaurant-gallery-button i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--whiteColor);
  color: var(--whiteColor);
  font-size: 20px;
  transition: var(--transition);
}
.restaurant-gallery-button i:hover {
  background-color: var(--bgColor);
  border: 1px solid var(--bgColor);
  color: var(--primary);
}
.restaurant-gallery-button .restaurant-gallery-button-prev i {
  transform: rotate(180deg);
}

.restaurant-gallery-info {
  margin-left: 30px;
}
.restaurant-gallery-info .top {
  background-color: var(--secondaryColor);
  padding: 50px 45px;
  clip-path: polygon(20% 0%, 90% 0, 100% 10%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 0);
}
.restaurant-gallery-info .top .content {
  margin-bottom: 130px;
}
.restaurant-gallery-info .top .content img {
  display: block;
  margin-bottom: 15px;
}
.restaurant-gallery-info .top .content p {
  margin-bottom: 0;
  color: var(--whiteColor);
}
.restaurant-gallery-info .top .phone-btn {
  display: flex;
  gap: 12px;
  align-items: center;
}
.restaurant-gallery-info .top .phone-btn i {
  display: flex;
  font-size: 20px;
  color: var(--bgColor);
}
.restaurant-gallery-info .top .phone-btn a {
  font-size: 17px;
  color: var(--whiteColor);
  text-decoration: underline;
}
.restaurant-gallery-info .top .phone-btn a:hover {
  color: var(--primary);
}
.restaurant-gallery-info .top .find {
  margin-top: 40px;
}
.restaurant-gallery-info .top .find span {
  font-size: 15px;
  display: block;
  margin-bottom: 2.5px;
  color: var(--bgColor);
}
.restaurant-gallery-info .top .find p {
  font-size: 15px;
  color: var(--whiteColor);
}
.restaurant-gallery-info .bottom {
  background-color: var(--bgColor);
  padding: 35px 45px;
  margin-top: -1.5px;
}
.restaurant-gallery-info .bottom a {
  display: flex;
  gap: 15px;
  line-height: 1;
  align-items: center;
}
.restaurant-gallery-info .bottom a i {
  display: flex;
  font-size: 30px;
  color: var(--blackColor);
}
.restaurant-gallery-info .bottom a span {
  color: var(--blackColor);
  text-decoration: underline;
  transition: var(--transition);
}
.restaurant-gallery-info .bottom a span:hover {
  color: var(--primary);
}

@media only screen and (max-width: 767px) {
  .restaurant-gallery-button {
    margin-top: 30px;
  }
  .restaurant-gallery-info {
    margin-left: 0;
  }
  .restaurant-gallery-info .top {
    padding: 30px 25px;
  }
  .restaurant-gallery-info .top .content {
    margin-bottom: 40px;
  }
  .restaurant-gallery-info .top .find {
    margin-top: 30px;
  }
  .restaurant-gallery-info .bottom {
    padding: 30px 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-gallery-button {
    margin-top: 30px;
  }
  .restaurant-gallery-info {
    margin-left: 0;
  }
  .restaurant-gallery-info .top .content {
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .restaurant-gallery-info {
    margin-left: 0;
  }
  .restaurant-gallery-info .top .content {
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .restaurant-gallery-info {
    margin-left: 5px;
  }
  .restaurant-gallery-info .top {
    padding: 30px 25px;
  }
  .restaurant-gallery-info .top .content {
    margin-bottom: 120px;
  }
  .restaurant-gallery-info .bottom {
    padding: 30px 25px;
  }
}
.restaurant-menu-area {
  background-color: var(--bgColor3);
}

.restaurant-menu-item h3 {
  font-size: 23.5px;
  font-family: var(--main-font-family);
  font-weight: 400;
  color: var(--secondaryColor);
  margin-bottom: 35px;
}
.restaurant-menu-item .items .item {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 50px;
}
.restaurant-menu-item .items .item .image img {
  max-width: 80px;
}
.restaurant-menu-item .items .item .content {
  width: 100%;
}
.restaurant-menu-item .items .item .content .top {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.restaurant-menu-item .items .item .content .top h4 {
  margin-bottom: 0;
  font-size: 32px;
}
.restaurant-menu-item .items .item .content .top .num {
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
}
.restaurant-menu-item .items .item:last-child {
  margin-bottom: 0;
}

.restaurant-menu-btns {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 55px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.restaurant-menu-btns li {
  list-style-type: none;
}
.restaurant-menu-btns li:first-child .default-btn {
  border: 1px solid var(--primary);
}
.restaurant-menu-btns li:first-child .default-btn:hover {
  border: 1px solid var(--secondaryColor);
}
.restaurant-menu-btns li:last-child .default-btn {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.restaurant-menu-btns li:last-child .default-btn span {
  border: 1px solid var(--primary);
  transition: var(--transition);
}
.restaurant-menu-btns li:last-child .default-btn:hover {
  background-color: var(--primary);
  color: var(--whiteColor);
}
.restaurant-menu-btns li:last-child .default-btn:hover span {
  border: 1px solid var(--bgColor);
}

.restaurant-menu-image {
  margin-top: 80px;
  margin-bottom: 80px;
}

.fast-food-category-area {
  background-color: var(--bgColor3);
}

.fast-food-category-item {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  background-color: var(--whiteColor);
  padding: 35px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.fast-food-category-item .content h3 {
  font-size: 32px;
  margin-bottom: 3.5px;
}
.fast-food-category-item .content p {
  margin-bottom: 0;
}
.fast-food-category-item .wrap-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 45px;
  background-color: var(--bgColor3);
  border-radius: 20px 0 20px 0;
}
.fast-food-category-item .wrap-bottom .arrow-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: var(--transition);
  opacity: 0;
}
.fast-food-category-item .wrap-bottom .arrow-btn i {
  display: flex;
  font-size: 18px;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.fast-food-category-item .wrap-bottom .arrow-btn i:hover {
  color: var(--primary);
}
.fast-food-category-item .wrap-bottom .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.fast-food-category-item .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-category-item .wrap-bottom .shape2 {
  position: absolute;
  top: -29.5px;
  right: -1px;
  transform: rotate(180deg);
}
.fast-food-category-item .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-category-item:hover .wrap-bottom .arrow-btn {
  opacity: 1;
}

.cafe-menu-items .item {
  background-color: var(--bgColor3);
  padding: 120px 80px;
  margin-bottom: 80px;
  position: sticky;
  top: 125px;
}
.cafe-menu-items .item .cafe-menu-content {
  max-width: 525px;
}
.cafe-menu-items .item .cafe-menu-content .top {
  margin-bottom: 50px;
}
.cafe-menu-items .item .cafe-menu-content .top h2 {
  font-size: 32px;
  margin-bottom: 0;
}
.cafe-menu-items .item .cafe-menu-content .top span {
  color: var(--secondaryColor);
  display: block;
  margin-top: 10px;
}
.cafe-menu-items .item .cafe-menu-content .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.cafe-menu-items .item .cafe-menu-content .list li {
  list-style-type: none;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}
.cafe-menu-items .item .cafe-menu-content .list li h5 {
  font-size: 23.5px;
  margin-bottom: 0;
}
.cafe-menu-items .item .cafe-menu-content .list li .line {
  display: flex;
  gap: 25px;
  align-items: center;
}
.cafe-menu-items .item .cafe-menu-content .list li .price {
  font-size: 23.5px;
  font-weight: 500;
  color: var(--primary);
}
.cafe-menu-items .item .cafe-menu-content .list li:last-child {
  margin-bottom: 0;
}
.cafe-menu-items .item .cafe-menu-image {
  margin-left: 70px;
}
.cafe-menu-items .item:last-child {
  margin-bottom: 0;
}
.cafe-menu-items .item.wrap-bg2 {
  background-color: var(--bgColor);
}

@media only screen and (max-width: 767px) {
  .restaurant-menu-item h3 {
    font-size: 18.5px;
    margin-bottom: 25px;
  }
  .restaurant-menu-item .items .item {
    display: block;
    margin-bottom: 30px;
  }
  .restaurant-menu-item .items .item .image img {
    max-width: 85px;
  }
  .restaurant-menu-item .items .item .content {
    width: auto;
    margin-top: 20px;
  }
  .restaurant-menu-item .items .item .content .top {
    gap: 10px;
  }
  .restaurant-menu-item .items .item .content .top h4 {
    font-size: 25px;
  }
  .restaurant-menu-item .items .item .content .top img {
    max-width: 20px;
  }
  .restaurant-menu-item .items .item .content .top .num {
    font-size: 20px;
  }
  .restaurant-menu-item .items .item:last-child {
    margin-bottom: 0;
  }
  .restaurant-menu-btns {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
  .restaurant-menu-btns li {
    margin-bottom: 15px;
  }
  .restaurant-menu-btns li:last-child {
    margin-bottom: 0;
  }
  .fast-food-category-item {
    padding: 30px 25px;
  }
  .fast-food-category-item .content h3 {
    font-size: 25px;
  }
  .fast-food-category-item .wrap-bottom .arrow-btn {
    opacity: 1;
  }
  .cafe-menu-items .item {
    padding: 50px 25px;
    margin-bottom: 30px;
    position: relative;
    top: 0;
  }
  .cafe-menu-items .item .cafe-menu-content {
    max-width: 100%;
  }
  .cafe-menu-items .item .cafe-menu-content .top {
    margin-bottom: 30px;
  }
  .cafe-menu-items .item .cafe-menu-content .top h2 {
    font-size: 25px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li {
    display: block;
    margin-bottom: 15px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li h5 {
    font-size: 20.5px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li .price {
    font-size: 20.5px;
  }
  .cafe-menu-items .item .cafe-menu-image {
    margin-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .restaurant-menu-item .items .item {
    display: flex;
  }
  .restaurant-menu-item .items .item .content {
    width: 100%;
    margin-top: 0;
  }
  .restaurant-menu-item .items .item .content .top img {
    max-width: 75px;
  }
  .restaurant-menu-btns {
    display: flex;
  }
  .restaurant-menu-btns li {
    margin-bottom: 0;
  }
  .cafe-menu-items .item .cafe-menu-content .list li {
    display: flex;
    gap: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-menu-item h3 {
    margin-bottom: 30px;
  }
  .restaurant-menu-item .items .item {
    margin-bottom: 35px;
  }
  .restaurant-menu-btns {
    margin-top: 40px;
  }
  .cafe-menu-items .item {
    margin-bottom: 30px;
    position: relative;
    top: 0;
    padding: 55px;
  }
  .cafe-menu-items .item .cafe-menu-content {
    max-width: 100%;
  }
  .cafe-menu-items .item .cafe-menu-content .top {
    margin-bottom: 30px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li {
    gap: 15px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li h5 {
    font-size: 20.5px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li .price {
    font-size: 20.5px;
  }
  .cafe-menu-items .item .cafe-menu-image {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .restaurant-menu-item h3 {
    margin-bottom: 30px;
  }
  .restaurant-menu-item .items .item {
    margin-bottom: 35px;
  }
  .restaurant-menu-btns {
    margin-top: 40px;
  }
  .cafe-menu-items .item {
    padding: 55px;
  }
  .cafe-menu-items .item .cafe-menu-content {
    max-width: 100%;
  }
  .cafe-menu-items .item .cafe-menu-content .top {
    margin-bottom: 30px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li {
    gap: 15px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li h5 {
    font-size: 20.5px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li .price {
    font-size: 20.5px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .restaurant-menu-item .items .item .content .top img {
    max-width: 75px;
  }
  .fast-food-category-item {
    gap: 10px;
    padding: 30px 25px;
  }
  .cafe-menu-items .item {
    padding: 100px 50px;
  }
  .cafe-menu-items .item .cafe-menu-content .top {
    margin-bottom: 35px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li {
    gap: 10px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li h5 {
    font-size: 22.5px;
  }
  .cafe-menu-items .item .cafe-menu-content .list li .price {
    font-size: 22.5px;
  }
}
.navbar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  position: fixed;
  transition: 0.3s;
  background-color: var(--bgColor);
  padding-top: 30px;
  padding-bottom: 30px;
}
.navbar.sticky {
  border-bottom: none;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 60px 0px rgba(32, 38, 91, 0.1);
  padding-top: 15px;
  padding-bottom: 15px;
}
.navbar .navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar .navbar-toggler {
  color: var(--primary);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}
.navbar .navbar-toggler .burger-menu {
  cursor: pointer;
}
.navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background: var(--primary);
}
.navbar ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-right: 0;
}
.navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--primary);
  transition: var(--transition);
  display: flex;
  gap: 1px;
  align-items: center;
  font-size: 15px;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.navbar .navbar-nav .nav-item .nav-link i {
  display: flex;
  position: relative;
  top: -2px;
  margin-left: 5px;
}
.navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 0;
}
.navbar .navbar-nav .nav-item .dropdown-toggle::after {
  margin-left: 0;
  vertical-align: 0;
  border: none;
}
.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.navbar .navbar-nav .nav-item:hover, .navbar .navbar-nav .nav-item.active {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 40px;
  opacity: 0;
  z-index: 4;
  width: 230px;
  margin-top: 0;
  display: block;
  border-radius: 10px;
  position: absolute;
  visibility: hidden;
  background-color: var(--whiteColor);
  border: none;
  transition: all 0.2s ease-in-out;
  transform: translate3d(0, 18px, 0);
  box-shadow: 0px 4px 70px 0px rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  padding-bottom: 12px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  display: flex;
  gap: 7px;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  font-size: 15px;
  padding-top: 10.5px;
  padding-bottom: 10.5px;
  padding-left: 25px;
  padding-right: 25px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link i {
  position: relative;
  top: 0;
  font-size: 12.5px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link::after {
  display: none;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  margin-left: 5px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: -5px;
  opacity: 0;
  right: -100%;
  left: auto;
  margin-top: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  margin-left: 5px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: -5px;
  opacity: 0;
  right: -100%;
  left: auto;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  margin-left: 5px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: -5px;
  opacity: 0;
  right: 100%;
  left: auto;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  margin-left: 5px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--secondaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item:has(.dropdown-menu .nav-link.active) > a {
  color: var(--secondaryColor) !important;
}
.navbar .others-option {
  line-height: 1;
}
.navbar .others-option .option-item {
  margin-right: 35px;
}
.navbar .others-option .option-item .phone-btn {
  display: flex;
  gap: 12px;
  align-items: center;
}
.navbar .others-option .option-item .phone-btn i {
  display: flex;
  font-size: 20px;
  color: var(--secondaryColor);
}
.navbar .others-option .option-item .phone-btn a {
  font-size: 17px;
  color: var(--blackColor);
  text-decoration: underline;
}
.navbar .others-option .option-item .phone-btn a:hover {
  color: var(--primary);
}
.navbar .others-option .option-item .default-btn {
  background-color: var(--secondaryColor);
}
.navbar .others-option .option-item .default-btn:hover {
  background-color: var(--primary);
}
.navbar .others-option .option-item:last-child {
  margin-right: 0;
}

.navbar-box-style {
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-box-style.sticky {
  background-color: transparent;
  box-shadow: unset;
  padding: 0;
}
.navbar-box-style.sticky .inner-box {
  border-radius: 0 0 15px 15px;
}
.navbar-box-style .inner-box {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  background-color: var(--bgColor3);
  padding: 15px 30px;
  border-radius: 0 0 25px 25px;
  transition: 0.3s;
}
.navbar-box-style .navbar-nav {
  margin-left: 0;
  margin-right: auto;
}
.navbar-box-style .others-option {
  margin-left: auto;
}

.navbar-area-style2 {
  background-color: transparent;
}
.navbar-area-style2.sticky {
  background-color: var(--blackColor);
}
.navbar-area-style2 .navbar-toggler {
  color: var(--whiteColor);
}
.navbar-area-style2 .navbar-toggler .burger-menu span {
  background: var(--whiteColor);
}

@media only screen and (max-width: 767px) {
  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar .navbar-collapse {
    background-color: #f5f5f5;
    margin-top: 15px;
  }
  .navbar .navbar-nav {
    display: block;
    max-height: 60vh;
    margin: 0 !important;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .navbar .navbar-nav .nav-item {
    margin: 17.5px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
  }
  .navbar .navbar-nav .nav-item .dropdown-menu {
    width: auto;
    padding: 10px 0;
    z-index: initial;
    top: 0 !important;
    box-shadow: unset;
    left: 0 !important;
    opacity: 1 !important;
    margin-top: 10px !important;
    transform: unset !important;
    position: relative !important;
    visibility: visible !important;
    background-color: var(--whiteColor);
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li a {
    padding: 7px 0 !important;
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    background-color: #f9f9f9;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px !important;
    margin-top: 7px !important;
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
    background-color: var(--whiteColor);
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    background-color: #f9f9f9;
  }
  .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  .navbar .navbar-nav .nav-item:first-child {
    margin-top: 0;
  }
  .navbar .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
  .navbar .navbar-nav::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .navbar .navbar-nav::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.05);
  }
  .navbar .navbar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
  }
  .navbar .others-option {
    margin-left: 0;
    padding: 20px;
  }
  .navbar .others-option .option-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .navbar .others-option .option-item:last-child {
    margin-bottom: 0;
  }
  .navbar.active .collapse:not(.show) {
    display: block;
  }
  .navbar-box-style {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-box-style .navbar-brand.d-none {
    display: block !important; 
  }
  .navbar-box-style .inner-box {
    padding: 15px 20px;
  }
  .navbar-box-style .navbar-collapse {
    background-color: var(--whiteColor) !important;
  }
  .navbar-box-style .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    background-color: #f9f9f9;
  }
  .navbar-box-style .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    background-color: var(--whiteColor);
  }
  .navbar-box-style .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
    background-color: #f9f9f9;
  }
  .navbar-box-style .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    background-color: var(--whiteColor);
  }
  .navbar-box-style .navbar-collapse .navbar-brand {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar .navbar-collapse {
    background-color: #f5f5f5;
    margin-top: 15px;
  }
  .navbar .navbar-nav {
    display: block;
    max-height: 60vh;
    margin: 0 !important;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .navbar .navbar-nav .nav-item {
    margin: 17.5px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
  }
  .navbar .navbar-nav .nav-item .dropdown-menu {
    width: auto;
    padding: 10px 0;
    z-index: initial;
    top: 0 !important;
    box-shadow: unset;
    left: 0 !important;
    opacity: 1 !important;
    margin-top: 10px !important;
    transform: unset !important;
    position: relative !important;
    visibility: visible !important;
    background-color: var(--whiteColor);
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li a {
    padding: 7px 0 !important;
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    background-color: #f9f9f9;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px !important;
    margin-top: 7px !important;
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
    background-color: var(--whiteColor);
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    background-color: #f9f9f9;
  }
  .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  .navbar .navbar-nav .nav-item:first-child {
    margin-top: 0;
  }
  .navbar .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
  .navbar .navbar-nav::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .navbar .navbar-nav::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.05);
  }
  .navbar .navbar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
  }
  .navbar .others-option {
    margin-left: 0;
    padding: 20px;
  }
  .navbar.active .collapse:not(.show) {
    display: block;
  }
  .navbar-box-style {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-box-style .navbar-brand.d-none {
    display: block !important; 
  }
  .navbar-box-style .inner-box {
    padding: 20px;
  }
  .navbar-box-style .navbar-collapse {
    background-color: var(--whiteColor) !important;
  }
  .navbar-box-style .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
    background-color: #f9f9f9;
  }
  .navbar-box-style .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    background-color: var(--whiteColor);
  }
  .navbar-box-style .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
    background-color: #f9f9f9;
  }
  .navbar-box-style .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
    background-color: var(--whiteColor);
  }
  .navbar-box-style .navbar-collapse .navbar-brand {
    display: none;
  }
  .navbar-area-style2 {
    background-color: transparent;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar .navbar-nav .nav-item {
    margin-left: 13px;
    margin-right: 13px;
  }
  .navbar .others-option .option-item {
    margin-right: 25px;
  }
  .navbar .others-option .option-item .phone-btn i {
    display: none;
  }
  .navbar .others-option .default-btn span {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar-box-style {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-box-style .navbar-brand.d-none {
    display: block !important; 
  }
  .navbar-box-style .inner-box {
    padding: 15px 20px;
  }
  .navbar-box-style .navbar-collapse .navbar-brand {
    display: none;
  }
  .navbar-box-style .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
  .navbar-box-style .others-option {
    margin-left: 0;
  }
  .navbar-area-style2 {
    background-color: transparent;
  }
}

@media (min-width: 992px) {
  .navbar-area-style2 .navbar-nav .nav-item .nav-link {
    color: var(--bgColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .nav-link:hover, .navbar-area-style2 .navbar-nav .nav-item .nav-link.active {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item:hover, .navbar-area-style2 .navbar-nav .nav-item.active {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--primary);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--primary);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--primary);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
    color: var(--primary);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
    color: var(--secondaryColor);
  }
  .navbar-area-style2 .others-option .option-item .phone-btn a {
    color: var(--bgColor);
  }
  .navbar-area-style2 .others-option .option-item .phone-btn a:hover {
    color: var(--secondaryColor);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar .others-option .option-item {
    margin-right: 25px;
  }
  .navbar .navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
  }
  .navbar-box-style {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-box-style .inner-box {
    padding: 15px 20px;
  }
}
.cafe-overview-area {
  background-image: url(../images/overview-bg2.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 545px;
  padding-bottom: 100px;
}

.cafe-overview-info {
  max-width: 330px;
  background-color: var(--bgColor3);
  padding: 50px;
}
.cafe-overview-info span {
  font-size: 20px;
  display: block;
  margin-bottom: 12.5px;
  color: var(--primary);
  font-weight: 600;
}
.cafe-overview-info .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.cafe-overview-info .list li {
  list-style-type: none;
  margin-bottom: 15px;
  line-height: 1;
  color: var(--bodyTextColor);
}
.cafe-overview-info .list li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .cafe-overview-area {
    padding-top: 345px;
    padding-bottom: 50px;
  }
  .cafe-overview-info {
    padding: 25px;
  }
}
.page-banner-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 275px;
  padding-bottom: 230px;
}
.page-banner-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(26, 26, 26, 0.3);
  z-index: -1;
}

.page-banner-content {
  text-align: center;
}
.page-banner-content h2 {
  color: var(--bgColor3);
  margin-bottom: 0;
  line-height: 1;
  font-size: 95px;
}

@media only screen and (max-width: 767px) {
  .page-banner-area {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .page-banner-content h2 {
    font-size: 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-banner-area {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-banner-area {
    padding-top: 210px;
    padding-bottom: 130px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .page-banner-area {
    padding-bottom: 210px;
  }
}
.preloader-area {
  z-index: 9999;
  background-color: var(--whiteColor);
}
.preloader-area .loader {
  transform: translateY(-50%);
  top: 50%;
}
.preloader-area .waviy {
  font-size: 50px;
  margin-top: 20px;
  -webkit-box-reflect: below -35px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}
.preloader-area .waviy span {
  animation-delay: 0.1s;
  animation: waviy 1s infinite;
  font-weight: 700;
  color: var(--blackColor);
}
.preloader-area .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-area .waviy span:nth-child(3) {
  animation-delay: 0.3s;
}
.preloader-area .waviy span:nth-child(4) {
  animation-delay: 0.4s;
}

.input-counter {
  display: inline-flex;
  border-radius: 0;
  background-color: var(--bgColor3);
  padding: 15px 12px;
  line-height: 1;
  align-items: center;
}
.input-counter i {
  color: var(--blackColor);
  font-size: 20px;
  line-height: 1;
  transition: var(--transition);
  cursor: pointer;
}
.input-counter i:hover {
  color: var(--primary);
}
.input-counter input {
  background-color: transparent;
  border: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.32px;
  color: var(--blackColor);
  max-width: 90px;
  padding: 0 10px;
}

.overview-inner {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px;
  border-radius: 25px;
}

.overview-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border-top: 10px solid var(--redColor);
  border-bottom: 10px solid var(--redColor);
}
.overview-video .background-video {
  top: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overview-content {
  max-width: 510px;
  padding: 55px 0 55px 55px;
}
.overview-content .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.overview-content h2 {
  font-size: 48px;
  color: var(--bgColor);
  margin-bottom: 25px;
}
.overview-content p {
  margin-bottom: 0;
  color: var(--whiteColor);
}
.overview-content .overview-btn {
  margin-top: 45px;
}
.overview-content .overview-btn .default-btn {
  background-color: var(--secondaryColor);
}
.overview-content .overview-btn .default-btn:hover {
  background-color: var(--bodyTextColor);
}

@media only screen and (max-width: 767px) {
  .overview-inner {
    padding: 25px;
  }
  .overview-video {
    height: 30vh;
  }
  .overview-content {
    max-width: 100%;
    padding: 0;
  }
  .overview-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .overview-content .overview-btn {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .overview-inner {
    padding: 30px;
  }
  .overview-video {
    height: 50vh;
  }
  .overview-content {
    max-width: 100%;
    padding: 0;
  }
  .overview-content h2 {
    margin-bottom: 20px;
  }
  .overview-content .overview-btn {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .overview-content {
    padding: 30px 0 30px 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .overview-content {
    padding: 30px 0 30px 40px;
  }
}
.restaurant-specialties-area {
  position: relative;
  overflow: hidden;
}
.restaurant-specialties-area .container {
  position: relative;
  z-index: 1;
}
.restaurant-specialties-area .section-title {
  position: absolute;
  left: 0;
  top: 140px;
}
.restaurant-specialties-area .section-title h2 {
  color: var(--whiteColor);
}
.restaurant-specialties-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, #1A1A1A 100%);
  z-index: 1;
}

.restaurant-specialties-image {
  position: relative;
  height: 932px;
}
.restaurant-specialties-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.restaurant-specialties-image img.active {
  opacity: 1;
  transform: scale(1);
}

.restaurant-specialties-items {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 120px;
}
.restaurant-specialties-items .item {
  cursor: pointer;
  position: relative;
  padding: 0 60px;
}
.restaurant-specialties-items .item .icon {
  margin-bottom: 25px;
}
.restaurant-specialties-items .item .icon i {
  display: flex;
  font-size: 70px;
  color: var(--secondaryColor);
}
.restaurant-specialties-items .item h4 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--whiteColor);
  transition: var(--transition);
}
.restaurant-specialties-items .item p {
  margin-bottom: 0;
  color: #D9D9D9;
}
.restaurant-specialties-items .item:hover h4, .restaurant-specialties-items .item.active h4 {
  text-decoration: underline;
}
.restaurant-specialties-items .item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -180px;
  width: 1px;
  height: 1050px;
  background-color: rgba(226, 226, 226, 0.4);
}
.restaurant-specialties-items .item.right-border::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -180px;
  width: 1px;
  height: 1050px;
  background-color: rgba(226, 226, 226, 0.4);
}

.fast-food-specialties-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--primary);
}

.fast-food-specialties-content {
  max-width: 515px;
}
.fast-food-specialties-content .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.fast-food-specialties-content h2 {
  font-size: 48px;
  margin-bottom: 18px;
  color: var(--bgColor);
}
.fast-food-specialties-content p {
  margin-bottom: 0;
  color: var(--whiteColor);
}
.fast-food-specialties-content .specialties-info {
  display: flex;
  gap: 85px;
  align-items: center;
  margin-top: 45px;
}
.fast-food-specialties-content .specialties-info .rating {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}
.fast-food-specialties-content .specialties-info .rating .content .list {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.fast-food-specialties-content .specialties-info .rating .content .list li {
  list-style-type: none;
}
.fast-food-specialties-content .specialties-info .rating .content .list li i {
  color: var(--secondaryColor);
  font-size: 20px;
}
.fast-food-specialties-content .specialties-info .rating .content span {
  display: block;
  font-size: 15px;
  margin-top: 10px;
  color: var(--bgColor);
}
.fast-food-specialties-content .specialties-info .rating::before {
  position: absolute;
  content: "";
  top: 0;
  right: -42px;
  width: 1px;
  height: 100%;
  background-color: #D9D9D9;
  transform: rotate(15deg);
}
.fast-food-specialties-content .specialties-info .rating:last-child::before {
  display: none;
}
.fast-food-specialties-content .specialties-btn {
  margin-top: 40px;
}
.fast-food-specialties-content .specialties-btn .default-btn {
  background-color: var(--secondaryColor);
}
.fast-food-specialties-content .specialties-btn .default-btn:hover {
  background-color: var(--bodyTextColor);
}

.fast-food-specialties-items .item {
  display: flex;
  gap: 30px;
  align-items: start;
  border-bottom: 0.5px solid rgba(236, 121, 24, 0.4);
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.fast-food-specialties-items .item .icon i {
  display: flex;
  font-size: 33px;
  color: var(--secondaryColor);
  position: relative;
  top: 2.5px;
}
.fast-food-specialties-items .item .content h3 {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--bgColor);
}
.fast-food-specialties-items .item .content p {
  margin-bottom: 0;
  color: var(--whiteColor);
}
.fast-food-specialties-items .item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fast-food-specialties-shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.fast-food-specialties-shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .restaurant-specialties-area .section-title {
    top: 50px;
    left: calc(var(--bs-gutter-x) * 0.5);
  }
  .restaurant-specialties-items {
    bottom: 50px;
    left: calc(var(--bs-gutter-x) * 0.5);
    right: calc(var(--bs-gutter-x) * 0.5);
  }
  .restaurant-specialties-items .item {
    padding: 0;
    margin-bottom: 25px;
  }
  .restaurant-specialties-items .item .icon {
    margin-bottom: 20px;
  }
  .restaurant-specialties-items .item h4 {
    font-size: 25px;
  }
  .restaurant-specialties-items .item::before {
    display: none;
  }
  .restaurant-specialties-items .item.right-border {
    margin-bottom: 0;
  }
  .restaurant-specialties-items .item.right-border::after {
    display: none;
  }
  .fast-food-specialties-content {
    max-width: 100%;
  }
  .fast-food-specialties-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .fast-food-specialties-content .specialties-info {
    display: block;
    margin-top: 30px;
  }
  .fast-food-specialties-content .specialties-info .rating {
    margin-bottom: 20px;
  }
  .fast-food-specialties-content .specialties-info .rating::before {
    display: none;
  }
  .fast-food-specialties-content .specialties-info .rating:last-child {
    margin-bottom: 0;
  }
  .fast-food-specialties-content .specialties-btn {
    margin-top: 40px;
  }
  .fast-food-specialties-content .specialties-btn .default-btn {
    background-color: var(--secondaryColor);
  }
  .fast-food-specialties-content .specialties-btn .default-btn:hover {
    background-color: var(--bodyTextColor);
  }
  .fast-food-specialties-items .item {
    gap: 20px;
  }
  .fast-food-specialties-items .item .content h3 {
    font-size: 25px;
  }
  .fast-food-specialties-shape1 {
    display: none;
  }
  .fast-food-specialties-shape2 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-specialties-area .section-title {
    top: 100px;
  }
  .restaurant-specialties-items {
    bottom: 100px;
  }
  .restaurant-specialties-items .item {
    padding: 0 30px;
  }
  .fast-food-specialties-content {
    max-width: 100%;
  }
  .fast-food-specialties-shape1 {
    opacity: 0.2;
  }
  .fast-food-specialties-shape2 {
    opacity: 0.2;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .restaurant-specialties-area .section-title {
    top: 100px;
  }
  .restaurant-specialties-items {
    bottom: 100px;
  }
  .fast-food-specialties-shape1 {
    opacity: 0.2;
  }
  .fast-food-specialties-shape2 {
    opacity: 0.2;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .restaurant-specialties-items {
    bottom: 100px;
  }
  .fast-food-specialties-shape1 {
    opacity: 0.3;
  }
  .fast-food-specialties-shape2 {
    opacity: 0.3;
  }
}
.restaurant-video-area {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.restaurant-video-area .background-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.restaurant-video-area .video-btn {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  font-size: 35px;
  background-color: var(--bgColor);
  color: var(--primary);
  margin: auto;
  border-radius: 100px;
  transition: var(--transition);
}
.restaurant-video-area .video-btn i {
  line-height: 0.01;
}
.restaurant-video-area .video-btn:hover {
  background-color: var(--primary);
  color: var(--whiteColor);
}

@media only screen and (max-width: 767px) {
  .restaurant-video-area {
    height: 70vh;
  }
}
.restaurant-choose-content {
  background-color: var(--bgColor3);
  padding: 80px 40px 40px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.restaurant-choose-content .top {
  margin-bottom: 30px;
}
.restaurant-choose-content .top .sub {
  color: var(--secondaryColor);
  display: block;
  margin-bottom: 12px;
}
.restaurant-choose-content .top h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.restaurant-choose-content .image {
  position: relative;
  overflow: hidden;
}
.restaurant-choose-content .image img {
  border-radius: 20px;
}
.restaurant-choose-content .image .rectangle-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 127px;
  height: 55px;
  background-color: var(--bgColor3);
  border-radius: 0 15px 0 15px;
}
.restaurant-choose-content .image .rectangle-top .shape1 {
  position: absolute;
  top: -1px;
  left: -29.5px;
  transform: rotate(90deg);
}
.restaurant-choose-content .image .rectangle-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.restaurant-choose-content .image .rectangle-top .shape2 {
  position: absolute;
  bottom: -29.5px;
  right: -1px;
  transform: rotate(90deg);
}
.restaurant-choose-content .image .rectangle-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.restaurant-choose-content .image .rectangle-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 230px;
  height: 90px;
  background-color: var(--bgColor3);
  border-radius: 0 15px 0 15px;
}
.restaurant-choose-content .image .rectangle-bottom .shape1 {
  position: absolute;
  top: -29.5px;
  left: -1px;
  transform: rotate(-90deg);
}
.restaurant-choose-content .image .rectangle-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.restaurant-choose-content .image .rectangle-bottom .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.restaurant-choose-content .image .rectangle-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.restaurant-choose-content .wrap-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  height: 57px;
  background-color: var(--whiteColor);
  border-radius: 0 15px 0 15px;
}
.restaurant-choose-content .wrap-top .shape1 {
  position: absolute;
  top: -1px;
  left: -29.5px;
  transform: rotate(90deg);
}
.restaurant-choose-content .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-choose-content .wrap-top .shape2 {
  position: absolute;
  bottom: -29.5px;
  right: -1px;
  transform: rotate(90deg);
}
.restaurant-choose-content .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-choose-content .wrap-fun {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  padding: 25px 30px 25px 25px;
  border-radius: 0 20px 0 20px;
}
.restaurant-choose-content .wrap-fun .fun {
  display: flex;
  gap: 20px;
  line-height: 1;
  align-items: center;
}
.restaurant-choose-content .wrap-fun .fun h3 {
  font-size: 48px;
  margin-bottom: 0;
  color: var(--secondaryColor);
  font-family: var(--main-font-family);
  font-weight: 400;
  line-height: 1;
}
.restaurant-choose-content .wrap-fun .fun h3.plus {
  position: relative;
  top: -5px;
}
.restaurant-choose-content .wrap-fun .fun p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}
.restaurant-choose-content .wrap-fun .fun p span {
  display: block;
}
.restaurant-choose-content .wrap-fun .shape1 {
  position: absolute;
  top: -29.5px;
  left: -1px;
  transform: rotate(-90deg);
}
.restaurant-choose-content .wrap-fun .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.restaurant-choose-content .wrap-fun .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.restaurant-choose-content .wrap-fun .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}

.restaurant-choose-items {
  margin-left: 100px;
}
.restaurant-choose-items .item {
  display: flex;
  gap: 30px;
  align-items: start;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.restaurant-choose-items .item .icon i {
  display: flex;
  font-size: 33px;
  color: var(--secondaryColor);
  position: relative;
  top: 2.5px;
}
.restaurant-choose-items .item .content h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.restaurant-choose-items .item .content p {
  margin-bottom: 0;
}
.restaurant-choose-items .item.without-border {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.restaurant-choose-items .choose-btn {
  margin-top: 65px;
}

@media only screen and (max-width: 767px) {
  .restaurant-choose-content {
    padding: 35px 25px 25px 25px;
  }
  .restaurant-choose-content .top {
    margin-bottom: 25px;
  }
  .restaurant-choose-content .top h2 {
    font-size: 35px;
  }
  .restaurant-choose-content .image .rectangle-top {
    width: 85px;
    height: 40px;
  }
  .restaurant-choose-content .image .rectangle-bottom {
    width: 165px;
    height: 65px;
  }
  .restaurant-choose-content .wrap-top {
    width: 100px;
    height: 40px;
  }
  .restaurant-choose-content .wrap-fun {
    padding: 15px;
  }
  .restaurant-choose-content .wrap-fun .fun {
    gap: 15px;
  }
  .restaurant-choose-content .wrap-fun .fun h3 {
    font-size: 30px;
  }
  .restaurant-choose-content .wrap-fun .fun h3.plus {
    top: -1px;
  }
  .restaurant-choose-content .wrap-fun .fun p {
    font-size: 15px;
  }
  .restaurant-choose-items {
    margin-left: 0;
  }
  .restaurant-choose-items .item {
    gap: 20px;
  }
  .restaurant-choose-items .item .content h3 {
    font-size: 25px;
  }
  .restaurant-choose-items .choose-btn {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-choose-content {
    padding: 50px 35px 35px 35px;
  }
  .restaurant-choose-items {
    margin-left: 0;
  }
  .restaurant-choose-items .choose-btn {
    margin-top: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .restaurant-choose-items {
    margin-left: 35px;
  }
  .restaurant-choose-items .choose-btn {
    margin-top: 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .restaurant-choose-items {
    margin-left: 70px;
  }
}
.widget-area {
  background: var(--bgColor3);
  padding: 40px 35px;
  border-radius: 10px;
  position: sticky;
  top: 120px;
}
.widget-area .widget {
  margin-bottom: 45px;
}
.widget-area .widget .widget-title {
  font-size: 23.5px;
  margin-bottom: 25px;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form .form-control {
  display: inline-block;
  width: 100%;
  height: 57px;
  border-radius: 5px;
  outline: 0;
  box-shadow: unset;
  background-color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  padding: 15px 75px 15px 20px;
  transition: var(--transition);
  color: var(--blackColor);
}
.widget-area .widget_search form .form-control::placeholder {
  transition: var(--transition);
  color: #999999;
}
.widget-area .widget_search form .form-control:focus {
  border: 1px solid var(--primary);
}
.widget-area .widget_search form .form-control:focus::placeholder {
  color: transparent;
}
.widget-area .widget_search form button {
  background-color: transparent;
  border: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  line-height: 1;
}
.widget-area .widget_posts_thumb .item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.widget-area .widget_posts_thumb .item .thumb img {
  max-width: 80px;
  border: 1px solid var(--whiteColor);
  border-radius: 5px;
}
.widget-area .widget_posts_thumb .item .info span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--whiteColor);
  color: var(--bodyTextColor);
  font-size: 13px;
  padding: 5px 17px;
  margin-bottom: 7px;
  border-radius: 30px;
}
.widget-area .widget_posts_thumb .item .info .title {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.3;
}
.widget-area .widget_posts_thumb .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget_categories .list {
  padding-left: 0;
  margin-bottom: 0;
}
.widget-area .widget_categories .list li {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.widget-area .widget_categories .list li a {
  color: var(--bodyTextColor);
}
.widget-area .widget_categories .list li a:hover {
  color: var(--primary);
}
.widget-area .widget_categories .list li span {
  color: var(--bodyTextColor);
}
.widget-area .widget_categories .list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.widget-area .widget_tag_cloud .tag-cloud {
  margin-top: -8px;
}
.widget-area .widget_tag_cloud .tag-cloud a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border-radius: 50px;
  background-color: var(--whiteColor);
  color: var(--bodyTextColor);
  transition: var(--transition);
  margin-top: 8px;
  margin-right: 7px;
}
.widget-area .widget_tag_cloud .tag-cloud a:hover {
  background-color: var(--primary);
  color: var(--whiteColor);
}

@media only screen and (max-width: 767px) {
  .widget-area {
    padding: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-area {
    padding: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-area {
    padding: 25px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-area {
    padding: 30px;
  }
}
.cafe-banner-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 275px;
  padding-bottom: 200px;
}
.cafe-banner-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(39.92% 159.69% at 60.08% 61.51%, rgba(0, 0, 0, 0) 0%, #1A1A1A 100%);
  z-index: -1;
}
.cafe-banner-area .background-video {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: -11;
}

.cafe-banner-content {
  max-width: 750px;
}
.cafe-banner-content h1 {
  font-size: 95px;
  line-height: 1;
  margin-bottom: 25px;
  color: var(--bgColor3);
}
.cafe-banner-content p {
  max-width: 682px;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.cafe-banner-content .banner-btn {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.cafe-banner-content .banner-btn li {
  list-style-type: none;
}
.cafe-banner-content .banner-btn li:first-child .default-btn {
  border: 1px solid var(--primary);
  color: var(--bgColor);
}
.cafe-banner-content .banner-btn li:first-child .default-btn span {
  border: 1px solid var(--bgColor);
}
.cafe-banner-content .banner-btn li:first-child .default-btn:hover {
  border: 1px solid var(--secondaryColor);
}
.cafe-banner-content .banner-btn li:last-child .default-btn {
  background-color: transparent;
  border: 1px solid var(--bgColor3);
  color: var(--bgColor3);
}
.cafe-banner-content .banner-btn li:last-child .default-btn span {
  border: 1px solid var(--bgColor3);
  transition: var(--transition);
}
.cafe-banner-content .banner-btn li:last-child .default-btn:hover {
  background-color: var(--primary);
  color: var(--whiteColor);
  border: 1px solid var(--primary);
}
.cafe-banner-content .banner-btn li:last-child .default-btn:hover span {
  border: 1px solid var(--bgColor);
}

@media only screen and (max-width: 767px) {
  .cafe-banner-area {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .cafe-banner-content {
    max-width: 100%;
  }
  .cafe-banner-content h1 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  .cafe-banner-content p {
    max-width: 100%;
  }
  .cafe-banner-content .banner-btn {
    display: block;
    margin-top: 30px;
  }
  .cafe-banner-content .banner-btn li {
    margin-bottom: 20px;
  }
  .cafe-banner-content .banner-btn li:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cafe-banner-area {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cafe-banner-area {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
.fast-food-banner-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.fast-food-banner-item {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 270px;
  padding-bottom: 310px;
}

.fast-food-banner-content {
  max-width: 850px;
}
.fast-food-banner-content h1 {
  font-size: 95px;
  line-height: 1;
  margin-bottom: 25px;
  color: var(--bgColor3);
}
.fast-food-banner-content p {
  max-width: 682px;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.fast-food-banner-content .banner-btn {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.fast-food-banner-content .banner-btn li {
  list-style-type: none;
}
.fast-food-banner-content .banner-btn li:first-child .default-btn {
  border: 1px solid var(--primary);
  color: var(--bgColor);
}
.fast-food-banner-content .banner-btn li:first-child .default-btn span {
  border: 1px solid var(--bgColor);
}
.fast-food-banner-content .banner-btn li:first-child .default-btn:hover {
  border: 1px solid var(--secondaryColor);
}
.fast-food-banner-content .banner-btn li:last-child .default-btn {
  background-color: transparent;
  border: 1px solid var(--bgColor3);
  color: var(--bgColor3);
}
.fast-food-banner-content .banner-btn li:last-child .default-btn span {
  border: 1px solid var(--bgColor3);
  transition: var(--transition);
}
.fast-food-banner-content .banner-btn li:last-child .default-btn:hover {
  background-color: var(--primary);
  color: var(--whiteColor);
  border: 1px solid var(--primary);
}
.fast-food-banner-content .banner-btn li:last-child .default-btn:hover span {
  border: 1px solid var(--bgColor);
}

.fast-food-banner-info-rating {
  max-width: 555px;
  margin: auto;
  padding: 20px 65px;
  background-color: var(--bgColor3);
  border-radius: 25px 25px 0 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.fast-food-banner-info-rating .rating-items {
  display: flex;
  gap: 55px;
  align-items: center;
  justify-content: space-between;
}
.fast-food-banner-info-rating .rating-items .rating {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}
.fast-food-banner-info-rating .rating-items .rating .content .list {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.fast-food-banner-info-rating .rating-items .rating .content .list li {
  list-style-type: none;
}
.fast-food-banner-info-rating .rating-items .rating .content .list li i {
  color: var(--secondaryColor);
  font-size: 20px;
}
.fast-food-banner-info-rating .rating-items .rating .content span {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}
.fast-food-banner-info-rating .rating-items .rating::before {
  position: absolute;
  content: "";
  top: 0;
  right: -40px;
  width: 1px;
  height: 100%;
  background-color: #D9D9D9;
  transform: rotate(15deg);
}
.fast-food-banner-info-rating .rating-items .rating:last-child::before {
  display: none;
}
.fast-food-banner-info-rating .shape1 {
  position: absolute;
  bottom: -1px;
  left: -29.5px;
  transform: rotate(180deg);
}
.fast-food-banner-info-rating .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}
.fast-food-banner-info-rating .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.fast-food-banner-info-rating .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--bgColor3);
}

@media only screen and (max-width: 767px) {
  .fast-food-banner-item {
    padding-top: 115px;
    padding-bottom: 220px;
  }
  .fast-food-banner-content {
    max-width: 100%;
  }
  .fast-food-banner-content h1 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  .fast-food-banner-content p {
    max-width: 100%;
  }
  .fast-food-banner-content .banner-btn {
    display: block;
    margin-top: 30px;
  }
  .fast-food-banner-content .banner-btn li {
    margin-bottom: 20px;
  }
  .fast-food-banner-content .banner-btn li:last-child {
    margin-bottom: 0;
  }
  .fast-food-banner-info-rating {
    max-width: 300px;
    padding: 15px 35px;
  }
  .fast-food-banner-info-rating .rating-items {
    display: block;
  }
  .fast-food-banner-info-rating .rating-items .rating {
    margin-bottom: 20px;
  }
  .fast-food-banner-info-rating .rating-items .rating::before {
    display: none;
  }
  .fast-food-banner-info-rating .rating-items .rating:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fast-food-banner-item {
    padding-bottom: 150px;
  }
  .fast-food-banner-info-rating {
    max-width: 495px;
    padding: 15px 35px;
  }
  .fast-food-banner-info-rating .rating-items {
    display: flex;
  }
  .fast-food-banner-info-rating .rating-items .rating {
    margin-bottom: 0;
  }
  .fast-food-banner-info-rating .rating-items .rating::before {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fast-food-banner-item {
    padding-top: 170px;
    padding-bottom: 210px;
  }
  .fast-food-banner-content {
    max-width: 100%;
  }
  .fast-food-banner-content .banner-btn {
    margin-top: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fast-food-banner-item {
    padding-top: 170px;
    padding-bottom: 210px;
  }
}
.restaurant-banner-area {
  overflow: hidden;
  padding-top: 113.5px;
  background-color: var(--bgColor);
}

.restaurant-banner-content {
  max-width: 800px;
  padding-top: 170px;
  padding-bottom: 90px;
}
.restaurant-banner-content h1 {
  font-size: 95px;
  line-height: 1;
  margin-bottom: 25px;
}
.restaurant-banner-content p {
  max-width: 682px;
  margin-bottom: 0;
}
.restaurant-banner-content .banner-btn {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.restaurant-banner-content .banner-btn li {
  list-style-type: none;
}
.restaurant-banner-content .banner-btn li:first-child .default-btn {
  border: 1px solid var(--primary);
}
.restaurant-banner-content .banner-btn li:first-child .default-btn:hover {
  border: 1px solid var(--secondaryColor);
}
.restaurant-banner-content .banner-btn li:last-child .default-btn {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.restaurant-banner-content .banner-btn li:last-child .default-btn span {
  border: 1px solid var(--primary);
  transition: var(--transition);
}
.restaurant-banner-content .banner-btn li:last-child .default-btn:hover {
  background-color: var(--primary);
  color: var(--whiteColor);
}
.restaurant-banner-content .banner-btn li:last-child .default-btn:hover span {
  border: 1px solid var(--bgColor);
}
.restaurant-banner-content .banner-info {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  margin-top: 150px;
}
.restaurant-banner-content .banner-info .rating {
  display: flex;
  gap: 20px;
  align-items: center;
}
.restaurant-banner-content .banner-info .rating .content .list {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.restaurant-banner-content .banner-info .rating .content .list li {
  list-style-type: none;
}
.restaurant-banner-content .banner-info .rating .content .list li i {
  color: var(--secondaryColor);
  font-size: 20px;
}
.restaurant-banner-content .banner-info .rating .content span {
  display: block;
  font-size: 15px;
  margin-top: 10px;
}
.restaurant-banner-content .banner-info .find span {
  font-size: 15px;
  display: block;
  margin-bottom: 2.5px;
}
.restaurant-banner-content .banner-info .find p {
  font-size: 15px;
}

.restaurant-banner-image {
  position: relative;
  overflow: hidden;
}
.restaurant-banner-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.restaurant-banner-image img.active {
  opacity: 1;
  transform: translateX(0) scale(1.1); 
  z-index: 2;
}
.restaurant-banner-image img.prev {
  transform: scale(1);
}

@media only screen and (max-width: 767px) {
  .restaurant-banner-area {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .restaurant-banner-content {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .restaurant-banner-content h1 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  .restaurant-banner-content p {
    max-width: 100%;
  }
  .restaurant-banner-content .banner-btn {
    display: block;
    margin-top: 30px;
  }
  .restaurant-banner-content .banner-btn li {
    margin-bottom: 20px;
  }
  .restaurant-banner-content .banner-btn li:last-child {
    margin-bottom: 0;
  }
  .restaurant-banner-content .banner-info {
    display: block;
    margin-top: 40px;
  }
  .restaurant-banner-content .banner-info .find {
    margin-top: 20px;
  }
  .restaurant-banner-image {
    height: 50vh !important; 
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .restaurant-banner-image {
    height: 100vh !important; 
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .restaurant-banner-area {
    padding-top: 170px;
    padding-bottom: 100px;
  }
  .restaurant-banner-content {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .restaurant-banner-content .banner-btn {
    margin-top: 35px;
  }
  .restaurant-banner-content .banner-info {
    margin-top: 50px;
  }
  .restaurant-banner-image {
    height: 100vh !important; 
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .restaurant-banner-area {
    padding-top: 83.5px;
  }
  .restaurant-banner-content {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .restaurant-banner-content .banner-btn {
    margin-top: 40px;
  }
  .restaurant-banner-content .banner-info {
    margin-top: 55px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .restaurant-banner-area {
    padding-top: 93.5px;
  }
  .restaurant-banner-content {
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .restaurant-banner-content .banner-btn {
    margin-top: 40px;
  }
  .restaurant-banner-content .banner-info {
    margin-top: 55px;
  }
}
.blog-details-desc {
  margin-right: 20px;
}
.blog-details-desc .top {
  margin-bottom: 55px;
}
.blog-details-desc .top h2 {
  font-size: 48px;
  margin-bottom: 12px;
}
.blog-details-desc .top .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .top .meta li {
  list-style-type: none;
  color: var(--secondaryColor);
  position: relative;
  margin-right: 40px;
}
.blog-details-desc .top .meta li a {
  color: var(--secondaryColor);
}
.blog-details-desc .top .meta li a:hover {
  color: var(--primary);
}
.blog-details-desc .top .meta li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  right: -20.5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D9D9D9;
}
.blog-details-desc .top .meta li:last-child {
  margin-right: 0;
}
.blog-details-desc .top .meta li:last-child::before {
  display: none;
}
.blog-details-desc .desc-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
.blog-details-desc .desc-image img {
  border-radius: 25px;
}
.blog-details-desc .desc-image .wrap-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 143px;
  height: 65px;
  background-color: var(--whiteColor);
  border-radius: 0 20px 0 20px;
}
.blog-details-desc .desc-image .wrap-top .shape1 {
  position: absolute;
  top: -1px;
  left: -29.5px;
  transform: rotate(90deg);
}
.blog-details-desc .desc-image .wrap-top .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.blog-details-desc .desc-image .wrap-top .shape2 {
  position: absolute;
  bottom: -29.5px;
  right: -1px;
  transform: rotate(90deg);
}
.blog-details-desc .desc-image .wrap-top .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.blog-details-desc .desc-image .wrap-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 143px;
  height: 65px;
  background-color: var(--whiteColor);
  border-radius: 0 20px 0 20px;
}
.blog-details-desc .desc-image .wrap-bottom .shape1 {
  position: absolute;
  top: -29.5px;
  left: -1px;
  transform: rotate(-90deg);
}
.blog-details-desc .desc-image .wrap-bottom .shape1 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.blog-details-desc .desc-image .wrap-bottom .shape2 {
  position: absolute;
  bottom: -1px;
  right: -29.5px;
  transform: rotate(-90deg);
}
.blog-details-desc .desc-image .wrap-bottom .shape2 svg {
  width: 30px;
  height: 30px;
  fill: var(--whiteColor);
}
.blog-details-desc h3 {
  font-size: 35px;
  margin-top: 35px;
  margin-bottom: 15px;
}
.blog-details-desc p {
  margin-bottom: 0;
}
.blog-details-desc .block-image {
  margin-top: 35px;
}
.blog-details-desc .block-image img {
  border-radius: 15px;
}
.blog-details-desc .quote-box {
  background-color: var(--primary);
  padding: 70px;
  position: relative;
  z-index: 1;
  border-radius: 15px;
  margin-top: 35px;
}
.blog-details-desc .quote-box .icon {
  position: absolute;
  left: 50px;
  top: 50px;
}
.blog-details-desc .quote-box .icon i {
  display: flex;
  font-size: 65px;
  color: var(--secondaryColor);
  opacity: 0.3;
}
.blog-details-desc .quote-box p {
  margin-bottom: 0;
  font-size: 23.5px;
  color: var(--bgColor3);
}
.blog-details-desc .article-footer {
  border-top: 1px solid var(--bgColor3);
  border-bottom: 1px solid var(--bgColor3);
  margin-top: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.blog-details-desc .article-footer .tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .article-footer .tags li {
  list-style-type: none;
}
.blog-details-desc .article-footer .tags li span {
  color: var(--primary);
  font-weight: bold;
}
.blog-details-desc .article-footer .tags li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border-radius: 50px;
  background-color: var(--bgColor3);
  color: var(--bodyTextColor);
  transition: var(--transition);
}
.blog-details-desc .article-footer .tags li a:hover {
  background-color: var(--primary);
  color: var(--whiteColor);
}
.blog-details-desc .article-footer .social {
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .article-footer .social li {
  list-style-type: none;
}
.blog-details-desc .article-footer .social li span {
  color: var(--primary);
  font-weight: bold;
}
.blog-details-desc .article-footer .social li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--bgColor3);
  color: var(--bodyTextColor);
  border-radius: 35px;
  transition: var(--transition);
}
.blog-details-desc .article-footer .social li a i:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
}
.blog-details-desc .desc-comment {
  margin-top: 50px;
}
.blog-details-desc .desc-comment h3 {
  font-size: 35px;
  margin-top: 0;
  margin-bottom: 30px;
}
.blog-details-desc .desc-comment .comment-list {
  position: relative;
  border-bottom: 1px solid var(--bgColor3);
  margin-bottom: 35px;
  padding-bottom: 30px;
  padding-left: 70px;
  padding-right: 65px;
}
.blog-details-desc .desc-comment .comment-list img {
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  max-width: 60px;
}
.blog-details-desc .desc-comment .comment-list h4 {
  font-size: 23.5px;
  margin-bottom: 0;
}
.blog-details-desc .desc-comment .comment-list span {
  font-size: 15px;
  display: block;
  margin-top: 10px;
}
.blog-details-desc .desc-comment .comment-list p {
  margin-top: 12px;
  margin-bottom: 0;
}
.blog-details-desc .desc-comment .comment-list .comment-reply-link {
  font-size: 14px;
  color: var(--bodyTextColor);
  transition: var(--transition);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  letter-spacing: 0.28px;
  color: var(--primary);
  font-weight: 500;
}
.blog-details-desc .desc-comment .comment-list .comment-reply-link:hover {
  color: var(--blackColor);
}
.blog-details-desc .desc-comment .comment-list:last-child {
  margin-bottom: 0;
}
.blog-details-desc .leave-form {
  margin-top: 50px;
  background-color: var(--bgColor3);
  padding: 50px;
  border-radius: 30px;
}
.blog-details-desc .leave-form .content {
  margin-bottom: 30px;
}
.blog-details-desc .leave-form .content h2 {
  font-size: 35px;
  margin-bottom: 12px;
}
.blog-details-desc .leave-form .content p {
  margin-bottom: 0;
}
.blog-details-desc .leave-form form .form-group label {
  font-size: var(--font-sixteen);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.blog-details-desc .leave-form form .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 50px;
  background-color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  color: var(--blackColor);
  font-size: 15px;
  border-radius: 5px;
  transition: var(--transition);
}
.blog-details-desc .leave-form form .form-group .form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.blog-details-desc .leave-form form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.blog-details-desc .leave-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.blog-details-desc .leave-form form .form-group textarea.form-control {
  min-height: 150px;
}
.blog-details-desc .leave-form form .form-group .form-check {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-details-desc .leave-form form .form-group .form-check .form-check-input {
  margin: -2.5px 0 0 0;
  outline: 0;
  box-shadow: unset;
}
.blog-details-desc .leave-form form .form-group .form-check .form-check-label {
  margin-bottom: 0;
}
.blog-details-desc .leave-form form .default-btn {
  border: none;
}

@media only screen and (max-width: 767px) {
  .blog-details-desc {
    margin-right: 0;
  }
  .blog-details-desc .top {
    margin-bottom: 30px;
  }
  .blog-details-desc .top h2 {
    font-size: 35px;
  }
  .blog-details-desc .top .meta {
    display: block;
  }
  .blog-details-desc .top .meta li {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .blog-details-desc .top .meta li::before {
    display: none;
  }
  .blog-details-desc .top .meta li:last-child {
    margin-bottom: 0;
  }
  .blog-details-desc .desc-image {
    margin-bottom: 35px;
  }
  .blog-details-desc .desc-image .wrap-top {
    width: 90px;
    height: 50px;
  }
  .blog-details-desc .desc-image .wrap-bottom {
    width: 90px;
    height: 50px;
  }
  .blog-details-desc h3 {
    font-size: 30px;
  }
  .blog-details-desc .quote-box {
    padding: 25px;
  }
  .blog-details-desc .quote-box .icon {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 10px;
  }
  .blog-details-desc .quote-box p {
    font-size: 17.5px;
  }
  .blog-details-desc .article-footer .tags {
    gap: 8px;
    justify-content: center;
  }
  .blog-details-desc .article-footer .tags li a {
    padding: 5px 10px;
    font-size: 14px;
  }
  .blog-details-desc .article-footer .social {
    justify-content: center;
  }
  .blog-details-desc .desc-comment h3 {
    font-size: 30px;
  }
  .blog-details-desc .desc-comment .comment-list {
    padding-right: 0;
  }
  .blog-details-desc .desc-comment .comment-list .comment-reply-link {
    display: block;
    position: relative;
    margin-top: 10px;
  }
  .blog-details-desc .leave-form {
    padding: 25px;
  }
  .blog-details-desc .leave-form .content h2 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-desc {
    margin-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-desc {
    margin-right: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-details-desc {
    margin-right: 0;
  }
}
.cart-table .table {
  margin-bottom: 0;
}
.cart-table .table thead tr {
  border: none;
}
.cart-table .table thead tr th {
  color: var(--blackColor);
  font-weight: 500;
  border: none;
  background: var(--bgColor3);
  padding: 20px 25px;
  font-size: 18px;
}
.cart-table .table tbody tr {
  border: none;
  margin-bottom: 30px;
  border-bottom: 1px solid #F1F1F1;
}
.cart-table .table tbody tr td {
  vertical-align: middle;
  padding: 30px 25px;
  border: none;
  background-color: transparent;
}
.cart-table .table tbody tr td:first-child {
  padding-left: 0;
}
.cart-table .table tbody tr td:last-child {
  text-align: end;
}
.cart-table .table tbody tr td.product-thumbnail {
  display: flex;
  align-items: center;
}
.cart-table .table tbody tr td.product-thumbnail .image {
  width: 100px;
  background-color: var(--bgColor3);
  padding: 10px 5px;
}
.cart-table .table tbody tr td.product-thumbnail .title {
  margin-left: 25px;
}
.cart-table .table tbody tr td.product-thumbnail .title h3 {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.3;
}
.cart-table .table tbody tr td.product-price .unit-amount {
  color: var(--bodyTextColor);
  font-weight: 500;
}
.cart-table .table tbody tr td.product-subtotal .subtotal-amount {
  color: var(--bodyTextColor);
  font-weight: 500;
}
.cart-table .table tbody tr td.remove i {
  color: var(--blackColor);
  transition: var(--transition);
  cursor: pointer;
}
.cart-table .table tbody tr td.remove i:hover {
  color: var(--primary);
}
.cart-table .table tbody:not(:first-child) {
  border-top: unset;
}

.shopping-cart-buttons {
  margin-top: 25px;
}
.shopping-cart-buttons .shopping-coupon-code {
  position: relative;
  padding-right: 190px;
}
.shopping-cart-buttons .shopping-coupon-code .form-control {
  display: inline-block;
  background-color: var(--bgColor3);
  border: 1px solid var(--whiteColor);
  width: 100%;
  height: 53.5px;
  box-shadow: unset;
  color: var(--blackColor);
  transition: var(--transition);
  border-radius: 0;
  padding: 15px 20px;
}
.shopping-cart-buttons .shopping-coupon-code .form-control::placeholder {
  color: var(--bodyTextColor);
  transition: var(--transition);
}
.shopping-cart-buttons .shopping-coupon-code .form-control:focus {
  border: 1px solid var(--primary);
}
.shopping-cart-buttons .shopping-coupon-code .form-control:focus::placeholder {
  color: transparent;
}
.shopping-cart-buttons .shopping-coupon-code .default-btn {
  border: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.shopping-cart-buttons .info-btn {
  text-align: end;
}
.shopping-cart-buttons .info-btn .default-btn {
  border: none;
  background-color: var(--primary);
}
.shopping-cart-buttons .info-btn .default-btn:hover {
  background-color: var(--blackColor);
}

.shopping-cart-totals {
  background-color: var(--bgColor3);
  position: sticky;
  top: 130px;
  padding: 30px;
}
.shopping-cart-totals h3 {
  font-size: 25px;
  margin-bottom: 25px;
}
.shopping-cart-totals .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.shopping-cart-totals .list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  border-bottom: 1px solid var(--whiteColor);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.shopping-cart-totals .list li strong {
  font-weight: 400;
}
.shopping-cart-totals .list li b {
  font-weight: 600;
  color: var(--blackColor);
}
.shopping-cart-totals .list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.shopping-cart-totals .bottom-btn {
  margin-top: 20px;
}
.shopping-cart-totals .bottom-btn .default-btn {
  border: none;
}

@media only screen and (max-width: 767px) {
  .shopping-cart-buttons .shopping-coupon-code {
    padding-right: 0;
  }
  .shopping-cart-buttons .shopping-coupon-code .default-btn {
    position: relative;
    top: unset;
    transform: unset;
    margin-top: 20px;
  }
  .shopping-cart-buttons .info-btn {
    text-align: start;
  }
  .shopping-cart-totals {
    padding: 20px;
  }
}
.checkout-notice {
  background-color: var(--bgColor3);
  padding: 15px 25px;
  margin-bottom: 25px;
}
.checkout-notice span {
  color: var(--blackColor);
  font-weight: 600;
}
.checkout-notice span a {
  color: var(--bodyTextColor);
  text-decoration-line: underline;
  font-weight: 400;
}
.checkout-notice span a:hover {
  color: var(--primary);
}

.checkout-form {
  background-color: var(--bgColor3);
  padding: 35px;
}
.checkout-form h2 {
  font-size: 35px;
  margin-bottom: 12px;
}
.checkout-form h3 {
  margin-bottom: 0;
  font-size: 25px;
}
.checkout-form .form-group label {
  color: var(--blackColor);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-form .form-group .form-control {
  display: inline-block;
  height: 55px;
  border: 1px solid var(--bgColor3);
  background-color: var(--whiteColor);
  color: var(--blackColor);
  outline: 0;
  box-shadow: unset;
  padding: 15px 20px;
  border-radius: 0;
  transition: var(--transition);
}
.checkout-form .form-group .form-control::placeholder {
  color: var(--bodyTextColor);
  transition: var(--transition);
}
.checkout-form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.checkout-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.checkout-form .form-group textarea.form-control {
  display: flex;
  min-height: 150px;
}

.checkout-sidebar {
  background-color: var(--bgColor3);
  position: sticky;
  top: 130px;
  padding: 30px;
}
.checkout-sidebar h3 {
  font-size: 25px;
  margin-bottom: 25px;
}
.checkout-sidebar .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.checkout-sidebar .list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  border-bottom: 1px solid var(--whiteColor);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.checkout-sidebar .list li strong {
  font-weight: 400;
}
.checkout-sidebar .list li b {
  font-weight: 600;
  color: var(--blackColor);
}
.checkout-sidebar .list li .default-btn {
  width: 100%;
  border: none;
}
.checkout-sidebar .list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.checkout-sidebar .payment-method {
  margin-top: 30px;
}
.checkout-sidebar .payment-method h4 {
  font-size: 25px;
  margin-bottom: 25px;
}
.checkout-sidebar .payment-method p {
  margin-bottom: 25px;
}
.checkout-sidebar .payment-method p:last-child {
  margin-bottom: 0;
}
.checkout-sidebar .payment-method p [type=radio]:checked, .checkout-sidebar .payment-method p [type=radio]:not(:checked) {
  display: none;
}
.checkout-sidebar .payment-method p span {
  display: block;
  padding-left: 25.8px;
  padding-top: 12px;
}
.checkout-sidebar .payment-method p b {
  font-weight: 400;
  position: relative;
  top: 1.5px;
}
.checkout-sidebar .payment-method p [type=radio]:checked + label, .checkout-sidebar .payment-method p [type=radio]:not(:checked) + label {
  display: block;
  padding-left: 25.8px;
  cursor: pointer;
  position: relative;
  color: var(--blackColor);
  font-weight: 600;
  transition: var(--transition);
  line-height: 1;
  font-size: var(--font-sixteen);
}
.checkout-sidebar .payment-method p [type=radio]:checked + label::before, .checkout-sidebar .payment-method p [type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  background: var(--whiteColor);
}
.checkout-sidebar .payment-method p [type=radio]:checked + label::after, .checkout-sidebar .payment-method p [type=radio]:not(:checked) + label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) !important;
  left: 0;
  right: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border-radius: 50%;
  transition: var(--transition);
}
.checkout-sidebar .payment-method p [type=radio]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.checkout-sidebar .payment-method p [type=radio]:checked + label {
  color: var(--blackColor);
}
.checkout-sidebar .payment-method p [type=radio]:checked + label::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.checkout-sidebar .order-btn {
  margin-top: 30px;
}
.checkout-sidebar .order-btn .default-btn {
  border: none;
}

@media only screen and (max-width: 767px) {
  .checkout-form {
    padding: 25px;
  }
  .checkout-sidebar {
    padding: 25px;
  }
}
.contact-information-content {
  background-color: var(--bgColor3);
  padding: 100px 65px;
  height: 100%;
  border-radius: 15px 0 0 15px;
}
.contact-information-content h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.contact-information-content .info-items {
  margin-top: 45px;
}
.contact-information-content .info-items .item {
  margin-bottom: 45px;
}
.contact-information-content .info-items .item .sub {
  font-size: 15px;
  display: block;
  margin-bottom: 8.5px;
  color: var(--primary);
}
.contact-information-content .info-items .item span {
  font-size: 15px;
}
.contact-information-content .info-items .item .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.contact-information-content .info-items .item .list li {
  list-style-type: none;
  margin-bottom: 12px;
  line-height: 1;
  font-size: 15px;
}
.contact-information-content .info-items .item .list li a {
  color: var(--bodyTextColor);
}
.contact-information-content .info-items .item .list li a:hover {
  color: var(--secondaryColor);
}
.contact-information-content .info-items .item .list li:last-child {
  margin-bottom: 0;
}
.contact-information-content .info-items .item img {
  border-radius: 15px;
}
.contact-information-content .info-items .item .social-list {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  font-size: 15px;
  padding-left: 0;
  padding-right: 0;
}
.contact-information-content .info-items .item .social-list li {
  list-style-type: none;
}
.contact-information-content .info-items .item .social-list li a {
  color: var(--bodyTextColor);
}
.contact-information-content .info-items .item .social-list li a:hover {
  color: var(--secondaryColor);
}
.contact-information-content .info-items .item:last-child {
  margin-bottom: 0;
}

.contact-us-form {
  background-color: var(--bgColor);
  padding: 100px 65px;
  height: 100%;
  border-radius: 0 15px 15px 0;
}
.contact-us-form .top {
  margin-bottom: 30px;
}
.contact-us-form .top h2 {
  font-size: 48px;
  margin-bottom: 10px;
}
.contact-us-form form .form-group {
  margin-bottom: 25px;
}
.contact-us-form form .form-group label {
  font-size: 18px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.contact-us-form form .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 53px;
  background-color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  color: var(--blackColor);
  font-size: 15px;
  border-radius: 5px;
  transition: var(--transition);
}
.contact-us-form form .form-group .form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.contact-us-form form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.contact-us-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.contact-us-form form .form-group textarea.form-control {
  min-height: 110px;
}
.contact-us-form form .form-group .form-check {
  display: flex;
  gap: 10px;
  min-height: 0;
  padding-left: 0;
  margin-bottom: 0;
  align-items: center;
}
.contact-us-form form .form-group .form-check .form-check-input {
  margin: 0;
  padding: 0;
  outline: 0;
  box-shadow: unset;
  position: relative;
  top: -2px;
}
.contact-us-form form .form-group .form-check .form-check-label {
  margin-bottom: 0;
  color: var(--bodyTextColor);
  font-size: var(--font-sixteen);
  font-weight: 400;
}
.contact-us-form form .form-group .form-check .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.contact-us-form form .contact-btn .default-btn {
  border: none;
}

.map-area iframe {
  display: flex;
  width: 100%;
  height: 735px;
}

@media only screen and (max-width: 767px) {
  .contact-information-content {
    padding: 30px;
    height: auto;
    border-radius: 15px;
  }
  .contact-information-content h2 {
    font-size: 35px;
  }
  .contact-information-content .info-items {
    margin-top: 25px;
  }
  .contact-information-content .info-items .item {
    margin-bottom: 25px;
  }
  .contact-information-content .info-items .item .social-list {
    display: block;
  }
  .contact-information-content .info-items .item .social-list li {
    margin-bottom: 15px;
  }
  .contact-information-content .info-items .item .social-list li:last-child {
    margin-bottom: 0;
  }
  .contact-us-form {
    padding: 30px;
    height: auto;
    border-radius: 15px;
    margin-top: 25px;
  }
  .contact-us-form .top h2 {
    font-size: 35px;
  }
  .contact-us-form form .form-group label {
    font-size: var(--font-sixteen);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-information-content {
    padding: 50px;
    height: auto;
    border-radius: 15px;
  }
  .contact-us-form {
    padding: 50px;
    height: auto;
    border-radius: 15px;
    margin-top: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-information-content {
    padding: 50px;
    height: auto;
    border-radius: 15px;
  }
  .contact-us-form {
    padding: 50px;
    height: auto;
    border-radius: 15px;
    margin-top: 25px;
  }
}
.not-found-area {
  background-color: var(--bodyTextColor);
  padding-top: 210px;
}

.not-found-content img {
  margin-bottom: 35px;
  filter: invert(1);
}
.not-found-content h3 {
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--whiteColor);
}

@media only screen and (max-width: 767px) {
  .not-found-area {
    padding-top: 110px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .not-found-area {
    padding-top: 160px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .not-found-area {
    padding-top: 180px;
  }
}
.forgot-container {
  background-color: var(--bgColor3);
  padding: 45px;
  max-width: 495px;
  margin: auto;
  position: relative;
  border-radius: 15px;
}
.forgot-container .content {
  margin-bottom: 35px;
}
.forgot-container .content h3 {
  font-size: 30px;
  margin-bottom: 12px;
}
.forgot-container .info-text p a {
  color: var(--primary);
  font-weight: 500;
}
.forgot-container .info-text p a:hover {
  color: var(--blackColor);
}
.forgot-container form .form-group {
  margin-bottom: 20px;
}
.forgot-container form .form-group label {
  color: var(--blackColor);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 500;
}
.forgot-container form .form-group .form-control {
  display: inline-block;
  height: 57px;
  border: 1px solid var(--whiteColor);
  background-color: var(--whiteColor);
  outline: 0;
  box-shadow: unset;
  font-size: 15px;
  color: var(--blackColor);
  padding: 15px 20px;
  border-radius: 0;
  transition: var(--transition);
}
.forgot-container form .form-group .form-control::placeholder {
  color: var(--bodyTextColor);
  transition: var(--transition);
}
.forgot-container form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.forgot-container form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.forgot-container form .default-btn {
  border: none;
}
.forgot-container .back-link {
  text-align: center;
  color: var(--bodyTextColor);
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 14px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.forgot-container .back-link:hover {
  color: var(--primary);
}
.forgot-container:hover .back-link {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 767px) {
  .forgot-container {
    padding: 20px;
  }
}
.profile-authentication-form {
  background-color: var(--bgColor3);
  padding: 45px;
  max-width: 550px;
  margin: auto;
  border-radius: 15px;
}
.profile-authentication-form .content {
  margin-bottom: 30px;
}
.profile-authentication-form .content h3 {
  font-size: 30px;
  margin-bottom: 12px;
}
.profile-authentication-form .content p {
  margin-bottom: 0;
}
.profile-authentication-form form .form-group {
  margin-bottom: 25px;
}
.profile-authentication-form form .form-group label {
  color: var(--blackColor);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 500;
}
.profile-authentication-form form .form-group .form-control {
  display: inline-block;
  height: 57px;
  border: 1px solid var(--whiteColor);
  background-color: var(--whiteColor);
  outline: 0;
  box-shadow: unset;
  font-size: 15px;
  color: var(--blackColor);
  padding: 15px 20px;
  border-radius: 0;
  transition: var(--transition);
}
.profile-authentication-form form .form-group .form-control::placeholder {
  color: var(--bodyTextColor);
  transition: var(--transition);
}
.profile-authentication-form form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.profile-authentication-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.profile-authentication-form form .options {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.profile-authentication-form form .options input[type=checkbox] {
  margin-right: 8px;
  accent-color: var(--primary);
}
.profile-authentication-form form .options a {
  color: var(--bodyTextColor);
}
.profile-authentication-form form .options a:hover {
  color: var(--primary);
}
.profile-authentication-form form .authentication-btn {
  margin-top: 30px;
}
.profile-authentication-form form .authentication-btn .default-btn {
  border: none;
}
.profile-authentication-form .bottom-text {
  margin-top: 30px;
}
.profile-authentication-form .bottom-text span {
  font-size: 15px;
}
.profile-authentication-form .bottom-text span a {
  color: var(--primary);
}
.profile-authentication-form .bottom-text span a:hover {
  color: var(--blackColor);
}

@media only screen and (max-width: 767px) {
  .profile-authentication-form {
    padding: 20px;
  }
  .profile-authentication-form form .options {
    gap: 7px;
    font-size: 14px;
  }
}
.pricing-toggle-billing {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  padding-left: 0;
  padding-right: 0;
}
.pricing-toggle-billing li {
  list-style-type: none;
  background-color: var(--bgColor);
  padding: 10px 20px;
  border-radius: 30px;
  line-height: 1;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}
.pricing-toggle-billing li:hover, .pricing-toggle-billing li.active {
  background-color: var(--primary);
  color: var(--whiteColor);
}

.pricing-plans-card {
  background-color: var(--bgColor3);
  padding: 45px;
  height: 100%;
}
.pricing-plans-card h2 {
  font-size: 23.5px;
  margin-bottom: 25px;
  line-height: 1;
}
.pricing-plans-card .price {
  font-size: 35px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}
.pricing-plans-card .price span {
  font-size: 15px;
  font-weight: 400;
  position: relative;
  top: -2px;
  color: var(--bodyTextColor);
}
.pricing-plans-card .features {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pricing-plans-card .features li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.pricing-plans-card .features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}
.pricing-plans-card .features li:last-child {
  margin-bottom: 0;
}
.pricing-plans-card .price-btn {
  margin-top: 30px;
}
.pricing-plans-card .price-btn .default-btn {
  width: 100%;
}
.pricing-plans-card .price-btn .default-btn span {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pricing-plans-card {
    padding: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-plans-card {
    padding: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-plans-card {
    padding: 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pricing-plans-card {
    padding: 30px;
  }
}
.privacy-policy-content h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.privacy-policy-content .blockquote, .privacy-policy-content blockquote {
  margin-top: 25px;
  margin-bottom: 35px;
  background-color: var(--bgColor);
  text-align: start !important;
  padding: 25px !important;
  border-radius: 15px;
}
.privacy-policy-content .blockquote p, .privacy-policy-content blockquote p {
  margin-bottom: 0;
  line-height: 1.9;
}
.privacy-policy-content .blockquote::after, .privacy-policy-content blockquote::after {
  display: none;
}
.privacy-policy-content .blockquote::before, .privacy-policy-content blockquote::before {
  display: none;
}
.privacy-policy-content ol, .privacy-policy-content ul {
  margin-top: 20px;
}
.privacy-policy-content ol li, .privacy-policy-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.product-details-image {
  background-color: var(--bgColor3);
  padding: 120px 100px;
  text-align: center;
}

.product-details-content {
  margin-left: 100px;
}
.product-details-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
}
.product-details-content .price {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1;
  margin-bottom: 15px;
}
.product-details-content .price .price1 {
  font-size: var(--font-sixteen);
  color: var(--bodyTextColor);
  opacity: 0.5;
  text-decoration: line-through;
}
.product-details-content .price .price2 {
  font-size: 20px;
  color: var(--secondaryColor);
  font-weight: 500;
}
.product-details-content .list {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.product-details-content .list li {
  list-style-type: none;
}
.product-details-content .list li i {
  color: var(--secondaryColor);
  position: relative;
}
.product-details-content .info-list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-details-content .info-list li {
  list-style-type: none;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 15px;
}
.product-details-content .info-list li i {
  color: var(--secondaryColor);
  position: relative;
  top: -1.5px;
}
.product-details-content .info-list li:last-child {
  margin-bottom: 0;
}
.product-details-content .product-quantity {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 25px;
}
.product-details-content .product-quantity .default-btn {
  border: none;
}

.products-details-tabs {
  margin-top: 50px;
}
.products-details-tabs .nav {
  border: none;
  margin-bottom: 30px;
  list-style-type: none;
  display: flex;
  background-color: var(--bgColor3);
  padding: 20px 30px;
  border-radius: 0;
  justify-content: center;
}
.products-details-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 40px;
}
.products-details-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.products-details-tabs .nav .nav-item .nav-link {
  border-radius: 0;
  border: none;
  padding: 0 0 2.5px 0;
  background-color: transparent;
  color: var(--bodyTextColor);
  font-size: 17px;
  transition: var(--transition);
  position: relative;
}
.products-details-tabs .nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondaryColor);
  transition: var(--transition);
}
.products-details-tabs .nav .nav-item .nav-link:hover, .products-details-tabs .nav .nav-item .nav-link.active {
  font-weight: 600;
  color: var(--blackColor);
}
.products-details-tabs .nav .nav-item .nav-link:hover::before, .products-details-tabs .nav .nav-item .nav-link.active::before {
  width: 100%;
}
.products-details-tabs .tab-content .tab-pane .content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.products-details-tabs .tab-content .tab-pane .content h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.products-details-tabs .tab-content .tab-pane .content .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.products-details-tabs .tab-content .tab-pane .content .list li {
  display: flex;
  gap: 10px;
  align-items: center;
  list-style-type: none;
  margin-bottom: 12px;
}
.products-details-tabs .tab-content .tab-pane .content .list li i {
  font-size: 5px;
}
.products-details-tabs .tab-content .tab-pane .content .list li span strong {
  font-weight: bold;
}
.products-details-tabs .tab-content .tab-pane .content .list li:last-child {
  margin-bottom: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews h3 {
  margin-bottom: 15px;
  display: inline-block;
  font-size: 25px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating span {
  color: #cecfd2;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating span.checked {
  color: var(--secondaryColor);
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating-count {
  margin-top: 10px;
  margin-bottom: 20px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating-count span {
  display: block;
  font-size: 15px;
  color: var(--bodyTextColor);
  font-weight: 500;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .row {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .side {
  float: left;
  width: 8%;
  margin-top: 10px;
  padding-left: 0;
  padding-right: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .side div {
  font-weight: 600;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .middle {
  margin-top: 14px;
  float: left;
  width: 82%;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .right {
  text-align: end;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-container {
  width: 100%;
  background-color: #eeeeee;
  text-align: center;
  border-radius: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-5 {
  width: 100%;
  height: 18px;
  background-color: #4CAF50;
  border-radius: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-4 {
  width: 75%;
  height: 18px;
  background-color: #2196F3;
  border-radius: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-3 {
  width: 50%;
  height: 18px;
  background-color: #00bcd4;
  border-radius: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-2 {
  width: 25%;
  height: 18px;
  background-color: #ff9800;
  border-radius: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-1 {
  width: 0;
  height: 18px;
  background-color: #f44336;
  border-radius: 0;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments {
  margin-top: 40px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments h3 {
  border-bottom: 1px solid #E9F1FE;
  padding-bottom: 12px;
  margin-bottom: 0;
  font-size: 25px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review {
  border-bottom: 1px solid #E9F1FE;
  padding: 20px 0 20px 70px;
  position: relative;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review img {
  position: absolute;
  left: 0;
  top: 20px;
  border-radius: 50%;
  max-width: 50px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .sub-comment {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--secondaryColor);
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review p {
  font-size: 15px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating {
  display: block;
  margin-bottom: 8px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars {
  display: inline-block;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars i {
  color: var(--secondaryColor);
  font-size: 15px;
  display: inline-block;
  margin-right: -2px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars i.checked {
  color: var(--secondaryColor);
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating span {
  color: var(--bodyTextColor);
  font-weight: 600;
  margin-left: 5px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper {
  margin-top: 30px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper h3 {
  margin-bottom: 10px;
  font-size: 25px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper .comment-notes span {
  color: red;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form {
  margin-top: 20px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control {
  height: 55px;
  padding: 15px 20px;
  line-height: initial;
  color: var(--blackColor);
  background-color: var(--whiteColor);
  box-shadow: unset;
  border-radius: 0;
  transition: var(--transition);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control::placeholder {
  color: var(--bodyTextColor);
  transition: var(--transition);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group textarea.form-control {
  min-height: 115px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating {
  text-align: left;
  overflow: hidden;
  max-width: 115px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label {
  float: right;
  position: relative;
  width: 23px;
  height: 23px;
  cursor: pointer;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label:not(:first-of-type) {
  padding-right: 5px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label:before {
  content: "★";
  transition: var(--transition);
  font-size: 25px;
  color: var(--bodyTextColor);
  line-height: 1;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating input {
  display: none;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating input:checked ~ label:before, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating:not(:checked) > label:hover:before, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating:not(:checked) > label:hover ~ label:before {
  color: var(--secondaryColor);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent {
  display: flex;
  gap: 5px;
  align-items: center;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent input {
  margin-right: 5px;
  position: relative;
  top: -2px;
  accent-color: var(--primary);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .default-btn {
  border: none;
}

@media only screen and (max-width: 767px) {
  .product-details-image {
    padding: 50px;
  }
  .product-details-content {
    margin-left: 0;
  }
  .product-details-content h2 {
    font-size: 30px;
  }
  .product-details-content .product-quantity {
    display: block;
  }
  .product-details-content .product-quantity .default-btn {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-details-content .product-quantity {
    display: flex;
  }
  .product-details-content .product-quantity .default-btn {
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-content {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-details-image {
    padding: 120px 30px;
  }
  .product-details-content {
    margin-left: 10px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .product-details-image {
    padding: 120px 55px;
  }
}
.profile-authentication-form {
  background-color: var(--bgColor3);
  padding: 45px;
  max-width: 550px;
  margin: auto;
  border-radius: 15px;
}
.profile-authentication-form .content {
  margin-bottom: 30px;
}
.profile-authentication-form .content h3 {
  font-size: 30px;
  margin-bottom: 12px;
}
.profile-authentication-form .content p {
  margin-bottom: 0;
}
.profile-authentication-form form .form-group {
  margin-bottom: 25px;
}
.profile-authentication-form form .form-group label {
  color: var(--blackColor);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 500;
}
.profile-authentication-form form .form-group .form-control {
  display: inline-block;
  height: 57px;
  border: 1px solid var(--whiteColor);
  background-color: var(--whiteColor);
  outline: 0;
  box-shadow: unset;
  font-size: 15px;
  color: var(--blackColor);
  padding: 15px 20px;
  border-radius: 0;
  transition: var(--transition);
}
.profile-authentication-form form .form-group .form-control::placeholder {
  color: var(--bodyTextColor);
  transition: var(--transition);
}
.profile-authentication-form form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.profile-authentication-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.profile-authentication-form form .options {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.profile-authentication-form form .options input[type=checkbox] {
  margin-right: 8px;
  accent-color: var(--primary);
}
.profile-authentication-form form .options a {
  color: var(--bodyTextColor);
}
.profile-authentication-form form .options a:hover {
  color: var(--primary);
}
.profile-authentication-form form .authentication-btn {
  margin-top: 30px;
}
.profile-authentication-form form .authentication-btn .default-btn {
  border: none;
}
.profile-authentication-form .bottom-text {
  margin-top: 30px;
}
.profile-authentication-form .bottom-text span {
  font-size: 15px;
}
.profile-authentication-form .bottom-text span a {
  color: var(--primary);
}
.profile-authentication-form .bottom-text span a:hover {
  color: var(--blackColor);
}

@media only screen and (max-width: 767px) {
  .profile-authentication-form {
    padding: 20px;
  }
  .profile-authentication-form form .options {
    gap: 7px;
    font-size: 14px;
  }
}
.reservations-table-inner {
  background-color: var(--bgColor);
}

.reservations-table-form {
  padding: 80px 70px;
}
.reservations-table-form .top {
  margin-bottom: 30px;
}
.reservations-table-form .top .sub {
  color: var(--secondaryColor);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.reservations-table-form .top h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.reservations-table-form form .form-group {
  margin-bottom: 20px;
}
.reservations-table-form form .form-group label {
  font-size: 18px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.reservations-table-form form .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 50px;
  background-color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  padding: 15px 20px;
  outline: 0;
  box-shadow: unset;
  color: var(--blackColor);
  font-size: 15px;
  border-radius: 5px;
  transition: var(--transition);
}
.reservations-table-form form .form-group .form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.reservations-table-form form .form-group .form-control:focus {
  border: 1px solid var(--primary);
}
.reservations-table-form form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.reservations-table-form form .reservation-btn {
  margin-top: 35px;
}
.reservations-table-form form .reservation-btn .default-btn {
  border: none;
}

@media only screen and (max-width: 767px) {
  .reservations-table-form {
    padding: 25px;
  }
  .reservations-table-form .top {
    margin-bottom: 25px;
  }
  .reservations-table-form .top h2 {
    font-size: 35px;
  }
  .reservations-table-form form .form-group label {
    font-size: 15px;
  }
  .reservations-table-form form .reservation-btn .default-btn span {
    padding: 15.5px 30px 11px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .reservations-table-form {
    padding: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .reservations-table-form {
    padding: 50px 40px;
  }
}
.products-sorting-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.products-sorting-box .form-select {
  max-width: 225px;
  background-color: var(--bgColor);
  height: 50px;
  border: 1px solid var(--whiteColor);
  border-radius: 5px;
  outline: 0;
  padding: 7px 15px;
  box-shadow: unset;
  color: var(--bodyTextColor);
  transition: var(--transition);
}
.products-sorting-box .form-select:focus {
  border: 1px solid var(--primary);
}

.terms-of-service-content h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.terms-of-service-content .blockquote, .terms-of-service-content blockquote {
  margin-top: 25px;
  margin-bottom: 35px;
  background-color: var(--bgColor);
  text-align: start !important;
  padding: 25px !important;
  border-radius: 15px;
}
.terms-of-service-content .blockquote p, .terms-of-service-content blockquote p {
  margin-bottom: 0;
  line-height: 1.9;
}
.terms-of-service-content .blockquote::after, .terms-of-service-content blockquote::after {
  display: none;
}
.terms-of-service-content .blockquote::before, .terms-of-service-content blockquote::before {
  display: none;
}
.terms-of-service-content ol, .terms-of-service-content ul {
  margin-top: 20px;
}
.terms-of-service-content ol li, .terms-of-service-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

[hidden] {
  display: none !important;
}

.navbar .nav-link.dropdown-toggle[role=button] {
  cursor: pointer;
}
