/* <-----poppins font-----> */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* <-----poppins font-----> */
/* <-----Roboto font-----> */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* <-----Roboto font-----> */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}

@font-face {
  font-family: "Futura PT";
  src: url("../font/FuturaPT-ExtraBold.eot");
  src: url("../font/FuturaPT-ExtraBold.eot?#iefix") format("embedded-opentype"),
    url("../font/FuturaPT-ExtraBold.woff2") format("woff2"),
    url("../font/FuturaPT-ExtraBold.woff") format("woff"),
    url("../font/FuturaPT-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../font/FuturaPT-Medium.eot");
  src: url("../font/FuturaPT-Medium.eot?#iefix") format("embedded-opentype"),
    url("../font/FuturaPT-Medium.woff2") format("woff2"),
    url("../font/FuturaPT-Medium.woff") format("woff"),
    url("../font/FuturaPT-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("../font/FuturaPT-Light.eot");
  src: url("../font/FuturaPT-Light.eot?#iefix") format("embedded-opentype"),
    url("../font/FuturaPT-Light.woff2") format("woff2"),
    url("../font/FuturaPT-Light.woff") format("woff"),
    url("../font/FuturaPT-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/********HAMBURGER ICON***********/
header {
  background: #faf9f2;
}
header .logo img {
  width: 215px;
}
.hamburger {
  padding: 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #F4A261; /*#373645;*/
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.logo a {
  font-weight: 900;
  text-decoration: none;
  color: #373645;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
}
/********HAMBURGER ICON***********/
#pull {
  display: none;
}
.cover-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#menu-bg {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-bottom: 0;
}
.nav > ul > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: auto;
  /* margin: 0px 30px 0px 0px; */
}
.nav > ul > li:last-child,
.nav > ul > li:only-child {
  margin: 0;
}

.nav > ul > li:hover::before,
.nav > ul > li.current-menu-item::before,
.nav > ul > li.current-menu-parent::before,
.nav > ul > li.current-menu-ancestor::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
.nav > ul > li > a {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  padding: 25px 22px;
/*   color: #373645; */
  color: #373645;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 25px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.nav > ul > li:hover > a,
.nav > ul > li.current-menu-item > a,
.nav > ul > li.current-menu-parent > a,
.nav > ul > li.current-menu-ancestor > a {
  color: #dd6b2a;
}
.nav > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  width: 300px;
  height: auto;
  padding: 0px 0px 0px 0px;
  background: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.nav > ul > li:last-child > ul,
.nav > ul > li:nth-last-child(2) > ul {
  left: auto;
  right: 0;
}
.nav > ul > li:hover > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.nav > ul > li > ul > li,
.nav > ul > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
}
.nav > ul > li > ul > li > a,
.nav > ul > li > ul > li > ul > li > a {
  display: block;
  width: auto;
  height: auto;
  padding: 2px 15px 1px 15px;
  background: rgba(11, 30, 48, 0.8);
  border-top: 1px #485665 solid;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  line-height: 18px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.nav > ul > li:hover > ul > li > a,
.nav > ul > li:hover > ul > li > ul > li > a {
  padding: 9px 15px 10px 15px;
}
.nav > ul > li > ul > li:hover > a,
.nav > ul > li > ul > li.current-menu-item > a,
.nav > ul > li > ul > li.current-menu-parent > a,
.nav > ul > li > ul > li > ul > li:hover > a,
.nav > ul > li > ul > li > ul > li.current-menu-item > a,
.nav > ul > li > ul > li > ul > li.current-menu-parent > a {
  background: #199adb;
}
.nav > ul > li > ul > li > ul {
  position: absolute;
  top: 10%;
  left: 100%;
  z-index: 9999;
  width: 240px;
  height: auto;
  background: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.nav > ul > li:last-child > ul > li > ul,
.nav > ul > li:nth-last-child(2) > ul > li > ul {
  left: auto;
  right: 100%;
}
.nav > ul > li > ul > li:hover > ul {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.middle-conter {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.nav > ul > li > a.faceb {
  padding: 0;
}
.nav > ul > li > a.insta {
  padding: 0 0 0 10px;
}
.nav > ul.menu > li:last-child a {
/*   padding-left: 0; */
  padding-right: 0;
}
/********NAV BAR*****************/

/********Banner-Start*****************/
.banner {
  background: #faf9f2;
  padding: 70px 0;
}
.banner .banner-content h1 {
  /* font-family: "Roboto", sans-serif; */
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #373645;
  max-width: 400px;
  width: 100%;
  line-height: 96px;
  margin-bottom: 35px;
}

a.ani-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #dd6b2a 0% 0% no-repeat padding-box;
  border-radius: 10px;
  /* font-family: "Roboto", sans-serif; */
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: none;
  width: auto;
  text-decoration: none;
}

a.ani-btn:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #373645;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

a.ani-btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

a.ani-btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 10px 30px;
  /* font-family: "Roboto", sans-serif; */
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}

a.ani-btn:hover span {
  color: #fff;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/********Banner-End*****************/

/******** Book-Now*****************/
.book-now-sec {
  padding: 70px 0;
}

section.book-now-sec .row {
  justify-content: center;
}

section.om-sudiosec {
  padding: 60px 0;
}

.book__now__content {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.book__now__content h3 {
  line-height: 27px;
  font-weight: 900;
  /* font-family: "Roboto", sans-serif; */
  letter-spacing: 0px;
  color: #1f303f;
  font-size: 34px;
  font-weight: 900;
  color: #1f303f;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.book__now__content p {
  text-align: center;
  /* font-family: "Roboto", sans-serif; */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 18px;
  max-width: 854px;
  width: 100%;
}

.book__now__content h5 {
  font-size: 24px;
  color: #ecac45;
  padding: 7px 0 12px;
  font-weight: 600;
}

.sec__title h3 {
  color: #1f303f;
  font-size: 34px;
  line-height: 27px;
  font-weight: 900;
}

.food-studio-sec h2 {
  /* font-family: "Roboto", sans-serif; */
  text-align: left;
  font-size: 34px;
  font-weight: 900;
  line-height: 48px;
  letter-spacing: 0px;
  /* color: #1f303f; */
  color: #373645;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.two-col-right p {
  /* font-family: "Roboto", sans-serif; */
  text-align: left;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 25px;
}

.two-col-left {
  padding: 0 50px 0 55px;
}

.food-studio-sec {
  background: transparent;
  margin-top: 25px;
}

.food-studio-inner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
}

.food-studio-sec h2 {
  font-size: 34px;
  font-weight: 900;
}

.food-studio-inner .row:nth-child(2n + 1) .col-md-6:first-child {
  order: 2;
}

.food-studio-sec .row {
  margin-bottom: 80px;
}

.food-studio-sec .row:last-child {
  padding-bottom: 0;
}

.food-studio-inner .row:nth-child(2n + 1) .two-col-left {
  padding-right: 0;
  padding-left: 50px;
}

.food-studio-inner .row:nth-child(2n) .two-col-left {
  padding-left: 0;
}
.our-service .overlay {
  background: #faf9f2;
}
.our-service {
  padding: 0 15px;
}
.food-studio-sec .row:last-child {
  margin-bottom: 0;
}

/* -- Cases Start -- */
.cases-sec {
  padding: 25px 15px;
}

.cases-bg-img {
  position: relative;
}

.cases-bg-img img {
  width: 100%;
}

.cases-bg-img {
  position: relative;
}
.cases-bg-img::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 20%);
}

.cases-bg-content {
  position: absolute;
  top: 50%;
  left: 0;
  text-align: center;
  z-index: 1;
  transform: translateY(-50%);
  right: 0;
  padding: 0 25px;
  width: 50%;
  margin: 0 auto;
}

.cases-bg-content h5 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 46px;
}

.cases-bg-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 15px;
}
/*cases-sec*/

/* <--------- NEWSLETTER START -------->*/
.newsletter {
  background: #faf9f2;
  padding: 90px 0;
  margin: 80px 15px 0;
}
.newsletter h2 {
  /* font-family: "Roboto", sans-serif; */
  text-align: left;
  font-size: 80px;
  line-height: 96px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #373645;
  max-width: 460px;
  width: 100%;
  margin: 0;
}
.newsletter .news-l-content h5 {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-size: 30px;
  font-weight: 900;
  line-height: 48px;
  letter-spacing: 0px;
  color: #1f303f;
  text-transform: uppercase;
}
.newsletter .news-l-content p {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0px;
  color: #373645;
  margin-bottom: 25px;
}
.newsletter form input[type="email"] {
  width: 291px;
  height: 48px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #68b6ba;
  border-radius: 6px;
  padding: 0 15px;
  outline: 0;
  box-shadow: none;
}
.newsletter form input[type="email"]::placeholder {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0px;
  color: #b1cecf;
}
.newsletter form button {
  height: 48px;
  background: #00a5ae 0% 0% no-repeat padding-box;
  border-radius: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  /* font-family: "Roboto", sans-serif; */
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  border: none;
  padding: 0 20px;
}
.newsletter form {
  margin-bottom: 25px;
  display: flex;
}
.newsletter form input.subscribe-btn {
  background: #00a5ae 0% 0% no-repeat padding-box;
  border-radius: 6px;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  outline: 0;
  border: none;
  padding: 0 20px;
  margin-left: 20px;
}
.newsletter small {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0px;
  color: #373645;
}
.newsletter .content-newsletter h4 {
  /* font-family: "Roboto", sans-serif; */
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #373645;
  margin: 0;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.newsletter .content-newsletter h5 {
  /* font-family: "Roboto", sans-serif; */
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #373645;
  margin: 0;
  margin-bottom: 20px;
  line-height: 27px;
}
/*.newsletter .content-newsletter {
  padding: 0 40px;
}*/

/* <--------- NEWSLETTER END -------->*/

/* <--------- FOOTER START -------->*/
footer {
  background: #dd6b2a;
  padding-top: 60px;
  margin: 0 15px;
}
/*=-=-27-10-2023=-=-S- */
footer .footer-content h2 {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  /* font-weight: 500; */
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  font-style: normal;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 25px;
}
/*=-=-27-10-2023=-=-E- */
footer .footer-content h2.om-os {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  font-style: normal;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 10px;
}
footer .footer-content address {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0px;
  color: #ffffff;
}
footer .footer-content p {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 20px;
}
footer .footer-content a {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0px;
  color: #ffffff;
  text-decoration: none;
  display: block;
}
footer .footer-content ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  /* display: flex; */
  gap: 10px;
}
footer .copy-right {
  background: #373645;
  padding: 18px 0;
  margin-top: 40px;
}
footer .copy-right p {
  text-align: center;
  margin: 0;
  /* font-family: "Roboto", sans-serif; */
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0px;
  color: #a2b7c7;
  text-transform: capitalize;
  margin: 0;
}
/* <--------- FOOTER END -------->*/

/* <--------- INNER PAGE START -------->*/
.inner-page {
  height: 500px;
  margin: 60px 15px 0 15px;
  border-radius: 20px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* <--------- INNER PAGE END -------->*/

/* <--------- Inner Page Content Start -------->*/
.inner-page-content {
  padding: 50px 50px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 14px #0000001c;
  border-radius: 10px;
  max-width: 70%;
  margin: auto;
  margin-top: -120px;
  transition: all 0.5s ease-in-out;
}
.inner-page-content:hover {
  transform: translateY(-10px);
  box-shadow: rgb(96 153 157) 0px 5px 15px;
}
.inner-page-content .content h2 {
  text-align: center;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
  line-height: 27px;
  letter-spacing: 0px;
  color: #1f303f;
  margin-bottom: 10px;
}
.inner-page-content .content p {
  text-align: center;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #000;
}
.inner-page-content .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
}
.inner-page-content .content ul li a {
  text-decoration: none;
  border: 1px solid #00a5ae;
  border-radius: 10px;
  text-align: center;
  font-family: "Futura PT";
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0px;
  color: #00a5ae;
  text-transform: uppercase;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s;
}
.inner-page-content .content ul li a:after {
  position: absolute;
  content: "";
  background: #00a5ae;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition: all 0.5s;
}
.inner-page-content .content ul li a:first-child img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(86%) saturate(2298%)
    hue-rotate(156deg) brightness(99%) contrast(101%);
}
.inner-page-content .content ul li a:hover:first-child img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(7459%)
    hue-rotate(291deg) brightness(125%) contrast(101%);
}

.inner-page-content .content ul li a:hover {
  /* background: #00a5ae; */
  color: #fff;
}
.inner-page-content .content ul li a:hover:after {
  transform: translateX(0);
}

/* <--------- Inner Page Content End -------->*/

/* <--------- Catering-food-Section-Start -------->*/
.catering-food {
  margin: 0 15px;
  padding-top: 100px;
}
.catering-food .catering-food-left-content {
  padding: 50px 40px;
  height: 100%;
}
.catering-food .catering-food-bg {
  background: #faf9f2;
}
.catering-food .catering-food-left-content h2 {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  /* color: #1f303f; */
  color: #373645;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.catering-food .catering-food-right img {
  height: 500px;
  width: 100%;
}
.catering-food .catering-food-left-content p {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 30px;
}
.catering-food .catering-food-left-content p:last-child {
  margin: 0;
}
.catering-food .catering-food-right {
  height: 100%;
}

.catering-food .catering-food-right img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.catering-food-bg,
.catering-food-w {
  margin-bottom: 100px;
  min-height: 500px;
}
/* <--------- Catering-food-Section-End -------->*/

/* <--------- Get-offer start -------->*/
.get-offer {
  margin: 0 15px;
  background: #faf9f2;
}
.get-offer .form-content {
  padding: 60px;
}
.get-offer .form-content h3 {
  /* font-family: "Roboto", sans-serif; */
  text-align: center;
  font-weight: 900;
  font-size: 34px;
  line-height: 27px;
  letter-spacing: 0px;
  /* color: #1f303f; */
  color: #373645;
  margin-bottom: 10px;
}
.get-offer .form-content p {
  max-width: 80%;
  width: 100%;
  text-align: center;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #000;
  margin: auto;
}
.get-offer .form-content .form-label {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0px;
  color: #373645;
  text-transform: capitalize;
}
.get-offer .form-content .form-control {
  box-shadow: none;
  outline: 0;
  border-radius: 6px;
  color: #353535;
	border-color: #b9b9b9;
}
.get-offer .form-content .form-control::placeholder {
  color: #353535;
}
.get-offer .form-content .form-control:focus,
.get-offer .form-content .form-select:focus {
  border: 1px solid #68b6ba;
}
.get-offer .form-content .form-select {
  box-shadow: none;
  outline: 0;
  border-radius: 6px;
  color: #353535;
  background-image: url(../images/dropdown.svg);
	border-color: #b9b9b9;	
}
.get-offer .form-content input[type="date"].form-control {
  color: #353535;
}
.get-offer .form-content textarea {
  height: 90px;
}
.get-offer .form-content .btn {
  background: #dd6b2a 0% 0% no-repeat padding-box;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  /* font-family: "Roboto", sans-serif; */
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 30px;
  padding: 8px 20px;
}

/* <--------- Get-offer end -------->*/
.top-title {
  padding-top: 80px;
  padding-bottom: 15px;
}

.top-title h2,
.menu-right h2 {
  color: #1f303f;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 20px;
}
.top-title p {
  text-align: center;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #000;
  max-width: 80%;
  margin: 0 auto 20px;
}

.madkoncepter-inner-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s all ease-in-out;
}

.madkoncepter-inner-grid {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s all ease-in-out;
}
.madkoncepter-inner-grid:hover img {
  transform: scale(1.2);
}

.madkoncepter-inner-grid-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.madkoncepter-inner-grid-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 36px;
  margin-bottom: 22px;
  padding-bottom: 10px;
}

.madkoncepter-inner {
  padding-bottom: 70px;
  margin: 0 15px;
}

/* <------Faq-start-------> */
.faq-sec {
  padding-bottom: 80px;
}

.faq-sec .accordion-button:not(.collapsed) {
  background: #fff;
  border: 0;
  box-shadow: none;
}

.faq-sec .accordion-item {
  border: 0;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 14px #0000001c;
  margin-bottom: 25px;
}

.faq-sec .accordion-button:not(.collapsed),
.faq-sec .accordion-button {
  background: #fff;
  border: 0;
  box-shadow: none;
  color: #1f303f !important;
  font-size: 20px;
  font-weight: 500;
}

.faq-sec .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-sec .accordion-button::after {
  background-image: url("../images/accordion-arrow.svg") !important;
  background-size: 100% 100%;
  width: 40px;
  height: 40px;
}

.faq-sec .accordion-body {
  padding-top: 0;
}

.faq-sec .accordion-body p {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #6c7074;
}
.faq-content-div {
  max-width: 930px;
  margin: auto;
  padding: 0 15px;
}
.faq-sec .accordion-button:not(.collapsed),
.faq-sec .accordion-button {
  background: #fff;
  /* font-family: "Roboto", sans-serif; */
  border: 0;
  box-shadow: none;
  color: #1f303f !important;
  font-size: 20px;
  font-weight: 500;
}
button.accordion-button {
  box-shadow: none !important;
  outline: 0;
}
/* <------Faq-end-------> */

/* <------Newsletter-start-------> */
section.newsletter-sec {
  margin: 0 15px;
  background-color: #faf9f2;
  padding: 40px 20px;
}

section.newsletter-sec h4 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1f303f;
  padding-bottom: 35px;
}
.newsletter-sec .frm-wrap div {
  margin: 0 10px;
}
.newsletter-sec .frm-wrap div:first-child {
  margin-left: 0;
}
.newsletter-sec .frm-wrap div:last-child {
  margin-right: 0;
}

.newsletter-form form label {
  margin-bottom: 15px;
  color: #000;
}

.newsletter-form form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  font-size: 14px;
  border: 2px solid #00a5ae;
  background: transparent;
  appearance: none;
  cursor: pointer;
  position: relative;
  margin-top: 7px;
}
.newsletter-form form input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -2px;
  width: 7px;
  height: 8px;
  background: #faf9f2;
  opacity: 0;
}
.newsletter-form form input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 7px;
  width: 9px;
  height: 18px;
  background: transparent;
  z-index: 9;
  border-left: 2px solid #00a5ae;
  border-top: 2px solid #00a5ae;
  transform: rotate(219deg);
  opacity: 0;
}
.newsletter-form form input[type="checkbox"]:checked::before,
.newsletter-form form input[type="checkbox"]:checked::after {
  opacity: 1;
}
.inp-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.inp-wrap label.check-label {
  margin: 0;
  padding-top: 0;
  padding-left: 10px;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0px;
  color: #373645;
}
.newsletter-form form button {
  background: #00a5ae;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  text-transform: uppercase;
  line-height: 20px;
  border: 0;
  height: 100%;
  width: 100%;
  font-weight: 600;
  z-index: 1;
}
.newsletter-form form input.form-control {
  height: 45px;
}
.newsletter-form form input.form-control::placeholder {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #b1cecf;
}
.newsletter-sec .frm-wrap {
  display: flex;
}
.newsletter-sec .frm-wrap div {
  flex-basis: 30%;
}
.newsletter-sec .frm-wrap div:last-child {
  flex-basis: 10%;
}
.newsletter-sec .frm-wrap .form-control {
  box-shadow: none;
  outline: 0;
  border-radius: 6px;
}
.newsletter-sec .frm-wrap .form-control:focus {
  border: 1px solid #68b6ba;
}

/* <------Newsletter-end-------> */

/* <!------- nyheder-banner-Start--------> */
.nyheader-banner {
  height: 500px;
  width: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 15px 15px 0;
  border-radius: 10px;
  display: grid;
  align-items: center;
  justify-content: center;
}
.nyheader-banner h1 {
  text-align: center;
  /* font-family: "Roboto", sans-serif; */
  font-weight: 900;
  font-size: 46px;
  letter-spacing: 0px;
  color: #ffffff;
  margin: 0;
}
/* <!------- nyheder-banner-End--------> */

/* <!------- Om-os-Etart--------> */
.catering-food .catering-food-bg.omos-food-bg {
  background: transparent;
}
.catering-food .catering-food-left-content strong {
  text-align: left;
  /* font-family: "Roboto", sans-serif; */
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0px;
  color: #1f303f;
  text-transform: capitalize;
  display: block;
  margin-bottom: 5px;
}
.catering-food .catering-food-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
/* <!------- Om-os-End--------> */

/* 404 template */

.four-zero-four {
  width: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.four-zero-four h1 {
  font-size: 48px;
  font-weight: bold;
}
.four-zero-four p {
  font-size: 20px;
  margin-bottom: 20px;
  padding: 16px;
  text-align: center;
}

/* <<-----Thank-you----->> */
.thankyoucontent {
  background: #373645;
  height: 100%;
  margin: 10px 15px 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.thankyoucontent .wrapper-2 {
  padding: 30px;
  text-align: center;
}
.thankyoucontent h1 {
  font-family: "Raleway", Arial Black, Sans-Serif;
  font-size: 4em;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fafafa;
  margin: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}
.thankyoucontent .wrapper-2 p {
  margin: 0;
  font-size: 1.3em;
  color: #fafafa;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
}

/* <----------Custom-css --------->*/
.our-service .row:first-child .two-col-right {
  padding-left: 55px;
}
.our-service .row:last-child .two-col-right {
  padding-right: 55px;
}
.nav > ul > li > a img:hover,
footer .footer-content a img:hover {
  filter: brightness(0) saturate(100%) invert(51%) sepia(0%) saturate(2743%)
    hue-rotate(14deg) brightness(100%) contrast(82%);
  transition: all 0.5s;
}
.newsletter-form form button {
  position: relative;
  overflow: hidden;
}
.newsletter-form form button::after {
  position: absolute;
  content: "";
  background: #373645;
  width: 104%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition: all 0.5s;
}
.newsletter-form form button:hover:after {
  transform: translateX(0);
}

.get-offer .form-content .btn:hover {
  background: #373645 0% 0% no-repeat padding-box;
}
.Handelsbeting {
  padding: 80px 0;
  width: 920px;
  margin: auto;
}
.Handelsbeting h3 {
  color: #000;
}
.book__now__content h3 {
  color: #373645;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 20px; text-transform:uppercase;
}
.book__now__content h5 {
  font-size: 24px;
  color: #1f303f;
  padding: 7px 0 12px;
  font-weight: 600;
}
.book__now__content a {
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  text-transform: uppercase;
  line-height: 20px;
  border: 0;
  height: 100%;
  width: auto;
  font-weight: 600;
  z-index: 1;
  padding: 10px 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.book__now__content a::after {
  position: absolute;
  content: "";
  background: #373645;
  width: 104%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition: all 0.5s;
}
.book__now__content a:hover:after {
  transform: translateX(0);
}

.om-os-banner {
  height: 480px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 40px 12px;
}
.banner-inner h1 {
  color: #fff;
  font-size: 80px;
  line-height: 106px;
  font-weight: bold;
}

/* Madkoncepter Details Page CSS  */

.menu-left-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.menu-right {
  padding-left: 45px;
}

.menu-right h2 {
  margin-bottom: 8px;
}

.menu-right h5 {
  font-size: 20px;
  color: #1f303f;
}

.menu-right ul {
  padding: 0;
  column-count: 3;
}

.menu-right ul li {
  list-style: none;
  font-size: 16px;
  color: #1f303f;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
  line-height: 37px;
}

.menu-right ul li:before {
  content: "";
  background-image: url("../images/icon-arrow-dropright-circle.png");
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 11px;
}

.menu-inner-row {
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu-right .book-us-btn {
  padding: 10px 22px;
  margin-right: 30px;
  display: inline-block;
  text-decoration: none;
}

.menu-right .book-us-btn img {
  margin-right: 6px;
}

.menu-right .event-btn {
  margin-right: 0;
  display: inline-block;
  text-decoration: none;
}

.menu-three-col {
  padding: 55px 0 96px;
  padding-bottom: 40px;
}

.menu-col img {
  width: 100%;
  display: block;
  margin-bottom: 25px;
  height: 230px;
  object-fit: cover;
}

.menu-col h4 {
  font-size: 24px;
  color: #1f303f;
  font-weight: 700;
  margin-bottom: 12px;
}

.menu-col p {
  line-height: 26px;
  min-height: 100px;
}
.event-btn,
.book-us-btn {
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.event-btn:hover,
.book-us-btn:hover {
  color: #fff;
  opacity: 0.8;
}

.event-btn {
  background-color: #00a5ae;
  margin-right: 40px;
}

.book-us-btn {
  background-color: #373645;
}
.menu-three-col h2 {
  color: #1f303f;
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.menu-three-col .sub-title {
  text-align: center;
  font-size: 20px;
  color: #000;
  font-weight: 500;
}
.menu-col .price-tag {
  background: #00a5ae;
  padding: 14px 10px;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  text-transform: uppercase;
  line-height: 19px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
}
.single-food-btm .single-food-btm-des {
  background: #e9eef9;
  padding: 41px 0;
}

.single-food-btm {
  padding-bottom: 60px;
}

.single-food-btm h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1f303f;
  padding-bottom: 20px;
}
.single-food-btm ul li {
  padding: 10px 0;
}
.single-food-btm .book-now {
  background: #373645;
  padding: 12px 10px;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  text-transform: uppercase;
  line-height: 20px;
  margin-top: 10px;
  display: inline-block;
  text-align: center;
  width: 140px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  justify-content: center;
  text-decoration: none;
}
.single-food-btm .description {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: #1f3040;
  display: inline-block;
  text-align: left;
  padding: 1px 10px;
  line-height: 28px;
  margin: 0;
}
.single-food-btm-des .wrap {
  display: flex;
  gap: 100px;
  justify-content: center;
  margin-top: 20px;
}

/* 27-10-23 */
/* footer */
.footer-content ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 0 8px;
}
.footer-content ul li, ul#menu-information li {
  position: relative;
  padding-right: 15px;
  padding-left: 16px;
}
.footer-content ul a:last-child li {
  padding: 0;
}
.footer-content ul li:before, ul#menu-information li:before {
  position: absolute;
  content: ">";
  left: 0;
  top: 4px;
  color: #fff;
  font-size: 19px;
}
/* =-=-=-=-=- */
.footer-content strong {
  color: #fff;
  padding-left: 17px;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}
footer .footer-content ul.menu li:before {
  display: none;
}
.footer-content.ftr-end h2,
.footer-content.ftr-end p,
.footer-content.ftr-end a {
  text-align: center;
}
.footer-content.ftr-end ul {
  justify-content: center;
  margin-top: 20px !important;
}
.information-link ul {
  display: inline-block;
}
.information-link,
.footer-content.ftr-end p {
  margin-top: 65px;
}
.contact--us{
	margin-top: 80px;
}
#menu-bg :nth-last-child(2) a {
    padding: 20px 0px;
}
.trustpilot svg{
	margin-bottom:8px;
}
.trustpilot svg:hover{
	fill:#373645;
	stroke:#373645;
}
.content-foodtruck{
	padding-bottom:70px; 
}
.pricing-wrapper{
	padding: 50px 0px;
    background: #faf9f2;
}
.Price-container{
	background: #EBE9E1;
    border-radius: 20px;
}
/* =-=-=-=-=- */
/* footer */
/* 27-10-23 */



footer .footer-content a,
.footer-content ul li:before,
footer .footer-content p,
.footer-content strong,
footer .footer-content h2 {
  color: #fff !important;
}

.social-item i{font-size: 24px; color: #373645;}
.social-item i:hover{color: #dd6b2a;}
#menu-useful-links i{font-size: 24px; color: #EBE9E1;}
#menu-useful-links i:hover{color: #373645;}
.banner > .container > .row{align-items: center;}


ul#menu-information li::after {
  position: absolute;
  content: ">";
  left: 0;
  top: 4px;
  color: #fff;
  font-size: 19px;
}

ul#menu-information a {
    text-transform: capitalize;
}
.get-offer {
    margin: 0 15px;
    background: #faf9f2;
}
.content-foodtruck {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #faf9f2;
    margin: 0 15px;
}

#filter-form {
    margin: 0 auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 820px;
    width: 100%;
}
#filter-form label input {
    display: none;
}
#filter-form label {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 14px;
	font-weight:700;
	border-radius:0;
	background: #d4e4d8;
    color: #000000;
	border:none;
	cursor:pointer;
    }
    #filter-form label:has(input:checked) {
			    background: #d4e4d8;
    color: #dd6b2a;
    border: 1px solid #b0773c;
}

.cl-logo-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
	margin-bottom:40px;
}
.cl-logo-row .item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cl-logo-row img {
    width: 100%;
}
footer {
    background: #3c555a;
    padding-top: 60px;
    margin:15px !important;
}
footer .copy-right {
    background: transparent;
	border-top: 1px solid #9b9b9b;
}
footer .copy-right p {
    color: #fff;
}
footer .footer-content ul.menu {
    gap: 10px;
    flex-wrap: nowrap;
}
.cl-logo-row img {
    width: 100%;
    max-width: 150px;
    object-fit: contain;
}
@media screen and  (max-width:767px){
	.cl-logo-row {
    grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and  (max-width:480px){
	.cl-logo-row {
    grid-template-columns: repeat(2, 1fr);
	}
}
 .madkoncepter-inner h3{
    color: #dd6b2a;
}
.single-food-btm .single-food-btm-des {
    background: #faf9f2;
}
a.ani-btn span {
	color:#000;
}
.menu-col .price-tag ,.single-food-btm .book-now , .single-food-btm .description, a.ani-btn{
    background: #d4e4d8;
	color:#000;
	font-weight:700;
	box-shadow:none;
}
section.menu-buttons > .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
footer .footer-content a, .footer-content ul li:before, footer .footer-content p, .footer-content strong, footer .footer-content h2, footer .copy-right p {
    color: #fff5f3e5 !important;
}
.information-link, .footer-content.ftr-end p {
    margin-top: 0;
}
.footer-content ul {
    flex-direction: column;
	    width: min-content;
}
footer .footer-content h2 {
    min-height: 48px;
	text-transform:uppercase;
}
footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-content.ftr-end ul {
    flex-direction: row;
}
#menu-useful-links i {
    font-size: 24px;
    color: #ffddece1;
}