

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");

/* Varialbes */
:root {
  --font-default: "Jost", sans-serif;
  --font-heading: "Oswald", sans-serif;
  --font-optional: "Dancing Script", cursive;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #072b31;
  --dark-secondary: #1f3844;
  --white: #ffffff;
  --color-primary: #eb0029;
  --color-secondary: #f76e2a;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #ebe9e6;
  --bg-gray-secondary: #faf1df;
  --bg-gradient: linear-gradient(45deg, var(--color-primary) 30%, #ffb800 100%);
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.wrapper {
  height: 100%;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
  opacity: 1;
}

.color-style-two a:hover {
  color: var(--color-secondary);
}

.secondary a:hover {
  color: var(--color-primary);
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  min-height: 50px;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

ul {
  list-style-type: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

b {
  font-weight: 500;
}

strong {
  font-weight: 500;
}

.row {
  --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
  font-family: var(--font-default);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 42px;
  margin-bottom: 25px;
  letter-spacing: 0;
}

h2 {
  font-size: 36px;
  margin-bottom: 25px;
  letter-spacing: 0;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-heading);
}

p {
  color: var(--color-paragraph);
  margin: 0 0 7px;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-default);
}

/* ============================================================== 
    # Helper CSS
=================================================================== */

.container-full {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
}

@media (min-width: 576px) {
  .container-full {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-full {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-full {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-full {
    max-width: 90%;
    width: 100%;
    padding: 0;
  }

  .box-layout {
    width: 94%;
    margin: auto;
    border-radius: 30px;
  }
}

.container-fill {
  padding: 0 15px;
  margin: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container-fill {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-fill {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-fill {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .container-fill {
    padding: 0 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 1400px) {
  .container-stage {
    margin-left: calc((100% - 1320px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

.item-center {
  display: flex;
  align-items: center;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}

.bg-gray {
  background: var(--bg-gray);
}

.bg-dark .bg-gray {
  background: var(--dark-secondary);
}

.bg-gray-secondary {
  background: var(--bg-gray-secondary);
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-secondary {
  background-color: var(--dark-secondary) !important;
}

.bg-theme {
  background-color: var(--color-primary);
}

.color-style-two .bg-theme {
  background-color: var(--color-secondary);
}

.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
  background-color: var(--color-primary);
  background: var(--bg-gradient-reverse) !important;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  display: inline-block;
}

.text-light {
  color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
  color: var(--white);
}

.shadow {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.shadow.dark {
  position: relative;
  z-index: 1;
}

.shadow.dark:after {
  background: var(--black);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
  position: relative;
  z-index: 1;
}

.shadow.dark-hard:after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.theme {
  position: relative;
  z-index: 1;
}

.shadow.theme:after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.light {
  position: relative;
  z-index: 1;
}

.shadow.light:after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.default-padding-big {
  padding: 250px 0;
}

@media only screen and (max-width: 767px) {
  .default-padding-big {
    padding: 60px 0;
  }
}

.default-padding-top {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top {
    padding-top: 60px;
  }
}

.default-padding-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom {
    padding-bottom: 60px;
  }
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .default-padding.bottom-less {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.default-padding-bottom.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom.bottom-less {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top.bottom-less {
    margin-bottom: -30px;
  }
}

@media only screen and (min-width: 1200px) {
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.border-top {
  border-top: 1px solid #e7e7e7;
}

.border-bottom {
  border-bottom: 1px solid #e7e7e7;
}

.border-left {
  border-left: 1px solid #e7e7e7;
}

.border-right {
  border-right: 1px solid #e7e7e7;
}

.heading {
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: -5px;
  font-size: 42px;
  line-height: 1.3;
}

.heading span {
  font-weight: 400;
}

.site-heading {
  margin-bottom: 60px;
}

.site-heading strong {
  display: inline-block;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.site-heading strong::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/35.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
}

.title {
  font-weight: 500;
  font-size: 55px;
}

.site-heading .title {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px;
    margin-top: 0;
  }

  .site-heading .title {
    font-size: 36px;
  }
}

.bg-dark .title {
  color: var(--white);
}

.bg-dark .site-heading .title {
  color: var(--white);
}

.sub-title {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 20px;
  padding: 0 10px;
}

.color-style-two .sub-title {
  color: var(--color-secondary);
}

.sub-title::after {
  position: absolute;
  top: 50%;
  right: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/17.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
  margin-top: -13px;
}

.color-style-two .sub-title::after {
  background: url(../img/shape/17-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
}

.sub-title::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/18.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -13px;
}

.color-style-two .sub-title::before {
  background: url(../img/shape/18-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
}

.text-light .sub-title::after,
.text-light .sub-title::before,
.text-light.sub-title::after,
.text-light.sub-title::before {
  filter: brightness(0) invert(1);
}

.sub-title img {
  height: 13px;
}

.sub-title img:first-child {
  margin-right: 10px;
}

.sub-title img:last-child {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .sub-title {
    margin-bottom: 10px;
  }
}

.site-heading p {
  margin-bottom: 0;
  margin-top: 25px;
  padding: 0 10%;
}

.site-heading .devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
  background: var(--white);
}

@media (max-width: 767px) {
  .site-heading p {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .site-heading {
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.heading-left .heading {
  font-weight: 500;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-left .heading {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .heading-left .heading {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left p {
  margin-bottom: 0;
}

.heading-left .btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .heading-left {
    margin-bottom: 30px;
  }
}

.sub-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 20px;
  padding-right: 10px;
}

.bg-dark .sub-heading,
.bg-dark-secondary .sub-heading {
  color: var(--white);
}

.text-center .sub-heading {
  margin-bottom: 30px;
}

.color-style-two .sub-heading {
  color: var(--color-secondary);
}

.color-style-two .text-light .sub-heading {
  color: var(--white);
}

.sub-heading::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/18.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -11px;
}

.color-style-two .sub-heading::before {
  background: url(../img/shape/18-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
}

.text-light .sub-heading::before {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary .sub-heading::before,
.bg-dark .sub-heading::before {
  filter: brightness(0) invert(1);
}

.shadow .sub-heading {
  -webkit-text-fill-color: var(--white);
  font-weight: 500;
}

.bg-gradient .sub-heading {
  color: var(--white);
  background: transparent;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  opacity: 0.9;
}

.site-heading.text-light .sub-title,
.site-heading.text-light .sub-heading {
  -webkit-text-fill-color: inherit;
  color: var(--white);
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button i {
  display: inline-block;
  background: var(--color-primary);
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
}

.video-play-button i {
  font-weight: 100;
  font-size: 35px;
  position: relative;
  left: 3px;
  top: 2px;
}

.video-play-button .effect {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-play-button .effect::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: var(--color-primary);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.color-style-two .video-play-button .effect::before {
  background: var(--color-secondary);
}

.video-play-button.with-text {
  width: auto;
  background: transparent;
}

.video-play-button.with-text span {
  position: relative;
  z-index: 1;
}

.video-play-button.with-text span i {
  margin-left: 25px;
  margin-right: 30px;
  color: var(--white);
  left: -1px;
}

.video-play-button.with-text .effect {
  height: 60px;
  width: 60px;
  left: 0;
  -webkit-animation: inherit;
  animation: inherit;
  background: var(--color-primary);
  top: 0;
  opacity: 1;
  z-index: 1;
}

.color-style-two .video-play-button.with-text .effect {
  background: var(--color-secondary);
}

.video-play-button.with-text .effect::before {
  display: none;
}

.video-play-button.with-text .effect::after {
  background: var(--color-primary);
  height: 100%;
  width: 100%;
  z-index: inherit;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.color-style-two .video-play-button.with-text .effect::after {
  background: var(--color-secondary);
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*Zoom Animation */
.zoom-animation {
  -webkit-animation: zoom 2000ms ease-out infinite;
  animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
}

/* Spiner Animation */
.spiner-animation {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Spiner Animation */
.spiner-reverse-animation {
  -webkit-animation: spinnerReverse 20s infinite linear;
  animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

/* Infinite Up Down Animation */
@keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation UpDown */
.updown-animation {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation Left Right */
.leftRight-animation {
  -webkit-animation: fadeLeftRight 10s ease-out infinite;
  animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

/* Animation Right Left */
.rightLeft-animation {
  -webkit-animation: fadeRightLeft 10s ease-out infinite;
  animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

@-webkit-keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

/* Animation Zoom Up Down */
.zoomUpDown-animation {
  -webkit-animation: zoomUpDown 10s ease-out infinite;
  animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@-webkit-keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* Animation Moving */
.moving-animation {
  -webkit-animation: moving 10s ease-out infinite;
  animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

/* Animation Rotation */
@keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Border Animation */
@-webkit-keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@-webkit-keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

@keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@-webkit-keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

@keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 0;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: none !important;
  font-size: 16px;
  letter-spacing: 0;
  padding: 13px 30px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.btn:focus,
.btn.active {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  border: 2px solid transparent;
}

.btn:hover {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn.radius {
  border-radius: 30px;
}

.btn.btn-border {
  border: 2px solid #dddddd;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
}

.btn.btn-border::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-border:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-border:hover {
  border-color: var(--dark);
}

.btn.btn-border.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: #e7e7e7;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
  border-color: #e7e7e7;
  color: var(--dark);
}

.btn.btn-border.animation:hover::after {
  width: 100%;
}

.btn.btn-border-dark {
  border: 2px solid var(--dark);
  background: transparent;
}

.btn-md.btn-border-dark {
  padding: 15px 35px;
}

.btn.btn-border-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn.btn-border-dark.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
  border-color: var(--dark);
  color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
  width: 100%;
}

.btn.btn-border-theme {
  border: 2px solid var(--color-primary);
  background: transparent;
}

.btn.btn-border-theme:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
  border-color: var(--color-primary);
  color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
  width: 100%;
}

.btn.btn-border-light {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.btn.btn-border-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
  width: 100%;
}

.btn-md.btn-border-light {
  border: 1px solid var(--white);
  padding: 15px 35px;
}

.btn.btn-border.light {
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-border.light::after {
  background: var(--color-primary);
}

.btn.btn-border.light:hover {
  border-color: var(--color-primary);
}

.btn.btn-gradient {
  border: none;
  color: var(--white);
}

.btn.btn-gradient::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(
    to left,
    var(--color-primary),
    var(--color-secondary),
    var(--color-primary)
  );
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-size: 250%;
}

.btn.btn-gradient:hover::after {
  background-position: -70% 0;
}

.btn.btn-gradient.active {
  background-position: -70% 0;
}

.btn.btn-theme {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-two .btn.btn-theme {
  background: var(--color-secondary);
}

.color-style-two .btn.btn-theme:hover {
  color: var(--white);
}

.btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.shadow .btn.btn-theme::after {
  background-color: var(--white);
}

.shadow .btn.btn-theme:hover {
  color: var(--color-heading);
}

.text-light .btn.btn-theme:hover {
  color: var(--color-heading);
}

.text-light .btn.btn-theme:after {
  background: var(--white);
}

.banner-style-four .btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background: var(--white) !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-theme:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.banner-style-four .btn.btn-theme:hover {
  color: var(--color-heading) !important;
}

button {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 14px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-two button {
  background: var(--color-secondary);
}

button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
  margin-right: 4px;
}

.btn.btn-theme.secondary {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.btn.btn-theme.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
  background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
  color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
  background-color: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
  color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
  color: var(--color-heading);
  background: var(--white);
  border: none;
}

.btn.btn-light::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light:hover {
  color: var(--white);
  border-color: transparent;
}

.btn.btn-dark {
  color: var(--white);
  background: var(--dark);
  border: none;
}

.btn.btn-dark::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.shadow .btn.btn-dark::after {
  background-color: var(--white);
}

.shadow .btn.btn-dark:hover {
  color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
  width: 100%;
}

.btn.btn-dark.secondary {
  color: var(--white);
  border: none;
  background: var(--dark);
}

.btn.btn-dark.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn i {
  position: relative;
  top: 1px;
  margin-left: 5px;
}

.btn-md i {
  font-weight: 1;
  font-size: 24px;
  margin: 0;
  float: left;
  position: relative;
  top: 1px;
  margin-right: 10px;
}

.btn.text-slide {
  min-width: 150px;
  height: 55px;
  line-height: 55px;
}

.btn.text-slide span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.btn.animate-border {
  overflow: inherit;
  z-index: inherit;
  width: 200px;
  height: 55px;
  line-height: 55px;
  padding: 0;
}

.btn.animate-border:hover {
  background: transparent;
  color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
  opacity: 1;
  -webkit-animation: open 0.4s;
  /* Chrome, Safari, Opera */
  animation: open 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
  opacity: 1;
  -webkit-animation: openB 0.4s;
  /* Chrome, Safari, Opera */
  animation: openB 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border .hover-border {
  position: absolute;
  left: 0;
  top: -1px;
  height: 100%;
  width: 100%;
}

.btn.animate-border .hover-border::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-left: solid 2px var(--color-primary);
  right: 98px;
  top: -1px;
}

.btn.animate-border .hover-border::after {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-right: solid 2px var(--color-primary);
  left: 98px;
  top: -1px;
}

.btn.animate-border .hover-border-bottom {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 55px;
  border-bottom: solid 2px var(--color-primary);
  right: -1px;
  bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 100%;
  border-bottom: solid 2px var(--color-primary);
  left: 0;
  bottom: -2px;
}

.btn.animated-arrow {
  border: none;
  background: transparent;
  min-width: 14rem;
  height: auto;
  padding: 0;
}

.btn.animated-arrow .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary);
  border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 15px;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn.animated-arrow .circle .icon::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--white);
  border-right: 0.125rem solid var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  margin: 0 0 0 70px;
  color: var(--dark);
  line-height: 2;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.btn.animated-arrow:hover {
  color: var(--white);
}

.btn.animated-arrow:hover .circle {
  width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
  background: var(--white);
  -webkit-transform: translate(1.5rem, 0);
  transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
  color: var(--white);
}

.btn.circle {
  border-radius: 30px !important;
}

.btn-simple {
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  color: var(--color-paragraph);
}

.btn-simple i {
  transform: rotate(-45deg);
  display: inline-block;
  margin-left: 2px;
}

.btn-simple:hover {
  color: var(--color-primary);
}

.video-btn i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
  color: var(--white);
}

.text-light .video-btn i {
  background: var(--white);
  color: var(--color-primary);
}

.video-btn i::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--color-primary) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.text-light .video-btn i::after {
  background: var(--white) repeat scroll 0 0;
}

.text-shine {
  background: linear-gradient(
    to right,
    var(--dark) 0,
    var(--white) 10%,
    var(--color-primary) 20%
  );
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3s infinite linear;
  animation: shine 3s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 48px;
}

.animate-inout {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
  color: var(--white);
  font-size: 12px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: solid 2px var(--color-primary);
  cursor: pointer;
}

.btn-icon {
  position: relative;
  padding-left: 20px;
}

.btn-icon:hover {
  color: var(--color-primary);
}

.btn-icon::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  height: 2px;
  left: 0;
  background: var(--color-heading);
  transform: translateY(-50%);
  margin-top: -1px;
  transition: all 0.35s ease-in-out;
}

.btn-icon:hover::after {
  background: var(--color-primary);
}

.btn-icon i {
  font-weight: 500;
}

.btn-icon:hover {
  padding-left: 40px;
}

.animate-inout span {
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
  width: 0%;
  height: 0%;
  position: absolute;
  content: "";
  border-radius: 100%;
}

.animate-inout:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--white);
}

.animate-inout:before {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
  background: transparent;
  color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
  color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.animate-inout:hover {
  color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.animate-inout:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.btn-md {
  padding: 15px 40px;
}

.btn-md.btn-border {
  padding: 14px 52px;
}

.btn-sm {
  padding: 14px 45px;
}

.btn-sm.btn-border,
.btn-sm.btn-light {
  padding: 14px 45px;
}

.mfp-close-btn-in .mfp-close::after {
  display: none;
}

/* Btn Animation */

.btn-animation {
  z-index: 1;
  position: relative;
  font-size: 18px;
  display: inline-block;
  margin-left: 10px;
}

.bg-dark .btn-animation {
  color: var(--white);
}

.btn-animation i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  font-weight: 400;
  margin-right: 10px;
  transition: all 0.35s ease-in-out;
  transform: scale(0);
}

.btn-animation:hover {
  margin-left: 0;
  color: var(--color-heading);
}

.bg-dark .btn-animation:hover {
  color: var(--white);
}

.btn-animation:hover i {
  transform: scale(1);
}

.btn-animation::after {
  position: absolute;
  left: -13px;
  top: 0;
  content: "";
  height: 60px;
  width: 60px;
  border: 1px solid #c2bfbf;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
  transform: scale(1);
  z-index: -1;
}

.bg-dark .btn-animation::after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-animation:hover::after {
  transform: scale(0);
}

.btn-animation span {
  transition: all 0.35s ease-in-out;
  left: -50px;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-animation:hover span {
  left: 0;
}

.btn-animation.dark::after {
  border-color: #c5c5c5;
  z-index: -1;
}

.btn-animation.dark i {
  background: var(--color-primary);
  color: var(--white);
}

.btn-animation.dark:hover {
  color: var(--color-heading);
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

a.btn-round-animation {
  display: inline-block;
  height: 180px;
  width: 180px;
  text-align: center;
  line-height: 180px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

a.btn-round-animation i {
  display: inline-block;
  transform: rotate(-45deg);
  font-weight: 400;
  margin-left: 5px;
}

a.btn-round-animation::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation:hover {
  color: var(--white);
}

a.btn-round-animation:hover::before {
  height: 100%;
}

a.btn-round-animation:hover::after {
  opacity: 0.4;
  height: 80%;
}

a.btn-round-animation.dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
  color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--white);
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */


/* ============================================================== 
    # Nice Select Styles
=================================================================== */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--white);
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 15px;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999999;
}

.nice-select::after {
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  overflow-y: auto !important;
  height: auto;
}

.nice-select.open ::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999999;
  pointer-events: none;
}

.nice-select.disabled::after {
  border-color: #96aac1;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small::after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--white);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 500;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.mfp-iframe-holder .mfp-close {
  color: transparent;
  background: transparent;
}

.mfp-iframe-holder .mfp-close::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 20px;
  width: 20px;
  z-index: 1;
  display: block;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  color: var(--white);
}

.split-text {
  overflow: hidden;
  position: relative;
}

.split-text .line {
  overflow: hidden;
  display: none;
  padding-bottom: 5px;
}

/* ============================================================== 
    # Banner Styles
=================================================================== */
.banner-area {
  height: 100%;
  width: 100%;
  position: relative;
}

@media (max-width: 1023px) {
  .banner-area {
    height: auto;
  }
}

.banner-area div {
  height: 100%;
}

.banner-area div.swiper-slide .row div {
  height: auto;
}

.banner-area.top-pad-80 .content {
  padding-top: 80px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-80 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-80 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-90 .content {
  padding-top: 90px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-90 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-90 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-100 .content {
  padding-top: 100px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-100 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-100 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-110 .content {
  padding-top: 110px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-110 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-110 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-120 .content {
  padding-top: 120px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-120 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-120 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-130 .content {
  padding-top: 130px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-130 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-130 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-150 .content {
  padding-top: 150px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-150 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-150 .content {
    padding-top: 140px;
  }
}

.banner-area.auto-height {
  height: auto;
}

.banner-area.auto-height div {
  height: auto;
}

.banner-area.auto-height .content {
  padding: 200px 0;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height .content {
    padding: 60px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height .content {
    padding: 120px 0;
  }
}

.banner-area.auto-height .content .thumb {
  padding-left: 35px;
}

@media (max-width: 991px) {
  .banner-area.auto-height .content .thumb {
    padding-left: 0;
    margin-top: 50px;
  }
}

.banner-area.auto-height.inc-header-transparent .content {
  padding-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 140px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 220px;
  }
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .info {
  padding-top: 80px;
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .thumb {
  margin-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 50px;
  }
}

.banner-area .content {
  position: relative;
  z-index: 9;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1023px) {
  .banner-area .content {
    padding: 120px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area .content {
    padding: 90px 0;
  }
}

.banner-area h4 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translate3d(-15%, 0, 0);
  transform: translate3d(-15%, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.banner-area h2 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.banner-area p,
.banner-area ul {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  padding-right: 32%;
  margin: 0;
  visibility: hidden;
}

@media (max-width: 1023px) {
  .banner-area p {
    padding-right: 0;
  }
}

.banner-area.text-center p {
  padding-left: 13%;
  padding-right: 13%;
}

@media (max-width: 1023px) {
  .banner-area.text-center p {
    padding: 0;
  }
}

.banner-area .thumb {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.banner-area .button {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}

.banner-area .banner-slide h4 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide h2 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide p,
.banner-area .banner-slide ul {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .button {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active p,
.banner-area .banner-slide .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-area.double-items .thumb {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area.double-items .swiper-slide.swiper-slide-active .thumb {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  visibility: visible;
  opacity: 1;
}

.banner-area.double-items.bottom-thumb .content {
  padding: 0;
}

.banner-area.double-items.bottom-thumb .content .thumb {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 50px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 120px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 50px;
  }
}

.banner-area.zoom-effect .banner-thumb {
  -webkit-transition: 10s ease-out;
  transition: 10s ease-out;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
}

.banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner-area .swiper-notification {
  display: none;
}

.banner-area .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

.banner-area .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active .button {
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .banner-items {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.banner-area:hover .swiper-button-prev,
.banner-area:hover .swiper-button-next {
  opacity: 1;
}

.banner-area:hover .swiper-button-prev {
  left: 30px;
  right: auto;
}

.banner-area:hover .swiper-button-next {
  right: 30px;
  left: auto;
}

.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
  height: auto;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}

.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
  font-size: 40px;
  color: #e3ebdd;
  font-weight: 100;
}

.banner-area.navigation-circle .swiper-button-prev,
.banner-area.navigation-circle .swiper-button-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: var(--white);
}

.banner-area.navigation-circle.navigation-dark .swiper-button-prev,
.banner-area.navigation-circle.navigation-dark .swiper-button-next {
  border: 2px solid #cccccc;
  color: var(--color-heading);
}

.banner-area.navigation-dark .swiper-button-prev::after,
.banner-area.navigation-dark .swiper-button-next::after {
  color: var(--color-heading);
}

.bg-dark-secondary .banner-area.navigation-dark .swiper-button-prev::after,
.bg-dark-secondary .banner-area.navigation-dark .swiper-button-next::after {
  color: var(--white);
}

.banner-area.navigation-circle .swiper-button-prev::after,
.banner-area.navigation-circle .swiper-button-next::after {
  font-size: 16px;
}

.banner-area.navigation-right-bottom .swiper-button-prev,
.banner-area.navigation-right-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 50px;
  border-radius: inherit;
}

.banner-area.navigation-right-bottom .swiper-button-prev {
  right: 92px;
}

.banner-area.navigation-between-bottom .content {
  padding-bottom: 105px;
}

@media only screen and (min-width: 829px) and (max-width: 1023px) {
  .banner-area.navigation-between-bottom .content {
    padding-bottom: 220px;
  }
}

.banner-area.navigation-between-bottom .swiper-button-prev,
.banner-area.navigation-between-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 30px;
  border-radius: inherit;
}

.banner-area.navigation-between-bottom .swiper-button-prev {
  left: 30px;
  right: auto;
}

@media only screen and (max-width: 830px) {
  .banner-area .swiper-button-prev,
  .banner-area .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-custom .swiper-button-prev::after {
  font-family: "ElegantIcons";
  content: "\23";
  font-size: 22px;
}

.banner-area.navigation-custom .swiper-button-next::after {
  font-family: "ElegantIcons";
  content: "\24";
  font-size: 22px;
}

.banner-area.navigation-text .swiper-button-prev,
.banner-area.navigation-text .swiper-button-next {
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  left: auto;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 150px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100px;
  line-height: 100px;
}

@media only screen and (max-width: 830px) {
  .banner-area.navigation-text .swiper-button-prev,
  .banner-area.navigation-text .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-text .swiper-button-prev {
  right: 151px;
}

.banner-area.navigation-text .swiper-button-prev::after {
  font-family: var(--font-heading);
  content: "Prev";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.banner-area.navigation-text .swiper-button-next::after {
  font-family: var(--font-heading);
  content: "Next";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.banner-area.navigation-icon-solid .swiper-button-prev::after,
.banner-area.navigation-icon-solid .swiper-button-next::after {
  font-size: 30px;
}

.banner-area.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-custom-large .swiper-button-next {
  min-width: 65px;
  height: 30px;
  margin: 0;
}

.banner-area.navigation-custom-large .swiper-button-prev::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f104";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  left: 8px;
}

.banner-area.navigation-custom-large .swiper-button-prev::before {
  position: absolute;
  top: 50%;
  right: inherit;
  bottom: inherit;
  left: 12px;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-custom-large .swiper-button-next::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  right: 8px;
}

.banner-area.navigation-custom-large .swiper-button-next::before {
  position: absolute;
  top: 50%;
  right: 12px;
  bottom: inherit;
  left: inherit;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-right-botom .swiper-button-prev,
.banner-area.navigation-right-botom .swiper-button-next {
  position: absolute;
  left: auto;
  right: 30px;
  top: auto;
  bottom: 40px;
  opacity: 1;
  -webkit-transform: inherit;
  transform: inherit;
}

.banner-area.navigation-right-botom .swiper-button-prev {
  right: 60px;
}

.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-next {
  bottom: 30px;
}

.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-prev {
  right: 100px;
}

.banner-area .swiper-pagination {
  height: auto;
  bottom: 35px;
}

.banner-area .swiper-pagination span.swiper-pagination-bullet {
  height: 4px;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: inherit;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
  height: 7px;
}

@media only screen and (max-width: 767px) {
  .banner-area.include-pagination .content {
    padding-bottom: 100px;
  }
}

.banner-area .swiper-pagination-fraction span {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area .swiper-pagination-fraction span.swiper-pagination-current {
  font-size: 30px;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ============================================================== 
    # Banner Custom Style
=================================================================== */

.banner-area .align-center {
  align-items: center;
}

.banner-style-one ul {
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.banner-style-one li {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 300;
  text-transform: uppercase;
  padding: 15px;
  letter-spacing: 1px;
}

.banner-style-one li:last-child {
  border: none;
}

.banner-style-one li i {
  margin-right: 2px;
}

.banner-style-one h4 {
  font-family: var(--font-optional);
  font-size: 42px;
}

.banner-style-one h2 {
  font-size: 90px;
  line-height: 1;
  margin-bottom: 40px;
}

.banner-style-one .btn {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .banner-style-one .content {
    padding-top: 120px;
  }
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active ul {
  transition-delay: 1100ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

/* Banner Two */
.banner-area.banner-style-two .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h2 {
  transition-delay: 300ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h4 {
  transition-delay: 700ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-two h2 {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.bg-dark-secondary .banner-style-two h2 {
  color: var(--white);
}

.banner-style-two h4 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid;
  padding: 7px 20px;
}

.bg-dark-secondary .banner-style-two h4 {
  color: var(--white);
}

.banner-style-two h4 strong {
  color: var(--color-primary);
}

.banner-style-two .thumb {
  text-align: center;
  padding: 50px;
}

.banner-style-two .thumb img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 76%;
}

.banner-style-two p {
  font-size: 20px;
  padding-right: 15%;
}

/* Banner Six */
.banner-area.banner-style-six .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-six h2 {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.banner-style-six h4 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid;
  padding: 7px 20px;
}

.banner-style-six h4 strong {
  color: var(--color-primary);
}

.banner-style-six .thumb {
  text-align: center;
  padding: 50px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .banner-style-six .thumb::after {
    position: absolute;
    left: 50%;
    top: -100%;
    content: "";
    bottom: 10px;
    background: var(--white);
    width: 96%;
    z-index: -1;
    transform: translateX(-50%);
    border-radius: 400px;
    opacity: 0.1;
  }

  .banner-style-six .thumb::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 450px;
    width: 450px;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(130px);
    background: #009688;
  }
}

.banner-style-six .thumb img:nth-child(2) {
  position: absolute;
  right: -50px;
  top: 15%;
  transition: all 0.65s ease-in-out;
}

.banner-style-six p {
  font-size: 20px;
  padding-right: 15%;
}

.banner-style-six .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-style-six .shape img:first-child {
  position: absolute;
  right: 0;
  bottom: 5%;
  height: auto;
  max-width: 200px;
}

.banner-style-six .content {
  padding-top: 80px;
}

/* Banner Three */
.banner-style-three-content,
.banner-style-three-content div {
  height: 100%;
}

.banner-style-three-area {
  height: 100%;
}

.banner-style-three-content {
  padding-top: 40px;
}

.banner-style-three-content .row {
  align-items: center;
}

.banner-style-three-content .row div {
  height: auto;
}

.banner-style-three-content h4 {
  font-size: 50px;
  text-transform: uppercase;
}

.banner-style-three-content h2 {
  font-size: 150px;
  text-transform: uppercase;
  line-height: 120px;
}

.banner-style-three-content .box {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 1);
  border-top: none;
  padding: 30px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.banner-style-three-content .box::after {
  position: absolute;
  right: 0;
  content: "";
  height: 2px;
  width: 70px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  top: 0;
  z-index: -1;
}

.banner-style-three-content .box::before {
  position: absolute;
  left: 0;
  content: "";
  height: 2px;
  width: 70px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  top: 0;
  z-index: -1;
}

.banner-style-three-content .box span {
  position: relative;
  top: -15px;
  text-transform: uppercase;
  font-size: 20px;
}

.banner-style-three-content .box h3 {
  margin: 0;
  font-size: 80px;
  font-family: var(--font-default);
  line-height: 1;
}

/* Banner Four */

.banner-area.banner-style-four .content {
  padding-top: 90px;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-style-four .thumb {
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-style-four .thumb::after {
  position: absolute;
  left: 50%;
  content: "";
  height: 500%;
  width: 60%;
  background: var(--color-primary);
  bottom: -100%;
  z-index: -1;
  transform: translateX(-50%);
}

.banner-style-four .thumb img:nth-child(2) {
  position: absolute;
  left: -5%;
  top: 10%;
}

.banner-style-four h2 {
  font-size: 55px;
  text-transform: uppercase;
}

.banner-style-four h4 {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: var(--font-default);
  font-weight: 400;
  padding-bottom: 5px;
  border-radius: 30px;
}

.banner-area.banner-style-four p {
  padding-right: 10%;
  font-size: 20px;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-four .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-style-four .shape img:first-child {
  position: absolute;
  right: 100%;
  top: 20%;
  max-height: 200px;
  margin-right: 50px;
}

.banner-style-four .shape img:nth-child(2) {
  position: absolute;
  left: 100%;
  bottom: 20%;
}

.banner-style-four .shape img {
  transition: all 1s ease-in-out;
  transform: scale(0);
}

.banner-style-four .swiper-slide-active .shape img {
  transform: scale(1);
}

.banner-style-four .shape img:nth-child(2) {
  transition-delay: 0.1s;
}

/* Banner Five */
.banner-style-five-area .content {
  padding-top: 200px;
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
}

.banner-style-five-area h4 {
  text-transform: uppercase;
  font-size: 30px;
}

.banner-style-five-area h2 {
  text-transform: uppercase;
  font-size: 150px;
  line-height: 1.1;
  margin-bottom: 80px;
}

.bg-dark-secondary .banner-style-five-area h2 {
  color: var(--white);
}

.banner-style-five-area h2 strong {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.banner-style-five-area h2 strong::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/21.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
  background-size: contain;
}

.banner-style-five-thumb {
  min-height: 750px;
  background-position: center bottom !important;
  position: relative;
  z-index: 1;
}

.banner-style-five-thumb img {
  position: absolute !important;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
  z-index: -1;
}

.curve-text svg {
  fill: var(--color-heading);
  height: 170px;
  width: 170px;
  overflow: inherit;
  animation: spinner 20s infinite linear;
}

.curve-text svg {
  background: var(--bg-gray);
  border-radius: 50%;
  padding: 45px;
  position: relative;
  z-index: 1;
  font-size: 24px;
  height: 230px;
  width: 230px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  border: 10px solid var(--white);
}

.curve-text svg a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
}

.curve-text {
  display: inline-block;
  position: relative;
}

.curve-text a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 50px;
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
}

.curve-text svg path {
  fill: none;
}

.curve-text svg text {
  fill: var(--color-heading);
  letter-spacing: 4px;
}

.curve-text .thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 80px;
  width: 80px;
  background: var(--dark);
  text-align: center;
  line-height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.curve-text img {
  height: 30px;
}

/* ============================================================== 
    # About
=================================================================== */

.thumb-style-one {
  position: relative;
}

.thumb-style-one .contact-card-one {
  position: absolute;
  right: -70px;
  bottom: 0;
}

.contact-card-one a {
  display: inline-flex;
  align-items: center;
  background: var(--bg-gray);
}

.contact-card-one a .icon i {
  height: 100px;
  width: 100px;
  display: inline-block;
  text-align: center;
  line-height: 100px;
  background: var(--color-primary);
  color: var(--white);
  font-size: 30px;
}

.contact-card-one .info {
  padding: 10px 30px;
}

.contact-card-one .info h4 {
  margin: 0;
  color: var(--color-heading);
}

.contact-card-one .info span {
  text-transform: uppercase;
  font-size: 15px;
  color: var(--color-paragraph);
}

.about-style-one-info .content {
  margin-left: 150px;
  position: relative;
  padding-left: 50px;
}

.about-style-one-info .content::after {
  position: absolute;
  right: 100%;
  top: 15px;
  content: "";
  height: 2px;
  width: 100%;
  border-top: 1px solid #cccccc;
  z-index: -1;
}

.about-style-one-info .content p {
  margin-bottom: 0;
}

/* ============================================================== 
    # About Style Two
=================================================================== */
ul.launch-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-style-two-info {
  position: relative;
}

.about-style-two-info ul.launch-time {
  position: relative;
  left: -300px;
  margin-right: -300px;
  margin-top: 50px;
}

ul.launch-time > li {
  background: var(--dark);
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

ul.launch-time li h4 {
  color: var(--white);
}

ul.launch-time li {
  color: #cccccc;
}

/* ============================================================== 
    # About Style Three
=================================================================== */
.about-style-three-items {
  position: relative;
  top: -60px;
  z-index: 9;
  margin-bottom: -60px;
  overflow: hidden;
}

@media only screen and (min-width: 1400px) {
  .about-style-three-area .container-stage {
    padding-right: 0;
  }
}

.about-style-one-thumb {
  height: 100%;
}

.about-style-one-thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-style-three-items .row > div {
  padding: 0;
}

.about-style-three-content {
  padding: 50px;
  padding-left: 65px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-style-three-content img {
  max-width: max-content;
  margin: 0 auto 30px;
  height: auto;
}

.opening-hours-style-one {
  padding: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opening-hours-style-one ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.opening-hours-style-one ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.opening-hours-style-one ul li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.opening-hours-style-one ul li span {
  padding-right: 30px;
}

.opening-hours-style-one ul li .text-right {
  padding-left: 30px;
}

.about-style-three-content h2 {
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-heading);
}

.about-style-three-content p {
  color: var(--color-paragraph);
}

.about-style-three-content .contact-card-one a {
  text-align: left;
  background: var(--white);
  margin-top: 15px;
}

/* ============================================================== 
    # Feature
=================================================================== */
.feature-one-single:nth-child(2n) .feature-style-one-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  padding: 90px 37px;
}

.feature-style-one-item img {
  max-width: max-content;
  margin: auto;
  height: 100px;
  margin-bottom: 30px;
}

.feature-style-one-item {
  background: var(--bg-gray);
  text-align: center;
  overflow: hidden;
  padding: 60px 37px;
  border-radius: 30px;
}

.feature-style-one-area .row {
  --bs-gutter-x: 5px;
}

.feature-style-one-item p {
  margin: 0;
}

.feature-one-single:nth-child(2n) .feature-style-one-item h4 {
  margin-top: 15px;
  margin-bottom: 0;
}

.feature-one-single:nth-child(2n) .feature-style-one-item img {
  margin-bottom: 0;
  margin-top: 30px;
}

.feature-one-single {
  position: relative;
  z-index: 1;
}

.feature-one-single::after {
  position: absolute;
  left: 50%;
  top: -120px;
  height: 120px;
  width: 2px;
  content: "";
  transform: translateX(-50%);
  background: var(--bg-gray);
}

.feature-one-single::before {
  position: absolute;
  left: 50%;
  top: -13px;
  height: 30px;
  width: 30px;
  content: "";
  transform: translateX(-50%);
  background: var(--dark);
  border-radius: 50%;
  z-index: 1;
  border: 10px solid var(--white);
}

.feature-one-single:nth-child(odd) .feature-style-one-item {
  margin-top: 60px;
}

.feature-one-single:nth-child(odd)::before {
  top: 45px;
}

.feature-one-single:nth-child(odd)::after {
  height: 190px;
}

/* ============================================================== 
    # Feature Style Two
=================================================================== */
.feature-style-two-heading .title {
  font-size: 100px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-style-two-heading .title img {
  height: 100px;
  margin: 0 15px;
}

.feature-style-two-area {
  position: relative;
  z-index: 1;
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom center;
}

.feature-style-two-area .shape img {
  position: absolute;
  z-index: -1;
}

.feature-style-two-area .shape img:first-child {
  left: 5%;
  top: 50px;
}

.feature-style-two-area .shape img:nth-child(2) {
  bottom: 100px;
  left: 10%;
}

.feature-style-two-area .shape img:nth-child(3) {
  right: 5%;
  bottom: 30%;
}

.feature-product-item a {
  display: block;
  background-size: cover;
  background-position: center;
  padding: 50px;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.feature-product-item a:first-child {
  margin-top: 0;
}

.feature-product-item:first-child a {
  height: 100%;
  margin-top: 0;
}

.feature-product-item:first-child a .thumb {
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 70%;
}

.feature-product-item:nth-child(2) a .thumb {
  position: absolute;
  height: auto;
  right: -10%;
  bottom: -10%;
  width: 50%;
}

.feature-product-item:nth-child(2) .info {
  padding-right: 45%;
}

.feature-product-item:nth-child(2) a:last-child .thumb {
  position: absolute;
  height: auto;
  left: -10%;
  bottom: -10%;
  width: 50%;
}

.feature-product-item:nth-child(2) a:last-child .info {
  padding-left: 45%;
  padding-right: 0;
}

.feature-product-item .thumb .offer {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  height: 150px;
  width: 150px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
  font-size: 36px;
  text-transform: capitalize;
  font-family: var(--font-optional);
  font-weight: 900;
  padding: 0 25px;
  padding-right: 35px;
}

.feature-product-item .thumb .offer strong {
  display: block;
}

.feature-product-item:first-child a .thumb .offer {
  position: absolute;
  left: 0;
  top: 0;
}

.feature-product-item:nth-child(2) .thumb .offer {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-heading);
  font-family: var(--font-optional);
}

.feature-product-item:nth-child(2) a:last-child .offer {
  left: auto;
  right: 30px;
  top: -50px;
  color: #eda400;
}

.feature-product-item a .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-right: 45%;
}

.feature-product-item h2 {
  font-size: 60px;
  text-transform: uppercase;
}

.feature-product-item a .info .btn {
  max-width: max-content;
}

.feature-product-item a .info .btn-light:after {
  background: var(--dark);
}

/* ============================================================== 
    # Brand
=================================================================== */

.brand-area {
  background-repeat: no-repeat;
  background-position: right top;
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand-area::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 250px;
  width: 250px;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  background: #009688;
}

.brand-style-one-carousel img {
  max-height: 100px;
  margin: auto;
}

.brand-heaidng {
  position: relative;
  z-index: 1;
}

.brand-heaidng::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 2px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: -1;
  margin-top: -1px;
}

.brand-heaidng h3 {
  display: inline-block;
  margin: 0;
  background: var(--white);
  padding: 0 25px;
}

.bg-dark .brand-heaidng h3 {
  background: var(--dark);
}

.bg-dark .brand-heaidng h3 {
  background: var(--dark);
}

/* ============================================================== 
    # Why Choose Us
=================================================================== */

.choose-us-style-one-item {
  overflow: hidden;
}

.choose-us-style-one-items .shape img {
  position: absolute;
  bottom: -50px;
  right: 100%;
  margin-right: -50px;
}

.choose-us-style-one-items {
  background: var(--white);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.choose-us-style-one-area .relative {
  position: relative;
  z-index: 1;
}

.choose-us-style-one-area .shape img {
  position: absolute;
  bottom: 0;
  right: 100%;
}

.choose-us-style-one-info {
  padding: 80px;
  padding-left: 95px;
}

.choose-us-style-one-content {
  padding: 0;
  padding-right: 15px;
}

.fun-fact-style-one img {
  height: 80px;
  margin-bottom: 30px;
}

.fun-fact-style-one {
  padding: 50px;
}

.fun-fact-style-one .counter {
  display: flex;
  justify-content: center;
  font-size: 80px;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 15px;
}

.fun-fact-style-one .counter .operator {
  font-size: 50px;
  line-height: 1;
}

.fun-fact-style-one .medium {
  text-transform: uppercase;
}

ul.list-style-one {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

ul.list-style-one li {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  font-weight: 500;
  margin-top: 5px;
}

ul.list-style-one li::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 18px;
  width: 18px;
  background: url(../img/icon/check.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  transform: translateY(-50%);
}

.choose-us-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.choose-us-style-one-item .video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: inherit;
  background: transparent;
  z-index: 1;
  transform: translate(-50%, -50%);
}

/* ============================================================== 
    # Fun Factor
=================================================================== */

.fun-fact-style-one-area {
  position: relative;
  z-index: 1;
}

.fun-fact-style-one-area::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 20%;
  background: var(--color-primary);
  z-index: -1;
}

@media only screen and (min-width: 1600px) {
  .fun-fact-style-one-area::after {
    right: 120px;
  }
}

.fun-fact-style-one-items h2 {
  font-size: 110px;
  line-height: 1;
  text-transform: uppercase;
}

.fun-fact-style-one-content {
  border-top: 2px solid;
  margin-top: 50px;
  padding-top: 10px;
}

.fun-fact-style-one-content .fun-fact {
  display: inline-block;
  margin-right: 60px;
  margin-top: 30px;
}

.fun-fact-style-one-content .fun-fact .counter {
  display: flex;
  font-size: 70px;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}

.fun-fact-style-one-content .fun-fact span.medium {
  text-transform: uppercase;
  font-weight: 500;
}

.fun-fact-style-one-content .fun-fact:last-child {
  margin-right: 0;
}

/* ============================================================== 
    # Video BG
=================================================================== */

.video-bg-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.video-bg-area h2 {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.video-bg-area h2::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  height: 50px;
  width: 1px;
  background: var(--white);
}

/* Shape */

.video-bg-area .wavesshape {
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  width: 100%;
  height: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.video-bg-area .wavesshape img {
  width: 100%;
}

.video-bg-content {
  position: relative;
  z-index: 1;
  padding: 200px 0;
}

.video-bg-content::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--black);
  opacity: 0.5;
  z-index: -1;
}

/* ============================================================== 
    # Food Cateogry
=================================================================== */
.food-cat-item a {
  display: block;
  background-size: cover;
  background-position: center;
  padding: 50px;
  overflow: hidden;
  border-radius: 10px;
  padding-top: 150px;
  position: relative;
  z-index: 1;
}

.food-cat-item a h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.food-cat-item a span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 20px;
}

.food-cat-area {
  background-repeat: no-repeat;
  background-position: right top;
}

/* ============================================================== 
    # Services
=================================================================== */
.services-style-one-area {
  position: relative;
  z-index: 1;
}

.services-style-one-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  bottom: 45%;
  background: var(--dark);
  z-index: -1;
}

.services-style-one {
  text-align: center;
  padding: 80px 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.services-style-one:after {
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 120%)
    repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: 10px;
}

.services-style-one h4 {
  font-size: 26px;
}

.services-style-one p {
  margin: 0;
  color: var(--white);
}

.services-style-one i {
  font-size: 50px;
}

.services-style-one .icon {
  display: inline-block;
  font-size: 50px;
  margin-bottom: 30px;
  height: 100px;
  width: 100px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 100px;
  color: var(--color-primary);
  border-radius: 50%;
}

.services-style-one .icon img {
  padding: 22px;
  position: relative;
  top: -5px;
}

/* Services Swiper Nav */
.services-swiper-nav {
  position: absolute;
  right: 50px;
  bottom: 80px;
  display: flex;
  width: 200px;
  justify-content: space-between;
  align-items: center;
}

.col-xl-12 .services-swiper-nav {
  position: relative;
}

.services-swiper-nav > div {
  height: 40px;
  width: 40px;
  z-index: 9;
  position: relative;
  border-radius: 50%;
  line-height: 25px;
  background: var(--white);
  color: var(--color-heading);
}

.services-swiper-nav > div::after {
  position: absolute;
  top: 7px;
  content: "";
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  color: var(--color-heading);
}

.services-swiper-nav .services-button-next::after {
  content: "\f105";
}

.services-swiper-nav .services-button-prev::after {
  content: "\f104";
}

.services-swiper-nav .services-pagination {
  background: transparent;
  position: absolute;
  line-height: 40px;
  color: var(--white);
  font-size: 24px;
  width: auto;
  font-weight: 500;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border: none;
}

@media (min-width: 1024px) {
  .services-style-one-area .heading-left::after {
    position: absolute;
    right: 0;
    top: -120px;
    content: "";
    bottom: -126px;
    width: 300px;
    background: var(--color-primary);
    z-index: -1;
  }
}

/* ============================================================== 
    # Food Menu
=================================================================== */

#portfolio-grid {
  margin: -15px;
}

.food-menu-lists .food-menu-style-one {
  float: left;
  padding: 15px;
}

.food-menu-lists.colums-2 .food-menu-style-one {
  width: 50%;
}

.food-menu-lists.colums-3 .food-menu-style-one {
  width: 33.333%;
}

.food-menu-lists.colums-4 .food-menu-style-one {
  width: 25%;
}

/* Menu Isotop */

.mix-item-menu button {
  padding: 8px 20px;
  margin: 5px;
  border: none;
  background: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-heading);
  overflow: inherit;
}

.mix-item-menu button::after {
  display: none;
}

.mix-item-menu {
  margin-bottom: 40px;
  display: inline-block;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
}

.bg-gray .mix-item-menu {
  border-color: #cac6c6;
}

.mix-item-menu button.active {
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.mix-item-menu button::before {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: all 0.35s ease-in-out;
  transform: translateX(-50%);
}

.mix-item-menu button.active::before {
  width: 30px;
}

.food-menu-style-one .item {
  background: var(--white);
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 50px;
}

.food-menu-style-one .item .item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dddddd;
  padding-top: 20px;
}

.food-menu-style-one .item .item-price .left {
  font-family: var(--font-default);
  text-transform: uppercase;
  text-align: left;
}

.food-menu-style-one .item .item-price h5 {
  font-family: var(--font-default);
  font-weight: 700;
  margin: 0;
}

.food-menu-style-one .item .button a {
  display: block;
  color: var(--white);
  text-align: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 15px;
  background: var(--color-primary);
}

.food-menu-style-one .item .button a:hover {
  background: var(--dark);
}

.food-menu-style-one .item .item-price i {
  display: inline-block;
  font-size: 30px;
  color: var(--color-primary);
  font-weight: 100;
}

.bg-dark-secondary .food-menu-style-one .item .item-price i {
  color: var(--white);
}

.food-menu-style-one .item .food-cats {
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
  border-top: 1px solid #cccccc;
  padding-top: 15px;
  text-transform: uppercase;
  font-size: 15px;
}

.food-menu-style-one .button {
  margin-top: 25px;
}

.food-menu-style-one .item .thumb img {
  max-height: 250px;
  margin-bottom: 30px;
  border-radius: 50%;
}

/* ============================================================== 
    # Menu Style Two
=================================================================== */

.bg-dark-secondary .food-menu-style-two-area.secondary {
  background-image: none !important;
  background-color: var(--dark);
}

@media (min-width: 1199px) {
  .food-menu-style-two-area.secondary {
    max-width: 90%;
    margin: auto;
  }

  .food-menu-style-two-area.full-width,
  .full-width .food-menu-style-two-area {
    max-width: 100%;
  }
}

.food-menu-style-two-thumb {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-right: 50px;
}

.food-menu-style-two-thumb::after {
  position: absolute;
  left: 50%;
  top: -100%;
  content: "";
  height: 150%;
  width: 50%;
  background: var(--color-primary);
  z-index: -1;
  transform: translateX(-50%);
  margin-left: -25px;
}

.food-menu-style-two-area {
  overflow: hidden;
}

.food-menu-style-two:nth-child(2n) .row {
  flex-direction: row-reverse;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
  right: 0;
  top: auto;
  bottom: -100%;
  margin: 0;
  margin-left: 25px;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb {
  padding-right: 0;
  padding-left: 50px;
}

.food-menu-style-two-thumb img {
  border-radius: 50%;
  border: 15px solid var(--white);
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  background: var(--color-primary);
  padding: 10px;
}

.food-menu-style-two-content {
  margin-left: 120px;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
  margin-left: 0;
  margin-right: 120px;
}

ul.meal-type {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 15px;
}

ul.meal-type li {
  display: inline-block;
  border: 1px solid;
  margin-left: 10px;
  padding: 1px 10px;
  font-weight: 600;
  padding-top: 3px;
}

ul.meal-items li {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 5.5fr;
  grid-column-gap: 30px;
  align-items: center;
}

ul.meal-items.thumb-less li {
  display: block;
}

ul.meal-items li .thumbnail img {
  border-radius: 50%;
  margin-right: 30px;
}

ul.meal-items li .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

ul.meal-items {
  display: grid;
  grid-row-gap: 30px;
}

.food-menus-item .title,
.food-menu-items .title,
.meal-items .title {
  margin-top: 0;
}

ul.meal-items li .content .top h4 {
  margin: 0;
  background: var(--white);
  padding-right: 20px;
}

.bg-cover ul.meal-items li .content .top h4 {
  background: #f3f4ee;
}

.food-menu-items ul.meal-items li .content .top h4 {
  background: var(--dark-secondary);
}

ul.meal-items li .content .bottom {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  justify-content: space-between;
  grid-column-gap: 50px;
}

ul.meal-items li .content .bottom .right {
  text-align: right;
}

.text-light ul.meal-items li .content .bottom p {
  color: #aba8a8;
}

ul.meal-items li .content .bottom p {
  margin: 0;
  text-transform: capitalize;
}

ul.meal-items li .content .top .price {
  font-size: 24px;
  font-weight: 500;
  background: var(--white);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.bg-cover ul.meal-items li .content .top .price {
  background: #eff0e9;
}

.color-style-two ul.meal-items li .content .top .price {
  color: var(--color-secondary);
}

.food-menu-items ul.meal-items li .content .top .price {
  background: var(--dark-secondary);
}

ul.meal-items li .content .top .price span {
  line-height: 1.2;
  margin-left: 20px;
}

ul.meal-items li .content .top::before {
  position: absolute;
  left: 0;
  top: 16px;
  content: "";
  height: 1px;
  width: 100%;
  border-top: 2px dashed #6d6d6d;
  z-index: -1;
  opacity: 0.6;
}

ul.meal-items li .content .top .price span:first-child {
  margin-left: 20px;
}

.food-menu-style-two {
  margin-top: 100px;
}

.food-menu-style-two:first-child {
  margin-top: 0;
}

.food-menu-style-two-content h4.sub-heading {
  font-size: 36px;
}

.food-menu-style-two-content h4.sub-heading::before {
  margin-top: -20px;
  background-size: 140px;
}

/* ============================================================== 
    # Menu Style Three
=================================================================== */

@media only screen and (min-width: 1600px) {
  .menu-type-area {
    position: relative;
    z-index: 1;
  }

  .menu-type-area::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 120px;
    background: var(--white);
    z-index: -1;
  }
}

ul.menu-type-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.menu-type-list li h6 {
  width: 1%;
  display: table-cell;
  white-space: nowrap;
  font-weight: 300;
}

ul.menu-type-list li .line-seperator {
  width: 98%;
  display: table-cell;
  position: relative;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  bottom: 10px;
}

ul.menu-type-list li h6:first-child {
  padding-right: 20px;
}

ul.menu-type-list li h6:last-child {
  padding-left: 20px;
}

.menu-type-item h3 {
  font-weight: 400;
  margin-bottom: 30px;
}

ul.menu-type-list li {
  margin-top: 14px;
}

.menu-type-single .btn {
  display: block;
}

.menu-type-single .btn::after {
  background: var(--white);
}

.menu-type-single .btn:hover {
  color: var(--color-heading);
}

.menu-type-item {
  padding: 50px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
}

.menu-type-item .thumb {
  display: inline-block;
  position: relative;
  height: 200px;
  width: 200px;
  padding: 15px;
  border-radius: 50%;
  background: var(--dark);
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-type-item .thumb img:nth-child(2) {
  position: absolute;
  right: -20px;
  top: 0;
  z-index: -1;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.35s ease-in-out;
}

.menu-type-item:hover .thumb img:nth-child(2),
.menu-type-item.active .thumb img:nth-child(2) {
  filter: none;
}

/* ============================================================== 
    # Menu Style Four
=================================================================== */
.special-menu-style-one .thumb {
  height: 200px;
  width: 200px;
  margin: auto auto 30px;
  position: relative;
  z-index: 1;
}

.special-menu-style-one .thumb img {
  border-radius: 50%;
  border-top: 10px solid var(--color-primary);
  border-left: 10px solid var(--color-primary);
  border-right: 10px solid var(--bg-gray);
  border-bottom: 10px solid var(--bg-gray);
}

.special-menu-style-one .thumb h4 {
  margin: 0;
  position: absolute;
  right: -10px;
  bottom: -10px;
  height: 80px;
  width: 80px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border: 2px solid;
}

.special-menu-style-one {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
}

.special-menu-style-one ul {
  margin: 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 10px 0;
  margin-bottom: 20px;
  margin-top: 25px;
}

.special-menu-style-one p {
  margin-bottom: 0;
}

.special-menu-style-one .button {
  margin-top: 15px;
  text-transform: uppercase;
}

.special-menu-style-one ul li {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.special-menu-style-one .button a i {
  font-weight: 100;
  margin-left: 6px;
}

.special-menu-style-one .button a {
  display: block;
  border: 2px solid #cccccc;
  color: var(--color-heading);
  padding: 8px;
  border-radius: 6px;
  font-weight: 400;
}

/* ============================================================== 
    # Menu Style Five
=================================================================== */
ul.meal-items.style-two li {
  display: block;
}

.menu-style-five-area {
  position: relative;
  z-index: 1;
}

.menu-style-five-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 37%;
  background: var(--white);
  z-index: -1;
}

.nav-tabs.food-menu-five-navs {
  margin: 0;
  border: none;
  margin-bottom: 20px;
}

.nav-tabs.food-menu-five-navs::before,
.nav-tabs.food-menu-five-navs::after {
  display: none;
}

.nav-tabs.food-menu-five-navs .nav-item button {
  margin: 0;
  border: none;
  border-radius: 10px;
  background: var(--white);
  color: var(--color-heading);
  padding: 12px 25px;
  margin-bottom: 6px;
}

.nav-tabs.food-menu-five-navs .nav-item button::after {
  display: none;
}

.nav-tabs.food-menu-five-navs .nav-item button.active {
  background: var(--color-primary);
  color: var(--white);
}

.fun-fact-style-two {
  display: flex;
  align-items: center;
}

.fun-fact-style-two .icon {
  background: var(--white);
  height: 120px;
  width: 120px;
  text-align: center;
  padding: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  margin-right: 25px;
}

.fun-fact-style-two .counter {
  display: flex;
  align-items: center;
  font-size: 80px;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.fun-fact-style-two span.medium {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 26px;
}

/* ============================================================== 
    # Shop
=================================================================== */

.cart-btn {
  display: inline-flex;
  border: 1px solid #b5b2ba;
  padding: 11px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  align-items: center;
  font-size: 15px;
}

.cart-btn i {
  font-weight: 400;
  margin-right: 10px;
  font-size: 20px;
}

.cart-btn:hover {
  border-color: transparent;
  background: var(--color-primary);
  color: var(--white);
}

.shape-seperate img {
  position: absolute;
  max-height: 100px;
  z-index: 1;
}

.shape-seperate img:first-child {
  left: 5%;
}

.shape-seperate img:last-child {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================== 
    # Offer Product
=================================================================== */
.offer-style-one ul {
  padding: 0;
  list-style: none;
  margin: 30px 0;
}

.offer-style-one ul li {
  margin-top: 15px;
}

.offer-style-one ul li h5 {
  margin-bottom: 0;
}

.offer-style-one ul li h5,
.offer-style-one ul li span {
  width: 1%;
  display: table-cell;
  white-space: nowrap;
  font-weight: 400;
  min-width: 155px;
}

.offer-style-one ul li .line-seperator {
  width: 98%;
  display: table-cell;
  position: relative;
  border-bottom: 1px solid #dddddd;
  bottom: 10px;
}

.text-light .offer-style-one ul li .line-seperator {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-style-one ul li h5:first-child {
  padding-right: 20px;
}

.offer-style-one ul li h5:last-child {
  padding-left: 40px;
}

.offer-style-one .thumb {
  position: relative;
  z-index: 1;
}

.offer-style-one .thumb .discount-badge {
  position: absolute;
  right: -80px;
  top: 50px;
  background-image: url(../img/shape/2.png);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  height: 250px;
  display: flex;
  width: 250px;
  flex-direction: column;
  z-index: 1;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: var(--font-heading);
}

.offer-style-one .thumb .discount-badge strong {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.offer-style-one {
  position: relative;
}

.offer-style-one .shape {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0;
}

.offer-style-one .shape img {
  width: 100px;
}

/* ============================================================== 
    # Discount
=================================================================== */

.discount-area {
  position: relative;
  z-index: 1;
}

.discount-area .wavesshape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.offer-item-thumb {
  position: relative;
}

.offer-item-thumb img:nth-child(2) {
  position: absolute;
  right: -50px;
  top: 0;
  height: 200px;
}

.counter-class .counter-list {
  display: flex;
}

.counter-class .item-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.counter-class .item-list h5 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 90px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.counter-class .item-list h5 span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.discount-content h2 {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background-size: contain;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.discount-content h4 {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px 20px;
  text-transform: uppercase;
  border-radius: 7px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* ============================================================== 
    # Chef
=================================================================== */

@media (min-width: 1024px) {
  .chef-one-single:nth-last-child(2n) {
    margin-top: 80px;
  }
}

.chef-style-one-item .info {
  margin-top: 30px;
}

.chef-style-one-item .info h4 {
  margin-bottom: 5px;
}

.chef-style-one-item .info span {
  text-transform: uppercase;
}

.chef-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.chef-style-one-item .thumb img {
  border-radius: 10px;
}

.chef-one-social {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.chef-style-one-item li {
  display: inline-block;
  margin: 0 1px;
}

.chef-style-one-item li a {
  display: inline-block;
}

.chef-style-one-item li i {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: var(--color-primary);
  line-height: 40px;
  border-radius: 50%;
  color: var(--white);
  position: relative;
  bottom: -30px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: all 0.35s ease-in-out;
}

.chef-one-social li:nth-child(2) a i {
  transition: all 0.55s ease-in-out;
}

.chef-one-social li:nth-child(3) a i {
  transition: all 0.75s ease-in-out;
}

.chef-style-one-item:hover .chef-one-social li a i {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.chef-one-social li .fa-facebook-f {
  background: #3b5998;
}

.chef-one-social li i.fa-twitter {
  background: #1da1f2;
}

.chef-one-social li i.fa-dribbble {
  background: #ea4c89;
}

.chef-one-social li i.fa-linkedin-in {
  background: #0077b5;
}

/* ============================================================== 
     # Chef Single  
=================================================================== */

.chef-single-area .chef-content-top {
  bottom: -50px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.chef-single-area .chef-content-top .right-info {
  margin-bottom: 80px;
}

.chef-single-area .chef-content-top .right-info h2 {
  font-weight: 500;
}

.chef-single-area .chef-content-top .right-info p {
  padding-right: 20%;
}

.chef-single-area .chef-content-top .right-info span {
  display: block;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 25px;
}

.chef-single-area .chef-content-top .right-info ul {
  padding: 0;
  list-style: none;
  margin: 35px 0;
}

.chef-single-area .right-info ul li {
  margin-top: 10px;
  color: var(--color-heading);
  display: flex;
  align-items: center;
}

.chef-single-area .right-info ul li p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.chef-single-area .right-info > ul li i {
  min-width: 35px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  border-radius: 5px;
  margin-right: 15px;
}

.chef-single-area .right-info ul li strong {
  font-weight: 500;
}

.chef-single-area .right-info ul li a {
  font-weight: 400;
}

.chef-single-area .right-info ul li a:hover {
  color: var(--color-primary);
}

.chef-single-area .right-info .social {
  display: flex;
  margin-top: 25px;
  font-weight: 500;
  align-items: center;
}

.chef-single-area .right-info .social h4 {
  font-weight: 500;
  margin-bottom: 0;
  margin-right: 25px;
}

.chef-single-area .right-info .social ul {
  margin: 0;
  padding: 0;
  border: none;
}

.chef-single-area .right-info .social .share-link {
  position: relative;
  z-index: 1;
  margin-left: 15px;
  padding-right: 20px;
}

.chef-single-area .right-info .social .share-link > i {
  display: inline-block;
  height: 45px;
  background: var(--dark);
  line-height: 45px;
  width: 45px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
}

.chef-single-area .right-info .social ul {
  display: flex;
  list-style-type: none;
  grid-gap: 10px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0s;
}

.chef-single-area .right-info .social .share-link:hover ul {
  left: 58px;
  opacity: 1;
  pointer-events: auto;
}

.chef-single-area .right-info .social ul li {
  display: inline-block;
  margin: 0;
}

.chef-single-area .right-info .social ul li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 47px;
  background: var(--white);
  text-align: center;
  border-radius: 50% !important;
}

.chef-single-area .bottom-info h2 {
  font-weight: 500;
  margin-bottom: 25px;
}

.chef-single-area .bottom-info p:last-child {
  margin-bottom: 0;
}

.chef-single-area .bottom-info .skill-items {
  padding-left: 35px;
}

.skill-items .progress-box {
  margin-bottom: 35px;
}

.chef-single-area .chef-content-top img {
  border-radius: 30px;
}

.skill-items .progress-box:last-child {
  margin-bottom: 0;
}

.skill-items .progress-box h5 {
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.skill-items .progress-box h5 span {
  position: absolute;
  font-size: 50px;
  line-height: 1;
  top: -21px;
  left: 0;
  z-index: -1;
  opacity: 0.05;
  font-weight: 500;
}

.skill-items .skill-items {
  margin-top: 40px;
}

.skill-items .progress-box .progress {
  background: transparent;
  border-bottom: none;
  box-shadow: inherit;
  border-radius: inherit;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar {
  height: 6px;
  border-radius: 30px;
  background: var(--color-primary);
  top: 12px;
  position: relative;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar span {
  position: absolute;
  right: 0;
  top: -37px;
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  background: var(--dark);
  padding: 0 7px;
  border-radius: 5px;
}

.skill-items .progress-box .progress .progress-bar span::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--dark);
  transform: translateX(-50%);
}

.chef-single-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.chef-list-item h4 {
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 28px;
}

.chef-list-item h5 {
  font-weight: 500;
  margin-bottom: 8px;
}

.chef-list-item span {
  text-transform: none;
  margin-bottom: 5px;
  color: var(--color-heading);
  display: block;
}

.chef-list-item li {
  margin-top: 30px;
}

.chef-list-item li:first-child {
  margin-top: 0;
}

.chef-single-list ul {
  border: none;
  margin-top: 0;
  padding: 0;
}

.skill-items h3 {
  font-weight: 500;
  margin-bottom: 30px;
}

.chef-list-item ul {
  border-left: 1px solid;
  padding-left: 25px;
}

.chef-list-item ul li {
  position: relative;
  z-index: 1;
}

.chef-list-item ul li::after {
  position: absolute;
  left: -33px;
  top: 3px;
  content: "";
  height: 15px;
  width: 15px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--white);
}

/* ============================================================== 
    # Testimonial
=================================================================== */

.testimonial-style-one-area {
  overflow: hidden;
}

.testimonial-style-one-area .wavesshape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tm-proivder-thumb img {
  border: 5px solid #cccccc;
  height: 200px;
  width: auto;
  margin-left: -50px;
}

.bg-gray .tm-proivder-thumb img,
.bg-gray-secondary .tm-proivder-thumb img,
.bg-dark .tm-proivder-thumb img,
.bg-theme .tm-proivder-thumb img {
  border: 5px solid var(--white);
}

.tm-proivder-thumb img:first-child {
  transform: rotate(5deg);
}

.tm-proivder-thumb img:nth-child(2) {
  position: relative;
  top: 50px;
  transform: rotate(-5deg);
}

.testimonial-style-one {
  padding-bottom: 60px;
}

.testimonial-style-one .content p {
  font-size: 30px;
  line-height: 1.5;
}

.tm-proivder-thumb {
  margin-top: 50px;
  margin-left: 50px;
}

.tm-review i {
  color: #f7a105;
}

.tm-review {
  display: block;
  margin-bottom: 15px;
}

.testimonial-style-one .provider h4 {
  margin-bottom: 15px;
  font-size: 30px;
}

.testimonial-style-one .provider {
  margin-bottom: 30px;
}

.testimonial-style-one .provider span {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--color-primary);
}

.testimonial-pagination {
  position: relative;
  margin-top: 50px;
  margin-bottom: -15px;
}

.testimonial-pagination .swiper-pagination {
  position: inherit;
}

.testimonial-pagination .swiper-pagination span.swiper-pagination-bullet {
  background: transparent;
  height: 20px;
  width: 20px;
  border: 2px solid;
  position: relative;
  z-index: 1;
}

.testimonial-pagination
  .swiper-pagination
  span.swiper-pagination-bullet::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bg-dark
  .testimonial-pagination
  .swiper-pagination
  span.swiper-pagination-bullet::after {
  background: var(--white);
}

/* ============================================================== 
    # Reservation
=================================================================== */
.reservation-thumb {
  position: relative;
  border-right: 3px solid var(--color-primary);
}

.reservation-thumb > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.reservation-style-one-items {
  border-radius: 10px;
}

.reservation-info {
  padding: 80px 120px;
}

.reservation-form label {
  display: block;
  color: var(--color-heading);
  width: 100%;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.6px;
}

.bg-dark .reservation-form label {
  color: var(--white);
}

.reservation-form.light label {
  color: var(--color-paragraph);
}

.reservation-form .form-group {
  margin-bottom: 15px;
}

.reservation-form .input-group {
  margin-bottom: 15px;
}

.reservation-form select {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  background: transparent;
  color: var(--color-heading);
  border: 1px solid #cccccc;
}

.bg-dark .reservation-form select {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reservation-form input,
.reservation-form input:focus {
  padding: 0 15px;
  background: transparent;
  border: 1px solid #e7e7e7;
  color: var(--color-heading);
  box-shadow: none;
}

.bg-dark .reservation-form input,
.bg-dark .reservation-form input:focus {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.reservation-form .input-group span.input-group-addon {
  background: var(--color-primary);
  color: var(--white);
  padding: 0 20px;
  line-height: 50px;
  border-radius: 0 5px 5px 0;
  border: none;
}

.reservation-form.light .input-group span.input-group-addon {
  background: var(--white);
  color: var(--color-heding);
  border: 1px solid #e7e7e7;
}

.reservation-form.light .input-group span.input-group-addon i {
  color: var(--color-primary);
}

.reservation-form .input-group input {
  border-right: none;
  border-radius: 5px 0 0 5px !important;
}

.reservation-form > i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 70px;
  text-align: center;
  background: var(--color-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 30px;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  border: 5px solid;
}

.reservation-form h3 {
  margin-bottom: 30px;
}

.reservation-form.light button {
  margin-top: 15px;
}

.bg-dark .reservation-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.bg-dark .reservation-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.bg-dark .reservation-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.bg-dark .reservation-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.bg-dark .reservation-form.light input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666666;
}

.bg-dark .reservation-form.light input::-moz-placeholder {
  /* Firefox 19+ */
  color: #666666;
}

.bg-dark .reservation-form.light input:-ms-input-placeholder {
  /* IE 10+ */
  color: #666666;
}

.bg-dark .reservation-form.light input:-moz-placeholder {
  /* Firefox 18- */
  color: #666666;
}

.bg-dark .reservation-form select option {
  color: var(--color-heading);
  padding: 20px;
}

.bg-dark .reservation-form button::after {
  background: var(--white);
}

.reservation-form.light button::after {
  background: var(--dark);
}

.bg-dark .reservation-form button:hover {
  color: var(--color-heading);
}

.reservation-form .nice-select {
  background: transparent;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
}

.bg-dark .reservation-form .nice-select {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.reservation-form .nice-select li.option {
  color: var(--color-heading);
  padding: 5px 20px;
  line-height: 30px;
  border-bottom: 1px solid #e7e7e7;
}

.reservation-style-one-items > .row {
  margin: 0;
}

.reservation-thumb .icon {
  display: inline-flex;
  height: 120px;
  width: 120px;
  text-align: center;
  line-height: 120px;
  background: var(--white);
  position: absolute;
  right: -60px;
  top: 80px;
  color: var(--color-primary);
  font-size: 40px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  z-index: 9;
  flex-direction: column;
  justify-content: center;
}

.reservation-thumb img {
  border-radius: 10px 0 0 10px;
}

.reservation-thumb .icon img {
  padding: 25px;
}

/* ============================================================== 
    # Reservation
=================================================================== */

.reservation-style-two-area {
  position: relative;
  z-index: 1;
}

.reservation-banner img {
  height: 100%;
  width: 48%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.reservation-tabs {
  padding: 120px 0;
  position: relative;
  display: flex;
  left: -135px;
  margin-right: -135px;
}

.reservation-tabs .nav-tabs .nav-item {
  display: block;
  margin: 16px 0;
}

.reservation-tabs .nav-tabs .nav-item button {
  display: flex;
  margin: 0;
  padding: 0;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 150px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  transition: all 0.35s ease-in-out;
  text-transform: uppercase;
}

.reservation-tabs .nav-tabs .nav-item button img {
  height: 50px;
  margin-bottom: 10px;
  transition: all 0.35s ease-in-out;
}

.reservation-tabs .nav-tabs .nav-item button.active img {
  filter: brightness(0) invert(1);
}

.reservation-tabs .nav-tabs {
  margin: 0;
  padding: 0;
  border: none;
  margin-right: 50px;
  list-style: none;
  margin-top: -20px;
}

.reservation-tabs .tab-content {
  width: 100%;
}

.reservation-tabs .nav-tabs .nav-item button::after {
  display: none;
}

.reservation-tabs .nav-tabs .nav-item button.active {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # Gallery
=================================================================== */
.gallery-items.colums-3 .pf-item {
  float: left;
  padding: 15px;
  width: 33.3333%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-items.colums-3 .pf-item {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .gallery-items.colums-3 .pf-item {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  #portfolio-grid {
    margin: 0;
  }

  .gallery-items.colums-3 .pf-item {
    width: 100%;
    padding: 15px 0;
  }
}

button.mfp-arrow::after {
  display: none;
}

.gallery-style-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-style-one .overlay {
  display: inline-block;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 10px;
  transition: all 0.35s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
}

.gallery-style-one .overlay h4 {
  margin: 0;
}

.gallery-style-one .overlay span {
  color: var(--color-primary);
}

.gallery-style-one:hover .overlay {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.gallery-style-one img {
  max-width: none;
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
}

.gallery-style-one:hover img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.gallery-style-one i {
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--bg-gray-secondary);
  border-radius: 50%;
  color: var(--color-primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.gallery-style-one::after {
  position: absolute;
  left: 50px;
  top: 50px;
  right: 50px;
  bottom: 50px;
  border-radius: 10px;
  background: var(--color-primary);
  content: "";
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
  mix-blend-mode: multiply;
}

.gallery-style-one:hover::after {
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

.gallery-style-one:hover i {
  margin: 0;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================================== 
    # Discount
=================================================================== */

.dicount-thumb {
  position: relative;
  z-index: 1;
}

.dicount-thumb img:nth-child(2) {
  position: absolute;
  right: 0;
  top: 100px;
}

.discount-info h2 {
  text-transform: uppercase;
  line-height: 1.1;
  background: var(--color-primary);
  display: inline-block;
  color: var(--white);
  max-width: max-content;
  padding: 15px 100px;
  clip-path: polygon(0 1%, 100% 0, 91% 51%, 100% 100%, 0 100%, 8% 57%);
  font-weight: 500;
}

.discount-info {
  overflow: hidden;
  height: 100%;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.discount-info p {
  font-size: 20px;
}

.offer-fun-fact .fun-fact .counter {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 10px;
  justify-content: center;
  font-weight: 500;
}

.offer-fun-fact .fun-fact {
  display: inline-block;
  border-right: 1px solid;
  margin-right: 30px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.offer-fun-fact {
  display: block;
  width: 100%;
  border: 1px solid;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  border-radius: 100px;
}

.offer-fun-fact .fun-fact:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}

.offer-fun-fact .fun-fact span.medium {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.discount-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.discount-info ul li {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding-left: 37px;
  text-align: left;
  margin-top: 5px;
  color: var(--color-paragraph);
}

.discount-info ul li::after {
  position: absolute;
  left: 0;
  top: 7px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  height: 23px;
  width: 23px;
  line-height: 23px;
  background: var(--dark);
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 600;
}

.discount-offer-area .shape img {
  position: absolute;
  right: 2%;
  bottom: -30px;
  height: 120px;
}

/* ============================================================== 
    # Home Blog
=================================================================== */
.home-blog-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.home-blog-style-one-item .thumb img {
  border-radius: 10px;
  margin-bottom: 30px;
}

.home-blog-style-one-item .thumb ul.blog-meta {
  position: absolute;
  left: 30px;
  top: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog-style-one-item .thumb ul.blog-meta li {
  display: inline-block;
  margin-right: 3px;
}

.home-blog-style-one-item .thumb ul.blog-meta li a {
  display: inline-block;
  background: var(--white);
  text-transform: uppercase;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 14px;
}

.home-blog-style-one-item .meta-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog-style-one-item .meta-tags li {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  margin-right: 5px;
  padding-right: 12px;
}

.home-blog-style-one-item .meta-tags li::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  border-radius: 50%;
  transform: translateY(-50%);
}

.home-blog-style-one-item .meta-tags li a {
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-paragraph);
}

.home-blog-style-one-item .meta-tags li:last-child::after {
  display: none;
}

.home-blog-style-one-item .meta-tags li a:hover {
  color: var(--color-primary);
}

.home-blog-style-one-item .post-title {
  line-height: 1.4;
}

.home-blog-style-one-item h4.post-title {
  font-size: 26px;
}

/* ============================================================== 
    # Contact
=================================================================== */
.maps-area {
  position: relative;
  z-index: 1;
}

.maps-area iframe {
  width: 100%;
  height: 800px;
}

.contact-style-one-info {
  background: var(--white);
  padding: 80px;
}

.contact-style-one-items {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.contact-style-one-box {
  position: relative;
}

.contact-style-one-info li {
  display: flex;
  margin-top: 30px;
}

.contact-style-one-info li i {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  margin-right: 20px;
}

.contact-style-one-info li:nth-child(2) i {
  background: var(--color-secondary);
}

.contact-style-one-info li:nth-child(3) i {
  background: var(--dark);
}

.contact-style-one-info li p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.contact-style-one-info li h5 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 20px;
}

.contact-style-one-info li a {
  font-weight: 400;
}

.contact-style-one-info h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}

.contact-style-one-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 50px;
}

.contact-style-one-items,
.contact-style-one-items div {
  height: 100%;
}

.contact-style-one-items div.row div {
  height: auto;
}

.contact-style-one-items div.row {
  align-items: center;
}

.contact-form-style-one {
  padding: 60px 80px;
  border-radius: 10px;
  position: relative;
  background: var(--bg-gray);
  z-index: 9;
}

.contact-form-style-one input,
.contact-form-style-one textarea,
.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
  margin-bottom: 15px;
  padding: 15px;
  border: none;
  font-size: 18px;
  border-radius: 6px;
  background: var(--white);
}

.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
  box-shadow: inherit;
}

.contact-form-style-one textarea {
  min-height: 180px;
}

.contact-form-style-one button {
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 6px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 17px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
  padding: 13px 52px;
}

.contact-form-style-one button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.contact-form-style-one button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.contact-form-style-one button:hover {
  color: var(--white);
}

img.loader {
  margin-left: 8px;
}

/* ============================================================== 
    # 404 page
=================================================================== */

.error-page-area {
  position: relative;
  z-index: 1;
}

.error-page-area .shape-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: left !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-page-area .shape-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: right !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-box h1 {
  font-size: 150px;
  line-height: 110px;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.error-box p {
  padding: 0 10%;
}

/* ============================================================== 
    # Footer
=================================================================== */
footer.footer-style-one {
  padding-top: 70px;
  overflow: hidden;
}

footer .bg-dark,
footer .bg-dark li,
footer .bg-dark a,
footer .bg-dark p,
footer.bg-dark,
footer.bg-dark li,
footer.bg-dark a,
footer.bg-dark p {
  color: #cccccc;
}

footer .bg-dark a:hover {
  color: var(--white);
}

footer .f-item img {
  height: 61px;
  margin-bottom: 30px;
}

ul.opening-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.opening-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  color: var(--white);
  text-transform: uppercase;
}

ul.opening-list li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

footer .link li {
  margin-top: 10px;
}

footer .link li:first-child {
  margin-top: 0;
}

footer a {
  font-weight: 400;
  font-family: var(--font-default);
}

footer .widget-title {
  margin-bottom: 30px;
}

.f-item.newsletter form {
  position: relative;
}

.f-item.newsletter form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  padding: 0;
  color: var(--white);
  box-shadow: none;
}

.f-item.newsletter form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.f-item.newsletter form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.f-item.newsletter form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.f-item.newsletter form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.footer-socila-items {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-socila-items h4 {
  margin: 0;
}

.f-item.newsletter form button {
  padding: 0;
  right: 0;
  top: 0;
  line-height: 50px;
  background: var(--color-primary);
  width: 100%;
  margin-top: 15px;
}

.f-item.newsletter form button::after {
  background: var(--white);
}

.f-item.newsletter form button:hover {
  color: var(--color-heading);
}

.f-item.newsletter form button i {
  font-weight: 400;
  transform: rotate(-45deg);
  margin-left: 3px;
}

.footer-item fieldset {
  display: flex;
  align-items: baseline;
  margin: 0;
  margin-top: 10px;
}

.footer-item fieldset input {
  min-height: auto;
  position: relative;
  margin-right: 10px;
}

.footer-item fieldset label {
  margin: 0;
}

.f-item.newsletter {
  position: relative;
  z-index: 1;
  padding: 0 50px;
}

.f-item.newsletter::after {
  position: absolute;
  left: 0;
  top: -300px;
  content: "";
  height: 500%;
  width: 100%;
  background: var(--dark);
  z-index: -1;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .f-item.newsletter::after {
  background: var(--dark);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

ul.contact-widget {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.contact-widget li {
  display: flex;
  margin-top: 20px;
}

ul.contact-widget li i {
  height: 35px;
  width: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 34px;
  font-weight: 500;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 80px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom img {
  height: 60px;
}

footer .bg-dark .footer-bottom p {
  margin: 0;
  color: var(--color-paragraph);
}

ul.footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.footer-social li {
  display: inline-block;
  margin-left: 5px;
}

ul.footer-social li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: var(--white);
  text-align: center;
  border-radius: 50%;
  color: var(--color-heading);
}

ul.footer-social li a:hover {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # Responsive CSS
=================================================================== */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Banner Two */
  .banner-style-six h2 {
    font-size: 60px;
  }

  .banner-style-six .content {
    padding-top: 100px;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: 0;
  }

  .banner-style-two h2 {
    font-size: 60px;
  }

  /* Banner Four */
  .banner-style-four h2 {
    font-size: 60px;
  }

  /* About */
  .about-style-one-info .content {
    padding-left: 0;
    margin-left: 0;
  }

  .about-style-one-info .content::after {
    display: none;
  }

  /* About Three */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 120px;
  }

  .about-style-three-content {
    padding: 120px;
  }

  /* Experience */
  .fun-fact-style-one-items h2 {
    font-size: 60px;
    line-height: 1.2;
  }

  /* Feature */
  .feature-style-one-item {
    padding-left: 25px;
    padding-right: 20px;
  }

  .feature-one-single:nth-child(2n) .feature-style-one-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Why Choose Us */
  .choose-us-style-one-item .thumb img {
    width: 100%;
  }

  .choose-us-style-one-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Food Menu */
  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one {
    width: 50%;
  }

  /* Food Menu Two */
  .food-menu-style-two-content {
    margin-left: 20px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin-right: 20px;
  }

  ul.meal-items li .content .bottom p {
    font-size: 16px;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    width: 40%;
  }

  .thumb-style-two {
    padding-right: 30px;
  }

  /* Feature Product */
  .feature-product-item a .info {
    padding-right: 30%;
  }

  /* Offer */
  .offer-style-one .shape img {
    width: 50px;
  }

  /* Chef Details */
  .chef-single-area .chef-content-top {
    margin: 0;
    bottom: 0;
  }

  .chef-single-area .chef-content-top .right-info {
    margin-bottom: 120px;
  }

  /* Footer */
  .footer-style-one {
    padding: 80px 30px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  ul.opening-list li {
    display: block;
  }

  ul.opening-list span.text-end {
    text-align: left !important;
    display: block;
  }

  .footer-bottom {
    position: relative;
    bottom: -1px;
  }
}

@media screen and (max-width: 991px) {
  /* global reset - start */
  .order-last {
    order: 0;
  }
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Topbar */

  .top-bar-area {
    background: var(--dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .top-bar-area.bg-transparent {
    background: var(--color-primary) !important;
  }

  .top-bar-area .item-flex {
    justify-content: center;
  }

  .top-bar-area .text-end {
    margin-top: 10px;
    display: none;
  }

  .topbar-two-items .logo {
    display: none;
  }

  .top-bar-style-two {
    padding: 15px 0;
  }

  .topbar-two-items {
    justify-content: center;
  }

  .topbar-two-items .topbar-info {
    margin: 0 25px;
  }

  /* Banner Two */
  .banner-style-two h2 {
    font-size: 90px;
  }

  .banner-style-two .content {
    text-align: center;
  }

  .banner-style-two p {
    padding: 0 10%;
  }

  /* Banner Five */
  .banner-style-five-area h2 {
    font-size: 120px;
  }

  .banner-style-five-area .content {
    padding-top: 120px;
  }

  .banner-style-five-thumb {
    min-height: 500px;
  }

  /* Banner Six */
  .banner-style-six {
    text-align: center;
  }

  .banner-style-six p {
    padding: 0;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: 10%;
    top: 5%;
  }

  /* Banner Style Three */
  .banner-style-three-content h2 {
    font-size: 100px;
    line-height: 1;
  }

  .banner-style-three-content h4 {
    font-size: 40px;
  }

  .banner-style-three-area {
    height: auto;
  }

  .banner-style-three-content {
    padding: 120px 0;
  }

  /* Banner Four */
  .banner-area.banner-style-four .content {
    padding-top: 120px;
  }

  .banner-style-four .thumb {
    margin-top: 50px;
    display: none;
  }

  .banner-style-four p {
    padding: 0;
  }

  /* About */
  .thumb-style-one {
    margin-bottom: 50px;
  }

  .thumb-style-one .contact-card-one {
    right: auto;
    left: 0;
  }

  .about-style-one-info {
    overflow: hidden;
  }

  /* About Two */
  .thumb-style-two {
    margin-bottom: 50px;
  }

  .about-style-two-info ul.launch-time {
    left: 0;
    margin: 0;
    margin-top: 50px;
  }

  /* About */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 120px;
  }

  .about-style-three-content {
    padding: 80px;
  }

  /* Feature */
  .feature-one-single:nth-child(odd) .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single:first-child .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single::before {
    display: none;
  }

  .feature-one-single::after {
    display: none;
  }

  .feature-one-single:nth-child(2n) .feature-style-one-item {
    padding: 60px 37px;
  }

  .feature-style-one-area .row {
    --bs-gutter-x: 30px;
  }

  .feature-style-one-area {
    padding-top: 90px;
  }

  /* Experience */
  .fun-fact-style-one-area::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 19%;
  }

  .fun-fact-style-one-content {
    margin-top: 30px;
    padding-top: 0;
  }

  .fun-fact-style-one-area {
    text-align: center;
  }

  .fun-fact-style-one-content .fun-fact {
    margin: 0 50px;
    margin-top: 30px;
  }

  .fun-fact-style-one-area .thumb {
    margin-top: 50px;
  }

  .fun-fact-style-one-content .fun-fact:last-child {
    margin-right: 50px;
  }

  .fun-fact-style-one-items h2 {
    font-size: 80px;
    line-height: 1.2;
  }

  /* Reservation */
  .reservation-banner img {
    width: 100%;
    position: relative;
    max-height: 450px;
  }

  .reservation-tabs {
    left: 0;
    margin: 0;
    padding: 120px 0;
    display: block;
  }

  .reservation-tabs .nav-tabs {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .reservation-tabs form.reservation-form {
    text-align: left;
    background: var(--bg-gray);
    padding: 80px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .reservation-tabs .nav-tabs .nav-item {
    text-align: center;
    display: inline-block;
    margin: 0 15px;
    margin-bottom: 25px;
  }

  .reservation-tabs .nav-tabs .nav-item button {
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .reservation-tabs .tab-content {
    text-align: center;
  }

  .reservation-form input,
  .reservation-form input:focus {
    border-color: #cccccc;
  }

  .reservation-form .nice-select {
    border-color: #cccccc;
  }

  .reservation-tabs .tab-content h4.sub-heading::before {
    display: none;
  }

  .reservation-tabs .tab-content h4.sub-heading {
    padding-right: 0;
  }

  /* Service */
  .services-swiper-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }

  /* Food Menu */
  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one {
    width: 50%;
  }

  .mix-item-menu button {
    padding: 8px 15px;
  }

  /* Food Menu Two */
  .food-menu-style-two-thumb::after {
    display: none;
  }

  .food-menu-style-two-thumb {
    padding: 0 !important;
    margin-bottom: 50px;
  }

  .food-menu-style-two-thumb img {
    max-height: 500px;
  }

  .food-menu-style-two-content {
    margin: 0;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
    left: -50%;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin: 0;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    display: none;
  }

  .fun-fact-style-two {
    justify-content: center;
  }

  /* Feature Product */
  .feature-product-item {
    margin-top: 30px;
  }

  .feature-product-item:first-child {
    margin-top: 0;
  }

  .feature-product-item:first-child a .thumb .offer {
    top: 0;
    left: -30px;
  }

  .feature-product-item:first-child a .thumb {
    max-width: 50%;
    top: 80px;
    bottom: 0;
    transform: none;
  }

  .feature-product-item a .info {
    padding-right: 40%;
  }

  .shape-seperate {
    display: none;
  }

  /* Food Offer */
  .offer-style-one .thumb {
    margin-bottom: 70px;
  }

  .offer-style-one .thumb .discount-badge {
    right: auto;
    left: 0;
    bottom: -50px;
    top: auto;
  }

  .offer-style-one .thumb .discount-badge strong {
    font-size: 30px;
  }

  .offer-style-one .thumb .discount-badge {
    font-size: 18px;
    height: 180px;
    width: 180px;
  }

  /* Reservation */
  .reservation-thumb .icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    top: auto;
  }

  .reservation-thumb > img {
    height: 400px;
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    border-radius: 0;
  }

  .reservation-thumb {
    border: none;
    padding: 0;
  }

  .reservation-style-one-items {
    overflow: hidden;
  }

  .reservation-info {
    margin-top: 50px;
  }

  /* Gift Vourcher */
  .dicount-thumb img:nth-child(2) {
    right: 20%;
    top: 50px;
  }

  /* Brand */
  .brand-heaidng::after {
    display: none;
  }

  .brand-heaidng h3 {
    display: block;
    display: block;
    padding: 0;
    text-align: center;
  }

  .brand-area {
    text-align: center;
  }

  /* Chef Single */

  .chef-single-area .chef-content-top {
    bottom: 0;
    margin: 0;
  }

  .chef-single-area .chef-content-top .thumb {
    margin-bottom: 30px;
  }

  .chef-single-area .chef-content-top .thumb img {
    width: 100%;
  }

  .chef-single-area .chef-content-top .right-info p {
    padding: 0;
  }

  .chef-single-area .right-info > ul li i {
    min-width: 40px;
  }

  .chef-single-area .bottom-info .skill-items {
    padding: 0;
    margin-top: 50px;
  }

  /* Contact */
  .contact-style-one-items {
    position: relative;
  }

  .contact-style-one-items,
  .contact-style-one-items div {
    height: auto;
  }

  .contact-style-one-info {
    background: transparent;
    padding: 0;
    padding-top: 100px;
  }

  .maps-area iframe {
    height: 450px;
  }

  .contact-style-one-info ul {
    margin-top: 40px;
  }

  /* Discount */
  .offer-item-thumb img:nth-child(2) {
    right: auto;
    height: 150px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  .offer-item-thumb {
    text-align: center;
    margin-top: 90px;
  }

  .discount-area {
    text-align: center;
  }

  .discount-area p {
    padding: 0 10%;
  }

  .counter-class .item-list {
    justify-content: center;
  }

  /* Footer */

  .footer-bottom {
    background: var(--dark);
    text-align: center;
  }

  .f-item.newsletter::after {
    display: none;
  }

  .f-item.newsletter {
    padding: 0;
    padding-left: 30px;
  }

  footer.footer-style-one {
    position: relative;
    z-index: 1;
  }

  footer.footer-style-one::after {
    position: absolute;
    left: 50%;
    top: 0;
    content: "";
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }

  .f-item.link {
    padding-left: 30px;
  }

  .f-item.contact {
    padding-right: 30px;
  }

  .footer-style-one {
    padding: 80px 50px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .footer-style-one .about {
    padding-right: 30px;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 16px;
  }

  ul.footer-social li {
    margin: 0 5px;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .heading {
    margin-top: 0;
    line-height: 1.2;
    font-size: 36px;
  }

  /* Topbar */
  .top-bar-area {
    display: none;
    background: var(--dark) !important;
  }

  .top-bar-area .item-flex {
    justify-content: center;
  }

  .top-bar-area .text-end {
    margin-top: 10px;
    display: none;
  }

  .top-bar-area {
    padding: 20px 0;
  }

  .topbar-two-items .logo {
    display: none;
  }

  .top-bar-style-two {
    padding: 15px 0;
    display: none;
  }

  .topbar-two-items {
    justify-content: center;
  }

  .topbar-two-items .topbar-info {
    margin: 0 25px;
  }

  .sub-heading::before {
    display: none;
  }

  .sub-heading {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .sub-title::before,
  .sub-title::after {
    display: none;
  }

  /* Banner One */
  .banner-style-one h2 {
    font-size: 50px;
  }

  .banner-style-one li {
    display: block;
    width: 100%;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 15px;
    font-weight: 500;
  }

  .banner-style-one ul {
    display: block;
  }

  .banner-style-one {
    text-align: center;
  }

  /* Banner Two */
  .banner-style-two h2 {
    font-size: 10vw;
  }

  .banner-style-two h4 {
    font-size: 20px;
  }

  .banner-style-two p {
    padding: 0;
  }

  /* Banner Six */
  .banner-style-six {
    text-align: center;
  }

  .banner-style-six h2 {
    font-size: 50px;
    line-height: 1.2;
  }

  .banner-style-six h4 {
    font-size: 20px;
  }

  .banner-style-six p {
    padding: 0;
    font-size: 17px;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: auto;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
  }

  .banner-area .thumb {
    padding: 0;
    margin-top: 50px;
  }

  .banner-style-six .thumb {
    padding-top: 90px;
  }

  /* Banner Style Three */
  .banner-style-three-content {
    padding: 80px 0;
  }

  .banner-style-three-content h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .banner-style-three-content h4 {
    font-size: 30px;
  }

  .banner-style-three-area {
    height: auto;
  }

  /* Banner Style Four */
  .banner-style-four h4 {
    font-size: 18px;
  }

  .banner-style-four h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .banner-style-four p {
    padding: 0;
    font-size: 17px;
  }

  .banner-style-four {
    text-align: center;
  }

  .banner-style-four .thumb::after {
    display: none;
  }

  .banner-area.banner-style-four p {
    padding: 0;
  }

  .banner-style-four .thumb img:nth-child(2) {
    left: auto;
    right: 5%;
    height: 100px;
    top: -14px;
  }

  /* Banner Five */
  .banner-style-five-area h2 {
    font-size: 12vw;
  }

  .banner-style-five-area .content {
    padding-top: 80px;
  }

  .banner-style-five-area h2 {
    margin-bottom: 50px;
  }

  .banner-style-five-thumb {
    min-height: 400px;
  }

  /* About */
  .thumb-style-one .contact-card-one {
    right: auto;
    left: 0;
  }

  .thumb-style-one {
    margin-bottom: 40px;
  }

  .about-style-one-info .content {
    margin: 0;
    padding: 0;
  }

  .about-style-one-info .content::after {
    display: none;
  }

  /* About Two */
  .thumb-style-two {
    margin-bottom: 30px;
  }

  .about-style-two-info ul.launch-time {
    left: 0;
    margin: 0;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  /* About Three */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 60px;
  }

  .about-style-three-content {
    padding: 50px;
  }

  .opening-hours-style-one {
    padding: 50px;
  }

  .about-style-three-content .contact-card-one a {
    justify-content: center;
  }

  /* Feature */
  .feature-one-single:nth-child(odd) .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single:first-child .feature-style-one-item {
    margin-top: 0;
  }

  .feature-one-single::before {
    display: none;
  }

  .feature-one-single::after {
    display: none;
  }

  /* Discount */
  .discount-content h2 {
    font-size: 15vw;
  }

  .offer-item-thumb img:nth-child(2) {
    right: auto;
    height: auto;
    max-width: 150px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  .offer-item-thumb {
    text-align: center;
    margin-top: 90px;
  }

  .discount-area {
    text-align: center;
  }

  .counter-class .item-list {
    justify-content: center;
  }

  /* Experience */
  .fun-fact-style-one-area::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 19%;
  }

  .fun-fact-style-one-items h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .fun-fact-style-one-content {
    margin-top: 30px;
    padding-top: 0;
  }

  .fun-fact-style-one-area {
    text-align: center;
  }

  .fun-fact-style-one-content .fun-fact {
    margin: 0 20px;
    margin-top: 30px;
  }

  .fun-fact-style-one-area .thumb {
    margin-top: 50px;
  }

  .fun-fact-style-one-content .fun-fact:last-child {
    margin-right: 20px;
  }

  /* Why Choose us */
  .choose-us-style-one-info {
    padding: 50px;
  }

  .choose-us-style-one-content {
    padding: 0;
  }

  /* Video BG */

  .video-bg-content {
    padding: 80px 0;
  }

  .video-bg-area .wavesshape {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 0;
  }

  /* Food Category */
  .food-cat-area {
    background-size: 50%;
  }

  /* Service */
  .services-swiper-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-bottom: 30px;
    margin-top: 10px;
  }

  /* Food Menu */

  .food-menu-lists .food-menu-style-one {
    padding: 15px 0;
  }

  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one,
  .food-menu-lists.colums-2 .food-menu-style-one {
    width: 100%;
  }

  .mix-item-menu {
    border: none;
  }

  .mix-item-menu button {
    border: 1px solid #cccccc;
    margin: 5px 3px;
  }

  .mix-item-menu button::before {
    display: none;
  }

  /* Food menu Two */
  .food-menu-style-two-thumb {
    padding: 0;
    margin-bottom: 30px;
  }

  .food-menu-style-two-thumb::after {
    display: none;
  }

  .food-menu-style-two-content {
    margin: 0;
  }

  ul.meal-items li .thumbnail {
    display: none;
  }

  ul.meal-items li {
    display: block;
    border-top: 1px solid #cccccc;
    margin-top: 0;
    padding-top: 30px;
  }

  ul.meal-items li .content .bottom {
    display: block;
  }

  ul.meal-items li .content .bottom .right {
    text-align: left;
  }

  ul.meal-items li .content .bottom p {
    margin-top: 5px;
  }

  .food-menu-style-two-content h4.sub-heading {
    margin-bottom: 30px;
  }

  ul.meal-items li .content .top::before {
    display: none;
  }

  ul.meal-items {
    margin-top: 30px;
  }

  ul.meal-items {
    margin-top: 32px;
  }

  .food-menu-style-two {
    margin-top: 60px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
    top: 50%;
    transform: translateY(-50%);
    left: -50%;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb {
    padding: 0;
  }

  .food-menu-style-two-thumb img {
    max-height: 350px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin: 0;
  }

  ul.meal-items li .content .top {
    margin-bottom: 15px;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    display: none;
  }

  .food-menu-style-five-items {
    margin-top: 40px;
  }

  /* Feature Product */
  .feature-product-item {
    margin-top: 30px;
  }

  .feature-product-item:first-child {
    margin-top: 0;
  }

  .feature-style-two-area .shape img:first-child {
    top: 0;
  }

  .feature-product-item a {
    padding: 50px 40px;
    text-align: center;
  }

  .feature-product-item a .info {
    padding-right: 0;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .feature-product-item h2 {
    font-size: 36px;
  }

  .feature-product-item:first-child a .thumb {
    max-width: 80%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin-top: 60px;
  }

  .feature-product-item:first-child a .thumb .offer {
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }

  .feature-product-item:nth-child(2) .info {
    padding: 0;
  }

  .feature-product-item:nth-child(2) .thumb .offer {
    left: auto;
    right: 0;
    top: -32px;
  }

  .feature-product-item:nth-child(2) a .thumb {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    width: 80%;
  }

  .feature-product-item:nth-child(2) a:last-child .info {
    padding: 0;
  }

  .feature-product-item:nth-child(2) a:last-child .thumb {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin-top: 50px;
  }

  .shape-seperate {
    display: none;
  }

  ul.vt-products {
    margin-bottom: -30px;
  }

  /* Food Offer */
  .offer-style-one .thumb {
    margin-bottom: 70px;
  }

  .offer-style-one .thumb .discount-badge {
    right: auto;
    left: 0;
    bottom: -50px;
    top: auto;
  }

  .offer-style-one .thumb .discount-badge strong {
    font-size: 30px;
  }

  .offer-style-one .thumb .discount-badge {
    font-size: 18px;
    height: 180px;
    width: 180px;
  }

  /* Reservation */
  .reservation-banner img {
    width: 100%;
    position: relative;
    max-height: 350px;
  }

  .reservation-tabs {
    left: 0;
    margin: 0;
    padding: 60px 0;
    display: block;
  }

  .reservation-tabs .nav-tabs {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .reservation-tabs form.reservation-form {
    text-align: left;
    background: var(--bg-gray);
    padding: 50px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .reservation-tabs .nav-tabs .nav-item {
    text-align: center;
  }

  .reservation-tabs .nav-tabs .nav-item button {
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .reservation-tabs .tab-content {
    text-align: center;
  }

  .reservation-form input,
  .reservation-form input:focus {
    border-color: #cccccc;
  }

  .reservation-form .nice-select {
    border-color: #cccccc;
  }

  /* Testimonial */
  .tm-proivder-thumb img {
    height: 150px;
    width: 150px;
  }

  .tm-proivder-thumb {
    text-align: center;
  }

  .testimonial-style-one .content p {
    font-size: 20px;
  }

  /* Gift Vourcher */
  .discount-info h2 {
    font-size: 30px;
    padding: 15px 50px;
  }

  .discount-info ul li {
    font-size: 17px;
    padding-left: 30px;
  }

  .discount-info ul li::after {
    height: 20px;
    width: 20px;
    font-size: 10px;
  }

  .offer-fun-fact {
    border-radius: 10px;
  }

  .offer-fun-fact .fun-fact {
    display: block;
    margin: 0;
    border: none;
    padding: 20px 10px;
    border-bottom: 1px solid;
  }

  .discount-info {
    padding-bottom: 50px;
  }

  .dicount-thumb img:nth-child(2) {
    right: 5%;
    top: 5%;
  }

  /* Reservation */
  .reservation-thumb .icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    top: auto;
  }

  .reservation-thumb > img {
    height: 350px;
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    border-radius: 0;
  }

  .reservation-thumb {
    border: none;
    padding: 0;
  }

  .reservation-style-one-items {
    overflow: hidden;
  }

  .reservation-info {
    padding: 50px 30px;
    margin-top: 50px;
  }

  /* Chef Single */
  .chef-single-area .right-info .social {
    display: block;
  }

  .chef-single-area .right-info .social .share-link {
    margin-top: 30px;
    display: none;
  }

  .chef-single-area .chef-content-top {
    bottom: 0;
    margin: 0;
  }

  .chef-single-area .chef-content-top .thumb {
    margin-bottom: 30px;
  }

  .chef-single-area .chef-content-top .right-info p {
    padding: 0;
  }

  .chef-single-area .right-info > ul li i {
    min-width: 39px;
  }

  .chef-single-list {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }

  .chef-single-area .bottom-info .skill-items {
    padding: 0;
    margin-top: 30px;
  }

  /* Brand */
  .brand-heaidng::after {
    display: none;
  }

  .brand-heaidng h3 {
    display: block;
    display: block;
    padding: 0;
    text-align: center;
  }

  .brand-area {
    text-align: center;
  }

  /* Contact */
  .contact-style-one-items {
    position: relative;
  }

  .contact-style-one-items,
  .contact-style-one-items div {
    height: auto;
  }

  .contact-style-one-info {
    background: transparent;
    padding: 0;
    padding-top: 60px;
  }

  .maps-area iframe {
    height: 350px;
  }

  .contact-style-one-info ul {
    margin-top: 30px;
  }

  .contact-form-style-one {
    padding: 50px;
  }

  /* Footer */
  footer {
    background: var(--dark);
  }

  footer.footer-style-one {
    padding: 0;
    border-radius: 0;
  }

  .f-item.newsletter::after {
    display: none;
  }

  .f-item.newsletter {
    padding: 0;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    display: none;
  }

  .footer-bottom {
    background: transparent;
    text-align: center;
    border-radius: 0;
    margin-top: 50px;
  }

  footer .bg-dark .footer-bottom p {
    color: #cccccc;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 480px) {
}

@media screen and (max-width: 400px) {
  /* About */
  .opening-hours-style-one {
    padding: 50px 30px;
  }

  .about-style-three-content {
    padding: 50px 30px;
  }

  .opening-hours-style-one ul li {
    font-size: 16px;
  }

  /* Menu */
  .menu-type-item {
    padding: 50px 37px;
  }

  .menu-style-five-area::after {
    display: none;
  }

  .food-menu-style-five-items {
    margin-top: 40px;
  }

  .fun-fact-style-two {
    display: block;
    text-align: center;
    justify-content: center;
  }

  .fun-fact-style-two .icon {
    margin: auto auto 20px;
  }

  .fun-fact-style-two .counter {
    justify-content: center;
  }

  .feature-product-item a {
    padding: 50px 30px;
  }

  .contact-form-style-one {
    padding: 50px 30px;
  }
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.restan-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.restan-preloader .animation-preloader {
  z-index: 1000;
  position: relative;
}

.restan-preloader .animation-preloader::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/logo-icon.png);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
}

.restan-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 2px solid rgba(2, 109, 255, 0.3);
  border-top-color: var(--color-primary);
  height: 110px;
  margin: auto;
  width: 110px;
}

.bg-dark .restan-preloader .animation-preloader .spinner {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 1);
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.restan-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.restan-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.restan-preloader .loader .row {
  height: 100%;
}

.restan-preloader .loader .loader-section {
  padding: 0px;
}

.restan-preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.bg-dark .restan-preloader .loader .loader-section .bg {
  background-color: var(--dark);
}

.restan-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.restan-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.restan-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@media screen and (max-width: 767px) {
  .restan-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .restan-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
}

/* ============================================================== 
     # Dark Layout CSS 
=================================================================== */
@media only screen and (min-width: 1600px) {
  .bg-dark-secondary .menu-type-area::after {
    background: var(--dark-secondary);
  }
}

.bg-dark-secondary .title {
  color: var(--white);
}

.bg-dark-secondary .fun-fact-style-one-items h2 {
  color: var(--white);
}

.bg-dark-secondary .fun-fact-style-one-content .fun-fact span.medium {
  color: var(--white);
}

.bg-dark-secondary .special-menu-style-one ul li {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one ul li {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .reservation-tabs .title {
  color: var(--white);
}

.bg-dark-secondary .reservation-form label {
  color: var(--white);
}

.bg-dark-secondary .reservation-form input,
.bg-dark-secondary .reservation-form input:focus {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-secondary .reservation-form .nice-select {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-secondary .reservation-form input::placeholder {
  color: #cccccc;
}

.bg-dark-secondary .reservation-form input::-webkit-input-placeholder {
  color: #cccccc;
}

.bg-dark-secondary .reservation-form input:-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}

.bg-dark-secondary .reservation-form input::-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}

.bg-dark-secondary .reservation-form input:-ms-input-placeholder {
  color: #cccccc;
}

.bg-dark-secondary .site-heading .title {
  color: var(--white);
}

.bg-dark-secondary .blog-area .post-title a {
  color: var(--white);
}

.bg-dark-secondary .blog-area .post-title a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li a {
  color: #cccccc;
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li::after {
  background: var(--white);
}

.bg-dark-secondary footer .bg-dark .footer-bottom p {
  color: #cccccc;
}

.bg-dark-secondary .footer-bottom::before {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark-secondary .footer-bottom::after {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark-secondary .bg-gray .site-heading .title {
  color: var(--color-heading);
}

.bg-dark-secondary form.reservation-form button::after {
  background: var(--white);
}

.bg-dark-secondary form.reservation-form button:hover {
  color: var(--color-heading);
}

.bg-dark-secondary .feature-style-one-item {
  background: var(--dark);
}

.bg-dark-secondary .feature-one-single::before {
  background: #7a7e84;
  border-color: var(--dark-secondary);
}

.bg-dark-secondary .feature-one-single::after {
  background: #42464d;
}

.bg-dark-secondary .feature-style-one-item h4 {
  color: var(--white);
}

.bg-dark-secondary .menu-style-five-area::after {
  background: #2b4356;
}

.bg-dark-secondary .fun-fact-style-two span.medium {
  color: var(--white);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top h4 {
  background: var(--dark);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top h4 a {
  color: var(--white);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top .price {
  background: var(--dark);
}

.bg-dark-secondary .bg-cover .tab-content ul.meal-items li .content .top h4,
.bg-dark-secondary
  .bg-cover
  .tab-content
  ul.meal-items
  li
  .content
  .top
  .price {
  background: var(--dark-secondary);
}

.bg-dark-secondary .shape-seperate img {
  opacity: 0.2;
}

.bg-dark-secondary .product .product-contents {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--dark) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .shop-action li a::after {
  background: var(--white);
  color: var(--color-heading);
}

.bg-dark-secondary .product-tags a {
  color: #dedede;
}

.bg-dark-secondary .product-tags a:hover {
  color: var(--white);
}

.bg-dark-secondary .vt-products .product .product-contents .product-title a {
  color: var(--white);
}

.bg-dark-secondary .vt-products .product .product-caption .price span {
  color: var(--white);
}

.bg-dark-secondary .price del {
  color: #d3cece;
}

.bg-dark-secondary .testimonial-style-one .content p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .bg-dark .testimonial-style-one .content p {
  color: #cccccc;
}

.bg-dark-secondary .discount-info ul li::after {
  background: #494949;
}

.bg-dark-secondary .side .widget p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .side .widget.address ul li strong {
  color: var(--color-paragraph);
}

.bg-dark-secondary .navbar .side .widget h4 {
  color: var(--color-heading);
}

.bg-dark-secondary .banner-style-six h2 {
  color: var(--white);
}

.bg-dark-secondary .banner-style-six h4 {
  color: var(--white);
}

.bg-dark-secondary
  .banner-area.banner-style-six.navigation-dark
  .swiper-button-prev::after,
.bg-dark-secondary
  .banner-area.banner-style-six.navigation-dark
  .swiper-button-next::after {
  color: var(--white);
}

.bg-dark ul.meal-items li .content .top h4,
.bg-dark-secondary .bg-dark ul.meal-items li .content .top h4 {
  background: var(--dark);
}

.bg-dark ul.meal-items li .content .top h4 a {
  color: var(--white);
}

.bg-dark ul.meal-items li .content .top h4 a:hover {
  color: var(--color-primary);
}

.bg-dark ul.meal-items li .content .top .price,
.bg-dark-secondary .bg-dark ul.meal-items li .content .top .price {
  background: var(--dark);
  color: var(--white);
}

.bg-dark .food-menu-style-two-thumb img {
  border-color: #4e5154;
}

.bg-dark-secondary .bg-gray {
  background-color: var(--dark);
}

.bg-dark-secondary .food-cat-area.bg-gray .site-heading .title {
  color: var(--white);
}

.bg-dark-secondary .choose-us-style-one-items {
  background: var(--dark-secondary);
}

.bg-dark-secondary .choose-us-style-one-item {
  background: var(--color-primary);
}

.bg-dark-secondary .fun-fact-style-one img {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary ul.list-style-one li::after {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary .choose-us-style-one-items .btn.btn-dark {
  background: var(--white);
  color: var(--color-heading);
}

.bg-dark-secondary .choose-us-style-one-items .btn.btn-dark:hover {
  color: var(--white);
}

.bg-dark-secondary .mix-item-menu {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .mix-item-menu button {
  color: var(--white);
}

.bg-dark-secondary .food-menu-style-one .item {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.bg-dark-secondary .food-menu-style-one .item .info h4 a {
  color: var(--white);
}

.bg-dark-secondary .food-menu-style-one .item .info h4 a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .food-menu-style-one .item .food-cats {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .food-menu-style-one .item .item-price {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .food-menu-style-one .item .item-price h5 {
  color: var(--white);
}

.bg-dark-secondary .chef-style-one-item .info h4 a {
  color: var(--white);
}

.bg-dark-secondary .chef-style-one-item .info h4 a:hover {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark {
    border-color: rgba(255, 255, 255, 0.215);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    ul.nav
    > li
    > a {
    color: var(--white);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    .attr-nav
    .side-menu
    span {
    background: var(--white);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    .attr-right
    .attr-nav
    li.search
    a {
    color: var(--white);
  }
}

@media only screen and (max-width: 767px) {
  .bg-dark-secondary .reservation-tabs form.reservation-form {
    background: #454b4f;
  }

  .bg-dark-secondary .footer-bottom {
    background: transparent;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-dark-secondary .reservation-tabs form.reservation-form {
    background: #454b4f;
  }
}

/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}





/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: #ffffff !important;
    background: #8a082c !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg')
}




.cbp-spmenu {
    background: #dfdfdf;
    position: fixed
}

.cbp-spmenu h3 {
    color: #fff;
    font-size: 1.9em;
    padding: 20px;
    margin: 0;
    font-weight: 300;
    background: #000000;
}

.cbp-spmenu a {
    display: block;
    color: #fff;
    font-size: 1.1em;
    font-weight: 300
}

.cbp-spmenu a:hover {
    background: #000000;
}

.cbp-spmenu a:active {
    background: #333;
    color: #fff
}

.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000
}

.cbp-spmenu-vertical a {
    border-bottom: 1px solid #ccc;
    padding: 1em
}

.cbp-spmenu-horizontal {
    width: 100%;
    height: 150px;
    left: 0;
    z-index: 1000;
    overflow: hidden
}

.cbp-spmenu-horizontal h3 {
    height: 100%;
    width: 20%;
    float: left
}

.cbp-spmenu-horizontal a {
    float: left;
    width: 20%;
    padding: .8em;
    border-left: 1px solid #258ecd
}

.cbp-spmenu-left {
    left: -240px
}

.cbp-spmenu-right {
    right: -240px
}

.cbp-spmenu-left.cbp-spmenu-open {
    left: 0
}

.cbp-spmenu-right.cbp-spmenu-open {
    right: 0
}

.cbp-spmenu-top {
    top: -150px
}

.cbp-spmenu-bottom {
    bottom: -150px
}

.cbp-spmenu-top.cbp-spmenu-open {
    top: 0
}

.cbp-spmenu-bottom.cbp-spmenu-open {
    bottom: 0
}

.cbp-spmenu-push {
    overflow-x: hidden;
    position: relative;
    left: 0
}

.cbp-spmenu-push-toright {
    left: 240px
}

.cbp-spmenu-push-toleft {
    left: -240px
}

.cbp-spmenu,.cbp-spmenu-push {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (max-width: 55.1875em) {
    .cbp-spmenu-horizontal {
        font-size:75%;
        height: 110px
    }

    .cbp-spmenu-top {
        top: -110px
    }

    .cbp-spmenu-bottom {
        bottom: -110px
    }
}

@media screen and (max-height: 26.375em) {
    .cbp-spmenu-vertical {
        font-size:90%;
        width: 190px
    }

    .cbp-spmenu-left,.cbp-spmenu-push-toleft {
        left: -190px
    }

    .cbp-spmenu-right {
        right: -190px
    }

    .cbp-spmenu-push-toright {
        left: 190px
    }
}


#showLeftPush {
    display: block;
    height: 30px;
    position: absolute;
    left: 8px;
    top: 18px;
    width: 40px;
    z-index: 2;
    background: 0 0;
    border: 0;
    cursor: pointer
}

#showLeftPush span,#showLeftPush:after,#showLeftPush:before {
    background: #000;
    content: "";
    display: block;
    height: 4px;
    left: 7px;
    position: absolute;
    width: 30px
}

#showLeftPush:before {
    top: 8px
}

#showLeftPush:after {
    top: 24px
}

#showLeftPush span {
    top: 16px
}

#showLeftPush.active:before {
    transform: rotate(45deg)
}

#showLeftPush.active:after,#showLeftPush.active:before {
    top: 10px
}

#showLeftPush.active:after {
    transform: rotate(-45deg)
}

#showLeftPush.active span {
    opacity: 0
}

.navbar {
    display: none
}

#ommenu a,#ommenu li,#ommenu span,#ommenu ul {
    margin: 0;
    padding: 0;
    position: relative
}

#ommenu {
    width: auto
}

#ommenu a {
    color: #fff;
    text-transform: normal;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    line-height: 32px;
    border-bottom: 2px solid #ccc;
    display: block;
    padding: 10px
}

#ommenu ul {
    list-style: none
}

#ommenu>ul>li {
    display: block;
    margin: 0
}

#ommenu.align-center {
    text-align: center
}

#ommenu.align-center>ul>li {
    float: none
}

#ommenu.align-center ul ul {
    text-align: left
}

#ommenu.align-right>ul {
    float: right
}

#ommenu.align-right ul ul {
    text-align: right
}

#ommenu>ul>li>a {
    color: #fff;
    font-size: 15px
}

a.nav-link {}

#ommenu .has-sub:hover>ul {
    display: block;
    z-index: 20
}

#ommenu .has-sub ul {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #222
}

#ommenu .has-sub ul li a {
    background: #fff;
    border-bottom: 2px solid #080808;
    font-size: 15px;
    display: block;
    line-height: 120%;
    padding: 12px;
    color: #000
}

#ommenu .has-sub ul li:hover a {
    background: #222;
    color: #fff
}

#ommenu ul ul li:hover>a {
    color: #000
}

#ommenu .has-sub .has-sub:hover>ul {
    display: block
}

#ommenu .has-sub .has-sub ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0
}

#ommenu .has-sub .has-sub ul li a {
    background: #0c7fb0;
    border-bottom: 1px dotted #31b7f1
}

#ommenu .has-sub .has-sub ul li a:hover {
    background: #0a6d98
}

body.cbp-spmenu-push-toleft {
    left: 240px
}

@media screen and (min-width: 768px) {
    #showLeftPush {
        display:none
    }

    .navbar {
        display: block
    }

    .navbar-inverse {
        background: 0 0;
        margin-top: 9px;
        margin-bottom: 0;
        border: 0;
        z-index: 1;
        min-height: auto;
        text-transform: none;
        border-radius: 0
    }

    #ommenu a {
        border-bottom: none;
        padding: 0 10px;
        font-weight: 400;
        line-height: 102px;
        text-transform: normal
    }

    #ommenu ul {
        display: table;
        margin: 0 auto
    }

    #ommenu ul ul {
        display: block
    }

    #ommenu .has-sub ul li a {
        background: #000;
        color: #fff;
        border-bottom-color: #222
    }

    #ommenu>ul>li>a {
        color: #000;
        font-size: 18px;
        font-weight: 500;
        position: relative
    }

    #ommenu ul:after,#ommenu:after {
        content: '';
        display: block;
        clear: both
    }

    #ommenu>ul>li:hover:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 50%;
        bottom: 0
    }

    #ommenu>ul>li:first-child>a {
        border-radius: 5px 0 0;
        -moz-border-radius: 5px 0 0;
        -webkit-border-radius: 5px 0 0
    }

    #ommenu.align-center>ul>li:first-child>a,#ommenu.align-right>ul>li:first-child>a {
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0
    }

    #ommenu.align-right>ul>li:last-child>a {
        border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0
    }

    #ommenu>ul>li.active>a {
        color: #688005;
        border-bottom-color: #688005;
        border-radius: 0
    }

    #ommenu>ul>li:hover>a {
        color: #264896;
        border-bottom-color: #264896;
        border-radius: 0
    }

    #ommenu .has-sub {
        z-index: 10
    }

    #ommenu.align-right .has-sub ul {
        left: auto;
        right: 0
    }

    #ommenu .has-sub ul li {
        *margin-bottom: -1px;
        background: #222
    }

    #ommenu.align-right .has-sub .has-sub ul,#ommenu.align-right ul ul ul {
        left: auto;
        right: 100%
    }

    #ommenu .has-sub ul li.last>a,#ommenu .has-sub ul li:last-child>a,#ommenu ul ul li.last>a,#ommenu ul ul li:last-child>a,#ommenu ul ul ul li.last>a,#ommenu ul ul ul li:last-child>a {
        border-bottom: 0
    }

    #ommenu>ul>li {
        display: inline-block;
        float: left;
        margin: 0
    }

    #ommenu .has-sub ul {
        width: 250px
    }
}

@media screen and (min-width: 992px) {
    #ommenu>ul>li>a {
        font-size:16px
    }

    #ommenu .has-sub ul li a {
        font-size: 14px
    }

    #ommenu a {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 992px) {
    #ommenu>ul>li>a {
        font-size:20px
    }
}



.button,.om-btn-wrapper a,.view-menu-btn {
    /* background: #f60207; */
    color: #fff!important;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    border: none;
    margin: 15px auto 0;
    padding: 10px 15px;
    position: relative;
    text-align: center;
    text-transform: normal;
    transition: all .2s ease-in-out 0s;
    min-width: 160px;
    text-decoration: none
}

.button:hover,.om-btn-wrapper a:hover,.view-menu-btn:hover {
    background: #ff8343;
    color: #fff!important;
}

.button.red-btn,.om-btn-wrapper a.red-btn,.view-menu-btn.red-btn {
    background: #688005;
    font-weight: 700;
    color: #fff!important
}

.button.red-btn:hover,.om-btn-wrapper a.red-btn:hover,.view-menu-btn.red-btn:hover {
    background: #404f03
}

.button a,.om-btn-wrapper a a,.view-menu-btn a {
    color: #fff
}

.button a:hover,.om-btn-wrapper a a:hover,.view-menu-btn a:hover {
    color: #000
}

.button.book-btn,.om-btn-wrapper a.book-btn,.view-menu-btn.book-btn {
    width: 50%
}

.order-online a {
    background: #febe0d;
    :;
    display: block;
    font-size: 16px;
    border: none;
    margin: 15px auto 0;
    padding: 8px 15px;
    position: relative;
    text-align: center;
    transition: all .2s ease-in-out 0s;
    min-width: 160px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    color: #21411c;
}

.order-online a:hover {
    background: #546704;
    color: #fff!important
}
div#logo img {
    width: 55%;
}
.slider-container .om-btn-wrapper a,.slider-container .view-menu-btn {
    font-size: 22px;
    background: #688005
}

.om-welcome {
    background: #efefef
}

body.black-page {
    background: #fff;
    color: #000
}

#header {
    background: #000000;
    width: 100%;
    padding: 14px
}

#header .container {
    position: relative;
    color: #fff;
    padding: 0
}

#header .container #logo {
    margin: 0 auto;
    width: 120px
}

#header .container #logo a {
    display: block
}

#header .container .order-online ul {
    padding: 0;
    margin: 0
}

#header .container .order-online ul li {
    display: block
}

#header .left-nav,#header .right-nav,.header-top .address,.header-top .oo-top {
    display: none
}





@media screen and (min-width: 700px) {
    #header,#header .container {
        padding:0
    }

    #header .container #logo {
        width: 140px;
        float: left;
        margin: 0;
        padding: 14px 0 14px 14px
    }

    #header .container #logo a {
        padding: 0
    }

    #header .container .navbar {
        float: right;
        padding: 0;
        margin-top: 0;
        margin-right: 175px
    }

    #header .container .navbar .navbar-collapse {
        display: block
    }

    #header .container .order-online {
        right: 0;
        top: 15px;
        position: absolute;
        margin: 0;
        padding: 0
    }

    #header .left-nav,#header .right-nav {
        display: block
    }

    #header .left-nav .nav ul,#header .right-nav .nav ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

    #header .left-nav .nav ul li,#header .right-nav .nav ul li {
        display: inline-block
    }

    #header .left-nav .nav ul li a,#header .right-nav .nav ul li a {
        display: block;
        padding: 0 10px;
        font-size: 15px;
        font-weight: 700;
        line-height: 50px;
        color: #000
    }

    #header .left-nav .nav ul li a:hover,#header .right-nav .nav ul li a:hover {
        color: #ed1c24
    }

    #header .left-nav {
        float: left;
        margin-left: 70px
    }

    #header .right-nav {
        float: right
    }

    .contact-wrapper {
        padding-right: 80px
    }
}

@media screen and (min-width: 768px) {
    .m-visible {
        display:none!important
    }

    .d-visible {
        display: block!important
    }

    #header .container .navbar-collapse {
        padding: 0
    }
}

@media screen and (min-width: 980px) {
    #header .container #logo {
        width:158px;
        padding: 5px 0 0
    }

    #header .container .top-right .order-online {
        right: 80px;
        top: 52px
    }

    #header .container .navbar {
        margin-right: 265px;
        margin-top: 25px
    }

    section.about-us {
        padding: 40px;
        text-align: center
    }

    .menu-wrapper h2 {
        font-size: 32px
    }

    .menu-wrapper h3 {
        font-size: 30px
    }

    .menu-wrapper p {
        font-size: 20px
    }

    .menu-wrapper p.m-heading {
        font-size: 28px
    }
}

@media screen and (min-width: 992px) {
    .h1,h1 {
        font-size:32px
    }

    .h2,h2 {
        font-size: 28px
    }

    #header {
        position: static
    }

    #header .container,#header .container .navbar-inverse .navbar-collapse.collapse {
        padding: 0
    }

    .main-container h1 {
        margin-bottom: 65px
    }
}

@media screen and (min-width: 1180px) {
    #header .container .top-right .social-icon-list {
        margin-left:50px
    }

    .menu-items .menu-item {
        margin-bottom: 0
    }

    .header-top .oo-top {
        top: 12px
    }

    .header-top .oo-top a {
        font-size: 23px;
        padding-left: 10px;
        padding-right: 10px
    }

    .main-container {
        padding: 40px
    }
}

@media screen and (min-width: 1200px) {
    .menu-items .menu-item .desc {
        min-height:130px
    }

    .container {
        max-width: 1080px
    }
}

.jssor-slide-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0,0,0,.7)
}

.jssorl-009-spin img {
    animation-name: jssorl009-spin;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes jssorl-009-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.jssora051 {
    display: block;
    position: absolute;
    cursor: pointer
}

.jssora051 .a {
    fill: none;
    stroke: #fff;
    stroke-width: 360;
    stroke-miterlimit: 10
}

.jssora051:hover {
    opacity: .8
}

.jssora051.jssora051dn {
    opacity: .5
}

.jssora051.jssora051ds {
    opacity: .3;
    pointer-events: none
}

#header .container:after,.header-right-bottom:after,.header-right-top:after,.menu-items:after,.order-online-btns ul:after,.social-icon-list ul:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden
}

#header {
    padding-top: 0;
}

#header .container #logo {
    width: 160px;
    margin: 0px auto 10px auto;
    padding: 15px 0 0 0;
    text-align: center;
}

#header .container #logo h1 {
    font-size: 20px;
    line-height: 50px;
    font-weight: bold;
    color: #033e4b;
}

a, .home-text h1, .box-section h2, h2 {
    color: #033e4b;
}



#showLeftPush span, #showLeftPush::after, #showLeftPush::before {
    background: #febe0d;
}

#ommenu > ul > li > a {
    color: #000;
}

#ommenu > ul > li:hover > a {
    color: #ffffff;
}




@media screen and (min-width: 768px) {
    #ommenu > ul > li.active > a, #ommenu > ul > li:hover > a:hover {
        color: #febe0d;
    }

    #ommenu > ul > li > a {
        color: #ffffff;
        text-transform: uppercase;
    }

   

    #header {
    }

    .menu-category .menu-category-wrapper {
        max-width: 1480px;
        margin: 0 auto;
        background: #fff
    }

    .menu-category .menu-category-wrapper .menu-items-wrapper {
        display: flex;
        margin: 0 -15px
    }

    .menu-category .menu-category-wrapper .menu-item {
        flex: 1;
        padding: 0 15px
    }

    .menu-category .menu-category-wrapper .menu-title {
        top: auto;
        bottom: -25px
    }

    #header .container #logo {
        margin: 0px auto 0px auto;
        width: 105px;
        z-index: 50;
    }

    #ommenu a {
        line-height: 60px;
    }

    #header .container .navbar {
        margin-top: 16px;
    }

    #header .container .order-online {
        top: 5px;
    }
}

@media screen and (min-width: 980px) {
    #header .container {
        display: flex;
        align-items: center;
    }

    #header .container .navbar {
        margin-top: 0px;
    }

    .order-online a {
        margin-top: 0;
    }

    #header .container .top-right {
        flex: 1;
    }

    #header .container #logo {
        padding-top: 0;
    }

    #header .container .top-right .order-online {
        top: 9px;
    }
}

@media screen and (min-width: 1200px) {
    #header {
        padding:10px;
        background: #000000;
    }

    #header .container #logo {
        width: 180px;
    }

    #header .container .top-right .order-online {
        top: 29px;
    }
}

@media screen and (min-width: 1500px) {
    .container {
        max-width: 1280px;
    }
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 75px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.Review-button {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.modal-body { 
  h1 { 
    font-weight:900; 
    font-size:2.3em;
    text-transform:uppercase;
  }
  
  a.pre-order-btn { 
    color:#000;
    background-color:gold;
    border-radius:1em;
    padding:1em;


/* Varialbes */
:root {
  --font-default: "Jost", sans-serif;
  --font-heading: "Oswald", sans-serif;
  --font-optional: "Dancing Script", cursive;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #072b31;
  --dark-secondary: #1f3844;
  --white: #ffffff;
  --color-primary: #eb0029;
  --color-secondary: #f76e2a;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #ebe9e6;
  --bg-gray-secondary: #faf1df;
  --bg-gradient: linear-gradient(45deg, var(--color-primary) 30%, #ffb800 100%);
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.wrapper {
  height: 100%;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
  opacity: 1;
}

.color-style-two a:hover {
  color: var(--color-secondary);
}

.secondary a:hover {
  color: var(--color-primary);
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  min-height: 50px;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

ul {
  list-style-type: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

b {
  font-weight: 500;
}

strong {
  font-weight: 500;
}

.row {
  --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
  font-family: var(--font-default);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 42px;
  margin-bottom: 25px;
  letter-spacing: 0;
}

h2 {
  font-size: 36px;
  margin-bottom: 25px;
  letter-spacing: 0;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-heading);
}

p {
  color: var(--color-paragraph);
  margin: 0 0 7px;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-default);
}

/* ============================================================== 
    # Helper CSS
=================================================================== */

.container-full {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
}

@media (min-width: 576px) {
  .container-full {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-full {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-full {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-full {
    max-width: 90%;
    width: 100%;
    padding: 0;
  }

  .box-layout {
    width: 94%;
    margin: auto;
    border-radius: 30px;
  }
}

.container-fill {
  padding: 0 15px;
  margin: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container-fill {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-fill {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-fill {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .container-fill {
    padding: 0 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 1400px) {
  .container-stage {
    margin-left: calc((100% - 1320px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

.item-center {
  display: flex;
  align-items: center;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}

.bg-gray {
  background: var(--bg-gray);
}

.bg-dark .bg-gray {
  background: var(--dark-secondary);
}

.bg-gray-secondary {
  background: var(--bg-gray-secondary);
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-secondary {
  background-color: var(--dark-secondary) !important;
}

.bg-theme {
  background-color: var(--color-primary);
}

.color-style-two .bg-theme {
  background-color: var(--color-secondary);
}

.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
  background-color: var(--color-primary);
  background: var(--bg-gradient-reverse) !important;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  display: inline-block;
}

.text-light {
  color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
  color: var(--white);
}

.shadow {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.shadow.dark {
  position: relative;
  z-index: 1;
}

.shadow.dark:after {
  background: var(--black);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
  position: relative;
  z-index: 1;
}

.shadow.dark-hard:after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.theme {
  position: relative;
  z-index: 1;
}

.shadow.theme:after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.light {
  position: relative;
  z-index: 1;
}

.shadow.light:after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.default-padding-big {
  padding: 250px 0;
}

@media only screen and (max-width: 767px) {
  .default-padding-big {
    padding: 60px 0;
  }
}

.default-padding-top {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top {
    padding-top: 60px;
  }
}

.default-padding-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom {
    padding-bottom: 60px;
  }
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .default-padding.bottom-less {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.default-padding-bottom.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom.bottom-less {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top.bottom-less {
    margin-bottom: -30px;
  }
}

@media only screen and (min-width: 1200px) {
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.border-top {
  border-top: 1px solid #e7e7e7;
}

.border-bottom {
  border-bottom: 1px solid #e7e7e7;
}

.border-left {
  border-left: 1px solid #e7e7e7;
}

.border-right {
  border-right: 1px solid #e7e7e7;
}

.heading {
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: -5px;
  font-size: 42px;
  line-height: 1.3;
}

.heading span {
  font-weight: 400;
}

.site-heading {
  margin-bottom: 60px;
}

.site-heading strong {
  display: inline-block;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.site-heading strong::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/35.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
}

.title {
  font-weight: 500;
  font-size: 55px;
}

.site-heading .title {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px;
    margin-top: 0;
  }

  .site-heading .title {
    font-size: 36px;
  }
}

.bg-dark .title {
  color: var(--white);
}

.bg-dark .site-heading .title {
  color: var(--white);
}

.sub-title {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 20px;
  padding: 0 10px;
}

.color-style-two .sub-title {
  color: var(--color-secondary);
}

.sub-title::after {
  position: absolute;
  top: 50%;
  right: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/17.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
  margin-top: -13px;
}

.color-style-two .sub-title::after {
  background: url(../img/shape/17-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
}

.sub-title::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/18.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -13px;
}

.color-style-two .sub-title::before {
  background: url(../img/shape/18-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
}

.text-light .sub-title::after,
.text-light .sub-title::before,
.text-light.sub-title::after,
.text-light.sub-title::before {
  filter: brightness(0) invert(1);
}

.sub-title img {
  height: 13px;
}

.sub-title img:first-child {
  margin-right: 10px;
}

.sub-title img:last-child {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .sub-title {
    margin-bottom: 10px;
  }
}

.site-heading p {
  margin-bottom: 0;
  margin-top: 25px;
  padding: 0 10%;
}

.site-heading .devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
  background: var(--white);
}

@media (max-width: 767px) {
  .site-heading p {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .site-heading {
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.heading-left .heading {
  font-weight: 500;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-left .heading {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .heading-left .heading {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left p {
  margin-bottom: 0;
}

.heading-left .btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .heading-left {
    margin-bottom: 30px;
  }
}

.sub-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 20px;
  padding-right: 10px;
}

.bg-dark .sub-heading,
.bg-dark-secondary .sub-heading {
  color: var(--white);
}

.text-center .sub-heading {
  margin-bottom: 30px;
}

.color-style-two .sub-heading {
  color: var(--color-secondary);
}

.color-style-two .text-light .sub-heading {
  color: var(--white);
}

.sub-heading::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/18.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -11px;
}

.color-style-two .sub-heading::before {
  background: url(../img/shape/18-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
}

.text-light .sub-heading::before {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary .sub-heading::before,
.bg-dark .sub-heading::before {
  filter: brightness(0) invert(1);
}

.shadow .sub-heading {
  -webkit-text-fill-color: var(--white);
  font-weight: 500;
}

.bg-gradient .sub-heading {
  color: var(--white);
  background: transparent;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  opacity: 0.9;
}

.site-heading.text-light .sub-title,
.site-heading.text-light .sub-heading {
  -webkit-text-fill-color: inherit;
  color: var(--white);
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button i {
  display: inline-block;
  background: var(--color-primary);
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
}

.video-play-button i {
  font-weight: 100;
  font-size: 35px;
  position: relative;
  left: 3px;
  top: 2px;
}

.video-play-button .effect {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-play-button .effect::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: var(--color-primary);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.color-style-two .video-play-button .effect::before {
  background: var(--color-secondary);
}

.video-play-button.with-text {
  width: auto;
  background: transparent;
}

.video-play-button.with-text span {
  position: relative;
  z-index: 1;
}

.video-play-button.with-text span i {
  margin-left: 25px;
  margin-right: 30px;
  color: var(--white);
  left: -1px;
}

.video-play-button.with-text .effect {
  height: 60px;
  width: 60px;
  left: 0;
  -webkit-animation: inherit;
  animation: inherit;
  background: var(--color-primary);
  top: 0;
  opacity: 1;
  z-index: 1;
}

.color-style-two .video-play-button.with-text .effect {
  background: var(--color-secondary);
}

.video-play-button.with-text .effect::before {
  display: none;
}

.video-play-button.with-text .effect::after {
  background: var(--color-primary);
  height: 100%;
  width: 100%;
  z-index: inherit;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.color-style-two .video-play-button.with-text .effect::after {
  background: var(--color-secondary);
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*Zoom Animation */
.zoom-animation {
  -webkit-animation: zoom 2000ms ease-out infinite;
  animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
}

/* Spiner Animation */
.spiner-animation {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Spiner Animation */
.spiner-reverse-animation {
  -webkit-animation: spinnerReverse 20s infinite linear;
  animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

/* Infinite Up Down Animation */
@keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation UpDown */
.updown-animation {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation Left Right */
.leftRight-animation {
  -webkit-animation: fadeLeftRight 10s ease-out infinite;
  animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

/* Animation Right Left */
.rightLeft-animation {
  -webkit-animation: fadeRightLeft 10s ease-out infinite;
  animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

@-webkit-keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

/* Animation Zoom Up Down */
.zoomUpDown-animation {
  -webkit-animation: zoomUpDown 10s ease-out infinite;
  animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@-webkit-keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* Animation Moving */
.moving-animation {
  -webkit-animation: moving 10s ease-out infinite;
  animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

/* Animation Rotation */
@keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Border Animation */
@-webkit-keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@-webkit-keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

@keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@-webkit-keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

@keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 0;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: none !important;
  font-size: 16px;
  letter-spacing: 0;
  padding: 13px 30px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.btn:focus,
.btn.active {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  border: 2px solid transparent;
}

.btn:hover {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn.radius {
  border-radius: 30px;
}

.btn.btn-border {
  border: 2px solid #dddddd;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
}

.btn.btn-border::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-border:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-border:hover {
  border-color: var(--dark);
}

.btn.btn-border.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: #e7e7e7;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
  border-color: #e7e7e7;
  color: var(--dark);
}

.btn.btn-border.animation:hover::after {
  width: 100%;
}

.btn.btn-border-dark {
  border: 2px solid var(--dark);
  background: transparent;
}

.btn-md.btn-border-dark {
  padding: 15px 35px;
}

.btn.btn-border-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn.btn-border-dark.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
  border-color: var(--dark);
  color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
  width: 100%;
}

.btn.btn-border-theme {
  border: 2px solid var(--color-primary);
  background: transparent;
}

.btn.btn-border-theme:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
  border-color: var(--color-primary);
  color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
  width: 100%;
}

.btn.btn-border-light {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.btn.btn-border-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
  width: 100%;
}

.btn-md.btn-border-light {
  border: 1px solid var(--white);
  padding: 15px 35px;
}

.btn.btn-border.light {
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-border.light::after {
  background: var(--color-primary);
}

.btn.btn-border.light:hover {
  border-color: var(--color-primary);
}

.btn.btn-gradient {
  border: none;
  color: var(--white);
}

.btn.btn-gradient::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(
    to left,
    var(--color-primary),
    var(--color-secondary),
    var(--color-primary)
  );
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-size: 250%;
}

.btn.btn-gradient:hover::after {
  background-position: -70% 0;
}

.btn.btn-gradient.active {
  background-position: -70% 0;
}

.btn.btn-theme {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-two .btn.btn-theme {
  background: var(--color-secondary);
}

.color-style-two .btn.btn-theme:hover {
  color: var(--white);
}

.btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.shadow .btn.btn-theme::after {
  background-color: var(--white);
}

.shadow .btn.btn-theme:hover {
  color: var(--color-heading);
}

.text-light .btn.btn-theme:hover {
  color: var(--color-heading);
}

.text-light .btn.btn-theme:after {
  background: var(--white);
}

.banner-style-four .btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background: var(--white) !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-theme:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.banner-style-four .btn.btn-theme:hover {
  color: var(--color-heading) !important;
}

button {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 14px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-two button {
  background: var(--color-secondary);
}

button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
  margin-right: 4px;
}

.btn.btn-theme.secondary {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.btn.btn-theme.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
  background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
  color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
  background-color: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
  color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
  color: var(--color-heading);
  background: var(--white);
  border: none;
}

.btn.btn-light::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light:hover {
  color: var(--white);
  border-color: transparent;
}

.btn.btn-dark {
  color: var(--white);
  background: var(--dark);
  border: none;
}

.btn.btn-dark::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.shadow .btn.btn-dark::after {
  background-color: var(--white);
}

.shadow .btn.btn-dark:hover {
  color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
  width: 100%;
}

.btn.btn-dark.secondary {
  color: var(--white);
  border: none;
  background: var(--dark);
}

.btn.btn-dark.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn i {
  position: relative;
  top: 1px;
  margin-left: 5px;
}

.btn-md i {
  font-weight: 1;
  font-size: 24px;
  margin: 0;
  float: left;
  position: relative;
  top: 1px;
  margin-right: 10px;
}

.btn.text-slide {
  min-width: 150px;
  height: 55px;
  line-height: 55px;
}

.btn.text-slide span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.btn.animate-border {
  overflow: inherit;
  z-index: inherit;
  width: 200px;
  height: 55px;
  line-height: 55px;
  padding: 0;
}

.btn.animate-border:hover {
  background: transparent;
  color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
  opacity: 1;
  -webkit-animation: open 0.4s;
  /* Chrome, Safari, Opera */
  animation: open 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
  opacity: 1;
  -webkit-animation: openB 0.4s;
  /* Chrome, Safari, Opera */
  animation: openB 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border .hover-border {
  position: absolute;
  left: 0;
  top: -1px;
  height: 100%;
  width: 100%;
}

.btn.animate-border .hover-border::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-left: solid 2px var(--color-primary);
  right: 98px;
  top: -1px;
}

.btn.animate-border .hover-border::after {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-right: solid 2px var(--color-primary);
  left: 98px;
  top: -1px;
}

.btn.animate-border .hover-border-bottom {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 55px;
  border-bottom: solid 2px var(--color-primary);
  right: -1px;
  bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 100%;
  border-bottom: solid 2px var(--color-primary);
  left: 0;
  bottom: -2px;
}

.btn.animated-arrow {
  border: none;
  background: transparent;
  min-width: 14rem;
  height: auto;
  padding: 0;
}

.btn.animated-arrow .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary);
  border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 15px;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn.animated-arrow .circle .icon::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--white);
  border-right: 0.125rem solid var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  margin: 0 0 0 70px;
  color: var(--dark);
  line-height: 2;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.btn.animated-arrow:hover {
  color: var(--white);
}

.btn.animated-arrow:hover .circle {
  width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
  background: var(--white);
  -webkit-transform: translate(1.5rem, 0);
  transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
  color: var(--white);
}

.btn.circle {
  border-radius: 30px !important;
}

.btn-simple {
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  color: var(--color-paragraph);
}

.btn-simple i {
  transform: rotate(-45deg);
  display: inline-block;
  margin-left: 2px;
}

.btn-simple:hover {
  color: var(--color-primary);
}

.video-btn i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
  color: var(--white);
}

.text-light .video-btn i {
  background: var(--white);
  color: var(--color-primary);
}

.video-btn i::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--color-primary) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.text-light .video-btn i::after {
  background: var(--white) repeat scroll 0 0;
}

.text-shine {
  background: linear-gradient(
    to right,
    var(--dark) 0,
    var(--white) 10%,
    var(--color-primary) 20%
  );
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3s infinite linear;
  animation: shine 3s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 48px;
}

.animate-inout {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
  color: var(--white);
  font-size: 12px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: solid 2px var(--color-primary);
  cursor: pointer;
}

.btn-icon {
  position: relative;
  padding-left: 20px;
}

.btn-icon:hover {
  color: var(--color-primary);
}

.btn-icon::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  height: 2px;
  left: 0;
  background: var(--color-heading);
  transform: translateY(-50%);
  margin-top: -1px;
  transition: all 0.35s ease-in-out;
}

.btn-icon:hover::after {
  background: var(--color-primary);
}

.btn-icon i {
  font-weight: 500;
}

.btn-icon:hover {
  padding-left: 40px;
}

.animate-inout span {
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
  width: 0%;
  height: 0%;
  position: absolute;
  content: "";
  border-radius: 100%;
}

.animate-inout:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--white);
}

.animate-inout:before {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
  background: transparent;
  color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
  color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.animate-inout:hover {
  color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.animate-inout:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.btn-md {
  padding: 15px 40px;
}

.btn-md.btn-border {
  padding: 14px 52px;
}

.btn-sm {
  padding: 14px 45px;
}

.btn-sm.btn-border,
.btn-sm.btn-light {
  padding: 14px 45px;
}

.mfp-close-btn-in .mfp-close::after {
  display: none;
}

/* Btn Animation */

.btn-animation {
  z-index: 1;
  position: relative;
  font-size: 18px;
  display: inline-block;
  margin-left: 10px;
}

.bg-dark .btn-animation {
  color: var(--white);
}

.btn-animation i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  font-weight: 400;
  margin-right: 10px;
  transition: all 0.35s ease-in-out;
  transform: scale(0);
}

.btn-animation:hover {
  margin-left: 0;
  color: var(--color-heading);
}

.bg-dark .btn-animation:hover {
  color: var(--white);
}

.btn-animation:hover i {
  transform: scale(1);
}

.btn-animation::after {
  position: absolute;
  left: -13px;
  top: 0;
  content: "";
  height: 60px;
  width: 60px;
  border: 1px solid #c2bfbf;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
  transform: scale(1);
  z-index: -1;
}

.bg-dark .btn-animation::after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-animation:hover::after {
  transform: scale(0);
}

.btn-animation span {
  transition: all 0.35s ease-in-out;
  left: -50px;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-animation:hover span {
  left: 0;
}

.btn-animation.dark::after {
  border-color: #c5c5c5;
  z-index: -1;
}

.btn-animation.dark i {
  background: var(--color-primary);
  color: var(--white);
}

.btn-animation.dark:hover {
  color: var(--color-heading);
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

a.btn-round-animation {
  display: inline-block;
  height: 180px;
  width: 180px;
  text-align: center;
  line-height: 180px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

a.btn-round-animation i {
  display: inline-block;
  transform: rotate(-45deg);
  font-weight: 400;
  margin-left: 5px;
}

a.btn-round-animation::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation:hover {
  color: var(--white);
}

a.btn-round-animation:hover::before {
  height: 100%;
}

a.btn-round-animation:hover::after {
  opacity: 0.4;
  height: 80%;
}

a.btn-round-animation.dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
  color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--white);
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */


/* ============================================================== 
    # Nice Select Styles
=================================================================== */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--white);
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 15px;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999999;
}

.nice-select::after {
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  overflow-y: auto !important;
  height: auto;
}

.nice-select.open ::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999999;
  pointer-events: none;
}

.nice-select.disabled::after {
  border-color: #96aac1;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small::after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--white);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 500;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.mfp-iframe-holder .mfp-close {
  color: transparent;
  background: transparent;
}

.mfp-iframe-holder .mfp-close::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 20px;
  width: 20px;
  z-index: 1;
  display: block;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  color: var(--white);
}

.split-text {
  overflow: hidden;
  position: relative;
}

.split-text .line {
  overflow: hidden;
  display: none;
  padding-bottom: 5px;
}

/* ============================================================== 
    # Banner Styles
=================================================================== */
.banner-area {
  height: 100%;
  width: 100%;
  position: relative;
}

@media (max-width: 1023px) {
  .banner-area {
    height: auto;
  }
}

.banner-area div {
  height: 100%;
}

.banner-area div.swiper-slide .row div {
  height: auto;
}

.banner-area.top-pad-80 .content {
  padding-top: 80px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-80 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-80 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-90 .content {
  padding-top: 90px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-90 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-90 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-100 .content {
  padding-top: 100px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-100 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-100 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-110 .content {
  padding-top: 110px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-110 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-110 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-120 .content {
  padding-top: 120px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-120 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-120 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-130 .content {
  padding-top: 130px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-130 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-130 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-150 .content {
  padding-top: 150px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-150 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-150 .content {
    padding-top: 140px;
  }
}

.banner-area.auto-height {
  height: auto;
}

.banner-area.auto-height div {
  height: auto;
}

.banner-area.auto-height .content {
  padding: 200px 0;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height .content {
    padding: 60px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height .content {
    padding: 120px 0;
  }
}

.banner-area.auto-height .content .thumb {
  padding-left: 35px;
}

@media (max-width: 991px) {
  .banner-area.auto-height .content .thumb {
    padding-left: 0;
    margin-top: 50px;
  }
}

.banner-area.auto-height.inc-header-transparent .content {
  padding-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 140px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 220px;
  }
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .info {
  padding-top: 80px;
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .thumb {
  margin-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 50px;
  }
}

.banner-area .content {
  position: relative;
  z-index: 9;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1023px) {
  .banner-area .content {
    padding: 120px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area .content {
    padding: 90px 0;
  }
}

.banner-area h4 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translate3d(-15%, 0, 0);
  transform: translate3d(-15%, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.banner-area h2 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.banner-area p,
.banner-area ul {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  padding-right: 32%;
  margin: 0;
  visibility: hidden;
}

@media (max-width: 1023px) {
  .banner-area p {
    padding-right: 0;
  }
}

.banner-area.text-center p {
  padding-left: 13%;
  padding-right: 13%;
}

@media (max-width: 1023px) {
  .banner-area.text-center p {
    padding: 0;
  }
}

.banner-area .thumb {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.banner-area .button {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}

.banner-area .banner-slide h4 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide h2 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide p,
.banner-area .banner-slide ul {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .button {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active p,
.banner-area .banner-slide .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-area.double-items .thumb {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area.double-items .swiper-slide.swiper-slide-active .thumb {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  visibility: visible;
  opacity: 1;
}

.banner-area.double-items.bottom-thumb .content {
  padding: 0;
}

.banner-area.double-items.bottom-thumb .content .thumb {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 50px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 120px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 50px;
  }
}

.banner-area.zoom-effect .banner-thumb {
  -webkit-transition: 10s ease-out;
  transition: 10s ease-out;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
}

.banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner-area .swiper-notification {
  display: none;
}

.banner-area .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

.banner-area .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active .button {
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .banner-items {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.banner-area:hover .swiper-button-prev,
.banner-area:hover .swiper-button-next {
  opacity: 1;
}

.banner-area:hover .swiper-button-prev {
  left: 30px;
  right: auto;
}

.banner-area:hover .swiper-button-next {
  right: 30px;
  left: auto;
}

.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
  height: auto;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}

.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
  font-size: 40px;
  color: #e3ebdd;
  font-weight: 100;
}

.banner-area.navigation-circle .swiper-button-prev,
.banner-area.navigation-circle .swiper-button-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: var(--white);
}

.banner-area.navigation-circle.navigation-dark .swiper-button-prev,
.banner-area.navigation-circle.navigation-dark .swiper-button-next {
  border: 2px solid #cccccc;
  color: var(--color-heading);
}

.banner-area.navigation-dark .swiper-button-prev::after,
.banner-area.navigation-dark .swiper-button-next::after {
  color: var(--color-heading);
}

.bg-dark-secondary .banner-area.navigation-dark .swiper-button-prev::after,
.bg-dark-secondary .banner-area.navigation-dark .swiper-button-next::after {
  color: var(--white);
}

.banner-area.navigation-circle .swiper-button-prev::after,
.banner-area.navigation-circle .swiper-button-next::after {
  font-size: 16px;
}

.banner-area.navigation-right-bottom .swiper-button-prev,
.banner-area.navigation-right-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 50px;
  border-radius: inherit;
}

.banner-area.navigation-right-bottom .swiper-button-prev {
  right: 92px;
}

.banner-area.navigation-between-bottom .content {
  padding-bottom: 105px;
}

@media only screen and (min-width: 829px) and (max-width: 1023px) {
  .banner-area.navigation-between-bottom .content {
    padding-bottom: 220px;
  }
}

.banner-area.navigation-between-bottom .swiper-button-prev,
.banner-area.navigation-between-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 30px;
  border-radius: inherit;
}

.banner-area.navigation-between-bottom .swiper-button-prev {
  left: 30px;
  right: auto;
}

@media only screen and (max-width: 830px) {
  .banner-area .swiper-button-prev,
  .banner-area .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-custom .swiper-button-prev::after {
  font-family: "ElegantIcons";
  content: "\23";
  font-size: 22px;
}

.banner-area.navigation-custom .swiper-button-next::after {
  font-family: "ElegantIcons";
  content: "\24";
  font-size: 22px;
}

.banner-area.navigation-text .swiper-button-prev,
.banner-area.navigation-text .swiper-button-next {
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  left: auto;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 150px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100px;
  line-height: 100px;
}

@media only screen and (max-width: 830px) {
  .banner-area.navigation-text .swiper-button-prev,
  .banner-area.navigation-text .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-text .swiper-button-prev {
  right: 151px;
}

.banner-area.navigation-text .swiper-button-prev::after {
  font-family: var(--font-heading);
  content: "Prev";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.banner-area.navigation-text .swiper-button-next::after {
  font-family: var(--font-heading);
  content: "Next";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.banner-area.navigation-icon-solid .swiper-button-prev::after,
.banner-area.navigation-icon-solid .swiper-button-next::after {
  font-size: 30px;
}

.banner-area.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-custom-large .swiper-button-next {
  min-width: 65px;
  height: 30px;
  margin: 0;
}

.banner-area.navigation-custom-large .swiper-button-prev::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f104";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  left: 8px;
}

.banner-area.navigation-custom-large .swiper-button-prev::before {
  position: absolute;
  top: 50%;
  right: inherit;
  bottom: inherit;
  left: 12px;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-custom-large .swiper-button-next::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  right: 8px;
}

.banner-area.navigation-custom-large .swiper-button-next::before {
  position: absolute;
  top: 50%;
  right: 12px;
  bottom: inherit;
  left: inherit;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-right-botom .swiper-button-prev,
.banner-area.navigation-right-botom .swiper-button-next {
  position: absolute;
  left: auto;
  right: 30px;
  top: auto;
  bottom: 40px;
  opacity: 1;
  -webkit-transform: inherit;
  transform: inherit;
}

.banner-area.navigation-right-botom .swiper-button-prev {
  right: 60px;
}

.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-next {
  bottom: 30px;
}

.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-prev {
  right: 100px;
}

.banner-area .swiper-pagination {
  height: auto;
  bottom: 35px;
}

.banner-area .swiper-pagination span.swiper-pagination-bullet {
  height: 4px;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: inherit;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
  height: 7px;
}

@media only screen and (max-width: 767px) {
  .banner-area.include-pagination .content {
    padding-bottom: 100px;
  }
}

.banner-area .swiper-pagination-fraction span {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area .swiper-pagination-fraction span.swiper-pagination-current {
  font-size: 30px;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ============================================================== 
    # Banner Custom Style
=================================================================== */

.banner-area .align-center {
  align-items: center;
}

.banner-style-one ul {
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.banner-style-one li {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 300;
  text-transform: uppercase;
  padding: 15px;
  letter-spacing: 1px;
}

.banner-style-one li:last-child {
  border: none;
}

.banner-style-one li i {
  margin-right: 2px;
}

.banner-style-one h4 {
  font-family: var(--font-optional);
  font-size: 42px;
}

.banner-style-one h2 {
  font-size: 90px;
  line-height: 1;
  margin-bottom: 40px;
}

.banner-style-one .btn {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .banner-style-one .content {
    padding-top: 120px;
  }
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active ul {
  transition-delay: 1100ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

/* Banner Two */
.banner-area.banner-style-two .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h2 {
  transition-delay: 300ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h4 {
  transition-delay: 700ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-two h2 {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.bg-dark-secondary .banner-style-two h2 {
  color: var(--white);
}

.banner-style-two h4 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid;
  padding: 7px 20px;
}

.bg-dark-secondary .banner-style-two h4 {
  color: var(--white);
}

.banner-style-two h4 strong {
  color: var(--color-primary);
}

.banner-style-two .thumb {
  text-align: center;
  padding: 50px;
}

.banner-style-two .thumb img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 76%;
}

.banner-style-two p {
  font-size: 20px;
  padding-right: 15%;
}

/* Banner Six */
.banner-area.banner-style-six .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-six h2 {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.banner-style-six h4 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid;
  padding: 7px 20px;
}

.banner-style-six h4 strong {
  color: var(--color-primary);
}

.banner-style-six .thumb {
  text-align: center;
  padding: 50px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .banner-style-six .thumb::after {
    position: absolute;
    left: 50%;
    top: -100%;
    content: "";
    bottom: 10px;
    background: var(--white);
    width: 96%;
    z-index: -1;
    transform: translateX(-50%);
    border-radius: 400px;
    opacity: 0.1;
  }

  .banner-style-six .thumb::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 450px;
    width: 450px;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(130px);
    background: #009688;
  }
}

.banner-style-six .thumb img:nth-child(2) {
  position: absolute;
  right: -50px;
  top: 15%;
  transition: all 0.65s ease-in-out;
}

.banner-style-six p {
  font-size: 20px;
  padding-right: 15%;
}

.banner-style-six .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-style-six .shape img:first-child {
  position: absolute;
  right: 0;
  bottom: 5%;
  height: auto;
  max-width: 200px;
}

.banner-style-six .content {
  padding-top: 80px;
}

/* Banner Three */
.banner-style-three-content,
.banner-style-three-content div {
  height: 100%;
}

.banner-style-three-area {
  height: 100%;
}

.banner-style-three-content {
  padding-top: 40px;
}

.banner-style-three-content .row {
  align-items: center;
}

.banner-style-three-content .row div {
  height: auto;
}

.banner-style-three-content h4 {
  font-size: 50px;
  text-transform: uppercase;
}

.banner-style-three-content h2 {
  font-size: 150px;
  text-transform: uppercase;
  line-height: 120px;
}

.banner-style-three-content .box {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 1);
  border-top: none;
  padding: 30px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.banner-style-three-content .box::after {
  position: absolute;
  right: 0;
  content: "";
  height: 2px;
  width: 70px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  top: 0;
  z-index: -1;
}

.banner-style-three-content .box::before {
  position: absolute;
  left: 0;
  content: "";
  height: 2px;
  width: 70px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  top: 0;
  z-index: -1;
}

.banner-style-three-content .box span {
  position: relative;
  top: -15px;
  text-transform: uppercase;
  font-size: 20px;
}

.banner-style-three-content .box h3 {
  margin: 0;
  font-size: 80px;
  font-family: var(--font-default);
  line-height: 1;
}

/* Banner Four */

.banner-area.banner-style-four .content {
  padding-top: 90px;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-style-four .thumb {
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-style-four .thumb::after {
  position: absolute;
  left: 50%;
  content: "";
  height: 500%;
  width: 60%;
  background: var(--color-primary);
  bottom: -100%;
  z-index: -1;
  transform: translateX(-50%);
}

.banner-style-four .thumb img:nth-child(2) {
  position: absolute;
  left: -5%;
  top: 10%;
}

.banner-style-four h2 {
  font-size: 75px;
  text-transform: uppercase;
}

.banner-style-four h4 {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: var(--font-default);
  font-weight: 400;
  padding-bottom: 5px;
  border-radius: 30px;
}

.banner-area.banner-style-four p {
  padding-right: 10%;
  font-size: 20px;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-four .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-style-four .shape img:first-child {
  position: absolute;
  right: 100%;
  top: 20%;
  max-height: 200px;
  margin-right: 50px;
}

.banner-style-four .shape img:nth-child(2) {
  position: absolute;
  left: 100%;
  bottom: 20%;
}

.banner-style-four .shape img {
  transition: all 1s ease-in-out;
  transform: scale(0);
}

.banner-style-four .swiper-slide-active .shape img {
  transform: scale(1);
}

.banner-style-four .shape img:nth-child(2) {
  transition-delay: 0.1s;
}

/* Banner Five */
.banner-style-five-area .content {
  padding-top: 200px;
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
}

.banner-style-five-area h4 {
  text-transform: uppercase;
  font-size: 30px;
}

.banner-style-five-area h2 {
  text-transform: uppercase;
  font-size: 150px;
  line-height: 1.1;
  margin-bottom: 80px;
}

.bg-dark-secondary .banner-style-five-area h2 {
  color: var(--white);
}

.banner-style-five-area h2 strong {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.banner-style-five-area h2 strong::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/21.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
  background-size: contain;
}

.banner-style-five-thumb {
  min-height: 750px;
  background-position: center bottom !important;
  position: relative;
  z-index: 1;
}

.banner-style-five-thumb img {
  position: absolute !important;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
  z-index: -1;
}

.curve-text svg {
  fill: var(--color-heading);
  height: 170px;
  width: 170px;
  overflow: inherit;
  animation: spinner 20s infinite linear;
}

.curve-text svg {
  background: var(--bg-gray);
  border-radius: 50%;
  padding: 45px;
  position: relative;
  z-index: 1;
  font-size: 24px;
  height: 230px;
  width: 230px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  border: 10px solid var(--white);
}

.curve-text svg a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
}

.curve-text {
  display: inline-block;
  position: relative;
}

.curve-text a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 50px;
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
}

.curve-text svg path {
  fill: none;
}

.curve-text svg text {
  fill: var(--color-heading);
  letter-spacing: 4px;
}

.curve-text .thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 80px;
  width: 80px;
  background: var(--dark);
  text-align: center;
  line-height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.curve-text img {
  height: 30px;
}

/* ============================================================== 
    # About
=================================================================== */

.thumb-style-one {
  position: relative;
}

.thumb-style-one .contact-card-one {
  position: absolute;
  right: -70px;
  bottom: 0;
}

.contact-card-one a {
  display: inline-flex;
  align-items: center;
  background: var(--bg-gray);
}

.contact-card-one a .icon i {
  height: 100px;
  width: 100px;
  display: inline-block;
  text-align: center;
  line-height: 100px;
  background: var(--color-primary);
  color: var(--white);
  font-size: 30px;
}

.contact-card-one .info {
  padding: 10px 30px;
}

.contact-card-one .info h4 {
  margin: 0;
  color: var(--color-heading);
}

.contact-card-one .info span {
  text-transform: uppercase;
  font-size: 15px;
  color: var(--color-paragraph);
}

.about-style-one-info .content {
  margin-left: 150px;
  position: relative;
  padding-left: 50px;
}

.about-style-one-info .content::after {
  position: absolute;
  right: 100%;
  top: 15px;
  content: "";
  height: 2px;
  width: 100%;
  border-top: 1px solid #cccccc;
  z-index: -1;
}

.about-style-one-info .content p {
  margin-bottom: 0;
}

/* ============================================================== 
    # About Style Two
=================================================================== */
ul.launch-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-style-two-info {
  position: relative;
}

.about-style-two-info ul.launch-time {
  position: relative;
  left: -300px;
  margin-right: -300px;
  margin-top: 50px;
}

ul.launch-time > li {
  background: var(--dark);
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

ul.launch-time li h4 {
  color: var(--white);
}

ul.launch-time li {
  color: #cccccc;
}

/* ============================================================== 
    # About Style Three
=================================================================== */
.about-style-three-items {
  position: relative;
  top: -60px;
  z-index: 9;
  margin-bottom: -60px;
  overflow: hidden;
}

@media only screen and (min-width: 1400px) {
  .about-style-three-area .container-stage {
    padding-right: 0;
  }
}

.about-style-one-thumb {
  height: 100%;
}

.about-style-one-thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-style-three-items .row > div {
  padding: 0;
}

.about-style-three-content {
  padding: 50px;
  padding-left: 65px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-style-three-content img {
  max-width: max-content;
  margin: 0 auto 30px;
  height: auto;
}

.opening-hours-style-one {
  padding: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opening-hours-style-one ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.opening-hours-style-one ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.opening-hours-style-one ul li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.opening-hours-style-one ul li span {
  padding-right: 30px;
}

.opening-hours-style-one ul li .text-right {
  padding-left: 30px;
}

.about-style-three-content h2 {
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-heading);
}

.about-style-three-content p {
  color: var(--color-paragraph);
}

.about-style-three-content .contact-card-one a {
  text-align: left;
  background: var(--white);
  margin-top: 15px;
}

/* ============================================================== 
    # Feature
=================================================================== */
.feature-one-single:nth-child(2n) .feature-style-one-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  padding: 90px 37px;
}

.feature-style-one-item img {
  max-width: max-content;
  margin: auto;
  height: 100px;
  margin-bottom: 30px;
}

.feature-style-one-item {
  background: var(--bg-gray);
  text-align: center;
  overflow: hidden;
  padding: 60px 37px;
  border-radius: 30px;
}

.feature-style-one-area .row {
  --bs-gutter-x: 5px;
}

.feature-style-one-item p {
  margin: 0;
}

.feature-one-single:nth-child(2n) .feature-style-one-item h4 {
  margin-top: 15px;
  margin-bottom: 0;
}

.feature-one-single:nth-child(2n) .feature-style-one-item img {
  margin-bottom: 0;
  margin-top: 30px;
}

.feature-one-single {
  position: relative;
  z-index: 1;
}

.feature-one-single::after {
  position: absolute;
  left: 50%;
  top: -120px;
  height: 120px;
  width: 2px;
  content: "";
  transform: translateX(-50%);
  background: var(--bg-gray);
}

.feature-one-single::before {
  position: absolute;
  left: 50%;
  top: -13px;
  height: 30px;
  width: 30px;
  content: "";
  transform: translateX(-50%);
  background: var(--dark);
  border-radius: 50%;
  z-index: 1;
  border: 10px solid var(--white);
}

.feature-one-single:nth-child(odd) .feature-style-one-item {
  margin-top: 60px;
}

.feature-one-single:nth-child(odd)::before {
  top: 45px;
}

.feature-one-single:nth-child(odd)::after {
  height: 190px;
}

/* ============================================================== 
    # Feature Style Two
=================================================================== */
.feature-style-two-heading .title {
  font-size: 100px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-style-two-heading .title img {
  height: 100px;
  margin: 0 15px;
}

.feature-style-two-area {
  position: relative;
  z-index: 1;
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom center;
}

.feature-style-two-area .shape img {
  position: absolute;
  z-index: -1;
}

.feature-style-two-area .shape img:first-child {
  left: 5%;
  top: 50px;
}

.feature-style-two-area .shape img:nth-child(2) {
  bottom: 100px;
  left: 10%;
}

.feature-style-two-area .shape img:nth-child(3) {
  right: 5%;
  bottom: 30%;
}

.feature-product-item a {
  display: block;
  background-size: cover;
  background-position: center;
  padding: 50px;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.feature-product-item a:first-child {
  margin-top: 0;
}

.feature-product-item:first-child a {
  height: 100%;
  margin-top: 0;
}

.feature-product-item:first-child a .thumb {
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 70%;
}

.feature-product-item:nth-child(2) a .thumb {
  position: absolute;
  height: auto;
  right: -10%;
  bottom: -10%;
  width: 50%;
}

.feature-product-item:nth-child(2) .info {
  padding-right: 45%;
}

.feature-product-item:nth-child(2) a:last-child .thumb {
  position: absolute;
  height: auto;
  left: -10%;
  bottom: -10%;
  width: 50%;
}

.feature-product-item:nth-child(2) a:last-child .info {
  padding-left: 45%;
  padding-right: 0;
}

.feature-product-item .thumb .offer {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  height: 150px;
  width: 150px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
  font-size: 36px;
  text-transform: capitalize;
  font-family: var(--font-optional);
  font-weight: 900;
  padding: 0 25px;
  padding-right: 35px;
}

.feature-product-item .thumb .offer strong {
  display: block;
}

.feature-product-item:first-child a .thumb .offer {
  position: absolute;
  left: 0;
  top: 0;
}

.feature-product-item:nth-child(2) .thumb .offer {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-heading);
  font-family: var(--font-optional);
}

.feature-product-item:nth-child(2) a:last-child .offer {
  left: auto;
  right: 30px;
  top: -50px;
  color: #eda400;
}

.feature-product-item a .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-right: 45%;
}

.feature-product-item h2 {
  font-size: 60px;
  text-transform: uppercase;
}

.feature-product-item a .info .btn {
  max-width: max-content;
}

.feature-product-item a .info .btn-light:after {
  background: var(--dark);
}

/* ============================================================== 
    # Brand
=================================================================== */

.brand-area {
  background-repeat: no-repeat;
  background-position: right top;
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand-area::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 250px;
  width: 250px;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  background: #009688;
}

.brand-style-one-carousel img {
  max-height: 100px;
  margin: auto;
}

.brand-heaidng {
  position: relative;
  z-index: 1;
}

.brand-heaidng::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 2px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: -1;
  margin-top: -1px;
}

.brand-heaidng h3 {
  display: inline-block;
  margin: 0;
  background: var(--white);
  padding: 0 25px;
}

.bg-dark .brand-heaidng h3 {
  background: var(--dark);
}

.bg-dark .brand-heaidng h3 {
  background: var(--dark);
}

/* ============================================================== 
    # Why Choose Us
=================================================================== */

.choose-us-style-one-item {
  overflow: hidden;
}

.choose-us-style-one-items .shape img {
  position: absolute;
  bottom: -50px;
  right: 100%;
  margin-right: -50px;
}

.choose-us-style-one-items {
  background: var(--white);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.choose-us-style-one-area .relative {
  position: relative;
  z-index: 1;
}

.choose-us-style-one-area .shape img {
  position: absolute;
  bottom: 0;
  right: 100%;
}

.choose-us-style-one-info {
  padding: 80px;
  padding-left: 95px;
}

.choose-us-style-one-content {
  padding: 0;
  padding-right: 15px;
}

.fun-fact-style-one img {
  height: 80px;
  margin-bottom: 30px;
}

.fun-fact-style-one {
  padding: 50px;
}

.fun-fact-style-one .counter {
  display: flex;
  justify-content: center;
  font-size: 80px;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 15px;
}

.fun-fact-style-one .counter .operator {
  font-size: 50px;
  line-height: 1;
}

.fun-fact-style-one .medium {
  text-transform: uppercase;
}

ul.list-style-one {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

ul.list-style-one li {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  font-weight: 500;
  margin-top: 5px;
}

ul.list-style-one li::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 18px;
  width: 18px;
  background: url(../img/icon/check.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  transform: translateY(-50%);
}

.choose-us-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.choose-us-style-one-item .video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: inherit;
  background: transparent;
  z-index: 1;
  transform: translate(-50%, -50%);
}

/* ============================================================== 
    # Fun Factor
=================================================================== */

.fun-fact-style-one-area {
  position: relative;
  z-index: 1;
}

.fun-fact-style-one-area::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 20%;
  background: var(--color-primary);
  z-index: -1;
}

@media only screen and (min-width: 1600px) {
  .fun-fact-style-one-area::after {
    right: 120px;
  }
}

.fun-fact-style-one-items h2 {
  font-size: 110px;
  line-height: 1;
  text-transform: uppercase;
}

.fun-fact-style-one-content {
  border-top: 2px solid;
  margin-top: 50px;
  padding-top: 10px;
}

.fun-fact-style-one-content .fun-fact {
  display: inline-block;
  margin-right: 60px;
  margin-top: 30px;
}

.fun-fact-style-one-content .fun-fact .counter {
  display: flex;
  font-size: 70px;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}

.fun-fact-style-one-content .fun-fact span.medium {
  text-transform: uppercase;
  font-weight: 500;
}

.fun-fact-style-one-content .fun-fact:last-child {
  margin-right: 0;
}

/* ============================================================== 
    # Video BG
=================================================================== */

.video-bg-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.video-bg-area h2 {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.video-bg-area h2::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  height: 50px;
  width: 1px;
  background: var(--white);
}

/* Shape */

.video-bg-area .wavesshape {
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  width: 100%;
  height: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.video-bg-area .wavesshape img {
  width: 100%;
}

.video-bg-content {
  position: relative;
  z-index: 1;
  padding: 200px 0;
}

.video-bg-content::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--black);
  opacity: 0.5;
  z-index: -1;
}

/* ============================================================== 
    # Food Cateogry
=================================================================== */
.food-cat-item a {
  display: block;
  background-size: cover;
  background-position: center;
  padding: 50px;
  overflow: hidden;
  border-radius: 10px;
  padding-top: 150px;
  position: relative;
  z-index: 1;
}

.food-cat-item a h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.food-cat-item a span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 20px;
}

.food-cat-area {
  background-repeat: no-repeat;
  background-position: right top;
}

/* ============================================================== 
    # Services
=================================================================== */
.services-style-one-area {
  position: relative;
  z-index: 1;
}

.services-style-one-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  bottom: 45%;
  background: var(--dark);
  z-index: -1;
}

.services-style-one {
  text-align: center;
  padding: 80px 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.services-style-one:after {
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 120%)
    repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: 10px;
}

.services-style-one h4 {
  font-size: 26px;
}

.services-style-one p {
  margin: 0;
  color: var(--white);
}

.services-style-one i {
  font-size: 50px;
}

.services-style-one .icon {
  display: inline-block;
  font-size: 50px;
  margin-bottom: 30px;
  height: 100px;
  width: 100px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 100px;
  color: var(--color-primary);
  border-radius: 50%;
}

.services-style-one .icon img {
  padding: 22px;
  position: relative;
  top: -5px;
}

/* Services Swiper Nav */
.services-swiper-nav {
  position: absolute;
  right: 50px;
  bottom: 80px;
  display: flex;
  width: 200px;
  justify-content: space-between;
  align-items: center;
}

.col-xl-12 .services-swiper-nav {
  position: relative;
}

.services-swiper-nav > div {
  height: 40px;
  width: 40px;
  z-index: 9;
  position: relative;
  border-radius: 50%;
  line-height: 25px;
  background: var(--white);
  color: var(--color-heading);
}

.services-swiper-nav > div::after {
  position: absolute;
  top: 7px;
  content: "";
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  color: var(--color-heading);
}

.services-swiper-nav .services-button-next::after {
  content: "\f105";
}

.services-swiper-nav .services-button-prev::after {
  content: "\f104";
}

.services-swiper-nav .services-pagination {
  background: transparent;
  position: absolute;
  line-height: 40px;
  color: var(--white);
  font-size: 24px;
  width: auto;
  font-weight: 500;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border: none;
}

@media (min-width: 1024px) {
  .services-style-one-area .heading-left::after {
    position: absolute;
    right: 0;
    top: -120px;
    content: "";
    bottom: -126px;
    width: 300px;
    background: var(--color-primary);
    z-index: -1;
  }
}

/* ============================================================== 
    # Food Menu
=================================================================== */

#portfolio-grid {
  margin: -15px;
}

.food-menu-lists .food-menu-style-one {
  float: left;
  padding: 15px;
}

.food-menu-lists.colums-2 .food-menu-style-one {
  width: 50%;
}

.food-menu-lists.colums-3 .food-menu-style-one {
  width: 33.333%;
}

.food-menu-lists.colums-4 .food-menu-style-one {
  width: 25%;
}

/* Menu Isotop */

.mix-item-menu button {
  padding: 8px 20px;
  margin: 5px;
  border: none;
  background: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-heading);
  overflow: inherit;
}

.mix-item-menu button::after {
  display: none;
}

.mix-item-menu {
  margin-bottom: 40px;
  display: inline-block;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
}

.bg-gray .mix-item-menu {
  border-color: #cac6c6;
}

.mix-item-menu button.active {
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.mix-item-menu button::before {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: all 0.35s ease-in-out;
  transform: translateX(-50%);
}

.mix-item-menu button.active::before {
  width: 30px;
}

.food-menu-style-one .item {
  background: var(--white);
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 50px;
}

.food-menu-style-one .item .item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dddddd;
  padding-top: 20px;
}

.food-menu-style-one .item .item-price .left {
  font-family: var(--font-default);
  text-transform: uppercase;
  text-align: left;
}

.food-menu-style-one .item .item-price h5 {
  font-family: var(--font-default);
  font-weight: 700;
  margin: 0;
}

.food-menu-style-one .item .button a {
  display: block;
  color: var(--white);
  text-align: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 15px;
  background: var(--color-primary);
}

.food-menu-style-one .item .button a:hover {
  background: var(--dark);
}

.food-menu-style-one .item .item-price i {
  display: inline-block;
  font-size: 30px;
  color: var(--color-primary);
  font-weight: 100;
}

.bg-dark-secondary .food-menu-style-one .item .item-price i {
  color: var(--white);
}

.food-menu-style-one .item .food-cats {
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
  border-top: 1px solid #cccccc;
  padding-top: 15px;
  text-transform: uppercase;
  font-size: 15px;
}

.food-menu-style-one .button {
  margin-top: 25px;
}

.food-menu-style-one .item .thumb img {
  max-height: 250px;
  margin-bottom: 30px;
  border-radius: 50%;
}

/* ============================================================== 
    # Menu Style Two
=================================================================== */

.bg-dark-secondary .food-menu-style-two-area.secondary {
  background-image: none !important;
  background-color: var(--dark);
}

@media (min-width: 1199px) {
  .food-menu-style-two-area.secondary {
    max-width: 90%;
    margin: auto;
  }

  .food-menu-style-two-area.full-width,
  .full-width .food-menu-style-two-area {
    max-width: 100%;
  }
}

.food-menu-style-two-thumb {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-right: 50px;
}

.food-menu-style-two-thumb::after {
  position: absolute;
  left: 50%;
  top: -100%;
  content: "";
  height: 150%;
  width: 50%;
  background: var(--color-primary);
  z-index: -1;
  transform: translateX(-50%);
  margin-left: -25px;
}

.food-menu-style-two-area {
  overflow: hidden;
}

.food-menu-style-two:nth-child(2n) .row {
  flex-direction: row-reverse;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
  right: 0;
  top: auto;
  bottom: -100%;
  margin: 0;
  margin-left: 25px;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb {
  padding-right: 0;
  padding-left: 50px;
}

.food-menu-style-two-thumb img {
  border-radius: 50%;
  border: 15px solid var(--white);
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  background: var(--color-primary);
  padding: 10px;
}

.food-menu-style-two-content {
  margin-left: 120px;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
  margin-left: 0;
  margin-right: 120px;
}

ul.meal-type {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 15px;
}

ul.meal-type li {
  display: inline-block;
  border: 1px solid;
  margin-left: 10px;
  padding: 1px 10px;
  font-weight: 600;
  padding-top: 3px;
}

ul.meal-items li {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 5.5fr;
  grid-column-gap: 30px;
  align-items: center;
}

ul.meal-items.thumb-less li {
  display: block;
}

ul.meal-items li .thumbnail img {
  border-radius: 50%;
  margin-right: 30px;
}

ul.meal-items li .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

ul.meal-items {
  display: grid;
  grid-row-gap: 30px;
}

.food-menus-item .title,
.food-menu-items .title,
.meal-items .title {
  margin-top: 0;
}

ul.meal-items li .content .top h4 {
  margin: 0;
  background: var(--white);
  padding-right: 20px;
}

.bg-cover ul.meal-items li .content .top h4 {
  background: #f3f4ee;
}

.food-menu-items ul.meal-items li .content .top h4 {
  background: var(--dark-secondary);
}

ul.meal-items li .content .bottom {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  justify-content: space-between;
  grid-column-gap: 50px;
}

ul.meal-items li .content .bottom .right {
  text-align: right;
}

.text-light ul.meal-items li .content .bottom p {
  color: #aba8a8;
}

ul.meal-items li .content .bottom p {
  margin: 0;
  text-transform: capitalize;
}

ul.meal-items li .content .top .price {
  font-size: 24px;
  font-weight: 500;
  background: var(--white);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.bg-cover ul.meal-items li .content .top .price {
  background: #eff0e9;
}

.color-style-two ul.meal-items li .content .top .price {
  color: var(--color-secondary);
}

.food-menu-items ul.meal-items li .content .top .price {
  background: var(--dark-secondary);
}

ul.meal-items li .content .top .price span {
  line-height: 1.2;
  margin-left: 20px;
}

ul.meal-items li .content .top::before {
  position: absolute;
  left: 0;
  top: 16px;
  content: "";
  height: 1px;
  width: 100%;
  border-top: 2px dashed #6d6d6d;
  z-index: -1;
  opacity: 0.6;
}

ul.meal-items li .content .top .price span:first-child {
  margin-left: 20px;
}

.food-menu-style-two {
  margin-top: 100px;
}

.food-menu-style-two:first-child {
  margin-top: 0;
}

.food-menu-style-two-content h4.sub-heading {
  font-size: 36px;
}

.food-menu-style-two-content h4.sub-heading::before {
  margin-top: -20px;
  background-size: 140px;
}

/* ============================================================== 
    # Menu Style Three
=================================================================== */

@media only screen and (min-width: 1600px) {
  .menu-type-area {
    position: relative;
    z-index: 1;
  }

  .menu-type-area::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 120px;
    background: var(--white);
    z-index: -1;
  }
}

ul.menu-type-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.menu-type-list li h6 {
  width: 1%;
  display: table-cell;
  white-space: nowrap;
  font-weight: 300;
}

ul.menu-type-list li .line-seperator {
  width: 98%;
  display: table-cell;
  position: relative;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  bottom: 10px;
}

ul.menu-type-list li h6:first-child {
  padding-right: 20px;
}

ul.menu-type-list li h6:last-child {
  padding-left: 20px;
}

.menu-type-item h3 {
  font-weight: 400;
  margin-bottom: 30px;
}

ul.menu-type-list li {
  margin-top: 14px;
}

.menu-type-single .btn {
  display: block;
}

.menu-type-single .btn::after {
  background: var(--white);
}

.menu-type-single .btn:hover {
  color: var(--color-heading);
}

.menu-type-item {
  padding: 50px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
}

.menu-type-item .thumb {
  display: inline-block;
  position: relative;
  height: 200px;
  width: 200px;
  padding: 15px;
  border-radius: 50%;
  background: var(--dark);
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-type-item .thumb img:nth-child(2) {
  position: absolute;
  right: -20px;
  top: 0;
  z-index: -1;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.35s ease-in-out;
}

.menu-type-item:hover .thumb img:nth-child(2),
.menu-type-item.active .thumb img:nth-child(2) {
  filter: none;
}

/* ============================================================== 
    # Menu Style Four
=================================================================== */
.special-menu-style-one .thumb {
  height: 200px;
  width: 200px;
  margin: auto auto 30px;
  position: relative;
  z-index: 1;
}

.special-menu-style-one .thumb img {
  border-radius: 50%;
  border-top: 10px solid var(--color-primary);
  border-left: 10px solid var(--color-primary);
  border-right: 10px solid var(--bg-gray);
  border-bottom: 10px solid var(--bg-gray);
}

.special-menu-style-one .thumb h4 {
  margin: 0;
  position: absolute;
  right: -10px;
  bottom: -10px;
  height: 80px;
  width: 80px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border: 2px solid;
}

.special-menu-style-one {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
}

.special-menu-style-one ul {
  margin: 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 10px 0;
  margin-bottom: 20px;
  margin-top: 25px;
}

.special-menu-style-one p {
  margin-bottom: 0;
}

.special-menu-style-one .button {
  margin-top: 15px;
  text-transform: uppercase;
}

.special-menu-style-one ul li {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.special-menu-style-one .button a i {
  font-weight: 100;
  margin-left: 6px;
}

.special-menu-style-one .button a {
  display: block;
  border: 2px solid #cccccc;
  color: var(--color-heading);
  padding: 8px;
  border-radius: 6px;
  font-weight: 400;
}

/* ============================================================== 
    # Menu Style Five
=================================================================== */
ul.meal-items.style-two li {
  display: block;
}

.menu-style-five-area {
  position: relative;
  z-index: 1;
}

.menu-style-five-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 37%;
  background: var(--white);
  z-index: -1;
}

.nav-tabs.food-menu-five-navs {
  margin: 0;
  border: none;
  margin-bottom: 20px;
}

.nav-tabs.food-menu-five-navs::before,
.nav-tabs.food-menu-five-navs::after {
  display: none;
}

.nav-tabs.food-menu-five-navs .nav-item button {
  margin: 0;
  border: none;
  border-radius: 10px;
  background: var(--white);
  color: var(--color-heading);
  padding: 12px 25px;
  margin-bottom: 6px;
}

.nav-tabs.food-menu-five-navs .nav-item button::after {
  display: none;
}

.nav-tabs.food-menu-five-navs .nav-item button.active {
  background: var(--color-primary);
  color: var(--white);
}

.fun-fact-style-two {
  display: flex;
  align-items: center;
}

.fun-fact-style-two .icon {
  background: var(--white);
  height: 120px;
  width: 120px;
  text-align: center;
  padding: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  margin-right: 25px;
}

.fun-fact-style-two .counter {
  display: flex;
  align-items: center;
  font-size: 80px;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.fun-fact-style-two span.medium {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 26px;
}

/* ============================================================== 
    # Shop
=================================================================== */

.cart-btn {
  display: inline-flex;
  border: 1px solid #b5b2ba;
  padding: 11px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  align-items: center;
  font-size: 15px;
}

.cart-btn i {
  font-weight: 400;
  margin-right: 10px;
  font-size: 20px;
}

.cart-btn:hover {
  border-color: transparent;
  background: var(--color-primary);
  color: var(--white);
}

.shape-seperate img {
  position: absolute;
  max-height: 100px;
  z-index: 1;
}

.shape-seperate img:first-child {
  left: 5%;
}

.shape-seperate img:last-child {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================== 
    # Offer Product
=================================================================== */
.offer-style-one ul {
  padding: 0;
  list-style: none;
  margin: 30px 0;
}

.offer-style-one ul li {
  margin-top: 15px;
}

.offer-style-one ul li h5 {
  margin-bottom: 0;
}

.offer-style-one ul li h5,
.offer-style-one ul li span {
  width: 1%;
  display: table-cell;
  white-space: nowrap;
  font-weight: 400;
  min-width: 155px;
}

.offer-style-one ul li .line-seperator {
  width: 98%;
  display: table-cell;
  position: relative;
  border-bottom: 1px solid #dddddd;
  bottom: 10px;
}

.text-light .offer-style-one ul li .line-seperator {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-style-one ul li h5:first-child {
  padding-right: 20px;
}

.offer-style-one ul li h5:last-child {
  padding-left: 40px;
}

.offer-style-one .thumb {
  position: relative;
  z-index: 1;
}

.offer-style-one .thumb .discount-badge {
  position: absolute;
  right: -80px;
  top: 50px;
  background-image: url(../img/shape/2.png);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  height: 250px;
  display: flex;
  width: 250px;
  flex-direction: column;
  z-index: 1;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: var(--font-heading);
}

.offer-style-one .thumb .discount-badge strong {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.offer-style-one {
  position: relative;
}

.offer-style-one .shape {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0;
}

.offer-style-one .shape img {
  width: 100px;
}

/* ============================================================== 
    # Discount
=================================================================== */

.discount-area {
  position: relative;
  z-index: 1;
}

.discount-area .wavesshape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.offer-item-thumb {
  position: relative;
}

.offer-item-thumb img:nth-child(2) {
  position: absolute;
  right: -50px;
  top: 0;
  height: 200px;
}

.counter-class .counter-list {
  display: flex;
}

.counter-class .item-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.counter-class .item-list h5 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 90px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.counter-class .item-list h5 span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.discount-content h2 {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background-size: contain;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.discount-content h4 {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px 20px;
  text-transform: uppercase;
  border-radius: 7px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* ============================================================== 
    # Chef
=================================================================== */

@media (min-width: 1024px) {
  .chef-one-single:nth-last-child(2n) {
    margin-top: 80px;
  }
}

.chef-style-one-item .info {
  margin-top: 30px;
}

.chef-style-one-item .info h4 {
  margin-bottom: 5px;
}

.chef-style-one-item .info span {
  text-transform: uppercase;
}

.chef-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.chef-style-one-item .thumb img {
  border-radius: 10px;
}

.chef-one-social {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.chef-style-one-item li {
  display: inline-block;
  margin: 0 1px;
}

.chef-style-one-item li a {
  display: inline-block;
}

.chef-style-one-item li i {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: var(--color-primary);
  line-height: 40px;
  border-radius: 50%;
  color: var(--white);
  position: relative;
  bottom: -30px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: all 0.35s ease-in-out;
}

.chef-one-social li:nth-child(2) a i {
  transition: all 0.55s ease-in-out;
}

.chef-one-social li:nth-child(3) a i {
  transition: all 0.75s ease-in-out;
}

.chef-style-one-item:hover .chef-one-social li a i {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.chef-one-social li .fa-facebook-f {
  background: #3b5998;
}

.chef-one-social li i.fa-twitter {
  background: #1da1f2;
}

.chef-one-social li i.fa-dribbble {
  background: #ea4c89;
}

.chef-one-social li i.fa-linkedin-in {
  background: #0077b5;
}

/* ============================================================== 
     # Chef Single  
=================================================================== */

.chef-single-area .chef-content-top {
  bottom: -50px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.chef-single-area .chef-content-top .right-info {
  margin-bottom: 80px;
}

.chef-single-area .chef-content-top .right-info h2 {
  font-weight: 500;
}

.chef-single-area .chef-content-top .right-info p {
  padding-right: 20%;
}

.chef-single-area .chef-content-top .right-info span {
  display: block;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 25px;
}

.chef-single-area .chef-content-top .right-info ul {
  padding: 0;
  list-style: none;
  margin: 35px 0;
}

.chef-single-area .right-info ul li {
  margin-top: 10px;
  color: var(--color-heading);
  display: flex;
  align-items: center;
}

.chef-single-area .right-info ul li p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.chef-single-area .right-info > ul li i {
  min-width: 35px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  border-radius: 5px;
  margin-right: 15px;
}

.chef-single-area .right-info ul li strong {
  font-weight: 500;
}

.chef-single-area .right-info ul li a {
  font-weight: 400;
}

.chef-single-area .right-info ul li a:hover {
  color: var(--color-primary);
}

.chef-single-area .right-info .social {
  display: flex;
  margin-top: 25px;
  font-weight: 500;
  align-items: center;
}

.chef-single-area .right-info .social h4 {
  font-weight: 500;
  margin-bottom: 0;
  margin-right: 25px;
}

.chef-single-area .right-info .social ul {
  margin: 0;
  padding: 0;
  border: none;
}

.chef-single-area .right-info .social .share-link {
  position: relative;
  z-index: 1;
  margin-left: 15px;
  padding-right: 20px;
}

.chef-single-area .right-info .social .share-link > i {
  display: inline-block;
  height: 45px;
  background: var(--dark);
  line-height: 45px;
  width: 45px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
}

.chef-single-area .right-info .social ul {
  display: flex;
  list-style-type: none;
  grid-gap: 10px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0s;
}

.chef-single-area .right-info .social .share-link:hover ul {
  left: 58px;
  opacity: 1;
  pointer-events: auto;
}

.chef-single-area .right-info .social ul li {
  display: inline-block;
  margin: 0;
}

.chef-single-area .right-info .social ul li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 47px;
  background: var(--white);
  text-align: center;
  border-radius: 50% !important;
}

.chef-single-area .bottom-info h2 {
  font-weight: 500;
  margin-bottom: 25px;
}

.chef-single-area .bottom-info p:last-child {
  margin-bottom: 0;
}

.chef-single-area .bottom-info .skill-items {
  padding-left: 35px;
}

.skill-items .progress-box {
  margin-bottom: 35px;
}

.chef-single-area .chef-content-top img {
  border-radius: 30px;
}

.skill-items .progress-box:last-child {
  margin-bottom: 0;
}

.skill-items .progress-box h5 {
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.skill-items .progress-box h5 span {
  position: absolute;
  font-size: 50px;
  line-height: 1;
  top: -21px;
  left: 0;
  z-index: -1;
  opacity: 0.05;
  font-weight: 500;
}

.skill-items .skill-items {
  margin-top: 40px;
}

.skill-items .progress-box .progress {
  background: transparent;
  border-bottom: none;
  box-shadow: inherit;
  border-radius: inherit;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar {
  height: 6px;
  border-radius: 30px;
  background: var(--color-primary);
  top: 12px;
  position: relative;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar span {
  position: absolute;
  right: 0;
  top: -37px;
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  background: var(--dark);
  padding: 0 7px;
  border-radius: 5px;
}

.skill-items .progress-box .progress .progress-bar span::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--dark);
  transform: translateX(-50%);
}

.chef-single-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.chef-list-item h4 {
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 28px;
}

.chef-list-item h5 {
  font-weight: 500;
  margin-bottom: 8px;
}

.chef-list-item span {
  text-transform: none;
  margin-bottom: 5px;
  color: var(--color-heading);
  display: block;
}

.chef-list-item li {
  margin-top: 30px;
}

.chef-list-item li:first-child {
  margin-top: 0;
}

.chef-single-list ul {
  border: none;
  margin-top: 0;
  padding: 0;
}

.skill-items h3 {
  font-weight: 500;
  margin-bottom: 30px;
}

.chef-list-item ul {
  border-left: 1px solid;
  padding-left: 25px;
}

.chef-list-item ul li {
  position: relative;
  z-index: 1;
}

.chef-list-item ul li::after {
  position: absolute;
  left: -33px;
  top: 3px;
  content: "";
  height: 15px;
  width: 15px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--white);
}

/* ============================================================== 
    # Testimonial
=================================================================== */

.testimonial-style-one-area {
  overflow: hidden;
}

.testimonial-style-one-area .wavesshape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tm-proivder-thumb img {
  border: 5px solid #cccccc;
  height: 200px;
  width: auto;
  margin-left: -50px;
}

.bg-gray .tm-proivder-thumb img,
.bg-gray-secondary .tm-proivder-thumb img,
.bg-dark .tm-proivder-thumb img,
.bg-theme .tm-proivder-thumb img {
  border: 5px solid var(--white);
}

.tm-proivder-thumb img:first-child {
  transform: rotate(5deg);
}

.tm-proivder-thumb img:nth-child(2) {
  position: relative;
  top: 50px;
  transform: rotate(-5deg);
}

.testimonial-style-one {
  padding-bottom: 60px;
}

.testimonial-style-one .content p {
  font-size: 30px;
  line-height: 1.5;
}

.tm-proivder-thumb {
  margin-top: 50px;
  margin-left: 50px;
}

.tm-review i {
  color: #f7a105;
}

.tm-review {
  display: block;
  margin-bottom: 15px;
}

.testimonial-style-one .provider h4 {
  margin-bottom: 15px;
  font-size: 30px;
}

.testimonial-style-one .provider {
  margin-bottom: 30px;
}

.testimonial-style-one .provider span {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--color-primary);
}

.testimonial-pagination {
  position: relative;
  margin-top: 50px;
  margin-bottom: -15px;
}

.testimonial-pagination .swiper-pagination {
  position: inherit;
}

.testimonial-pagination .swiper-pagination span.swiper-pagination-bullet {
  background: transparent;
  height: 20px;
  width: 20px;
  border: 2px solid;
  position: relative;
  z-index: 1;
}

.testimonial-pagination
  .swiper-pagination
  span.swiper-pagination-bullet::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bg-dark
  .testimonial-pagination
  .swiper-pagination
  span.swiper-pagination-bullet::after {
  background: var(--white);
}

/* ============================================================== 
    # Reservation
=================================================================== */
.reservation-thumb {
  position: relative;
  border-right: 3px solid var(--color-primary);
}

.reservation-thumb > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.reservation-style-one-items {
  border-radius: 10px;
}

.reservation-info {
  padding: 80px 120px;
}

.reservation-form label {
  display: block;
  color: var(--color-heading);
  width: 100%;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.6px;
}

.bg-dark .reservation-form label {
  color: var(--white);
}

.reservation-form.light label {
  color: var(--color-paragraph);
}

.reservation-form .form-group {
  margin-bottom: 15px;
}

.reservation-form .input-group {
  margin-bottom: 15px;
}

.reservation-form select {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  background: transparent;
  color: var(--color-heading);
  border: 1px solid #cccccc;
}

.bg-dark .reservation-form select {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reservation-form input,
.reservation-form input:focus {
  padding: 0 15px;
  background: transparent;
  border: 1px solid #e7e7e7;
  color: var(--color-heading);
  box-shadow: none;
}

.bg-dark .reservation-form input,
.bg-dark .reservation-form input:focus {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.reservation-form .input-group span.input-group-addon {
  background: var(--color-primary);
  color: var(--white);
  padding: 0 20px;
  line-height: 50px;
  border-radius: 0 5px 5px 0;
  border: none;
}

.reservation-form.light .input-group span.input-group-addon {
  background: var(--white);
  color: var(--color-heding);
  border: 1px solid #e7e7e7;
}

.reservation-form.light .input-group span.input-group-addon i {
  color: var(--color-primary);
}

.reservation-form .input-group input {
  border-right: none;
  border-radius: 5px 0 0 5px !important;
}

.reservation-form > i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 70px;
  text-align: center;
  background: var(--color-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 30px;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  border: 5px solid;
}

.reservation-form h3 {
  margin-bottom: 30px;
}

.reservation-form.light button {
  margin-top: 15px;
}

.bg-dark .reservation-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.bg-dark .reservation-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.bg-dark .reservation-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.bg-dark .reservation-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.bg-dark .reservation-form.light input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666666;
}

.bg-dark .reservation-form.light input::-moz-placeholder {
  /* Firefox 19+ */
  color: #666666;
}

.bg-dark .reservation-form.light input:-ms-input-placeholder {
  /* IE 10+ */
  color: #666666;
}

.bg-dark .reservation-form.light input:-moz-placeholder {
  /* Firefox 18- */
  color: #666666;
}

.bg-dark .reservation-form select option {
  color: var(--color-heading);
  padding: 20px;
}

.bg-dark .reservation-form button::after {
  background: var(--white);
}

.reservation-form.light button::after {
  background: var(--dark);
}

.bg-dark .reservation-form button:hover {
  color: var(--color-heading);
}

.reservation-form .nice-select {
  background: transparent;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
}

.bg-dark .reservation-form .nice-select {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.reservation-form .nice-select li.option {
  color: var(--color-heading);
  padding: 5px 20px;
  line-height: 30px;
  border-bottom: 1px solid #e7e7e7;
}

.reservation-style-one-items > .row {
  margin: 0;
}

.reservation-thumb .icon {
  display: inline-flex;
  height: 120px;
  width: 120px;
  text-align: center;
  line-height: 120px;
  background: var(--white);
  position: absolute;
  right: -60px;
  top: 80px;
  color: var(--color-primary);
  font-size: 40px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  z-index: 9;
  flex-direction: column;
  justify-content: center;
}

.reservation-thumb img {
  border-radius: 10px 0 0 10px;
}

.reservation-thumb .icon img {
  padding: 25px;
}

/* ============================================================== 
    # Reservation
=================================================================== */

.reservation-style-two-area {
  position: relative;
  z-index: 1;
}

.reservation-banner img {
  height: 100%;
  width: 48%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.reservation-tabs {
  padding: 120px 0;
  position: relative;
  display: flex;
  left: -135px;
  margin-right: -135px;
}

.reservation-tabs .nav-tabs .nav-item {
  display: block;
  margin: 16px 0;
}

.reservation-tabs .nav-tabs .nav-item button {
  display: flex;
  margin: 0;
  padding: 0;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 150px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  transition: all 0.35s ease-in-out;
  text-transform: uppercase;
}

.reservation-tabs .nav-tabs .nav-item button img {
  height: 50px;
  margin-bottom: 10px;
  transition: all 0.35s ease-in-out;
}

.reservation-tabs .nav-tabs .nav-item button.active img {
  filter: brightness(0) invert(1);
}

.reservation-tabs .nav-tabs {
  margin: 0;
  padding: 0;
  border: none;
  margin-right: 50px;
  list-style: none;
  margin-top: -20px;
}

.reservation-tabs .tab-content {
  width: 100%;
}

.reservation-tabs .nav-tabs .nav-item button::after {
  display: none;
}

.reservation-tabs .nav-tabs .nav-item button.active {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # Gallery
=================================================================== */
.gallery-items.colums-3 .pf-item {
  float: left;
  padding: 15px;
  width: 33.3333%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-items.colums-3 .pf-item {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .gallery-items.colums-3 .pf-item {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  #portfolio-grid {
    margin: 0;
  }

  .gallery-items.colums-3 .pf-item {
    width: 100%;
    padding: 15px 0;
  }
}

button.mfp-arrow::after {
  display: none;
}

.gallery-style-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-style-one .overlay {
  display: inline-block;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 10px;
  transition: all 0.35s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
}

.gallery-style-one .overlay h4 {
  margin: 0;
}

.gallery-style-one .overlay span {
  color: var(--color-primary);
}

.gallery-style-one:hover .overlay {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.gallery-style-one img {
  max-width: none;
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
}

.gallery-style-one:hover img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.gallery-style-one i {
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--bg-gray-secondary);
  border-radius: 50%;
  color: var(--color-primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.gallery-style-one::after {
  position: absolute;
  left: 50px;
  top: 50px;
  right: 50px;
  bottom: 50px;
  border-radius: 10px;
  background: var(--color-primary);
  content: "";
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
  mix-blend-mode: multiply;
}

.gallery-style-one:hover::after {
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

.gallery-style-one:hover i {
  margin: 0;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================================== 
    # Discount
=================================================================== */

.dicount-thumb {
  position: relative;
  z-index: 1;
}

.dicount-thumb img:nth-child(2) {
  position: absolute;
  right: 0;
  top: 100px;
}

.discount-info h2 {
  text-transform: uppercase;
  line-height: 1.1;
  background: var(--color-primary);
  display: inline-block;
  color: var(--white);
  max-width: max-content;
  padding: 15px 100px;
  clip-path: polygon(0 1%, 100% 0, 91% 51%, 100% 100%, 0 100%, 8% 57%);
  font-weight: 500;
}

.discount-info {
  overflow: hidden;
  height: 100%;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.discount-info p {
  font-size: 20px;
}

.offer-fun-fact .fun-fact .counter {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 10px;
  justify-content: center;
  font-weight: 500;
}

.offer-fun-fact .fun-fact {
  display: inline-block;
  border-right: 1px solid;
  margin-right: 30px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.offer-fun-fact {
  display: block;
  width: 100%;
  border: 1px solid;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  border-radius: 100px;
}

.offer-fun-fact .fun-fact:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}

.offer-fun-fact .fun-fact span.medium {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.discount-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.discount-info ul li {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding-left: 37px;
  text-align: left;
  margin-top: 5px;
  color: var(--color-paragraph);
}

.discount-info ul li::after {
  position: absolute;
  left: 0;
  top: 7px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  height: 23px;
  width: 23px;
  line-height: 23px;
  background: var(--dark);
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 600;
}

.discount-offer-area .shape img {
  position: absolute;
  right: 2%;
  bottom: -30px;
  height: 120px;
}

/* ============================================================== 
    # Home Blog
=================================================================== */
.home-blog-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.home-blog-style-one-item .thumb img {
  border-radius: 10px;
  margin-bottom: 30px;
}

.home-blog-style-one-item .thumb ul.blog-meta {
  position: absolute;
  left: 30px;
  top: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog-style-one-item .thumb ul.blog-meta li {
  display: inline-block;
  margin-right: 3px;
}

.home-blog-style-one-item .thumb ul.blog-meta li a {
  display: inline-block;
  background: var(--white);
  text-transform: uppercase;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 14px;
}

.home-blog-style-one-item .meta-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog-style-one-item .meta-tags li {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  margin-right: 5px;
  padding-right: 12px;
}

.home-blog-style-one-item .meta-tags li::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  border-radius: 50%;
  transform: translateY(-50%);
}

.home-blog-style-one-item .meta-tags li a {
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-paragraph);
}

.home-blog-style-one-item .meta-tags li:last-child::after {
  display: none;
}

.home-blog-style-one-item .meta-tags li a:hover {
  color: var(--color-primary);
}

.home-blog-style-one-item .post-title {
  line-height: 1.4;
}

.home-blog-style-one-item h4.post-title {
  font-size: 26px;
}

/* ============================================================== 
    # Contact
=================================================================== */
.maps-area {
  position: relative;
  z-index: 1;
}

.maps-area iframe {
  width: 100%;
  height: 800px;
}

.contact-style-one-info {
  background: var(--white);
  padding: 80px;
}

.contact-style-one-items {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.contact-style-one-box {
  position: relative;
}

.contact-style-one-info li {
  display: flex;
  margin-top: 30px;
}

.contact-style-one-info li i {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  margin-right: 20px;
}

.contact-style-one-info li:nth-child(2) i {
  background: var(--color-secondary);
}

.contact-style-one-info li:nth-child(3) i {
  background: var(--dark);
}

.contact-style-one-info li p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.contact-style-one-info li h5 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 20px;
}

.contact-style-one-info li a {
  font-weight: 400;
}

.contact-style-one-info h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}

.contact-style-one-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 50px;
}

.contact-style-one-items,
.contact-style-one-items div {
  height: 100%;
}

.contact-style-one-items div.row div {
  height: auto;
}

.contact-style-one-items div.row {
  align-items: center;
}

.contact-form-style-one {
  padding: 60px 80px;
  border-radius: 10px;
  position: relative;
  background: var(--bg-gray);
  z-index: 9;
}

.contact-form-style-one input,
.contact-form-style-one textarea,
.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
  margin-bottom: 15px;
  padding: 15px;
  border: none;
  font-size: 18px;
  border-radius: 6px;
  background: var(--white);
}

.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
  box-shadow: inherit;
}

.contact-form-style-one textarea {
  min-height: 180px;
}

.contact-form-style-one button {
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 6px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 17px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
  padding: 13px 52px;
}

.contact-form-style-one button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.contact-form-style-one button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.contact-form-style-one button:hover {
  color: var(--white);
}

img.loader {
  margin-left: 8px;
}

/* ============================================================== 
    # 404 page
=================================================================== */

.error-page-area {
  position: relative;
  z-index: 1;
}

.error-page-area .shape-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: left !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-page-area .shape-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: right !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-box h1 {
  font-size: 150px;
  line-height: 110px;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.error-box p {
  padding: 0 10%;
}

/* ============================================================== 
    # Footer
=================================================================== */
footer.footer-style-one {
  padding-top: 70px;
  overflow: hidden;
}

footer .bg-dark,
footer .bg-dark li,
footer .bg-dark a,
footer .bg-dark p,
footer.bg-dark,
footer.bg-dark li,
footer.bg-dark a,
footer.bg-dark p {
  color: #cccccc;
}

footer .bg-dark a:hover {
  color: var(--white);
}

footer .f-item img {
  height: 61px;
  margin-bottom: 30px;
}

ul.opening-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.opening-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  color: var(--white);
  text-transform: uppercase;
}

ul.opening-list li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

footer .link li {
  margin-top: 10px;
}

footer .link li:first-child {
  margin-top: 0;
}

footer a {
  font-weight: 400;
  font-family: var(--font-default);
}

footer .widget-title {
  margin-bottom: 30px;
}

.f-item.newsletter form {
  position: relative;
}

.f-item.newsletter form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  padding: 0;
  color: var(--white);
  box-shadow: none;
}

.f-item.newsletter form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.f-item.newsletter form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.f-item.newsletter form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.f-item.newsletter form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.footer-socila-items {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-socila-items h4 {
  margin: 0;
}

.f-item.newsletter form button {
  padding: 0;
  right: 0;
  top: 0;
  line-height: 50px;
  background: var(--color-primary);
  width: 100%;
  margin-top: 15px;
}

.f-item.newsletter form button::after {
  background: var(--white);
}

.f-item.newsletter form button:hover {
  color: var(--color-heading);
}

.f-item.newsletter form button i {
  font-weight: 400;
  transform: rotate(-45deg);
  margin-left: 3px;
}

.footer-item fieldset {
  display: flex;
  align-items: baseline;
  margin: 0;
  margin-top: 10px;
}

.footer-item fieldset input {
  min-height: auto;
  position: relative;
  margin-right: 10px;
}

.footer-item fieldset label {
  margin: 0;
}

.f-item.newsletter {
  position: relative;
  z-index: 1;
  padding: 0 50px;
}

.f-item.newsletter::after {
  position: absolute;
  left: 0;
  top: -300px;
  content: "";
  height: 500%;
  width: 100%;
  background: var(--dark);
  z-index: -1;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .f-item.newsletter::after {
  background: var(--dark);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

ul.contact-widget {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.contact-widget li {
  display: flex;
  margin-top: 20px;
}

ul.contact-widget li i {
  height: 35px;
  width: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 34px;
  font-weight: 500;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 80px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom img {
  height: 60px;
}

footer .bg-dark .footer-bottom p {
  margin: 0;
  color: var(--color-paragraph);
}

ul.footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.footer-social li {
  display: inline-block;
  margin-left: 5px;
}

ul.footer-social li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: var(--white);
  text-align: center;
  border-radius: 50%;
  color: var(--color-heading);
}

ul.footer-social li a:hover {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # Responsive CSS
=================================================================== */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Banner Two */
  .banner-style-six h2 {
    font-size: 60px;
  }

  .banner-style-six .content {
    padding-top: 100px;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: 0;
  }

  .banner-style-two h2 {
    font-size: 60px;
  }

  /* Banner Four */
  .banner-style-four h2 {
    font-size: 60px;
  }

  /* About */
  .about-style-one-info .content {
    padding-left: 0;
    margin-left: 0;
  }

  .about-style-one-info .content::after {
    display: none;
  }

  /* About Three */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 120px;
  }

  .about-style-three-content {
    padding: 120px;
  }

  /* Experience */
  .fun-fact-style-one-items h2 {
    font-size: 60px;
    line-height: 1.2;
  }

  /* Feature */
  .feature-style-one-item {
    padding-left: 25px;
    padding-right: 20px;
  }

  .feature-one-single:nth-child(2n) .feature-style-one-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Why Choose Us */
  .choose-us-style-one-item .thumb img {
    width: 100%;
  }

  .choose-us-style-one-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Food Menu */
  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one {
    width: 50%;
  }

  /* Food Menu Two */
  .food-menu-style-two-content {
    margin-left: 20px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin-right: 20px;
  }

  ul.meal-items li .content .bottom p {
    font-size: 16px;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    width: 40%;
  }

  .thumb-style-two {
    padding-right: 30px;
  }

  /* Feature Product */
  .feature-product-item a .info {
    padding-right: 30%;
  }

  /* Offer */
  .offer-style-one .shape img {
    width: 50px;
  }

  /* Chef Details */
  .chef-single-area .chef-content-top {
    margin: 0;
    bottom: 0;
  }

  .chef-single-area .chef-content-top .right-info {
    margin-bottom: 120px;
  }

  /* Footer */
  .footer-style-one {
    padding: 80px 30px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  ul.opening-list li {
    display: block;
  }

  ul.opening-list span.text-end {
    text-align: left !important;
    display: block;
  }

  .footer-bottom {
    position: relative;
    bottom: -1px;
  }
}

@media screen and (max-width: 991px) {
  /* global reset - start */
  .order-last {
    order: 0;
  }
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Topbar */

  .top-bar-area {
    background: var(--dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .top-bar-area.bg-transparent {
    background: var(--color-primary) !important;
  }

  .top-bar-area .item-flex {
    justify-content: center;
  }

  .top-bar-area .text-end {
    margin-top: 10px;
    display: none;
  }

  .topbar-two-items .logo {
    display: none;
  }

  .top-bar-style-two {
    padding: 15px 0;
  }

  .topbar-two-items {
    justify-content: center;
  }

  .topbar-two-items .topbar-info {
    margin: 0 25px;
  }

  /* Banner Two */
  .banner-style-two h2 {
    font-size: 90px;
  }

  .banner-style-two .content {
    text-align: center;
  }

  .banner-style-two p {
    padding: 0 10%;
  }

  /* Banner Five */
  .banner-style-five-area h2 {
    font-size: 120px;
  }

  .banner-style-five-area .content {
    padding-top: 120px;
  }

  .banner-style-five-thumb {
    min-height: 500px;
  }

  /* Banner Six */
  .banner-style-six {
    text-align: center;
  }

  .banner-style-six p {
    padding: 0;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: 10%;
    top: 5%;
  }

  /* Banner Style Three */
  .banner-style-three-content h2 {
    font-size: 100px;
    line-height: 1;
  }

  .banner-style-three-content h4 {
    font-size: 40px;
  }

  .banner-style-three-area {
    height: auto;
  }

  .banner-style-three-content {
    padding: 120px 0;
  }

  /* Banner Four */
  .banner-area.banner-style-four .content {
    padding-top: 120px;
  }

  .banner-style-four .thumb {
    margin-top: 50px;
    display: none;
  }

  .banner-style-four p {
    padding: 0;
  }

  /* About */
  .thumb-style-one {
    margin-bottom: 50px;
  }

  .thumb-style-one .contact-card-one {
    right: auto;
    left: 0;
  }

  .about-style-one-info {
    overflow: hidden;
  }

  /* About Two */
  .thumb-style-two {
    margin-bottom: 50px;
  }

  .about-style-two-info ul.launch-time {
    left: 0;
    margin: 0;
    margin-top: 50px;
  }

  /* About */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 120px;
  }

  .about-style-three-content {
    padding: 80px;
  }

  /* Feature */
  .feature-one-single:nth-child(odd) .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single:first-child .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single::before {
    display: none;
  }

  .feature-one-single::after {
    display: none;
  }

  .feature-one-single:nth-child(2n) .feature-style-one-item {
    padding: 60px 37px;
  }

  .feature-style-one-area .row {
    --bs-gutter-x: 30px;
  }

  .feature-style-one-area {
    padding-top: 90px;
  }

  /* Experience */
  .fun-fact-style-one-area::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 19%;
  }

  .fun-fact-style-one-content {
    margin-top: 30px;
    padding-top: 0;
  }

  .fun-fact-style-one-area {
    text-align: center;
  }

  .fun-fact-style-one-content .fun-fact {
    margin: 0 50px;
    margin-top: 30px;
  }

  .fun-fact-style-one-area .thumb {
    margin-top: 50px;
  }

  .fun-fact-style-one-content .fun-fact:last-child {
    margin-right: 50px;
  }

  .fun-fact-style-one-items h2 {
    font-size: 80px;
    line-height: 1.2;
  }

  /* Reservation */
  .reservation-banner img {
    width: 100%;
    position: relative;
    max-height: 450px;
  }

  .reservation-tabs {
    left: 0;
    margin: 0;
    padding: 120px 0;
    display: block;
  }

  .reservation-tabs .nav-tabs {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .reservation-tabs form.reservation-form {
    text-align: left;
    background: var(--bg-gray);
    padding: 80px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .reservation-tabs .nav-tabs .nav-item {
    text-align: center;
    display: inline-block;
    margin: 0 15px;
    margin-bottom: 25px;
  }

  .reservation-tabs .nav-tabs .nav-item button {
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .reservation-tabs .tab-content {
    text-align: center;
  }

  .reservation-form input,
  .reservation-form input:focus {
    border-color: #cccccc;
  }

  .reservation-form .nice-select {
    border-color: #cccccc;
  }

  .reservation-tabs .tab-content h4.sub-heading::before {
    display: none;
  }

  .reservation-tabs .tab-content h4.sub-heading {
    padding-right: 0;
  }

  /* Service */
  .services-swiper-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }

  /* Food Menu */
  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one {
    width: 50%;
  }

  .mix-item-menu button {
    padding: 8px 15px;
  }

  /* Food Menu Two */
  .food-menu-style-two-thumb::after {
    display: none;
  }

  .food-menu-style-two-thumb {
    padding: 0 !important;
    margin-bottom: 50px;
  }

  .food-menu-style-two-thumb img {
    max-height: 500px;
  }

  .food-menu-style-two-content {
    margin: 0;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
    left: -50%;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin: 0;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    display: none;
  }

  .fun-fact-style-two {
    justify-content: center;
  }

  /* Feature Product */
  .feature-product-item {
    margin-top: 30px;
  }

  .feature-product-item:first-child {
    margin-top: 0;
  }

  .feature-product-item:first-child a .thumb .offer {
    top: 0;
    left: -30px;
  }

  .feature-product-item:first-child a .thumb {
    max-width: 50%;
    top: 80px;
    bottom: 0;
    transform: none;
  }

  .feature-product-item a .info {
    padding-right: 40%;
  }

  .shape-seperate {
    display: none;
  }

  /* Food Offer */
  .offer-style-one .thumb {
    margin-bottom: 70px;
  }

  .offer-style-one .thumb .discount-badge {
    right: auto;
    left: 0;
    bottom: -50px;
    top: auto;
  }

  .offer-style-one .thumb .discount-badge strong {
    font-size: 30px;
  }

  .offer-style-one .thumb .discount-badge {
    font-size: 18px;
    height: 180px;
    width: 180px;
  }

  /* Reservation */
  .reservation-thumb .icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    top: auto;
  }

  .reservation-thumb > img {
    height: 400px;
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    border-radius: 0;
  }

  .reservation-thumb {
    border: none;
    padding: 0;
  }

  .reservation-style-one-items {
    overflow: hidden;
  }

  .reservation-info {
    margin-top: 50px;
  }

  /* Gift Vourcher */
  .dicount-thumb img:nth-child(2) {
    right: 20%;
    top: 50px;
  }

  /* Brand */
  .brand-heaidng::after {
    display: none;
  }

  .brand-heaidng h3 {
    display: block;
    display: block;
    padding: 0;
    text-align: center;
  }

  .brand-area {
    text-align: center;
  }

  /* Chef Single */

  .chef-single-area .chef-content-top {
    bottom: 0;
    margin: 0;
  }

  .chef-single-area .chef-content-top .thumb {
    margin-bottom: 30px;
  }

  .chef-single-area .chef-content-top .thumb img {
    width: 100%;
  }

  .chef-single-area .chef-content-top .right-info p {
    padding: 0;
  }

  .chef-single-area .right-info > ul li i {
    min-width: 40px;
  }

  .chef-single-area .bottom-info .skill-items {
    padding: 0;
    margin-top: 50px;
  }

  /* Contact */
  .contact-style-one-items {
    position: relative;
  }

  .contact-style-one-items,
  .contact-style-one-items div {
    height: auto;
  }

  .contact-style-one-info {
    background: transparent;
    padding: 0;
    padding-top: 100px;
  }

  .maps-area iframe {
    height: 450px;
  }

  .contact-style-one-info ul {
    margin-top: 40px;
  }

  /* Discount */
  .offer-item-thumb img:nth-child(2) {
    right: auto;
    height: 150px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  .offer-item-thumb {
    text-align: center;
    margin-top: 90px;
  }

  .discount-area {
    text-align: center;
  }

  .discount-area p {
    padding: 0 10%;
  }

  .counter-class .item-list {
    justify-content: center;
  }

  /* Footer */

  .footer-bottom {
    background: var(--dark);
    text-align: center;
  }

  .f-item.newsletter::after {
    display: none;
  }

  .f-item.newsletter {
    padding: 0;
    padding-left: 30px;
  }

  footer.footer-style-one {
    position: relative;
    z-index: 1;
  }

  footer.footer-style-one::after {
    position: absolute;
    left: 50%;
    top: 0;
    content: "";
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }

  .f-item.link {
    padding-left: 30px;
  }

  .f-item.contact {
    padding-right: 30px;
  }

  .footer-style-one {
    padding: 80px 50px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .footer-style-one .about {
    padding-right: 30px;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 16px;
  }

  ul.footer-social li {
    margin: 0 5px;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .heading {
    margin-top: 0;
    line-height: 1.2;
    font-size: 36px;
  }

  /* Topbar */
  .top-bar-area {
    display: none;
    background: var(--dark) !important;
  }

  .top-bar-area .item-flex {
    justify-content: center;
  }

  .top-bar-area .text-end {
    margin-top: 10px;
    display: none;
  }

  .top-bar-area {
    padding: 20px 0;
  }

  .topbar-two-items .logo {
    display: none;
  }

  .top-bar-style-two {
    padding: 15px 0;
    display: none;
  }

  .topbar-two-items {
    justify-content: center;
  }

  .topbar-two-items .topbar-info {
    margin: 0 25px;
  }

  .sub-heading::before {
    display: none;
  }

  .sub-heading {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .sub-title::before,
  .sub-title::after {
    display: none;
  }

  /* Banner One */
  .banner-style-one h2 {
    font-size: 50px;
  }

  .banner-style-one li {
    display: block;
    width: 100%;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 15px;
    font-weight: 500;
  }

  .banner-style-one ul {
    display: block;
  }

  .banner-style-one {
    text-align: center;
  }

  /* Banner Two */
  .banner-style-two h2 {
    font-size: 10vw;
  }

  .banner-style-two h4 {
    font-size: 20px;
  }

  .banner-style-two p {
    padding: 0;
  }

  /* Banner Six */
  .banner-style-six {
    text-align: center;
  }

  .banner-style-six h2 {
    font-size: 50px;
    line-height: 1.2;
  }

  .banner-style-six h4 {
    font-size: 20px;
  }

  .banner-style-six p {
    padding: 0;
    font-size: 17px;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: auto;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
  }

  .banner-area .thumb {
    padding: 0;
    margin-top: 50px;
  }

  .banner-style-six .thumb {
    padding-top: 90px;
  }

  /* Banner Style Three */
  .banner-style-three-content {
    padding: 80px 0;
  }

  .banner-style-three-content h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .banner-style-three-content h4 {
    font-size: 30px;
  }

  .banner-style-three-area {
    height: auto;
  }

  /* Banner Style Four */
  .banner-style-four h4 {
    font-size: 18px;
  }

  .banner-style-four h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .banner-style-four p {
    padding: 0;
    font-size: 17px;
  }

  .banner-style-four {
    text-align: center;
  }

  .banner-style-four .thumb::after {
    display: none;
  }

  .banner-area.banner-style-four p {
    padding: 0;
  }

  .banner-style-four .thumb img:nth-child(2) {
    left: auto;
    right: 5%;
    height: 100px;
    top: -14px;
  }

  /* Banner Five */
  .banner-style-five-area h2 {
    font-size: 12vw;
  }

  .banner-style-five-area .content {
    padding-top: 80px;
  }

  .banner-style-five-area h2 {
    margin-bottom: 50px;
  }

  .banner-style-five-thumb {
    min-height: 400px;
  }

  /* About */
  .thumb-style-one .contact-card-one {
    right: auto;
    left: 0;
  }

  .thumb-style-one {
    margin-bottom: 40px;
  }

  .about-style-one-info .content {
    margin: 0;
    padding: 0;
  }

  .about-style-one-info .content::after {
    display: none;
  }

  /* About Two */
  .thumb-style-two {
    margin-bottom: 30px;
  }

  .about-style-two-info ul.launch-time {
    left: 0;
    margin: 0;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  /* About Three */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 60px;
  }

  .about-style-three-content {
    padding: 50px;
  }

  .opening-hours-style-one {
    padding: 50px;
  }

  .about-style-three-content .contact-card-one a {
    justify-content: center;
  }

  /* Feature */
  .feature-one-single:nth-child(odd) .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single:first-child .feature-style-one-item {
    margin-top: 0;
  }

  .feature-one-single::before {
    display: none;
  }

  .feature-one-single::after {
    display: none;
  }

  /* Discount */
  .discount-content h2 {
    font-size: 15vw;
  }

  .offer-item-thumb img:nth-child(2) {
    right: auto;
    height: auto;
    max-width: 150px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  .offer-item-thumb {
    text-align: center;
    margin-top: 90px;
  }

  .discount-area {
    text-align: center;
  }

  .counter-class .item-list {
    justify-content: center;
  }

  /* Experience */
  .fun-fact-style-one-area::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 19%;
  }

  .fun-fact-style-one-items h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .fun-fact-style-one-content {
    margin-top: 30px;
    padding-top: 0;
  }

  .fun-fact-style-one-area {
    text-align: center;
  }

  .fun-fact-style-one-content .fun-fact {
    margin: 0 20px;
    margin-top: 30px;
  }

  .fun-fact-style-one-area .thumb {
    margin-top: 50px;
  }

  .fun-fact-style-one-content .fun-fact:last-child {
    margin-right: 20px;
  }

  /* Why Choose us */
  .choose-us-style-one-info {
    padding: 50px;
  }

  .choose-us-style-one-content {
    padding: 0;
  }

  /* Video BG */

  .video-bg-content {
    padding: 80px 0;
  }

  .video-bg-area .wavesshape {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 0;
  }

  /* Food Category */
  .food-cat-area {
    background-size: 50%;
  }

  /* Service */
  .services-swiper-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-bottom: 30px;
    margin-top: 10px;
  }

  /* Food Menu */

  .food-menu-lists .food-menu-style-one {
    padding: 15px 0;
  }

  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one,
  .food-menu-lists.colums-2 .food-menu-style-one {
    width: 100%;
  }

  .mix-item-menu {
    border: none;
  }

  .mix-item-menu button {
    border: 1px solid #cccccc;
    margin: 5px 3px;
  }

  .mix-item-menu button::before {
    display: none;
  }

  /* Food menu Two */
  .food-menu-style-two-thumb {
    padding: 0;
    margin-bottom: 30px;
  }

  .food-menu-style-two-thumb::after {
    display: none;
  }

  .food-menu-style-two-content {
    margin: 0;
  }

  ul.meal-items li .thumbnail {
    display: none;
  }

  ul.meal-items li {
    display: block;
    border-top: 1px solid #cccccc;
    margin-top: 0;
    padding-top: 30px;
  }

  ul.meal-items li .content .bottom {
    display: block;
  }

  ul.meal-items li .content .bottom .right {
    text-align: left;
  }

  ul.meal-items li .content .bottom p {
    margin-top: 5px;
  }

  .food-menu-style-two-content h4.sub-heading {
    margin-bottom: 30px;
  }

  ul.meal-items li .content .top::before {
    display: none;
  }

  ul.meal-items {
    margin-top: 30px;
  }

  ul.meal-items {
    margin-top: 32px;
  }

  .food-menu-style-two {
    margin-top: 60px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
    top: 50%;
    transform: translateY(-50%);
    left: -50%;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb {
    padding: 0;
  }

  .food-menu-style-two-thumb img {
    max-height: 350px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin: 0;
  }

  ul.meal-items li .content .top {
    margin-bottom: 15px;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    display: none;
  }

  .food-menu-style-five-items {
    margin-top: 40px;
  }

  /* Feature Product */
  .feature-product-item {
    margin-top: 30px;
  }

  .feature-product-item:first-child {
    margin-top: 0;
  }

  .feature-style-two-area .shape img:first-child {
    top: 0;
  }

  .feature-product-item a {
    padding: 50px 40px;
    text-align: center;
  }

  .feature-product-item a .info {
    padding-right: 0;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .feature-product-item h2 {
    font-size: 36px;
  }

  .feature-product-item:first-child a .thumb {
    max-width: 80%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin-top: 60px;
  }

  .feature-product-item:first-child a .thumb .offer {
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }

  .feature-product-item:nth-child(2) .info {
    padding: 0;
  }

  .feature-product-item:nth-child(2) .thumb .offer {
    left: auto;
    right: 0;
    top: -32px;
  }

  .feature-product-item:nth-child(2) a .thumb {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    width: 80%;
  }

  .feature-product-item:nth-child(2) a:last-child .info {
    padding: 0;
  }

  .feature-product-item:nth-child(2) a:last-child .thumb {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin-top: 50px;
  }

  .shape-seperate {
    display: none;
  }

  ul.vt-products {
    margin-bottom: -30px;
  }

  /* Food Offer */
  .offer-style-one .thumb {
    margin-bottom: 70px;
  }

  .offer-style-one .thumb .discount-badge {
    right: auto;
    left: 0;
    bottom: -50px;
    top: auto;
  }

  .offer-style-one .thumb .discount-badge strong {
    font-size: 30px;
  }

  .offer-style-one .thumb .discount-badge {
    font-size: 18px;
    height: 180px;
    width: 180px;
  }

  /* Reservation */
  .reservation-banner img {
    width: 100%;
    position: relative;
    max-height: 350px;
  }

  .reservation-tabs {
    left: 0;
    margin: 0;
    padding: 60px 0;
    display: block;
  }

  .reservation-tabs .nav-tabs {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .reservation-tabs form.reservation-form {
    text-align: left;
    background: var(--bg-gray);
    padding: 50px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .reservation-tabs .nav-tabs .nav-item {
    text-align: center;
  }

  .reservation-tabs .nav-tabs .nav-item button {
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .reservation-tabs .tab-content {
    text-align: center;
  }

  .reservation-form input,
  .reservation-form input:focus {
    border-color: #cccccc;
  }

  .reservation-form .nice-select {
    border-color: #cccccc;
  }

  /* Testimonial */
  .tm-proivder-thumb img {
    height: 150px;
    width: 150px;
  }

  .tm-proivder-thumb {
    text-align: center;
  }

  .testimonial-style-one .content p {
    font-size: 20px;
  }

  /* Gift Vourcher */
  .discount-info h2 {
    font-size: 30px;
    padding: 15px 50px;
  }

  .discount-info ul li {
    font-size: 17px;
    padding-left: 30px;
  }

  .discount-info ul li::after {
    height: 20px;
    width: 20px;
    font-size: 10px;
  }

  .offer-fun-fact {
    border-radius: 10px;
  }

  .offer-fun-fact .fun-fact {
    display: block;
    margin: 0;
    border: none;
    padding: 20px 10px;
    border-bottom: 1px solid;
  }

  .discount-info {
    padding-bottom: 50px;
  }

  .dicount-thumb img:nth-child(2) {
    right: 5%;
    top: 5%;
  }

  /* Reservation */
  .reservation-thumb .icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    top: auto;
  }

  .reservation-thumb > img {
    height: 350px;
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    border-radius: 0;
  }

  .reservation-thumb {
    border: none;
    padding: 0;
  }

  .reservation-style-one-items {
    overflow: hidden;
  }

  .reservation-info {
    padding: 50px 30px;
    margin-top: 50px;
  }

  /* Chef Single */
  .chef-single-area .right-info .social {
    display: block;
  }

  .chef-single-area .right-info .social .share-link {
    margin-top: 30px;
    display: none;
  }

  .chef-single-area .chef-content-top {
    bottom: 0;
    margin: 0;
  }

  .chef-single-area .chef-content-top .thumb {
    margin-bottom: 30px;
  }

  .chef-single-area .chef-content-top .right-info p {
    padding: 0;
  }

  .chef-single-area .right-info > ul li i {
    min-width: 39px;
  }

  .chef-single-list {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }

  .chef-single-area .bottom-info .skill-items {
    padding: 0;
    margin-top: 30px;
  }

  /* Brand */
  .brand-heaidng::after {
    display: none;
  }

  .brand-heaidng h3 {
    display: block;
    display: block;
    padding: 0;
    text-align: center;
  }

  .brand-area {
    text-align: center;
  }

  /* Contact */
  .contact-style-one-items {
    position: relative;
  }

  .contact-style-one-items,
  .contact-style-one-items div {
    height: auto;
  }

  .contact-style-one-info {
    background: transparent;
    padding: 0;
    padding-top: 60px;
  }

  .maps-area iframe {
    height: 350px;
  }

  .contact-style-one-info ul {
    margin-top: 30px;
  }

  .contact-form-style-one {
    padding: 50px;
  }

  /* Footer */
  footer {
    background: var(--dark);
  }

  footer.footer-style-one {
    padding: 0;
    border-radius: 0;
  }

  .f-item.newsletter::after {
    display: none;
  }

  .f-item.newsletter {
    padding: 0;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    display: none;
  }

  .footer-bottom {
    background: transparent;
    text-align: center;
    border-radius: 0;
    margin-top: 50px;
  }

  footer .bg-dark .footer-bottom p {
    color: #cccccc;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 480px) {
}

@media screen and (max-width: 400px) {
  /* About */
  .opening-hours-style-one {
    padding: 50px 30px;
  }

  .about-style-three-content {
    padding: 50px 30px;
  }

  .opening-hours-style-one ul li {
    font-size: 16px;
  }

  /* Menu */
  .menu-type-item {
    padding: 50px 37px;
  }

  .menu-style-five-area::after {
    display: none;
  }

  .food-menu-style-five-items {
    margin-top: 40px;
  }

  .fun-fact-style-two {
    display: block;
    text-align: center;
    justify-content: center;
  }

  .fun-fact-style-two .icon {
    margin: auto auto 20px;
  }

  .fun-fact-style-two .counter {
    justify-content: center;
  }

  .feature-product-item a {
    padding: 50px 30px;
  }

  .contact-form-style-one {
    padding: 50px 30px;
  }
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.restan-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.restan-preloader .animation-preloader {
  z-index: 1000;
  position: relative;
}

.restan-preloader .animation-preloader::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/logo-icon.png);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
}

.restan-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 2px solid rgba(2, 109, 255, 0.3);
  border-top-color: var(--color-primary);
  height: 110px;
  margin: auto;
  width: 110px;
}

.bg-dark .restan-preloader .animation-preloader .spinner {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 1);
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.restan-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.restan-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.restan-preloader .loader .row {
  height: 100%;
}

.restan-preloader .loader .loader-section {
  padding: 0px;
}

.restan-preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.bg-dark .restan-preloader .loader .loader-section .bg {
  background-color: var(--dark);
}

.restan-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.restan-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.restan-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@media screen and (max-width: 767px) {
  .restan-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .restan-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
}

/* ============================================================== 
     # Dark Layout CSS 
=================================================================== */
@media only screen and (min-width: 1600px) {
  .bg-dark-secondary .menu-type-area::after {
    background: var(--dark-secondary);
  }
}

.bg-dark-secondary .title {
  color: var(--white);
}

.bg-dark-secondary .fun-fact-style-one-items h2 {
  color: var(--white);
}

.bg-dark-secondary .fun-fact-style-one-content .fun-fact span.medium {
  color: var(--white);
}

.bg-dark-secondary .special-menu-style-one ul li {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one ul li {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .reservation-tabs .title {
  color: var(--white);
}

.bg-dark-secondary .reservation-form label {
  color: var(--white);
}

.bg-dark-secondary .reservation-form input,
.bg-dark-secondary .reservation-form input:focus {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-secondary .reservation-form .nice-select {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-secondary .reservation-form input::placeholder {
  color: #cccccc;
}

.bg-dark-secondary .reservation-form input::-webkit-input-placeholder {
  color: #cccccc;
}

.bg-dark-secondary .reservation-form input:-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}

.bg-dark-secondary .reservation-form input::-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}

.bg-dark-secondary .reservation-form input:-ms-input-placeholder {
  color: #cccccc;
}

.bg-dark-secondary .site-heading .title {
  color: var(--white);
}

.bg-dark-secondary .blog-area .post-title a {
  color: var(--white);
}

.bg-dark-secondary .blog-area .post-title a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li a {
  color: #cccccc;
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li::after {
  background: var(--white);
}

.bg-dark-secondary footer .bg-dark .footer-bottom p {
  color: #cccccc;
}

.bg-dark-secondary .footer-bottom::before {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark-secondary .footer-bottom::after {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark-secondary .bg-gray .site-heading .title {
  color: var(--color-heading);
}

.bg-dark-secondary form.reservation-form button::after {
  background: var(--white);
}

.bg-dark-secondary form.reservation-form button:hover {
  color: var(--color-heading);
}

.bg-dark-secondary .feature-style-one-item {
  background: var(--dark);
}

.bg-dark-secondary .feature-one-single::before {
  background: #7a7e84;
  border-color: var(--dark-secondary);
}

.bg-dark-secondary .feature-one-single::after {
  background: #42464d;
}

.bg-dark-secondary .feature-style-one-item h4 {
  color: var(--white);
}

.bg-dark-secondary .menu-style-five-area::after {
  background: #2b4356;
}

.bg-dark-secondary .fun-fact-style-two span.medium {
  color: var(--white);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top h4 {
  background: var(--dark);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top h4 a {
  color: var(--white);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top .price {
  background: var(--dark);
}

.bg-dark-secondary .bg-cover .tab-content ul.meal-items li .content .top h4,
.bg-dark-secondary
  .bg-cover
  .tab-content
  ul.meal-items
  li
  .content
  .top
  .price {
  background: var(--dark-secondary);
}

.bg-dark-secondary .shape-seperate img {
  opacity: 0.2;
}

.bg-dark-secondary .product .product-contents {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--dark) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .shop-action li a::after {
  background: var(--white);
  color: var(--color-heading);
}

.bg-dark-secondary .product-tags a {
  color: #dedede;
}

.bg-dark-secondary .product-tags a:hover {
  color: var(--white);
}

.bg-dark-secondary .vt-products .product .product-contents .product-title a {
  color: var(--white);
}

.bg-dark-secondary .vt-products .product .product-caption .price span {
  color: var(--white);
}

.bg-dark-secondary .price del {
  color: #d3cece;
}

.bg-dark-secondary .testimonial-style-one .content p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .bg-dark .testimonial-style-one .content p {
  color: #cccccc;
}

.bg-dark-secondary .discount-info ul li::after {
  background: #494949;
}

.bg-dark-secondary .side .widget p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .side .widget.address ul li strong {
  color: var(--color-paragraph);
}

.bg-dark-secondary .navbar .side .widget h4 {
  color: var(--color-heading);
}

.bg-dark-secondary .banner-style-six h2 {
  color: var(--white);
}

.bg-dark-secondary .banner-style-six h4 {
  color: var(--white);
}

.bg-dark-secondary
  .banner-area.banner-style-six.navigation-dark
  .swiper-button-prev::after,
.bg-dark-secondary
  .banner-area.banner-style-six.navigation-dark
  .swiper-button-next::after {
  color: var(--white);
}

.bg-dark ul.meal-items li .content .top h4,
.bg-dark-secondary .bg-dark ul.meal-items li .content .top h4 {
  background: var(--dark);
}

.bg-dark ul.meal-items li .content .top h4 a {
  color: var(--white);
}

.bg-dark ul.meal-items li .content .top h4 a:hover {
  color: var(--color-primary);
}

.bg-dark ul.meal-items li .content .top .price,
.bg-dark-secondary .bg-dark ul.meal-items li .content .top .price {
  background: var(--dark);
  color: var(--white);
}

.bg-dark .food-menu-style-two-thumb img {
  border-color: #4e5154;
}

.bg-dark-secondary .bg-gray {
  background-color: var(--dark);
}

.bg-dark-secondary .food-cat-area.bg-gray .site-heading .title {
  color: var(--white);
}

.bg-dark-secondary .choose-us-style-one-items {
  background: var(--dark-secondary);
}

.bg-dark-secondary .choose-us-style-one-item {
  background: var(--color-primary);
}

.bg-dark-secondary .fun-fact-style-one img {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary ul.list-style-one li::after {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary .choose-us-style-one-items .btn.btn-dark {
  background: var(--white);
  color: var(--color-heading);
}

.bg-dark-secondary .choose-us-style-one-items .btn.btn-dark:hover {
  color: var(--white);
}

.bg-dark-secondary .mix-item-menu {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .mix-item-menu button {
  color: var(--white);
}

.bg-dark-secondary .food-menu-style-one .item {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.bg-dark-secondary .food-menu-style-one .item .info h4 a {
  color: var(--white);
}

.bg-dark-secondary .food-menu-style-one .item .info h4 a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .food-menu-style-one .item .food-cats {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .food-menu-style-one .item .item-price {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .food-menu-style-one .item .item-price h5 {
  color: var(--white);
}

.bg-dark-secondary .chef-style-one-item .info h4 a {
  color: var(--white);
}

.bg-dark-secondary .chef-style-one-item .info h4 a:hover {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark {
    border-color: rgba(255, 255, 255, 0.215);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    ul.nav
    > li
    > a {
    color: var(--white);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    .attr-nav
    .side-menu
    span {
    background: var(--white);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    .attr-right
    .attr-nav
    li.search
    a {
    color: var(--white);
  }
}

@media only screen and (max-width: 767px) {
  .bg-dark-secondary .reservation-tabs form.reservation-form {
    background: #454b4f;
  }

  .bg-dark-secondary .footer-bottom {
    background: transparent;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-dark-secondary .reservation-tabs form.reservation-form {
    background: #454b4f;
  }
}

/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}





/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: #ffffff !important;
    background: #8a082c !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg')
}




.cbp-spmenu {
    background: #dfdfdf;
    position: fixed
}

.cbp-spmenu h3 {
    color: #fff;
    font-size: 1.9em;
    padding: 20px;
    margin: 0;
    font-weight: 300;
    background: #000000;
}

.cbp-spmenu a {
    display: block;
    color: #fff;
    font-size: 1.1em;
    font-weight: 300
}

.cbp-spmenu a:hover {
    background: #000000;
}

.cbp-spmenu a:active {
    background: #333;
    color: #fff
}

.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000
}

.cbp-spmenu-vertical a {
    border-bottom: 1px solid #ccc;
    padding: 1em
}

.cbp-spmenu-horizontal {
    width: 100%;
    height: 150px;
    left: 0;
    z-index: 1000;
    overflow: hidden
}

.cbp-spmenu-horizontal h3 {
    height: 100%;
    width: 20%;
    float: left
}

.cbp-spmenu-horizontal a {
    float: left;
    width: 20%;
    padding: .8em;
    border-left: 1px solid #258ecd
}

.cbp-spmenu-left {
    left: -240px
}

.cbp-spmenu-right {
    right: -240px
}

.cbp-spmenu-left.cbp-spmenu-open {
    left: 0
}

.cbp-spmenu-right.cbp-spmenu-open {
    right: 0
}

.cbp-spmenu-top {
    top: -150px
}

.cbp-spmenu-bottom {
    bottom: -150px
}

.cbp-spmenu-top.cbp-spmenu-open {
    top: 0
}

.cbp-spmenu-bottom.cbp-spmenu-open {
    bottom: 0
}

.cbp-spmenu-push {
    overflow-x: hidden;
    position: relative;
    left: 0
}

.cbp-spmenu-push-toright {
    left: 240px
}

.cbp-spmenu-push-toleft {
    left: -240px
}

.cbp-spmenu,.cbp-spmenu-push {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (max-width: 55.1875em) {
    .cbp-spmenu-horizontal {
        font-size:75%;
        height: 110px
    }

    .cbp-spmenu-top {
        top: -110px
    }

    .cbp-spmenu-bottom {
        bottom: -110px
    }
}

@media screen and (max-height: 26.375em) {
    .cbp-spmenu-vertical {
        font-size:90%;
        width: 190px
    }

    .cbp-spmenu-left,.cbp-spmenu-push-toleft {
        left: -190px
    }

    .cbp-spmenu-right {
        right: -190px
    }

    .cbp-spmenu-push-toright {
        left: 190px
    }
}


#showLeftPush {
    display: block;
    height: 30px;
    position: absolute;
    left: 8px;
    top: 18px;
    width: 40px;
    z-index: 2;
    background: 0 0;
    border: 0;
    cursor: pointer
}

#showLeftPush span,#showLeftPush:after,#showLeftPush:before {
    background: #000;
    content: "";
    display: block;
    height: 4px;
    left: 7px;
    position: absolute;
    width: 30px
}

#showLeftPush:before {
    top: 8px
}

#showLeftPush:after {
    top: 24px
}

#showLeftPush span {
    top: 16px
}

#showLeftPush.active:before {
    transform: rotate(45deg)
}

#showLeftPush.active:after,#showLeftPush.active:before {
    top: 10px
}

#showLeftPush.active:after {
    transform: rotate(-45deg)
}

#showLeftPush.active span {
    opacity: 0
}

.navbar {
    display: none
}

#ommenu a,#ommenu li,#ommenu span,#ommenu ul {
    margin: 0;
    padding: 0;
    position: relative
}

#ommenu {
    width: auto
}

#ommenu a {
    color: #fff;
    text-transform: normal;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    line-height: 32px;
    border-bottom: 2px solid #ccc;
    display: block;
    padding: 10px
}

#ommenu ul {
    list-style: none
}

#ommenu>ul>li {
    display: block;
    margin: 0
}

#ommenu.align-center {
    text-align: center
}

#ommenu.align-center>ul>li {
    float: none
}

#ommenu.align-center ul ul {
    text-align: left
}

#ommenu.align-right>ul {
    float: right
}

#ommenu.align-right ul ul {
    text-align: right
}

#ommenu>ul>li>a {
    color: #fff;
    font-size: 15px
}

a.nav-link {}

#ommenu .has-sub:hover>ul {
    display: block;
    z-index: 20
}

#ommenu .has-sub ul {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #222
}

#ommenu .has-sub ul li a {
    background: #fff;
    border-bottom: 2px solid #080808;
    font-size: 15px;
    display: block;
    line-height: 120%;
    padding: 12px;
    color: #000
}

#ommenu .has-sub ul li:hover a {
    background: #222;
    color: #fff
}

#ommenu ul ul li:hover>a {
    color: #000
}

#ommenu .has-sub .has-sub:hover>ul {
    display: block
}

#ommenu .has-sub .has-sub ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0
}

#ommenu .has-sub .has-sub ul li a {
    background: #0c7fb0;
    border-bottom: 1px dotted #31b7f1
}

#ommenu .has-sub .has-sub ul li a:hover {
    background: #0a6d98
}

body.cbp-spmenu-push-toleft {
    left: 240px
}

@media screen and (min-width: 768px) {
    #showLeftPush {
        display:none
    }

    .navbar {
        display: block
    }

    .navbar-inverse {
        background: 0 0;
        margin-top: 9px;
        margin-bottom: 0;
        border: 0;
        z-index: 1;
        min-height: auto;
        text-transform: none;
        border-radius: 0
    }

    #ommenu a {
        border-bottom: none;
        padding: 0 10px;
        font-weight: 400;
        line-height: 102px;
        text-transform: normal
    }

    #ommenu ul {
        display: table;
        margin: 0 auto
    }

    #ommenu ul ul {
        display: block
    }

    #ommenu .has-sub ul li a {
        background: #000;
        color: #fff;
        border-bottom-color: #222
    }

    #ommenu>ul>li>a {
        color: #000;
        font-size: 18px;
        font-weight: 500;
        position: relative
    }

    #ommenu ul:after,#ommenu:after {
        content: '';
        display: block;
        clear: both
    }

    #ommenu>ul>li:hover:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 50%;
        bottom: 0
    }

    #ommenu>ul>li:first-child>a {
        border-radius: 5px 0 0;
        -moz-border-radius: 5px 0 0;
        -webkit-border-radius: 5px 0 0
    }

    #ommenu.align-center>ul>li:first-child>a,#ommenu.align-right>ul>li:first-child>a {
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0
    }

    #ommenu.align-right>ul>li:last-child>a {
        border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0
    }

    #ommenu>ul>li.active>a {
        color: #688005;
        border-bottom-color: #688005;
        border-radius: 0
    }

    #ommenu>ul>li:hover>a {
        color: #264896;
        border-bottom-color: #264896;
        border-radius: 0
    }

    #ommenu .has-sub {
        z-index: 10
    }

    #ommenu.align-right .has-sub ul {
        left: auto;
        right: 0
    }

    #ommenu .has-sub ul li {
        *margin-bottom: -1px;
        background: #222
    }

    #ommenu.align-right .has-sub .has-sub ul,#ommenu.align-right ul ul ul {
        left: auto;
        right: 100%
    }

    #ommenu .has-sub ul li.last>a,#ommenu .has-sub ul li:last-child>a,#ommenu ul ul li.last>a,#ommenu ul ul li:last-child>a,#ommenu ul ul ul li.last>a,#ommenu ul ul ul li:last-child>a {
        border-bottom: 0
    }

    #ommenu>ul>li {
        display: inline-block;
        float: left;
        margin: 0
    }

    #ommenu .has-sub ul {
        width: 250px
    }
}

@media screen and (min-width: 992px) {
    #ommenu>ul>li>a {
        font-size:16px
    }

    #ommenu .has-sub ul li a {
        font-size: 14px
    }

    #ommenu a {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 992px) {
    #ommenu>ul>li>a {
        font-size:20px
    }
}



.button,.om-btn-wrapper a,.view-menu-btn {
    background: #f60207;
    color: #fff!important;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    border: none;
    margin: 15px auto 0;
    padding: 10px 15px;
    position: relative;
    text-align: center;
    text-transform: normal;
    transition: all .2s ease-in-out 0s;
    min-width: 160px;
    text-decoration: none
}

.button:hover,.om-btn-wrapper a:hover,.view-menu-btn:hover {
    background: #ff8343;
    color: #fff!important;
}

.button.red-btn,.om-btn-wrapper a.red-btn,.view-menu-btn.red-btn {
    background: #688005;
    font-weight: 700;
    color: #fff!important
}

.button.red-btn:hover,.om-btn-wrapper a.red-btn:hover,.view-menu-btn.red-btn:hover {
    background: #404f03
}

.button a,.om-btn-wrapper a a,.view-menu-btn a {
    color: #fff
}

.button a:hover,.om-btn-wrapper a a:hover,.view-menu-btn a:hover {
    color: #000
}

.button.book-btn,.om-btn-wrapper a.book-btn,.view-menu-btn.book-btn {
    width: 50%
}

.order-online a {
    background: #febe0d;
    :;
    display: block;
    font-size: 16px;
    border: none;
    margin: 15px auto 0;
    padding: 8px 15px;
    position: relative;
    text-align: center;
    transition: all .2s ease-in-out 0s;
    min-width: 160px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    color: #21411c;
}

.order-online a:hover {
    background: #546704;
    color: #fff!important
}
div#logo img {
    width: 55%;
}
.slider-container .om-btn-wrapper a,.slider-container .view-menu-btn {
    font-size: 22px;
    background: #688005
}

.om-welcome {
    background: #efefef
}

body.black-page {
    background: #fff;
    color: #000
}

#header {
    background: #21411c;
    width: 100%;
    padding: 14px
}

#header .container {
    position: relative;
    color: #fff;
    padding: 0
}

#header .container #logo {
    margin: 0 auto;
    width: 120px
}

#header .container #logo a {
    display: block
}

#header .container .order-online ul {
    padding: 0;
    margin: 0
}

#header .container .order-online ul li {
    display: block
}

#header .left-nav,#header .right-nav,.header-top .address,.header-top .oo-top {
    display: none
}





@media screen and (min-width: 700px) {
    #header,#header .container {
        padding:0
    }

    #header .container #logo {
        width: 140px;
        float: left;
        margin: 0;
        padding: 14px 0 14px 14px
    }

    #header .container #logo a {
        padding: 0
    }

    #header .container .navbar {
        float: right;
        padding: 0;
        margin-top: 0;
        margin-right: 175px
    }

    #header .container .navbar .navbar-collapse {
        display: block
    }

    #header .container .order-online {
        right: 0;
        top: 15px;
        position: absolute;
        margin: 0;
        padding: 0
    }

    #header .left-nav,#header .right-nav {
        display: block
    }

    #header .left-nav .nav ul,#header .right-nav .nav ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

    #header .left-nav .nav ul li,#header .right-nav .nav ul li {
        display: inline-block
    }

    #header .left-nav .nav ul li a,#header .right-nav .nav ul li a {
        display: block;
        padding: 0 10px;
        font-size: 15px;
        font-weight: 700;
        line-height: 50px;
        color: #000
    }

    #header .left-nav .nav ul li a:hover,#header .right-nav .nav ul li a:hover {
        color: #ed1c24
    }

    #header .left-nav {
        float: left;
        margin-left: 70px
    }

    #header .right-nav {
        float: right
    }

    .contact-wrapper {
        padding-right: 80px
    }
}

@media screen and (min-width: 768px) {
    .m-visible {
        display:none!important
    }

    .d-visible {
        display: block!important
    }

    #header .container .navbar-collapse {
        padding: 0
    }
}

@media screen and (min-width: 980px) {
    #header .container #logo {
        width:158px;
        padding: 5px 0 0
    }

    #header .container .top-right .order-online {
        right: 80px;
        top: 52px
    }

    #header .container .navbar {
        margin-right: 265px;
        margin-top: 25px
    }

    section.about-us {
        padding: 40px;
        text-align: center
    }

    .menu-wrapper h2 {
        font-size: 32px
    }

    .menu-wrapper h3 {
        font-size: 30px
    }

    .menu-wrapper p {
        font-size: 20px
    }

    .menu-wrapper p.m-heading {
        font-size: 28px
    }
}

@media screen and (min-width: 992px) {
    .h1,h1 {
        font-size:32px
    }

    .h2,h2 {
        font-size: 28px
    }

    #header {
        position: static
    }

    #header .container,#header .container .navbar-inverse .navbar-collapse.collapse {
        padding: 0
    }

    .main-container h1 {
        margin-bottom: 65px
    }
}

@media screen and (min-width: 1180px) {
    #header .container .top-right .social-icon-list {
        margin-left:50px
    }

    .menu-items .menu-item {
        margin-bottom: 0
    }

    .header-top .oo-top {
        top: 12px
    }

    .header-top .oo-top a {
        font-size: 23px;
        padding-left: 10px;
        padding-right: 10px
    }

    .main-container {
        padding: 40px
    }
}

@media screen and (min-width: 1200px) {
    .menu-items .menu-item .desc {
        min-height:130px
    }

    .container {
        max-width: 1080px
    }
}

.jssor-slide-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0,0,0,.7)
}

.jssorl-009-spin img {
    animation-name: jssorl009-spin;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes jssorl-009-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.jssora051 {
    display: block;
    position: absolute;
    cursor: pointer
}

.jssora051 .a {
    fill: none;
    stroke: #fff;
    stroke-width: 360;
    stroke-miterlimit: 10
}

.jssora051:hover {
    opacity: .8
}

.jssora051.jssora051dn {
    opacity: .5
}

.jssora051.jssora051ds {
    opacity: .3;
    pointer-events: none
}

#header .container:after,.header-right-bottom:after,.header-right-top:after,.menu-items:after,.order-online-btns ul:after,.social-icon-list ul:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden
}

#header {
    padding-top: 0;
}

#header .container #logo {
    width: 160px;
    margin: 0px auto 10px auto;
    padding: 15px 0 0 0;
    text-align: center;
}

#header .container #logo h1 {
    font-size: 20px;
    line-height: 50px;
    font-weight: bold;
    color: #033e4b;
}

a, .home-text h1, .box-section h2, h2 {
    color: #033e4b;
}



#showLeftPush span, #showLeftPush::after, #showLeftPush::before {
    background: #febe0d;
}

#ommenu > ul > li > a {
    color: #000;
}

#ommenu > ul > li:hover > a {
    color: #ffffff;
}




@media screen and (min-width: 768px) {
    #ommenu > ul > li.active > a, #ommenu > ul > li:hover > a:hover {
        color: #febe0d;
    }

    #ommenu > ul > li > a {
        color: #ffffff;
        text-transform: uppercase;
    }

   

    #header {
    }

    .menu-category .menu-category-wrapper {
        max-width: 1480px;
        margin: 0 auto;
        background: #fff
    }

    .menu-category .menu-category-wrapper .menu-items-wrapper {
        display: flex;
        margin: 0 -15px
    }

    .menu-category .menu-category-wrapper .menu-item {
        flex: 1;
        padding: 0 15px
    }

    .menu-category .menu-category-wrapper .menu-title {
        top: auto;
        bottom: -25px
    }

    #header .container #logo {
        margin: 0px auto 0px auto;
        width: 105px;
        z-index: 50;
    }

    #ommenu a {
        line-height: 60px;
    }

    #header .container .navbar {
        margin-top: 16px;
    }

    #header .container .order-online {
        top: 5px;
    }
}

@media screen and (min-width: 980px) {
    #header .container {
        display: flex;
        align-items: center;
    }

    #header .container .navbar {
        margin-top: 0px;
    }

    .order-online a {
        margin-top: 0;
    }

    #header .container .top-right {
        flex: 1;
    }

    #header .container #logo {
        padding-top: 0;
    }

    #header .container .top-right .order-online {
        top: 9px;
    }
}

@media screen and (min-width: 1200px) {
    #header {
        padding:10px;
        background: #21411c;
    }

    #header .container #logo {
        width: 180px;
    }

    #header .container .top-right .order-online {
        top: 29px;
    }
}

@media screen and (min-width: 1500px) {
    .container {
        max-width: 1280px;
    }
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 75px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.Review-button {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.modal-body { 
  h1 { 
    font-weight:900; 
    font-size:2.3em;
    text-transform:uppercase;
  }
  
  a.pre-order-btn { 
    color:#000;
    background-color:gold;
    border-radius:1em;
    padding:1em;
    display: block;
    margin: 2em auto;
    width:50%;
    font-size:1.25em;

/* Varialbes */
:root {
  --font-default: "Jost", sans-serif;
  --font-heading: "Oswald", sans-serif;
  --font-optional: "Dancing Script", cursive;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #072b31;
  --dark-secondary: #1f3844;
  --white: #ffffff;
  --color-primary: #eb0029;
  --color-secondary: #f76e2a;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #ebe9e6;
  --bg-gray-secondary: #faf1df;
  --bg-gradient: linear-gradient(45deg, var(--color-primary) 30%, #ffb800 100%);
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.wrapper {
  height: 100%;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
  opacity: 1;
}

.color-style-two a:hover {
  color: var(--color-secondary);
}

.secondary a:hover {
  color: var(--color-primary);
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  min-height: 50px;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

ul {
  list-style-type: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

b {
  font-weight: 500;
}

strong {
  font-weight: 500;
}

.row {
  --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
  font-family: var(--font-default);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 42px;
  margin-bottom: 25px;
  letter-spacing: 0;
}

h2 {
  font-size: 36px;
  margin-bottom: 25px;
  letter-spacing: 0;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-heading);
}

p {
  color: var(--color-paragraph);
  margin: 0 0 7px;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-default);
}

/* ============================================================== 
    # Helper CSS
=================================================================== */

.container-full {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
}

@media (min-width: 576px) {
  .container-full {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-full {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-full {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-full {
    max-width: 90%;
    width: 100%;
    padding: 0;
  }

  .box-layout {
    width: 94%;
    margin: auto;
    border-radius: 30px;
  }
}

.container-fill {
  padding: 0 15px;
  margin: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container-fill {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-fill {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-fill {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .container-fill {
    padding: 0 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 1400px) {
  .container-stage {
    margin-left: calc((100% - 1320px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

.item-center {
  display: flex;
  align-items: center;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}

.bg-gray {
  background: var(--bg-gray);
}

.bg-dark .bg-gray {
  background: var(--dark-secondary);
}

.bg-gray-secondary {
  background: var(--bg-gray-secondary);
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-secondary {
  background-color: var(--dark-secondary) !important;
}

.bg-theme {
  background-color: var(--color-primary);
}

.color-style-two .bg-theme {
  background-color: var(--color-secondary);
}

.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
  background-color: var(--color-primary);
  background: var(--bg-gradient-reverse) !important;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  display: inline-block;
}

.text-light {
  color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
  color: var(--white);
}

.shadow {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.shadow.dark {
  position: relative;
  z-index: 1;
}

.shadow.dark:after {
  background: var(--black);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
  position: relative;
  z-index: 1;
}

.shadow.dark-hard:after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.theme {
  position: relative;
  z-index: 1;
}

.shadow.theme:after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.light {
  position: relative;
  z-index: 1;
}

.shadow.light:after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.default-padding-big {
  padding: 250px 0;
}

@media only screen and (max-width: 767px) {
  .default-padding-big {
    padding: 60px 0;
  }
}

.default-padding-top {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top {
    padding-top: 60px;
  }
}

.default-padding-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom {
    padding-bottom: 60px;
  }
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .default-padding.bottom-less {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.default-padding-bottom.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom.bottom-less {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top.bottom-less {
    margin-bottom: -30px;
  }
}

@media only screen and (min-width: 1200px) {
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.border-top {
  border-top: 1px solid #e7e7e7;
}

.border-bottom {
  border-bottom: 1px solid #e7e7e7;
}

.border-left {
  border-left: 1px solid #e7e7e7;
}

.border-right {
  border-right: 1px solid #e7e7e7;
}

.heading {
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: -5px;
  font-size: 42px;
  line-height: 1.3;
}

.heading span {
  font-weight: 400;
}

.site-heading {
  margin-bottom: 60px;
}

.site-heading strong {
  display: inline-block;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.site-heading strong::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/35.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
}

.title {
  font-weight: 500;
  font-size: 55px;
}

.site-heading .title {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px;
    margin-top: 0;
  }

  .site-heading .title {
    font-size: 36px;
  }
}

.bg-dark .title {
  color: var(--white);
}

.bg-dark .site-heading .title {
  color: var(--white);
}

.sub-title {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 20px;
  padding: 0 10px;
}

.color-style-two .sub-title {
  color: var(--color-secondary);
}

.sub-title::after {
  position: absolute;
  top: 50%;
  right: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/17.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
  margin-top: -13px;
}

.color-style-two .sub-title::after {
  background: url(../img/shape/17-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
}

.sub-title::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/18.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -13px;
}

.color-style-two .sub-title::before {
  background: url(../img/shape/18-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
}

.text-light .sub-title::after,
.text-light .sub-title::before,
.text-light.sub-title::after,
.text-light.sub-title::before {
  filter: brightness(0) invert(1);
}

.sub-title img {
  height: 13px;
}

.sub-title img:first-child {
  margin-right: 10px;
}

.sub-title img:last-child {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .sub-title {
    margin-bottom: 10px;
  }
}

.site-heading p {
  margin-bottom: 0;
  margin-top: 25px;
  padding: 0 10%;
}

.site-heading .devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
  background: var(--white);
}

@media (max-width: 767px) {
  .site-heading p {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .site-heading {
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.heading-left .heading {
  font-weight: 500;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-left .heading {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .heading-left .heading {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left p {
  margin-bottom: 0;
}

.heading-left .btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .heading-left {
    margin-bottom: 30px;
  }
}

.sub-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 20px;
  padding-right: 10px;
}

.bg-dark .sub-heading,
.bg-dark-secondary .sub-heading {
  color: var(--white);
}

.text-center .sub-heading {
  margin-bottom: 30px;
}

.color-style-two .sub-heading {
  color: var(--color-secondary);
}

.color-style-two .text-light .sub-heading {
  color: var(--white);
}

.sub-heading::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/18.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -11px;
}

.color-style-two .sub-heading::before {
  background: url(../img/shape/18-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
}

.text-light .sub-heading::before {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary .sub-heading::before,
.bg-dark .sub-heading::before {
  filter: brightness(0) invert(1);
}

.shadow .sub-heading {
  -webkit-text-fill-color: var(--white);
  font-weight: 500;
}

.bg-gradient .sub-heading {
  color: var(--white);
  background: transparent;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  opacity: 0.9;
}

.site-heading.text-light .sub-title,
.site-heading.text-light .sub-heading {
  -webkit-text-fill-color: inherit;
  color: var(--white);
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button i {
  display: inline-block;
  background: var(--color-primary);
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
}

.video-play-button i {
  font-weight: 100;
  font-size: 35px;
  position: relative;
  left: 3px;
  top: 2px;
}

.video-play-button .effect {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-play-button .effect::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: var(--color-primary);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.color-style-two .video-play-button .effect::before {
  background: var(--color-secondary);
}

.video-play-button.with-text {
  width: auto;
  background: transparent;
}

.video-play-button.with-text span {
  position: relative;
  z-index: 1;
}

.video-play-button.with-text span i {
  margin-left: 25px;
  margin-right: 30px;
  color: var(--white);
  left: -1px;
}

.video-play-button.with-text .effect {
  height: 60px;
  width: 60px;
  left: 0;
  -webkit-animation: inherit;
  animation: inherit;
  background: var(--color-primary);
  top: 0;
  opacity: 1;
  z-index: 1;
}

.color-style-two .video-play-button.with-text .effect {
  background: var(--color-secondary);
}

.video-play-button.with-text .effect::before {
  display: none;
}

.video-play-button.with-text .effect::after {
  background: var(--color-primary);
  height: 100%;
  width: 100%;
  z-index: inherit;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.color-style-two .video-play-button.with-text .effect::after {
  background: var(--color-secondary);
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*Zoom Animation */
.zoom-animation {
  -webkit-animation: zoom 2000ms ease-out infinite;
  animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
}

/* Spiner Animation */
.spiner-animation {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Spiner Animation */
.spiner-reverse-animation {
  -webkit-animation: spinnerReverse 20s infinite linear;
  animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

/* Infinite Up Down Animation */
@keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation UpDown */
.updown-animation {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation Left Right */
.leftRight-animation {
  -webkit-animation: fadeLeftRight 10s ease-out infinite;
  animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

/* Animation Right Left */
.rightLeft-animation {
  -webkit-animation: fadeRightLeft 10s ease-out infinite;
  animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

@-webkit-keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

/* Animation Zoom Up Down */
.zoomUpDown-animation {
  -webkit-animation: zoomUpDown 10s ease-out infinite;
  animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@-webkit-keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* Animation Moving */
.moving-animation {
  -webkit-animation: moving 10s ease-out infinite;
  animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

/* Animation Rotation */
@keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Border Animation */
@-webkit-keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@-webkit-keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

@keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@-webkit-keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

@keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 0;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: none !important;
  font-size: 16px;
  letter-spacing: 0;
  padding: 13px 30px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.btn:focus,
.btn.active {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  border: 2px solid transparent;
}

.btn:hover {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn.radius {
  border-radius: 30px;
}

.btn.btn-border {
  border: 2px solid #dddddd;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
}

.btn.btn-border::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-border:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-border:hover {
  border-color: var(--dark);
}

.btn.btn-border.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: #e7e7e7;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
  border-color: #e7e7e7;
  color: var(--dark);
}

.btn.btn-border.animation:hover::after {
  width: 100%;
}

.btn.btn-border-dark {
  border: 2px solid var(--dark);
  background: transparent;
}

.btn-md.btn-border-dark {
  padding: 15px 35px;
}

.btn.btn-border-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn.btn-border-dark.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
  border-color: var(--dark);
  color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
  width: 100%;
}

.btn.btn-border-theme {
  border: 2px solid var(--color-primary);
  background: transparent;
}

.btn.btn-border-theme:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
  border-color: var(--color-primary);
  color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
  width: 100%;
}

.btn.btn-border-light {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.btn.btn-border-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
  width: 100%;
}

.btn-md.btn-border-light {
  border: 1px solid var(--white);
  padding: 15px 35px;
}

.btn.btn-border.light {
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-border.light::after {
  background: var(--color-primary);
}

.btn.btn-border.light:hover {
  border-color: var(--color-primary);
}

.btn.btn-gradient {
  border: none;
  color: var(--white);
}

.btn.btn-gradient::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(
    to left,
    var(--color-primary),
    var(--color-secondary),
    var(--color-primary)
  );
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-size: 250%;
}

.btn.btn-gradient:hover::after {
  background-position: -70% 0;
}

.btn.btn-gradient.active {
  background-position: -70% 0;
}

.btn.btn-theme {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-two .btn.btn-theme {
  background: var(--color-secondary);
}

.color-style-two .btn.btn-theme:hover {
  color: var(--white);
}

.btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.shadow .btn.btn-theme::after {
  background-color: var(--white);
}

.shadow .btn.btn-theme:hover {
  color: var(--color-heading);
}

.text-light .btn.btn-theme:hover {
  color: var(--color-heading);
}

.text-light .btn.btn-theme:after {
  background: var(--white);
}

.banner-style-four .btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background: var(--white) !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-theme:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.banner-style-four .btn.btn-theme:hover {
  color: var(--color-heading) !important;
}

button {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 14px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-two button {
  background: var(--color-secondary);
}

button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
  margin-right: 4px;
}

.btn.btn-theme.secondary {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.btn.btn-theme.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
  background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
  color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
  background-color: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
  color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
  color: var(--color-heading);
  background: var(--white);
  border: none;
}

.btn.btn-light::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light:hover {
  color: var(--white);
  border-color: transparent;
}

.btn.btn-dark {
  color: var(--white);
  background: var(--dark);
  border: none;
}

.btn.btn-dark::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.shadow .btn.btn-dark::after {
  background-color: var(--white);
}

.shadow .btn.btn-dark:hover {
  color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
  width: 100%;
}

.btn.btn-dark.secondary {
  color: var(--white);
  border: none;
  background: var(--dark);
}

.btn.btn-dark.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn i {
  position: relative;
  top: 1px;
  margin-left: 5px;
}

.btn-md i {
  font-weight: 1;
  font-size: 24px;
  margin: 0;
  float: left;
  position: relative;
  top: 1px;
  margin-right: 10px;
}

.btn.text-slide {
  min-width: 150px;
  height: 55px;
  line-height: 55px;
}

.btn.text-slide span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.btn.animate-border {
  overflow: inherit;
  z-index: inherit;
  width: 200px;
  height: 55px;
  line-height: 55px;
  padding: 0;
}

.btn.animate-border:hover {
  background: transparent;
  color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
  opacity: 1;
  -webkit-animation: open 0.4s;
  /* Chrome, Safari, Opera */
  animation: open 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
  opacity: 1;
  -webkit-animation: openB 0.4s;
  /* Chrome, Safari, Opera */
  animation: openB 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border .hover-border {
  position: absolute;
  left: 0;
  top: -1px;
  height: 100%;
  width: 100%;
}

.btn.animate-border .hover-border::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-left: solid 2px var(--color-primary);
  right: 98px;
  top: -1px;
}

.btn.animate-border .hover-border::after {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-right: solid 2px var(--color-primary);
  left: 98px;
  top: -1px;
}

.btn.animate-border .hover-border-bottom {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 55px;
  border-bottom: solid 2px var(--color-primary);
  right: -1px;
  bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 100%;
  border-bottom: solid 2px var(--color-primary);
  left: 0;
  bottom: -2px;
}

.btn.animated-arrow {
  border: none;
  background: transparent;
  min-width: 14rem;
  height: auto;
  padding: 0;
}

.btn.animated-arrow .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary);
  border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 15px;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn.animated-arrow .circle .icon::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--white);
  border-right: 0.125rem solid var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  margin: 0 0 0 70px;
  color: var(--dark);
  line-height: 2;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.btn.animated-arrow:hover {
  color: var(--white);
}

.btn.animated-arrow:hover .circle {
  width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
  background: var(--white);
  -webkit-transform: translate(1.5rem, 0);
  transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
  color: var(--white);
}

.btn.circle {
  border-radius: 30px !important;
}

.btn-simple {
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  color: var(--color-paragraph);
}

.btn-simple i {
  transform: rotate(-45deg);
  display: inline-block;
  margin-left: 2px;
}

.btn-simple:hover {
  color: var(--color-primary);
}

.video-btn i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
  color: var(--white);
}

.text-light .video-btn i {
  background: var(--white);
  color: var(--color-primary);
}

.video-btn i::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--color-primary) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.text-light .video-btn i::after {
  background: var(--white) repeat scroll 0 0;
}

.text-shine {
  background: linear-gradient(
    to right,
    var(--dark) 0,
    var(--white) 10%,
    var(--color-primary) 20%
  );
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3s infinite linear;
  animation: shine 3s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 48px;
}

.animate-inout {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
  color: var(--white);
  font-size: 12px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: solid 2px var(--color-primary);
  cursor: pointer;
}

.btn-icon {
  position: relative;
  padding-left: 20px;
}

.btn-icon:hover {
  color: var(--color-primary);
}

.btn-icon::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  height: 2px;
  left: 0;
  background: var(--color-heading);
  transform: translateY(-50%);
  margin-top: -1px;
  transition: all 0.35s ease-in-out;
}

.btn-icon:hover::after {
  background: var(--color-primary);
}

.btn-icon i {
  font-weight: 500;
}

.btn-icon:hover {
  padding-left: 40px;
}

.animate-inout span {
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
  width: 0%;
  height: 0%;
  position: absolute;
  content: "";
  border-radius: 100%;
}

.animate-inout:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--white);
}

.animate-inout:before {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
  background: transparent;
  color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
  color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.animate-inout:hover {
  color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.animate-inout:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.btn-md {
  padding: 15px 40px;
}

.btn-md.btn-border {
  padding: 14px 52px;
}

.btn-sm {
  padding: 14px 45px;
}

.btn-sm.btn-border,
.btn-sm.btn-light {
  padding: 14px 45px;
}

.mfp-close-btn-in .mfp-close::after {
  display: none;
}

/* Btn Animation */

.btn-animation {
  z-index: 1;
  position: relative;
  font-size: 18px;
  display: inline-block;
  margin-left: 10px;
}

.bg-dark .btn-animation {
  color: var(--white);
}

.btn-animation i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  font-weight: 400;
  margin-right: 10px;
  transition: all 0.35s ease-in-out;
  transform: scale(0);
}

.btn-animation:hover {
  margin-left: 0;
  color: var(--color-heading);
}

.bg-dark .btn-animation:hover {
  color: var(--white);
}

.btn-animation:hover i {
  transform: scale(1);
}

.btn-animation::after {
  position: absolute;
  left: -13px;
  top: 0;
  content: "";
  height: 60px;
  width: 60px;
  border: 1px solid #c2bfbf;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
  transform: scale(1);
  z-index: -1;
}

.bg-dark .btn-animation::after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-animation:hover::after {
  transform: scale(0);
}

.btn-animation span {
  transition: all 0.35s ease-in-out;
  left: -50px;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-animation:hover span {
  left: 0;
}

.btn-animation.dark::after {
  border-color: #c5c5c5;
  z-index: -1;
}

.btn-animation.dark i {
  background: var(--color-primary);
  color: var(--white);
}

.btn-animation.dark:hover {
  color: var(--color-heading);
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

a.btn-round-animation {
  display: inline-block;
  height: 180px;
  width: 180px;
  text-align: center;
  line-height: 180px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

a.btn-round-animation i {
  display: inline-block;
  transform: rotate(-45deg);
  font-weight: 400;
  margin-left: 5px;
}

a.btn-round-animation::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation:hover {
  color: var(--white);
}

a.btn-round-animation:hover::before {
  height: 100%;
}

a.btn-round-animation:hover::after {
  opacity: 0.4;
  height: 80%;
}

a.btn-round-animation.dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
  color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--white);
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */


/* ============================================================== 
    # Nice Select Styles
=================================================================== */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--white);
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 15px;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999999;
}

.nice-select::after {
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  overflow-y: auto !important;
  height: auto;
}

.nice-select.open ::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999999;
  pointer-events: none;
}

.nice-select.disabled::after {
  border-color: #96aac1;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small::after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--white);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 500;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.mfp-iframe-holder .mfp-close {
  color: transparent;
  background: transparent;
}

.mfp-iframe-holder .mfp-close::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 20px;
  width: 20px;
  z-index: 1;
  display: block;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  color: var(--white);
}

.split-text {
  overflow: hidden;
  position: relative;
}

.split-text .line {
  overflow: hidden;
  display: none;
  padding-bottom: 5px;
}

/* ============================================================== 
    # Banner Styles
=================================================================== */
.banner-area {
  height: 100%;
  width: 100%;
  position: relative;
}

@media (max-width: 1023px) {
  .banner-area {
    height: auto;
  }
}

.banner-area div {
  height: 100%;
}

.banner-area div.swiper-slide .row div {
  height: auto;
}

.banner-area.top-pad-80 .content {
  padding-top: 80px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-80 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-80 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-90 .content {
  padding-top: 90px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-90 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-90 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-100 .content {
  padding-top: 100px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-100 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-100 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-110 .content {
  padding-top: 110px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-110 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-110 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-120 .content {
  padding-top: 120px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-120 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-120 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-130 .content {
  padding-top: 130px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-130 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-130 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-150 .content {
  padding-top: 150px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-150 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-150 .content {
    padding-top: 140px;
  }
}

.banner-area.auto-height {
  height: auto;
}

.banner-area.auto-height div {
  height: auto;
}

.banner-area.auto-height .content {
  padding: 200px 0;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height .content {
    padding: 60px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height .content {
    padding: 120px 0;
  }
}

.banner-area.auto-height .content .thumb {
  padding-left: 35px;
}

@media (max-width: 991px) {
  .banner-area.auto-height .content .thumb {
    padding-left: 0;
    margin-top: 50px;
  }
}

.banner-area.auto-height.inc-header-transparent .content {
  padding-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 140px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 220px;
  }
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .info {
  padding-top: 80px;
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .thumb {
  margin-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 50px;
  }
}

.banner-area .content {
  position: relative;
  z-index: 9;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1023px) {
  .banner-area .content {
    padding: 120px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area .content {
    padding: 90px 0;
  }
}

.banner-area h4 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translate3d(-15%, 0, 0);
  transform: translate3d(-15%, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.banner-area h2 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.banner-area p,
.banner-area ul {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  padding-right: 32%;
  margin: 0;
  visibility: hidden;
}

@media (max-width: 1023px) {
  .banner-area p {
    padding-right: 0;
  }
}

.banner-area.text-center p {
  padding-left: 13%;
  padding-right: 13%;
}

@media (max-width: 1023px) {
  .banner-area.text-center p {
    padding: 0;
  }
}

.banner-area .thumb {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.banner-area .button {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}

.banner-area .banner-slide h4 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide h2 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide p,
.banner-area .banner-slide ul {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .button {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active p,
.banner-area .banner-slide .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-area.double-items .thumb {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area.double-items .swiper-slide.swiper-slide-active .thumb {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  visibility: visible;
  opacity: 1;
}

.banner-area.double-items.bottom-thumb .content {
  padding: 0;
}

.banner-area.double-items.bottom-thumb .content .thumb {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 50px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 120px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 50px;
  }
}

.banner-area.zoom-effect .banner-thumb {
  -webkit-transition: 10s ease-out;
  transition: 10s ease-out;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
}

.banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner-area .swiper-notification {
  display: none;
}

.banner-area .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

.banner-area .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active .button {
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .banner-items {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.banner-area:hover .swiper-button-prev,
.banner-area:hover .swiper-button-next {
  opacity: 1;
}

.banner-area:hover .swiper-button-prev {
  left: 30px;
  right: auto;
}

.banner-area:hover .swiper-button-next {
  right: 30px;
  left: auto;
}

.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
  height: auto;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}

.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
  font-size: 40px;
  color: #e3ebdd;
  font-weight: 100;
}

.banner-area.navigation-circle .swiper-button-prev,
.banner-area.navigation-circle .swiper-button-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: var(--white);
}

.banner-area.navigation-circle.navigation-dark .swiper-button-prev,
.banner-area.navigation-circle.navigation-dark .swiper-button-next {
  border: 2px solid #cccccc;
  color: var(--color-heading);
}

.banner-area.navigation-dark .swiper-button-prev::after,
.banner-area.navigation-dark .swiper-button-next::after {
  color: var(--color-heading);
}

.bg-dark-secondary .banner-area.navigation-dark .swiper-button-prev::after,
.bg-dark-secondary .banner-area.navigation-dark .swiper-button-next::after {
  color: var(--white);
}

.banner-area.navigation-circle .swiper-button-prev::after,
.banner-area.navigation-circle .swiper-button-next::after {
  font-size: 16px;
}

.banner-area.navigation-right-bottom .swiper-button-prev,
.banner-area.navigation-right-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 50px;
  border-radius: inherit;
}

.banner-area.navigation-right-bottom .swiper-button-prev {
  right: 92px;
}

.banner-area.navigation-between-bottom .content {
  padding-bottom: 105px;
}

@media only screen and (min-width: 829px) and (max-width: 1023px) {
  .banner-area.navigation-between-bottom .content {
    padding-bottom: 220px;
  }
}

.banner-area.navigation-between-bottom .swiper-button-prev,
.banner-area.navigation-between-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 30px;
  border-radius: inherit;
}

.banner-area.navigation-between-bottom .swiper-button-prev {
  left: 30px;
  right: auto;
}

@media only screen and (max-width: 830px) {
  .banner-area .swiper-button-prev,
  .banner-area .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-custom .swiper-button-prev::after {
  font-family: "ElegantIcons";
  content: "\23";
  font-size: 22px;
}

.banner-area.navigation-custom .swiper-button-next::after {
  font-family: "ElegantIcons";
  content: "\24";
  font-size: 22px;
}

.banner-area.navigation-text .swiper-button-prev,
.banner-area.navigation-text .swiper-button-next {
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  left: auto;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 150px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100px;
  line-height: 100px;
}

@media only screen and (max-width: 830px) {
  .banner-area.navigation-text .swiper-button-prev,
  .banner-area.navigation-text .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-text .swiper-button-prev {
  right: 151px;
}

.banner-area.navigation-text .swiper-button-prev::after {
  font-family: var(--font-heading);
  content: "Prev";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.banner-area.navigation-text .swiper-button-next::after {
  font-family: var(--font-heading);
  content: "Next";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.banner-area.navigation-icon-solid .swiper-button-prev::after,
.banner-area.navigation-icon-solid .swiper-button-next::after {
  font-size: 30px;
}

.banner-area.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-custom-large .swiper-button-next {
  min-width: 65px;
  height: 30px;
  margin: 0;
}

.banner-area.navigation-custom-large .swiper-button-prev::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f104";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  left: 8px;
}

.banner-area.navigation-custom-large .swiper-button-prev::before {
  position: absolute;
  top: 50%;
  right: inherit;
  bottom: inherit;
  left: 12px;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-custom-large .swiper-button-next::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  right: 8px;
}

.banner-area.navigation-custom-large .swiper-button-next::before {
  position: absolute;
  top: 50%;
  right: 12px;
  bottom: inherit;
  left: inherit;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-right-botom .swiper-button-prev,
.banner-area.navigation-right-botom .swiper-button-next {
  position: absolute;
  left: auto;
  right: 30px;
  top: auto;
  bottom: 40px;
  opacity: 1;
  -webkit-transform: inherit;
  transform: inherit;
}

.banner-area.navigation-right-botom .swiper-button-prev {
  right: 60px;
}

.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-next {
  bottom: 30px;
}

.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-prev {
  right: 100px;
}

.banner-area .swiper-pagination {
  height: auto;
  bottom: 35px;
}

.banner-area .swiper-pagination span.swiper-pagination-bullet {
  height: 4px;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: inherit;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
  height: 7px;
}

@media only screen and (max-width: 767px) {
  .banner-area.include-pagination .content {
    padding-bottom: 100px;
  }
}

.banner-area .swiper-pagination-fraction span {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area .swiper-pagination-fraction span.swiper-pagination-current {
  font-size: 30px;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ============================================================== 
    # Banner Custom Style
=================================================================== */

.banner-area .align-center {
  align-items: center;
}

.banner-style-one ul {
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.banner-style-one li {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 300;
  text-transform: uppercase;
  padding: 15px;
  letter-spacing: 1px;
}

.banner-style-one li:last-child {
  border: none;
}

.banner-style-one li i {
  margin-right: 2px;
}

.banner-style-one h4 {
  font-family: var(--font-optional);
  font-size: 42px;
}

.banner-style-one h2 {
  font-size: 90px;
  line-height: 1;
  margin-bottom: 40px;
}

.banner-style-one .btn {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .banner-style-one .content {
    padding-top: 120px;
  }
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active ul {
  transition-delay: 1100ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

/* Banner Two */
.banner-area.banner-style-two .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h2 {
  transition-delay: 300ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h4 {
  transition-delay: 700ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-two h2 {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.bg-dark-secondary .banner-style-two h2 {
  color: var(--white);
}

.banner-style-two h4 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid;
  padding: 7px 20px;
}

.bg-dark-secondary .banner-style-two h4 {
  color: var(--white);
}

.banner-style-two h4 strong {
  color: var(--color-primary);
}

.banner-style-two .thumb {
  text-align: center;
  padding: 50px;
}

.banner-style-two .thumb img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 76%;
}

.banner-style-two p {
  font-size: 20px;
  padding-right: 15%;
}

/* Banner Six */
.banner-area.banner-style-six .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-six h2 {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.banner-style-six h4 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid;
  padding: 7px 20px;
}

.banner-style-six h4 strong {
  color: var(--color-primary);
}

.banner-style-six .thumb {
  text-align: center;
  padding: 50px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .banner-style-six .thumb::after {
    position: absolute;
    left: 50%;
    top: -100%;
    content: "";
    bottom: 10px;
    background: var(--white);
    width: 96%;
    z-index: -1;
    transform: translateX(-50%);
    border-radius: 400px;
    opacity: 0.1;
  }

  .banner-style-six .thumb::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 450px;
    width: 450px;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(130px);
    background: #009688;
  }
}

.banner-style-six .thumb img:nth-child(2) {
  position: absolute;
  right: -50px;
  top: 15%;
  transition: all 0.65s ease-in-out;
}

.banner-style-six p {
  font-size: 20px;
  padding-right: 15%;
}

.banner-style-six .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-style-six .shape img:first-child {
  position: absolute;
  right: 0;
  bottom: 5%;
  height: auto;
  max-width: 200px;
}

.banner-style-six .content {
  padding-top: 80px;
}

/* Banner Three */
.banner-style-three-content,
.banner-style-three-content div {
  height: 100%;
}

.banner-style-three-area {
  height: 100%;
}

.banner-style-three-content {
  padding-top: 40px;
}

.banner-style-three-content .row {
  align-items: center;
}

.banner-style-three-content .row div {
  height: auto;
}

.banner-style-three-content h4 {
  font-size: 50px;
  text-transform: uppercase;
}

.banner-style-three-content h2 {
  font-size: 150px;
  text-transform: uppercase;
  line-height: 120px;
}

.banner-style-three-content .box {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 1);
  border-top: none;
  padding: 30px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.banner-style-three-content .box::after {
  position: absolute;
  right: 0;
  content: "";
  height: 2px;
  width: 70px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  top: 0;
  z-index: -1;
}

.banner-style-three-content .box::before {
  position: absolute;
  left: 0;
  content: "";
  height: 2px;
  width: 70px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  top: 0;
  z-index: -1;
}

.banner-style-three-content .box span {
  position: relative;
  top: -15px;
  text-transform: uppercase;
  font-size: 20px;
}

.banner-style-three-content .box h3 {
  margin: 0;
  font-size: 80px;
  font-family: var(--font-default);
  line-height: 1;
}

/* Banner Four */

.banner-area.banner-style-four .content {
  padding-top: 90px;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-style-four .thumb {
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-style-four .thumb::after {
  position: absolute;
  left: 50%;
  content: "";
  height: 500%;
  width: 60%;
  background: var(--color-primary);
  bottom: -100%;
  z-index: -1;
  transform: translateX(-50%);
}

.banner-style-four .thumb img:nth-child(2) {
  position: absolute;
  left: -5%;
  top: 10%;
}

.banner-style-four h2 {
  font-size: 55px;
  text-transform: uppercase;
}

.banner-style-four h4 {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: var(--font-default);
  font-weight: 400;
  padding-bottom: 5px;
  border-radius: 30px;
}

.banner-area.banner-style-four p {
  padding-right: 10%;
  font-size: 20px;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-four .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-style-four .shape img:first-child {
  position: absolute;
  right: 100%;
  top: 20%;
  max-height: 200px;
  margin-right: 50px;
}

.banner-style-four .shape img:nth-child(2) {
  position: absolute;
  left: 100%;
  bottom: 20%;
}

.banner-style-four .shape img {
  transition: all 1s ease-in-out;
  transform: scale(0);
}

.banner-style-four .swiper-slide-active .shape img {
  transform: scale(1);
}

.banner-style-four .shape img:nth-child(2) {
  transition-delay: 0.1s;
}

/* Banner Five */
.banner-style-five-area .content {
  padding-top: 200px;
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
}

.banner-style-five-area h4 {
  text-transform: uppercase;
  font-size: 30px;
}

.banner-style-five-area h2 {
  text-transform: uppercase;
  font-size: 150px;
  line-height: 1.1;
  margin-bottom: 80px;
}

.bg-dark-secondary .banner-style-five-area h2 {
  color: var(--white);
}

.banner-style-five-area h2 strong {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.banner-style-five-area h2 strong::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/21.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
  background-size: contain;
}

.banner-style-five-thumb {
  min-height: 750px;
  background-position: center bottom !important;
  position: relative;
  z-index: 1;
}

.banner-style-five-thumb img {
  position: absolute !important;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
  z-index: -1;
}

.curve-text svg {
  fill: var(--color-heading);
  height: 170px;
  width: 170px;
  overflow: inherit;
  animation: spinner 20s infinite linear;
}

.curve-text svg {
  background: var(--bg-gray);
  border-radius: 50%;
  padding: 45px;
  position: relative;
  z-index: 1;
  font-size: 24px;
  height: 230px;
  width: 230px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  border: 10px solid var(--white);
}

.curve-text svg a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
}

.curve-text {
  display: inline-block;
  position: relative;
}

.curve-text a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 50px;
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
}

.curve-text svg path {
  fill: none;
}

.curve-text svg text {
  fill: var(--color-heading);
  letter-spacing: 4px;
}

.curve-text .thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 80px;
  width: 80px;
  background: var(--dark);
  text-align: center;
  line-height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.curve-text img {
  height: 30px;
}

/* ============================================================== 
    # About
=================================================================== */

.thumb-style-one {
  position: relative;
}

.thumb-style-one .contact-card-one {
  position: absolute;
  right: -70px;
  bottom: 0;
}

.contact-card-one a {
  display: inline-flex;
  align-items: center;
  background: var(--bg-gray);
}

.contact-card-one a .icon i {
  height: 100px;
  width: 100px;
  display: inline-block;
  text-align: center;
  line-height: 100px;
  background: var(--color-primary);
  color: var(--white);
  font-size: 30px;
}

.contact-card-one .info {
  padding: 10px 30px;
}

.contact-card-one .info h4 {
  margin: 0;
  color: var(--color-heading);
}

.contact-card-one .info span {
  text-transform: uppercase;
  font-size: 15px;
  color: var(--color-paragraph);
}

.about-style-one-info .content {
  margin-left: 150px;
  position: relative;
  padding-left: 50px;
}

.about-style-one-info .content::after {
  position: absolute;
  right: 100%;
  top: 15px;
  content: "";
  height: 2px;
  width: 100%;
  border-top: 1px solid #cccccc;
  z-index: -1;
}

.about-style-one-info .content p {
  margin-bottom: 0;
}

/* ============================================================== 
    # About Style Two
=================================================================== */
ul.launch-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-style-two-info {
  position: relative;
}

.about-style-two-info ul.launch-time {
  position: relative;
  left: -300px;
  margin-right: -300px;
  margin-top: 50px;
}

ul.launch-time > li {
  background: var(--dark);
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

ul.launch-time li h4 {
  color: var(--white);
}

ul.launch-time li {
  color: #cccccc;
}

/* ============================================================== 
    # About Style Three
=================================================================== */
.about-style-three-items {
  position: relative;
  top: -60px;
  z-index: 9;
  margin-bottom: -60px;
  overflow: hidden;
}

@media only screen and (min-width: 1400px) {
  .about-style-three-area .container-stage {
    padding-right: 0;
  }
}

.about-style-one-thumb {
  height: 100%;
}

.about-style-one-thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-style-three-items .row > div {
  padding: 0;
}

.about-style-three-content {
  padding: 50px;
  padding-left: 65px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-style-three-content img {
  max-width: max-content;
  margin: 0 auto 30px;
  height: auto;
}

.opening-hours-style-one {
  padding: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opening-hours-style-one ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.opening-hours-style-one ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.opening-hours-style-one ul li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.opening-hours-style-one ul li span {
  padding-right: 30px;
}

.opening-hours-style-one ul li .text-right {
  padding-left: 30px;
}

.about-style-three-content h2 {
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-heading);
}

.about-style-three-content p {
  color: var(--color-paragraph);
}

.about-style-three-content .contact-card-one a {
  text-align: left;
  background: var(--white);
  margin-top: 15px;
}

/* ============================================================== 
    # Feature
=================================================================== */
.feature-one-single:nth-child(2n) .feature-style-one-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  padding: 90px 37px;
}

.feature-style-one-item img {
  max-width: max-content;
  margin: auto;
  height: 100px;
  margin-bottom: 30px;
}

.feature-style-one-item {
  background: var(--bg-gray);
  text-align: center;
  overflow: hidden;
  padding: 60px 37px;
  border-radius: 30px;
}

.feature-style-one-area .row {
  --bs-gutter-x: 5px;
}

.feature-style-one-item p {
  margin: 0;
}

.feature-one-single:nth-child(2n) .feature-style-one-item h4 {
  margin-top: 15px;
  margin-bottom: 0;
}

.feature-one-single:nth-child(2n) .feature-style-one-item img {
  margin-bottom: 0;
  margin-top: 30px;
}

.feature-one-single {
  position: relative;
  z-index: 1;
}

.feature-one-single::after {
  position: absolute;
  left: 50%;
  top: -120px;
  height: 120px;
  width: 2px;
  content: "";
  transform: translateX(-50%);
  background: var(--bg-gray);
}

.feature-one-single::before {
  position: absolute;
  left: 50%;
  top: -13px;
  height: 30px;
  width: 30px;
  content: "";
  transform: translateX(-50%);
  background: var(--dark);
  border-radius: 50%;
  z-index: 1;
  border: 10px solid var(--white);
}

.feature-one-single:nth-child(odd) .feature-style-one-item {
  margin-top: 60px;
}

.feature-one-single:nth-child(odd)::before {
  top: 45px;
}

.feature-one-single:nth-child(odd)::after {
  height: 190px;
}

/* ============================================================== 
    # Feature Style Two
=================================================================== */
.feature-style-two-heading .title {
  font-size: 100px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-style-two-heading .title img {
  height: 100px;
  margin: 0 15px;
}

.feature-style-two-area {
  position: relative;
  z-index: 1;
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom center;
}

.feature-style-two-area .shape img {
  position: absolute;
  z-index: -1;
}

.feature-style-two-area .shape img:first-child {
  left: 5%;
  top: 50px;
}

.feature-style-two-area .shape img:nth-child(2) {
  bottom: 100px;
  left: 10%;
}

.feature-style-two-area .shape img:nth-child(3) {
  right: 5%;
  bottom: 30%;
}

.feature-product-item a {
  display: block;
  background-size: cover;
  background-position: center;
  padding: 50px;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.feature-product-item a:first-child {
  margin-top: 0;
}

.feature-product-item:first-child a {
  height: 100%;
  margin-top: 0;
}

.feature-product-item:first-child a .thumb {
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 70%;
}

.feature-product-item:nth-child(2) a .thumb {
  position: absolute;
  height: auto;
  right: -10%;
  bottom: -10%;
  width: 50%;
}

.feature-product-item:nth-child(2) .info {
  padding-right: 45%;
}

.feature-product-item:nth-child(2) a:last-child .thumb {
  position: absolute;
  height: auto;
  left: -10%;
  bottom: -10%;
  width: 50%;
}

.feature-product-item:nth-child(2) a:last-child .info {
  padding-left: 45%;
  padding-right: 0;
}

.feature-product-item .thumb .offer {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  height: 150px;
  width: 150px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
  font-size: 36px;
  text-transform: capitalize;
  font-family: var(--font-optional);
  font-weight: 900;
  padding: 0 25px;
  padding-right: 35px;
}

.feature-product-item .thumb .offer strong {
  display: block;
}

.feature-product-item:first-child a .thumb .offer {
  position: absolute;
  left: 0;
  top: 0;
}

.feature-product-item:nth-child(2) .thumb .offer {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-heading);
  font-family: var(--font-optional);
}

.feature-product-item:nth-child(2) a:last-child .offer {
  left: auto;
  right: 30px;
  top: -50px;
  color: #eda400;
}

.feature-product-item a .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-right: 45%;
}

.feature-product-item h2 {
  font-size: 60px;
  text-transform: uppercase;
}

.feature-product-item a .info .btn {
  max-width: max-content;
}

.feature-product-item a .info .btn-light:after {
  background: var(--dark);
}

/* ============================================================== 
    # Brand
=================================================================== */

.brand-area {
  background-repeat: no-repeat;
  background-position: right top;
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand-area::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 250px;
  width: 250px;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  background: #009688;
}

.brand-style-one-carousel img {
  max-height: 100px;
  margin: auto;
}

.brand-heaidng {
  position: relative;
  z-index: 1;
}

.brand-heaidng::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 2px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: -1;
  margin-top: -1px;
}

.brand-heaidng h3 {
  display: inline-block;
  margin: 0;
  background: var(--white);
  padding: 0 25px;
}

.bg-dark .brand-heaidng h3 {
  background: var(--dark);
}

.bg-dark .brand-heaidng h3 {
  background: var(--dark);
}

/* ============================================================== 
    # Why Choose Us
=================================================================== */

.choose-us-style-one-item {
  overflow: hidden;
}

.choose-us-style-one-items .shape img {
  position: absolute;
  bottom: -50px;
  right: 100%;
  margin-right: -50px;
}

.choose-us-style-one-items {
  background: var(--white);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.choose-us-style-one-area .relative {
  position: relative;
  z-index: 1;
}

.choose-us-style-one-area .shape img {
  position: absolute;
  bottom: 0;
  right: 100%;
}

.choose-us-style-one-info {
  padding: 80px;
  padding-left: 95px;
}

.choose-us-style-one-content {
  padding: 0;
  padding-right: 15px;
}

.fun-fact-style-one img {
  height: 80px;
  margin-bottom: 30px;
}

.fun-fact-style-one {
  padding: 50px;
}

.fun-fact-style-one .counter {
  display: flex;
  justify-content: center;
  font-size: 80px;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 15px;
}

.fun-fact-style-one .counter .operator {
  font-size: 50px;
  line-height: 1;
}

.fun-fact-style-one .medium {
  text-transform: uppercase;
}

ul.list-style-one {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

ul.list-style-one li {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  font-weight: 500;
  margin-top: 5px;
}

ul.list-style-one li::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 18px;
  width: 18px;
  background: url(../img/icon/check.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  transform: translateY(-50%);
}

.choose-us-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.choose-us-style-one-item .video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: inherit;
  background: transparent;
  z-index: 1;
  transform: translate(-50%, -50%);
}

/* ============================================================== 
    # Fun Factor
=================================================================== */

.fun-fact-style-one-area {
  position: relative;
  z-index: 1;
}

.fun-fact-style-one-area::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 20%;
  background: var(--color-primary);
  z-index: -1;
}

@media only screen and (min-width: 1600px) {
  .fun-fact-style-one-area::after {
    right: 120px;
  }
}

.fun-fact-style-one-items h2 {
  font-size: 110px;
  line-height: 1;
  text-transform: uppercase;
}

.fun-fact-style-one-content {
  border-top: 2px solid;
  margin-top: 50px;
  padding-top: 10px;
}

.fun-fact-style-one-content .fun-fact {
  display: inline-block;
  margin-right: 60px;
  margin-top: 30px;
}

.fun-fact-style-one-content .fun-fact .counter {
  display: flex;
  font-size: 70px;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}

.fun-fact-style-one-content .fun-fact span.medium {
  text-transform: uppercase;
  font-weight: 500;
}

.fun-fact-style-one-content .fun-fact:last-child {
  margin-right: 0;
}

/* ============================================================== 
    # Video BG
=================================================================== */

.video-bg-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.video-bg-area h2 {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.video-bg-area h2::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  height: 50px;
  width: 1px;
  background: var(--white);
}

/* Shape */

.video-bg-area .wavesshape {
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  width: 100%;
  height: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.video-bg-area .wavesshape img {
  width: 100%;
}

.video-bg-content {
  position: relative;
  z-index: 1;
  padding: 200px 0;
}

.video-bg-content::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--black);
  opacity: 0.5;
  z-index: -1;
}

/* ============================================================== 
    # Food Cateogry
=================================================================== */
.food-cat-item a {
  display: block;
  background-size: cover;
  background-position: center;
  padding: 50px;
  overflow: hidden;
  border-radius: 10px;
  padding-top: 150px;
  position: relative;
  z-index: 1;
}

.food-cat-item a h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.food-cat-item a span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 20px;
}

.food-cat-area {
  background-repeat: no-repeat;
  background-position: right top;
}

/* ============================================================== 
    # Services
=================================================================== */
.services-style-one-area {
  position: relative;
  z-index: 1;
}

.services-style-one-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  bottom: 45%;
  background: var(--dark);
  z-index: -1;
}

.services-style-one {
  text-align: center;
  padding: 80px 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.services-style-one:after {
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 120%)
    repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: 10px;
}

.services-style-one h4 {
  font-size: 26px;
}

.services-style-one p {
  margin: 0;
  color: var(--white);
}

.services-style-one i {
  font-size: 50px;
}

.services-style-one .icon {
  display: inline-block;
  font-size: 50px;
  margin-bottom: 30px;
  height: 100px;
  width: 100px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 100px;
  color: var(--color-primary);
  border-radius: 50%;
}

.services-style-one .icon img {
  padding: 22px;
  position: relative;
  top: -5px;
}

/* Services Swiper Nav */
.services-swiper-nav {
  position: absolute;
  right: 50px;
  bottom: 80px;
  display: flex;
  width: 200px;
  justify-content: space-between;
  align-items: center;
}

.col-xl-12 .services-swiper-nav {
  position: relative;
}

.services-swiper-nav > div {
  height: 40px;
  width: 40px;
  z-index: 9;
  position: relative;
  border-radius: 50%;
  line-height: 25px;
  background: var(--white);
  color: var(--color-heading);
}

.services-swiper-nav > div::after {
  position: absolute;
  top: 7px;
  content: "";
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  color: var(--color-heading);
}

.services-swiper-nav .services-button-next::after {
  content: "\f105";
}

.services-swiper-nav .services-button-prev::after {
  content: "\f104";
}

.services-swiper-nav .services-pagination {
  background: transparent;
  position: absolute;
  line-height: 40px;
  color: var(--white);
  font-size: 24px;
  width: auto;
  font-weight: 500;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border: none;
}

@media (min-width: 1024px) {
  .services-style-one-area .heading-left::after {
    position: absolute;
    right: 0;
    top: -120px;
    content: "";
    bottom: -126px;
    width: 300px;
    background: var(--color-primary);
    z-index: -1;
  }
}

/* ============================================================== 
    # Food Menu
=================================================================== */

#portfolio-grid {
  margin: -15px;
}

.food-menu-lists .food-menu-style-one {
  float: left;
  padding: 15px;
}

.food-menu-lists.colums-2 .food-menu-style-one {
  width: 50%;
}

.food-menu-lists.colums-3 .food-menu-style-one {
  width: 33.333%;
}

.food-menu-lists.colums-4 .food-menu-style-one {
  width: 25%;
}

/* Menu Isotop */

.mix-item-menu button {
  padding: 8px 20px;
  margin: 5px;
  border: none;
  background: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-heading);
  overflow: inherit;
}

.mix-item-menu button::after {
  display: none;
}

.mix-item-menu {
  margin-bottom: 40px;
  display: inline-block;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
}

.bg-gray .mix-item-menu {
  border-color: #cac6c6;
}

.mix-item-menu button.active {
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.mix-item-menu button::before {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: all 0.35s ease-in-out;
  transform: translateX(-50%);
}

.mix-item-menu button.active::before {
  width: 30px;
}

.food-menu-style-one .item {
  background: var(--white);
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 50px;
}

.food-menu-style-one .item .item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dddddd;
  padding-top: 20px;
}

.food-menu-style-one .item .item-price .left {
  font-family: var(--font-default);
  text-transform: uppercase;
  text-align: left;
}

.food-menu-style-one .item .item-price h5 {
  font-family: var(--font-default);
  font-weight: 700;
  margin: 0;
}

.food-menu-style-one .item .button a {
  display: block;
  color: var(--white);
  text-align: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 15px;
  background: var(--color-primary);
}

.food-menu-style-one .item .button a:hover {
  background: var(--dark);
}

.food-menu-style-one .item .item-price i {
  display: inline-block;
  font-size: 30px;
  color: var(--color-primary);
  font-weight: 100;
}

.bg-dark-secondary .food-menu-style-one .item .item-price i {
  color: var(--white);
}

.food-menu-style-one .item .food-cats {
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
  border-top: 1px solid #cccccc;
  padding-top: 15px;
  text-transform: uppercase;
  font-size: 15px;
}

.food-menu-style-one .button {
  margin-top: 25px;
}

.food-menu-style-one .item .thumb img {
  max-height: 250px;
  margin-bottom: 30px;
  border-radius: 50%;
}

/* ============================================================== 
    # Menu Style Two
=================================================================== */

.bg-dark-secondary .food-menu-style-two-area.secondary {
  background-image: none !important;
  background-color: var(--dark);
}

@media (min-width: 1199px) {
  .food-menu-style-two-area.secondary {
    max-width: 90%;
    margin: auto;
  }

  .food-menu-style-two-area.full-width,
  .full-width .food-menu-style-two-area {
    max-width: 100%;
  }
}

.food-menu-style-two-thumb {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-right: 50px;
}

.food-menu-style-two-thumb::after {
  position: absolute;
  left: 50%;
  top: -100%;
  content: "";
  height: 150%;
  width: 50%;
  background: var(--color-primary);
  z-index: -1;
  transform: translateX(-50%);
  margin-left: -25px;
}

.food-menu-style-two-area {
  overflow: hidden;
}

.food-menu-style-two:nth-child(2n) .row {
  flex-direction: row-reverse;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
  right: 0;
  top: auto;
  bottom: -100%;
  margin: 0;
  margin-left: 25px;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb {
  padding-right: 0;
  padding-left: 50px;
}

.food-menu-style-two-thumb img {
  border-radius: 50%;
  border: 15px solid var(--white);
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  background: var(--color-primary);
  padding: 10px;
}

.food-menu-style-two-content {
  margin-left: 120px;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
  margin-left: 0;
  margin-right: 120px;
}

ul.meal-type {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 15px;
}

ul.meal-type li {
  display: inline-block;
  border: 1px solid;
  margin-left: 10px;
  padding: 1px 10px;
  font-weight: 600;
  padding-top: 3px;
}

ul.meal-items li {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 5.5fr;
  grid-column-gap: 30px;
  align-items: center;
}

ul.meal-items.thumb-less li {
  display: block;
}

ul.meal-items li .thumbnail img {
  border-radius: 50%;
  margin-right: 30px;
}

ul.meal-items li .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

ul.meal-items {
  display: grid;
  grid-row-gap: 30px;
}

.food-menus-item .title,
.food-menu-items .title,
.meal-items .title {
  margin-top: 0;
}

ul.meal-items li .content .top h4 {
  margin: 0;
  background: var(--white);
  padding-right: 20px;
}

.bg-cover ul.meal-items li .content .top h4 {
  background: #f3f4ee;
}

.food-menu-items ul.meal-items li .content .top h4 {
  background: var(--dark-secondary);
}

ul.meal-items li .content .bottom {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  justify-content: space-between;
  grid-column-gap: 50px;
}

ul.meal-items li .content .bottom .right {
  text-align: right;
}

.text-light ul.meal-items li .content .bottom p {
  color: #aba8a8;
}

ul.meal-items li .content .bottom p {
  margin: 0;
  text-transform: capitalize;
}

ul.meal-items li .content .top .price {
  font-size: 24px;
  font-weight: 500;
  background: var(--white);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.bg-cover ul.meal-items li .content .top .price {
  background: #eff0e9;
}

.color-style-two ul.meal-items li .content .top .price {
  color: var(--color-secondary);
}

.food-menu-items ul.meal-items li .content .top .price {
  background: var(--dark-secondary);
}

ul.meal-items li .content .top .price span {
  line-height: 1.2;
  margin-left: 20px;
}

ul.meal-items li .content .top::before {
  position: absolute;
  left: 0;
  top: 16px;
  content: "";
  height: 1px;
  width: 100%;
  border-top: 2px dashed #6d6d6d;
  z-index: -1;
  opacity: 0.6;
}

ul.meal-items li .content .top .price span:first-child {
  margin-left: 20px;
}

.food-menu-style-two {
  margin-top: 100px;
}

.food-menu-style-two:first-child {
  margin-top: 0;
}

.food-menu-style-two-content h4.sub-heading {
  font-size: 36px;
}

.food-menu-style-two-content h4.sub-heading::before {
  margin-top: -20px;
  background-size: 140px;
}

/* ============================================================== 
    # Menu Style Three
=================================================================== */

@media only screen and (min-width: 1600px) {
  .menu-type-area {
    position: relative;
    z-index: 1;
  }

  .menu-type-area::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 120px;
    background: var(--white);
    z-index: -1;
  }
}

ul.menu-type-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.menu-type-list li h6 {
  width: 1%;
  display: table-cell;
  white-space: nowrap;
  font-weight: 300;
}

ul.menu-type-list li .line-seperator {
  width: 98%;
  display: table-cell;
  position: relative;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  bottom: 10px;
}

ul.menu-type-list li h6:first-child {
  padding-right: 20px;
}

ul.menu-type-list li h6:last-child {
  padding-left: 20px;
}

.menu-type-item h3 {
  font-weight: 400;
  margin-bottom: 30px;
}

ul.menu-type-list li {
  margin-top: 14px;
}

.menu-type-single .btn {
  display: block;
}

.menu-type-single .btn::after {
  background: var(--white);
}

.menu-type-single .btn:hover {
  color: var(--color-heading);
}

.menu-type-item {
  padding: 50px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
}

.menu-type-item .thumb {
  display: inline-block;
  position: relative;
  height: 200px;
  width: 200px;
  padding: 15px;
  border-radius: 50%;
  background: var(--dark);
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-type-item .thumb img:nth-child(2) {
  position: absolute;
  right: -20px;
  top: 0;
  z-index: -1;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.35s ease-in-out;
}

.menu-type-item:hover .thumb img:nth-child(2),
.menu-type-item.active .thumb img:nth-child(2) {
  filter: none;
}

/* ============================================================== 
    # Menu Style Four
=================================================================== */
.special-menu-style-one .thumb {
  height: 200px;
  width: 200px;
  margin: auto auto 30px;
  position: relative;
  z-index: 1;
}

.special-menu-style-one .thumb img {
  border-radius: 50%;
  border-top: 10px solid var(--color-primary);
  border-left: 10px solid var(--color-primary);
  border-right: 10px solid var(--bg-gray);
  border-bottom: 10px solid var(--bg-gray);
}

.special-menu-style-one .thumb h4 {
  margin: 0;
  position: absolute;
  right: -10px;
  bottom: -10px;
  height: 80px;
  width: 80px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border: 2px solid;
}

.special-menu-style-one {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
}

.special-menu-style-one ul {
  margin: 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 10px 0;
  margin-bottom: 20px;
  margin-top: 25px;
}

.special-menu-style-one p {
  margin-bottom: 0;
}

.special-menu-style-one .button {
  margin-top: 15px;
  text-transform: uppercase;
}

.special-menu-style-one ul li {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.special-menu-style-one .button a i {
  font-weight: 100;
  margin-left: 6px;
}

.special-menu-style-one .button a {
  display: block;
  border: 2px solid #cccccc;
  color: var(--color-heading);
  padding: 8px;
  border-radius: 6px;
  font-weight: 400;
}

/* ============================================================== 
    # Menu Style Five
=================================================================== */
ul.meal-items.style-two li {
  display: block;
}

.menu-style-five-area {
  position: relative;
  z-index: 1;
}

.menu-style-five-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 37%;
  background: var(--white);
  z-index: -1;
}

.nav-tabs.food-menu-five-navs {
  margin: 0;
  border: none;
  margin-bottom: 20px;
}

.nav-tabs.food-menu-five-navs::before,
.nav-tabs.food-menu-five-navs::after {
  display: none;
}

.nav-tabs.food-menu-five-navs .nav-item button {
  margin: 0;
  border: none;
  border-radius: 10px;
  background: var(--white);
  color: var(--color-heading);
  padding: 12px 25px;
  margin-bottom: 6px;
}

.nav-tabs.food-menu-five-navs .nav-item button::after {
  display: none;
}

.nav-tabs.food-menu-five-navs .nav-item button.active {
  background: var(--color-primary);
  color: var(--white);
}

.fun-fact-style-two {
  display: flex;
  align-items: center;
}

.fun-fact-style-two .icon {
  background: var(--white);
  height: 120px;
  width: 120px;
  text-align: center;
  padding: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  margin-right: 25px;
}

.fun-fact-style-two .counter {
  display: flex;
  align-items: center;
  font-size: 80px;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.fun-fact-style-two span.medium {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 26px;
}

/* ============================================================== 
    # Shop
=================================================================== */

.cart-btn {
  display: inline-flex;
  border: 1px solid #b5b2ba;
  padding: 11px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  align-items: center;
  font-size: 15px;
}

.cart-btn i {
  font-weight: 400;
  margin-right: 10px;
  font-size: 20px;
}

.cart-btn:hover {
  border-color: transparent;
  background: var(--color-primary);
  color: var(--white);
}

.shape-seperate img {
  position: absolute;
  max-height: 100px;
  z-index: 1;
}

.shape-seperate img:first-child {
  left: 5%;
}

.shape-seperate img:last-child {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================== 
    # Offer Product
=================================================================== */
.offer-style-one ul {
  padding: 0;
  list-style: none;
  margin: 30px 0;
}

.offer-style-one ul li {
  margin-top: 15px;
}

.offer-style-one ul li h5 {
  margin-bottom: 0;
}

.offer-style-one ul li h5,
.offer-style-one ul li span {
  width: 1%;
  display: table-cell;
  white-space: nowrap;
  font-weight: 400;
  min-width: 155px;
}

.offer-style-one ul li .line-seperator {
  width: 98%;
  display: table-cell;
  position: relative;
  border-bottom: 1px solid #dddddd;
  bottom: 10px;
}

.text-light .offer-style-one ul li .line-seperator {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-style-one ul li h5:first-child {
  padding-right: 20px;
}

.offer-style-one ul li h5:last-child {
  padding-left: 40px;
}

.offer-style-one .thumb {
  position: relative;
  z-index: 1;
}

.offer-style-one .thumb .discount-badge {
  position: absolute;
  right: -80px;
  top: 50px;
  background-image: url(../img/shape/2.png);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  height: 250px;
  display: flex;
  width: 250px;
  flex-direction: column;
  z-index: 1;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: var(--font-heading);
}

.offer-style-one .thumb .discount-badge strong {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.offer-style-one {
  position: relative;
}

.offer-style-one .shape {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0;
}

.offer-style-one .shape img {
  width: 100px;
}

/* ============================================================== 
    # Discount
=================================================================== */

.discount-area {
  position: relative;
  z-index: 1;
}

.discount-area .wavesshape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.offer-item-thumb {
  position: relative;
}

.offer-item-thumb img:nth-child(2) {
  position: absolute;
  right: -50px;
  top: 0;
  height: 200px;
}

.counter-class .counter-list {
  display: flex;
}

.counter-class .item-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.counter-class .item-list h5 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 90px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.counter-class .item-list h5 span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.discount-content h2 {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background-size: contain;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.discount-content h4 {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px 20px;
  text-transform: uppercase;
  border-radius: 7px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* ============================================================== 
    # Chef
=================================================================== */

@media (min-width: 1024px) {
  .chef-one-single:nth-last-child(2n) {
    margin-top: 80px;
  }
}

.chef-style-one-item .info {
  margin-top: 30px;
}

.chef-style-one-item .info h4 {
  margin-bottom: 5px;
}

.chef-style-one-item .info span {
  text-transform: uppercase;
}

.chef-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.chef-style-one-item .thumb img {
  border-radius: 10px;
}

.chef-one-social {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.chef-style-one-item li {
  display: inline-block;
  margin: 0 1px;
}

.chef-style-one-item li a {
  display: inline-block;
}

.chef-style-one-item li i {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: var(--color-primary);
  line-height: 40px;
  border-radius: 50%;
  color: var(--white);
  position: relative;
  bottom: -30px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: all 0.35s ease-in-out;
}

.chef-one-social li:nth-child(2) a i {
  transition: all 0.55s ease-in-out;
}

.chef-one-social li:nth-child(3) a i {
  transition: all 0.75s ease-in-out;
}

.chef-style-one-item:hover .chef-one-social li a i {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.chef-one-social li .fa-facebook-f {
  background: #3b5998;
}

.chef-one-social li i.fa-twitter {
  background: #1da1f2;
}

.chef-one-social li i.fa-dribbble {
  background: #ea4c89;
}

.chef-one-social li i.fa-linkedin-in {
  background: #0077b5;
}

/* ============================================================== 
     # Chef Single  
=================================================================== */

.chef-single-area .chef-content-top {
  bottom: -50px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.chef-single-area .chef-content-top .right-info {
  margin-bottom: 80px;
}

.chef-single-area .chef-content-top .right-info h2 {
  font-weight: 500;
}

.chef-single-area .chef-content-top .right-info p {
  padding-right: 20%;
}

.chef-single-area .chef-content-top .right-info span {
  display: block;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 25px;
}

.chef-single-area .chef-content-top .right-info ul {
  padding: 0;
  list-style: none;
  margin: 35px 0;
}

.chef-single-area .right-info ul li {
  margin-top: 10px;
  color: var(--color-heading);
  display: flex;
  align-items: center;
}

.chef-single-area .right-info ul li p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.chef-single-area .right-info > ul li i {
  min-width: 35px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  border-radius: 5px;
  margin-right: 15px;
}

.chef-single-area .right-info ul li strong {
  font-weight: 500;
}

.chef-single-area .right-info ul li a {
  font-weight: 400;
}

.chef-single-area .right-info ul li a:hover {
  color: var(--color-primary);
}

.chef-single-area .right-info .social {
  display: flex;
  margin-top: 25px;
  font-weight: 500;
  align-items: center;
}

.chef-single-area .right-info .social h4 {
  font-weight: 500;
  margin-bottom: 0;
  margin-right: 25px;
}

.chef-single-area .right-info .social ul {
  margin: 0;
  padding: 0;
  border: none;
}

.chef-single-area .right-info .social .share-link {
  position: relative;
  z-index: 1;
  margin-left: 15px;
  padding-right: 20px;
}

.chef-single-area .right-info .social .share-link > i {
  display: inline-block;
  height: 45px;
  background: var(--dark);
  line-height: 45px;
  width: 45px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
}

.chef-single-area .right-info .social ul {
  display: flex;
  list-style-type: none;
  grid-gap: 10px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0s;
}

.chef-single-area .right-info .social .share-link:hover ul {
  left: 58px;
  opacity: 1;
  pointer-events: auto;
}

.chef-single-area .right-info .social ul li {
  display: inline-block;
  margin: 0;
}

.chef-single-area .right-info .social ul li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 47px;
  background: var(--white);
  text-align: center;
  border-radius: 50% !important;
}

.chef-single-area .bottom-info h2 {
  font-weight: 500;
  margin-bottom: 25px;
}

.chef-single-area .bottom-info p:last-child {
  margin-bottom: 0;
}

.chef-single-area .bottom-info .skill-items {
  padding-left: 35px;
}

.skill-items .progress-box {
  margin-bottom: 35px;
}

.chef-single-area .chef-content-top img {
  border-radius: 30px;
}

.skill-items .progress-box:last-child {
  margin-bottom: 0;
}

.skill-items .progress-box h5 {
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.skill-items .progress-box h5 span {
  position: absolute;
  font-size: 50px;
  line-height: 1;
  top: -21px;
  left: 0;
  z-index: -1;
  opacity: 0.05;
  font-weight: 500;
}

.skill-items .skill-items {
  margin-top: 40px;
}

.skill-items .progress-box .progress {
  background: transparent;
  border-bottom: none;
  box-shadow: inherit;
  border-radius: inherit;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar {
  height: 6px;
  border-radius: 30px;
  background: var(--color-primary);
  top: 12px;
  position: relative;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar span {
  position: absolute;
  right: 0;
  top: -37px;
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  background: var(--dark);
  padding: 0 7px;
  border-radius: 5px;
}

.skill-items .progress-box .progress .progress-bar span::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--dark);
  transform: translateX(-50%);
}

.chef-single-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.chef-list-item h4 {
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 28px;
}

.chef-list-item h5 {
  font-weight: 500;
  margin-bottom: 8px;
}

.chef-list-item span {
  text-transform: none;
  margin-bottom: 5px;
  color: var(--color-heading);
  display: block;
}

.chef-list-item li {
  margin-top: 30px;
}

.chef-list-item li:first-child {
  margin-top: 0;
}

.chef-single-list ul {
  border: none;
  margin-top: 0;
  padding: 0;
}

.skill-items h3 {
  font-weight: 500;
  margin-bottom: 30px;
}

.chef-list-item ul {
  border-left: 1px solid;
  padding-left: 25px;
}

.chef-list-item ul li {
  position: relative;
  z-index: 1;
}

.chef-list-item ul li::after {
  position: absolute;
  left: -33px;
  top: 3px;
  content: "";
  height: 15px;
  width: 15px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--white);
}

/* ============================================================== 
    # Testimonial
=================================================================== */

.testimonial-style-one-area {
  overflow: hidden;
}

.testimonial-style-one-area .wavesshape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tm-proivder-thumb img {
  border: 5px solid #cccccc;
  height: 200px;
  width: auto;
  margin-left: -50px;
}

.bg-gray .tm-proivder-thumb img,
.bg-gray-secondary .tm-proivder-thumb img,
.bg-dark .tm-proivder-thumb img,
.bg-theme .tm-proivder-thumb img {
  border: 5px solid var(--white);
}

.tm-proivder-thumb img:first-child {
  transform: rotate(5deg);
}

.tm-proivder-thumb img:nth-child(2) {
  position: relative;
  top: 50px;
  transform: rotate(-5deg);
}

.testimonial-style-one {
  padding-bottom: 60px;
}

.testimonial-style-one .content p {
  font-size: 30px;
  line-height: 1.5;
}

.tm-proivder-thumb {
  margin-top: 50px;
  margin-left: 50px;
}

.tm-review i {
  color: #f7a105;
}

.tm-review {
  display: block;
  margin-bottom: 15px;
}

.testimonial-style-one .provider h4 {
  margin-bottom: 15px;
  font-size: 30px;
}

.testimonial-style-one .provider {
  margin-bottom: 30px;
}

.testimonial-style-one .provider span {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--color-primary);
}

.testimonial-pagination {
  position: relative;
  margin-top: 50px;
  margin-bottom: -15px;
}

.testimonial-pagination .swiper-pagination {
  position: inherit;
}

.testimonial-pagination .swiper-pagination span.swiper-pagination-bullet {
  background: transparent;
  height: 20px;
  width: 20px;
  border: 2px solid;
  position: relative;
  z-index: 1;
}

.testimonial-pagination
  .swiper-pagination
  span.swiper-pagination-bullet::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bg-dark
  .testimonial-pagination
  .swiper-pagination
  span.swiper-pagination-bullet::after {
  background: var(--white);
}

/* ============================================================== 
    # Reservation
=================================================================== */
.reservation-thumb {
  position: relative;
  border-right: 3px solid var(--color-primary);
}

.reservation-thumb > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.reservation-style-one-items {
  border-radius: 10px;
}

.reservation-info {
  padding: 80px 120px;
}

.reservation-form label {
  display: block;
  color: var(--color-heading);
  width: 100%;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.6px;
}

.bg-dark .reservation-form label {
  color: var(--white);
}

.reservation-form.light label {
  color: var(--color-paragraph);
}

.reservation-form .form-group {
  margin-bottom: 15px;
}

.reservation-form .input-group {
  margin-bottom: 15px;
}

.reservation-form select {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  background: transparent;
  color: var(--color-heading);
  border: 1px solid #cccccc;
}

.bg-dark .reservation-form select {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reservation-form input,
.reservation-form input:focus {
  padding: 0 15px;
  background: transparent;
  border: 1px solid #e7e7e7;
  color: var(--color-heading);
  box-shadow: none;
}

.bg-dark .reservation-form input,
.bg-dark .reservation-form input:focus {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.reservation-form .input-group span.input-group-addon {
  background: var(--color-primary);
  color: var(--white);
  padding: 0 20px;
  line-height: 50px;
  border-radius: 0 5px 5px 0;
  border: none;
}

.reservation-form.light .input-group span.input-group-addon {
  background: var(--white);
  color: var(--color-heding);
  border: 1px solid #e7e7e7;
}

.reservation-form.light .input-group span.input-group-addon i {
  color: var(--color-primary);
}

.reservation-form .input-group input {
  border-right: none;
  border-radius: 5px 0 0 5px !important;
}

.reservation-form > i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 70px;
  text-align: center;
  background: var(--color-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 30px;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  border: 5px solid;
}

.reservation-form h3 {
  margin-bottom: 30px;
}

.reservation-form.light button {
  margin-top: 15px;
}

.bg-dark .reservation-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.bg-dark .reservation-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.bg-dark .reservation-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.bg-dark .reservation-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.bg-dark .reservation-form.light input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666666;
}

.bg-dark .reservation-form.light input::-moz-placeholder {
  /* Firefox 19+ */
  color: #666666;
}

.bg-dark .reservation-form.light input:-ms-input-placeholder {
  /* IE 10+ */
  color: #666666;
}

.bg-dark .reservation-form.light input:-moz-placeholder {
  /* Firefox 18- */
  color: #666666;
}

.bg-dark .reservation-form select option {
  color: var(--color-heading);
  padding: 20px;
}

.bg-dark .reservation-form button::after {
  background: var(--white);
}

.reservation-form.light button::after {
  background: var(--dark);
}

.bg-dark .reservation-form button:hover {
  color: var(--color-heading);
}

.reservation-form .nice-select {
  background: transparent;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
}

.bg-dark .reservation-form .nice-select {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.reservation-form .nice-select li.option {
  color: var(--color-heading);
  padding: 5px 20px;
  line-height: 30px;
  border-bottom: 1px solid #e7e7e7;
}

.reservation-style-one-items > .row {
  margin: 0;
}

.reservation-thumb .icon {
  display: inline-flex;
  height: 120px;
  width: 120px;
  text-align: center;
  line-height: 120px;
  background: var(--white);
  position: absolute;
  right: -60px;
  top: 80px;
  color: var(--color-primary);
  font-size: 40px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  z-index: 9;
  flex-direction: column;
  justify-content: center;
}

.reservation-thumb img {
  border-radius: 10px 0 0 10px;
}

.reservation-thumb .icon img {
  padding: 25px;
}

/* ============================================================== 
    # Reservation
=================================================================== */

.reservation-style-two-area {
  position: relative;
  z-index: 1;
}

.reservation-banner img {
  height: 100%;
  width: 48%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.reservation-tabs {
  padding: 120px 0;
  position: relative;
  display: flex;
  left: -135px;
  margin-right: -135px;
}

.reservation-tabs .nav-tabs .nav-item {
  display: block;
  margin: 16px 0;
}

.reservation-tabs .nav-tabs .nav-item button {
  display: flex;
  margin: 0;
  padding: 0;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 150px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  transition: all 0.35s ease-in-out;
  text-transform: uppercase;
}

.reservation-tabs .nav-tabs .nav-item button img {
  height: 50px;
  margin-bottom: 10px;
  transition: all 0.35s ease-in-out;
}

.reservation-tabs .nav-tabs .nav-item button.active img {
  filter: brightness(0) invert(1);
}

.reservation-tabs .nav-tabs {
  margin: 0;
  padding: 0;
  border: none;
  margin-right: 50px;
  list-style: none;
  margin-top: -20px;
}

.reservation-tabs .tab-content {
  width: 100%;
}

.reservation-tabs .nav-tabs .nav-item button::after {
  display: none;
}

.reservation-tabs .nav-tabs .nav-item button.active {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # Gallery
=================================================================== */
.gallery-items.colums-3 .pf-item {
  float: left;
  padding: 15px;
  width: 33.3333%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-items.colums-3 .pf-item {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .gallery-items.colums-3 .pf-item {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  #portfolio-grid {
    margin: 0;
  }

  .gallery-items.colums-3 .pf-item {
    width: 100%;
    padding: 15px 0;
  }
}

button.mfp-arrow::after {
  display: none;
}

.gallery-style-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-style-one .overlay {
  display: inline-block;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 10px;
  transition: all 0.35s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
}

.gallery-style-one .overlay h4 {
  margin: 0;
}

.gallery-style-one .overlay span {
  color: var(--color-primary);
}

.gallery-style-one:hover .overlay {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.gallery-style-one img {
  max-width: none;
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
}

.gallery-style-one:hover img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.gallery-style-one i {
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--bg-gray-secondary);
  border-radius: 50%;
  color: var(--color-primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.gallery-style-one::after {
  position: absolute;
  left: 50px;
  top: 50px;
  right: 50px;
  bottom: 50px;
  border-radius: 10px;
  background: var(--color-primary);
  content: "";
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
  mix-blend-mode: multiply;
}

.gallery-style-one:hover::after {
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

.gallery-style-one:hover i {
  margin: 0;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================================== 
    # Discount
=================================================================== */

.dicount-thumb {
  position: relative;
  z-index: 1;
}

.dicount-thumb img:nth-child(2) {
  position: absolute;
  right: 0;
  top: 100px;
}

.discount-info h2 {
  text-transform: uppercase;
  line-height: 1.1;
  background: var(--color-primary);
  display: inline-block;
  color: var(--white);
  max-width: max-content;
  padding: 15px 100px;
  clip-path: polygon(0 1%, 100% 0, 91% 51%, 100% 100%, 0 100%, 8% 57%);
  font-weight: 500;
}

.discount-info {
  overflow: hidden;
  height: 100%;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.discount-info p {
  font-size: 20px;
}

.offer-fun-fact .fun-fact .counter {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 10px;
  justify-content: center;
  font-weight: 500;
}

.offer-fun-fact .fun-fact {
  display: inline-block;
  border-right: 1px solid;
  margin-right: 30px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.offer-fun-fact {
  display: block;
  width: 100%;
  border: 1px solid;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  border-radius: 100px;
}

.offer-fun-fact .fun-fact:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}

.offer-fun-fact .fun-fact span.medium {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.discount-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.discount-info ul li {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding-left: 37px;
  text-align: left;
  margin-top: 5px;
  color: var(--color-paragraph);
}

.discount-info ul li::after {
  position: absolute;
  left: 0;
  top: 7px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  height: 23px;
  width: 23px;
  line-height: 23px;
  background: var(--dark);
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 600;
}

.discount-offer-area .shape img {
  position: absolute;
  right: 2%;
  bottom: -30px;
  height: 120px;
}

/* ============================================================== 
    # Home Blog
=================================================================== */
.home-blog-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.home-blog-style-one-item .thumb img {
  border-radius: 10px;
  margin-bottom: 30px;
}

.home-blog-style-one-item .thumb ul.blog-meta {
  position: absolute;
  left: 30px;
  top: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog-style-one-item .thumb ul.blog-meta li {
  display: inline-block;
  margin-right: 3px;
}

.home-blog-style-one-item .thumb ul.blog-meta li a {
  display: inline-block;
  background: var(--white);
  text-transform: uppercase;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 14px;
}

.home-blog-style-one-item .meta-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog-style-one-item .meta-tags li {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  margin-right: 5px;
  padding-right: 12px;
}

.home-blog-style-one-item .meta-tags li::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  border-radius: 50%;
  transform: translateY(-50%);
}

.home-blog-style-one-item .meta-tags li a {
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-paragraph);
}

.home-blog-style-one-item .meta-tags li:last-child::after {
  display: none;
}

.home-blog-style-one-item .meta-tags li a:hover {
  color: var(--color-primary);
}

.home-blog-style-one-item .post-title {
  line-height: 1.4;
}

.home-blog-style-one-item h4.post-title {
  font-size: 26px;
}

/* ============================================================== 
    # Contact
=================================================================== */
.maps-area {
  position: relative;
  z-index: 1;
}

.maps-area iframe {
  width: 100%;
  height: 800px;
}

.contact-style-one-info {
  background: var(--white);
  padding: 80px;
}

.contact-style-one-items {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.contact-style-one-box {
  position: relative;
}

.contact-style-one-info li {
  display: flex;
  margin-top: 30px;
}

.contact-style-one-info li i {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  margin-right: 20px;
}

.contact-style-one-info li:nth-child(2) i {
  background: var(--color-secondary);
}

.contact-style-one-info li:nth-child(3) i {
  background: var(--dark);
}

.contact-style-one-info li p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.contact-style-one-info li h5 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 20px;
}

.contact-style-one-info li a {
  font-weight: 400;
}

.contact-style-one-info h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}

.contact-style-one-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 50px;
}

.contact-style-one-items,
.contact-style-one-items div {
  height: 100%;
}

.contact-style-one-items div.row div {
  height: auto;
}

.contact-style-one-items div.row {
  align-items: center;
}

.contact-form-style-one {
  padding: 60px 80px;
  border-radius: 10px;
  position: relative;
  background: var(--bg-gray);
  z-index: 9;
}

.contact-form-style-one input,
.contact-form-style-one textarea,
.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
  margin-bottom: 15px;
  padding: 15px;
  border: none;
  font-size: 18px;
  border-radius: 6px;
  background: var(--white);
}

.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
  box-shadow: inherit;
}

.contact-form-style-one textarea {
  min-height: 180px;
}

.contact-form-style-one button {
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 6px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 17px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
  padding: 13px 52px;
}

.contact-form-style-one button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.contact-form-style-one button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.contact-form-style-one button:hover {
  color: var(--white);
}

img.loader {
  margin-left: 8px;
}

/* ============================================================== 
    # 404 page
=================================================================== */

.error-page-area {
  position: relative;
  z-index: 1;
}

.error-page-area .shape-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: left !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-page-area .shape-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: right !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-box h1 {
  font-size: 150px;
  line-height: 110px;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.error-box p {
  padding: 0 10%;
}

/* ============================================================== 
    # Footer
=================================================================== */
footer.footer-style-one {
  padding-top: 70px;
  overflow: hidden;
}

footer .bg-dark,
footer .bg-dark li,
footer .bg-dark a,
footer .bg-dark p,
footer.bg-dark,
footer.bg-dark li,
footer.bg-dark a,
footer.bg-dark p {
  color: #cccccc;
}

footer .bg-dark a:hover {
  color: var(--white);
}

footer .f-item img {
  height: 61px;
  margin-bottom: 30px;
}

ul.opening-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.opening-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  color: var(--white);
  text-transform: uppercase;
}

ul.opening-list li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

footer .link li {
  margin-top: 10px;
}

footer .link li:first-child {
  margin-top: 0;
}

footer a {
  font-weight: 400;
  font-family: var(--font-default);
}

footer .widget-title {
  margin-bottom: 30px;
}

.f-item.newsletter form {
  position: relative;
}

.f-item.newsletter form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  padding: 0;
  color: var(--white);
  box-shadow: none;
}

.f-item.newsletter form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.f-item.newsletter form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.f-item.newsletter form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.f-item.newsletter form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.footer-socila-items {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-socila-items h4 {
  margin: 0;
}

.f-item.newsletter form button {
  padding: 0;
  right: 0;
  top: 0;
  line-height: 50px;
  background: var(--color-primary);
  width: 100%;
  margin-top: 15px;
}

.f-item.newsletter form button::after {
  background: var(--white);
}

.f-item.newsletter form button:hover {
  color: var(--color-heading);
}

.f-item.newsletter form button i {
  font-weight: 400;
  transform: rotate(-45deg);
  margin-left: 3px;
}

.footer-item fieldset {
  display: flex;
  align-items: baseline;
  margin: 0;
  margin-top: 10px;
}

.footer-item fieldset input {
  min-height: auto;
  position: relative;
  margin-right: 10px;
}

.footer-item fieldset label {
  margin: 0;
}

.f-item.newsletter {
  position: relative;
  z-index: 1;
  padding: 0 50px;
}

.f-item.newsletter::after {
  position: absolute;
  left: 0;
  top: -300px;
  content: "";
  height: 500%;
  width: 100%;
  background: var(--dark);
  z-index: -1;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .f-item.newsletter::after {
  background: var(--dark);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

ul.contact-widget {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.contact-widget li {
  display: flex;
  margin-top: 20px;
}

ul.contact-widget li i {
  height: 35px;
  width: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 34px;
  font-weight: 500;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 80px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom img {
  height: 60px;
}

footer .bg-dark .footer-bottom p {
  margin: 0;
  color: var(--color-paragraph);
}

ul.footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.footer-social li {
  display: inline-block;
  margin-left: 5px;
}

ul.footer-social li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: var(--white);
  text-align: center;
  border-radius: 50%;
  color: var(--color-heading);
}

ul.footer-social li a:hover {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # Responsive CSS
=================================================================== */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Banner Two */
  .banner-style-six h2 {
    font-size: 60px;
  }

  .banner-style-six .content {
    padding-top: 100px;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: 0;
  }

  .banner-style-two h2 {
    font-size: 60px;
  }

  /* Banner Four */
  .banner-style-four h2 {
    font-size: 60px;
  }

  /* About */
  .about-style-one-info .content {
    padding-left: 0;
    margin-left: 0;
  }

  .about-style-one-info .content::after {
    display: none;
  }

  /* About Three */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 120px;
  }

  .about-style-three-content {
    padding: 120px;
  }

  /* Experience */
  .fun-fact-style-one-items h2 {
    font-size: 60px;
    line-height: 1.2;
  }

  /* Feature */
  .feature-style-one-item {
    padding-left: 25px;
    padding-right: 20px;
  }

  .feature-one-single:nth-child(2n) .feature-style-one-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Why Choose Us */
  .choose-us-style-one-item .thumb img {
    width: 100%;
  }

  .choose-us-style-one-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Food Menu */
  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one {
    width: 50%;
  }

  /* Food Menu Two */
  .food-menu-style-two-content {
    margin-left: 20px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin-right: 20px;
  }

  ul.meal-items li .content .bottom p {
    font-size: 16px;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    width: 40%;
  }

  .thumb-style-two {
    padding-right: 30px;
  }

  /* Feature Product */
  .feature-product-item a .info {
    padding-right: 30%;
  }

  /* Offer */
  .offer-style-one .shape img {
    width: 50px;
  }

  /* Chef Details */
  .chef-single-area .chef-content-top {
    margin: 0;
    bottom: 0;
  }

  .chef-single-area .chef-content-top .right-info {
    margin-bottom: 120px;
  }

  /* Footer */
  .footer-style-one {
    padding: 80px 30px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  ul.opening-list li {
    display: block;
  }

  ul.opening-list span.text-end {
    text-align: left !important;
    display: block;
  }

  .footer-bottom {
    position: relative;
    bottom: -1px;
  }
}

@media screen and (max-width: 991px) {
  /* global reset - start */
  .order-last {
    order: 0;
  }
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Topbar */

  .top-bar-area {
    background: var(--dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .top-bar-area.bg-transparent {
    background: var(--color-primary) !important;
  }

  .top-bar-area .item-flex {
    justify-content: center;
  }

  .top-bar-area .text-end {
    margin-top: 10px;
    display: none;
  }

  .topbar-two-items .logo {
    display: none;
  }

  .top-bar-style-two {
    padding: 15px 0;
  }

  .topbar-two-items {
    justify-content: center;
  }

  .topbar-two-items .topbar-info {
    margin: 0 25px;
  }

  /* Banner Two */
  .banner-style-two h2 {
    font-size: 90px;
  }

  .banner-style-two .content {
    text-align: center;
  }

  .banner-style-two p {
    padding: 0 10%;
  }

  /* Banner Five */
  .banner-style-five-area h2 {
    font-size: 120px;
  }

  .banner-style-five-area .content {
    padding-top: 120px;
  }

  .banner-style-five-thumb {
    min-height: 500px;
  }

  /* Banner Six */
  .banner-style-six {
    text-align: center;
  }

  .banner-style-six p {
    padding: 0;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: 10%;
    top: 5%;
  }

  /* Banner Style Three */
  .banner-style-three-content h2 {
    font-size: 100px;
    line-height: 1;
  }

  .banner-style-three-content h4 {
    font-size: 40px;
  }

  .banner-style-three-area {
    height: auto;
  }

  .banner-style-three-content {
    padding: 120px 0;
  }

  /* Banner Four */
  .banner-area.banner-style-four .content {
    padding-top: 120px;
  }

  .banner-style-four .thumb {
    margin-top: 50px;
    display: none;
  }

  .banner-style-four p {
    padding: 0;
  }

  /* About */
  .thumb-style-one {
    margin-bottom: 50px;
  }

  .thumb-style-one .contact-card-one {
    right: auto;
    left: 0;
  }

  .about-style-one-info {
    overflow: hidden;
  }

  /* About Two */
  .thumb-style-two {
    margin-bottom: 50px;
  }

  .about-style-two-info ul.launch-time {
    left: 0;
    margin: 0;
    margin-top: 50px;
  }

  /* About */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 120px;
  }

  .about-style-three-content {
    padding: 80px;
  }

  /* Feature */
  .feature-one-single:nth-child(odd) .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single:first-child .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single::before {
    display: none;
  }

  .feature-one-single::after {
    display: none;
  }

  .feature-one-single:nth-child(2n) .feature-style-one-item {
    padding: 60px 37px;
  }

  .feature-style-one-area .row {
    --bs-gutter-x: 30px;
  }

  .feature-style-one-area {
    padding-top: 90px;
  }

  /* Experience */
  .fun-fact-style-one-area::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 19%;
  }

  .fun-fact-style-one-content {
    margin-top: 30px;
    padding-top: 0;
  }

  .fun-fact-style-one-area {
    text-align: center;
  }

  .fun-fact-style-one-content .fun-fact {
    margin: 0 50px;
    margin-top: 30px;
  }

  .fun-fact-style-one-area .thumb {
    margin-top: 50px;
  }

  .fun-fact-style-one-content .fun-fact:last-child {
    margin-right: 50px;
  }

  .fun-fact-style-one-items h2 {
    font-size: 80px;
    line-height: 1.2;
  }

  /* Reservation */
  .reservation-banner img {
    width: 100%;
    position: relative;
    max-height: 450px;
  }

  .reservation-tabs {
    left: 0;
    margin: 0;
    padding: 120px 0;
    display: block;
  }

  .reservation-tabs .nav-tabs {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .reservation-tabs form.reservation-form {
    text-align: left;
    background: var(--bg-gray);
    padding: 80px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .reservation-tabs .nav-tabs .nav-item {
    text-align: center;
    display: inline-block;
    margin: 0 15px;
    margin-bottom: 25px;
  }

  .reservation-tabs .nav-tabs .nav-item button {
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .reservation-tabs .tab-content {
    text-align: center;
  }

  .reservation-form input,
  .reservation-form input:focus {
    border-color: #cccccc;
  }

  .reservation-form .nice-select {
    border-color: #cccccc;
  }

  .reservation-tabs .tab-content h4.sub-heading::before {
    display: none;
  }

  .reservation-tabs .tab-content h4.sub-heading {
    padding-right: 0;
  }

  /* Service */
  .services-swiper-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }

  /* Food Menu */
  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one {
    width: 50%;
  }

  .mix-item-menu button {
    padding: 8px 15px;
  }

  /* Food Menu Two */
  .food-menu-style-two-thumb::after {
    display: none;
  }

  .food-menu-style-two-thumb {
    padding: 0 !important;
    margin-bottom: 50px;
  }

  .food-menu-style-two-thumb img {
    max-height: 500px;
  }

  .food-menu-style-two-content {
    margin: 0;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
    left: -50%;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin: 0;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    display: none;
  }

  .fun-fact-style-two {
    justify-content: center;
  }

  /* Feature Product */
  .feature-product-item {
    margin-top: 30px;
  }

  .feature-product-item:first-child {
    margin-top: 0;
  }

  .feature-product-item:first-child a .thumb .offer {
    top: 0;
    left: -30px;
  }

  .feature-product-item:first-child a .thumb {
    max-width: 50%;
    top: 80px;
    bottom: 0;
    transform: none;
  }

  .feature-product-item a .info {
    padding-right: 40%;
  }

  .shape-seperate {
    display: none;
  }

  /* Food Offer */
  .offer-style-one .thumb {
    margin-bottom: 70px;
  }

  .offer-style-one .thumb .discount-badge {
    right: auto;
    left: 0;
    bottom: -50px;
    top: auto;
  }

  .offer-style-one .thumb .discount-badge strong {
    font-size: 30px;
  }

  .offer-style-one .thumb .discount-badge {
    font-size: 18px;
    height: 180px;
    width: 180px;
  }

  /* Reservation */
  .reservation-thumb .icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    top: auto;
  }

  .reservation-thumb > img {
    height: 400px;
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    border-radius: 0;
  }

  .reservation-thumb {
    border: none;
    padding: 0;
  }

  .reservation-style-one-items {
    overflow: hidden;
  }

  .reservation-info {
    margin-top: 50px;
  }

  /* Gift Vourcher */
  .dicount-thumb img:nth-child(2) {
    right: 20%;
    top: 50px;
  }

  /* Brand */
  .brand-heaidng::after {
    display: none;
  }

  .brand-heaidng h3 {
    display: block;
    display: block;
    padding: 0;
    text-align: center;
  }

  .brand-area {
    text-align: center;
  }

  /* Chef Single */

  .chef-single-area .chef-content-top {
    bottom: 0;
    margin: 0;
  }

  .chef-single-area .chef-content-top .thumb {
    margin-bottom: 30px;
  }

  .chef-single-area .chef-content-top .thumb img {
    width: 100%;
  }

  .chef-single-area .chef-content-top .right-info p {
    padding: 0;
  }

  .chef-single-area .right-info > ul li i {
    min-width: 40px;
  }

  .chef-single-area .bottom-info .skill-items {
    padding: 0;
    margin-top: 50px;
  }

  /* Contact */
  .contact-style-one-items {
    position: relative;
  }

  .contact-style-one-items,
  .contact-style-one-items div {
    height: auto;
  }

  .contact-style-one-info {
    background: transparent;
    padding: 0;
    padding-top: 100px;
  }

  .maps-area iframe {
    height: 450px;
  }

  .contact-style-one-info ul {
    margin-top: 40px;
  }

  /* Discount */
  .offer-item-thumb img:nth-child(2) {
    right: auto;
    height: 150px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  .offer-item-thumb {
    text-align: center;
    margin-top: 90px;
  }

  .discount-area {
    text-align: center;
  }

  .discount-area p {
    padding: 0 10%;
  }

  .counter-class .item-list {
    justify-content: center;
  }

  /* Footer */

  .footer-bottom {
    background: var(--dark);
    text-align: center;
  }

  .f-item.newsletter::after {
    display: none;
  }

  .f-item.newsletter {
    padding: 0;
    padding-left: 30px;
  }

  footer.footer-style-one {
    position: relative;
    z-index: 1;
  }

  footer.footer-style-one::after {
    position: absolute;
    left: 50%;
    top: 0;
    content: "";
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }

  .f-item.link {
    padding-left: 30px;
  }

  .f-item.contact {
    padding-right: 30px;
  }

  .footer-style-one {
    padding: 80px 50px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .footer-style-one .about {
    padding-right: 30px;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 16px;
  }

  ul.footer-social li {
    margin: 0 5px;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .heading {
    margin-top: 0;
    line-height: 1.2;
    font-size: 36px;
  }

  /* Topbar */
  .top-bar-area {
    display: none;
    background: var(--dark) !important;
  }

  .top-bar-area .item-flex {
    justify-content: center;
  }

  .top-bar-area .text-end {
    margin-top: 10px;
    display: none;
  }

  .top-bar-area {
    padding: 20px 0;
  }

  .topbar-two-items .logo {
    display: none;
  }

  .top-bar-style-two {
    padding: 15px 0;
    display: none;
  }

  .topbar-two-items {
    justify-content: center;
  }

  .topbar-two-items .topbar-info {
    margin: 0 25px;
  }

  .sub-heading::before {
    display: none;
  }

  .sub-heading {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .sub-title::before,
  .sub-title::after {
    display: none;
  }

  /* Banner One */
  .banner-style-one h2 {
    font-size: 50px;
  }

  .banner-style-one li {
    display: block;
    width: 100%;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 15px;
    font-weight: 500;
  }

  .banner-style-one ul {
    display: block;
  }

  .banner-style-one {
    text-align: center;
  }

  /* Banner Two */
  .banner-style-two h2 {
    font-size: 10vw;
  }

  .banner-style-two h4 {
    font-size: 20px;
  }

  .banner-style-two p {
    padding: 0;
  }

  /* Banner Six */
  .banner-style-six {
    text-align: center;
  }

  .banner-style-six h2 {
    font-size: 50px;
    line-height: 1.2;
  }

  .banner-style-six h4 {
    font-size: 20px;
  }

  .banner-style-six p {
    padding: 0;
    font-size: 17px;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: auto;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
  }

  .banner-area .thumb {
    padding: 0;
    margin-top: 50px;
  }

  .banner-style-six .thumb {
    padding-top: 90px;
  }

  /* Banner Style Three */
  .banner-style-three-content {
    padding: 80px 0;
  }

  .banner-style-three-content h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .banner-style-three-content h4 {
    font-size: 30px;
  }

  .banner-style-three-area {
    height: auto;
  }

  /* Banner Style Four */
  .banner-style-four h4 {
    font-size: 18px;
  }

  .banner-style-four h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .banner-style-four p {
    padding: 0;
    font-size: 17px;
  }

  .banner-style-four {
    text-align: center;
  }

  .banner-style-four .thumb::after {
    display: none;
  }

  .banner-area.banner-style-four p {
    padding: 0;
  }

  .banner-style-four .thumb img:nth-child(2) {
    left: auto;
    right: 5%;
    height: 100px;
    top: -14px;
  }

  /* Banner Five */
  .banner-style-five-area h2 {
    font-size: 12vw;
  }

  .banner-style-five-area .content {
    padding-top: 80px;
  }

  .banner-style-five-area h2 {
    margin-bottom: 50px;
  }

  .banner-style-five-thumb {
    min-height: 400px;
  }

  /* About */
  .thumb-style-one .contact-card-one {
    right: auto;
    left: 0;
  }

  .thumb-style-one {
    margin-bottom: 40px;
  }

  .about-style-one-info .content {
    margin: 0;
    padding: 0;
  }

  .about-style-one-info .content::after {
    display: none;
  }

  /* About Two */
  .thumb-style-two {
    margin-bottom: 30px;
  }

  .about-style-two-info ul.launch-time {
    left: 0;
    margin: 0;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  /* About Three */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 60px;
  }

  .about-style-three-content {
    padding: 50px;
  }

  .opening-hours-style-one {
    padding: 50px;
  }

  .about-style-three-content .contact-card-one a {
    justify-content: center;
  }

  /* Feature */
  .feature-one-single:nth-child(odd) .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single:first-child .feature-style-one-item {
    margin-top: 0;
  }

  .feature-one-single::before {
    display: none;
  }

  .feature-one-single::after {
    display: none;
  }

  /* Discount */
  .discount-content h2 {
    font-size: 15vw;
  }

  .offer-item-thumb img:nth-child(2) {
    right: auto;
    height: auto;
    max-width: 150px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  .offer-item-thumb {
    text-align: center;
    margin-top: 90px;
  }

  .discount-area {
    text-align: center;
  }

  .counter-class .item-list {
    justify-content: center;
  }

  /* Experience */
  .fun-fact-style-one-area::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 19%;
  }

  .fun-fact-style-one-items h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .fun-fact-style-one-content {
    margin-top: 30px;
    padding-top: 0;
  }

  .fun-fact-style-one-area {
    text-align: center;
  }

  .fun-fact-style-one-content .fun-fact {
    margin: 0 20px;
    margin-top: 30px;
  }

  .fun-fact-style-one-area .thumb {
    margin-top: 50px;
  }

  .fun-fact-style-one-content .fun-fact:last-child {
    margin-right: 20px;
  }

  /* Why Choose us */
  .choose-us-style-one-info {
    padding: 50px;
  }

  .choose-us-style-one-content {
    padding: 0;
  }

  /* Video BG */

  .video-bg-content {
    padding: 80px 0;
  }

  .video-bg-area .wavesshape {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 0;
  }

  /* Food Category */
  .food-cat-area {
    background-size: 50%;
  }

  /* Service */
  .services-swiper-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-bottom: 30px;
    margin-top: 10px;
  }

  /* Food Menu */

  .food-menu-lists .food-menu-style-one {
    padding: 15px 0;
  }

  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one,
  .food-menu-lists.colums-2 .food-menu-style-one {
    width: 100%;
  }

  .mix-item-menu {
    border: none;
  }

  .mix-item-menu button {
    border: 1px solid #cccccc;
    margin: 5px 3px;
  }

  .mix-item-menu button::before {
    display: none;
  }

  /* Food menu Two */
  .food-menu-style-two-thumb {
    padding: 0;
    margin-bottom: 30px;
  }

  .food-menu-style-two-thumb::after {
    display: none;
  }

  .food-menu-style-two-content {
    margin: 0;
  }

  ul.meal-items li .thumbnail {
    display: none;
  }

  ul.meal-items li {
    display: block;
    border-top: 1px solid #cccccc;
    margin-top: 0;
    padding-top: 30px;
  }

  ul.meal-items li .content .bottom {
    display: block;
  }

  ul.meal-items li .content .bottom .right {
    text-align: left;
  }

  ul.meal-items li .content .bottom p {
    margin-top: 5px;
  }

  .food-menu-style-two-content h4.sub-heading {
    margin-bottom: 30px;
  }

  ul.meal-items li .content .top::before {
    display: none;
  }

  ul.meal-items {
    margin-top: 30px;
  }

  ul.meal-items {
    margin-top: 32px;
  }

  .food-menu-style-two {
    margin-top: 60px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
    top: 50%;
    transform: translateY(-50%);
    left: -50%;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb {
    padding: 0;
  }

  .food-menu-style-two-thumb img {
    max-height: 350px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin: 0;
  }

  ul.meal-items li .content .top {
    margin-bottom: 15px;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    display: none;
  }

  .food-menu-style-five-items {
    margin-top: 40px;
  }

  /* Feature Product */
  .feature-product-item {
    margin-top: 30px;
  }

  .feature-product-item:first-child {
    margin-top: 0;
  }

  .feature-style-two-area .shape img:first-child {
    top: 0;
  }

  .feature-product-item a {
    padding: 50px 40px;
    text-align: center;
  }

  .feature-product-item a .info {
    padding-right: 0;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .feature-product-item h2 {
    font-size: 36px;
  }

  .feature-product-item:first-child a .thumb {
    max-width: 80%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin-top: 60px;
  }

  .feature-product-item:first-child a .thumb .offer {
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }

  .feature-product-item:nth-child(2) .info {
    padding: 0;
  }

  .feature-product-item:nth-child(2) .thumb .offer {
    left: auto;
    right: 0;
    top: -32px;
  }

  .feature-product-item:nth-child(2) a .thumb {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    width: 80%;
  }

  .feature-product-item:nth-child(2) a:last-child .info {
    padding: 0;
  }

  .feature-product-item:nth-child(2) a:last-child .thumb {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin-top: 50px;
  }

  .shape-seperate {
    display: none;
  }

  ul.vt-products {
    margin-bottom: -30px;
  }

  /* Food Offer */
  .offer-style-one .thumb {
    margin-bottom: 70px;
  }

  .offer-style-one .thumb .discount-badge {
    right: auto;
    left: 0;
    bottom: -50px;
    top: auto;
  }

  .offer-style-one .thumb .discount-badge strong {
    font-size: 30px;
  }

  .offer-style-one .thumb .discount-badge {
    font-size: 18px;
    height: 180px;
    width: 180px;
  }

  /* Reservation */
  .reservation-banner img {
    width: 100%;
    position: relative;
    max-height: 350px;
  }

  .reservation-tabs {
    left: 0;
    margin: 0;
    padding: 60px 0;
    display: block;
  }

  .reservation-tabs .nav-tabs {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .reservation-tabs form.reservation-form {
    text-align: left;
    background: var(--bg-gray);
    padding: 50px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .reservation-tabs .nav-tabs .nav-item {
    text-align: center;
  }

  .reservation-tabs .nav-tabs .nav-item button {
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .reservation-tabs .tab-content {
    text-align: center;
  }

  .reservation-form input,
  .reservation-form input:focus {
    border-color: #cccccc;
  }

  .reservation-form .nice-select {
    border-color: #cccccc;
  }

  /* Testimonial */
  .tm-proivder-thumb img {
    height: 150px;
    width: 150px;
  }

  .tm-proivder-thumb {
    text-align: center;
  }

  .testimonial-style-one .content p {
    font-size: 20px;
  }

  /* Gift Vourcher */
  .discount-info h2 {
    font-size: 30px;
    padding: 15px 50px;
  }

  .discount-info ul li {
    font-size: 17px;
    padding-left: 30px;
  }

  .discount-info ul li::after {
    height: 20px;
    width: 20px;
    font-size: 10px;
  }

  .offer-fun-fact {
    border-radius: 10px;
  }

  .offer-fun-fact .fun-fact {
    display: block;
    margin: 0;
    border: none;
    padding: 20px 10px;
    border-bottom: 1px solid;
  }

  .discount-info {
    padding-bottom: 50px;
  }

  .dicount-thumb img:nth-child(2) {
    right: 5%;
    top: 5%;
  }

  /* Reservation */
  .reservation-thumb .icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    top: auto;
  }

  .reservation-thumb > img {
    height: 350px;
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    border-radius: 0;
  }

  .reservation-thumb {
    border: none;
    padding: 0;
  }

  .reservation-style-one-items {
    overflow: hidden;
  }

  .reservation-info {
    padding: 50px 30px;
    margin-top: 50px;
  }

  /* Chef Single */
  .chef-single-area .right-info .social {
    display: block;
  }

  .chef-single-area .right-info .social .share-link {
    margin-top: 30px;
    display: none;
  }

  .chef-single-area .chef-content-top {
    bottom: 0;
    margin: 0;
  }

  .chef-single-area .chef-content-top .thumb {
    margin-bottom: 30px;
  }

  .chef-single-area .chef-content-top .right-info p {
    padding: 0;
  }

  .chef-single-area .right-info > ul li i {
    min-width: 39px;
  }

  .chef-single-list {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }

  .chef-single-area .bottom-info .skill-items {
    padding: 0;
    margin-top: 30px;
  }

  /* Brand */
  .brand-heaidng::after {
    display: none;
  }

  .brand-heaidng h3 {
    display: block;
    display: block;
    padding: 0;
    text-align: center;
  }

  .brand-area {
    text-align: center;
  }

  /* Contact */
  .contact-style-one-items {
    position: relative;
  }

  .contact-style-one-items,
  .contact-style-one-items div {
    height: auto;
  }

  .contact-style-one-info {
    background: transparent;
    padding: 0;
    padding-top: 60px;
  }

  .maps-area iframe {
    height: 350px;
  }

  .contact-style-one-info ul {
    margin-top: 30px;
  }

  .contact-form-style-one {
    padding: 50px;
  }

  /* Footer */
  footer {
    background: var(--dark);
  }

  footer.footer-style-one {
    padding: 0;
    border-radius: 0;
  }

  .f-item.newsletter::after {
    display: none;
  }

  .f-item.newsletter {
    padding: 0;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    display: none;
  }

  .footer-bottom {
    background: transparent;
    text-align: center;
    border-radius: 0;
    margin-top: 50px;
  }

  footer .bg-dark .footer-bottom p {
    color: #cccccc;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 480px) {
}

@media screen and (max-width: 400px) {
  /* About */
  .opening-hours-style-one {
    padding: 50px 30px;
  }

  .about-style-three-content {
    padding: 50px 30px;
  }

  .opening-hours-style-one ul li {
    font-size: 16px;
  }

  /* Menu */
  .menu-type-item {
    padding: 50px 37px;
  }

  .menu-style-five-area::after {
    display: none;
  }

  .food-menu-style-five-items {
    margin-top: 40px;
  }

  .fun-fact-style-two {
    display: block;
    text-align: center;
    justify-content: center;
  }

  .fun-fact-style-two .icon {
    margin: auto auto 20px;
  }

  .fun-fact-style-two .counter {
    justify-content: center;
  }

  .feature-product-item a {
    padding: 50px 30px;
  }

  .contact-form-style-one {
    padding: 50px 30px;
  }
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.restan-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.restan-preloader .animation-preloader {
  z-index: 1000;
  position: relative;
}

.restan-preloader .animation-preloader::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/logo-icon.png);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
}

.restan-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 2px solid rgba(2, 109, 255, 0.3);
  border-top-color: var(--color-primary);
  height: 110px;
  margin: auto;
  width: 110px;
}

.bg-dark .restan-preloader .animation-preloader .spinner {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 1);
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.restan-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.restan-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.restan-preloader .loader .row {
  height: 100%;
}

.restan-preloader .loader .loader-section {
  padding: 0px;
}

.restan-preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.bg-dark .restan-preloader .loader .loader-section .bg {
  background-color: var(--dark);
}

.restan-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.restan-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.restan-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@media screen and (max-width: 767px) {
  .restan-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .restan-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
}

/* ============================================================== 
     # Dark Layout CSS 
=================================================================== */
@media only screen and (min-width: 1600px) {
  .bg-dark-secondary .menu-type-area::after {
    background: var(--dark-secondary);
  }
}

.bg-dark-secondary .title {
  color: var(--white);
}

.bg-dark-secondary .fun-fact-style-one-items h2 {
  color: var(--white);
}

.bg-dark-secondary .fun-fact-style-one-content .fun-fact span.medium {
  color: var(--white);
}

.bg-dark-secondary .special-menu-style-one ul li {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one ul li {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .reservation-tabs .title {
  color: var(--white);
}

.bg-dark-secondary .reservation-form label {
  color: var(--white);
}

.bg-dark-secondary .reservation-form input,
.bg-dark-secondary .reservation-form input:focus {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-secondary .reservation-form .nice-select {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-secondary .reservation-form input::placeholder {
  color: #cccccc;
}

.bg-dark-secondary .reservation-form input::-webkit-input-placeholder {
  color: #cccccc;
}

.bg-dark-secondary .reservation-form input:-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}

.bg-dark-secondary .reservation-form input::-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}

.bg-dark-secondary .reservation-form input:-ms-input-placeholder {
  color: #cccccc;
}

.bg-dark-secondary .site-heading .title {
  color: var(--white);
}

.bg-dark-secondary .blog-area .post-title a {
  color: var(--white);
}

.bg-dark-secondary .blog-area .post-title a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li a {
  color: #cccccc;
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li::after {
  background: var(--white);
}

.bg-dark-secondary footer .bg-dark .footer-bottom p {
  color: #cccccc;
}

.bg-dark-secondary .footer-bottom::before {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark-secondary .footer-bottom::after {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark-secondary .bg-gray .site-heading .title {
  color: var(--color-heading);
}

.bg-dark-secondary form.reservation-form button::after {
  background: var(--white);
}

.bg-dark-secondary form.reservation-form button:hover {
  color: var(--color-heading);
}

.bg-dark-secondary .feature-style-one-item {
  background: var(--dark);
}

.bg-dark-secondary .feature-one-single::before {
  background: #7a7e84;
  border-color: var(--dark-secondary);
}

.bg-dark-secondary .feature-one-single::after {
  background: #42464d;
}

.bg-dark-secondary .feature-style-one-item h4 {
  color: var(--white);
}

.bg-dark-secondary .menu-style-five-area::after {
  background: #2b4356;
}

.bg-dark-secondary .fun-fact-style-two span.medium {
  color: var(--white);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top h4 {
  background: var(--dark);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top h4 a {
  color: var(--white);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top .price {
  background: var(--dark);
}

.bg-dark-secondary .bg-cover .tab-content ul.meal-items li .content .top h4,
.bg-dark-secondary
  .bg-cover
  .tab-content
  ul.meal-items
  li
  .content
  .top
  .price {
  background: var(--dark-secondary);
}

.bg-dark-secondary .shape-seperate img {
  opacity: 0.2;
}

.bg-dark-secondary .product .product-contents {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--dark) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .shop-action li a::after {
  background: var(--white);
  color: var(--color-heading);
}

.bg-dark-secondary .product-tags a {
  color: #dedede;
}

.bg-dark-secondary .product-tags a:hover {
  color: var(--white);
}

.bg-dark-secondary .vt-products .product .product-contents .product-title a {
  color: var(--white);
}

.bg-dark-secondary .vt-products .product .product-caption .price span {
  color: var(--white);
}

.bg-dark-secondary .price del {
  color: #d3cece;
}

.bg-dark-secondary .testimonial-style-one .content p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .bg-dark .testimonial-style-one .content p {
  color: #cccccc;
}

.bg-dark-secondary .discount-info ul li::after {
  background: #494949;
}

.bg-dark-secondary .side .widget p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .side .widget.address ul li strong {
  color: var(--color-paragraph);
}

.bg-dark-secondary .navbar .side .widget h4 {
  color: var(--color-heading);
}

.bg-dark-secondary .banner-style-six h2 {
  color: var(--white);
}

.bg-dark-secondary .banner-style-six h4 {
  color: var(--white);
}

.bg-dark-secondary
  .banner-area.banner-style-six.navigation-dark
  .swiper-button-prev::after,
.bg-dark-secondary
  .banner-area.banner-style-six.navigation-dark
  .swiper-button-next::after {
  color: var(--white);
}

.bg-dark ul.meal-items li .content .top h4,
.bg-dark-secondary .bg-dark ul.meal-items li .content .top h4 {
  background: var(--dark);
}

.bg-dark ul.meal-items li .content .top h4 a {
  color: var(--white);
}

.bg-dark ul.meal-items li .content .top h4 a:hover {
  color: var(--color-primary);
}

.bg-dark ul.meal-items li .content .top .price,
.bg-dark-secondary .bg-dark ul.meal-items li .content .top .price {
  background: var(--dark);
  color: var(--white);
}

.bg-dark .food-menu-style-two-thumb img {
  border-color: #4e5154;
}

.bg-dark-secondary .bg-gray {
  background-color: var(--dark);
}

.bg-dark-secondary .food-cat-area.bg-gray .site-heading .title {
  color: var(--white);
}

.bg-dark-secondary .choose-us-style-one-items {
  background: var(--dark-secondary);
}

.bg-dark-secondary .choose-us-style-one-item {
  background: var(--color-primary);
}

.bg-dark-secondary .fun-fact-style-one img {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary ul.list-style-one li::after {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary .choose-us-style-one-items .btn.btn-dark {
  background: var(--white);
  color: var(--color-heading);
}

.bg-dark-secondary .choose-us-style-one-items .btn.btn-dark:hover {
  color: var(--white);
}

.bg-dark-secondary .mix-item-menu {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .mix-item-menu button {
  color: var(--white);
}

.bg-dark-secondary .food-menu-style-one .item {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.bg-dark-secondary .food-menu-style-one .item .info h4 a {
  color: var(--white);
}

.bg-dark-secondary .food-menu-style-one .item .info h4 a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .food-menu-style-one .item .food-cats {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .food-menu-style-one .item .item-price {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .food-menu-style-one .item .item-price h5 {
  color: var(--white);
}

.bg-dark-secondary .chef-style-one-item .info h4 a {
  color: var(--white);
}

.bg-dark-secondary .chef-style-one-item .info h4 a:hover {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark {
    border-color: rgba(255, 255, 255, 0.215);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    ul.nav
    > li
    > a {
    color: var(--white);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    .attr-nav
    .side-menu
    span {
    background: var(--white);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    .attr-right
    .attr-nav
    li.search
    a {
    color: var(--white);
  }
}

@media only screen and (max-width: 767px) {
  .bg-dark-secondary .reservation-tabs form.reservation-form {
    background: #454b4f;
  }

  .bg-dark-secondary .footer-bottom {
    background: transparent;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-dark-secondary .reservation-tabs form.reservation-form {
    background: #454b4f;
  }
}

/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}





/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: #ffffff !important;
    background: #8a082c !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg')
}




.cbp-spmenu {
    background: #dfdfdf;
    position: fixed
}

.cbp-spmenu h3 {
    color: #fff;
    font-size: 1.9em;
    padding: 20px;
    margin: 0;
    font-weight: 300;
    background: #000000;
}

.cbp-spmenu a {
    display: block;
    color: #fff;
    font-size: 1.1em;
    font-weight: 300
}

.cbp-spmenu a:hover {
    background: #000000;
}

.cbp-spmenu a:active {
    background: #333;
    color: #fff
}

.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000
}

.cbp-spmenu-vertical a {
    border-bottom: 1px solid #ccc;
    padding: 1em
}

.cbp-spmenu-horizontal {
    width: 100%;
    height: 150px;
    left: 0;
    z-index: 1000;
    overflow: hidden
}

.cbp-spmenu-horizontal h3 {
    height: 100%;
    width: 20%;
    float: left
}

.cbp-spmenu-horizontal a {
    float: left;
    width: 20%;
    padding: .8em;
    border-left: 1px solid #258ecd
}

.cbp-spmenu-left {
    left: -240px
}

.cbp-spmenu-right {
    right: -240px
}

.cbp-spmenu-left.cbp-spmenu-open {
    left: 0
}

.cbp-spmenu-right.cbp-spmenu-open {
    right: 0
}

.cbp-spmenu-top {
    top: -150px
}

.cbp-spmenu-bottom {
    bottom: -150px
}

.cbp-spmenu-top.cbp-spmenu-open {
    top: 0
}

.cbp-spmenu-bottom.cbp-spmenu-open {
    bottom: 0
}

.cbp-spmenu-push {
    overflow-x: hidden;
    position: relative;
    left: 0
}

.cbp-spmenu-push-toright {
    left: 240px
}

.cbp-spmenu-push-toleft {
    left: -240px
}

.cbp-spmenu,.cbp-spmenu-push {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (max-width: 55.1875em) {
    .cbp-spmenu-horizontal {
        font-size:75%;
        height: 110px
    }

    .cbp-spmenu-top {
        top: -110px
    }

    .cbp-spmenu-bottom {
        bottom: -110px
    }
}

@media screen and (max-height: 26.375em) {
    .cbp-spmenu-vertical {
        font-size:90%;
        width: 190px
    }

    .cbp-spmenu-left,.cbp-spmenu-push-toleft {
        left: -190px
    }

    .cbp-spmenu-right {
        right: -190px
    }

    .cbp-spmenu-push-toright {
        left: 190px
    }
}


#showLeftPush {
    display: block;
    height: 30px;
    position: absolute;
    left: 8px;
    top: 18px;
    width: 40px;
    z-index: 2;
    background: 0 0;
    border: 0;
    cursor: pointer
}

#showLeftPush span,#showLeftPush:after,#showLeftPush:before {
    background: #000;
    content: "";
    display: block;
    height: 4px;
    left: 7px;
    position: absolute;
    width: 30px
}

#showLeftPush:before {
    top: 8px
}

#showLeftPush:after {
    top: 24px
}

#showLeftPush span {
    top: 16px
}

#showLeftPush.active:before {
    transform: rotate(45deg)
}

#showLeftPush.active:after,#showLeftPush.active:before {
    top: 10px
}

#showLeftPush.active:after {
    transform: rotate(-45deg)
}

#showLeftPush.active span {
    opacity: 0
}

.navbar {
    display: none
}

#ommenu a,#ommenu li,#ommenu span,#ommenu ul {
    margin: 0;
    padding: 0;
    position: relative
}

#ommenu {
    width: auto
}

#ommenu a {
    color: #fff;
    text-transform: normal;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    line-height: 32px;
    border-bottom: 2px solid #ccc;
    display: block;
    padding: 10px
}

#ommenu ul {
    list-style: none
}

#ommenu>ul>li {
    display: block;
    margin: 0
}

#ommenu.align-center {
    text-align: center
}

#ommenu.align-center>ul>li {
    float: none
}

#ommenu.align-center ul ul {
    text-align: left
}

#ommenu.align-right>ul {
    float: right
}

#ommenu.align-right ul ul {
    text-align: right
}

#ommenu>ul>li>a {
    color: #fff;
    font-size: 15px
}

a.nav-link {}

#ommenu .has-sub:hover>ul {
    display: block;
    z-index: 20
}

#ommenu .has-sub ul {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #222
}

#ommenu .has-sub ul li a {
    background: #fff;
    border-bottom: 2px solid #080808;
    font-size: 15px;
    display: block;
    line-height: 120%;
    padding: 12px;
    color: #000
}

#ommenu .has-sub ul li:hover a {
    background: #222;
    color: #fff
}

#ommenu ul ul li:hover>a {
    color: #000
}

#ommenu .has-sub .has-sub:hover>ul {
    display: block
}

#ommenu .has-sub .has-sub ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0
}

#ommenu .has-sub .has-sub ul li a {
    background: #0c7fb0;
    border-bottom: 1px dotted #31b7f1
}

#ommenu .has-sub .has-sub ul li a:hover {
    background: #0a6d98
}

body.cbp-spmenu-push-toleft {
    left: 240px
}

@media screen and (min-width: 768px) {
    #showLeftPush {
        display:none
    }

    .navbar {
        display: block
    }

    .navbar-inverse {
        background: 0 0;
        margin-top: 9px;
        margin-bottom: 0;
        border: 0;
        z-index: 1;
        min-height: auto;
        text-transform: none;
        border-radius: 0
    }

    #ommenu a {
        border-bottom: none;
        padding: 0 10px;
        font-weight: 400;
        line-height: 102px;
        text-transform: normal
    }

    #ommenu ul {
        display: table;
        margin: 0 auto
    }

    #ommenu ul ul {
        display: block
    }

    #ommenu .has-sub ul li a {
        background: #000;
        color: #fff;
        border-bottom-color: #222
    }

    #ommenu>ul>li>a {
        color: #000;
        font-size: 18px;
        font-weight: 500;
        position: relative
    }

    #ommenu ul:after,#ommenu:after {
        content: '';
        display: block;
        clear: both
    }

    #ommenu>ul>li:hover:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 50%;
        bottom: 0
    }

    #ommenu>ul>li:first-child>a {
        border-radius: 5px 0 0;
        -moz-border-radius: 5px 0 0;
        -webkit-border-radius: 5px 0 0
    }

    #ommenu.align-center>ul>li:first-child>a,#ommenu.align-right>ul>li:first-child>a {
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0
    }

    #ommenu.align-right>ul>li:last-child>a {
        border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0
    }

    #ommenu>ul>li.active>a {
        color: #688005;
        border-bottom-color: #688005;
        border-radius: 0
    }

    #ommenu>ul>li:hover>a {
        color: #264896;
        border-bottom-color: #264896;
        border-radius: 0
    }

    #ommenu .has-sub {
        z-index: 10
    }

    #ommenu.align-right .has-sub ul {
        left: auto;
        right: 0
    }

    #ommenu .has-sub ul li {
        *margin-bottom: -1px;
        background: #222
    }

    #ommenu.align-right .has-sub .has-sub ul,#ommenu.align-right ul ul ul {
        left: auto;
        right: 100%
    }

    #ommenu .has-sub ul li.last>a,#ommenu .has-sub ul li:last-child>a,#ommenu ul ul li.last>a,#ommenu ul ul li:last-child>a,#ommenu ul ul ul li.last>a,#ommenu ul ul ul li:last-child>a {
        border-bottom: 0
    }

    #ommenu>ul>li {
        display: inline-block;
        float: left;
        margin: 0
    }

    #ommenu .has-sub ul {
        width: 250px
    }
}

@media screen and (min-width: 992px) {
    #ommenu>ul>li>a {
        font-size:16px
    }

    #ommenu .has-sub ul li a {
        font-size: 14px
    }

    #ommenu a {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 992px) {
    #ommenu>ul>li>a {
        font-size:20px
    }
}



.button,.om-btn-wrapper a,.view-menu-btn {
    background: #f60207;
    color: #fff!important;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    border: none;
    margin: 15px auto 0;
    padding: 10px 15px;
    position: relative;
    text-align: center;
    text-transform: normal;
    transition: all .2s ease-in-out 0s;
    min-width: 160px;
    text-decoration: none
}

.button:hover,.om-btn-wrapper a:hover,.view-menu-btn:hover {
    background: #ff8343;
    color: #fff!important;
}

.button.red-btn,.om-btn-wrapper a.red-btn,.view-menu-btn.red-btn {
    background: #688005;
    font-weight: 700;
    color: #fff!important
}

.button.red-btn:hover,.om-btn-wrapper a.red-btn:hover,.view-menu-btn.red-btn:hover {
    background: #404f03
}

.button a,.om-btn-wrapper a a,.view-menu-btn a {
    color: #fff
}

.button a:hover,.om-btn-wrapper a a:hover,.view-menu-btn a:hover {
    color: #000
}

.button.book-btn,.om-btn-wrapper a.book-btn,.view-menu-btn.book-btn {
    width: 50%
}

.order-online a {
    background: #febe0d;
    :;
    display: block;
    font-size: 16px;
    border: none;
    margin: 15px auto 0;
    padding: 8px 15px;
    position: relative;
    text-align: center;
    transition: all .2s ease-in-out 0s;
    min-width: 160px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    color: #21411c;
}

.order-online a:hover {
    background: #546704;
    color: #fff!important
}
div#logo img {
    width: 55%;
}
.slider-container .om-btn-wrapper a,.slider-container .view-menu-btn {
    font-size: 22px;
    background: #688005
}

.om-welcome {
    background: #efefef
}

body.black-page {
    background: #fff;
    color: #000
}

#header {
    background: #21411c;
    width: 100%;
    padding: 14px
}

#header .container {
    position: relative;
    color: #fff;
    padding: 0
}

#header .container #logo {
    margin: 0 auto;
    width: 120px
}

#header .container #logo a {
    display: block
}

#header .container .order-online ul {
    padding: 0;
    margin: 0
}

#header .container .order-online ul li {
    display: block
}

#header .left-nav,#header .right-nav,.header-top .address,.header-top .oo-top {
    display: none
}





@media screen and (min-width: 700px) {
    #header,#header .container {
        padding:0
    }

    #header .container #logo {
        width: 140px;
        float: left;
        margin: 0;
        padding: 14px 0 14px 14px
    }

    #header .container #logo a {
        padding: 0
    }

    #header .container .navbar {
        float: right;
        padding: 0;
        margin-top: 0;
        margin-right: 175px
    }

    #header .container .navbar .navbar-collapse {
        display: block
    }

    #header .container .order-online {
        right: 0;
        top: 15px;
        position: absolute;
        margin: 0;
        padding: 0
    }

    #header .left-nav,#header .right-nav {
        display: block
    }

    #header .left-nav .nav ul,#header .right-nav .nav ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

    #header .left-nav .nav ul li,#header .right-nav .nav ul li {
        display: inline-block
    }

    #header .left-nav .nav ul li a,#header .right-nav .nav ul li a {
        display: block;
        padding: 0 10px;
        font-size: 15px;
        font-weight: 700;
        line-height: 50px;
        color: #000
    }

    #header .left-nav .nav ul li a:hover,#header .right-nav .nav ul li a:hover {
        color: #ed1c24
    }

    #header .left-nav {
        float: left;
        margin-left: 70px
    }

    #header .right-nav {
        float: right
    }

    .contact-wrapper {
        padding-right: 80px
    }
}

@media screen and (min-width: 768px) {
    .m-visible {
        display:none!important
    }

    .d-visible {
        display: block!important
    }

    #header .container .navbar-collapse {
        padding: 0
    }
}

@media screen and (min-width: 980px) {
    #header .container #logo {
        width:158px;
        padding: 5px 0 0
    }

    #header .container .top-right .order-online {
        right: 80px;
        top: 52px
    }

    #header .container .navbar {
        margin-right: 265px;
        margin-top: 25px
    }

    section.about-us {
        padding: 40px;
        text-align: center
    }

    .menu-wrapper h2 {
        font-size: 32px
    }

    .menu-wrapper h3 {
        font-size: 30px
    }

    .menu-wrapper p {
        font-size: 20px
    }

    .menu-wrapper p.m-heading {
        font-size: 28px
    }
}

@media screen and (min-width: 992px) {
    .h1,h1 {
        font-size:32px
    }

    .h2,h2 {
        font-size: 28px
    }

    #header {
        position: static
    }

    #header .container,#header .container .navbar-inverse .navbar-collapse.collapse {
        padding: 0
    }

    .main-container h1 {
        margin-bottom: 65px
    }
}

@media screen and (min-width: 1180px) {
    #header .container .top-right .social-icon-list {
        margin-left:50px
    }

    .menu-items .menu-item {
        margin-bottom: 0
    }

    .header-top .oo-top {
        top: 12px
    }

    .header-top .oo-top a {
        font-size: 23px;
        padding-left: 10px;
        padding-right: 10px
    }

    .main-container {
        padding: 40px
    }
}

@media screen and (min-width: 1200px) {
    .menu-items .menu-item .desc {
        min-height:130px
    }

    .container {
        max-width: 1080px
    }
}

.jssor-slide-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0,0,0,.7)
}

.jssorl-009-spin img {
    animation-name: jssorl009-spin;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes jssorl-009-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.jssora051 {
    display: block;
    position: absolute;
    cursor: pointer
}

.jssora051 .a {
    fill: none;
    stroke: #fff;
    stroke-width: 360;
    stroke-miterlimit: 10
}

.jssora051:hover {
    opacity: .8
}

.jssora051.jssora051dn {
    opacity: .5
}

.jssora051.jssora051ds {
    opacity: .3;
    pointer-events: none
}

#header .container:after,.header-right-bottom:after,.header-right-top:after,.menu-items:after,.order-online-btns ul:after,.social-icon-list ul:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden
}

#header {
    padding-top: 0;
}

#header .container #logo {
    width: 160px;
    margin: 0px auto 10px auto;
    padding: 15px 0 0 0;
    text-align: center;
}

#header .container #logo h1 {
    font-size: 20px;
    line-height: 50px;
    font-weight: bold;
    color: #033e4b;
}

a, .home-text h1, .box-section h2, h2 {
    color: #033e4b;
}



#showLeftPush span, #showLeftPush::after, #showLeftPush::before {
    background: #febe0d;
}

#ommenu > ul > li > a {
    color: #000;
}

#ommenu > ul > li:hover > a {
    color: #ffffff;
}




@media screen and (min-width: 768px) {
    #ommenu > ul > li.active > a, #ommenu > ul > li:hover > a:hover {
        color: #febe0d;
    }

    #ommenu > ul > li > a {
        color: #ffffff;
        text-transform: uppercase;
    }

   

    #header {
    }

    .menu-category .menu-category-wrapper {
        max-width: 1480px;
        margin: 0 auto;
        background: #fff
    }

    .menu-category .menu-category-wrapper .menu-items-wrapper {
        display: flex;
        margin: 0 -15px
    }

    .menu-category .menu-category-wrapper .menu-item {
        flex: 1;
        padding: 0 15px
    }

    .menu-category .menu-category-wrapper .menu-title {
        top: auto;
        bottom: -25px
    }

    #header .container #logo {
        margin: 0px auto 0px auto;
        width: 105px;
        z-index: 50;
    }

    #ommenu a {
        line-height: 60px;
    }

    #header .container .navbar {
        margin-top: 16px;
    }

    #header .container .order-online {
        top: 5px;
    }
}

@media screen and (min-width: 980px) {
    #header .container {
        display: flex;
        align-items: center;
    }

    #header .container .navbar {
        margin-top: 0px;
    }

    .order-online a {
        margin-top: 0;
    }

    #header .container .top-right {
        flex: 1;
    }

    #header .container #logo {
        padding-top: 0;
    }

    #header .container .top-right .order-online {
        top: 9px;
    }
}

@media screen and (min-width: 1200px) {
    #header {
        padding:10px;
        background: #21411c;
    }

    #header .container #logo {
        width: 180px;
    }

    #header .container .top-right .order-online {
        top: 29px;
    }
}

@media screen and (min-width: 1500px) {
    .container {
        max-width: 1280px;
    }
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 75px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.Review-button {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.modal-body { 
  h1 { 
    font-weight:900; 
    font-size:2.3em;
    text-transform:uppercase;
  }
  
  a.pre-order-btn { 
    color:#000;
    background-color:gold;
    border-radius:1em;
    padding:1em;

/* Varialbes */
:root {
  --font-default: "Jost", sans-serif;
  --font-heading: "Oswald", sans-serif;
  --font-optional: "Dancing Script", cursive;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #072b31;
  --dark-secondary: #1f3844;
  --white: #ffffff;
  --color-primary: #eb0029;
  --color-secondary: #f76e2a;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #ebe9e6;
  --bg-gray-secondary: #faf1df;
  --bg-gradient: linear-gradient(45deg, var(--color-primary) 30%, #ffb800 100%);
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.wrapper {
  height: 100%;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
  opacity: 1;
}

.color-style-two a:hover {
  color: var(--color-secondary);
}

.secondary a:hover {
  color: var(--color-primary);
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  min-height: 50px;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

ul {
  list-style-type: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

b {
  font-weight: 500;
}

strong {
  font-weight: 500;
}

.row {
  --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
  font-family: var(--font-default);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 42px;
  margin-bottom: 25px;
  letter-spacing: 0;
}

h2 {
  font-size: 36px;
  margin-bottom: 25px;
  letter-spacing: 0;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

a,
.btn,
button {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  outline: medium none;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-heading);
}

p {
  color: var(--color-paragraph);
  margin: 0 0 7px;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-default);
}

/* ============================================================== 
    # Helper CSS
=================================================================== */

.container-full {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
}

@media (min-width: 576px) {
  .container-full {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-full {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-full {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-full {
    max-width: 90%;
    width: 100%;
    padding: 0;
  }

  .box-layout {
    width: 94%;
    margin: auto;
    border-radius: 30px;
  }
}

.container-fill {
  padding: 0 15px;
  margin: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container-fill {
    max-width: 540px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container-fill {
    max-width: 720px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-fill {
    max-width: 960px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .container-fill {
    padding: 0 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 1400px) {
  .container-stage {
    margin-left: calc((100% - 1320px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

.item-center {
  display: flex;
  align-items: center;
}

.bg-cover {
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fixed {
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}

.bg-gray {
  background: var(--bg-gray);
}

.bg-dark .bg-gray {
  background: var(--dark-secondary);
}

.bg-gray-secondary {
  background: var(--bg-gray-secondary);
}

.bg-light {
  background-color: var(--white) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-secondary {
  background-color: var(--dark-secondary) !important;
}

.bg-theme {
  background-color: var(--color-primary);
}

.color-style-two .bg-theme {
  background-color: var(--color-secondary);
}

.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
  background-color: var(--color-primary);
  background: var(--bg-gradient-reverse) !important;
}

.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  display: inline-block;
}

.text-light {
  color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
  color: var(--white);
}

.shadow {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.shadow.dark {
  position: relative;
  z-index: 1;
}

.shadow.dark:after {
  background: var(--black);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
  position: relative;
  z-index: 1;
}

.shadow.dark-hard:after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.theme {
  position: relative;
  z-index: 1;
}

.shadow.theme:after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.shadow.light {
  position: relative;
  z-index: 1;
}

.shadow.light:after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
}

.default-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.default-padding-big {
  padding: 250px 0;
}

@media only screen and (max-width: 767px) {
  .default-padding-big {
    padding: 60px 0;
  }
}

.default-padding-top {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top {
    padding-top: 60px;
  }
}

.default-padding-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom {
    padding-bottom: 60px;
  }
}

.default-padding.bottom-less {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .default-padding.bottom-less {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.default-padding-bottom.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-bottom.bottom-less {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
  .default-padding-top.bottom-less {
    margin-bottom: -30px;
  }
}

@media only screen and (min-width: 1200px) {
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.border-top {
  border-top: 1px solid #e7e7e7;
}

.border-bottom {
  border-bottom: 1px solid #e7e7e7;
}

.border-left {
  border-left: 1px solid #e7e7e7;
}

.border-right {
  border-right: 1px solid #e7e7e7;
}

.heading {
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: -5px;
  font-size: 42px;
  line-height: 1.3;
}

.heading span {
  font-weight: 400;
}

.site-heading {
  margin-bottom: 60px;
}

.site-heading strong {
  display: inline-block;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.site-heading strong::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/35.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
}

.title {
  font-weight: 500;
  font-size: 55px;
}

.site-heading .title {
  margin-bottom: 0;
  font-size: 55px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .title {
    font-size: 36px;
    margin-top: 0;
  }

  .site-heading .title {
    font-size: 36px;
  }
}

.bg-dark .title {
  color: var(--white);
}

.bg-dark .site-heading .title {
  color: var(--white);
}

.sub-title {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 20px;
  padding: 0 10px;
}

.color-style-two .sub-title {
  color: var(--color-secondary);
}

.sub-title::after {
  position: absolute;
  top: 50%;
  right: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/17.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
  margin-top: -13px;
}

.color-style-two .sub-title::after {
  background: url(../img/shape/17-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: right center;
}

.sub-title::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/18.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -13px;
}

.color-style-two .sub-title::before {
  background: url(../img/shape/18-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
}

.text-light .sub-title::after,
.text-light .sub-title::before,
.text-light.sub-title::after,
.text-light.sub-title::before {
  filter: brightness(0) invert(1);
}

.sub-title img {
  height: 13px;
}

.sub-title img:first-child {
  margin-right: 10px;
}

.sub-title img:last-child {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .sub-title {
    margin-bottom: 10px;
  }
}

.site-heading p {
  margin-bottom: 0;
  margin-top: 25px;
  padding: 0 10%;
}

.site-heading .devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
  background: var(--white);
}

@media (max-width: 767px) {
  .site-heading p {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .site-heading {
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.heading-left .heading {
  font-weight: 500;
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-left .heading {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .heading-left .heading {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left p {
  margin-bottom: 0;
}

.heading-left .btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .heading-left {
    margin-bottom: 30px;
  }
}

.sub-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 20px;
  padding-right: 10px;
}

.bg-dark .sub-heading,
.bg-dark-secondary .sub-heading {
  color: var(--white);
}

.text-center .sub-heading {
  margin-bottom: 30px;
}

.color-style-two .sub-heading {
  color: var(--color-secondary);
}

.color-style-two .text-light .sub-heading {
  color: var(--white);
}

.sub-heading::before {
  position: absolute;
  top: 50%;
  left: 100%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/18.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
  margin-top: -11px;
}

.color-style-two .sub-heading::before {
  background: url(../img/shape/18-2.png);
  background-repeat: no-repeat;
  background-size: 100px;
  background-position: left center;
}

.text-light .sub-heading::before {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary .sub-heading::before,
.bg-dark .sub-heading::before {
  filter: brightness(0) invert(1);
}

.shadow .sub-heading {
  -webkit-text-fill-color: var(--white);
  font-weight: 500;
}

.bg-gradient .sub-heading {
  color: var(--white);
  background: transparent;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  opacity: 0.9;
}

.site-heading.text-light .sub-title,
.site-heading.text-light .sub-heading {
  -webkit-text-fill-color: inherit;
  color: var(--white);
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button i {
  display: inline-block;
  background: var(--color-primary);
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
}

.video-play-button i {
  font-weight: 100;
  font-size: 35px;
  position: relative;
  left: 3px;
  top: 2px;
}

.video-play-button .effect {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-play-button .effect::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: var(--color-primary);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.color-style-two .video-play-button .effect::before {
  background: var(--color-secondary);
}

.video-play-button.with-text {
  width: auto;
  background: transparent;
}

.video-play-button.with-text span {
  position: relative;
  z-index: 1;
}

.video-play-button.with-text span i {
  margin-left: 25px;
  margin-right: 30px;
  color: var(--white);
  left: -1px;
}

.video-play-button.with-text .effect {
  height: 60px;
  width: 60px;
  left: 0;
  -webkit-animation: inherit;
  animation: inherit;
  background: var(--color-primary);
  top: 0;
  opacity: 1;
  z-index: 1;
}

.color-style-two .video-play-button.with-text .effect {
  background: var(--color-secondary);
}

.video-play-button.with-text .effect::before {
  display: none;
}

.video-play-button.with-text .effect::after {
  background: var(--color-primary);
  height: 100%;
  width: 100%;
  z-index: inherit;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.color-style-two .video-play-button.with-text .effect::after {
  background: var(--color-secondary);
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes video-play {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0)
      scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*Zoom Animation */
.zoom-animation {
  -webkit-animation: zoom 2000ms ease-out infinite;
  animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
}

/* Spiner Animation */
.spiner-animation {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Spiner Animation */
.spiner-reverse-animation {
  -webkit-animation: spinnerReverse 20s infinite linear;
  animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

/* Infinite Up Down Animation */
@keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation UpDown */
.updown-animation {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Animation Left Right */
.leftRight-animation {
  -webkit-animation: fadeLeftRight 10s ease-out infinite;
  animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

/* Animation Right Left */
.rightLeft-animation {
  -webkit-animation: fadeRightLeft 10s ease-out infinite;
  animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

@-webkit-keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

/* Animation Zoom Up Down */
.zoomUpDown-animation {
  -webkit-animation: zoomUpDown 10s ease-out infinite;
  animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@-webkit-keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* Animation Moving */
.moving-animation {
  -webkit-animation: moving 10s ease-out infinite;
  animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

/* Animation Rotation */
@keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Border Animation */
@-webkit-keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@-webkit-keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

@keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@-webkit-keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

@keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 0;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: none !important;
  font-size: 16px;
  letter-spacing: 0;
  padding: 13px 30px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  letter-spacing: 0.5px;
}

.btn:focus,
.btn.active {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  border: 2px solid transparent;
}

.btn:hover {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn.radius {
  border-radius: 30px;
}

.btn.btn-border {
  border: 2px solid #dddddd;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
}

.btn.btn-border::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-border:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-border:hover {
  border-color: var(--dark);
}

.btn.btn-border.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: #e7e7e7;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
  border-color: #e7e7e7;
  color: var(--dark);
}

.btn.btn-border.animation:hover::after {
  width: 100%;
}

.btn.btn-border-dark {
  border: 2px solid var(--dark);
  background: transparent;
}

.btn-md.btn-border-dark {
  padding: 15px 35px;
}

.btn.btn-border-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn.btn-border-dark.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
  border-color: var(--dark);
  color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
  width: 100%;
}

.btn.btn-border-theme {
  border: 2px solid var(--color-primary);
  background: transparent;
}

.btn.btn-border-theme:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
  border-color: var(--color-primary);
  color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
  width: 100%;
}

.btn.btn-border-light {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.btn.btn-border-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
  width: 100%;
}

.btn-md.btn-border-light {
  border: 1px solid var(--white);
  padding: 15px 35px;
}

.btn.btn-border.light {
  color: var(--white);
  border-color: var(--white);
}

.btn.btn-border.light::after {
  background: var(--color-primary);
}

.btn.btn-border.light:hover {
  border-color: var(--color-primary);
}

.btn.btn-gradient {
  border: none;
  color: var(--white);
}

.btn.btn-gradient::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(
    to left,
    var(--color-primary),
    var(--color-secondary),
    var(--color-primary)
  );
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-size: 250%;
}

.btn.btn-gradient:hover::after {
  background-position: -70% 0;
}

.btn.btn-gradient.active {
  background-position: -70% 0;
}

.btn.btn-theme {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-two .btn.btn-theme {
  background: var(--color-secondary);
}

.color-style-two .btn.btn-theme:hover {
  color: var(--white);
}

.btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.shadow .btn.btn-theme::after {
  background-color: var(--white);
}

.shadow .btn.btn-theme:hover {
  color: var(--color-heading);
}

.text-light .btn.btn-theme:hover {
  color: var(--color-heading);
}

.text-light .btn.btn-theme:after {
  background: var(--white);
}

.banner-style-four .btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background: var(--white) !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-theme:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.banner-style-four .btn.btn-theme:hover {
  color: var(--color-heading) !important;
}

button {
  display: inline-block;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 14px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.color-style-two button {
  background: var(--color-secondary);
}

button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
  margin-right: 4px;
}

.btn.btn-theme.secondary {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.btn.btn-theme.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
  background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
  color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
  background-color: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
  color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
  color: var(--color-heading);
  background: var(--white);
  border: none;
}

.btn.btn-light::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light:hover {
  color: var(--white);
  border-color: transparent;
}

.btn.btn-dark {
  color: var(--white);
  background: var(--dark);
  border: none;
}

.btn.btn-dark::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.shadow .btn.btn-dark::after {
  background-color: var(--white);
}

.shadow .btn.btn-dark:hover {
  color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
  width: 100%;
}

.btn.btn-dark.secondary {
  color: var(--white);
  border: none;
  background: var(--dark);
}

.btn.btn-dark.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn i {
  position: relative;
  top: 1px;
  margin-left: 5px;
}

.btn-md i {
  font-weight: 1;
  font-size: 24px;
  margin: 0;
  float: left;
  position: relative;
  top: 1px;
  margin-right: 10px;
}

.btn.text-slide {
  min-width: 150px;
  height: 55px;
  line-height: 55px;
}

.btn.text-slide span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.btn.animate-border {
  overflow: inherit;
  z-index: inherit;
  width: 200px;
  height: 55px;
  line-height: 55px;
  padding: 0;
}

.btn.animate-border:hover {
  background: transparent;
  color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
  opacity: 1;
  -webkit-animation: open 0.4s;
  /* Chrome, Safari, Opera */
  animation: open 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
  opacity: 1;
  -webkit-animation: openB 0.4s;
  /* Chrome, Safari, Opera */
  animation: openB 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border .hover-border {
  position: absolute;
  left: 0;
  top: -1px;
  height: 100%;
  width: 100%;
}

.btn.animate-border .hover-border::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-left: solid 2px var(--color-primary);
  right: 98px;
  top: -1px;
}

.btn.animate-border .hover-border::after {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-right: solid 2px var(--color-primary);
  left: 98px;
  top: -1px;
}

.btn.animate-border .hover-border-bottom {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 55px;
  border-bottom: solid 2px var(--color-primary);
  right: -1px;
  bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 100%;
  border-bottom: solid 2px var(--color-primary);
  left: 0;
  bottom: -2px;
}

.btn.animated-arrow {
  border: none;
  background: transparent;
  min-width: 14rem;
  height: auto;
  padding: 0;
}

.btn.animated-arrow .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary);
  border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 15px;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn.animated-arrow .circle .icon::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--white);
  border-right: 0.125rem solid var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  margin: 0 0 0 70px;
  color: var(--dark);
  line-height: 2;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.btn.animated-arrow:hover {
  color: var(--white);
}

.btn.animated-arrow:hover .circle {
  width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
  background: var(--white);
  -webkit-transform: translate(1.5rem, 0);
  transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
  color: var(--white);
}

.btn.circle {
  border-radius: 30px !important;
}

.btn-simple {
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  color: var(--color-paragraph);
}

.btn-simple i {
  transform: rotate(-45deg);
  display: inline-block;
  margin-left: 2px;
}

.btn-simple:hover {
  color: var(--color-primary);
}

.video-btn i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
  color: var(--white);
}

.text-light .video-btn i {
  background: var(--white);
  color: var(--color-primary);
}

.video-btn i::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--color-primary) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.text-light .video-btn i::after {
  background: var(--white) repeat scroll 0 0;
}

.text-shine {
  background: linear-gradient(
    to right,
    var(--dark) 0,
    var(--white) 10%,
    var(--color-primary) 20%
  );
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3s infinite linear;
  animation: shine 3s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 48px;
}

.animate-inout {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
  color: var(--white);
  font-size: 12px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: solid 2px var(--color-primary);
  cursor: pointer;
}

.btn-icon {
  position: relative;
  padding-left: 20px;
}

.btn-icon:hover {
  color: var(--color-primary);
}

.btn-icon::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  height: 2px;
  left: 0;
  background: var(--color-heading);
  transform: translateY(-50%);
  margin-top: -1px;
  transition: all 0.35s ease-in-out;
}

.btn-icon:hover::after {
  background: var(--color-primary);
}

.btn-icon i {
  font-weight: 500;
}

.btn-icon:hover {
  padding-left: 40px;
}

.animate-inout span {
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
  width: 0%;
  height: 0%;
  position: absolute;
  content: "";
  border-radius: 100%;
}

.animate-inout:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--white);
}

.animate-inout:before {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
  background: transparent;
  color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8a6552),
    to(#472d20)
  );
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
  color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.animate-inout:hover {
  color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.animate-inout:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.btn-md {
  padding: 15px 40px;
}

.btn-md.btn-border {
  padding: 14px 52px;
}

.btn-sm {
  padding: 14px 45px;
}

.btn-sm.btn-border,
.btn-sm.btn-light {
  padding: 14px 45px;
}

.mfp-close-btn-in .mfp-close::after {
  display: none;
}

/* Btn Animation */

.btn-animation {
  z-index: 1;
  position: relative;
  font-size: 18px;
  display: inline-block;
  margin-left: 10px;
}

.bg-dark .btn-animation {
  color: var(--white);
}

.btn-animation i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  font-weight: 400;
  margin-right: 10px;
  transition: all 0.35s ease-in-out;
  transform: scale(0);
}

.btn-animation:hover {
  margin-left: 0;
  color: var(--color-heading);
}

.bg-dark .btn-animation:hover {
  color: var(--white);
}

.btn-animation:hover i {
  transform: scale(1);
}

.btn-animation::after {
  position: absolute;
  left: -13px;
  top: 0;
  content: "";
  height: 60px;
  width: 60px;
  border: 1px solid #c2bfbf;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
  transform: scale(1);
  z-index: -1;
}

.bg-dark .btn-animation::after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-animation:hover::after {
  transform: scale(0);
}

.btn-animation span {
  transition: all 0.35s ease-in-out;
  left: -50px;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-animation:hover span {
  left: 0;
}

.btn-animation.dark::after {
  border-color: #c5c5c5;
  z-index: -1;
}

.btn-animation.dark i {
  background: var(--color-primary);
  color: var(--white);
}

.btn-animation.dark:hover {
  color: var(--color-heading);
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

a.btn-round-animation {
  display: inline-block;
  height: 180px;
  width: 180px;
  text-align: center;
  line-height: 180px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

a.btn-round-animation i {
  display: inline-block;
  transform: rotate(-45deg);
  font-weight: 400;
  margin-left: 5px;
}

a.btn-round-animation::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation:hover {
  color: var(--white);
}

a.btn-round-animation:hover::before {
  height: 100%;
}

a.btn-round-animation:hover::after {
  opacity: 0.4;
  height: 80%;
}

a.btn-round-animation.dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
  color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--white);
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */


/* ============================================================== 
    # Nice Select Styles
=================================================================== */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--white);
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 15px;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999999;
}

.nice-select::after {
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  overflow-y: auto !important;
  height: auto;
}

.nice-select.open ::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999999;
  pointer-events: none;
}

.nice-select.disabled::after {
  border-color: #96aac1;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small::after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--white);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 500;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.mfp-iframe-holder .mfp-close {
  color: transparent;
  background: transparent;
}

.mfp-iframe-holder .mfp-close::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 20px;
  width: 20px;
  z-index: 1;
  display: block;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  color: var(--white);
}

.split-text {
  overflow: hidden;
  position: relative;
}

.split-text .line {
  overflow: hidden;
  display: none;
  padding-bottom: 5px;
}

/* ============================================================== 
    # Banner Styles
=================================================================== */
.banner-area {
  height: 100%;
  width: 100%;
  position: relative;
}

@media (max-width: 1023px) {
  .banner-area {
    height: auto;
  }
}

.banner-area div {
  height: 100%;
}

.banner-area div.swiper-slide .row div {
  height: auto;
}

.banner-area.top-pad-80 .content {
  padding-top: 80px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-80 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-80 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-90 .content {
  padding-top: 90px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-90 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-90 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-100 .content {
  padding-top: 100px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-100 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-100 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-110 .content {
  padding-top: 110px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-110 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-110 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-120 .content {
  padding-top: 120px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-120 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-120 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-130 .content {
  padding-top: 130px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-130 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-130 .content {
    padding-top: 140px;
  }
}

.banner-area.top-pad-150 .content {
  padding-top: 150px;
}

@media (max-width: 1023px) {
  .banner-area.top-pad-150 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-150 .content {
    padding-top: 140px;
  }
}

.banner-area.auto-height {
  height: auto;
}

.banner-area.auto-height div {
  height: auto;
}

.banner-area.auto-height .content {
  padding: 200px 0;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height .content {
    padding: 60px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height .content {
    padding: 120px 0;
  }
}

.banner-area.auto-height .content .thumb {
  padding-left: 35px;
}

@media (max-width: 991px) {
  .banner-area.auto-height .content .thumb {
    padding-left: 0;
    margin-top: 50px;
  }
}

.banner-area.auto-height.inc-header-transparent .content {
  padding-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 140px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent .content {
    padding-top: 220px;
  }
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .info {
  padding-top: 80px;
}

.banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
  .content
  .thumb {
  margin-top: 250px;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height.inc-header-transparent.double-items.bottom-thumb
    .content
    .thumb {
    margin-top: 50px;
  }
}

.banner-area .content {
  position: relative;
  z-index: 9;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1023px) {
  .banner-area .content {
    padding: 120px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area .content {
    padding: 90px 0;
  }
}

.banner-area h4 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translate3d(-15%, 0, 0);
  transform: translate3d(-15%, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.banner-area h2 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.banner-area p,
.banner-area ul {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  padding-right: 32%;
  margin: 0;
  visibility: hidden;
}

@media (max-width: 1023px) {
  .banner-area p {
    padding-right: 0;
  }
}

.banner-area.text-center p {
  padding-left: 13%;
  padding-right: 13%;
}

@media (max-width: 1023px) {
  .banner-area.text-center p {
    padding: 0;
  }
}

.banner-area .thumb {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.banner-area .button {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}

.banner-area .banner-slide h4 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide h2 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide p,
.banner-area .banner-slide ul {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .button {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active p,
.banner-area .banner-slide .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-area.double-items .thumb {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area.double-items .swiper-slide.swiper-slide-active .thumb {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  visibility: visible;
  opacity: 1;
}

.banner-area.double-items.bottom-thumb .content {
  padding: 0;
}

.banner-area.double-items.bottom-thumb .content .thumb {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 50px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 120px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 50px;
  }
}

.banner-area.zoom-effect .banner-thumb {
  -webkit-transition: 10s ease-out;
  transition: 10s ease-out;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
}

.banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner-area .swiper-notification {
  display: none;
}

.banner-area .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

.banner-area .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active .button {
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .banner-items {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.banner-area:hover .swiper-button-prev,
.banner-area:hover .swiper-button-next {
  opacity: 1;
}

.banner-area:hover .swiper-button-prev {
  left: 30px;
  right: auto;
}

.banner-area:hover .swiper-button-next {
  right: 30px;
  left: auto;
}

.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
  height: auto;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}

.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
  font-size: 40px;
  color: #e3ebdd;
  font-weight: 100;
}

.banner-area.navigation-circle .swiper-button-prev,
.banner-area.navigation-circle .swiper-button-next {
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  border: 2px solid var(--white);
  color: var(--white);
}

.banner-area.navigation-circle.navigation-dark .swiper-button-prev,
.banner-area.navigation-circle.navigation-dark .swiper-button-next {
  border: 2px solid #cccccc;
  color: var(--color-heading);
}

.banner-area.navigation-dark .swiper-button-prev::after,
.banner-area.navigation-dark .swiper-button-next::after {
  color: var(--color-heading);
}

.bg-dark-secondary .banner-area.navigation-dark .swiper-button-prev::after,
.bg-dark-secondary .banner-area.navigation-dark .swiper-button-next::after {
  color: var(--white);
}

.banner-area.navigation-circle .swiper-button-prev::after,
.banner-area.navigation-circle .swiper-button-next::after {
  font-size: 16px;
}

.banner-area.navigation-right-bottom .swiper-button-prev,
.banner-area.navigation-right-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 50px;
  border-radius: inherit;
}

.banner-area.navigation-right-bottom .swiper-button-prev {
  right: 92px;
}

.banner-area.navigation-between-bottom .content {
  padding-bottom: 105px;
}

@media only screen and (min-width: 829px) and (max-width: 1023px) {
  .banner-area.navigation-between-bottom .content {
    padding-bottom: 220px;
  }
}

.banner-area.navigation-between-bottom .swiper-button-prev,
.banner-area.navigation-between-bottom .swiper-button-next {
  left: auto;
  right: 30px;
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  bottom: 30px;
  border-radius: inherit;
}

.banner-area.navigation-between-bottom .swiper-button-prev {
  left: 30px;
  right: auto;
}

@media only screen and (max-width: 830px) {
  .banner-area .swiper-button-prev,
  .banner-area .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-custom .swiper-button-prev::after {
  font-family: "ElegantIcons";
  content: "\23";
  font-size: 22px;
}

.banner-area.navigation-custom .swiper-button-next::after {
  font-family: "ElegantIcons";
  content: "\24";
  font-size: 22px;
}

.banner-area.navigation-text .swiper-button-prev,
.banner-area.navigation-text .swiper-button-next {
  opacity: 1;
  top: auto;
  -webkit-transform: inherit;
  transform: inherit;
  left: auto;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 150px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100px;
  line-height: 100px;
}

@media only screen and (max-width: 830px) {
  .banner-area.navigation-text .swiper-button-prev,
  .banner-area.navigation-text .swiper-button-next {
    display: none;
  }
}

.banner-area.navigation-text .swiper-button-prev {
  right: 151px;
}

.banner-area.navigation-text .swiper-button-prev::after {
  font-family: var(--font-heading);
  content: "Prev";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.banner-area.navigation-text .swiper-button-next::after {
  font-family: var(--font-heading);
  content: "Next";
  text-transform: uppercase !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.banner-area.navigation-icon-solid .swiper-button-prev::after,
.banner-area.navigation-icon-solid .swiper-button-next::after {
  font-size: 30px;
}

.banner-area.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-custom-large .swiper-button-next {
  min-width: 65px;
  height: 30px;
  margin: 0;
}

.banner-area.navigation-custom-large .swiper-button-prev::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f104";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  left: 8px;
}

.banner-area.navigation-custom-large .swiper-button-prev::before {
  position: absolute;
  top: 50%;
  right: inherit;
  bottom: inherit;
  left: 12px;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-custom-large .swiper-button-next::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  font-weight: 100;
  font-size: 30px;
  position: absolute;
  right: 8px;
}

.banner-area.navigation-custom-large .swiper-button-next::before {
  position: absolute;
  top: 50%;
  right: 12px;
  bottom: inherit;
  left: inherit;
  content: "";
  height: 2px;
  width: 50px;
  z-index: -1;
  background-color: var(--white);
  margin-top: -1px;
}

.banner-area.navigation-right-botom .swiper-button-prev,
.banner-area.navigation-right-botom .swiper-button-next {
  position: absolute;
  left: auto;
  right: 30px;
  top: auto;
  bottom: 40px;
  opacity: 1;
  -webkit-transform: inherit;
  transform: inherit;
}

.banner-area.navigation-right-botom .swiper-button-prev {
  right: 60px;
}

.banner-area.navigation-right-botom.navigation-custom-large .swiper-button-prev,
.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-next {
  bottom: 30px;
}

.banner-area.navigation-right-botom.navigation-custom-large
  .swiper-button-prev {
  right: 100px;
}

.banner-area .swiper-pagination {
  height: auto;
  bottom: 35px;
}

.banner-area .swiper-pagination span.swiper-pagination-bullet {
  height: 4px;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: inherit;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area
  .swiper-pagination
  span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white;
  height: 7px;
}

@media only screen and (max-width: 767px) {
  .banner-area.include-pagination .content {
    padding-bottom: 100px;
  }
}

.banner-area .swiper-pagination-fraction span {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.banner-area .swiper-pagination-fraction span.swiper-pagination-current {
  font-size: 30px;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* ============================================================== 
    # Banner Custom Style
=================================================================== */

.banner-area .align-center {
  align-items: center;
}

.banner-style-one ul {
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.banner-style-one li {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 300;
  text-transform: uppercase;
  padding: 15px;
  letter-spacing: 1px;
}

.banner-style-one li:last-child {
  border: none;
}

.banner-style-one li i {
  margin-right: 2px;
}

.banner-style-one h4 {
  font-family: var(--font-optional);
  font-size: 42px;
}

.banner-style-one h2 {
  font-size: 90px;
  line-height: 1;
  margin-bottom: 40px;
}

.banner-style-one .btn {
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .banner-style-one .content {
    padding-top: 120px;
  }
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active ul {
  transition-delay: 1100ms;
}

.banner-area.banner-style-one .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

/* Banner Two */
.banner-area.banner-style-two .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h2 {
  transition-delay: 300ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active h4 {
  transition-delay: 700ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-two h2 {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.bg-dark-secondary .banner-style-two h2 {
  color: var(--white);
}

.banner-style-two h4 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid;
  padding: 7px 20px;
}

.bg-dark-secondary .banner-style-two h4 {
  color: var(--white);
}

.banner-style-two h4 strong {
  color: var(--color-primary);
}

.banner-style-two .thumb {
  text-align: center;
  padding: 50px;
}

.banner-style-two .thumb img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 76%;
}

.banner-style-two p {
  font-size: 20px;
  padding-right: 15%;
}

/* Banner Six */
.banner-area.banner-style-six .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-six .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-six h2 {
  font-size: 80px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.banner-style-six h4 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
  border: 2px solid;
  padding: 7px 20px;
}

.banner-style-six h4 strong {
  color: var(--color-primary);
}

.banner-style-six .thumb {
  text-align: center;
  padding: 50px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .banner-style-six .thumb::after {
    position: absolute;
    left: 50%;
    top: -100%;
    content: "";
    bottom: 10px;
    background: var(--white);
    width: 96%;
    z-index: -1;
    transform: translateX(-50%);
    border-radius: 400px;
    opacity: 0.1;
  }

  .banner-style-six .thumb::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 450px;
    width: 450px;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(130px);
    background: #009688;
  }
}

.banner-style-six .thumb img:nth-child(2) {
  position: absolute;
  right: -50px;
  top: 15%;
  transition: all 0.65s ease-in-out;
}

.banner-style-six p {
  font-size: 20px;
  padding-right: 15%;
}

.banner-style-six .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-style-six .shape img:first-child {
  position: absolute;
  right: 0;
  bottom: 5%;
  height: auto;
  max-width: 200px;
}

.banner-style-six .content {
  padding-top: 80px;
}

/* Banner Three */
.banner-style-three-content,
.banner-style-three-content div {
  height: 100%;
}

.banner-style-three-area {
  height: 100%;
}

.banner-style-three-content {
  padding-top: 40px;
}

.banner-style-three-content .row {
  align-items: center;
}

.banner-style-three-content .row div {
  height: auto;
}

.banner-style-three-content h4 {
  font-size: 50px;
  text-transform: uppercase;
}

.banner-style-three-content h2 {
  font-size: 150px;
  text-transform: uppercase;
  line-height: 120px;
}

.banner-style-three-content .box {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 1);
  border-top: none;
  padding: 30px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.banner-style-three-content .box::after {
  position: absolute;
  right: 0;
  content: "";
  height: 2px;
  width: 70px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  top: 0;
  z-index: -1;
}

.banner-style-three-content .box::before {
  position: absolute;
  left: 0;
  content: "";
  height: 2px;
  width: 70px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  top: 0;
  z-index: -1;
}

.banner-style-three-content .box span {
  position: relative;
  top: -15px;
  text-transform: uppercase;
  font-size: 20px;
}

.banner-style-three-content .box h3 {
  margin: 0;
  font-size: 80px;
  font-family: var(--font-default);
  line-height: 1;
}

/* Banner Four */

.banner-area.banner-style-four .content {
  padding-top: 90px;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  visibility: visible;
  transition-delay: 500ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.banner-style-four .thumb {
  text-align: center;
  position: relative;
  z-index: 1;
}

.banner-style-four .thumb::after {
  position: absolute;
  left: 50%;
  content: "";
  height: 500%;
  width: 60%;
  background: var(--color-primary);
  bottom: -100%;
  z-index: -1;
  transform: translateX(-50%);
}

.banner-style-four .thumb img:nth-child(2) {
  position: absolute;
  left: -5%;
  top: 10%;
}

.banner-style-four h2 {
  font-size: 75px;
  text-transform: uppercase;
}

.banner-style-four h4 {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: var(--font-default);
  font-weight: 400;
  padding-bottom: 5px;
  border-radius: 30px;
}

.banner-area.banner-style-four p {
  padding-right: 10%;
  font-size: 20px;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h4 {
  transition-delay: 300ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active h2 {
  transition-delay: 700ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active p {
  transition-delay: 1100ms;
}

.banner-area.banner-style-four .swiper-slide.swiper-slide-active .button {
  transition-delay: 1400ms;
}

.banner-style-four .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.banner-style-four .shape img:first-child {
  position: absolute;
  right: 100%;
  top: 20%;
  max-height: 200px;
  margin-right: 50px;
}

.banner-style-four .shape img:nth-child(2) {
  position: absolute;
  left: 100%;
  bottom: 20%;
}

.banner-style-four .shape img {
  transition: all 1s ease-in-out;
  transform: scale(0);
}

.banner-style-four .swiper-slide-active .shape img {
  transform: scale(1);
}

.banner-style-four .shape img:nth-child(2) {
  transition-delay: 0.1s;
}

/* Banner Five */
.banner-style-five-area .content {
  padding-top: 200px;
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
}

.banner-style-five-area h4 {
  text-transform: uppercase;
  font-size: 30px;
}

.banner-style-five-area h2 {
  text-transform: uppercase;
  font-size: 150px;
  line-height: 1.1;
  margin-bottom: 80px;
}

.bg-dark-secondary .banner-style-five-area h2 {
  color: var(--white);
}

.banner-style-five-area h2 strong {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.banner-style-five-area h2 strong::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/21.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
  background-size: contain;
}

.banner-style-five-thumb {
  min-height: 750px;
  background-position: center bottom !important;
  position: relative;
  z-index: 1;
}

.banner-style-five-thumb img {
  position: absolute !important;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
  z-index: -1;
}

.curve-text svg {
  fill: var(--color-heading);
  height: 170px;
  width: 170px;
  overflow: inherit;
  animation: spinner 20s infinite linear;
}

.curve-text svg {
  background: var(--bg-gray);
  border-radius: 50%;
  padding: 45px;
  position: relative;
  z-index: 1;
  font-size: 24px;
  height: 230px;
  width: 230px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  border: 10px solid var(--white);
}

.curve-text svg a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
}

.curve-text {
  display: inline-block;
  position: relative;
}

.curve-text a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 50px;
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
}

.curve-text svg path {
  fill: none;
}

.curve-text svg text {
  fill: var(--color-heading);
  letter-spacing: 4px;
}

.curve-text .thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 80px;
  width: 80px;
  background: var(--dark);
  text-align: center;
  line-height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.curve-text img {
  height: 30px;
}

/* ============================================================== 
    # About
=================================================================== */

.thumb-style-one {
  position: relative;
}

.thumb-style-one .contact-card-one {
  position: absolute;
  right: -70px;
  bottom: 0;
}

.contact-card-one a {
  display: inline-flex;
  align-items: center;
  background: var(--bg-gray);
}

.contact-card-one a .icon i {
  height: 100px;
  width: 100px;
  display: inline-block;
  text-align: center;
  line-height: 100px;
  background: var(--color-primary);
  color: var(--white);
  font-size: 30px;
}

.contact-card-one .info {
  padding: 10px 30px;
}

.contact-card-one .info h4 {
  margin: 0;
  color: var(--color-heading);
}

.contact-card-one .info span {
  text-transform: uppercase;
  font-size: 15px;
  color: var(--color-paragraph);
}

.about-style-one-info .content {
  margin-left: 150px;
  position: relative;
  padding-left: 50px;
}

.about-style-one-info .content::after {
  position: absolute;
  right: 100%;
  top: 15px;
  content: "";
  height: 2px;
  width: 100%;
  border-top: 1px solid #cccccc;
  z-index: -1;
}

.about-style-one-info .content p {
  margin-bottom: 0;
}

/* ============================================================== 
    # About Style Two
=================================================================== */
ul.launch-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-style-two-info {
  position: relative;
}

.about-style-two-info ul.launch-time {
  position: relative;
  left: -300px;
  margin-right: -300px;
  margin-top: 50px;
}

ul.launch-time > li {
  background: var(--dark);
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

ul.launch-time li h4 {
  color: var(--white);
}

ul.launch-time li {
  color: #cccccc;
}

/* ============================================================== 
    # About Style Three
=================================================================== */
.about-style-three-items {
  position: relative;
  top: -60px;
  z-index: 9;
  margin-bottom: -60px;
  overflow: hidden;
}

@media only screen and (min-width: 1400px) {
  .about-style-three-area .container-stage {
    padding-right: 0;
  }
}

.about-style-one-thumb {
  height: 100%;
}

.about-style-one-thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-style-three-items .row > div {
  padding: 0;
}

.about-style-three-content {
  padding: 50px;
  padding-left: 65px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-style-three-content img {
  max-width: max-content;
  margin: 0 auto 30px;
  height: auto;
}

.opening-hours-style-one {
  padding: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opening-hours-style-one ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.opening-hours-style-one ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.opening-hours-style-one ul li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.opening-hours-style-one ul li span {
  padding-right: 30px;
}

.opening-hours-style-one ul li .text-right {
  padding-left: 30px;
}

.about-style-three-content h2 {
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-heading);
}

.about-style-three-content p {
  color: var(--color-paragraph);
}

.about-style-three-content .contact-card-one a {
  text-align: left;
  background: var(--white);
  margin-top: 15px;
}

/* ============================================================== 
    # Feature
=================================================================== */
.feature-one-single:nth-child(2n) .feature-style-one-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  padding: 90px 37px;
}

.feature-style-one-item img {
  max-width: max-content;
  margin: auto;
  height: 100px;
  margin-bottom: 30px;
}

.feature-style-one-item {
  background: var(--bg-gray);
  text-align: center;
  overflow: hidden;
  padding: 60px 37px;
  border-radius: 30px;
}

.feature-style-one-area .row {
  --bs-gutter-x: 5px;
}

.feature-style-one-item p {
  margin: 0;
}

.feature-one-single:nth-child(2n) .feature-style-one-item h4 {
  margin-top: 15px;
  margin-bottom: 0;
}

.feature-one-single:nth-child(2n) .feature-style-one-item img {
  margin-bottom: 0;
  margin-top: 30px;
}

.feature-one-single {
  position: relative;
  z-index: 1;
}

.feature-one-single::after {
  position: absolute;
  left: 50%;
  top: -120px;
  height: 120px;
  width: 2px;
  content: "";
  transform: translateX(-50%);
  background: var(--bg-gray);
}

.feature-one-single::before {
  position: absolute;
  left: 50%;
  top: -13px;
  height: 30px;
  width: 30px;
  content: "";
  transform: translateX(-50%);
  background: var(--dark);
  border-radius: 50%;
  z-index: 1;
  border: 10px solid var(--white);
}

.feature-one-single:nth-child(odd) .feature-style-one-item {
  margin-top: 60px;
}

.feature-one-single:nth-child(odd)::before {
  top: 45px;
}

.feature-one-single:nth-child(odd)::after {
  height: 190px;
}

/* ============================================================== 
    # Feature Style Two
=================================================================== */
.feature-style-two-heading .title {
  font-size: 100px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-style-two-heading .title img {
  height: 100px;
  margin: 0 15px;
}

.feature-style-two-area {
  position: relative;
  z-index: 1;
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom center;
}

.feature-style-two-area .shape img {
  position: absolute;
  z-index: -1;
}

.feature-style-two-area .shape img:first-child {
  left: 5%;
  top: 50px;
}

.feature-style-two-area .shape img:nth-child(2) {
  bottom: 100px;
  left: 10%;
}

.feature-style-two-area .shape img:nth-child(3) {
  right: 5%;
  bottom: 30%;
}

.feature-product-item a {
  display: block;
  background-size: cover;
  background-position: center;
  padding: 50px;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.feature-product-item a:first-child {
  margin-top: 0;
}

.feature-product-item:first-child a {
  height: 100%;
  margin-top: 0;
}

.feature-product-item:first-child a .thumb {
  position: absolute;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 70%;
}

.feature-product-item:nth-child(2) a .thumb {
  position: absolute;
  height: auto;
  right: -10%;
  bottom: -10%;
  width: 50%;
}

.feature-product-item:nth-child(2) .info {
  padding-right: 45%;
}

.feature-product-item:nth-child(2) a:last-child .thumb {
  position: absolute;
  height: auto;
  left: -10%;
  bottom: -10%;
  width: 50%;
}

.feature-product-item:nth-child(2) a:last-child .info {
  padding-left: 45%;
  padding-right: 0;
}

.feature-product-item .thumb .offer {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  height: 150px;
  width: 150px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.2;
  font-size: 36px;
  text-transform: capitalize;
  font-family: var(--font-optional);
  font-weight: 900;
  padding: 0 25px;
  padding-right: 35px;
}

.feature-product-item .thumb .offer strong {
  display: block;
}

.feature-product-item:first-child a .thumb .offer {
  position: absolute;
  left: 0;
  top: 0;
}

.feature-product-item:nth-child(2) .thumb .offer {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-heading);
  font-family: var(--font-optional);
}

.feature-product-item:nth-child(2) a:last-child .offer {
  left: auto;
  right: 30px;
  top: -50px;
  color: #eda400;
}

.feature-product-item a .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-right: 45%;
}

.feature-product-item h2 {
  font-size: 60px;
  text-transform: uppercase;
}

.feature-product-item a .info .btn {
  max-width: max-content;
}

.feature-product-item a .info .btn-light:after {
  background: var(--dark);
}

/* ============================================================== 
    # Brand
=================================================================== */

.brand-area {
  background-repeat: no-repeat;
  background-position: right top;
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand-area::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 250px;
  width: 250px;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  background: #009688;
}

.brand-style-one-carousel img {
  max-height: 100px;
  margin: auto;
}

.brand-heaidng {
  position: relative;
  z-index: 1;
}

.brand-heaidng::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 2px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: -1;
  margin-top: -1px;
}

.brand-heaidng h3 {
  display: inline-block;
  margin: 0;
  background: var(--white);
  padding: 0 25px;
}

.bg-dark .brand-heaidng h3 {
  background: var(--dark);
}

.bg-dark .brand-heaidng h3 {
  background: var(--dark);
}

/* ============================================================== 
    # Why Choose Us
=================================================================== */

.choose-us-style-one-item {
  overflow: hidden;
}

.choose-us-style-one-items .shape img {
  position: absolute;
  bottom: -50px;
  right: 100%;
  margin-right: -50px;
}

.choose-us-style-one-items {
  background: var(--white);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.choose-us-style-one-area .relative {
  position: relative;
  z-index: 1;
}

.choose-us-style-one-area .shape img {
  position: absolute;
  bottom: 0;
  right: 100%;
}

.choose-us-style-one-info {
  padding: 80px;
  padding-left: 95px;
}

.choose-us-style-one-content {
  padding: 0;
  padding-right: 15px;
}

.fun-fact-style-one img {
  height: 80px;
  margin-bottom: 30px;
}

.fun-fact-style-one {
  padding: 50px;
}

.fun-fact-style-one .counter {
  display: flex;
  justify-content: center;
  font-size: 80px;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 15px;
}

.fun-fact-style-one .counter .operator {
  font-size: 50px;
  line-height: 1;
}

.fun-fact-style-one .medium {
  text-transform: uppercase;
}

ul.list-style-one {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

ul.list-style-one li {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  font-weight: 500;
  margin-top: 5px;
}

ul.list-style-one li::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 18px;
  width: 18px;
  background: url(../img/icon/check.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  transform: translateY(-50%);
}

.choose-us-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.choose-us-style-one-item .video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: inherit;
  background: transparent;
  z-index: 1;
  transform: translate(-50%, -50%);
}

/* ============================================================== 
    # Fun Factor
=================================================================== */

.fun-fact-style-one-area {
  position: relative;
  z-index: 1;
}

.fun-fact-style-one-area::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 20%;
  background: var(--color-primary);
  z-index: -1;
}

@media only screen and (min-width: 1600px) {
  .fun-fact-style-one-area::after {
    right: 120px;
  }
}

.fun-fact-style-one-items h2 {
  font-size: 110px;
  line-height: 1;
  text-transform: uppercase;
}

.fun-fact-style-one-content {
  border-top: 2px solid;
  margin-top: 50px;
  padding-top: 10px;
}

.fun-fact-style-one-content .fun-fact {
  display: inline-block;
  margin-right: 60px;
  margin-top: 30px;
}

.fun-fact-style-one-content .fun-fact .counter {
  display: flex;
  font-size: 70px;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}

.fun-fact-style-one-content .fun-fact span.medium {
  text-transform: uppercase;
  font-weight: 500;
}

.fun-fact-style-one-content .fun-fact:last-child {
  margin-right: 0;
}

/* ============================================================== 
    # Video BG
=================================================================== */

.video-bg-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.video-bg-area h2 {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.video-bg-area h2::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  height: 50px;
  width: 1px;
  background: var(--white);
}

/* Shape */

.video-bg-area .wavesshape {
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  width: 100%;
  height: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.video-bg-area .wavesshape img {
  width: 100%;
}

.video-bg-content {
  position: relative;
  z-index: 1;
  padding: 200px 0;
}

.video-bg-content::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--black);
  opacity: 0.5;
  z-index: -1;
}

/* ============================================================== 
    # Food Cateogry
=================================================================== */
.food-cat-item a {
  display: block;
  background-size: cover;
  background-position: center;
  padding: 50px;
  overflow: hidden;
  border-radius: 10px;
  padding-top: 150px;
  position: relative;
  z-index: 1;
}

.food-cat-item a h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.food-cat-item a span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 20px;
}

.food-cat-area {
  background-repeat: no-repeat;
  background-position: right top;
}

/* ============================================================== 
    # Services
=================================================================== */
.services-style-one-area {
  position: relative;
  z-index: 1;
}

.services-style-one-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  bottom: 45%;
  background: var(--dark);
  z-index: -1;
}

.services-style-one {
  text-align: center;
  padding: 80px 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.services-style-one:after {
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 120%)
    repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: 10px;
}

.services-style-one h4 {
  font-size: 26px;
}

.services-style-one p {
  margin: 0;
  color: var(--white);
}

.services-style-one i {
  font-size: 50px;
}

.services-style-one .icon {
  display: inline-block;
  font-size: 50px;
  margin-bottom: 30px;
  height: 100px;
  width: 100px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 100px;
  color: var(--color-primary);
  border-radius: 50%;
}

.services-style-one .icon img {
  padding: 22px;
  position: relative;
  top: -5px;
}

/* Services Swiper Nav */
.services-swiper-nav {
  position: absolute;
  right: 50px;
  bottom: 80px;
  display: flex;
  width: 200px;
  justify-content: space-between;
  align-items: center;
}

.col-xl-12 .services-swiper-nav {
  position: relative;
}

.services-swiper-nav > div {
  height: 40px;
  width: 40px;
  z-index: 9;
  position: relative;
  border-radius: 50%;
  line-height: 25px;
  background: var(--white);
  color: var(--color-heading);
}

.services-swiper-nav > div::after {
  position: absolute;
  top: 7px;
  content: "";
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  color: var(--color-heading);
}

.services-swiper-nav .services-button-next::after {
  content: "\f105";
}

.services-swiper-nav .services-button-prev::after {
  content: "\f104";
}

.services-swiper-nav .services-pagination {
  background: transparent;
  position: absolute;
  line-height: 40px;
  color: var(--white);
  font-size: 24px;
  width: auto;
  font-weight: 500;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border: none;
}

@media (min-width: 1024px) {
  .services-style-one-area .heading-left::after {
    position: absolute;
    right: 0;
    top: -120px;
    content: "";
    bottom: -126px;
    width: 300px;
    background: var(--color-primary);
    z-index: -1;
  }
}

/* ============================================================== 
    # Food Menu
=================================================================== */

#portfolio-grid {
  margin: -15px;
}

.food-menu-lists .food-menu-style-one {
  float: left;
  padding: 15px;
}

.food-menu-lists.colums-2 .food-menu-style-one {
  width: 50%;
}

.food-menu-lists.colums-3 .food-menu-style-one {
  width: 33.333%;
}

.food-menu-lists.colums-4 .food-menu-style-one {
  width: 25%;
}

/* Menu Isotop */

.mix-item-menu button {
  padding: 8px 20px;
  margin: 5px;
  border: none;
  background: transparent;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-heading);
  overflow: inherit;
}

.mix-item-menu button::after {
  display: none;
}

.mix-item-menu {
  margin-bottom: 40px;
  display: inline-block;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
}

.bg-gray .mix-item-menu {
  border-color: #cac6c6;
}

.mix-item-menu button.active {
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.mix-item-menu button::before {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: all 0.35s ease-in-out;
  transform: translateX(-50%);
}

.mix-item-menu button.active::before {
  width: 30px;
}

.food-menu-style-one .item {
  background: var(--white);
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  padding: 50px;
}

.food-menu-style-one .item .item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dddddd;
  padding-top: 20px;
}

.food-menu-style-one .item .item-price .left {
  font-family: var(--font-default);
  text-transform: uppercase;
  text-align: left;
}

.food-menu-style-one .item .item-price h5 {
  font-family: var(--font-default);
  font-weight: 700;
  margin: 0;
}

.food-menu-style-one .item .button a {
  display: block;
  color: var(--white);
  text-align: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 15px;
  background: var(--color-primary);
}

.food-menu-style-one .item .button a:hover {
  background: var(--dark);
}

.food-menu-style-one .item .item-price i {
  display: inline-block;
  font-size: 30px;
  color: var(--color-primary);
  font-weight: 100;
}

.bg-dark-secondary .food-menu-style-one .item .item-price i {
  color: var(--white);
}

.food-menu-style-one .item .food-cats {
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
  border-top: 1px solid #cccccc;
  padding-top: 15px;
  text-transform: uppercase;
  font-size: 15px;
}

.food-menu-style-one .button {
  margin-top: 25px;
}

.food-menu-style-one .item .thumb img {
  max-height: 250px;
  margin-bottom: 30px;
  border-radius: 50%;
}

/* ============================================================== 
    # Menu Style Two
=================================================================== */

.bg-dark-secondary .food-menu-style-two-area.secondary {
  background-image: none !important;
  background-color: var(--dark);
}

@media (min-width: 1199px) {
  .food-menu-style-two-area.secondary {
    max-width: 90%;
    margin: auto;
  }

  .food-menu-style-two-area.full-width,
  .full-width .food-menu-style-two-area {
    max-width: 100%;
  }
}

.food-menu-style-two-thumb {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-right: 50px;
}

.food-menu-style-two-thumb::after {
  position: absolute;
  left: 50%;
  top: -100%;
  content: "";
  height: 150%;
  width: 50%;
  background: var(--color-primary);
  z-index: -1;
  transform: translateX(-50%);
  margin-left: -25px;
}

.food-menu-style-two-area {
  overflow: hidden;
}

.food-menu-style-two:nth-child(2n) .row {
  flex-direction: row-reverse;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
  right: 0;
  top: auto;
  bottom: -100%;
  margin: 0;
  margin-left: 25px;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb {
  padding-right: 0;
  padding-left: 50px;
}

.food-menu-style-two-thumb img {
  border-radius: 50%;
  border: 15px solid var(--white);
  box-shadow: 0px 2px 60px 0px rgba(0, 0, 0, 0.1);
  background: var(--color-primary);
  padding: 10px;
}

.food-menu-style-two-content {
  margin-left: 120px;
}

.food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
  margin-left: 0;
  margin-right: 120px;
}

ul.meal-type {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 15px;
}

ul.meal-type li {
  display: inline-block;
  border: 1px solid;
  margin-left: 10px;
  padding: 1px 10px;
  font-weight: 600;
  padding-top: 3px;
}

ul.meal-items li {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 5.5fr;
  grid-column-gap: 30px;
  align-items: center;
}

ul.meal-items.thumb-less li {
  display: block;
}

ul.meal-items li .thumbnail img {
  border-radius: 50%;
  margin-right: 30px;
}

ul.meal-items li .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

ul.meal-items {
  display: grid;
  grid-row-gap: 30px;
}

.food-menus-item .title,
.food-menu-items .title,
.meal-items .title {
  margin-top: 0;
}

ul.meal-items li .content .top h4 {
  margin: 0;
  background: var(--white);
  padding-right: 20px;
}

.bg-cover ul.meal-items li .content .top h4 {
  background: #f3f4ee;
}

.food-menu-items ul.meal-items li .content .top h4 {
  background: var(--dark-secondary);
}

ul.meal-items li .content .bottom {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  justify-content: space-between;
  grid-column-gap: 50px;
}

ul.meal-items li .content .bottom .right {
  text-align: right;
}

.text-light ul.meal-items li .content .bottom p {
  color: #aba8a8;
}

ul.meal-items li .content .bottom p {
  margin: 0;
  text-transform: capitalize;
}

ul.meal-items li .content .top .price {
  font-size: 24px;
  font-weight: 500;
  background: var(--white);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-family: var(--font-heading);
}

.bg-cover ul.meal-items li .content .top .price {
  background: #eff0e9;
}

.color-style-two ul.meal-items li .content .top .price {
  color: var(--color-secondary);
}

.food-menu-items ul.meal-items li .content .top .price {
  background: var(--dark-secondary);
}

ul.meal-items li .content .top .price span {
  line-height: 1.2;
  margin-left: 20px;
}

ul.meal-items li .content .top::before {
  position: absolute;
  left: 0;
  top: 16px;
  content: "";
  height: 1px;
  width: 100%;
  border-top: 2px dashed #6d6d6d;
  z-index: -1;
  opacity: 0.6;
}

ul.meal-items li .content .top .price span:first-child {
  margin-left: 20px;
}

.food-menu-style-two {
  margin-top: 100px;
}

.food-menu-style-two:first-child {
  margin-top: 0;
}

.food-menu-style-two-content h4.sub-heading {
  font-size: 36px;
}

.food-menu-style-two-content h4.sub-heading::before {
  margin-top: -20px;
  background-size: 140px;
}

/* ============================================================== 
    # Menu Style Three
=================================================================== */

@media only screen and (min-width: 1600px) {
  .menu-type-area {
    position: relative;
    z-index: 1;
  }

  .menu-type-area::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 120px;
    background: var(--white);
    z-index: -1;
  }
}

ul.menu-type-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.menu-type-list li h6 {
  width: 1%;
  display: table-cell;
  white-space: nowrap;
  font-weight: 300;
}

ul.menu-type-list li .line-seperator {
  width: 98%;
  display: table-cell;
  position: relative;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  bottom: 10px;
}

ul.menu-type-list li h6:first-child {
  padding-right: 20px;
}

ul.menu-type-list li h6:last-child {
  padding-left: 20px;
}

.menu-type-item h3 {
  font-weight: 400;
  margin-bottom: 30px;
}

ul.menu-type-list li {
  margin-top: 14px;
}

.menu-type-single .btn {
  display: block;
}

.menu-type-single .btn::after {
  background: var(--white);
}

.menu-type-single .btn:hover {
  color: var(--color-heading);
}

.menu-type-item {
  padding: 50px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
}

.menu-type-item .thumb {
  display: inline-block;
  position: relative;
  height: 200px;
  width: 200px;
  padding: 15px;
  border-radius: 50%;
  background: var(--dark);
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-type-item .thumb img:nth-child(2) {
  position: absolute;
  right: -20px;
  top: 0;
  z-index: -1;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.35s ease-in-out;
}

.menu-type-item:hover .thumb img:nth-child(2),
.menu-type-item.active .thumb img:nth-child(2) {
  filter: none;
}

/* ============================================================== 
    # Menu Style Four
=================================================================== */
.special-menu-style-one .thumb {
  height: 200px;
  width: 200px;
  margin: auto auto 30px;
  position: relative;
  z-index: 1;
}

.special-menu-style-one .thumb img {
  border-radius: 50%;
  border-top: 10px solid var(--color-primary);
  border-left: 10px solid var(--color-primary);
  border-right: 10px solid var(--bg-gray);
  border-bottom: 10px solid var(--bg-gray);
}

.special-menu-style-one .thumb h4 {
  margin: 0;
  position: absolute;
  right: -10px;
  bottom: -10px;
  height: 80px;
  width: 80px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border: 2px solid;
}

.special-menu-style-one {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
}

.special-menu-style-one ul {
  margin: 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 10px 0;
  margin-bottom: 20px;
  margin-top: 25px;
}

.special-menu-style-one p {
  margin-bottom: 0;
}

.special-menu-style-one .button {
  margin-top: 15px;
  text-transform: uppercase;
}

.special-menu-style-one ul li {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.special-menu-style-one .button a i {
  font-weight: 100;
  margin-left: 6px;
}

.special-menu-style-one .button a {
  display: block;
  border: 2px solid #cccccc;
  color: var(--color-heading);
  padding: 8px;
  border-radius: 6px;
  font-weight: 400;
}

/* ============================================================== 
    # Menu Style Five
=================================================================== */
ul.meal-items.style-two li {
  display: block;
}

.menu-style-five-area {
  position: relative;
  z-index: 1;
}

.menu-style-five-area::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 37%;
  background: var(--white);
  z-index: -1;
}

.nav-tabs.food-menu-five-navs {
  margin: 0;
  border: none;
  margin-bottom: 20px;
}

.nav-tabs.food-menu-five-navs::before,
.nav-tabs.food-menu-five-navs::after {
  display: none;
}

.nav-tabs.food-menu-five-navs .nav-item button {
  margin: 0;
  border: none;
  border-radius: 10px;
  background: var(--white);
  color: var(--color-heading);
  padding: 12px 25px;
  margin-bottom: 6px;
}

.nav-tabs.food-menu-five-navs .nav-item button::after {
  display: none;
}

.nav-tabs.food-menu-five-navs .nav-item button.active {
  background: var(--color-primary);
  color: var(--white);
}

.fun-fact-style-two {
  display: flex;
  align-items: center;
}

.fun-fact-style-two .icon {
  background: var(--white);
  height: 120px;
  width: 120px;
  text-align: center;
  padding: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  margin-right: 25px;
}

.fun-fact-style-two .counter {
  display: flex;
  align-items: center;
  font-size: 80px;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.fun-fact-style-two span.medium {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-size: 26px;
}

/* ============================================================== 
    # Shop
=================================================================== */

.cart-btn {
  display: inline-flex;
  border: 1px solid #b5b2ba;
  padding: 11px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  align-items: center;
  font-size: 15px;
}

.cart-btn i {
  font-weight: 400;
  margin-right: 10px;
  font-size: 20px;
}

.cart-btn:hover {
  border-color: transparent;
  background: var(--color-primary);
  color: var(--white);
}

.shape-seperate img {
  position: absolute;
  max-height: 100px;
  z-index: 1;
}

.shape-seperate img:first-child {
  left: 5%;
}

.shape-seperate img:last-child {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================== 
    # Offer Product
=================================================================== */
.offer-style-one ul {
  padding: 0;
  list-style: none;
  margin: 30px 0;
}

.offer-style-one ul li {
  margin-top: 15px;
}

.offer-style-one ul li h5 {
  margin-bottom: 0;
}

.offer-style-one ul li h5,
.offer-style-one ul li span {
  width: 1%;
  display: table-cell;
  white-space: nowrap;
  font-weight: 400;
  min-width: 155px;
}

.offer-style-one ul li .line-seperator {
  width: 98%;
  display: table-cell;
  position: relative;
  border-bottom: 1px solid #dddddd;
  bottom: 10px;
}

.text-light .offer-style-one ul li .line-seperator {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-style-one ul li h5:first-child {
  padding-right: 20px;
}

.offer-style-one ul li h5:last-child {
  padding-left: 40px;
}

.offer-style-one .thumb {
  position: relative;
  z-index: 1;
}

.offer-style-one .thumb .discount-badge {
  position: absolute;
  right: -80px;
  top: 50px;
  background-image: url(../img/shape/2.png);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  height: 250px;
  display: flex;
  width: 250px;
  flex-direction: column;
  z-index: 1;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: var(--font-heading);
}

.offer-style-one .thumb .discount-badge strong {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.offer-style-one {
  position: relative;
}

.offer-style-one .shape {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0;
}

.offer-style-one .shape img {
  width: 100px;
}

/* ============================================================== 
    # Discount
=================================================================== */

.discount-area {
  position: relative;
  z-index: 1;
}

.discount-area .wavesshape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.offer-item-thumb {
  position: relative;
}

.offer-item-thumb img:nth-child(2) {
  position: absolute;
  right: -50px;
  top: 0;
  height: 200px;
}

.counter-class .counter-list {
  display: flex;
}

.counter-class .item-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.counter-class .item-list h5 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 90px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.counter-class .item-list h5 span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.discount-content h2 {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background-size: contain;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.discount-content h4 {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 5px 20px;
  text-transform: uppercase;
  border-radius: 7px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* ============================================================== 
    # Chef
=================================================================== */

@media (min-width: 1024px) {
  .chef-one-single:nth-last-child(2n) {
    margin-top: 80px;
  }
}

.chef-style-one-item .info {
  margin-top: 30px;
}

.chef-style-one-item .info h4 {
  margin-bottom: 5px;
}

.chef-style-one-item .info span {
  text-transform: uppercase;
}

.chef-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.chef-style-one-item .thumb img {
  border-radius: 10px;
}

.chef-one-social {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.chef-style-one-item li {
  display: inline-block;
  margin: 0 1px;
}

.chef-style-one-item li a {
  display: inline-block;
}

.chef-style-one-item li i {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: var(--color-primary);
  line-height: 40px;
  border-radius: 50%;
  color: var(--white);
  position: relative;
  bottom: -30px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: all 0.35s ease-in-out;
}

.chef-one-social li:nth-child(2) a i {
  transition: all 0.55s ease-in-out;
}

.chef-one-social li:nth-child(3) a i {
  transition: all 0.75s ease-in-out;
}

.chef-style-one-item:hover .chef-one-social li a i {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.chef-one-social li .fa-facebook-f {
  background: #3b5998;
}

.chef-one-social li i.fa-twitter {
  background: #1da1f2;
}

.chef-one-social li i.fa-dribbble {
  background: #ea4c89;
}

.chef-one-social li i.fa-linkedin-in {
  background: #0077b5;
}

/* ============================================================== 
     # Chef Single  
=================================================================== */

.chef-single-area .chef-content-top {
  bottom: -50px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.chef-single-area .chef-content-top .right-info {
  margin-bottom: 80px;
}

.chef-single-area .chef-content-top .right-info h2 {
  font-weight: 500;
}

.chef-single-area .chef-content-top .right-info p {
  padding-right: 20%;
}

.chef-single-area .chef-content-top .right-info span {
  display: block;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 25px;
}

.chef-single-area .chef-content-top .right-info ul {
  padding: 0;
  list-style: none;
  margin: 35px 0;
}

.chef-single-area .right-info ul li {
  margin-top: 10px;
  color: var(--color-heading);
  display: flex;
  align-items: center;
}

.chef-single-area .right-info ul li p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.chef-single-area .right-info > ul li i {
  min-width: 35px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  border-radius: 5px;
  margin-right: 15px;
}

.chef-single-area .right-info ul li strong {
  font-weight: 500;
}

.chef-single-area .right-info ul li a {
  font-weight: 400;
}

.chef-single-area .right-info ul li a:hover {
  color: var(--color-primary);
}

.chef-single-area .right-info .social {
  display: flex;
  margin-top: 25px;
  font-weight: 500;
  align-items: center;
}

.chef-single-area .right-info .social h4 {
  font-weight: 500;
  margin-bottom: 0;
  margin-right: 25px;
}

.chef-single-area .right-info .social ul {
  margin: 0;
  padding: 0;
  border: none;
}

.chef-single-area .right-info .social .share-link {
  position: relative;
  z-index: 1;
  margin-left: 15px;
  padding-right: 20px;
}

.chef-single-area .right-info .social .share-link > i {
  display: inline-block;
  height: 45px;
  background: var(--dark);
  line-height: 45px;
  width: 45px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
}

.chef-single-area .right-info .social ul {
  display: flex;
  list-style-type: none;
  grid-gap: 10px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0s;
}

.chef-single-area .right-info .social .share-link:hover ul {
  left: 58px;
  opacity: 1;
  pointer-events: auto;
}

.chef-single-area .right-info .social ul li {
  display: inline-block;
  margin: 0;
}

.chef-single-area .right-info .social ul li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 47px;
  background: var(--white);
  text-align: center;
  border-radius: 50% !important;
}

.chef-single-area .bottom-info h2 {
  font-weight: 500;
  margin-bottom: 25px;
}

.chef-single-area .bottom-info p:last-child {
  margin-bottom: 0;
}

.chef-single-area .bottom-info .skill-items {
  padding-left: 35px;
}

.skill-items .progress-box {
  margin-bottom: 35px;
}

.chef-single-area .chef-content-top img {
  border-radius: 30px;
}

.skill-items .progress-box:last-child {
  margin-bottom: 0;
}

.skill-items .progress-box h5 {
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.skill-items .progress-box h5 span {
  position: absolute;
  font-size: 50px;
  line-height: 1;
  top: -21px;
  left: 0;
  z-index: -1;
  opacity: 0.05;
  font-weight: 500;
}

.skill-items .skill-items {
  margin-top: 40px;
}

.skill-items .progress-box .progress {
  background: transparent;
  border-bottom: none;
  box-shadow: inherit;
  border-radius: inherit;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar {
  height: 6px;
  border-radius: 30px;
  background: var(--color-primary);
  top: 12px;
  position: relative;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar span {
  position: absolute;
  right: 0;
  top: -37px;
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  background: var(--dark);
  padding: 0 7px;
  border-radius: 5px;
}

.skill-items .progress-box .progress .progress-bar span::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--dark);
  transform: translateX(-50%);
}

.chef-single-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.chef-list-item h4 {
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 28px;
}

.chef-list-item h5 {
  font-weight: 500;
  margin-bottom: 8px;
}

.chef-list-item span {
  text-transform: none;
  margin-bottom: 5px;
  color: var(--color-heading);
  display: block;
}

.chef-list-item li {
  margin-top: 30px;
}

.chef-list-item li:first-child {
  margin-top: 0;
}

.chef-single-list ul {
  border: none;
  margin-top: 0;
  padding: 0;
}

.skill-items h3 {
  font-weight: 500;
  margin-bottom: 30px;
}

.chef-list-item ul {
  border-left: 1px solid;
  padding-left: 25px;
}

.chef-list-item ul li {
  position: relative;
  z-index: 1;
}

.chef-list-item ul li::after {
  position: absolute;
  left: -33px;
  top: 3px;
  content: "";
  height: 15px;
  width: 15px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--white);
}

/* ============================================================== 
    # Testimonial
=================================================================== */

.testimonial-style-one-area {
  overflow: hidden;
}

.testimonial-style-one-area .wavesshape {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tm-proivder-thumb img {
  border: 5px solid #cccccc;
  height: 200px;
  width: auto;
  margin-left: -50px;
}

.bg-gray .tm-proivder-thumb img,
.bg-gray-secondary .tm-proivder-thumb img,
.bg-dark .tm-proivder-thumb img,
.bg-theme .tm-proivder-thumb img {
  border: 5px solid var(--white);
}

.tm-proivder-thumb img:first-child {
  transform: rotate(5deg);
}

.tm-proivder-thumb img:nth-child(2) {
  position: relative;
  top: 50px;
  transform: rotate(-5deg);
}

.testimonial-style-one {
  padding-bottom: 60px;
}

.testimonial-style-one .content p {
  font-size: 30px;
  line-height: 1.5;
}

.tm-proivder-thumb {
  margin-top: 50px;
  margin-left: 50px;
}

.tm-review i {
  color: #f7a105;
}

.tm-review {
  display: block;
  margin-bottom: 15px;
}

.testimonial-style-one .provider h4 {
  margin-bottom: 15px;
  font-size: 30px;
}

.testimonial-style-one .provider {
  margin-bottom: 30px;
}

.testimonial-style-one .provider span {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--color-primary);
}

.testimonial-pagination {
  position: relative;
  margin-top: 50px;
  margin-bottom: -15px;
}

.testimonial-pagination .swiper-pagination {
  position: inherit;
}

.testimonial-pagination .swiper-pagination span.swiper-pagination-bullet {
  background: transparent;
  height: 20px;
  width: 20px;
  border: 2px solid;
  position: relative;
  z-index: 1;
}

.testimonial-pagination
  .swiper-pagination
  span.swiper-pagination-bullet::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bg-dark
  .testimonial-pagination
  .swiper-pagination
  span.swiper-pagination-bullet::after {
  background: var(--white);
}

/* ============================================================== 
    # Reservation
=================================================================== */
.reservation-thumb {
  position: relative;
  border-right: 3px solid var(--color-primary);
}

.reservation-thumb > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.reservation-style-one-items {
  border-radius: 10px;
}

.reservation-info {
  padding: 80px 120px;
}

.reservation-form label {
  display: block;
  color: var(--color-heading);
  width: 100%;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.6px;
}

.bg-dark .reservation-form label {
  color: var(--white);
}

.reservation-form.light label {
  color: var(--color-paragraph);
}

.reservation-form .form-group {
  margin-bottom: 15px;
}

.reservation-form .input-group {
  margin-bottom: 15px;
}

.reservation-form select {
  width: 100%;
  min-height: 50px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  background: transparent;
  color: var(--color-heading);
  border: 1px solid #cccccc;
}

.bg-dark .reservation-form select {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reservation-form input,
.reservation-form input:focus {
  padding: 0 15px;
  background: transparent;
  border: 1px solid #e7e7e7;
  color: var(--color-heading);
  box-shadow: none;
}

.bg-dark .reservation-form input,
.bg-dark .reservation-form input:focus {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.reservation-form .input-group span.input-group-addon {
  background: var(--color-primary);
  color: var(--white);
  padding: 0 20px;
  line-height: 50px;
  border-radius: 0 5px 5px 0;
  border: none;
}

.reservation-form.light .input-group span.input-group-addon {
  background: var(--white);
  color: var(--color-heding);
  border: 1px solid #e7e7e7;
}

.reservation-form.light .input-group span.input-group-addon i {
  color: var(--color-primary);
}

.reservation-form .input-group input {
  border-right: none;
  border-radius: 5px 0 0 5px !important;
}

.reservation-form > i {
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 70px;
  text-align: center;
  background: var(--color-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 30px;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  border: 5px solid;
}

.reservation-form h3 {
  margin-bottom: 30px;
}

.reservation-form.light button {
  margin-top: 15px;
}

.bg-dark .reservation-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.bg-dark .reservation-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.bg-dark .reservation-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.bg-dark .reservation-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.bg-dark .reservation-form.light input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #666666;
}

.bg-dark .reservation-form.light input::-moz-placeholder {
  /* Firefox 19+ */
  color: #666666;
}

.bg-dark .reservation-form.light input:-ms-input-placeholder {
  /* IE 10+ */
  color: #666666;
}

.bg-dark .reservation-form.light input:-moz-placeholder {
  /* Firefox 18- */
  color: #666666;
}

.bg-dark .reservation-form select option {
  color: var(--color-heading);
  padding: 20px;
}

.bg-dark .reservation-form button::after {
  background: var(--white);
}

.reservation-form.light button::after {
  background: var(--dark);
}

.bg-dark .reservation-form button:hover {
  color: var(--color-heading);
}

.reservation-form .nice-select {
  background: transparent;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
}

.bg-dark .reservation-form .nice-select {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.reservation-form .nice-select li.option {
  color: var(--color-heading);
  padding: 5px 20px;
  line-height: 30px;
  border-bottom: 1px solid #e7e7e7;
}

.reservation-style-one-items > .row {
  margin: 0;
}

.reservation-thumb .icon {
  display: inline-flex;
  height: 120px;
  width: 120px;
  text-align: center;
  line-height: 120px;
  background: var(--white);
  position: absolute;
  right: -60px;
  top: 80px;
  color: var(--color-primary);
  font-size: 40px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  z-index: 9;
  flex-direction: column;
  justify-content: center;
}

.reservation-thumb img {
  border-radius: 10px 0 0 10px;
}

.reservation-thumb .icon img {
  padding: 25px;
}

/* ============================================================== 
    # Reservation
=================================================================== */

.reservation-style-two-area {
  position: relative;
  z-index: 1;
}

.reservation-banner img {
  height: 100%;
  width: 48%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.reservation-tabs {
  padding: 120px 0;
  position: relative;
  display: flex;
  left: -135px;
  margin-right: -135px;
}

.reservation-tabs .nav-tabs .nav-item {
  display: block;
  margin: 16px 0;
}

.reservation-tabs .nav-tabs .nav-item button {
  display: flex;
  margin: 0;
  padding: 0;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 150px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
  transition: all 0.35s ease-in-out;
  text-transform: uppercase;
}

.reservation-tabs .nav-tabs .nav-item button img {
  height: 50px;
  margin-bottom: 10px;
  transition: all 0.35s ease-in-out;
}

.reservation-tabs .nav-tabs .nav-item button.active img {
  filter: brightness(0) invert(1);
}

.reservation-tabs .nav-tabs {
  margin: 0;
  padding: 0;
  border: none;
  margin-right: 50px;
  list-style: none;
  margin-top: -20px;
}

.reservation-tabs .tab-content {
  width: 100%;
}

.reservation-tabs .nav-tabs .nav-item button::after {
  display: none;
}

.reservation-tabs .nav-tabs .nav-item button.active {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # Gallery
=================================================================== */
.gallery-items.colums-3 .pf-item {
  float: left;
  padding: 15px;
  width: 33.3333%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-items.colums-3 .pf-item {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .gallery-items.colums-3 .pf-item {
    width: 50%;
  }
}

@media only screen and (max-width: 600px) {
  #portfolio-grid {
    margin: 0;
  }

  .gallery-items.colums-3 .pf-item {
    width: 100%;
    padding: 15px 0;
  }
}

button.mfp-arrow::after {
  display: none;
}

.gallery-style-one {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-style-one .overlay {
  display: inline-block;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: 10px;
  transition: all 0.35s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
}

.gallery-style-one .overlay h4 {
  margin: 0;
}

.gallery-style-one .overlay span {
  color: var(--color-primary);
}

.gallery-style-one:hover .overlay {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.gallery-style-one img {
  max-width: none;
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50px, 0, 0);
  transform: translate3d(-50px, 0, 0);
}

.gallery-style-one:hover img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.gallery-style-one i {
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--bg-gray-secondary);
  border-radius: 50%;
  color: var(--color-primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.gallery-style-one::after {
  position: absolute;
  left: 50px;
  top: 50px;
  right: 50px;
  bottom: 50px;
  border-radius: 10px;
  background: var(--color-primary);
  content: "";
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
  mix-blend-mode: multiply;
}

.gallery-style-one:hover::after {
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

.gallery-style-one:hover i {
  margin: 0;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================================== 
    # Discount
=================================================================== */

.dicount-thumb {
  position: relative;
  z-index: 1;
}

.dicount-thumb img:nth-child(2) {
  position: absolute;
  right: 0;
  top: 100px;
}

.discount-info h2 {
  text-transform: uppercase;
  line-height: 1.1;
  background: var(--color-primary);
  display: inline-block;
  color: var(--white);
  max-width: max-content;
  padding: 15px 100px;
  clip-path: polygon(0 1%, 100% 0, 91% 51%, 100% 100%, 0 100%, 8% 57%);
  font-weight: 500;
}

.discount-info {
  overflow: hidden;
  height: 100%;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.discount-info p {
  font-size: 20px;
}

.offer-fun-fact .fun-fact .counter {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 10px;
  justify-content: center;
  font-weight: 500;
}

.offer-fun-fact .fun-fact {
  display: inline-block;
  border-right: 1px solid;
  margin-right: 30px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.offer-fun-fact {
  display: block;
  width: 100%;
  border: 1px solid;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  border-radius: 100px;
}

.offer-fun-fact .fun-fact:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}

.offer-fun-fact .fun-fact span.medium {
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.discount-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.discount-info ul li {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding-left: 37px;
  text-align: left;
  margin-top: 5px;
  color: var(--color-paragraph);
}

.discount-info ul li::after {
  position: absolute;
  left: 0;
  top: 7px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  height: 23px;
  width: 23px;
  line-height: 23px;
  background: var(--dark);
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 600;
}

.discount-offer-area .shape img {
  position: absolute;
  right: 2%;
  bottom: -30px;
  height: 120px;
}

/* ============================================================== 
    # Home Blog
=================================================================== */
.home-blog-style-one-item .thumb {
  position: relative;
  z-index: 1;
}

.home-blog-style-one-item .thumb img {
  border-radius: 10px;
  margin-bottom: 30px;
}

.home-blog-style-one-item .thumb ul.blog-meta {
  position: absolute;
  left: 30px;
  top: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog-style-one-item .thumb ul.blog-meta li {
  display: inline-block;
  margin-right: 3px;
}

.home-blog-style-one-item .thumb ul.blog-meta li a {
  display: inline-block;
  background: var(--white);
  text-transform: uppercase;
  padding: 0 20px;
  border-radius: 5px;
  font-size: 14px;
}

.home-blog-style-one-item .meta-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-blog-style-one-item .meta-tags li {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  margin-right: 5px;
  padding-right: 12px;
}

.home-blog-style-one-item .meta-tags li::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  background: var(--color-heading);
  border-radius: 50%;
  transform: translateY(-50%);
}

.home-blog-style-one-item .meta-tags li a {
  font-family: var(--font-default);
  font-weight: 400;
  color: var(--color-paragraph);
}

.home-blog-style-one-item .meta-tags li:last-child::after {
  display: none;
}

.home-blog-style-one-item .meta-tags li a:hover {
  color: var(--color-primary);
}

.home-blog-style-one-item .post-title {
  line-height: 1.4;
}

.home-blog-style-one-item h4.post-title {
  font-size: 26px;
}

/* ============================================================== 
    # Contact
=================================================================== */
.maps-area {
  position: relative;
  z-index: 1;
}

.maps-area iframe {
  width: 100%;
  height: 800px;
}

.contact-style-one-info {
  background: var(--white);
  padding: 80px;
}

.contact-style-one-items {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.contact-style-one-box {
  position: relative;
}

.contact-style-one-info li {
  display: flex;
  margin-top: 30px;
}

.contact-style-one-info li i {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  margin-right: 20px;
}

.contact-style-one-info li:nth-child(2) i {
  background: var(--color-secondary);
}

.contact-style-one-info li:nth-child(3) i {
  background: var(--dark);
}

.contact-style-one-info li p {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-heading);
}

.contact-style-one-info li h5 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 20px;
}

.contact-style-one-info li a {
  font-weight: 400;
}

.contact-style-one-info h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}

.contact-style-one-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 50px;
}

.contact-style-one-items,
.contact-style-one-items div {
  height: 100%;
}

.contact-style-one-items div.row div {
  height: auto;
}

.contact-style-one-items div.row {
  align-items: center;
}

.contact-form-style-one {
  padding: 60px 80px;
  border-radius: 10px;
  position: relative;
  background: var(--bg-gray);
  z-index: 9;
}

.contact-form-style-one input,
.contact-form-style-one textarea,
.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
  margin-bottom: 15px;
  padding: 15px;
  border: none;
  font-size: 18px;
  border-radius: 6px;
  background: var(--white);
}

.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
  box-shadow: inherit;
}

.contact-form-style-one textarea {
  min-height: 180px;
}

.contact-form-style-one button {
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 6px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 17px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: var(--color-primary);
  padding: 13px 52px;
}

.contact-form-style-one button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.contact-form-style-one button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.contact-form-style-one button:hover {
  color: var(--white);
}

img.loader {
  margin-left: 8px;
}

/* ============================================================== 
    # 404 page
=================================================================== */

.error-page-area {
  position: relative;
  z-index: 1;
}

.error-page-area .shape-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: left !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-page-area .shape-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: right !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-box h1 {
  font-size: 150px;
  line-height: 110px;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.error-box p {
  padding: 0 10%;
}

/* ============================================================== 
    # Footer
=================================================================== */
footer.footer-style-one {
  padding-top: 70px;
  overflow: hidden;
}

footer .bg-dark,
footer .bg-dark li,
footer .bg-dark a,
footer .bg-dark p,
footer.bg-dark,
footer.bg-dark li,
footer.bg-dark a,
footer.bg-dark p {
  color: #cccccc;
}

footer .bg-dark a:hover {
  color: var(--white);
}

footer .f-item img {
  height: 61px;
  margin-bottom: 30px;
}

ul.opening-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.opening-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  color: var(--white);
  text-transform: uppercase;
}

ul.opening-list li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

footer .link li {
  margin-top: 10px;
}

footer .link li:first-child {
  margin-top: 0;
}

footer a {
  font-weight: 400;
  font-family: var(--font-default);
}

footer .widget-title {
  margin-bottom: 30px;
}

.f-item.newsletter form {
  position: relative;
}

.f-item.newsletter form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  padding: 0;
  color: var(--white);
  box-shadow: none;
}

.f-item.newsletter form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cccccc;
}

.f-item.newsletter form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #cccccc;
}

.f-item.newsletter form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #cccccc;
}

.f-item.newsletter form input:-moz-placeholder {
  /* Firefox 18- */
  color: #cccccc;
}

.footer-socila-items {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-socila-items h4 {
  margin: 0;
}

.f-item.newsletter form button {
  padding: 0;
  right: 0;
  top: 0;
  line-height: 50px;
  background: var(--color-primary);
  width: 100%;
  margin-top: 15px;
}

.f-item.newsletter form button::after {
  background: var(--white);
}

.f-item.newsletter form button:hover {
  color: var(--color-heading);
}

.f-item.newsletter form button i {
  font-weight: 400;
  transform: rotate(-45deg);
  margin-left: 3px;
}

.footer-item fieldset {
  display: flex;
  align-items: baseline;
  margin: 0;
  margin-top: 10px;
}

.footer-item fieldset input {
  min-height: auto;
  position: relative;
  margin-right: 10px;
}

.footer-item fieldset label {
  margin: 0;
}

.f-item.newsletter {
  position: relative;
  z-index: 1;
  padding: 0 50px;
}

.f-item.newsletter::after {
  position: absolute;
  left: 0;
  top: -300px;
  content: "";
  height: 500%;
  width: 100%;
  background: var(--dark);
  z-index: -1;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .f-item.newsletter::after {
  background: var(--dark);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

ul.contact-widget {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.contact-widget li {
  display: flex;
  margin-top: 20px;
}

ul.contact-widget li i {
  height: 35px;
  width: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 34px;
  font-weight: 500;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 80px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom img {
  height: 60px;
}

footer .bg-dark .footer-bottom p {
  margin: 0;
  color: var(--color-paragraph);
}

ul.footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.footer-social li {
  display: inline-block;
  margin-left: 5px;
}

ul.footer-social li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: var(--white);
  text-align: center;
  border-radius: 50%;
  color: var(--color-heading);
}

ul.footer-social li a:hover {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # Responsive CSS
=================================================================== */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Banner Two */
  .banner-style-six h2 {
    font-size: 60px;
  }

  .banner-style-six .content {
    padding-top: 100px;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: 0;
  }

  .banner-style-two h2 {
    font-size: 60px;
  }

  /* Banner Four */
  .banner-style-four h2 {
    font-size: 60px;
  }

  /* About */
  .about-style-one-info .content {
    padding-left: 0;
    margin-left: 0;
  }

  .about-style-one-info .content::after {
    display: none;
  }

  /* About Three */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 120px;
  }

  .about-style-three-content {
    padding: 120px;
  }

  /* Experience */
  .fun-fact-style-one-items h2 {
    font-size: 60px;
    line-height: 1.2;
  }

  /* Feature */
  .feature-style-one-item {
    padding-left: 25px;
    padding-right: 20px;
  }

  .feature-one-single:nth-child(2n) .feature-style-one-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Why Choose Us */
  .choose-us-style-one-item .thumb img {
    width: 100%;
  }

  .choose-us-style-one-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Food Menu */
  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one {
    width: 50%;
  }

  /* Food Menu Two */
  .food-menu-style-two-content {
    margin-left: 20px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin-right: 20px;
  }

  ul.meal-items li .content .bottom p {
    font-size: 16px;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    width: 40%;
  }

  .thumb-style-two {
    padding-right: 30px;
  }

  /* Feature Product */
  .feature-product-item a .info {
    padding-right: 30%;
  }

  /* Offer */
  .offer-style-one .shape img {
    width: 50px;
  }

  /* Chef Details */
  .chef-single-area .chef-content-top {
    margin: 0;
    bottom: 0;
  }

  .chef-single-area .chef-content-top .right-info {
    margin-bottom: 120px;
  }

  /* Footer */
  .footer-style-one {
    padding: 80px 30px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  ul.opening-list li {
    display: block;
  }

  ul.opening-list span.text-end {
    text-align: left !important;
    display: block;
  }

  .footer-bottom {
    position: relative;
    bottom: -1px;
  }
}

@media screen and (max-width: 991px) {
  /* global reset - start */
  .order-last {
    order: 0;
  }
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Topbar */

  .top-bar-area {
    background: var(--dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .top-bar-area.bg-transparent {
    background: var(--color-primary) !important;
  }

  .top-bar-area .item-flex {
    justify-content: center;
  }

  .top-bar-area .text-end {
    margin-top: 10px;
    display: none;
  }

  .topbar-two-items .logo {
    display: none;
  }

  .top-bar-style-two {
    padding: 15px 0;
  }

  .topbar-two-items {
    justify-content: center;
  }

  .topbar-two-items .topbar-info {
    margin: 0 25px;
  }

  /* Banner Two */
  .banner-style-two h2 {
    font-size: 90px;
  }

  .banner-style-two .content {
    text-align: center;
  }

  .banner-style-two p {
    padding: 0 10%;
  }

  /* Banner Five */
  .banner-style-five-area h2 {
    font-size: 120px;
  }

  .banner-style-five-area .content {
    padding-top: 120px;
  }

  .banner-style-five-thumb {
    min-height: 500px;
  }

  /* Banner Six */
  .banner-style-six {
    text-align: center;
  }

  .banner-style-six p {
    padding: 0;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: 10%;
    top: 5%;
  }

  /* Banner Style Three */
  .banner-style-three-content h2 {
    font-size: 100px;
    line-height: 1;
  }

  .banner-style-three-content h4 {
    font-size: 40px;
  }

  .banner-style-three-area {
    height: auto;
  }

  .banner-style-three-content {
    padding: 120px 0;
  }

  /* Banner Four */
  .banner-area.banner-style-four .content {
    padding-top: 120px;
  }

  .banner-style-four .thumb {
    margin-top: 50px;
    display: none;
  }

  .banner-style-four p {
    padding: 0;
  }

  /* About */
  .thumb-style-one {
    margin-bottom: 50px;
  }

  .thumb-style-one .contact-card-one {
    right: auto;
    left: 0;
  }

  .about-style-one-info {
    overflow: hidden;
  }

  /* About Two */
  .thumb-style-two {
    margin-bottom: 50px;
  }

  .about-style-two-info ul.launch-time {
    left: 0;
    margin: 0;
    margin-top: 50px;
  }

  /* About */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 120px;
  }

  .about-style-three-content {
    padding: 80px;
  }

  /* Feature */
  .feature-one-single:nth-child(odd) .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single:first-child .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single::before {
    display: none;
  }

  .feature-one-single::after {
    display: none;
  }

  .feature-one-single:nth-child(2n) .feature-style-one-item {
    padding: 60px 37px;
  }

  .feature-style-one-area .row {
    --bs-gutter-x: 30px;
  }

  .feature-style-one-area {
    padding-top: 90px;
  }

  /* Experience */
  .fun-fact-style-one-area::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 19%;
  }

  .fun-fact-style-one-content {
    margin-top: 30px;
    padding-top: 0;
  }

  .fun-fact-style-one-area {
    text-align: center;
  }

  .fun-fact-style-one-content .fun-fact {
    margin: 0 50px;
    margin-top: 30px;
  }

  .fun-fact-style-one-area .thumb {
    margin-top: 50px;
  }

  .fun-fact-style-one-content .fun-fact:last-child {
    margin-right: 50px;
  }

  .fun-fact-style-one-items h2 {
    font-size: 80px;
    line-height: 1.2;
  }

  /* Reservation */
  .reservation-banner img {
    width: 100%;
    position: relative;
    max-height: 450px;
  }

  .reservation-tabs {
    left: 0;
    margin: 0;
    padding: 120px 0;
    display: block;
  }

  .reservation-tabs .nav-tabs {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .reservation-tabs form.reservation-form {
    text-align: left;
    background: var(--bg-gray);
    padding: 80px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .reservation-tabs .nav-tabs .nav-item {
    text-align: center;
    display: inline-block;
    margin: 0 15px;
    margin-bottom: 25px;
  }

  .reservation-tabs .nav-tabs .nav-item button {
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .reservation-tabs .tab-content {
    text-align: center;
  }

  .reservation-form input,
  .reservation-form input:focus {
    border-color: #cccccc;
  }

  .reservation-form .nice-select {
    border-color: #cccccc;
  }

  .reservation-tabs .tab-content h4.sub-heading::before {
    display: none;
  }

  .reservation-tabs .tab-content h4.sub-heading {
    padding-right: 0;
  }

  /* Service */
  .services-swiper-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }

  /* Food Menu */
  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one {
    width: 50%;
  }

  .mix-item-menu button {
    padding: 8px 15px;
  }

  /* Food Menu Two */
  .food-menu-style-two-thumb::after {
    display: none;
  }

  .food-menu-style-two-thumb {
    padding: 0 !important;
    margin-bottom: 50px;
  }

  .food-menu-style-two-thumb img {
    max-height: 500px;
  }

  .food-menu-style-two-content {
    margin: 0;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
    left: -50%;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin: 0;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    display: none;
  }

  .fun-fact-style-two {
    justify-content: center;
  }

  /* Feature Product */
  .feature-product-item {
    margin-top: 30px;
  }

  .feature-product-item:first-child {
    margin-top: 0;
  }

  .feature-product-item:first-child a .thumb .offer {
    top: 0;
    left: -30px;
  }

  .feature-product-item:first-child a .thumb {
    max-width: 50%;
    top: 80px;
    bottom: 0;
    transform: none;
  }

  .feature-product-item a .info {
    padding-right: 40%;
  }

  .shape-seperate {
    display: none;
  }

  /* Food Offer */
  .offer-style-one .thumb {
    margin-bottom: 70px;
  }

  .offer-style-one .thumb .discount-badge {
    right: auto;
    left: 0;
    bottom: -50px;
    top: auto;
  }

  .offer-style-one .thumb .discount-badge strong {
    font-size: 30px;
  }

  .offer-style-one .thumb .discount-badge {
    font-size: 18px;
    height: 180px;
    width: 180px;
  }

  /* Reservation */
  .reservation-thumb .icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    top: auto;
  }

  .reservation-thumb > img {
    height: 400px;
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    border-radius: 0;
  }

  .reservation-thumb {
    border: none;
    padding: 0;
  }

  .reservation-style-one-items {
    overflow: hidden;
  }

  .reservation-info {
    margin-top: 50px;
  }

  /* Gift Vourcher */
  .dicount-thumb img:nth-child(2) {
    right: 20%;
    top: 50px;
  }

  /* Brand */
  .brand-heaidng::after {
    display: none;
  }

  .brand-heaidng h3 {
    display: block;
    display: block;
    padding: 0;
    text-align: center;
  }

  .brand-area {
    text-align: center;
  }

  /* Chef Single */

  .chef-single-area .chef-content-top {
    bottom: 0;
    margin: 0;
  }

  .chef-single-area .chef-content-top .thumb {
    margin-bottom: 30px;
  }

  .chef-single-area .chef-content-top .thumb img {
    width: 100%;
  }

  .chef-single-area .chef-content-top .right-info p {
    padding: 0;
  }

  .chef-single-area .right-info > ul li i {
    min-width: 40px;
  }

  .chef-single-area .bottom-info .skill-items {
    padding: 0;
    margin-top: 50px;
  }

  /* Contact */
  .contact-style-one-items {
    position: relative;
  }

  .contact-style-one-items,
  .contact-style-one-items div {
    height: auto;
  }

  .contact-style-one-info {
    background: transparent;
    padding: 0;
    padding-top: 100px;
  }

  .maps-area iframe {
    height: 450px;
  }

  .contact-style-one-info ul {
    margin-top: 40px;
  }

  /* Discount */
  .offer-item-thumb img:nth-child(2) {
    right: auto;
    height: 150px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  .offer-item-thumb {
    text-align: center;
    margin-top: 90px;
  }

  .discount-area {
    text-align: center;
  }

  .discount-area p {
    padding: 0 10%;
  }

  .counter-class .item-list {
    justify-content: center;
  }

  /* Footer */

  .footer-bottom {
    background: var(--dark);
    text-align: center;
  }

  .f-item.newsletter::after {
    display: none;
  }

  .f-item.newsletter {
    padding: 0;
    padding-left: 30px;
  }

  footer.footer-style-one {
    position: relative;
    z-index: 1;
  }

  footer.footer-style-one::after {
    position: absolute;
    left: 50%;
    top: 0;
    content: "";
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }

  .f-item.link {
    padding-left: 30px;
  }

  .f-item.contact {
    padding-right: 30px;
  }

  .footer-style-one {
    padding: 80px 50px;
    padding-top: 30px;
    padding-bottom: 0;
  }

  .footer-style-one .about {
    padding-right: 30px;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 16px;
  }

  ul.footer-social li {
    margin: 0 5px;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .heading {
    margin-top: 0;
    line-height: 1.2;
    font-size: 36px;
  }

  /* Topbar */
  .top-bar-area {
    display: none;
    background: var(--dark) !important;
  }

  .top-bar-area .item-flex {
    justify-content: center;
  }

  .top-bar-area .text-end {
    margin-top: 10px;
    display: none;
  }

  .top-bar-area {
    padding: 20px 0;
  }

  .topbar-two-items .logo {
    display: none;
  }

  .top-bar-style-two {
    padding: 15px 0;
    display: none;
  }

  .topbar-two-items {
    justify-content: center;
  }

  .topbar-two-items .topbar-info {
    margin: 0 25px;
  }

  .sub-heading::before {
    display: none;
  }

  .sub-heading {
    margin-bottom: 20px;
    padding-right: 0;
  }

  .sub-title::before,
  .sub-title::after {
    display: none;
  }

  /* Banner One */
  .banner-style-one h2 {
    font-size: 50px;
  }

  .banner-style-one li {
    display: block;
    width: 100%;
    margin: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 15px;
    font-weight: 500;
  }

  .banner-style-one ul {
    display: block;
  }

  .banner-style-one {
    text-align: center;
  }

  /* Banner Two */
  .banner-style-two h2 {
    font-size: 10vw;
  }

  .banner-style-two h4 {
    font-size: 20px;
  }

  .banner-style-two p {
    padding: 0;
  }

  /* Banner Six */
  .banner-style-six {
    text-align: center;
  }

  .banner-style-six h2 {
    font-size: 50px;
    line-height: 1.2;
  }

  .banner-style-six h4 {
    font-size: 20px;
  }

  .banner-style-six p {
    padding: 0;
    font-size: 17px;
  }

  .banner-style-six .thumb img:nth-child(2) {
    right: auto;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
  }

  .banner-area .thumb {
    padding: 0;
    margin-top: 50px;
  }

  .banner-style-six .thumb {
    padding-top: 90px;
  }

  /* Banner Style Three */
  .banner-style-three-content {
    padding: 80px 0;
  }

  .banner-style-three-content h2 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .banner-style-three-content h4 {
    font-size: 30px;
  }

  .banner-style-three-area {
    height: auto;
  }

  /* Banner Style Four */
  .banner-style-four h4 {
    font-size: 18px;
  }

  .banner-style-four h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .banner-style-four p {
    padding: 0;
    font-size: 17px;
  }

  .banner-style-four {
    text-align: center;
  }

  .banner-style-four .thumb::after {
    display: none;
  }

  .banner-area.banner-style-four p {
    padding: 0;
  }

  .banner-style-four .thumb img:nth-child(2) {
    left: auto;
    right: 5%;
    height: 100px;
    top: -14px;
  }

  /* Banner Five */
  .banner-style-five-area h2 {
    font-size: 12vw;
  }

  .banner-style-five-area .content {
    padding-top: 80px;
  }

  .banner-style-five-area h2 {
    margin-bottom: 50px;
  }

  .banner-style-five-thumb {
    min-height: 400px;
  }

  /* About */
  .thumb-style-one .contact-card-one {
    right: auto;
    left: 0;
  }

  .thumb-style-one {
    margin-bottom: 40px;
  }

  .about-style-one-info .content {
    margin: 0;
    padding: 0;
  }

  .about-style-one-info .content::after {
    display: none;
  }

  /* About Two */
  .thumb-style-two {
    margin-bottom: 30px;
  }

  .about-style-two-info ul.launch-time {
    left: 0;
    margin: 0;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  /* About Three */
  .about-style-three-items {
    top: 0;
    margin: 0;
    margin-top: 60px;
  }

  .about-style-three-content {
    padding: 50px;
  }

  .opening-hours-style-one {
    padding: 50px;
  }

  .about-style-three-content .contact-card-one a {
    justify-content: center;
  }

  /* Feature */
  .feature-one-single:nth-child(odd) .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-style-one-item {
    margin-top: 30px;
  }

  .feature-one-single:first-child .feature-style-one-item {
    margin-top: 0;
  }

  .feature-one-single::before {
    display: none;
  }

  .feature-one-single::after {
    display: none;
  }

  /* Discount */
  .discount-content h2 {
    font-size: 15vw;
  }

  .offer-item-thumb img:nth-child(2) {
    right: auto;
    height: auto;
    max-width: 150px;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
  }

  .offer-item-thumb {
    text-align: center;
    margin-top: 90px;
  }

  .discount-area {
    text-align: center;
  }

  .counter-class .item-list {
    justify-content: center;
  }

  /* Experience */
  .fun-fact-style-one-area::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 19%;
  }

  .fun-fact-style-one-items h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .fun-fact-style-one-content {
    margin-top: 30px;
    padding-top: 0;
  }

  .fun-fact-style-one-area {
    text-align: center;
  }

  .fun-fact-style-one-content .fun-fact {
    margin: 0 20px;
    margin-top: 30px;
  }

  .fun-fact-style-one-area .thumb {
    margin-top: 50px;
  }

  .fun-fact-style-one-content .fun-fact:last-child {
    margin-right: 20px;
  }

  /* Why Choose us */
  .choose-us-style-one-info {
    padding: 50px;
  }

  .choose-us-style-one-content {
    padding: 0;
  }

  /* Video BG */

  .video-bg-content {
    padding: 80px 0;
  }

  .video-bg-area .wavesshape {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    bottom: 0;
  }

  /* Food Category */
  .food-cat-area {
    background-size: 50%;
  }

  /* Service */
  .services-swiper-nav {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    margin-bottom: 30px;
    margin-top: 10px;
  }

  /* Food Menu */

  .food-menu-lists .food-menu-style-one {
    padding: 15px 0;
  }

  .food-menu-lists.colums-4 .food-menu-style-one,
  .food-menu-lists.colums-3 .food-menu-style-one,
  .food-menu-lists.colums-2 .food-menu-style-one {
    width: 100%;
  }

  .mix-item-menu {
    border: none;
  }

  .mix-item-menu button {
    border: 1px solid #cccccc;
    margin: 5px 3px;
  }

  .mix-item-menu button::before {
    display: none;
  }

  /* Food menu Two */
  .food-menu-style-two-thumb {
    padding: 0;
    margin-bottom: 30px;
  }

  .food-menu-style-two-thumb::after {
    display: none;
  }

  .food-menu-style-two-content {
    margin: 0;
  }

  ul.meal-items li .thumbnail {
    display: none;
  }

  ul.meal-items li {
    display: block;
    border-top: 1px solid #cccccc;
    margin-top: 0;
    padding-top: 30px;
  }

  ul.meal-items li .content .bottom {
    display: block;
  }

  ul.meal-items li .content .bottom .right {
    text-align: left;
  }

  ul.meal-items li .content .bottom p {
    margin-top: 5px;
  }

  .food-menu-style-two-content h4.sub-heading {
    margin-bottom: 30px;
  }

  ul.meal-items li .content .top::before {
    display: none;
  }

  ul.meal-items {
    margin-top: 30px;
  }

  ul.meal-items {
    margin-top: 32px;
  }

  .food-menu-style-two {
    margin-top: 60px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb::after {
    top: 50%;
    transform: translateY(-50%);
    left: -50%;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-thumb {
    padding: 0;
  }

  .food-menu-style-two-thumb img {
    max-height: 350px;
  }

  .food-menu-style-two:nth-child(2n) .food-menu-style-two-content {
    margin: 0;
  }

  ul.meal-items li .content .top {
    margin-bottom: 15px;
  }

  /* Food Menu Five */
  .menu-style-five-area::after {
    display: none;
  }

  .food-menu-style-five-items {
    margin-top: 40px;
  }

  /* Feature Product */
  .feature-product-item {
    margin-top: 30px;
  }

  .feature-product-item:first-child {
    margin-top: 0;
  }

  .feature-style-two-area .shape img:first-child {
    top: 0;
  }

  .feature-product-item a {
    padding: 50px 40px;
    text-align: center;
  }

  .feature-product-item a .info {
    padding-right: 0;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .feature-product-item h2 {
    font-size: 36px;
  }

  .feature-product-item:first-child a .thumb {
    max-width: 80%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin-top: 60px;
  }

  .feature-product-item:first-child a .thumb .offer {
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
  }

  .feature-product-item:nth-child(2) .info {
    padding: 0;
  }

  .feature-product-item:nth-child(2) .thumb .offer {
    left: auto;
    right: 0;
    top: -32px;
  }

  .feature-product-item:nth-child(2) a .thumb {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    width: 80%;
  }

  .feature-product-item:nth-child(2) a:last-child .info {
    padding: 0;
  }

  .feature-product-item:nth-child(2) a:last-child .thumb {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin-top: 50px;
  }

  .shape-seperate {
    display: none;
  }

  ul.vt-products {
    margin-bottom: -30px;
  }

  /* Food Offer */
  .offer-style-one .thumb {
    margin-bottom: 70px;
  }

  .offer-style-one .thumb .discount-badge {
    right: auto;
    left: 0;
    bottom: -50px;
    top: auto;
  }

  .offer-style-one .thumb .discount-badge strong {
    font-size: 30px;
  }

  .offer-style-one .thumb .discount-badge {
    font-size: 18px;
    height: 180px;
    width: 180px;
  }

  /* Reservation */
  .reservation-banner img {
    width: 100%;
    position: relative;
    max-height: 350px;
  }

  .reservation-tabs {
    left: 0;
    margin: 0;
    padding: 60px 0;
    display: block;
  }

  .reservation-tabs .nav-tabs {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .reservation-tabs form.reservation-form {
    text-align: left;
    background: var(--bg-gray);
    padding: 50px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .reservation-tabs .nav-tabs .nav-item {
    text-align: center;
  }

  .reservation-tabs .nav-tabs .nav-item button {
    justify-content: center;
    align-items: center;
    margin: auto;
  }

  .reservation-tabs .tab-content {
    text-align: center;
  }

  .reservation-form input,
  .reservation-form input:focus {
    border-color: #cccccc;
  }

  .reservation-form .nice-select {
    border-color: #cccccc;
  }

  /* Testimonial */
  .tm-proivder-thumb img {
    height: 150px;
    width: 150px;
  }

  .tm-proivder-thumb {
    text-align: center;
  }

  .testimonial-style-one .content p {
    font-size: 20px;
  }

  /* Gift Vourcher */
  .discount-info h2 {
    font-size: 30px;
    padding: 15px 50px;
  }

  .discount-info ul li {
    font-size: 17px;
    padding-left: 30px;
  }

  .discount-info ul li::after {
    height: 20px;
    width: 20px;
    font-size: 10px;
  }

  .offer-fun-fact {
    border-radius: 10px;
  }

  .offer-fun-fact .fun-fact {
    display: block;
    margin: 0;
    border: none;
    padding: 20px 10px;
    border-bottom: 1px solid;
  }

  .discount-info {
    padding-bottom: 50px;
  }

  .dicount-thumb img:nth-child(2) {
    right: 5%;
    top: 5%;
  }

  /* Reservation */
  .reservation-thumb .icon {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    top: auto;
  }

  .reservation-thumb > img {
    height: 350px;
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    border-radius: 0;
  }

  .reservation-thumb {
    border: none;
    padding: 0;
  }

  .reservation-style-one-items {
    overflow: hidden;
  }

  .reservation-info {
    padding: 50px 30px;
    margin-top: 50px;
  }

  /* Chef Single */
  .chef-single-area .right-info .social {
    display: block;
  }

  .chef-single-area .right-info .social .share-link {
    margin-top: 30px;
    display: none;
  }

  .chef-single-area .chef-content-top {
    bottom: 0;
    margin: 0;
  }

  .chef-single-area .chef-content-top .thumb {
    margin-bottom: 30px;
  }

  .chef-single-area .chef-content-top .right-info p {
    padding: 0;
  }

  .chef-single-area .right-info > ul li i {
    min-width: 39px;
  }

  .chef-single-list {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }

  .chef-single-area .bottom-info .skill-items {
    padding: 0;
    margin-top: 30px;
  }

  /* Brand */
  .brand-heaidng::after {
    display: none;
  }

  .brand-heaidng h3 {
    display: block;
    display: block;
    padding: 0;
    text-align: center;
  }

  .brand-area {
    text-align: center;
  }

  /* Contact */
  .contact-style-one-items {
    position: relative;
  }

  .contact-style-one-items,
  .contact-style-one-items div {
    height: auto;
  }

  .contact-style-one-info {
    background: transparent;
    padding: 0;
    padding-top: 60px;
  }

  .maps-area iframe {
    height: 350px;
  }

  .contact-style-one-info ul {
    margin-top: 30px;
  }

  .contact-form-style-one {
    padding: 50px;
  }

  /* Footer */
  footer {
    background: var(--dark);
  }

  footer.footer-style-one {
    padding: 0;
    border-radius: 0;
  }

  .f-item.newsletter::after {
    display: none;
  }

  .f-item.newsletter {
    padding: 0;
  }

  .footer-bottom::before,
  .footer-bottom::after {
    display: none;
  }

  .footer-bottom {
    background: transparent;
    text-align: center;
    border-radius: 0;
    margin-top: 50px;
  }

  footer .bg-dark .footer-bottom p {
    color: #cccccc;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 480px) {
}

@media screen and (max-width: 400px) {
  /* About */
  .opening-hours-style-one {
    padding: 50px 30px;
  }

  .about-style-three-content {
    padding: 50px 30px;
  }

  .opening-hours-style-one ul li {
    font-size: 16px;
  }

  /* Menu */
  .menu-type-item {
    padding: 50px 37px;
  }

  .menu-style-five-area::after {
    display: none;
  }

  .food-menu-style-five-items {
    margin-top: 40px;
  }

  .fun-fact-style-two {
    display: block;
    text-align: center;
    justify-content: center;
  }

  .fun-fact-style-two .icon {
    margin: auto auto 20px;
  }

  .fun-fact-style-two .counter {
    justify-content: center;
  }

  .feature-product-item a {
    padding: 50px 30px;
  }

  .contact-form-style-one {
    padding: 50px 30px;
  }
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.restan-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.restan-preloader .animation-preloader {
  z-index: 1000;
  position: relative;
}

.restan-preloader .animation-preloader::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/logo-icon.png);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
}

.restan-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 2px solid rgba(2, 109, 255, 0.3);
  border-top-color: var(--color-primary);
  height: 110px;
  margin: auto;
  width: 110px;
}

.bg-dark .restan-preloader .animation-preloader .spinner {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 1);
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.restan-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.restan-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.restan-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.restan-preloader .loader .row {
  height: 100%;
}

.restan-preloader .loader .loader-section {
  padding: 0px;
}

.restan-preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.bg-dark .restan-preloader .loader .loader-section .bg {
  background-color: var(--dark);
}

.restan-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.restan-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.restan-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@media screen and (max-width: 767px) {
  .restan-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .restan-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
}

/* ============================================================== 
     # Dark Layout CSS 
=================================================================== */
@media only screen and (min-width: 1600px) {
  .bg-dark-secondary .menu-type-area::after {
    background: var(--dark-secondary);
  }
}

.bg-dark-secondary .title {
  color: var(--white);
}

.bg-dark-secondary .fun-fact-style-one-items h2 {
  color: var(--white);
}

.bg-dark-secondary .fun-fact-style-one-content .fun-fact span.medium {
  color: var(--white);
}

.bg-dark-secondary .special-menu-style-one ul li {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one ul li {
  color: var(--color-paragraph);
}

.bg-dark-secondary .special-menu-style-one p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .reservation-tabs .title {
  color: var(--white);
}

.bg-dark-secondary .reservation-form label {
  color: var(--white);
}

.bg-dark-secondary .reservation-form input,
.bg-dark-secondary .reservation-form input:focus {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-secondary .reservation-form .nice-select {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-secondary .reservation-form input::placeholder {
  color: #cccccc;
}

.bg-dark-secondary .reservation-form input::-webkit-input-placeholder {
  color: #cccccc;
}

.bg-dark-secondary .reservation-form input:-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}

.bg-dark-secondary .reservation-form input::-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}

.bg-dark-secondary .reservation-form input:-ms-input-placeholder {
  color: #cccccc;
}

.bg-dark-secondary .site-heading .title {
  color: var(--white);
}

.bg-dark-secondary .blog-area .post-title a {
  color: var(--white);
}

.bg-dark-secondary .blog-area .post-title a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li a {
  color: #cccccc;
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .home-blog-style-one-item .meta-tags li::after {
  background: var(--white);
}

.bg-dark-secondary footer .bg-dark .footer-bottom p {
  color: #cccccc;
}

.bg-dark-secondary .footer-bottom::before {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark-secondary .footer-bottom::after {
  box-shadow: 0 20px 0 0 var(--dark-secondary);
}

.bg-dark-secondary .bg-gray .site-heading .title {
  color: var(--color-heading);
}

.bg-dark-secondary form.reservation-form button::after {
  background: var(--white);
}

.bg-dark-secondary form.reservation-form button:hover {
  color: var(--color-heading);
}

.bg-dark-secondary .feature-style-one-item {
  background: var(--dark);
}

.bg-dark-secondary .feature-one-single::before {
  background: #7a7e84;
  border-color: var(--dark-secondary);
}

.bg-dark-secondary .feature-one-single::after {
  background: #42464d;
}

.bg-dark-secondary .feature-style-one-item h4 {
  color: var(--white);
}

.bg-dark-secondary .menu-style-five-area::after {
  background: #2b4356;
}

.bg-dark-secondary .fun-fact-style-two span.medium {
  color: var(--white);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top h4 {
  background: var(--dark);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top h4 a {
  color: var(--white);
}

.bg-dark-secondary .bg-cover ul.meal-items li .content .top .price {
  background: var(--dark);
}

.bg-dark-secondary .bg-cover .tab-content ul.meal-items li .content .top h4,
.bg-dark-secondary
  .bg-cover
  .tab-content
  ul.meal-items
  li
  .content
  .top
  .price {
  background: var(--dark-secondary);
}

.bg-dark-secondary .shape-seperate img {
  opacity: 0.2;
}

.bg-dark-secondary .product .product-contents {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    var(--dark) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .shop-action li a::after {
  background: var(--white);
  color: var(--color-heading);
}

.bg-dark-secondary .product-tags a {
  color: #dedede;
}

.bg-dark-secondary .product-tags a:hover {
  color: var(--white);
}

.bg-dark-secondary .vt-products .product .product-contents .product-title a {
  color: var(--white);
}

.bg-dark-secondary .vt-products .product .product-caption .price span {
  color: var(--white);
}

.bg-dark-secondary .price del {
  color: #d3cece;
}

.bg-dark-secondary .testimonial-style-one .content p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .bg-dark .testimonial-style-one .content p {
  color: #cccccc;
}

.bg-dark-secondary .discount-info ul li::after {
  background: #494949;
}

.bg-dark-secondary .side .widget p {
  color: var(--color-paragraph);
}

.bg-dark-secondary .side .widget.address ul li strong {
  color: var(--color-paragraph);
}

.bg-dark-secondary .navbar .side .widget h4 {
  color: var(--color-heading);
}

.bg-dark-secondary .banner-style-six h2 {
  color: var(--white);
}

.bg-dark-secondary .banner-style-six h4 {
  color: var(--white);
}

.bg-dark-secondary
  .banner-area.banner-style-six.navigation-dark
  .swiper-button-prev::after,
.bg-dark-secondary
  .banner-area.banner-style-six.navigation-dark
  .swiper-button-next::after {
  color: var(--white);
}

.bg-dark ul.meal-items li .content .top h4,
.bg-dark-secondary .bg-dark ul.meal-items li .content .top h4 {
  background: var(--dark);
}

.bg-dark ul.meal-items li .content .top h4 a {
  color: var(--white);
}

.bg-dark ul.meal-items li .content .top h4 a:hover {
  color: var(--color-primary);
}

.bg-dark ul.meal-items li .content .top .price,
.bg-dark-secondary .bg-dark ul.meal-items li .content .top .price {
  background: var(--dark);
  color: var(--white);
}

.bg-dark .food-menu-style-two-thumb img {
  border-color: #4e5154;
}

.bg-dark-secondary .bg-gray {
  background-color: var(--dark);
}

.bg-dark-secondary .food-cat-area.bg-gray .site-heading .title {
  color: var(--white);
}

.bg-dark-secondary .choose-us-style-one-items {
  background: var(--dark-secondary);
}

.bg-dark-secondary .choose-us-style-one-item {
  background: var(--color-primary);
}

.bg-dark-secondary .fun-fact-style-one img {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary ul.list-style-one li::after {
  filter: brightness(0) invert(1);
}

.bg-dark-secondary .choose-us-style-one-items .btn.btn-dark {
  background: var(--white);
  color: var(--color-heading);
}

.bg-dark-secondary .choose-us-style-one-items .btn.btn-dark:hover {
  color: var(--white);
}

.bg-dark-secondary .mix-item-menu {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .mix-item-menu button {
  color: var(--white);
}

.bg-dark-secondary .food-menu-style-one .item {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.bg-dark-secondary .food-menu-style-one .item .info h4 a {
  color: var(--white);
}

.bg-dark-secondary .food-menu-style-one .item .info h4 a:hover {
  color: var(--color-primary);
}

.bg-dark-secondary .food-menu-style-one .item .food-cats {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .food-menu-style-one .item .item-price {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark-secondary .food-menu-style-one .item .item-price h5 {
  color: var(--white);
}

.bg-dark-secondary .chef-style-one-item .info h4 a {
  color: var(--white);
}

.bg-dark-secondary .chef-style-one-item .info h4 a:hover {
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark {
    border-color: rgba(255, 255, 255, 0.215);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    ul.nav
    > li
    > a {
    color: var(--white);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    .attr-nav
    .side-menu
    span {
    background: var(--white);
  }

  .bg-dark-secondary
    nav.navbar.validnavs.navbar-fixed.no-background.nav-border.dark
    .attr-right
    .attr-nav
    li.search
    a {
    color: var(--white);
  }
}

@media only screen and (max-width: 767px) {
  .bg-dark-secondary .reservation-tabs form.reservation-form {
    background: #454b4f;
  }

  .bg-dark-secondary .footer-bottom {
    background: transparent;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-dark-secondary .reservation-tabs form.reservation-form {
    background: #454b4f;
  }
}

/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}





/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: #ffffff !important;
    background: #8a082c !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular) format('svg')
}




.cbp-spmenu {
    background: #dfdfdf;
    position: fixed
}

.cbp-spmenu h3 {
    color: #fff;
    font-size: 1.9em;
    padding: 20px;
    margin: 0;
    font-weight: 300;
    background: #000000;
}

.cbp-spmenu a {
    display: block;
    color: #fff;
    font-size: 1.1em;
    font-weight: 300
}

.cbp-spmenu a:hover {
    background: #000000;
}

.cbp-spmenu a:active {
    background: #333;
    color: #fff
}

.cbp-spmenu-vertical {
    width: 240px;
    height: 100%;
    top: 0;
    z-index: 1000
}

.cbp-spmenu-vertical a {
    border-bottom: 1px solid #ccc;
    padding: 1em
}

.cbp-spmenu-horizontal {
    width: 100%;
    height: 150px;
    left: 0;
    z-index: 1000;
    overflow: hidden
}

.cbp-spmenu-horizontal h3 {
    height: 100%;
    width: 20%;
    float: left
}

.cbp-spmenu-horizontal a {
    float: left;
    width: 20%;
    padding: .8em;
    border-left: 1px solid #258ecd
}

.cbp-spmenu-left {
    left: -240px
}

.cbp-spmenu-right {
    right: -240px
}

.cbp-spmenu-left.cbp-spmenu-open {
    left: 0
}

.cbp-spmenu-right.cbp-spmenu-open {
    right: 0
}

.cbp-spmenu-top {
    top: -150px
}

.cbp-spmenu-bottom {
    bottom: -150px
}

.cbp-spmenu-top.cbp-spmenu-open {
    top: 0
}

.cbp-spmenu-bottom.cbp-spmenu-open {
    bottom: 0
}

.cbp-spmenu-push {
    overflow-x: hidden;
    position: relative;
    left: 0
}

.cbp-spmenu-push-toright {
    left: 240px
}

.cbp-spmenu-push-toleft {
    left: -240px
}

.cbp-spmenu,.cbp-spmenu-push {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (max-width: 55.1875em) {
    .cbp-spmenu-horizontal {
        font-size:75%;
        height: 110px
    }

    .cbp-spmenu-top {
        top: -110px
    }

    .cbp-spmenu-bottom {
        bottom: -110px
    }
}

@media screen and (max-height: 26.375em) {
    .cbp-spmenu-vertical {
        font-size:90%;
        width: 190px
    }

    .cbp-spmenu-left,.cbp-spmenu-push-toleft {
        left: -190px
    }

    .cbp-spmenu-right {
        right: -190px
    }

    .cbp-spmenu-push-toright {
        left: 190px
    }
}


#showLeftPush {
    display: block;
    height: 30px;
    position: absolute;
    left: 8px;
    top: 18px;
    width: 40px;
    z-index: 2;
    background: 0 0;
    border: 0;
    cursor: pointer
}

#showLeftPush span,#showLeftPush:after,#showLeftPush:before {
    background: #000;
    content: "";
    display: block;
    height: 4px;
    left: 7px;
    position: absolute;
    width: 30px
}

#showLeftPush:before {
    top: 8px
}

#showLeftPush:after {
    top: 24px
}

#showLeftPush span {
    top: 16px
}

#showLeftPush.active:before {
    transform: rotate(45deg)
}

#showLeftPush.active:after,#showLeftPush.active:before {
    top: 10px
}

#showLeftPush.active:after {
    transform: rotate(-45deg)
}

#showLeftPush.active span {
    opacity: 0
}

.navbar {
    display: none
}

#ommenu a,#ommenu li,#ommenu span,#ommenu ul {
    margin: 0;
    padding: 0;
    position: relative
}

#ommenu {
    width: auto
}

#ommenu a {
    color: #fff;
    text-transform: normal;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    line-height: 32px;
    border-bottom: 2px solid #ccc;
    display: block;
    padding: 10px
}

#ommenu ul {
    list-style: none
}

#ommenu>ul>li {
    display: block;
    margin: 0
}

#ommenu.align-center {
    text-align: center
}

#ommenu.align-center>ul>li {
    float: none
}

#ommenu.align-center ul ul {
    text-align: left
}

#ommenu.align-right>ul {
    float: right
}

#ommenu.align-right ul ul {
    text-align: right
}

#ommenu>ul>li>a {
    color: #fff;
    font-size: 15px
}

a.nav-link {}

#ommenu .has-sub:hover>ul {
    display: block;
    z-index: 20
}

#ommenu .has-sub ul {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #222
}

#ommenu .has-sub ul li a {
    background: #fff;
    border-bottom: 2px solid #080808;
    font-size: 15px;
    display: block;
    line-height: 120%;
    padding: 12px;
    color: #000
}

#ommenu .has-sub ul li:hover a {
    background: #222;
    color: #fff
}

#ommenu ul ul li:hover>a {
    color: #000
}

#ommenu .has-sub .has-sub:hover>ul {
    display: block
}

#ommenu .has-sub .has-sub ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0
}

#ommenu .has-sub .has-sub ul li a {
    background: #0c7fb0;
    border-bottom: 1px dotted #31b7f1
}

#ommenu .has-sub .has-sub ul li a:hover {
    background: #0a6d98
}

body.cbp-spmenu-push-toleft {
    left: 240px
}

@media screen and (min-width: 768px) {
    #showLeftPush {
        display:none
    }

    .navbar {
        display: block
    }

    .navbar-inverse {
        background: 0 0;
        margin-top: 9px;
        margin-bottom: 0;
        border: 0;
        z-index: 1;
        min-height: auto;
        text-transform: none;
        border-radius: 0
    }

    #ommenu a {
        border-bottom: none;
        padding: 0 10px;
        font-weight: 400;
        line-height: 102px;
        text-transform: normal
    }

    #ommenu ul {
        display: table;
        margin: 0 auto
    }

    #ommenu ul ul {
        display: block
    }

    #ommenu .has-sub ul li a {
        background: #000;
        color: #fff;
        border-bottom-color: #222
    }

    #ommenu>ul>li>a {
        color: #000;
        font-size: 18px;
        font-weight: 500;
        position: relative
    }

    #ommenu ul:after,#ommenu:after {
        content: '';
        display: block;
        clear: both
    }

    #ommenu>ul>li:hover:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        left: 50%;
        bottom: 0
    }

    #ommenu>ul>li:first-child>a {
        border-radius: 5px 0 0;
        -moz-border-radius: 5px 0 0;
        -webkit-border-radius: 5px 0 0
    }

    #ommenu.align-center>ul>li:first-child>a,#ommenu.align-right>ul>li:first-child>a {
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0
    }

    #ommenu.align-right>ul>li:last-child>a {
        border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0
    }

    #ommenu>ul>li.active>a {
        color: #688005;
        border-bottom-color: #688005;
        border-radius: 0
    }

    #ommenu>ul>li:hover>a {
        color: #264896;
        border-bottom-color: #264896;
        border-radius: 0
    }

    #ommenu .has-sub {
        z-index: 10
    }

    #ommenu.align-right .has-sub ul {
        left: auto;
        right: 0
    }

    #ommenu .has-sub ul li {
        *margin-bottom: -1px;
        background: #222
    }

    #ommenu.align-right .has-sub .has-sub ul,#ommenu.align-right ul ul ul {
        left: auto;
        right: 100%
    }

    #ommenu .has-sub ul li.last>a,#ommenu .has-sub ul li:last-child>a,#ommenu ul ul li.last>a,#ommenu ul ul li:last-child>a,#ommenu ul ul ul li.last>a,#ommenu ul ul ul li:last-child>a {
        border-bottom: 0
    }

    #ommenu>ul>li {
        display: inline-block;
        float: left;
        margin: 0
    }

    #ommenu .has-sub ul {
        width: 250px
    }
}

@media screen and (min-width: 992px) {
    #ommenu>ul>li>a {
        font-size:16px
    }

    #ommenu .has-sub ul li a {
        font-size: 14px
    }

    #ommenu a {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 992px) {
    #ommenu>ul>li>a {
        font-size:20px
    }
}



.button,.om-btn-wrapper a,.view-menu-btn {
    background: #f60207;
    color: #fff!important;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    border: none;
    margin: 15px auto 0;
    padding: 10px 15px;
    position: relative;
    text-align: center;
    text-transform: normal;
    transition: all .2s ease-in-out 0s;
    min-width: 160px;
    text-decoration: none
}

.button:hover,.om-btn-wrapper a:hover,.view-menu-btn:hover {
    background: #ff8343;
    color: #fff!important;
}

.button.red-btn,.om-btn-wrapper a.red-btn,.view-menu-btn.red-btn {
    background: #688005;
    font-weight: 700;
    color: #fff!important
}

.button.red-btn:hover,.om-btn-wrapper a.red-btn:hover,.view-menu-btn.red-btn:hover {
    background: #404f03
}

.button a,.om-btn-wrapper a a,.view-menu-btn a {
    color: #fff
}

.button a:hover,.om-btn-wrapper a a:hover,.view-menu-btn a:hover {
    color: #000
}

.button.book-btn,.om-btn-wrapper a.book-btn,.view-menu-btn.book-btn {
    width: 50%
}

.order-online a {
    background: #febe0d;
    :;
    display: block;
    font-size: 16px;
    border: none;
    margin: 15px auto 0;
    padding: 8px 15px;
    position: relative;
    text-align: center;
    transition: all .2s ease-in-out 0s;
    min-width: 160px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    color: #21411c;
}

.order-online a:hover {
    background: #546704;
    color: #fff!important
}
div#logo img {
    width: 55%;
}
.slider-container .om-btn-wrapper a,.slider-container .view-menu-btn {
    font-size: 22px;
    background: #688005
}

.om-welcome {
    background: #efefef
}

body.black-page {
    background: #fff;
    color: #000
}

#header {
    background: #21411c;
    width: 100%;
    padding: 14px
}

#header .container {
    position: relative;
    color: #fff;
    padding: 0
}

#header .container #logo {
    margin: 0 auto;
    width: 120px
}

#header .container #logo a {
    display: block
}

#header .container .order-online ul {
    padding: 0;
    margin: 0
}

#header .container .order-online ul li {
    display: block
}

#header .left-nav,#header .right-nav,.header-top .address,.header-top .oo-top {
    display: none
}





@media screen and (min-width: 700px) {
    #header,#header .container {
        padding:0
    }

    #header .container #logo {
        width: 140px;
        float: left;
        margin: 0;
        padding: 14px 0 14px 14px
    }

    #header .container #logo a {
        padding: 0
    }

    #header .container .navbar {
        float: right;
        padding: 0;
        margin-top: 0;
        margin-right: 175px
    }

    #header .container .navbar .navbar-collapse {
        display: block
    }

    #header .container .order-online {
        right: 0;
        top: 15px;
        position: absolute;
        margin: 0;
        padding: 0
    }

    #header .left-nav,#header .right-nav {
        display: block
    }

    #header .left-nav .nav ul,#header .right-nav .nav ul {
        list-style: none;
        margin: 0;
        padding: 0
    }

    #header .left-nav .nav ul li,#header .right-nav .nav ul li {
        display: inline-block
    }

    #header .left-nav .nav ul li a,#header .right-nav .nav ul li a {
        display: block;
        padding: 0 10px;
        font-size: 15px;
        font-weight: 700;
        line-height: 50px;
        color: #000
    }

    #header .left-nav .nav ul li a:hover,#header .right-nav .nav ul li a:hover {
        color: #ed1c24
    }

    #header .left-nav {
        float: left;
        margin-left: 70px
    }

    #header .right-nav {
        float: right
    }

    .contact-wrapper {
        padding-right: 80px
    }
}

@media screen and (min-width: 768px) {
    .m-visible {
        display:none!important
    }

    .d-visible {
        display: block!important
    }

    #header .container .navbar-collapse {
        padding: 0
    }
}

@media screen and (min-width: 980px) {
    #header .container #logo {
        width:158px;
        padding: 5px 0 0
    }

    #header .container .top-right .order-online {
        right: 80px;
        top: 52px
    }

    #header .container .navbar {
        margin-right: 265px;
        margin-top: 25px
    }

    section.about-us {
        padding: 40px;
        text-align: center
    }

    .menu-wrapper h2 {
        font-size: 32px
    }

    .menu-wrapper h3 {
        font-size: 30px
    }

    .menu-wrapper p {
        font-size: 20px
    }

    .menu-wrapper p.m-heading {
        font-size: 28px
    }
}

@media screen and (min-width: 992px) {
    .h1,h1 {
        font-size:32px
    }

    .h2,h2 {
        font-size: 28px
    }

    #header {
        position: static
    }

    #header .container,#header .container .navbar-inverse .navbar-collapse.collapse {
        padding: 0
    }

    .main-container h1 {
        margin-bottom: 65px
    }
}

@media screen and (min-width: 1180px) {
    #header .container .top-right .social-icon-list {
        margin-left:50px
    }

    .menu-items .menu-item {
        margin-bottom: 0
    }

    .header-top .oo-top {
        top: 12px
    }

    .header-top .oo-top a {
        font-size: 23px;
        padding-left: 10px;
        padding-right: 10px
    }

    .main-container {
        padding: 40px
    }
}

@media screen and (min-width: 1200px) {
    .menu-items .menu-item .desc {
        min-height:130px
    }

    .container {
        max-width: 1080px
    }
}

.jssor-slide-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0,0,0,.7)
}

.jssorl-009-spin img {
    animation-name: jssorl009-spin;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes jssorl-009-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.jssora051 {
    display: block;
    position: absolute;
    cursor: pointer
}

.jssora051 .a {
    fill: none;
    stroke: #fff;
    stroke-width: 360;
    stroke-miterlimit: 10
}

.jssora051:hover {
    opacity: .8
}

.jssora051.jssora051dn {
    opacity: .5
}

.jssora051.jssora051ds {
    opacity: .3;
    pointer-events: none
}

#header .container:after,.header-right-bottom:after,.header-right-top:after,.menu-items:after,.order-online-btns ul:after,.social-icon-list ul:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden
}

#header {
    padding-top: 0;
}

#header .container #logo {
    width: 160px;
    margin: 0px auto 10px auto;
    padding: 15px 0 0 0;
    text-align: center;
}

#header .container #logo h1 {
    font-size: 20px;
    line-height: 50px;
    font-weight: bold;
    color: #033e4b;
}

a, .home-text h1, .box-section h2, h2 {
    color: #033e4b;
}



#showLeftPush span, #showLeftPush::after, #showLeftPush::before {
    background: #febe0d;
}

#ommenu > ul > li > a {
    color: #000;
}

#ommenu > ul > li:hover > a {
    color: #ffffff;
}




@media screen and (min-width: 768px) {
    #ommenu > ul > li.active > a, #ommenu > ul > li:hover > a:hover {
        color: #febe0d;
    }

    #ommenu > ul > li > a {
        color: #ffffff;
        text-transform: uppercase;
    }

   

    #header {
    }

    .menu-category .menu-category-wrapper {
        max-width: 1480px;
        margin: 0 auto;
        background: #fff
    }

    .menu-category .menu-category-wrapper .menu-items-wrapper {
        display: flex;
        margin: 0 -15px
    }

    .menu-category .menu-category-wrapper .menu-item {
        flex: 1;
        padding: 0 15px
    }

    .menu-category .menu-category-wrapper .menu-title {
        top: auto;
        bottom: -25px
    }

    #header .container #logo {
        margin: 0px auto 0px auto;
        width: 105px;
        z-index: 50;
    }

    #ommenu a {
        line-height: 60px;
    }

    #header .container .navbar {
        margin-top: 16px;
    }

    #header .container .order-online {
        top: 5px;
    }
}

@media screen and (min-width: 980px) {
    #header .container {
        display: flex;
        align-items: center;
    }

    #header .container .navbar {
        margin-top: 0px;
    }

    .order-online a {
        margin-top: 0;
    }

    #header .container .top-right {
        flex: 1;
    }

    #header .container #logo {
        padding-top: 0;
    }

    #header .container .top-right .order-online {
        top: 9px;
    }
}

@media screen and (min-width: 1200px) {
    #header {
        padding:10px;
        background: #21411c;
    }

    #header .container #logo {
        width: 180px;
    }

    #header .container .top-right .order-online {
        top: 29px;
    }
}

@media screen and (min-width: 1500px) {
    .container {
        max-width: 1280px;
    }
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 29, 35, .8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 75px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.Review-button {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.modal-body { 
  h1 { 
    font-weight:900; 
    font-size:2.3em;
    text-transform:uppercase;
  }
  
  a.pre-order-btn { 
    color:#000;
    background-color:gold;
    border-radius:1em;
    padding:1em;
    display: block;
    margin: 2em auto;
    width:50%;
    font-size:1.25em;
    font-weight:6600;
    &:hover { 
    background-color:#000;
      text-decoration:none;
      color:gold;
    }
  }
  
  
}

