@import url("https://fonts.googleapis.com/css2?family=Suez+One&display=swap");
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-ExtraLight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-ExtraLightItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-LightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-BookItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-RegularItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-SemiBoldItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-BoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Heavy.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-HeavyItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-BlackItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Mont", serif;
}
body::-webkit-scrollbar {
  width: 4px;
}
body::-webkit-scrollbar-thumb {
  background-color: #401408;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}
.bg-img {
  background-image: url("../images/homepage/about-us/about-bg.jpg");
}
@keyframes wave {
  from {
    left: 50px;
    top: -30px;
  }
  to {
    left: 0px;
    top: 0px;
  }
}
@keyframes wave {
  0% {
    -webkit-box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0px 50px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0px 50px rgba(255, 255, 255, 0);
  }
}
@keyframes up-down {
  from {
    bottom: -100px;
  }
  to {
    bottom: 0px;
  }
}
.wave {
  position: relative;
  animation: wave 2s infinite ease-in;
  border-radius: 50%;
}
a {
  text-decoration: none;
}
.text-custom-primary {
  color: #f5e400 !important;
}
header {
  background-color: #582414;
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.4s;
}
@media (min-width: 576px) {
  header {
    top: 50px;
  }
}
@media (min-width: 1200px) {
  header {
    top: 70px;
  }
}
header.scroll-class {
  top: 0px;
}
header nav {
  height: 40px;
}
@media (min-width: 576px) {
  header nav {
    height: 50px;
  }
}
@media (min-width: 992px) {
  header nav {
    height: 80px;
  }
}
header nav .navbar-brand {
  position: relative;
  z-index: 1;
  padding-bottom: 25px;
}
header nav .navbar-brand:focus-visible {
  outline: none;
}
@media (min-width: 576px) {
  header nav .navbar-brand {
    padding-bottom: 15px;
  }
}
@media (min-width: 992px) {
  header nav .navbar-brand {
    padding-bottom: 0;
  }
}
header nav .navbar-brand figure {
  width: 80px;
  height: 0px;
  position: relative;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}
@media (min-width: 576px) {
  header nav .navbar-brand figure {
    width: 100px;
  }
}
@media (min-width: 992px) {
  header nav .navbar-brand figure {
    width: 130px;
    height: 130px;
  }
}
@media (min-width: 1200px) {
  header nav .navbar-brand figure {
    width: 180px;
    height: 180px;
  }
}
header nav .navbar-brand figure::before {
  border-radius: 50%;
  content: "";
  position: absolute;
  width: 105%;
  height: 105%;
  top: 50%;
  left: 50%;
  background-color: #582414;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.4s;
  pointer-events: none;
}
header nav .navbar-brand figure img {
  width: 100%;
}
header nav .navbar-brand figure.scroll-logo {
  top: 30px;
}
@media (min-width: 992px) {
  header nav .navbar-brand figure.scroll-logo {
    width: 120px;
    height: 120px;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  header nav .navbar-nav {
    margin-left: 15px;
  }
}
@media (min-width: 1700px) {
  header nav .navbar-nav {
    margin-left: 25px;
  }
}
header nav .navbar-nav .nav-item:hover .menus-wrapper {
  transform: scaleY(1);
}
header nav .navbar-nav .nav-item:hover .nav-link {
  color: #f5e400;
}
header nav .navbar-nav .nav-item:hover .nav-link::after {
  content: "";
}
header nav .navbar-nav .nav-item.menuColor .nav-link {
  color: #f5e400;
}
header nav .navbar-nav .nav-item.menuColor .nav-link::after {
  content: "";
}
header nav .navbar-nav .nav-item .menus-wrapper {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s;
  padding: 80px 0px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
}
header nav .navbar-nav .nav-item .menus-wrapper.about {
  left: 0%;
  top: 145%;
  width: 450px;
  padding: 40px;
}
header nav .navbar-nav .nav-item .menus-wrapper.about .menu-items a {
  display: block;
  color: #582414;
  padding: 10px;
  text-decoration: none;
  font-size: 18px;
}
header nav .navbar-nav .nav-item .menus-wrapper.about .menu-items a svg {
  height: 30px;
  width: 30px;
  font-size: 30px;
  margin-right: 20px;
  color: #582414;
}
header nav .navbar-nav .nav-item .menus-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  top: -20px;
  left: 0;
  background-color: transparent;
}
header nav .navbar-nav .nav-item .menus-wrapper .menu-heading .menus-title {
  font-size: 35px;
  color: #582414;
}
header nav .navbar-nav .nav-item .menus-wrapper .menu-heading .menu-excerpt {
  font-size: 16px;
  color: rgb(156, 156, 156);
  text-transform: uppercase;
}
header nav .navbar-nav .nav-item .menus-wrapper .menu-items {
  margin-top: 30px;
}
header nav .navbar-nav .nav-item .menus-wrapper .menu-items .menu-item {
  height: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5cbc5;
}
header nav .navbar-nav .nav-item .menus-wrapper .menu-items .menu-item img {
  width: 40px;
  height: 40px;
  color: #582414;
  fill: #582414;
}
header nav .navbar-nav .nav-item .menus-wrapper .menu-items .menu-item a {
  font-size: 18px;
  margin-left: 15px;
  color: #582414;
  text-decoration: none;
}
header nav .navbar-nav .nav-item .nav-link {
  font-family: "Suez One", serif;
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0.6px;
  margin: 0 10px;
  transition: 0.4s;
  padding-left: 7px;
  padding-right: 7px;
  position: relative;
}
header nav .navbar-nav .nav-item .nav-link::after {
  content: none;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #f5e400;
}
@media (min-width: 1200px) {
  header nav .navbar-nav .nav-item .nav-link::after {
    bottom: -19.5px;
  }
}
@media (min-width: 1700px) {
  header nav .navbar-nav .nav-item .nav-link::after {
    bottom: -19px;
  }
}
@media (min-width: 1200px) {
  header nav .navbar-nav .nav-item .nav-link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 17px;
  }
}
@media (min-width: 1700px) {
  header nav .navbar-nav .nav-item .nav-link {
    margin: 0 20px;
    font-size: 18px;
  }
}
header nav .navbar-nav .nav-item .nav-link:hover {
  color: #f5e400;
}
header nav .header-social-links li a {
  width: 35px;
  height: 35px;
  display: block;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
  background-color: #693625;
  transition: 0.4s;
}
@media (min-width: 1200px) {
  header nav .header-social-links li a {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
}
header nav .header-social-links li a i,
header nav .header-social-links li a svg {
  transition: 0.4s;
  color: #fff;
  font-size: 16px;
}
@media (min-width: 1200px) {
  header nav .header-social-links li a i,
header nav .header-social-links li a svg {
    font-size: 18px;
  }
}
header nav .header-social-links li a:hover {
  background-color: #f5e400;
}
header nav .header-social-links li a:hover i,
header nav .header-social-links li a:hover svg {
  color: #693625;
}
header nav .toggle-menu {
  border: 0;
  outline: 0;
  background-color: transparent;
}
@media (min-width: 992px) {
  header nav .toggle-menu {
    display: none;
  }
}
header nav .toggle-menu svg {
  fill: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  header nav .toggle-menu svg {
    margin-bottom: 0;
  }
}
section,
footer {
  padding: 60px 0;
}
@media (min-width: 992px) {
  section,
footer {
    padding: 80px 0;
  }
}
.heading span.tag {
  font-size: 18px;
  color: #601f0e;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.heading h2 {
  text-transform: capitalize;
  font-size: 28px;
  color: #401408;
  font-family: "Suez One", serif;
}
@media (min-width: 768px) {
  .heading h2 {
    font-size: 38px;
  }
}
.heading p {
  color: rgb(130, 130, 130);
  margin-top: 30px;
  margin-bottom: 40px;
}
.side-nav {
  position: fixed;
  width: 80%;
  height: 100%;
  left: -100%;
  top: 0;
  background-color: #fff;
  z-index: 200;
  padding: 10px 0;
  transition: 0.4s;
}
@media (min-width: 576px) {
  .side-nav {
    width: 60%;
  }
}
.side-nav.opened {
  left: 0%;
}
@media (min-width: 992px) {
  .side-nav {
    display: none;
  }
}
.side-nav .side-nav-logo {
  border-bottom: 1px dashed #582414;
  padding-bottom: 10px;
  position: relative;
}
.side-nav .side-nav-logo figure {
  width: 100px;
}
.side-nav .side-nav-logo figure img {
  width: 100%;
}
.side-nav .side-nav-logo .side-nav-close {
  border: 0;
  outline: 0;
  cursor: pointer;
  background-color: transparent;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0px;
  top: -5px;
}
.side-nav .side-nav-logo .side-nav-close svg {
  font-size: 30px;
  fill: #582414;
  transition: 0.4s;
}
.side-nav .side-nav-links {
  margin-top: 20px;
  border-bottom: 1px dashed #582414;
}
.side-nav .side-nav-links ul li a {
  text-decoration: none;
  font-family: "Suez One", serif;
  color: #582414;
  font-size: 18px;
  display: block;
  padding: 8px 0;
  transition: 0.4s;
}
.side-nav .side-nav-links ul li a:hover, .side-nav .side-nav-links ul li a.active {
  color: #f5e400;
}
.side-nav .side-nav-links ul li .submenu-list {
  display: none;
  list-style: none;
}
.side-nav .side-nav-links ul li .submenu-list li {
  text-decoration: none;
}
.side-nav .side-nav-links ul li .submenu-list li a {
  padding: 6px 0px;
}
.side-nav .side-nav-links ul li.active a svg {
  transform: rotate(180deg);
}
.side-nav .side-nav-links ul li.active .submenu-list {
  display: block;
}
.side-nav .side-nav-social-media {
  padding: 15px 0;
}
.side-nav .side-nav-social-media ul {
  display: flex;
  align-items: center;
}
.side-nav .side-nav-social-media ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #582414;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.4s;
  text-decoration: none;
}
.side-nav .side-nav-social-media ul li a svg, .side-nav .side-nav-social-media ul li a i {
  color: #fff;
  font-size: 18px;
  transition: 0.4s;
}
.side-nav .side-nav-social-media ul li a:hover {
  background-color: #f5e400;
}
.side-nav .side-nav-social-media ul li a:hover svg, .side-nav .side-nav-social-media ul li a:hover i {
  color: #582414;
}
section.banner {
  background-image: url("../images/homepage/about-us/about-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 115px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  section.banner {
    padding-top: 150px;
  }
}
@media (min-width: 992px) {
  section.banner {
    padding-top: 170px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  section.banner {
    padding-top: 260px;
  }
}
section.banner .banner-qualities-wrap {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
@media (min-width: 376px) {
  section.banner .banner-qualities-wrap {
    padding: 0 25px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-qualities-wrap {
    padding: 0;
  }
}
@media (min-width: 768px) {
  section.banner .banner-qualities-wrap {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  section.banner .banner-qualities-wrap {
    flex-direction: column;
  }
}
section.banner .banner-qualities-wrap .banner-qualities {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  section.banner .banner-qualities-wrap .banner-qualities {
    flex-direction: column;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  section.banner .banner-qualities-wrap .banner-qualities {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  section.banner .banner-qualities-wrap .banner-qualities {
    margin-bottom: 50px;
  }
}
section.banner .banner-qualities-wrap .banner-qualities:last-child {
  margin-bottom: 0;
}
section.banner .banner-qualities-wrap .banner-qualities .quality-icon {
  margin-right: 20px;
}
section.banner .banner-qualities-wrap .banner-qualities .quality-icon figure {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  section.banner .banner-qualities-wrap .banner-qualities .quality-icon figure {
    width: 90px;
    height: 90px;
  }
}
section.banner .banner-qualities-wrap .banner-qualities .quality-icon figure img {
  width: 50%;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  section.banner .banner-qualities-wrap .banner-qualities .quality-content {
    margin-top: 12px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-qualities-wrap .banner-qualities .quality-content {
    margin-top: 0;
  }
}
section.banner .banner-qualities-wrap .banner-qualities .quality-content .quality-title h3 {
  font-size: 20px;
  font-family: "Suez One", serif;
  color: #401408;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  section.banner .banner-qualities-wrap .banner-qualities .quality-content .quality-title h3 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-qualities-wrap .banner-qualities .quality-content .quality-title h3 {
    margin-bottom: 5px;
  }
}
section.banner .banner-qualities-wrap .banner-qualities .quality-content .quality-text p {
  font-size: 16px;
  color: #601f0e;
  margin-bottom: 0;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content h2 {
  font-size: 22px;
  font-family: "Suez One", serif;
  color: #601f0e;
}
@media (min-width: 992px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content h2.small {
    font-size: 36px;
  }
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content h2 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content h2 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content h2 {
    font-size: 48px;
  }
}
@media (min-width: 1400px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content h2 {
    font-size: 52px;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content h2 span {
  font-size: 16px;
}
@media (min-width: 992px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content h2 span {
    font-size: 20px;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content a {
  width: 160px;
  background-color: #582414;
  margin-top: 16px;
  height: 40px;
  border-radius: 25px;
  font-size: 16px;
  color: #f5e400;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content a {
    font-size: 20px;
    height: 50px;
    width: 200px;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content a {
    margin-top: 40px;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-content a img {
  width: 8px;
  margin-left: 20px;
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-img figure {
  width: 250px;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-img figure {
    width: 100%;
  }
}
section.banner .banner-slider .splide__track .splide__list .splide__slide .banner-img figure img {
  width: 100%;
}
section.banner .banner-slider .splide__pagination {
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
  flex-direction: column;
  top: 25%;
  bottom: unset;
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__pagination {
    align-items: flex-start;
    justify-content: flex-start;
    bottom: -0.5em;
    flex-direction: row;
    top: unset;
  }
}
@media (min-width: 768px) {
  section.banner .banner-slider .splide__pagination {
    bottom: 0.5em;
  }
}
@media (min-width: 992px) {
  section.banner .banner-slider .splide__pagination {
    bottom: 2.5em;
  }
}
@media (min-width: 1200px) {
  section.banner .banner-slider .splide__pagination {
    bottom: 1.5em;
  }
}
section.banner .banner-slider .splide__pagination li button {
  width: 10px;
  height: 16px;
  border-radius: 20px;
  background-color: rgba(88, 36, 20, 0.5803921569);
  margin: 4px;
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__pagination li button {
    width: 16px;
    height: 10px;
  }
}
section.banner .banner-slider .splide__pagination li button.is-active {
  transform: unset;
  background-color: #401408;
  height: 24px;
}
@media (min-width: 576px) {
  section.banner .banner-slider .splide__pagination li button.is-active {
    width: 24px;
    height: 10px;
  }
}
section.our-menu {
  padding-bottom: 150px;
}
@media (min-width: 1200px) {
  section.our-menu {
    padding-bottom: 60px;
  }
}
section.our-menu .menu-category-wrap .menu-offer-card figure {
  border-radius: 20px;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
}
@media (min-width: 576px) {
  section.our-menu .menu-category-wrap .menu-offer-card figure {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.our-menu .menu-category-wrap .menu-offer-card figure {
    width: 100%;
  }
}
section.our-menu .menu-category-wrap .menu-offer-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card {
  border-radius: 12px;
  padding: 12px;
  height: 100%;
  background-color: #F2EEED;
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card figure {
  border-radius: 10px;
  width: 100%;
  height: 290px;
  overflow: hidden;
}
@media (min-width: 992px) {
  section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card figure {
    height: 250px;
  }
}
@media (min-width: 1400px) {
  section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card figure {
    height: 290px;
  }
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card figure img {
  width: 100%;
  height: 100%;
  transition: 0.8s;
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content {
  margin-top: 15px;
  padding: 10px;
  display: block;
  text-decoration: none;
}
@media (min-width: 576px) {
  section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content {
    margin-top: 10px;
    padding: 20px;
  }
}
@media (min-width: 1400px) {
  section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content {
    margin-top: 20px;
  }
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content h4 {
  font-size: 20px;
  color: #582414;
  font-weight: 600;
  text-transform: capitalize;
}
@media (min-width: 576px) {
  section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content h4 {
    font-size: 22px;
  }
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content a {
  color: #d57c60;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
}
@media (min-width: 576px) {
  section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content a {
    margin-top: 20px;
    font-size: 17px;
  }
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #d57c60;
  left: -100%;
  bottom: 0;
  transition: 0.4s;
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content a img {
  width: 8px;
  margin-left: 10px;
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card .menu-card-content a:hover::before {
  left: 0%;
}
section.our-menu .menu-category-wrap .menu-slider .splide__track .splide__list .splide__slide .menu-card:hover figure img {
  transform: scale(1.1);
}
section.our-menu .menu-category-wrap .menu-slider .splide__arrows button {
  transform: unset;
  top: unset;
  bottom: -85px;
  border-radius: 0;
  width: 50px;
  height: 50px;
  left: 0;
  background-color: #f5e400;
  color: #582414;
}
section.our-menu .menu-category-wrap .menu-slider .splide__arrows button.splide__arrow--next {
  right: unset;
  left: 60px;
}
section.our-menu .menu-category-wrap .menu-slider .splide__pagination {
  bottom: -5.5em;
  justify-content: flex-end;
  padding: 0;
}
section.our-menu .menu-category-wrap .menu-slider .splide__pagination li button {
  width: 16px;
  height: 10px;
  border-radius: 20px;
  background-color: rgba(88, 36, 20, 0.5803921569);
  margin: 4px;
}
section.our-menu .menu-category-wrap .menu-slider .splide__pagination li button.is-active {
  transform: unset;
  background-color: #401408;
  width: 24px;
}
section.apps {
  background-image: url("../images/homepage/menu/app-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 1400px) {
  section.apps {
    background-size: contain;
    margin-top: -128px;
  }
}
section.apps figure.apps-img {
  width: 100%;
}
@media (min-width: 576px) {
  section.apps figure.apps-img {
    width: 50%;
  }
}
@media (min-width: 992px) {
  section.apps figure.apps-img {
    width: 100%;
    margin: auto;
  }
}
section.apps figure.apps-img img {
  width: 100%;
}
section.apps .apps-content-wrap h4 {
  font-size: 22px;
  font-family: "Suez One", serif;
  color: #582414;
  text-align: center;
}
@media (min-width: 576px) {
  section.apps .apps-content-wrap h4 {
    font-size: 24px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  section.apps .apps-content-wrap h4 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  section.apps .apps-content-wrap h4 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  section.apps .apps-content-wrap h4 {
    font-size: 38px;
  }
}
section.apps .apps-content-wrap .app-download-links {
  display: flex;
  flex-direction: column;
}
@media (min-width: 376px) {
  section.apps .apps-content-wrap .app-download-links {
    align-items: center;
    flex-direction: row;
  }
}
section.apps .apps-content-wrap .app-download-links .app-download-btn {
  margin-bottom: 10px;
}
@media (min-width: 376px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn {
    margin-bottom: 0;
  }
}
section.apps .apps-content-wrap .app-download-links .app-download-btn a {
  background-color: #582414;
  border-radius: 40px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4px;
}
@media (min-width: 376px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn a {
    width: 160px;
    margin-left: 10px;
  }
}
@media (min-width: 576px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn a {
    width: 200px;
    height: 58px;
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn a {
    width: 245px;
    height: 65px;
  }
}
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
@media (min-width: 1200px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-text {
    margin-left: 20px;
  }
}
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-text small {
  color: #fff;
  font-size: 10px;
}
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-text span {
  color: #fff;
  font-size: 15px;
}
@media (min-width: 576px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-text span {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-text span {
    font-size: 20px;
  }
}
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-icon i,
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-icon svg {
  color: #fff;
  font-size: 20px;
}
@media (min-width: 1200px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-icon i,
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-icon svg {
    font-size: 30px;
  }
}
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-icon.apple i,
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-icon.apple svg {
  font-size: 30px;
}
@media (min-width: 1200px) {
  section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-icon.apple i,
section.apps .apps-content-wrap .app-download-links .app-download-btn a .btn-icon.apple svg {
    font-size: 40px;
  }
}
section.find-us {
  background-image: url("../images/homepage/common/feedback-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 180px 0 230px;
  padding-top: 230px;
}
section.find-us::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  top: -100px;
  background-color: #5F200F;
  z-index: -1;
  display: none;
  pointer-events: none;
}
@media (min-width: 1200px) {
  section.find-us::before {
    display: block;
  }
}
section.find-us .find-us-wrap {
  position: relative;
}
section.find-us .find-us-wrap .find-us-text h4 {
  color: #fff;
  font-size: 24px;
  font-family: "Suez One", serif;
}
@media (min-width: 768px) {
  section.find-us .find-us-wrap .find-us-text h4 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .find-us-text h4 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  section.find-us .find-us-wrap .find-us-text h4 {
    font-size: 36px;
  }
}
@media (min-width: 1400px) {
  section.find-us .find-us-wrap .find-us-text h4 {
    font-size: 42px;
  }
}
section.find-us .find-us-wrap .find-us-text h4 span {
  color: #f5e400;
}
section.find-us .find-us-wrap .find-us-text .find-us-link a {
  background-color: #f5e400;
  display: inline-block;
  border-radius: 30px;
  padding: 10px 28px;
  color: #582414;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  transition: 0.4s;
  border: 2px solid #f5e400;
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .find-us-text .find-us-link a {
    padding: 14px 50px;
    font-size: 20px;
  }
}
section.find-us .find-us-wrap .find-us-text .find-us-link a:hover {
  background-color: #582414;
  color: #f5e400;
}
section.find-us .find-us-wrap .food-app {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.find-us .find-us-wrap .food-app.uber-eats {
  width: 70px;
  height: 70px;
  left: 0;
  top: -95%;
}
@media (min-width: 576px) {
  section.find-us .find-us-wrap .food-app.uber-eats {
    left: -5%;
    top: -90%;
  }
}
@media (min-width: 768px) {
  section.find-us .find-us-wrap .food-app.uber-eats {
    width: 110px;
    height: 110px;
    left: -4%;
    top: -80%;
  }
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .food-app.uber-eats {
    left: 0;
    top: -30%;
  }
}
@media (min-width: 1200px) {
  section.find-us .find-us-wrap .food-app.uber-eats {
    left: 0;
    top: -20%;
  }
}
section.find-us .find-us-wrap .food-app.uber-eats img {
  width: 70%;
}
section.find-us .find-us-wrap .food-app.talabat {
  width: 120px;
  height: 120px;
  left: 24%;
  top: -135px;
}
@media (min-width: 576px) {
  section.find-us .find-us-wrap .food-app.talabat {
    left: 0%;
    top: 70%;
  }
}
@media (min-width: 768px) {
  section.find-us .find-us-wrap .food-app.talabat {
    width: 160px;
    height: 160px;
    left: 6%;
    top: 70%;
  }
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .food-app.talabat {
    left: 8%;
    top: 50%;
  }
}
@media (min-width: 1200px) {
  section.find-us .find-us-wrap .food-app.talabat {
    left: 12%;
    top: 40%;
  }
}
section.find-us .find-us-wrap .food-app.talabat img {
  width: 80%;
}
section.find-us .find-us-wrap .food-app.facebook {
  width: 50px;
  height: 50px;
  left: 2%;
  bottom: -32%;
}
@media (min-width: 576px) {
  section.find-us .find-us-wrap .food-app.facebook {
    left: -5%;
    bottom: -90%;
  }
}
@media (min-width: 768px) {
  section.find-us .find-us-wrap .food-app.facebook {
    width: 90px;
    height: 90px;
    left: -5%;
    bottom: -112%;
  }
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .food-app.facebook {
    left: -2%;
    bottom: -55%;
  }
}
@media (min-width: 1200px) {
  section.find-us .find-us-wrap .food-app.facebook {
    left: 2%;
    bottom: -45%;
  }
}
section.find-us .find-us-wrap .food-app.facebook img {
  width: 60%;
}
section.find-us .find-us-wrap .food-app.google {
  width: 80px;
  height: 80px;
  left: 10%;
  bottom: -105%;
}
@media (min-width: 576px) {
  section.find-us .find-us-wrap .food-app.google {
    left: 28%;
    bottom: -130%;
  }
}
@media (min-width: 768px) {
  section.find-us .find-us-wrap .food-app.google {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .food-app.google {
    bottom: -80%;
  }
}
@media (min-width: 1200px) {
  section.find-us .find-us-wrap .food-app.google {
    bottom: -50%;
  }
}
section.find-us .find-us-wrap .food-app.google img {
  width: 60%;
}
section.find-us .find-us-wrap .food-app.deliveroo {
  width: 100px;
  height: 100px;
  right: 0;
  top: -95%;
}
@media (min-width: 376px) {
  section.find-us .find-us-wrap .food-app.deliveroo {
    top: -110%;
  }
}
@media (min-width: 576px) {
  section.find-us .find-us-wrap .food-app.deliveroo {
    right: -3%;
    top: -78%;
  }
}
@media (min-width: 768px) {
  section.find-us .find-us-wrap .food-app.deliveroo {
    width: 140px;
    height: 140px;
    right: -5%;
    top: -95%;
  }
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .food-app.deliveroo {
    right: 5%;
    top: -50%;
  }
}
@media (min-width: 1200px) {
  section.find-us .find-us-wrap .food-app.deliveroo {
    right: 10%;
    top: -30%;
  }
}
section.find-us .find-us-wrap .food-app.deliveroo img {
  width: 80%;
}
section.find-us .find-us-wrap .food-app.zomato {
  width: 80px;
  height: 80px;
  right: 35%;
  bottom: -67%;
}
@media (min-width: 376px) {
  section.find-us .find-us-wrap .food-app.zomato {
    right: 35%;
    bottom: -80%;
  }
}
@media (min-width: 576px) {
  section.find-us .find-us-wrap .food-app.zomato {
    right: 22%;
    bottom: -130%;
  }
}
@media (min-width: 768px) {
  section.find-us .find-us-wrap .food-app.zomato {
    width: 120px;
    height: 120px;
    bottom: -130%;
  }
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .food-app.zomato {
    bottom: -65%;
  }
}
@media (min-width: 1200px) {
  section.find-us .find-us-wrap .food-app.zomato {
    bottom: -35%;
  }
}
section.find-us .find-us-wrap .food-app.zomato img {
  width: 80%;
}
section.find-us .find-us-wrap .food-app.entertainer {
  width: 120px;
  height: 120px;
  right: 0;
  bottom: -121%;
}
@media (min-width: 376px) {
  section.find-us .find-us-wrap .food-app.entertainer {
    bottom: -140%;
  }
}
@media (min-width: 576px) {
  section.find-us .find-us-wrap .food-app.entertainer {
    right: -9px;
    bottom: -125px;
  }
}
@media (min-width: 768px) {
  section.find-us .find-us-wrap .food-app.entertainer {
    width: 160px;
    height: 160px;
    right: -22px;
    bottom: -105px;
  }
}
@media (min-width: 992px) {
  section.find-us .find-us-wrap .food-app.entertainer {
    right: 0;
    bottom: -45px;
  }
}
@media (min-width: 1200px) {
  section.find-us .find-us-wrap .food-app.entertainer {
    bottom: 0;
  }
}
section.find-us .find-us-wrap .food-app.entertainer img {
  width: 80%;
}
section.about-us {
  background-image: url("../images/homepage/about-us/about-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (min-width: 992px) {
  section.about-us {
    padding: 100px 0;
  }
}
section.about-us .row {
  position: relative;
}
section.about-us .about-us-content {
  width: 96%;
  background-color: #fff;
  border-radius: 12px;
  padding: 18px;
  margin: auto;
  margin-top: -45px;
  position: relative;
  z-index: 20;
}
@media (min-width: 992px) {
  section.about-us .about-us-content .heading h2 {
    font-size: 28px;
  }
}
section.about-us .about-us-content ul {
  margin-bottom: 0;
  margin: 20px 0;
}
section.about-us .about-us-content ul li {
  font-size: 16px;
  line-height: 1.6;
  padding: 4px 0;
  color: #3a3a3a;
}
@media (min-width: 576px) {
  section.about-us .about-us-content ul li {
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  section.about-us .about-us-content {
    padding: 25px;
    width: 90%;
  }
}
@media (min-width: 768px) {
  section.about-us .about-us-content {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  section.about-us .about-us-content {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    margin: unset;
    width: 450px;
    padding: 40px 40px;
  }
}
@media (min-width: 1200px) {
  section.about-us .about-us-content {
    width: 520px;
    padding: 40px 40px;
    right: 0px;
  }
}
section.about-us .about-us-content .about-text {
  margin: 10px 0;
}
@media (min-width: 576px) {
  section.about-us .about-us-content .about-text {
    margin: 30px 0;
  }
}
@media (min-width: 768px) {
  section.about-us .about-us-content .about-text {
    margin: 50px 0;
  }
}
section.about-us .about-us-content .about-text p {
  color: #290d06;
  font-size: 15px;
  text-align: center;
  line-height: 1.7;
}
@media (min-width: 576px) {
  section.about-us .about-us-content .about-text p {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  section.about-us .about-us-content .about-text p {
    font-size: 18px;
  }
}
section.about-us .about-us-content .about-link {
  text-align: center;
}
section.about-us .about-us-content .about-link a {
  padding: 10px 28px;
  font-size: 16px;
  background-color: #f5e400;
  color: #401408;
  display: inline-block;
  transition: 0.4s;
  border-radius: 30px;
  text-decoration: none;
}
@media (min-width: 576px) {
  section.about-us .about-us-content .about-link a {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  section.about-us .about-us-content .about-link a {
    padding: 14px 50px;
    font-size: 20px;
  }
}
section.about-us .about-us-content .about-link a:hover {
  background-color: #582414;
  color: #f5e400;
}
section.about-us .about-slider-wrap {
  margin-top: 70px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  section.about-us .about-slider-wrap {
    margin-top: 100px;
  }
}
section.about-us .about-slider-wrap .about-slider .splide__track .splide__list .splide__slide figure {
  width: 100%;
}
section.about-us .about-slider-wrap .about-slider .splide__track .splide__list .splide__slide figure img {
  width: 100%;
}
section.about-us .about-slider-wrap .about-slider .splide__pagination {
  bottom: -3em;
}
@media (min-width: 576px) {
  section.about-us .about-slider-wrap .about-slider .splide__pagination {
    bottom: -4.5em;
  }
}
section.about-us .about-slider-wrap .about-slider .splide__pagination li button {
  width: 16px;
  height: 10px;
  border-radius: 20px;
  background-color: rgba(88, 36, 20, 0.5803921569);
  margin: 4px;
}
section.about-us .about-slider-wrap .about-slider .splide__pagination li button.is-active {
  transform: unset;
  background-color: #401408;
  width: 24px;
}
section.testimonials {
  background-image: url("../images/homepage/common/feedback-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
section.testimonials .testionials-slider-wrapper {
  margin-top: 30px;
}
@media (min-width: 768px) {
  section.testimonials .testionials-slider-wrapper {
    margin-top: 50px;
  }
}
section.testimonials .testionials-slider-wrapper a {
  text-decoration: none;
  height: 100%;
  color: black;
}
section.testimonials .testionials-slider-wrapper a .testimonial-card {
  height: 90%;
  position: relative;
  margin: 10px;
  z-index: 50;
}
section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonee-image figure {
  overflow: hidden;
  border-radius: 100%;
  width: 70px;
  height: 70px;
}
section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonee-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.testimonials .testionials-slider-wrapper a .testimonial-card::before {
  position: absolute;
  content: "";
  background-color: #f5e400;
  width: 100%;
  height: 100%;
  bottom: -10px;
  right: -10px;
  border-radius: 10px;
  z-index: -10;
}
section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonial {
  height: 100%;
  border-radius: 10px;
  border: 3px solid #000;
  z-index: 10;
  background-color: #fff !important;
}
section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonial .tesimonee-name {
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonial .tesimonee-name {
    font-size: 18px;
  }
}
section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonial .stars-wrapper svg {
  font-size: 16px;
}
@media (min-width: 768px) {
  section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonial .stars-wrapper svg {
    font-size: 18px;
  }
}
section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonial .stars-wrapper svg path {
  fill: #f5e400;
}
section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonial .testimonial-message .title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 16px;
}
section.testimonials .testionials-slider-wrapper a .testimonial-card .testimonial .testimonial-message p {
  font-weight: 400;
}
section.testimonials .testimonials-cta {
  margin-top: 50px;
}
section.testimonials .testimonials-cta a {
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 40px;
  position: relative;
  z-index: 80;
  background-color: #f5e400;
  font-size: 18px;
  color: #582414;
  border-radius: 50px;
  padding: 10px 28px;
}
@media (min-width: 768px) {
  section.testimonials .testimonials-cta a {
    font-size: 20px;
    padding: 15px 40px;
  }
}
section.satisfaction {
  background-color: #f5e400;
  padding-bottom: 80px;
}
section.satisfaction .custom-heading {
  color: #582414 !important;
  position: relative;
}
section.satisfaction .custom-heading span {
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.satisfaction .custom-heading span {
    font-size: 20px;
  }
}
section.satisfaction .custom-heading h4 {
  font-weight: 500;
  font-size: 26px;
}
section.satisfaction .custom-heading h4.sub-head-small {
  padding-left: 40px;
}
@media (min-width: 576px) {
  section.satisfaction .custom-heading h4.sub-head-small {
    padding-left: 30px;
  }
}
@media (min-width: 768px) {
  section.satisfaction .custom-heading h4.sub-head-small {
    padding-left: 40px;
  }
}
@media (min-width: 992px) {
  section.satisfaction .custom-heading h4.sub-head-small {
    padding-left: 50px;
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  section.satisfaction .custom-heading h4 {
    font-size: 34px;
  }
}
section.satisfaction .custom-heading .magic-img {
  position: absolute;
  width: 50px;
  top: 40px;
  left: 0;
}
@media (min-width: 576px) {
  section.satisfaction .custom-heading .magic-img {
    width: 70px;
    top: 20px;
    left: -25px;
  }
}
@media (min-width: 768px) {
  section.satisfaction .custom-heading .magic-img {
    top: 42px;
    left: -5px;
  }
}
@media (min-width: 992px) {
  section.satisfaction .custom-heading .magic-img {
    left: -90px;
  }
}
@media (min-width: 1200px) {
  section.satisfaction .custom-heading .magic-img {
    left: -20px;
    top: 15px;
    width: 70px;
  }
}
section.satisfaction .quality-card-wrapper {
  position: relative;
  height: 100%;
}
section.satisfaction .quality-card-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -10px;
  right: -10px;
  background-color: #d4bf2a;
  border-radius: 10px;
}
section.satisfaction .quality-card-wrapper .quality-card {
  height: 100%;
  position: relative;
  padding: 20px;
  border: 2px solid #582414;
  border-radius: 10px;
}
section.satisfaction .quality-card-wrapper .quality-card .quality-icon figure img {
  width: 65px;
}
section.satisfaction .quality-card-wrapper .quality-card .quality-text {
  color: #582414;
}
@media (min-width: 992px) {
  section.satisfaction .quality-card-wrapper .quality-card .quality-text {
    margin-left: 18px;
  }
}
section.satisfaction .quality-card-wrapper .quality-card .quality-text span {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  section.satisfaction .quality-card-wrapper .quality-card .quality-text span {
    font-size: 22px;
  }
}
section.satisfaction .quality-cta a {
  background-color: #582414;
  color: #f5e400;
  font-size: 18px;
  border-radius: 50px;
  padding: 10px 28px;
}
@media (min-width: 768px) {
  section.satisfaction .quality-cta a {
    font-size: 20px;
    padding: 15px 40px;
  }
}
footer {
  background-image: url("../images/homepage/common/footer-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1400px) {
  footer.homepage {
    margin-top: -130px;
    padding: 180px 0 230px;
  }
}
@media (min-width: 1700px) {
  footer.homepage {
    margin-top: -90px;
  }
}
footer .top-footer {
  margin-bottom: unset;
}
@media (min-width: 992px) {
  footer .top-footer {
    margin-bottom: 100px;
  }
}
footer .top-footer figure.footer-logo {
  width: 200px;
}
@media (min-width: 768px) {
  footer .top-footer figure.footer-logo {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  footer .top-footer figure.footer-logo {
    width: 250px;
  }
}
footer .top-footer .footer-links h6 {
  color: #f5e400;
  font-size: 24px;
  font-weight: 400;
  position: relative;
}
@media (min-width: 992px) {
  footer .top-footer .footer-links h6 {
    font-size: 28px;
  }
}
footer .top-footer .footer-links h6::before {
  position: absolute;
  content: "";
  width: 40px;
  background-color: #f5e400;
  height: 3px;
  bottom: -12px;
  left: 0;
}
footer .top-footer .footer-links ul {
  margin-top: 20px;
}
@media (min-width: 992px) {
  footer .top-footer .footer-links ul {
    margin-top: 30px;
  }
}
footer .top-footer .footer-links ul li {
  color: #fff;
  padding: 5px 0;
}
@media (min-width: 992px) {
  footer .top-footer .footer-links ul li {
    padding: 10px 0;
  }
}
footer .top-footer .footer-links ul li a {
  color: #fff;
  text-decoration: none;
}
footer .top-footer .footer-links .footer-download-btn-wrapper {
  margin-bottom: 20px;
  position: relative;
  width: fit-content;
}
footer .top-footer .footer-links .footer-download-btn-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -8px;
  right: -8px;
  background-color: rgba(245, 228, 0, 0.7098039216);
  border-radius: 10px;
}
footer .top-footer .footer-links .footer-download-btn-wrapper .footer-download-btn {
  position: relative;
  text-decoration: none;
  color: #582414;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #582414;
}
footer .top-footer .footer-links .footer-download-btn-wrapper .footer-download-btn .text {
  margin-left: 15px;
  font-size: 16px;
}
@media (min-width: 992px) {
  footer .top-footer .footer-links .footer-download-btn-wrapper .footer-download-btn .text {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  footer .top-footer .footer-links .footer-download-btn-wrapper .footer-download-btn .text {
    font-size: 16px;
  }
}
footer .top-footer .footer-links .footer-download-btn-wrapper .footer-download-btn .text .title {
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 992px) {
  footer .top-footer .footer-links .footer-download-btn-wrapper .footer-download-btn .text .title {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  footer .top-footer .footer-links .footer-download-btn-wrapper .footer-download-btn .text .title {
    font-size: 20px;
  }
}
footer .bottom-footer {
  background-color: #3b140a;
}
footer .bottom-footer .copyright-text {
  color: #fff;
}
@media (min-width: 992px) {
  footer .bottom-footer .copyright-text {
    position: absolute;
    font-size: 15px;
    left: 38%;
  }
}
@media (min-width: 1200px) {
  footer .bottom-footer .copyright-text {
    position: absolute;
    font-size: 16px;
  }
}
footer .bottom-footer .copyright-text a {
  text-decoration: none;
  color: #fff;
}
footer .bottom-footer .subscribe-parent {
  position: relative;
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper {
  background-color: #f5e400;
  position: relative;
  bottom: 0;
  left: 0;
}
@media (min-width: 992px) {
  footer .bottom-footer .subscribe-parent .subscribe-wrapper {
    position: absolute;
    bottom: -60px;
  }
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 100%;
  box-shadow: 10px 10px 0px 3px rgba(245, 228, 0, 0.55);
  -webkit-box-shadow: 10px 10px 0px 3px rgba(245, 228, 0, 0.55);
  -moz-box-shadow: 10px 10px 0px 3px rgba(245, 228, 0, 0.55);
}
@media (min-width: 992px) {
  footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe {
    width: 350px;
  }
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe p {
  color: #582414;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 992px) {
  footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe p {
    font-size: 22px;
  }
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe input {
  border-radius: 50px;
  border: none;
  outline: none;
  padding: 10px 20px 10px 30px;
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe input:focus {
  box-shadow: unset;
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe input::placeholder {
  color: #999;
}
@media (min-width: 992px) {
  footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe input {
    padding: 15px 20px 15px 30px;
  }
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe button {
  background-color: #582414;
  border-radius: 50px;
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
  padding: 5px 30px;
  margin-left: -30px !important;
  position: relative;
  z-index: 10;
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe button svg {
  font-size: 24px;
}
footer .bottom-footer .subscribe-parent .subscribe-wrapper .subscribe button svg path {
  fill: #fff !important;
}
section.page-header {
  position: relative;
  padding: 126px 0px 60px;
  display: flex;
  justify-content: center;
}
@media (min-width: 576px) {
  section.page-header {
    padding: 250px 0px 80px;
  }
}
section.page-header.outlets {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
}
section.page-header.outlets .search-bar {
  width: fit-content;
  margin: auto;
  background-color: #fff;
  border: 1px solid rgba(88, 36, 20, 0.4705882353);
  border-radius: 50px;
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
}
section.page-header.outlets .search-bar .location-icon svg {
  width: 30px;
  height: 30px;
  color: #582414;
}
section.page-header.outlets .search-bar .location-countries-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 576px) {
  section.page-header.outlets .search-bar .location-countries-wrap {
    flex-direction: row;
  }
}
section.page-header.outlets .search-bar .location-countries-wrap .location-country {
  margin: 5px;
}
@media (min-width: 576px) {
  section.page-header.outlets .search-bar .location-countries-wrap .location-country {
    margin-left: 15px;
  }
}
section.page-header.outlets .search-bar .location-countries-wrap p {
  cursor: pointer;
  transition: 0.4s;
  color: #582414;
  background-color: rgba(245, 228, 0, 0.4117647059);
  border: 1px solid #f5e400;
  margin-left: 15px;
  border-radius: 50px;
  padding: 5px 20px;
  padding-top: 7px;
  margin-bottom: 0;
  font-weight: 500;
}
section.page-header.outlets .search-bar .location-countries-wrap p.active {
  color: #f5e400;
  background-color: #582414;
  border: 1px solid #582414;
}
section.page-header.outlets .search-bar .location-countries-wrap p:hover {
  color: #f5e400;
  background-color: #582414;
  border: 1px solid #582414;
}
section.page-header.bg-image-text .page-header-wrapper {
  z-index: 10;
  position: relative;
}
section.page-header.bg-image-text .page-header-wrapper .heading .tag {
  color: #fff;
}
section.page-header.bg-image-text .page-header-wrapper .heading h2 {
  color: #fff;
}
section.page-header.bg-image-text .page-header-wrapper nav .breadcrumb .breadcrumb-item a {
  color: #fff;
}
section.page-header.bg-image-text .page-header-wrapper nav .breadcrumb .breadcrumb-item.active {
  color: #fff;
}
section.page-header.contact {
  background-image: url("../images/banner-image-pressman-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
section.page-header.contact::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(68, 43, 37, 0.3803921569);
}
section.page-header.bg-customer-img {
  background-image: url("../images/banner-image-pressman-3-.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
section.page-header.bg-customer-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(68, 43, 37, 0.3803921569);
}
section.page-header.bg-partnership-img {
  padding: 100px 0;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  background-image: url("../images/franchising/partnership-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
section.page-header.bg-partnership-img::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.265);
}
section.page-header.bg-partnership-img .page-header-wrapper .heading h2 {
  color: #fff;
}
section.page-header.bg-partnership-img .partnership-card {
  display: flex;
  align-items: flex-start;
}
@media (min-width: 992px) {
  section.page-header.bg-partnership-img .partnership-card {
    padding-right: 20px;
  }
}
section.page-header.bg-partnership-img .partnership-card .partnership-img figure {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  margin-right: 20px;
}
@media (min-width: 576px) {
  section.page-header.bg-partnership-img .partnership-card .partnership-img figure {
    width: 60px;
    height: 60px;
  }
}
section.page-header.bg-partnership-img .partnership-card .partnership-img figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.page-header.bg-partnership-img .partnership-card .partnership-content {
  display: flex;
  flex-direction: column;
}
section.page-header.bg-partnership-img .partnership-card .partnership-content h3 {
  text-transform: capitalize;
  color: #fff;
}
section.page-header.bg-partnership-img .partnership-card .partnership-content p {
  color: #fff;
}
section.page-header.our-menu-bg {
  padding: 126px 0px 60px;
  background-image: url("../images/banner-image-pressman-3-.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 576px) {
  section.page-header.our-menu-bg {
    padding: 205px 0px 60px;
  }
}
section.page-header.our-menu-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(68, 43, 37, 0.3803921569);
}
section.page-header .page-header-wrapper .page-header-title {
  font-size: 40px;
  color: #582414;
  text-align: center;
  text-transform: uppercase;
}
section.page-header .page-header-wrapper nav {
  display: flex;
  justify-content: center;
}
section.page-header .page-header-wrapper nav .breadcrumb {
  font-size: 16px;
}
section.page-header .page-header-wrapper nav .breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}
section.page-header .page-header-wrapper nav .breadcrumb .breadcrumb-item::before {
  content: none;
}
section.page-header .page-header-wrapper nav .breadcrumb .breadcrumb-item svg {
  margin-right: 8px;
}
section.page-header .page-header-wrapper nav .breadcrumb .breadcrumb-item a {
  color: #582414;
  text-decoration: none;
}
section.page-header .page-header-wrapper nav .breadcrumb .breadcrumb-item.active {
  color: #582414;
}
section.menus .menu-categories-container {
  background-color: #fff;
}
section.menus .menu-categories-container .menu-categories {
  border-bottom: 1px solid #ffd3c5;
  padding: 0;
  display: none;
}
@media (min-width: 992px) {
  section.menus .menu-categories-container .menu-categories {
    display: block;
  }
}
section.menus .menu-categories-container .menu-categories .splide__arrow {
  transition: 0.4s;
  height: 30px;
  width: 30px;
  border-radius: 2px;
  background-color: #582414;
  opacity: 1;
}
section.menus .menu-categories-container .menu-categories .splide__arrow:focus-visible {
  outline: none;
}
@media (min-width: 1200px) {
  section.menus .menu-categories-container .menu-categories .splide__arrow {
    height: 40px;
    width: 40px;
  }
}
section.menus .menu-categories-container .menu-categories .splide__arrow svg {
  fill: #f5e400;
}
section.menus .menu-categories-container .menu-categories .splide__arrow:hover {
  background-color: #f5e400;
}
section.menus .menu-categories-container .menu-categories .splide__arrow:hover svg {
  fill: #582414;
}
section.menus .menu-categories-container .menu-categories .splide__arrow--prev {
  left: -2rem;
}
@media (min-width: 1200px) {
  section.menus .menu-categories-container .menu-categories .splide__arrow--prev {
    left: -4rem;
  }
}
section.menus .menu-categories-container .menu-categories .splide__arrow--next {
  right: -2rem;
}
@media (min-width: 1200px) {
  section.menus .menu-categories-container .menu-categories .splide__arrow--next {
    right: -4rem;
  }
}
section.menus .menu-categories-container .menu-categories .splide__track {
  border-radius: 4px;
}
section.menus .menu-categories-container .menu-categories .splide__track .splide__list .splide__slide {
  padding: 20px 0;
}
section.menus .menu-categories-container .menu-categories .splide__track .splide__list .splide__slide .menu-item {
  display: flex;
  justify-content: center;
  position: relative;
  color: unset;
  text-decoration: none;
}
section.menus .menu-categories-container .menu-categories .splide__track .splide__list .splide__slide .menu-item::before {
  content: none;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 10px;
  background-color: #f5e400;
}
section.menus .menu-categories-container .menu-categories .splide__track .splide__list .splide__slide .menu-item.active::before {
  content: "";
}
section.menus .menu-categories-container .menu-categories .splide__track .splide__list .splide__slide .menu-item.active .item-img {
  border: 8px solid #f5e400;
}
section.menus .menu-categories-container .menu-categories .splide__track .splide__list .splide__slide .menu-item .item-img {
  border: 8px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #582414;
}
section.menus .menu-categories-container .menu-categories .splide__track .splide__list .splide__slide .menu-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.menus .menu-categories-container .menu-categories .splide__track .splide__list .splide__slide .menu-item .menu-title {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
  height: 42px;
  max-width: 200px;
}
section.menus .category-dropdown {
  display: block;
  border: 1px solid #693625;
  border-bottom: unset;
}
@media (min-width: 992px) {
  section.menus .category-dropdown {
    display: none;
  }
}
section.menus .category-dropdown .category-dropdown-top {
  font-size: 20px;
  border-bottom: 1px solid #693625;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.menus .category-dropdown .category-dropdown-top .left {
  display: flex;
  align-items: center;
}
section.menus .category-dropdown .category-dropdown-top .left .img-holder {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
section.menus .category-dropdown .category-dropdown-top .left .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.menus .category-dropdown .category-dropdown-top .left p {
  margin-bottom: 0;
  margin-left: 20px;
}
section.menus .category-dropdown .category-dropdown-menu {
  display: none;
}
section.menus .category-dropdown .category-dropdown-menu a {
  text-decoration: none;
  color: #582414;
}
section.menus .category-dropdown .category-dropdown-menu .category-mb {
  list-style: none;
  padding: 20px;
  border-bottom: 1px solid #693625;
}
section.menus .category-dropdown .category-dropdown-menu.active {
  display: block;
}
section.menus .category-dropdown .category-dropdown-menu.active .category-dropdown-menu {
  display: block;
}
section.menus .category-dropdown .category-dropdown-menu.active .category-dropdown-top .dropdown-icon {
  transform: rotate(180deg);
}
section.products {
  padding-top: 0px;
}
section.products .nav {
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(88, 36, 20, 0.2901960784);
}
section.products .nav li button {
  border: 0;
  padding: 8px;
  font-size: 16px;
  color: #582414;
}
@media (min-width: 576px) {
  section.products .nav li button {
    padding: 10px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  section.products .nav li button {
    padding: 20px;
    font-size: 20px;
  }
}
section.products .nav li button.active {
  background-color: #582414;
  color: #f5e400;
}
section.products .nav li button:hover {
  border: 0;
}
section.products .product-card {
  cursor: pointer;
  pointer-events: all;
  position: relative;
  overflow: hidden;
  animation: up-down 1s;
  border-radius: 10px;
}
section.products .product-card:hover .product-info .product-info-wrapper {
  top: -25%;
}
section.products .product-card .product-img {
  margin-bottom: 0;
}
section.products .product-card .product-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
section.products .product-card .product-info {
  background-color: #582414;
  transition: 0.4s;
  position: relative;
  height: 160px;
}
section.products .product-card .product-info .product-info-wrapper {
  background-color: #582414;
  position: absolute;
  width: 100%;
  top: 15%;
  left: 0;
  transition: 0.4s;
}
section.products .product-card .product-info .product-info-wrapper .top {
  padding: 20px 20px;
  padding-top: 0;
}
section.products .product-card .product-info .product-info-wrapper .top h4 {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 20px;
  height: 70px;
  margin-bottom: 5px;
  font-family: "Suez One", serif;
  font-weight: 500;
  margin-top: 0px;
  transition: 0.4s;
  text-transform: capitalize;
}
@media (min-width: 576px) {
  section.products .product-card .product-info .product-info-wrapper .top h4 {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  section.products .product-card .product-info .product-info-wrapper .top h4 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  section.products .product-card .product-info .product-info-wrapper .top h4 {
    font-size: 24px;
  }
}
section.products .product-card .product-info .product-info-wrapper .top .card-descp {
  display: flex;
  align-items: center;
  margin-top: 0;
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  height: 42px;
}
@media (min-width: 576px) {
  section.products .product-card .product-info .product-info-wrapper .top .card-descp {
    font-size: 16px;
  }
}
section.products .product-card .product-info .product-info-wrapper .card-bottom {
  display: flex;
  border-top: 1px solid #693625;
  background-color: #582414;
}
section.products .product-card .product-info .product-info-wrapper .card-bottom .size {
  flex: 1;
  padding: 8px 5px;
}
section.products .product-card .product-info .product-info-wrapper .card-bottom .size:nth-child(1) {
  border-right: 1px solid #693625;
}
section.products .product-card .product-info .product-info-wrapper .card-bottom .size:nth-child(2) {
  border-right: 1px solid #693625;
}
section.products .product-card .product-info .product-info-wrapper .card-bottom .size p {
  color: #f5e400;
  margin-bottom: 1px;
  text-align: center;
}
section.products .product-card .product-info .product-info-wrapper .card-bottom .size span {
  color: #fff;
  text-align: center;
}
.btn-cls {
  transition: 0.4s;
  text-decoration: none;
  border: 2px solid #582414;
}
.btn-cls:hover {
  background-color: #f5e400 !important;
  border: 2px solid #582414;
  color: #582414 !important;
  font-weight: 500;
}
.btn-cls-invert {
  border: 2px solid #f5e400;
  text-decoration: none;
  cursor: pointer !important;
  pointer-events: all;
  transition: 0.4s;
}
.btn-cls-invert:hover {
  background-color: #582414 !important;
  color: #f5e400 !important;
}
.custom-btn {
  padding: 10px 28px;
  font-size: 16px;
  background-color: #f5e400;
  color: #401408;
  display: inline-block;
  transition: 0.4s;
  border-radius: 30px;
  text-decoration: none;
}
@media (min-width: 576px) {
  .custom-btn {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .custom-btn {
    padding: 14px 50px;
    font-size: 20px;
  }
}
.custom-btn:hover {
  background-color: #582414;
  color: #f5e400;
}
section.about-us-top figure {
  display: flex;
  margin-bottom: 0;
  width: 100%;
  height: 350px;
}
@media (min-width: 576px) {
  section.about-us-top figure {
    width: 80%;
  }
}
section.about-us-top figure img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
section.about-us-top .pressmans-tale .heading {
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
section.our-team {
  background-image: url("../images/homepage/about-us/about-bg.jpg");
}
@media (min-width: 992px) {
  section.our-team {
    padding-top: 150px;
  }
}
section.our-team .outer {
  position: relative;
  display: flex;
  justify-content: center;
}
section.our-team .outer:hover .founder-fig::before {
  transform: translateY(0);
}
section.our-team .outer:hover .founder-info {
  background-color: #582414;
}
section.our-team .outer:hover .founder-info h5 {
  color: #fff;
}
section.our-team .outer:hover .founder-info p {
  color: #fff;
}
section.our-team .outer .founder-fig {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
section.our-team .outer .founder-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
section.our-team .outer .founder-fig::before {
  border-radius: 10px;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  transition: 0.4s;
  transform: translateY(100%);
  background: rgb(25, 15, 46);
  background: linear-gradient(180deg, rgba(25, 15, 46, 0) 0%, rgba(25, 15, 46, 0.2752451322) 0%);
}
section.our-team .outer .founder-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f5e400;
  bottom: -40px;
  border-radius: 10px;
  width: 80%;
  padding: 20px;
  transition: 0.4s;
}
section.our-team .outer .founder-info h5 {
  margin-bottom: 0px;
  transition: 0.4s;
  font-size: 16px;
  font-weight: 600;
  color: #582414;
}
@media (min-width: 576px) {
  section.our-team .outer .founder-info h5 {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  section.our-team .outer .founder-info h5 {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  section.our-team .outer .founder-info h5 {
    font-size: 22px;
  }
}
section.our-team .outer .founder-info p {
  transition: 0.4s;
  color: #582414;
  margin-bottom: 0;
}
section.our-team .team-info {
  font-size: 16px;
  color: #3a3a3a;
  padding: 20px;
  padding-top: 50px;
}
section.mission-vision-sec .mission-card {
  display: flex;
  align-items: flex-start;
}
section.mission-vision-sec .mission-card figure {
  margin-right: 20px;
  border: 1px solid #582414;
  border-radius: 10px;
  padding: 10px;
  width: 300px;
}
@media (min-width: 768px) {
  section.mission-vision-sec .mission-card figure {
    margin-right: 40px;
  }
}
@media (min-width: 376px) {
  section.mission-vision-sec .mission-card figure {
    min-width: 132px;
  }
}
section.mission-vision-sec .mission-card figure img {
  width: 100%;
  height: 100%;
}
section.mission-vision-sec .mission-card .card-content h5 {
  font-size: 22px;
  font-weight: 600;
  color: #582414;
}
@media (min-width: 576px) {
  section.mission-vision-sec .mission-card .card-content h5 {
    font-size: 25px;
  }
}
section.mission-vision-sec .mission-card .card-content p {
  font-size: 15px;
  color: #828282;
}
@media (min-width: 576px) {
  section.mission-vision-sec .mission-card .card-content p {
    font-size: 16px;
  }
}
section.about-us-video {
  position: relative;
  height: 600px;
}
section.about-us-video.about-video-wrap {
  height: 300px;
  border-radius: 5%;
}
section.about-us-video.about-video-wrap .about-video {
  border-radius: 2%;
}
section.about-us-video.about-video-wrap::after {
  border-radius: 2%;
}
@media (min-width: 576px) {
  section.about-us-video.about-video-wrap {
    height: 500px;
  }
}
@media (min-width: 992px) {
  section.about-us-video.about-video-wrap {
    height: 700px;
  }
}
section.about-us-video .about-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
section.about-us-video::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.266);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.about-us-video .video-info {
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  section.about-us-video .video-info {
    padding-top: 100px;
  }
}
section.about-us-video .video-info .play-btn {
  margin-bottom: 25px;
  background-color: #f5e400;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.about-us-video .video-info .play-btn svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
section.about-us-video .video-info .video-title {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 576px) {
  section.about-us-video .video-info .video-title {
    font-size: 40px;
  }
}
section.about-us-video .video-info .video-excerpt {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
section.about-us-video .video-info .custom-btn {
  border: none;
}
.about-us-video {
  position: relative;
  height: 600px;
}
.about-us-video.about-video-wrap {
  height: 300px;
  border-radius: 5%;
}
.about-us-video.about-video-wrap .about-video {
  border-radius: 2%;
}
.about-us-video.about-video-wrap::after {
  border-radius: 2%;
}
@media (min-width: 576px) {
  .about-us-video.about-video-wrap {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .about-us-video.about-video-wrap {
    height: 700px;
  }
}
.about-us-video .about-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.about-us-video::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.266);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-us-video .video-info {
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-us-video .video-info .play-btn {
  margin-bottom: 25px;
  background-color: #f5e400;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us-video .video-info .play-btn svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.about-us-video .video-info .video-title {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 576px) {
  .about-us-video .video-info .video-title {
    font-size: 40px;
  }
}
.about-us-video .video-info .video-excerpt {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
.about-us-video .video-info .custom-btn {
  border: none;
}
section.about-cta .about-cta-wrapper {
  padding: 30px 0px;
}
@media (min-width: 576px) {
  section.about-cta .about-cta-wrapper {
    padding: 50px 0px;
  }
}
section.about-cta .about-cta-wrapper .heading .tag {
  margin-bottom: 0px;
}
section.about-cta .cta-img img {
  width: 100%;
  height: 100%;
}
section.our-stats {
  padding: 50px 0;
}
section.our-stats.homepage {
  background-color: #F5E400;
  margin-top: -2px;
}
@media (min-width: 992px) {
  section.our-stats {
    padding: 0;
  }
}
section.our-stats .our-stats-wrapper {
  margin-bottom: 0px;
  box-shadow: 10px 10px 10px 0px rgba(73, 73, 73, 0.0392156863);
  border: 1px solid #9f7162;
  padding: 50px 70px;
  border-radius: 10px;
  position: relative;
  z-index: 20;
  background-color: #fff;
}
@media (min-width: 992px) {
  section.our-stats .our-stats-wrapper {
    margin-bottom: -100px;
  }
}
section.our-stats .our-stats-wrapper .stat {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: none;
}
section.our-stats .our-stats-wrapper .stat .stat-wrapper h3 {
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 0;
}
section.our-stats .our-stats-wrapper .stat .stat-wrapper h3 span {
  color: #582414;
}
section.our-stats .our-stats-wrapper .stat .stat-wrapper .stat-title {
  margin-top: 0;
  color: rgb(130, 130, 130);
  font-size: 20px;
}
section.our-stats .our-stats-wrapper .stat.last {
  border-right: unset;
}
@media (min-width: 992px) {
  section.our-stats .our-stats-wrapper .stat {
    border-right: 1px solid #9f7162;
  }
}
section.we-serve figure {
  width: 75%;
}
section.we-serve figure img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
}
section.we-serve ul {
  margin-left: 50px;
}
section.we-serve ul li {
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 0;
  color: #3a3a3a;
}
@media (min-width: 576px) {
  section.we-serve ul li {
    font-size: 18px;
  }
}
section.contact-us .contact-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
section.contact-us .contact-icon img {
  width: 60px;
  height: 60px;
}
section.contact-us .left .contact-title {
  color: #582414;
  text-align: center;
  font-size: 35px;
}
section.contact-us .left .number-address {
  text-align: center;
}
section.contact-us .left .number-address a {
  text-decoration: none;
  color: #000;
}
section.contact-us .left .number-address .number {
  margin: 15px 0px;
  font-size: 18px;
}
section.contact-us .middle {
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  padding: 50px 30px;
  margin-top: 0px;
}
@media (min-width: 992px) {
  section.contact-us .middle {
    margin-top: -120px;
  }
}
section.contact-us .middle .form-title {
  font-size: 30px;
  color: #582414;
  margin-bottom: 30px;
}
section.contact-us .middle .contact-form .input-wrapper {
  margin-bottom: 30px;
}
section.contact-us .middle .contact-form .input-wrapper .input-control {
  width: 100%;
  height: 50px;
  border: 1px solid rgb(184, 184, 184);
  padding-left: 20px;
  border-radius: 3px;
}
section.contact-us .middle .contact-form .input-wrapper .input-control:focus {
  outline: none;
}
section.contact-us .middle .contact-form .input-wrapper textarea {
  padding-top: 20px;
  height: 100px !important;
}
section.contact-us .middle .contact-form .input-wrapper textarea {
  height: 100px;
}
section.contact-us .middle .contact-form .custom-btn {
  background-color: #582414;
  color: #fff;
  border: none;
}
section.contact-us .middle .contact-top {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
}
section.contact-us .middle .contact-top img {
  width: 100%;
}
section.contact-us .middle .contact-bottom {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
}
section.contact-us .middle .contact-bottom img {
  transform: rotate(180deg);
  width: 100%;
}
section.contact-us .right .time-title {
  color: #582414;
  text-align: center;
  font-size: 35px;
}
section.contact-us .right .social-links {
  margin-top: 15px;
  display: flex;
  list-style: none;
  padding-left: 0;
}
section.contact-us .right .social-links .social-link {
  width: 40px;
  height: 40px;
  background-color: #582414;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 20px;
}
section.contact-us .right .social-links .social-link:last-child {
  margin-right: 0;
}
section.contact-us .right .social-links .social-link a {
  display: flex;
  align-items: center;
}
section.contact-us .right .social-links .social-link a svg {
  color: #fff;
  width: 20px;
  height: 20px;
}
section.careers-sec .middle {
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  padding: 50px 30px;
  margin-top: 0px;
}
@media (min-width: 992px) {
  section.careers-sec .middle {
    margin-top: -120px;
  }
}
section.careers-sec .middle .form-title {
  font-size: 30px;
  color: #582414;
  margin-bottom: 30px;
}
section.careers-sec .middle .contact-form .input-wrapper {
  padding: 7px 0;
}
section.careers-sec .middle .contact-form .input-wrapper input[type=file]::file-selector-button {
  border-radius: 50px;
  background-color: #582414;
  color: #fff;
  margin-top: -5px;
  font-weight: 400;
  padding: 5px 10px;
  transition: 1s;
}
section.careers-sec .middle .contact-form .input-wrapper input::file-selector-button {
  font-weight: bold;
  color: #582414;
  padding: 0.5em;
  border: thin solid grey;
  border-radius: 3px;
}
section.careers-sec .middle .contact-form .input-wrapper input[type=file]::file-selector-button:hover {
  background-color: #582414;
}
section.careers-sec .middle .contact-form .input-wrapper label {
  margin-top: 10px;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(59, 20, 10, 0.6862745098);
}
section.careers-sec .middle .contact-form .input-wrapper label span {
  color: #FF0120;
}
section.careers-sec .middle .contact-form .input-wrapper .input-control {
  width: 100%;
  height: 50px;
  border: 1px solid rgb(184, 184, 184);
  padding: 10px;
  border-radius: 3px;
}
section.careers-sec .middle .contact-form .input-wrapper .input-control:focus {
  outline: none;
}
section.careers-sec .middle .contact-form .input-wrapper .input-control::placeholder {
  font-size: 14px;
}
section.careers-sec .middle .contact-form .input-wrapper input#file-upload-button {
  background-color: transparent;
}
section.careers-sec .middle .contact-form .custom-btn {
  margin-top: 40px;
  background-color: #582414;
  color: #fff;
  border: none;
}
section.careers-sec .middle .contact-top {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
}
section.careers-sec .middle .contact-top img {
  width: 100%;
}
section.careers-sec .middle .contact-bottom {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
}
section.careers-sec .middle .contact-bottom img {
  transform: rotate(180deg);
  width: 100%;
}
.fancybox__container .fancybox__carousel .fancybox__viewport .fancybox__track .fancybox__slide .fancybox__caption {
  padding-top: 50px;
}
section.media-sec a figure {
  margin: 10px;
  border: 1px solid rgba(88, 36, 20, 0.3490196078);
  width: 100%;
  height: 300px;
}
section.media-sec a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-backdrop {
  background-color: #582414 !important;
  opacity: 0.9 !important;
}
.modal-dialog {
  max-width: 900px;
}
@media (min-width: 1200px) {
  .modal-dialog {
    max-width: 1100px;
  }
}
.modal-dialog.form-modal {
  max-width: 600px;
}
@media (min-width: 1200px) {
  .modal-dialog.form-modal {
    max-width: 800px;
  }
}
.modal-dialog .modal-content {
  position: relative;
}
.modal-dialog .modal-content .close-btn-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  border: 0;
  background: transparent;
  font-size: 20px;
  color: #582414;
}
.modal-dialog .modal-content .product-description .product-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
@media (min-width: 576px) {
  .modal-dialog .modal-content .product-description .product-info {
    padding: 40px;
  }
}
.modal-dialog .modal-content .product-description .product-info h2 {
  font-family: "Suez One", serif;
  color: #582414;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 500;
}
@media (min-width: 576px) {
  .modal-dialog .modal-content .product-description .product-info h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .modal-dialog .modal-content .product-description .product-info h2 {
    font-size: 35px;
  }
}
.modal-dialog .modal-content .product-description .product-info p {
  color: #290d06;
  margin-bottom: 20px;
  font-size: 15px;
}
@media (min-width: 576px) {
  .modal-dialog .modal-content .product-description .product-info p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .modal-dialog .modal-content .product-description .product-info p {
    font-size: 18px;
  }
}
.modal-dialog .modal-content .product-description .product-info .custom-btn {
  margin-top: 20px;
  padding: 12px;
  font-size: 16px;
  border: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .modal-dialog .modal-content .product-description .product-info .custom-btn {
    margin-top: 30px;
  }
}
.modal-dialog .modal-content .product-description .card-bottom-2 {
  display: flex;
  text-align: start;
  border: 1px solid #693625;
  border-right: 0;
}
.modal-dialog .modal-content .product-description .card-bottom-2 .size {
  border-right: 1px solid #693625;
  flex: 1;
  padding: 8px 5px;
}
.modal-dialog .modal-content .product-description .card-bottom-2 .size p {
  font-weight: 400;
  color: #582414;
  margin-bottom: 1px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.modal-dialog .modal-content .product-description .card-bottom-2 .size span {
  font-weight: 500;
  color: #000;
  text-align: center;
  font-size: 18px;
}
.modal-dialog .modal-content .product-description figure {
  width: 100%;
  height: 100%;
}
.modal-dialog .modal-content .product-description figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.customer-sec figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 30px;
  width: 300px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
}
section.customer-sec figure.alpen {
  padding: 10px;
}
section.customer-sec figure.aes img {
  height: 74%;
}
section.customer-sec figure.empire img {
  justify-self: center;
  width: 70%;
}
@media (min-width: 576px) {
  section.customer-sec figure {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  section.customer-sec figure {
    width: 80%;
  }
}
section.customer-sec figure img {
  width: 100%;
  height: 100%;
  object-position: contain;
  object-fit: cover;
  transition: 0.4s;
}
section.customer-sec figure:hover {
  border: 1px solid #f5e400;
}
section.customer-sec figure:hover img {
  transform: scale(1.05);
}
section.location-sec {
  overflow: hidden;
}
section.location-sec .search-bar {
  border: 1px solid rgba(88, 36, 20, 0.4705882353);
  border-radius: 50px;
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
}
section.location-sec .search-bar .location-icon svg {
  width: 30px;
  height: 30px;
  color: #582414;
}
section.location-sec .search-bar .location-countries-wrap {
  display: flex;
  align-items: center;
}
section.location-sec .search-bar .location-countries-wrap p {
  cursor: pointer;
  transition: 0.4s;
  color: #582414;
  background-color: rgba(245, 228, 0, 0.4117647059);
  border: 1px solid #f5e400;
  margin-left: 15px;
  border-radius: 50px;
  padding: 5px 20px;
  padding-top: 7px;
  margin-bottom: 0;
  font-weight: 500;
}
section.location-sec .search-bar .location-countries-wrap p.active {
  color: #f5e400;
  background-color: #582414;
  border: 1px solid #582414;
}
section.location-sec .search-bar .location-countries-wrap p:hover {
  color: #f5e400;
  background-color: #582414;
  border: 1px solid #582414;
}
section.location-sec .uae-country.hide-loc {
  transform: translateY(100%);
  display: none;
}
section.location-sec .no-data {
  transform: translatex(100%);
  text-align: center;
  font-size: 22px;
  margin-bottom: 0;
  color: #582414;
  padding: 50px;
  width: 100%;
  transition: 0.2s;
  display: none;
}
section.location-sec .no-data.open {
  display: block;
  transform: translateX(0);
}
section.location-sec .location-card {
  transition: 0.4s;
  height: 100%;
  border-radius: 10px;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 2px dashed #582414;
}
section.location-sec .location-card:hover {
  border: 2px dashed #ffdb00;
}
@media (min-width: 576px) {
  section.location-sec .location-card {
    padding: 30px;
  }
}
section.location-sec .location-card h5 {
  font-size: 18px;
  color: #582414;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  section.location-sec .location-card h5 {
    font-size: 22px;
  }
}
section.location-sec .location-card h6 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  section.location-sec .location-card h6 {
    font-size: 18px;
  }
}
section.location-sec .location-card .contact-location {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
section.location-sec .location-card .contact-location svg {
  font-size: 16px;
  color: #582414;
  margin-right: 5px;
}
@media (min-width: 576px) {
  section.location-sec .location-card .contact-location svg {
    font-size: 18px;
  }
}
section.location-sec .location-card .contact-location a {
  font-size: 16px;
  text-decoration: none;
  color: #231F20;
}
@media (min-width: 576px) {
  section.location-sec .location-card .contact-location a {
    font-size: 18px;
  }
}
section.location-sec .location-card .contact-location a:hover {
  color: #582414;
}
section.location-sec .location-card .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.location-sec .location-card .card-bottom .links {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  section.location-sec .location-card .card-bottom .links {
    flex-direction: row;
  }
}
section.location-sec .location-card .card-bottom .links .custom-btn {
  border: 0;
  background-color: #582414;
  font-size: 14px;
  padding: 8px 15px;
  color: #f5e400;
  margin-right: 10px;
}
@media (min-width: 576px) {
  section.location-sec .location-card .card-bottom .links .custom-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}
section.location-sec .location-card .card-bottom .links .custom-btn:hover {
  background-color: #f5e400;
  color: #582414;
}
section.location-sec .location-card .card-bottom .links a {
  overflow: hidden;
  position: relative;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}
section.location-sec .location-card .card-bottom .links a::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #582414;
  bottom: 5px;
  left: 0;
  transform: translateX(-100%);
  transition: 0.4s;
}
section.location-sec .location-card .card-bottom .links a:hover {
  color: #582414;
}
section.location-sec .location-card .card-bottom .links a:hover::before {
  transform: translateX(0);
}
section.location-sec .location-card .card-bottom figure {
  position: absolute;
  height: 85px;
  width: 85px;
  bottom: 20px;
  right: 20px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  section.location-sec .location-card .card-bottom figure {
    bottom: 30px;
    right: 30px;
  }
}
section.location-sec .location-card .card-bottom figure img {
  width: 100%;
  height: 100%;
}
section.franchising-sec figure {
  width: 100%;
}
@media (min-width: 768px) {
  section.franchising-sec figure {
    width: 70%;
  }
}
section.franchising-sec figure img {
  border-radius: 5%;
  width: 100%;
  height: 100%;
}
section.franchising-sec ul {
  padding-left: 0;
  list-style: none;
}
section.franchising-sec ul li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
}
section.franchising-sec ul li svg {
  font-size: 25px;
  padding: 10px;
  color: #582414;
}
section.franchising-sec ul li p {
  margin-bottom: 0;
  color: rgb(130, 130, 130);
}
section.partnership-form .contact-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
section.partnership-form .contact-icon img {
  width: 60px;
  height: 60px;
}
section.partnership-form .middle {
  z-index: 50;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  padding: 50px 30px;
  margin-top: 0px;
}
@media (min-width: 992px) {
  section.partnership-form .middle {
    margin-top: -120px;
  }
}
section.partnership-form .middle .form-title {
  font-size: 30px;
  color: #582414;
}
section.partnership-form .middle .form-title-2 {
  font-size: 16px;
  color: #582414;
  margin-bottom: 30px;
}
section.partnership-form .middle .contact-form .input-wrapper {
  margin-bottom: 30px;
}
section.partnership-form .middle .contact-form .input-wrapper .input-control {
  width: 100%;
  height: 50px;
  border: 1px solid rgb(184, 184, 184);
  padding-left: 20px;
  border-radius: 3px;
}
section.partnership-form .middle .contact-form .input-wrapper .input-control:focus {
  outline: none;
}
section.partnership-form .middle .contact-form .input-wrapper textarea {
  padding-top: 20px;
  height: 100px !important;
}
section.partnership-form .middle .contact-form .input-wrapper textarea {
  height: 100px;
}
section.partnership-form .middle .contact-form .custom-btn {
  background-color: #582414;
  color: #fff;
  border: none;
}
section.partnership-form .middle .contact-form .custom-btn:hover {
  background-color: #f5e400;
  color: #582414;
}
section.partnership-form .middle .contact-top {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
}
section.partnership-form .middle .contact-top img {
  width: 100%;
}
section.partnership-form .middle .contact-bottom {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
}
section.partnership-form .middle .contact-bottom img {
  transform: rotate(180deg);
  width: 100%;
}
section.agreement-sec figure {
  width: 100%;
}
@media (min-width: 768px) {
  section.agreement-sec figure {
    width: 80%;
  }
}
section.agreement-sec figure img {
  border-radius: 5%;
  width: 100%;
  height: 100%;
}
section.agreement-sec h2 {
  margin-bottom: 10px;
}
section.agreement-sec p {
  margin-bottom: 0;
  color: rgb(130, 130, 130);
}
section.agreement-sec .custom-btn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #582414;
  color: #fff;
}
section.agreement-sec .custom-btn:hover {
  background-color: #f5e400;
  color: #582414;
}
.session-alert {
  position: relative;
}
.session-alert button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 0;
  outline: 0;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thank-you-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.thank-you-modal figure {
  width: 150px;
  height: 150px;
}
.thank-you-modal figure img {
  width: 100%;
  height: 100%;
}
.thank-you-modal h2 {
  margin-left: 30px;
  font-size: 28px;
  color: #582414;
}
.submit-modal .close-btn-modalForm {
  position: absolute;
  top: 10px;
  right: 15px;
  border: 0;
  background: transparent;
  font-size: 20px;
  color: #582414;
  z-index: 50;
  background-color: transparent;
}
.submit-modal .form-modal-wrap {
  opacity: 1 !important;
  padding: 40px;
  background-color: #fff;
  position: relative;
}
.submit-modal .form-modal-wrap figure {
  width: 100%;
}
@media (min-width: 992px) {
  .submit-modal .form-modal-wrap figure {
    width: 80%;
  }
}
.submit-modal .form-modal-wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.submit-modal .form-modal-wrap h1 {
  font-weight: 500;
  padding-bottom: 15px;
  font-size: 28px;
  color: #582414;
}
@media (min-width: 376px) {
  .submit-modal .form-modal-wrap h1 {
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  .submit-modal .form-modal-wrap h1 {
    padding-bottom: 20px;
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .submit-modal .form-modal-wrap h1 {
    font-size: 42px;
  }
}
.submit-modal .form-modal-wrap h1 span {
  color: #FD5554;
}
.submit-modal .form-modal-wrap p {
  font-size: 15px;
  padding-bottom: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #494251;
  color: #828282;
}
@media (min-width: 376px) {
  .submit-modal .form-modal-wrap p {
    padding-bottom: 20px;
  }
}
@media (min-width: 576px) {
  .submit-modal .form-modal-wrap p {
    padding-bottom: 20px;
    font-size: 18px;
  }
}
#myTabContent .fade:not(.show) {
  display: none;
  opacity: 0;
}
.no-product {
  padding: 120px 0;
  color: #582414;
  text-align: center;
}
.terms-section .condition-wrap {
  padding-bottom: 30px;
}
.terms-section .condition-wrap h4 {
  font-family: "Suez One", serif;
  font-weight: 500;
  color: #582414;
  font-size: 24px;
}
@media (min-width: 576px) {
  .terms-section .condition-wrap h4 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .terms-section .condition-wrap h4 {
    font-size: 30px;
  }
}
.terms-section .condition-wrap p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
  color: #828282;
}
@media (min-width: 576px) {
  .terms-section .condition-wrap p {
    font-size: 18px;
  }
}
.terms-section .condition-wrap a {
  color: #828282;
}
.terms-section .condition-wrap a:hover {
  color: #582414;
}
.policy-section .condition-wrap {
  padding-bottom: 30px;
}
.policy-section .condition-wrap h4 {
  font-family: "Suez One", serif;
  font-weight: 500;
  color: #582414;
  font-size: 24px;
}
@media (min-width: 576px) {
  .policy-section .condition-wrap h4 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .policy-section .condition-wrap h4 {
    font-size: 30px;
  }
}
.policy-section .condition-wrap p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
  color: #828282;
}
@media (min-width: 576px) {
  .policy-section .condition-wrap p {
    font-size: 18px;
  }
}
.policy-section .condition-wrap a {
  color: #828282;
}
.policy-section .condition-wrap a:hover {
  color: #582414;
}
.terms-links a {
  display: inline-block;
  padding: 0 8px;
  border-left: 1px solid #f5e400;
  color: #fff;
}
@media (min-width: 992px) {
  .terms-links a {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .terms-links a {
    font-size: 16px;
  }
}