@charset "UTF-8";
/* ---------------------------------------------------------
    * Name: 
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

    * section

    * dashboard

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
:root {
  --Primary:#E3D6B4;
  --Secondary:#8E4F29;
  --bg-main: #0f0e0f;
  --bg-2: #141314;
  --bg-3: #181818;
  --bg-input: #2e2d2e;
  --bg-input-2: rgba(255,255,255,0.13);
  --Black: #111111;
  --White: #ffffff;
  --Border: rgba(255,255,255,0.13);
  --Border-2: rgba(198,172,131,0.13);
  --Border-3: rgba(198,172,131,0.2);
  --Border-4: rgba(198,172,131,0.35);
  --Border-5: rgba(198,172,131,0.15);
  --color-text: #848484;
  --color-text-2: #9e9e9e;
  --color-text-3: #cfcfcf;
  --color-text-4: #b3b3b3;
  --color-text-5: #d0d0d0;
  --color-text-6: #727272;
  --color-icon: #e0e6e2;
}

/*---------- Reset css styles ----------- */
/* Reset Browsers
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  margin-right: 0 !important;
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: var(--bg-main);
  line-height: 1;
  padding: 0 !important;
}
body::-webkit-scrollbar {
  width: 0px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: none;
}

a img {
  border: 0;
}

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

select {
  max-width: 100%;
}

/* General
-------------------------------------------------------------- */
body,
button,
input,
select,
textarea {
  font-family: "CerebriSans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: auto;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

p {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
}

strong,
b,
cite {
  font-weight: bold;
}

dfn,
cite,
em,
i,
blockquote {
  font-style: italic;
}

abbr,
acronym {
  border-bottom: 1px dotted #e0e0e0;
  cursor: help;
}

.btn-link:focus,
.btn-link:hover,
mark,
ins {
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

address {
  font-style: italic;
  margin: 0 0 20px;
}

code,
kbd,
tt,
var,
samp,
pre {
  margin: 20px 0;
  padding: 4px 12px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  overflow-x: auto;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  border-radius: 0;
  height: auto;
}

svg,
svg path {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Elements
-------------------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

hr {
  margin-bottom: 20px;
  border: dashed 1px #ccc;
}

/* List */
ul,
ol {
  padding: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

li {
  list-style: none;
}

ul li,
ol li {
  padding: 0;
}

dl,
dd {
  margin: 0 0 20px;
}

dt {
  font-weight: bold;
}

del,
.disable {
  text-decoration: line-through;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Table */
table,
th,
td {
  border: 1px solid #343444;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: 0 0 30px;
  table-layout: fixed;
  width: 100%;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

th {
  border-width: 0 1px 1px 0;
  font-weight: bold;
}

td {
  border-width: 0 1px 1px 0;
}

th,
td {
  padding: 8px 12px;
}

/* Media */
embed,
object,
video {
  margin-bottom: 20px;
  max-width: 100%;
  vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
  margin-bottom: 0;
}

/* Forms
-------------------------------------------------------------- */
/* Fixes */
button,
input {
  line-height: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  line-height: inherit;
  margin: 0;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
}

input[type=checkbox] {
  display: inline;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  vertical-align: sub;
  /* Addresses excess padding in IE8/9 */
}

input[type=search] {
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
}

input[type=search]::-webkit-search-decoration {
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove chrome yellow autofill */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;
}

/* Reset search styling */
input[type=search] {
  outline: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/* Placeholder color */
::-webkit-input-placeholder {
  color: #171412;
}

::-moz-placeholder {
  color: #171412;
  opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
  color: #171412;
}

/* Typography
-------------------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "CerebriSans", sans-serif;
  color: var(--Primary);
  margin: 0;
  text-rendering: optimizeLegibility;
}

h1,
.h1 {
  font-size: 75px;
  line-height: 90px;
}

h2,
.h2 {
  font-size: 40px !important;
  line-height: 60px !important;
}

h3,
.h3 {
  font-size: 30px;
  line-height: 60px;
}

h4,
.h4 {
  font-size: 25px;
  line-height: 43px;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 30px;
}

h6,
.h6 {
  font-size: 16px;
  line-height: 28px;
}

/* link style
-------------------------------------------------------------- */
a {
  text-decoration: none;
  color: var(--Primary);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: var(--Secondary);
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* tf-container
-------------------------------------------------------------- */
.tf-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 1200px;
  max-width: 100%;
}
.tf-container .row {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.tf-container .row > * {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.tf-container.full {
  width: 100%;
}
.tf-container.w-1495 {
  width: 1495px;
}
.tf-container.w-1850 {
  width: 1850px;
}

/* Extra classes
-------------------------------------------------------------- */
#wrapper {
  width: 100vw;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed !important;
}

.position-unset {
  position: unset !important;
}

.z-5 {
  z-index: 5;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.justify-center {
  justify-content: center !important;
}

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

.left-11 {
  left: 11%;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-34 {
  padding-bottom: 34px !important;
}

.pb-43 {
  padding-bottom: 43px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-11 {
  padding-bottom: 11px !important;
}

.pb-39 {
  padding-bottom: 39px !important;
}

.pb-46 {
  padding-bottom: 46px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-28 {
  padding-bottom: 28px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-48 {
  gap: 48px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml--3 {
  margin-left: -3px !important;
}

.pb-49 {
  padding-bottom: 49px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

/*------------ Components ---------------- */
/*------------ header ---------------- */
.header {
  position: absolute;
  z-index: 999;
  width: 100%;
}

.top-bar .top-bar-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--Border);
  gap: 10px;
  max-width: 1465px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.top-bar .top-bar-inner i {
  padding-right: 9px;
}
.top-bar .top-bar-inner span,
.top-bar .top-bar-inner a {
  line-height: 16px;
  color: var(--White);
  font-weight: 300;
  letter-spacing: 0.15px;
}
.top-bar .top-bar-inner .top-bar-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-innner-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1465px;
  margin-left: auto;
  margin-right: auto;
}
.header-innner-wrap .header-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 56px;
}
.header-innner-wrap .header-right .header-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-innner-wrap .header-right .header-icon i {
  font-size: 30px;
  line-height: 35px;
  color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.header-innner-wrap .header-right .header-icon i:hover {
  color: var(--Primary);
}
.header-innner-wrap .header-right .header-icon .line {
  width: 1px;
  height: 80%;
  background-color: var(--Border);
  transform: rotate(160deg);
}

.site-logo {
  position: absolute;
  top: 31px;
  left: 53px;
}

.menu-primary-menu {
  display: flex;
  gap: 39px;
}
.menu-primary-menu .menu-item a {
  line-height: 100px;
}
.menu-primary-menu > li {
  position: relative;
}
.menu-primary-menu > li a {
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 45px;
  position: relative;
  color: var(--White);
  font-family: "Marcellus";
}
.menu-primary-menu > li a::after {
  position: absolute;
  content: "";
  top: -40px;
  left: auto;
  right: 0;
  width: 0;
  height: 3px;
  background-color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-primary-menu > li a:focus, .menu-primary-menu > li a:hover {
  color: var(--Primary);
}
.menu-primary-menu > li a:focus::after, .menu-primary-menu > li a:hover::after {
  width: 100%;
  right: 0px;
  left: auto;
}

.menu-primary-menu li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sub-menu {
  position: absolute;
  background-color: var(--White);
  min-width: 220px;
  left: 0%;
  top: 110%;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}
.sub-menu li {
  padding: 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.sub-menu li a {
  line-height: 28px !important;
  color: var(--Black);
}
.sub-menu li a::after {
  display: none;
}

/* Mobile Menu Button */
.mobile-button {
  display: none;
  width: 26px;
  top: 61%;
  right: 15px;
  background-color: transparent;
  cursor: pointer;
  margin-right: 9px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
.mobile-button::after, .mobile-button::before,
.mobile-button span {
  background-color: var(--White);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.mobile-button::after, .mobile-button::before {
  content: "";
  position: absolute;
  top: 0;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.mobile-button span {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  overflow: hidden;
  text-indent: 200%;
}
.mobile-button::before {
  -webkit-transform: translate3d(0, -7px, 0);
  -moz-transform: translate3d(0, -7px, 0);
  transform: translate3d(0, -7px, 0);
}
.mobile-button::after {
  -webkit-transform: translate3d(0, 7px, 0);
  -moz-transform: translate3d(0, 7px, 0);
  transform: translate3d(0, 7px, 0);
}

/* mobile header */
.mobile-nav-wrap .overlay-mobile-nav {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-nav-wrap.active .overlay-mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-wrap.active .overlay-mobile-nav i {
  font-size: 25px;
  margin-right: 20px;
  color: var(--White);
}
.mobile-nav-wrap.active .inner-mobile-nav {
  left: 0px;
}
.mobile-nav-wrap .inner-mobile-nav {
  padding: 20px;
  width: 320px;
  height: 100%;
  top: 0;
  left: -100%;
  position: fixed;
  background-color: var(--Secondary);
  z-index: 999999;
  overflow-y: auto;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mobile-nav-wrap .inner-mobile-nav .mobile-nav-close {
  padding: 10px;
  border-radius: 50%;
}
.mobile-nav-wrap .inner-mobile-nav .top-header-mobi {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.mobile-nav-wrap .inner-mobile-nav .top-header-mobi a img {
  max-width: 162px;
}
.mobile-nav-wrap .inner-mobile-nav a {
  color: var(--White);
}

#menu-mobile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0px;
}
#menu-mobile > li {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
  cursor: pointer;
  text-transform: capitalize;
}
#menu-mobile > li:first-child {
  border-top: none;
}
#menu-mobile > li .sub-menu-mobile li:last-child {
  border: none;
}
#menu-mobile > li .sub-menu-mobile {
  border-radius: 8px;
  display: none;
  text-align: start;
  overflow: hidden;
}
#menu-mobile > li .sub-menu-mobile li {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
#menu-mobile li a {
  font-family: "CormorantInfant", serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
#menu-mobile li.menu-item-has-children-mobile > a::after {
  content: "\e921";
  position: absolute;
  font-family: "icomoon";
  font-weight: 300;
  position: absolute;
  font-size: 20px;
  right: 0;
  top: 17px;
  line-height: 16px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#menu-mobile li.active a::after {
  transform: rotate(-180deg);
}

.current-menu-item > a::after {
  width: 100% !important;
  right: 0px !important;
  left: auto !important;
}

.current-item > a {
  color: var(--Primary) !important;
}

#header_main.is-fixed .header-inner {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: -100px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  margin: 0 !important;
  min-height: 75px;
  background-color: var(--Secondary);
}
#header_main.is-fixed .header-inner .top-bar {
  display: none;
}
#header_main.is-fixed .header-inner .site-logo {
  top: 7px;
  left: 27px;
}
#header_main.is-fixed .header-inner .site-logo img {
  width: 70%;
}
#header_main.is-fixed .header-inner .header-innner-wrap {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 100vw;
}
#header_main.is-fixed.is-fixed.is-small .header-inner {
  opacity: 1;
  visibility: visible;
  top: -1px;
}
#header_main.is-fixed.is-fixed.is-small .header-inner .header-innner-wrap {
  padding: 0 20px 0 150px;
}
#header_main.is-fixed.is-fixed.is-small .header-inner .header-innner-wrap .mobile-button {
  top: 50% !important;
}

/*------------ footer ---------------- */
.footer {
  background-color: var(--bg-2);
}

.footer-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 71px 0 18px;
  border-bottom: 1px solid var(--Border-2);
}
.footer-top .title-footer h2 a {
  font-family: "Marcellus";
}
.footer-top .title-footer h2 a:hover {
  color: var(--Primary);
}
.footer-top .social-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0 10px;
}
.footer-top .social-list .social-item {
  position: relative;
}
.footer-top .social-list .social-item a {
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: 1.8px;
}
.footer-top .social-list .social-item a:hover {
  color: var(--White);
}
.footer-top .social-list .social-item.fb::before {
  content: "\e904";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "icomoon";
  top: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--Primary);
}
.footer-top .social-list .social-item.tw::before {
  content: "\ea96";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "icomoon";
  top: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--Primary);
}
.footer-top .social-list .social-item.yt::before {
  content: "\e907";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "icomoon";
  top: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--Primary);
}
.footer-top .social-list .social-item.int::before {
  content: "\ea92";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "icomoon";
  top: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--Primary);
}
.footer-top .social-list .social-item:hover::before {
  opacity: 1;
  visibility: visible;
  top: -10px;
}

.footer-middel {
  padding: 55px 0 86px;
  border-bottom: 1px solid var(--Border-2);
}
.footer-middel .footer-menu-list .title {
  font-family: "Marcellus";
  padding-bottom: 10px;
  color: var(--White);
  letter-spacing: 0.8px;
}
.footer-middel .footer-menu-list ul {
  padding-bottom: 27px;
}
.footer-middel .footer-menu-list ul li {
  color: var(--White);
  font-weight: 300;
  line-height: 28px;
}
.footer-middel .footer-menu-list .text {
  color: var(--White);
  line-height: 28px;
  padding-bottom: 27px;
}

.footer-bottom {
  padding: 30px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: var(--White);
  font-weight: 300;
  line-height: 27px;
}
.footer-bottom .footer-bottom-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-bottom .footer-bottom-list .item a {
  color: var(--color-text);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.footer-bottom .footer-bottom-list .item:hover a {
  color: var(--White);
}

/*------------ tabs ---------------- */
.widget-tabs.style-small .widget-menu-tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 69px;
  border-bottom: 1px solid var(--Border-2);
}
.widget-tabs.style-small .widget-menu-tab .item-title {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  padding-bottom: 29px;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  color: var(--White);
  text-transform: capitalize;
  font-family: "Marcellus";
}
.widget-tabs.style-small .widget-menu-tab .item-title::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: auto;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget-tabs.style-small .widget-menu-tab .item-title.active, .widget-tabs.style-small .widget-menu-tab .item-title:hover {
  color: var(--White);
}
.widget-tabs.style-small .widget-menu-tab .item-title.active::after, .widget-tabs.style-small .widget-menu-tab .item-title:hover::after {
  width: 100%;
  left: 0px;
  right: auto;
}
.widget-tabs.style-small .widget-menu-tab.style-2 {
  justify-content: start;
  gap: 72px;
}
.widget-tabs.style-small .widget-menu-tab.style-2 .item-title {
  font-size: 25px;
  line-height: 60px;
  padding-bottom: 9px;
  letter-spacing: 0.5px;
}
.widget-tabs.style-small .widget-content-tab {
  padding-top: 35px;
}
.widget-tabs.style-small .widget-content-tab p {
  color: var(--color-text-3);
  letter-spacing: 0.09px;
  line-height: 26px;
}
.widget-tabs.style-small.type-left .widget-menu-tab {
  justify-content: flex-start;
}
.widget-tabs.style-small.type-center .widget-menu-tab {
  justify-content: center;
}
.widget-tabs.style-img .widget-menu-tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 62px;
}
.widget-tabs.style-img .widget-menu-tab .item-title {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.7;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: max-content;
  padding: 13px 13px 9px;
}
.widget-tabs.style-img .widget-menu-tab .item-title.active, .widget-tabs.style-img .widget-menu-tab .item-title:hover {
  opacity: 1;
  filter: grayscale(0%);
  border: 1px solid var(--Primary);
}
/*------------ button ---------------- */
.tf-btn {
  position: relative;
  text-transform: uppercase;
  color: var(--Black);
  background-size: 300%;
  font-size: 14px;
  font-family: "Marcellus";
  letter-spacing: 2px;
}
.tf-btn.style-1 {
  line-height: 56px;
  padding: 0px 44px 0 44px;
  background-position: 100%;
  background-image: linear-gradient(-150deg, #fff 50%, #e6c9a2 50%);
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tf-btn.style-1:hover {
  background-position: 0%;
}
.tf-btn.style-2 {
  line-height: 56px;
  padding: 0 43px;
  border: 1px solid var(--Border-3);
  background-position: 95%;
  background-image: linear-gradient(-138deg, transparent 50%, var(--Primary) 50%);
  color: var(--White);
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
}
.tf-btn.style-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 15px solid var(--Primary);
  border-top: 15px solid transparent;
}
.tf-btn.style-2:hover {
  background-position: 0%;
  color: var(--Black);
  border-color: var(--Primary);
}

.tf-btn-default {
  color: var(--White);
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--Primary);
  position: relative;
  letter-spacing: 1.6px;
  font-family: "Marcellus";
}
.tf-btn-default i {
  content: "\ea3c";
  font-family: "icomoon";
  right: 0;
  color: var(--White);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: -20px;
}
.tf-btn-default:hover {
  color: var(--White);
}
.tf-btn-default:hover i {
  visibility: visible;
  opacity: 1;
  margin-left: 8px;
}
.tf-btn-default.style-2 {
  font-size: 13px;
  letter-spacing: 2.8px;
  padding-bottom: 10px;
}

.tf-btn-reply {
  background-color: var(--Secondary);
  padding: 10px 18px;
  color: var(--White);
  font-size: 13px;
}
.tf-btn-reply:hover {
  color: var(--Primary);
}

/*------------ range slider ---------------- */
/*------------ form ---------------- */
form {
  position: relative;
  z-index: 30;
}
form textarea,
form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color] {
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  padding: 8px 19px;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  background-color: var(--White);
  border: 1px solid var(--Border);
  border-radius: 4px;
  color: var(--Soft-Text);
  overflow: hidden;
  margin-bottom: 0;
}
form textarea:focus,
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus {
  background-color: var(--White);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: 0px 1px 11.05px 1.95px rgba(0, 0, 0, 0.15);
}
form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: var(--Soft-Text);
}
form textarea.style-default,
form input[type=text].style-default,
form input[type=password].style-default,
form input[type=datetime].style-default,
form input[type=datetime-local].style-default,
form input[type=date].style-default,
form input[type=month].style-default,
form input[type=time].style-default,
form input[type=week].style-default,
form input[type=number].style-default,
form input[type=email].style-default,
form input[type=url].style-default,
form input[type=search].style-default,
form input[type=tel].style-default,
form input[type=color].style-default {
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background-color: transparent;
}
form textarea.style-1,
form input[type=text].style-1,
form input[type=password].style-1,
form input[type=datetime].style-1,
form input[type=datetime-local].style-1,
form input[type=date].style-1,
form input[type=month].style-1,
form input[type=time].style-1,
form input[type=week].style-1,
form input[type=number].style-1,
form input[type=email].style-1,
form input[type=url].style-1,
form input[type=search].style-1,
form input[type=tel].style-1,
form input[type=color].style-1 {
  font-size: 15px;
  border-radius: 0;
  padding: 18px 0 3px;
  border: 0;
  border-bottom: 2px solid var(--Border);
  color: var(--Soft-Text);
}
form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}
form textarea {
  height: 140px;
}

.post-comment-wrap p {
  color: var(--White);
  letter-spacing: 0.2px;
  padding-bottom: 44px;
}
.post-comment-wrap input[type=text],
.post-comment-wrap input[type=email] {
  padding: 14px 19px;
  background-color: var(--bg-input);
  color: var(--White);
  border: none;
  border-radius: unset;
}
.post-comment-wrap input[type=text]:focus,
.post-comment-wrap input[type=email]:focus {
  color: var(--Black);
}
.post-comment-wrap textarea {
  padding: 14px 19px 200px;
  background-color: var(--bg-input);
  color: var(--White);
  border: none;
  border-radius: unset;
}
.post-comment-wrap textarea:focus {
  color: var(--Black);
}
.post-comment-wrap input[type=number]::-webkit-outer-spin-button,
.post-comment-wrap input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cols {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 15px;
}
.cols fieldset {
  width: 100%;
}

#form-book h5 {
  color: var(--White);
  padding-bottom: 30px;
  font-family: "Marcellus";
}
#form-book fieldset {
  max-width: 100%;
}
#form-book .cols {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 15px;
}
#form-book input[type=number]::-webkit-outer-spin-button,
#form-book input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#form-book input[type=text],
#form-book input[type=email] {
  border: none;
  border-radius: unset;
}
#form-book input[type=text]:focus,
#form-book input[type=email]:focus {
  color: var(--Black);
}

#form-contact-us {
  margin: 0 auto;
}
#form-contact-us select,
#form-contact-us input[type=text],
#form-contact-us input[type=email] {
  padding: 14px 19px;
  background-color: var(--bg-input);
  color: var(--White);
  border: none;
  border-radius: unset;
}
#form-contact-us select:focus,
#form-contact-us input[type=text]:focus,
#form-contact-us input[type=email]:focus {
  background-color: var(--White);
  color: var(--Black);
}
#form-contact-us select {
  width: 100%;
  height: 56px;
}
#form-contact-us textarea {
  padding: 14px 19px 200px;
  background-color: var(--bg-input);
  color: var(--White);
  border: none;
  border-radius: unset;
}
#form-contact-us textarea:focus {
  background-color: var(--White);
  color: var(--Black);
}
#form-contact-us input[type=number]::-webkit-outer-spin-button,
#form-contact-us input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.select {
  position: relative;
}
.select select {
  appearance: none;
}
.select::after {
  content: "\e921";
  font-family: "icomoon";
  position: absolute;
  font-size: 17px;
  right: 12px;
  top: 30%;
  color: var(--White);
}
.select:focus-within::after {
  color: var(--Black);
}

/*------------ slider ---------------- */
.slide-home {
  position: relative;
}

.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.arrow-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
}
.arrow-slider-btn i {
  color: var(--Primary);
  font-size: 40px;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow-slider-btn:hover i {
  color: var(--White);
}
.arrow-slider-btn.style-2 {
  top: 42%;
  width: 81px;
  height: 81px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--White);
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow-slider-btn.style-2 i {
  color: var(--Black);
  font-size: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-slider-btn.style-2:hover {
  background-color: var(--Primary);
}

.slider-page-title-home-prev {
  left: 54px;
}

.slider-page-title-home-next {
  right: 54px;
}

.slider-discover-prev {
  top: 20% !important;
  left: 4%;
}

.slider-discover-next {
  top: 20% !important;
  right: 4%;
}

.slider-recommended-next {
  right: -12%;
  top: 50%;
}

.slider-recommended-prev {
  left: -12%;
  top: 50%;
}

.discover-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 60px;
}
.discover-item .image {
  height: 244px;
}
.discover-item .name {
  padding-bottom: 11px;
}
.discover-item .name a {
  color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Marcellus";
  letter-spacing: 0.5px;
  cursor: pointer;
}
.discover-item .name a:hover {
  color: var(--Primary);
}
.discover-item .text {
  color: var(--color-text-3);
  line-height: 26px;
}

.recommended-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.recommended-item .price {
  font-family: "Marcellus";
  color: var(--White);
  text-align: center;
}
.recommended-item .title-recommended {
  font-family: "Marcellus";
  color: var(--White);
  line-height: 56.5px;
  padding-bottom: 4px;
  text-align: center;
}
.recommended-item .text {
  color: var(--Primary);
  font-family: "Marcellus";
  padding-bottom: 30px;
  text-align: center;
  line-height: 26px;
  letter-spacing: 0.3px;
}
.recommended-item .icon {
  padding-bottom: 14px;
}
.recommended-item p {
  color: var(--color-text-5);
}

.gallery-swiper .gallery-item {
  padding-right: 29px;
}

/*------------ off canvas ---------------- */
.offcanvas-search {
  height: max-content !important;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100px) !important;
  z-index: 9999;
}
.offcanvas-search.show {
  transform: translateY(0px) !important;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.offcanvas-search > .btn-close-search {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: var(--White);
  width: 30px;
  height: 30px;
  font-size: 22px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
}
.offcanvas-search .offcanvas-body {
  padding: 60px 0;
}
.offcanvas-search .form-search-courses input {
  border: 1px solid;
  border-radius: 4px;
}
.offcanvas-search .form-search-courses .button-submit button {
  border-radius: 8px;
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.offcanvas-search .form-search-courses .button-submit button i {
  font-size: 30px;
}
.offcanvas-search .form-search-courses .button-submit button:hover {
  color: var(--Primary);
}

.offcanvas-book-table {
  height: 100vh !important;
  max-width: 970px;
  margin: 0 auto;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100px) !important;
  background-color: transparent;
}
.offcanvas-book-table.show {
  transform: translateY(0px) !important;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 9999 !important;
}
.offcanvas-book-table .offcanvas-body {
  padding: 60px 0;
}

/*------------ product ---------------- */
/*------------ blog ---------------- */
.wg-blog {
  cursor: pointer;
  margin-bottom: 88px;
}
.wg-blog:hover p::before {
  width: 100% !important;
}
.wg-blog:hover .blog-img img {
  transform: scale(1.2) !important;
}
.wg-blog .blog-img {
  position: relative;
  overflow: hidden;
}
.wg-blog .blog-img img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.wg-blog .blog-img .date-time {
  position: absolute;
  top: 13px;
  left: 13px;
  width: max-content;
  background-color: var(--Secondary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px 16px 11px 14px;
}
.wg-blog .blog-img .date-time .entry-day {
  font-size: 35px;
  line-height: 35px;
  font-family: "Marcellus";
  color: var(--Primary);
}
.wg-blog .blog-img .date-time .entry-month {
  font-size: 13px;
  color: var(--White);
}
.wg-blog .content {
  padding: 28px 0px 0px;
}
.wg-blog .content .meta-blog {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px 16px;
  margin-bottom: 21px;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.wg-blog .content .meta-blog .entry-author,
.wg-blog .content .meta-blog .entry-type {
  color: var(--Primary);
  position: relative;
  padding-left: 12px;
}
.wg-blog .content .meta-blog .entry-author::before,
.wg-blog .content .meta-blog .entry-type::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--White);
}
.wg-blog .content .meta-blog .entry-author a,
.wg-blog .content .meta-blog .entry-type a {
  color: var(--Primary);
}
.wg-blog .content h5 {
  margin-bottom: 18px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Giới hạn số dòng hiển thị */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-family: "Marcellus";
}
.wg-blog .content h5 a {
  color: var(--White);
}
.wg-blog .content p {
  border-top: 1px solid var(--Border-3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-top: 18px;
  margin-bottom: 31px;
  position: relative;
  color: var(--White);
  letter-spacing: 0.3px;
}
.wg-blog .content p::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 2px;
  background-color: var(--Primary);
}

.wg-pagination ul {
  gap: 10px;
}
.wg-pagination ul a,
.wg-pagination ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: var(--bg-3);
  cursor: pointer;
  color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-pagination ul a:hover,
.wg-pagination ul li:hover {
  background: var(--Primary);
}
.wg-pagination ul a.active,
.wg-pagination ul li.active {
  background: transparent;
  border: 1px solid var(--Primary);
}

.meta {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px 34px;
  padding-bottom: 16px;
}
.meta .meta-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 14px;
}
.meta .meta-item .icon {
  width: 32px;
  height: 32px;
  background-color: var(--Secondary);
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meta .meta-item .icon i {
  color: var(--Primary);
  font-size: 12px;
}
.meta .meta-item .text {
  color: var(--White);
}

.blog-details {
  padding-bottom: 57px;
}
.blog-details .image {
  padding-bottom: 43px;
}
.blog-details .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-details p {
  color: var(--color-text-3);
  letter-spacing: 0.1px;
}
.blog-details .title-small h4 {
  color: var(--White);
  font-family: "Marcellus";
  letter-spacing: 0.5px;
  padding-bottom: 8px;
}
.blog-details .title-small.style-2 {
  margin-top: -5px;
  margin-left: -3px;
}
.blog-details .title-small.style-2 h4 {
  padding-bottom: 10px;
}
.blog-details .quote {
  padding: 41px 62px 36px;
  background-color: var(--Secondary);
  margin-bottom: 27px;
}
.blog-details .quote .text {
  line-height: 28px;
  letter-spacing: 0.3px;
  font-family: "Marcellus";
  padding-bottom: 20px;
}
.blog-details .quote .quote-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.blog-details .quote .quote-bottom .wikipedia {
  font-size: 17px;
  line-height: 26px;
  font-family: "CormorantInfant", serif;
  text-transform: uppercase;
  color: var(--White);
  font-weight: bold;
  letter-spacing: 1.8px;
}

.title-blog-details {
  line-height: 30px;
  font-family: "Marcellus";
  letter-spacing: 0.7px;
  color: var(--White);
  padding-bottom: 33px;
}

.widget-video {
  position: relative;
  overflow: hidden;
}
.widget-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.widget-video .popup-youtube {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  height: 91px;
  width: 91px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--Black);
  border: 1px solid var(--Border-4);
}
.widget-video .popup-youtube i {
  font-size: 32.65px;
  color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget-video .popup-youtube:hover i {
  color: var(--Primary);
}
.widget-video .wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  animation: ripple 2s infinite;
}

.blog-single-bottom {
  padding: 14px 0px 16px 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--Border-5);
  border-bottom: 1px solid var(--Border-5);
  flex-wrap: wrap;
  gap: 20px;
  margin-right: -12px;
}
.blog-single-bottom .icon {
  padding-right: 5px;
}
.blog-single-bottom .icon i {
  color: var(--Primary);
}
.blog-single-bottom .tags {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.blog-single-bottom .tags img {
  flex-shrink: 0px;
}
.blog-single-bottom .tags span {
  color: var(--White);
}
.blog-single-bottom .tags ul {
  display: flex;
}
.blog-single-bottom .tags ul li a {
  color: var(--color-text-4);
}

.social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social li {
  height: 42px;
  width: 42px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social li.none-style {
  height: 100%;
  width: max-content;
  pointer-events: none;
}
.social li:hover {
  background-color: var(--Secondary);
}
.social li:hover i {
  color: var(--Primary) !important;
}
.social li a i {
  font-size: 15px;
  color: var(--color-icon);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social .none-style {
  padding-right: 20px;
  gap: 4px;
}

.comment-wrap {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--Border-5);
  margin-bottom: 59px;
}
.comment-wrap .comment-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 17px;
}
.comment-wrap .author {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 0 21px;
}
.comment-wrap .author .image {
  max-width: 68px;
}
.comment-wrap .author .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.comment-wrap .author .content .name {
  color: var(--White);
  font-size: 17px;
  line-height: 28px;
  font-family: "Marcellus";
}
.comment-wrap .author .content .time {
  color: var(--Primary);
  font-size: 13px;
  line-height: 25px;
  font-weight: 300;
}
.comment-wrap .comment {
  color: var(--White);
  letter-spacing: 0.09px;
}

/*------------ testimonial ---------------- */
.wg-testimonial {
  background-color: var(--Secondary);
}

.slider-testimonial-prev {
  left: -12%;
  top: 46%;
}

.slider-testimonial-next {
  right: -12%;
  top: 46%;
}

.testimonial-item {
  padding: 75px 0 72px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.testimonial-item .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
  width: 100%;
  border-bottom: 1px solid var(--Border-3);
  margin-bottom: 39px;
}
.testimonial-item .text {
  padding: 0 60px;
  color: var(--White);
  padding-bottom: 37px;
  letter-spacing: 0.35px;
  font-size: 17px;
  line-height: 35px;
  font-family: "Marcellus";
}
.testimonial-item .name {
  padding: 15px 15px 7px 15px;
}
.testimonial-item .name a {
  font-family: "Marcellus";
}
.testimonial-item .name a:hover {
  color: var(--Primary);
}
.testimonial-item span {
  color: var(--White);
}

/*------------ accordion ---------------- */
.flat-accordion .flat-toggle {
  padding: 21px 0 12px;
  border-bottom: 1px solid var(--Border-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.flat-accordion .flat-toggle .toggle-title {
  font-family: "Marcellus";
  position: relative;
  cursor: pointer;
  padding-bottom: 18px;
  color: var(--White);
}
.flat-accordion .flat-toggle .toggle-content {
  display: none;
}
.flat-accordion .flat-toggle .toggle-content p {
  color: var(--White);
  padding-bottom: 40px;
}
.flat-accordion .flat-toggle .toggle-content .btn-accordion {
  padding-bottom: 36px;
}
.flat-accordion .flat-toggle .toggle-content .btn-accordion .tf-btn-default.style-2 {
  padding-bottom: 7px;
}

/*------------ shop ---------------- */
/*------------ map ---------------- */
#map {
  width: 100%;
  height: 100%;
}
#map .marker {
  background-image: url("../icons/marker.svg");
  background-size: cover;
  width: 35px;
  height: 50px;
  cursor: pointer;
}

#map1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#map1 .marker {
  background-image: url("../icons/marker-1.svg");
  background-size: cover;
  width: 35px;
  height: 50px;
  cursor: pointer;
}

.mapboxgl-ctrl-attrib a,
.mapboxgl-ctrl-attrib.mapboxgl-compact,
a.mapboxgl-ctrl-logo {
  display: none !important;
}

.box-map {
  max-width: 100%;
  height: 495px;
}
.box-map.style-2 {
  width: 409px;
  height: 409px;
}

/*------------ map ---------------- */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ripple {
  0% {
    width: 124px;
    height: 124px;
    opacity: 1;
  }
  100% {
    width: 160px;
    height: 160px;
    opacity: 0;
    background-color: rgba(198, 172, 131, 0.6);
  }
}
@keyframes tf-preload {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
    background: transparent;
  }
  100% {
    transform: scale(0.8);
    background: transparent;
  }
}
/*------------ widgets ---------------- */
.box-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
}
.box-icon .icon {
  padding-bottom: 31px;
  max-width: 50px;
}
.box-icon .title-box-icon {
  line-height: 26px;
  padding-bottom: 22px;
  text-align: center;
  letter-spacing: 0.2px;
}
.box-icon .title-box-icon a {
  font-family: "Marcellus";
  color: var(--White);
}
.box-icon .title-box-icon a:hover {
  color: var(--Primary);
}
.box-icon .text {
  color: var(--color-text-5);
  line-height: 26px;
}

.box-item {
  padding: 50px 50px 60px;
  border: 1px solid var(--Border-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-item .box-item-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.box-item .box-item-inner .icon {
  padding-bottom: 36px;
  transform: rotateY(0deg);
  transition: transform 0.5s;
}
.box-item .box-item-inner .title-box-item {
  padding-bottom: 10px;
}
.box-item .box-item-inner .title-box-item a {
  font-family: "Marcellus";
  color: var(--White);
  line-height: 26px;
  padding-bottom: 18px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-item .box-item-inner .title-box-item a:hover {
  color: var(--Primary);
}
.box-item .box-item-inner .text {
  color: var(--White);
  padding-bottom: 29px;
  line-height: 26px;
}
.box-item .box-item-inner .box-item-bottom .tf-btn-default.style-2 {
  padding-bottom: 8px;
}
.box-item:hover {
  border-color: var(--Primary);
}
.box-item:hover .icon {
  transform: rotateY(360deg);
}

.content-discover {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.discover {
  position: relative;
}

.gallery-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 29px;
}
.gallery-box .gallery-item {
  position: relative;
  flex-grow: 1;
}
.gallery-box .gallery-item .image {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  object-fit: cover;
  max-height: 521px;
  overflow: hidden;
}
.gallery-box .gallery-item .image img {
  width: 100%;
  object-fit: cover;
  height: auto;
}
.gallery-box .gallery-item .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.35);
}
.gallery-box .gallery-item:hover .image {
  filter: blur(3px);
}
.gallery-box .gallery-item:hover .image::before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.gallery-box .gallery-item:hover .content {
  top: 49.5%;
  left: 49.5%;
  opacity: 1;
  visibility: visible;
}
.gallery-box .content {
  opacity: 0;
  visibility: visible;
  position: absolute;
  top: 100%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 49.5%;
}
.gallery-box .content .plus-icon {
  width: 2px;
  height: 34px;
  background-color: var(--Primary);
  position: absolute;
  left: 0;
  top: -16px;
}
.gallery-box .content .plus-icon-2 {
  position: absolute;
  left: -15px;
  height: 2px;
  width: 34px;
  background-color: var(--Primary);
}
.gallery-box.style-2 {
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  display: grid;
  position: relative;
  grid-template-areas: "aa bb cc " "dd dd ee " "ff gg gg ";
}
.gallery-box.style-2 .gallery-item .image {
  max-height: 100%;
}
.gallery-box.style-2 .gallery-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-box.style-2 .gallery-item-1 {
  grid-area: aa;
}
.gallery-box.style-2 .gallery-item-2 {
  grid-area: bb;
}
.gallery-box.style-2 .gallery-item-3 {
  grid-area: cc;
}
.gallery-box.style-2 .gallery-item-4 {
  grid-area: dd;
}
.gallery-box.style-2 .gallery-item-5 {
  grid-area: ee;
}
.gallery-box.style-2 .gallery-item-6 {
  grid-area: ff;
}
.gallery-box.style-2 .gallery-item-7 {
  grid-area: gg;
}
.gallery-box.style-2 .gallery-item-8 {
  display: none;
  grid-area: hh;
}

.form-book {
  background-color: var(--Secondary);
  padding: 50px 85px;
  overflow-y: auto;
  position: relative;
}
.form-book > .btn-close-book-table {
  position: absolute;
  background-color: var(--Secondary);
  right: 3%;
  top: 3%;
  width: 30px;
  height: 30px;
  font-size: 22px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
}
.form-book > .btn-close-book-table i {
  color: var(--Primary);
}
.form-book .title-form-book {
  text-align: center;
  padding-bottom: 40px;
}
.form-book .title-form-book .title {
  font-size: 35px;
  list-style: 45px;
  color: var(--White);
  font-family: "Marcellus";
  padding-bottom: 10px;
}
.form-book .title-form-book .text {
  color: var(--White);
}
.form-book .form-book-inner {
  padding-bottom: 40px;
}
.form-book .form-book-inner textarea,
.form-book .form-book-inner select,
.form-book .form-book-inner input[type=text],
.form-book .form-book-inner input[type=number],
.form-book .form-book-inner input[type=date],
.form-book .form-book-inner input[type=time],
.form-book .form-book-inner input[type=email] {
  padding: 14px 19px;
  background-color: var(--bg-input-2);
  color: var(--White);
  border: none;
  border-radius: unset;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-book .form-book-inner textarea:focus,
.form-book .form-book-inner select:focus,
.form-book .form-book-inner input[type=text]:focus,
.form-book .form-book-inner input[type=number]:focus,
.form-book .form-book-inner input[type=date]:focus,
.form-book .form-book-inner input[type=time]:focus,
.form-book .form-book-inner input[type=email]:focus {
  color: var(--Black);
  background-color: var(--White);
}
.form-book .form-book-inner select {
  width: 100%;
}
.form-book .form-book-inner select:focus {
  color: var(--Black);
  outline: none;
  border: none;
}
.form-book .form-book-inner fieldset {
  margin-bottom: 15px;
}
.form-book.style-2 {
  background: transparent;
  padding: 0 !important;
}
.form-book.style-2 .form-book-inner {
  padding: 0 !important;
}
.form-book.style-2 .bottom {
  padding-top: 37px;
}

.wg-shop-detail {
  padding-bottom: 52px;
}
.wg-shop-detail .image-wrap .image-top {
  margin-bottom: 29px;
}
.wg-shop-detail .image-wrap .image-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.wg-shop-detail .image-wrap .image-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
}
.wg-shop-detail .image-wrap .image-bottom img {
  max-width: 170px;
  max-height: 170px;
  object-fit: cover;
}
.wg-shop-detail .content {
  padding: 15px 0 0 26px;
  width: 100%;
  margin-left: auto;
}
.wg-shop-detail .content .title {
  font-size: 35px;
  margin-bottom: 8px;
  font-family: "Marcellus";
  font-size: 35px;
  line-height: 70px;
  color: var(--White);
  letter-spacing: 0.4px;
}
.wg-shop-detail .content .price {
  color: var(--Primary);
  margin-bottom: 20px;
  font-size: 20px;
  font-family: "Marcellus";
}
.wg-shop-detail .content .ratings {
  position: relative;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--Border-2);
  margin-bottom: 23px;
  display: flex;
}
.wg-shop-detail .content .ratings i {
  font-size: 18px;
  color: var(--Primary);
}
.wg-shop-detail .content .desc {
  position: relative;
  padding-bottom: 23px;
  margin-bottom: 19px;
  border-bottom: 1px solid var(--Border-2);
  color: var(--White);
  letter-spacing: 0.25px;
}
.wg-shop-detail .content .title-quantity {
  margin-bottom: 16px;
  font-family: "Marcellus";
  color: var(--White);
}
.wg-shop-detail .content .add-wishlist {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--Border-2);
  margin-bottom: 28px;
  cursor: pointer;
}
.wg-shop-detail .content .add-wishlist span {
  color: var(--White);
}
.wg-shop-detail .content .add-wishlist i {
  padding-right: 3px;
  color: var(--Primary);
}
.wg-shop-detail .content .add-wishlist i.active {
  color: var(--Primary);
}
.wg-shop-detail .content .more-infor {
  padding-bottom: 29px;
  border-bottom: 1px solid var(--Border-2);
  margin-bottom: 27px;
}
.wg-shop-detail .content .more-infor .list .item {
  color: var(--White);
}
.wg-shop-detail .content .more-infor .list .item span {
  color: var(--color-text-4);
  padding-left: 3px;
}
.wg-shop-detail .content .more-infor .list .item a {
  color: var(--color-text-4);
}
.wg-shop-detail .content .more-infor .list .item:not(:last-child) {
  margin-bottom: 10px;
}
.wg-shop-detail .content .social {
  justify-content: flex-start;
  margin-bottom: 20px;
  padding-left: 19px;
}
.wg-shop-detail .content .social h3 {
  padding-right: 20px;
}
.wg-shop-detail .content h4 {
  font-family: "Marcellus";
  color: var(--White);
  line-height: 40px;
}

.wg-quantity {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 27px;
}
.wg-quantity .quantity {
  width: 66px;
  background-color: transparent;
  position: relative;
}
.wg-quantity .quantity input {
  color: var(--White) !important;
  background-color: var(--Secondary);
  line-height: 40px;
}
.wg-quantity .quantity input:focus {
  background-color: var(--Secondary);
}
.wg-quantity .quantity .plus-btn {
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 15px;
  color: var(--White);
  transform: rotate(180deg);
  cursor: pointer;
}
.wg-quantity .quantity .minus-btn {
  position: absolute;
  bottom: 7px;
  right: 15px;
  font-size: 15px;
  color: var(--White);
  cursor: pointer;
}
.wg-quantity .btn-add {
  padding: 10px 30px;
}

.shop-item {
  overflow-x: auto;
  padding-bottom: 54px;
}
.shop-item .image {
  position: relative;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shop-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.shop-item .image .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 6px;
  position: absolute;
  left: 36%;
  bottom: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shop-item .image .icon a {
  width: 49px;
  height: 49px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Secondary);
}
.shop-item .image .icon a i {
  color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shop-item .image .icon a:hover {
  background-color: var(--Primary);
}
.shop-item .image .icon a:hover i {
  color: var(--Secondary);
}
.shop-item.sale-off .image::after {
  position: absolute;
  content: "SALE OFF";
  top: 20px;
  right: 20px;
  width: 97px;
  height: 34px;
  background-color: var(--Secondary);
  font-size: 13px;
  line-height: 26px;
  color: var(--White);
  letter-spacing: 1px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-item.new .image::after {
  position: absolute;
  content: "NEW";
  top: 18px;
  right: 21px;
  width: 97px;
  height: 34px;
  background-color: var(--Secondary);
  font-size: 13px;
  line-height: 26px;
  color: var(--White);
  letter-spacing: 1px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-item .content {
  padding-top: 0 !important;
  text-align: center;
}
.shop-item .content .price {
  font-size: 20px;
  line-height: 50px;
  font-weight: 500;
  color: var(--Primary);
  padding-bottom: 3px;
  font-family: "Marcellus";
}
.shop-item .content .price span {
  color: var(--color-text-6);
}
.shop-item .content .name {
  font-family: "Marcellus";
  letter-spacing: 0.7px;
}
.shop-item .content .name a {
  color: var(--White);
}
.shop-item .content .type {
  color: var(--White);
  padding-bottom: 7px;
}
.shop-item .content .type a {
  color: var(--White);
}
.shop-item .content .type a:hover {
  color: var(--Primary);
}
.shop-item .content .rating i {
  font-size: 17px;
  color: var(--Primary);
  margin: 0 -3px;
}
.shop-item:hover .image .icon {
  opacity: 1;
  visibility: visible;
  bottom: 6%;
}
.shop-item:hover .name a {
  color: var(--Primary);
}

.hover-img .image {
  overflow: hidden;
}
.hover-img .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
}
.hover-img:hover .image img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.tf-sort {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tf-sort .text {
  color: var(--White);
  font-family: "Marcellus";
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 0.4px;
}

.tf-control-sorting .tf-dropdown-sort {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  z-index: 1;
  min-width: 250px;
}
.tf-control-sorting .tf-dropdown-sort .tf-btn {
  padding: 20px 35px 20px 42px;
  background-color: var(--Primary);
}
.tf-control-sorting .tf-dropdown-sort .tf-btn i,
.tf-control-sorting .tf-dropdown-sort .tf-btn span {
  font-size: 13px;
  color: var(--White);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 2.8px;
}
.tf-control-sorting .tf-dropdown-sort .tf-btn:hover i,
.tf-control-sorting .tf-dropdown-sort .tf-btn:hover span {
  color: var(--Secondary);
}
.tf-control-sorting .tf-dropdown-sort .dropdown-menu {
  width: 100%;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10000;
}
.tf-control-sorting .tf-dropdown-sort .dropdown-menu .select-item {
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tf-control-sorting .tf-dropdown-sort .select-item {
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  padding: 0 20px;
  line-height: 30px;
  width: 100%;
  margin-right: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.tf-control-sorting .tf-dropdown-sort .select-item.active .text-value-item::before, .tf-control-sorting .tf-dropdown-sort .select-item:hover .text-value-item::before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.tf-control-sorting .tf-dropdown-sort .text-value-item::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0;
  background-color: var(--Secondary);
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wg-404 {
  background-image: url(../image/bg/404.jpg);
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.wg-404 .content {
  padding: 190px 0;
  text-align: center;
  overflow-x: hidden;
}
.wg-404 .content .title {
  margin-bottom: 68px;
  position: relative;
}
.wg-404 .content .title .img {
  position: relative;
  margin-top: -14px;
}
.wg-404 .content .title::after {
  position: absolute;
  content: "4";
  font-weight: 400;
  top: 33px;
  left: 48.5%;
  transform: translateX(-330px);
  font-size: 262.24px;
  color: var(--White);
  line-height: 259.51px;
  font-family: "Marcellus";
}
.wg-404 .content .title::before {
  position: absolute;
  content: "4";
  top: 33px;
  right: 49%;
  font-weight: 400;
  color: var(--White);
  transform: translateX(338px);
  font-size: 262.24px;
  line-height: 259.51px;
  font-family: "Marcellus";
}
.wg-404 .content .sub-title {
  font-size: 50px;
  font-family: "Marcellus";
  color: var(--White);
  margin-bottom: 27px;
  letter-spacing: 1px;
}
.wg-404 .content p {
  font-size: 17px;
  color: var(--White);
  line-height: 28px;
  margin-bottom: 40px;
}
.wg-404 .content .tf-btn.style-2 {
  font-size: 14px;
}

.slider-perview-3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.slider-perview-3 .shop-item-swiper {
  overflow: hidden;
}
.slider-perview-3 .shop-item {
  padding: 0 !important;
}
.slider-perview-3 .slider-perview-3-button {
  position: absolute;
}
.slider-perview-3 .arrow-slider-btn i {
  font-size: 55px !important;
}
.slider-perview-3 .slider-perview-3-prev {
  left: -117px;
  top: 251px;
}
.slider-perview-3 .slider-perview-3-next {
  right: -117px;
  top: 251px;
}

.preload-container {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999999999999999;
  height: 100%;
  width: 100%;
  background-color: #000;
}
.preload-container .middle {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: 100;
  margin: -50px 0 0 -50px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: url(../image/preload.png);
  animation: tf-preload 1.2s linear infinite alternate;
}

.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 30px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
  box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  background: var(--Secondary);
}
.progress-wrap::after {
  position: absolute;
  content: "\e921";
  font-family: "icomoon";
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  color: var(--White);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  transform: rotate(180deg);
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  box-sizing: border-box;
  stroke: var(--Primary);
  stroke-width: 5;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}

/*------------ sections ---------------- */
.tf-spacing-1 {
  padding-top: 135px;
  padding-bottom: 135px;
}

.tf-spacing-2 {
  padding-top: 0;
  padding-bottom: 121px;
}

.tf-spacing-3 {
  padding-top: 0;
  padding-bottom: 77px;
}

.tf-spacing-4 {
  padding-top: 0;
  padding-bottom: 135px;
}

.tf-spacing-5 {
  margin-top: 0;
  margin-bottom: 135px;
}

.tf-spacing-6 {
  padding-top: 0;
  padding-bottom: 133px;
}

.tf-spacing-7 {
  margin-top: 0;
  margin-bottom: 50px;
}

.tf-spacing-8 {
  padding-top: 0;
  padding-bottom: 124px;
}

.tf-spacing-9 {
  margin-bottom: 121px !important;
  margin-top: 0 !important;
}

.tf-spacing-10 {
  margin-top: 0;
  margin-bottom: 127px;
}

.tf-spacing-11 {
  padding-top: 0;
  padding-bottom: 76px;
}

.tf-spacing-12 {
  padding-top: 0;
  padding-bottom: 129px;
}

.tf-spacing-13 {
  padding-top: 133px;
  padding-bottom: 0;
}

.tf-spacing-14 {
  padding-top: 0;
  padding-bottom: 102px;
}

.tf-spacing-15 {
  padding-top: 0;
  padding-bottom: 49px;
}

.tf-spacing-16 {
  padding-top: 0;
  padding-bottom: 99px;
}

.tf-spacing-17 {
  padding-top: 124px;
  padding-bottom: 135px;
}

.tf-spacing-18 {
  padding-top: 135px;
  padding-bottom: 118px;
}

.tf-spacing-19 {
  padding-top: 124px;
  padding-bottom: 135px;
}

.tf-spacing-20 {
  padding-top: 0;
  padding-bottom: 191px;
}

.tf-spacing-21 {
  padding-top: 0;
  padding-bottom: 215px;
}

.tf-spacing-22 {
  padding-top: 0;
  padding-bottom: 122px;
}

.tf-spacing-23 {
  padding-top: 0;
  padding-bottom: 138px;
}

.page-title {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.page-title::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
}
.page-title .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.page-title .page-title-content {
  padding: 297px 0 33px;
  position: relative;
}
.page-title .page-title-content .title {
  color: var(--White);
  padding-bottom: 83px;
  font-family: "Marcellus";
  margin-left: -3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-title .page-title-content .text {
  color: var(--White);
  text-transform: uppercase;
  font-family: "Marcellus";
  letter-spacing: 0.5px;
}
.page-title .page-title-content .text a {
  color: var(--color-text-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-title .page-title-content .text a:hover {
  color: var(--Primary);
}
.page-title.style-1 {
  background-image: url("../image/page-title/blog-page-title.jpg");
}
.page-title.style-2 {
  background-image: url("../image/page-title/about-us-page-title.jpg");
}
.page-title.style-3 {
  background-image: url("../image/page-title/contact-us-page-title.jpg");
}
.page-title.style-4 {
  background-image: url("../image/page-title/meet-the-team-page-title.jpg");
}
.page-title.style-5 {
  background-image: url("../image/page-title/our-menus-page-title.jpg");
}
.page-title.style-6 {
  background-image: url("../image/page-title/private-dinner-page-title.jpg");
}
.page-title.style-7 {
  background-image: url("../image/page-title/shop-page-title.jpg");
}
.page-title.style-8 {
  background-image: url("../image/page-title/special-event-page-title.jpg");
}

.page-title-home {
  background-color: var(--Secondary);
}
.page-title-home .content {
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 246px 0 0;
}
.page-title-home .content .left .title {
  color: var(--White);
  font-family: "Marcellus";
  padding: 21px 0 100px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-title-home .content .right {
  margin-right: -20px;
}
.page-title-home .content .right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: -50px;
}
.page-title-home .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-box-text .section-box-text-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 61px 0 68px;
  border-bottom: 1px solid var(--bg-input-2);
  gap: 70px;
}
.section-box-text .section-box-text-inner.style-2 {
  border: unset;
  padding: 124px 0 126px;
  gap: 60px;
}
.section-box-text .section-box-text-inner .box-text .title {
  font-family: "Marcellus";
  padding-bottom: 17px;
  letter-spacing: 0.3px;
}
.section-box-text .section-box-text-inner .box-text .text {
  font-size: 17px;
  color: var(--color-text-5);
  letter-spacing: 0.1px;
}

.section-contact .contact-inner {
  padding: 62px 0 0;
}
.section-contact .contact-inner p {
  color: var(--White);
  font-size: 17px;
  line-height: 38px;
  font-family: "Marcellus";
  letter-spacing: 0.3px;
}

.section-about {
  position: relative;
}
.section-about .image {
  margin-left: -320px;
  margin-right: -30px;
}
.section-about .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section .title {
  font-size: 50px;
  line-height: 60px;
  color: var(--White);
  font-family: "Marcellus";
  padding-bottom: 25px;
}
.content-section .text {
  padding-bottom: 42px;
  color: var(--color-text-3);
  letter-spacing: 0.3px;
  font-family: "Marcellus";
}
.content-section .text p {
  color: var(--color-text-3);
}
.content-section.style-2 {
  text-align: center;
}
.content-section.style-2 .top {
  color: var(--Primary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding-bottom: 22px;
}
.content-section.style-3 p {
  color: var(--White);
  font-size: 17px;
  line-height: 38px;
  font-family: "Marcellus";
  letter-spacing: 0.4px;
}
.content-section.style-3 ul li {
  color: var(--White);
  font-size: 17px;
  line-height: 38px;
  font-family: "Marcellus";
  letter-spacing: 0.4px;
}

.about-content {
  padding: 50px 0px 50px 72px;
}

.about-2-inner .flat-accordion {
  padding: 67px 68px 67px 0px;
}
.about-2-inner .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-2 {
  position: relative;
  background-image: url("../image/bg/section-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 131px 0 68px;
}
.section-2 .section-2-item {
  position: absolute;
  right: 3.5%;
  top: 10%;
  animation: rotate 5s linear infinite;
}
.section-2 .section-2-content {
  padding-bottom: 56px;
}

.list-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0px 160px;
  justify-content: center;
  gap: 42px;
}

.bg-home-item {
  background-image: url("../image/section/image-home.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 389px;
}

.section-3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 86px 0 0 146px;
  background-color: var(--bg-2);
}

.section-3-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 90px;
}
.section-3-inner .section-3-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 48px;
}
.section-3-inner .section-3-left .image {
  position: relative;
}
.section-3-inner .section-3-left .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
}
.section-3-inner .section-3-left .image::before {
  content: "";
  position: absolute;
  left: 33%;
  top: 11%;
  width: 149px;
  height: 383px;
  filter: blur(80px);
  background-color: var(--White);
}
.section-3-inner .section-3-left .section-3-content {
  padding: 40px 0 0 0;
}
.section-3-inner .section-3-left .section-3-content .text {
  padding-bottom: 48px;
}
.section-3-inner .section-3-left .section-3-content .text .steak-level {
  font-family: "Marcellus";
  color: var(--White);
  padding-bottom: 10px;
  letter-spacing: 0.4px;
}
.section-3-inner .section-3-left .section-3-content .text .text-1 {
  color: var(--White);
  font-size: 17px;
  font-family: "Marcellus";
  letter-spacing: 0.4px;
}
.section-3-inner .line {
  width: 1px;
  height: 613px;
  background-color: var(--Border-2);
}
.section-3-inner .section-3-right {
  max-width: 44.3%;
}
.section-3-inner .section-3-right .section-3-right-content {
  text-align: center;
  padding: 56px 0 32px;
}
.section-3-inner .section-3-right .section-3-right-content .title {
  font-size: 50px;
  line-height: 60px;
  color: var(--White);
  font-family: "Marcellus";
  padding-bottom: 18px;
}
.section-3-inner .section-3-right .section-3-right-content .text {
  color: var(--color-text-3);
  line-height: 25px;
}

.section-special-menu .title {
  padding-bottom: 11px;
}
.section-special-menu .recommended {
  position: relative;
}
.section-special-menu .image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 75px 0 38px;
}
.section-special-menu .line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100%;
  background-color: var(--Border-2);
}
.section-special-menu .special-menu-content {
  padding-bottom: 26px;
  border-bottom: 2px solid var(--Border-2);
}
.section-special-menu .recommended-item {
  padding: 100px 0 0;
}
.section-special-menu .bottom-btn {
  padding-top: 86px;
}

.section-banner {
  background-image: url("../image/bg/banner-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.section-banner .banner-content {
  padding: 120px 0 133px;
}
.section-banner .banner-content .title {
  line-height: 85px;
  color: var(--White);
  font-family: "Marcellus";
  padding-bottom: 33px;
}

.section-4 .section-4-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: var(--bg-2);
}
.section-4 .section-4-inner .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-4 .section-4-inner .section-4-content {
  padding: 124px 0 0 168px;
}
.section-4 .section-4-inner .section-4-content .title {
  font-size: 50px;
  line-height: 60px;
  font-family: "Marcellus";
  color: var(--White);
  padding-bottom: 59px;
}
.section-4 .section-4-inner .section-4-content .top {
  color: var(--Primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 12px;
}
.section-4 .section-4-inner .section-4-content .name {
  color: var(--White);
  font-family: "Marcellus";
  letter-spacing: 0.3px;
  padding-bottom: 36px;
}
.section-4 .section-4-inner.style-2 {
  background-color: unset;
}
.section-4 .section-4-inner.style-2 .section-4-content {
  padding: 105px 0 0 103px;
}
.section-4 .section-4-inner.style-2 .section-4-content .title {
  line-height: 50px;
  padding-bottom: 62px;
}

.section-4-2 .section-4-2-inner {
  background-color: var(--bg-2);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.section-4-2 .section-4-2-inner .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-4-2 .section-4-2-inner .section-4-2-content {
  padding: 165px 0 0 168px;
}
.section-4-2 .section-4-2-inner .section-4-2-content .title {
  font-size: 50px;
  line-height: 60px;
  font-family: "Marcellus";
  color: var(--White);
  padding-bottom: 25px;
}
.section-4-2 .section-4-2-inner .section-4-2-content .text {
  color: var(--color-text-3);
  line-height: 26px;
  padding-left: 5px;
  padding-bottom: 39px;
  letter-spacing: 0.25px;
}

.section-contact-2 .contact-inner-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 133px;
}
.section-contact-2 .contact-inner-2 .image {
  padding: 20px;
  border: 1px solid var(--Border-2);
  border-radius: 50%;
  margin-left: -19px;
}
.section-contact-2 .contact-inner-2 .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.section-contact-2 .contact-inner-2 .wg-map {
  padding: 20px;
  border: 1px solid var(--Border-2);
  border-radius: 50%;
  margin-right: -19px;
}
.section-contact-2 .contact-inner-2 .section-contact-2-content {
  text-align: center;
}
.section-contact-2 .contact-inner-2 .section-contact-2-content .title {
  font-size: 50px;
  line-height: 60px;
  font-family: "Marcellus";
  color: var(--White);
  padding-bottom: 36px;
}
.section-contact-2 .contact-inner-2 .section-contact-2-content .icon {
  padding-bottom: 36px;
}
.section-contact-2 .contact-inner-2 .section-contact-2-content ul {
  padding-bottom: 23px;
}
.section-contact-2 .contact-inner-2 .section-contact-2-content ul li {
  color: var(--White);
  font-size: 17px;
  line-height: 38px;
  font-family: "Marcellus";
  letter-spacing: 0.4px;
}
.section-contact-2 .contact-inner-2 .section-contact-2-content .number-contact {
  padding-bottom: 42px;
}
.section-contact-2 .contact-inner-2 .section-contact-2-content .number-contact .text {
  color: var(--White);
  font-size: 17px;
  line-height: 38px;
  font-family: "Marcellus";
  padding-bottom: 11px;
  letter-spacing: 0.4px;
}
.section-contact-2 .contact-inner-2 .section-contact-2-content .number-contact .number-phone {
  color: var(--Primary);
  font-size: 35px;
  line-height: 38px;
  font-family: "Marcellus";
  letter-spacing: 0.4px;
}
.section-contact-2 .line {
  max-width: 1170px;
  height: 1px;
  background-color: var(--Border-3);
  margin: 0 auto;
}

.section-gallery .section-gallery-inner .title {
  font-size: 50px;
  line-height: 60px;
  font-family: "Marcellus";
  color: var(--White);
  margin-left: -15px;
  padding-bottom: 63px;
}

.section-about-us .section-about-us-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.section-about-us .section-about-us-inner .widget-video {
  width: 50%;
}
.section-about-us .section-about-us-inner .widget-video .popup-youtube {
  width: 124px;
  height: 124px;
}
.section-about-us .section-about-us-inner .widget-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-about-us .section-about-us-inner .section-about-us-content {
  width: 50%;
  border: 1px solid var(--Border);
  padding: 94px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.section-about-us .section-about-us-inner .section-about-us-content .title {
  padding-bottom: 62px;
}
.section-about-us .section-about-us-inner .section-about-us-content .icon {
  max-width: 216px;
  height: auto;
  padding-bottom: 69px;
}
.section-about-us .section-about-us-inner .section-about-us-content .text {
  padding-bottom: 53px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.section-about-us .section-about-us-inner .section-about-us-content .text span {
  line-height: 25px;
  letter-spacing: 0.2px;
}
.section-about-us .section-about-us-inner .section-about-us-content .line {
  width: 215px;
  height: 1px;
  background-color: var(--Primary);
}

.contact-us-content {
  padding: 124px 0 60px;
}
.contact-us-content .title {
  padding-bottom: 37px;
}
.contact-us-content .icon {
  padding-bottom: 37px;
}
.contact-us-content ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.content-us-form .title {
  padding-bottom: 15px;
}
.content-us-form .text p {
  letter-spacing: 0.3px;
  font-family: "Marcellus";
}

.secition-meet-the-team-1-inner {
  background-image: url(/image/bg/bg-meet-the-team.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 86px;
}
.secition-meet-the-team-1-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.88));
}
.secition-meet-the-team-1-inner .meet-the-team-1-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 27.5%;
}
.secition-meet-the-team-1-inner .meet-the-team-1-left .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.secition-meet-the-team-1-inner .meet-the-team-1-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 67px;
  position: relative;
  padding: 157px 0 0 0;
  width: 68%;
  overflow: hidden;
}
.secition-meet-the-team-1-inner .meet-the-team-1-right .personal-information {
  padding: 0 33px 0 0;
  position: relative;
  width: 37.8%;
}
.secition-meet-the-team-1-inner .meet-the-team-1-right .personal-information::before {
  content: "";
  position: absolute;
  top: -9%;
  right: 0;
  width: 1px;
  height: 500px;
  background-color: var(--Border-3);
}
.secition-meet-the-team-1-inner .meet-the-team-1-right .personal-information .name {
  color: var(--White);
  font-family: "Marcellus";
  letter-spacing: 0.3px;
  padding-bottom: 9px;
}
.secition-meet-the-team-1-inner .meet-the-team-1-right .personal-information .text-color-primary {
  color: var(--Primary);
  text-align: end;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 55px;
}
.secition-meet-the-team-1-inner .meet-the-team-1-right .personal-information .text {
  color: var(--White);
  font-family: "Marcellus";
  line-height: 40px;
  padding-bottom: 60px;
}
.secition-meet-the-team-1-inner .meet-the-team-1-right .wg-bio {
  width: 50%;
}
.secition-meet-the-team-1-inner .meet-the-team-1-right .wg-bio .title {
  color: var(--White);
  font-family: "Marcellus";
  padding-bottom: 27px;
}
.secition-meet-the-team-1-inner .meet-the-team-1-right .wg-bio p {
  color: var(--color-text-3);
  font-weight: 300;
  letter-spacing: 0.1px;
  line-height: 26px;
}

.section-meet-the-team-2 .heading-section {
  max-width: 930px;
  margin: 0px auto;
}
.section-meet-the-team-2 .heading-section .title {
  padding-bottom: 10px;
}
.section-meet-the-team-2 .heading-section .title a {
  font-size: 35px;
  color: var(--White);
  font-family: "Marcellus";
}
.section-meet-the-team-2 .heading-section .title a:hover {
  color: var(--Primary);
}
.section-meet-the-team-2 .heading-section .sub-title {
  margin-bottom: 25px;
  color: var(--Primary);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-left: 8px;
}
.section-meet-the-team-2 .heading-section .text {
  color: var(--color-text-4);
  margin-bottom: 20px;
}
.section-meet-the-team-2 .heading-section .text-2 {
  color: var(--color-text-4);
}

.dowload-menu {
  padding-bottom: 88px;
}
.dowload-menu p {
  color: var(--color-text-3);
  padding: 34px 0 42px;
  letter-spacing: 0.2px;
}

.our-menu-list {
  padding: 0 31px;
}
.our-menu-list .title {
  font-family: "Marcellus";
  color: var(--White);
  padding-bottom: 29px;
}
.our-menu-list .our-menu-item .line {
  flex-grow: 1;
  height: 1px;
  margin: auto 40px 10px;
  border-bottom: 1px solid var(--Border-2);
}
.our-menu-list .our-menu-item h5 {
  color: var(--White);
  font-family: "Marcellus";
  padding-bottom: 8px;
}
.our-menu-list .our-menu-item .menu-item {
  padding-bottom: 25px;
}
.our-menu-list .our-menu-item .menu-item .text-color-primary {
  font-family: "Marcellus";
  color: var(--Primary);
  letter-spacing: -0.15px;
  line-height: 25px;
}

.note {
  padding: 63px 165px;
  border: 1px solid var(--Border-5);
}
.note .text {
  color: var(--White);
  font-family: "Marcellus";
  letter-spacing: 0.4px;
  line-height: 35px;
}

.title-private-dinner .title {
  font-family: "Marcellus";
  font-size: 35px;
  line-height: 50px;
  color: var(--White);
  padding-bottom: 37px;
}

.section-private-dinner-inner {
  background-color: var(--Secondary);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.section-private-dinner-inner.style-2 {
  justify-content: unset;
}
.section-private-dinner-inner .image {
  width: 50%;
}
.section-private-dinner-inner .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-private-dinner-inner .section-private-dinner-content {
  padding: 123px 0 0 169px;
  width: 50%;
}
.section-private-dinner-inner .section-private-dinner-content .title {
  font-size: 50px;
  line-height: 60px;
  font-family: "Marcellus";
  color: var(--White);
  padding-bottom: 26px;
}
.section-private-dinner-inner .section-private-dinner-content .text {
  color: var(--color-text-3);
  font-weight: 300;
  padding-left: 5px;
  letter-spacing: 0.13px;
  padding-bottom: 21px;
}
.section-private-dinner-inner .section-private-dinner-content ul {
  padding-bottom: 35px;
}
.section-private-dinner-inner .section-private-dinner-content ul li {
  font-size: 17px;
  line-height: 38px;
  color: var(--White);
  font-family: "Marcellus";
  padding-left: 5px;
  letter-spacing: 0.3px;
}

.reservation-content {
  padding: 124px 0 60px;
}
.reservation-content .title {
  padding-bottom: 37px;
}
.reservation-content .icon {
  padding-bottom: 37px;
}
.reservation-content ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.section-reservation .section-reservation-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 128px;
}
.section-reservation .section-reservation-inner .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  padding: 20px;
  border: 1px solid var(--Border-5);
}
.section-reservation .section-reservation-inner .image-1 {
  margin-left: -20px;
  margin-top: -20px;
}
.section-reservation .section-reservation-inner .image-2 {
  margin-right: -20px;
  margin-top: -20px;
}
.section-reservation .section-reservation-inner .form-book {
  width: 34%;
}

.content-section-slide-3 {
  padding: 0 0 68px;
}
.content-section-slide-3 .top {
  letter-spacing: 3px !important;
}
.content-section-slide-3 .title {
  padding-bottom: 14px !important;
}
.content-section-slide-3 .text {
  padding: 0 !important;
}

.section-special-event-1-title h4 {
  color: var(--White);
  font-family: "Marcellus";
  letter-spacing: 0.5px;
  line-height: 45px;
  padding-bottom: 120px;
}

.section-special-event .image {
  position: relative;
}
.section-special-event .image .image-1 {
  overflow: hidden;
  position: relative;
}
.section-special-event .image .image-1 img {
  -webkit-transition: transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
  transition: transform 1s cubic-bezier(0, 0, 0.44, 1.18);
}
.section-special-event .image .image-1:hover {
  z-index: 9;
}
.section-special-event .image .image-1:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}
.section-special-event .image .image-2 {
  position: absolute;
  top: 13%;
  left: 30%;
  overflow: hidden;
  z-index: 2;
}
.section-special-event .image .image-2 img {
  -webkit-transition: transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition: transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}
.section-special-event .image .image-2:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}
.section-special-event .image.style-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: end;
}
.section-special-event .image.style-2 .image-2 {
  left: 0%;
}
.section-special-event .special-event-content .text {
  letter-spacing: 0.1px;
  padding-bottom: 21px;
}
.section-special-event .special-event-content ul li {
  font-family: "Marcellus";
  color: var(--color-text-3);
  letter-spacing: 0.3px;
  line-height: 38px;
}
.section-special-event .special-event-content ul li:last-child {
  padding-bottom: 0 !important;
}
.section-special-event .special-event-content ul li i {
  color: var(--Primary);
  padding-right: 15px;
}

.special-event-1-content {
  padding: 129px 0 0 67px;
}

.special-event-2-content {
  padding: 129px 0 0 0;
}

.section-icon-special-event-inner {
  background-image: url("../image/bg/section-2-page-special.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 124px 0;
}
.section-icon-special-event-inner .content .title {
  padding-bottom: 79px;
}
.section-icon-special-event-inner .list-icon {
  gap: 63px;
}
.section-icon-special-event-inner .list-icon .box-icon .icon {
  padding-bottom: 34px;
}

.section-special-event-contact .inner {
  background-image: url("../image/bg/contact-page-special.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 176px 0 133px;
  background-attachment: fixed;
}
.section-special-event-contact .inner::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.section-special-event-contact .inner h2 {
  position: relative;
  color: var(--White);
  font-family: "Marcellus";
  padding-bottom: 35px;
  padding-left: 88px;
  line-height: 55px !important;
}
.section-special-event-contact .inner h2 span {
  color: var(--Primary);
}

/*-------------- Responsive ----------------- */
@media (max-width: 1868px) {
  .section-about-us .section-about-us-content {
    padding: 0 !important;
    justify-content: center;
  }
}
@media (max-width: 1820px) {
  .header-inner {
    margin-left: 205px;
    margin-right: 15px;
  }
}
@media (max-width: 1790px) {
  .section-3 {
    padding-left: 50px !important;
  }
  .section-3-inner .section-3-left {
    justify-content: space-between;
  }
  .list-icon {
    padding: 0px !important;
    margin: 0 auto !important;
  }
  .section-2 .icon-section {
    right: 0 !important;
  }
}
@media (max-width: 1680px) {
  .section-3-inner {
    gap: 40px;
  }
}
@media (max-width: 1665px) {
  .meet-the-team-1-right {
    padding: 50px 0 0 0 !important;
  }
}
@media (max-width: 1572px) {
  .section-4 .section-4-content {
    padding: 0 0 0 50px !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .section-4-2 .section-4-2-content {
    padding: 0 0 0 50px !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
}
@media (max-width: 1525px) {
  .section-private-dinner .section-private-dinner-inner .section-private-dinner-content {
    padding: 15px;
  }
  .section-private-dinner .section-private-dinner-inner .section-private-dinner-content br {
    display: none;
  }
  .section-private-dinner .section-private-dinner-inner .section-private-dinner-content ul {
    padding-bottom: 20px;
  }
}
@media (max-width: 1500px) {
  .section-3-inner {
    gap: 10px;
  }
  .secition-meet-the-team-1 .secition-meet-the-team-1-inner {
    flex-direction: column;
    gap: 50px !important;
  }
  .secition-meet-the-team-1 .meet-the-team-1-left {
    width: 100%;
  }
  .secition-meet-the-team-1 .meet-the-team-1-right {
    width: 100%;
    padding: 0 15px 15px !important;
  }
  .secition-meet-the-team-1 .meet-the-team-1-right .wg-bio {
    width: 100%;
  }
  .secition-meet-the-team-1 .meet-the-team-1-right .wg-bio br {
    display: none;
  }
  .secition-meet-the-team-1 .meet-the-team-1-right .personal-information {
    width: 100%;
  }
  .secition-meet-the-team-1 .meet-the-team-1-right .personal-information br {
    display: none;
  }
  .list-icon {
    gap: 0 !important;
    justify-content: space-between;
  }
  .slider-testimonial-prev {
    left: 0%;
  }
  .slider-testimonial-next {
    right: 0%;
  }
  .section-about-us-content .title {
    padding-bottom: 20px !important;
  }
  .section-about-us-content .icon {
    padding-bottom: 15px !important;
  }
}
@media (max-width: 1470px) {
  .recommended .slider-recommended-next {
    right: 0% !important;
  }
  .recommended .slider-recommended-prev {
    left: 0% !important;
  }
  .header-right {
    gap: 10px !important;
  }
  .header-icon {
    gap: 10px !important;
  }
}
@media (max-width: 1400px) {
  .section-menu {
    margin-bottom: -30px;
  }
  .box-item {
    margin-bottom: 30px;
  }
  .section-3 {
    padding-left: 0px !important;
  }
  .slider-perview-3 .arrow-slider-btn {
    display: none !important;
  }
}
@media (max-width: 1350px) {
  .section-3-right-content .text br {
    display: none;
  }
}
@media (max-width: 1335px) {
  .top-bar-inner {
    justify-content: center !important;
  }
  .section-3-content .text .steak-level {
    font-size: 17px;
  }
  .section-4 .section-4-inner {
    flex-wrap: wrap;
  }
  .section-4 .image {
    flex: 1 1 50%;
  }
  .section-4 .section-4-content {
    flex: 1 1 50%;
  }
  .section-4 .section-4-content br {
    display: none;
  }
  .section-4-2 .section-4-2-inner {
    flex-wrap: wrap;
  }
  .section-4-2 .image {
    flex: 1 1 50%;
  }
  .section-4-2 .section-4-2-content {
    flex: 1 1 50%;
  }
  .section-4-2 .section-4-2-content br {
    display: none;
  }
  .discover-item .text br {
    display: none;
  }
  .section-3-right .section-3-right-content .title {
    font-size: 30px !important;
    line-height: 30px !important;
  }
}
@media (max-width: 1275px) {
  .menu-primary-menu {
    gap: 15px !important;
  }
}
@media (max-width: 1250px) {
  .widget-tabs.style-img .widget-menu-tab {
    overflow-x: auto;
  }
  .section-about-us-content .text {
    padding-bottom: 20px !important;
  }
  .section-about-us-content .text .pb-15 {
    padding-bottom: 0px !important;
  }
  .section-private-dinner .section-private-dinner-inner {
    flex-direction: column;
  }
  .section-private-dinner .section-private-dinner-inner .image {
    width: 100%;
  }
  .section-private-dinner .section-private-dinner-inner .section-private-dinner-content {
    padding: 50px 15px !important;
    width: 100%;
  }
  .section-private-dinner .section-private-dinner-inner .section-private-dinner-content .text br {
    display: none;
  }
  .section-contact-2 .contact-inner-2 {
    padding-bottom: 100px !important;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    display: grid;
    position: relative;
    grid-template-areas: "bb bb" "aa cc";
  }
  .section-contact-2 .contact-inner-2 .image {
    margin: 0 !important;
    grid-area: aa;
  }
  .section-contact-2 .contact-inner-2 .section-contact-2-content {
    grid-area: bb;
  }
  .section-contact-2 .contact-inner-2 .wg-map {
    margin: 0 !important;
    grid-area: cc;
    width: 100%;
    height: 100%;
  }
  .section-contact-2 .contact-inner-2 .wg-map .box-map.style-2 {
    width: 100% !important;
    height: 100% !important;
  }
  .section-4 .section-4-content .title {
    font-size: 30px !important;
    line-height: 30px !important;
    padding-bottom: 30px !important;
  }
  .section-4 .section-4-content .name {
    padding-bottom: 30px !important;
  }
  .section-4-2 .section-4-2-content .title {
    font-size: 30px !important;
    line-height: 30px !important;
    padding-bottom: 30px !important;
  }
  .section-4-2 .section-4-2-content .text {
    padding-bottom: 30px !important;
  }
  .section-contact-2 .title {
    font-size: 30px !important;
    line-height: 30px !important;
    padding-bottom: 30px !important;
  }
  .section-contact-2 .number-phone {
    font-size: 25px !important;
    line-height: 30px !important;
  }
  .section-gallery-inner .title {
    font-size: 30px !important;
    line-height: 30px !important;
    padding-bottom: 30px !important;
  }
}
@media (max-width: 1178px) {
  .section-3-left {
    gap: 0 !important;
  }
}
@media (max-width: 1150px) {
  .site-logo {
    top: 7px !important;
    left: 15px !important;
  }
  .site-logo img {
    max-width: 50% !important;
  }
  .header-icon {
    padding-right: 65px;
  }
  .mobile-button {
    display: block !important;
  }
  .menu-primary-menu {
    display: none;
  }
  .top-bar-inner {
    display: none !important;
  }
  .header-innner-wrap {
    padding-top: 15px;
  }
  .list-icon {
    flex-wrap: wrap;
  }
  .list-icon .box-icon {
    padding-top: 30px;
    flex: 1 1 50%;
  }
  .list-icon .box-icon .icon {
    padding-bottom: 10px !important;
  }
  .list-icon .box-icon .title-box-icon {
    padding-bottom: 10px !important;
  }
  .special-event-content {
    padding: 0 !important;
  }
  .about-2-inner .flat-accordion {
    padding: 0px 0 15px !important;
  }
  .section-about-inner .image {
    margin: 0 !important;
  }
  .section-about-inner .about-content {
    padding: 30px 0 0 !important;
  }
  .section-2 {
    padding: 100px 0 100px !important;
  }
  .section-2-content {
    padding-bottom: 10px !important;
  }
  .page-title-home .title br {
    display: none;
  }
  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .section-about-us-content .line {
    display: none;
  }
  .section-about-us-content .text br {
    display: none;
  }
  #header_main.is-fixed.is-fixed.is-small .header-inner {
    padding: 10px 0 !important;
  }
  .page-title-home .content {
    padding: 100px 0 0 !important;
  }
}
@media (max-width: 1090px) {
  .section-3-content .text .steak-level {
    line-height: 35px;
  }
  .section-about-us-content .title {
    font-size: 30px !important;
    line-height: 30px !important;
  }
}
@media (max-width: 1050px) {
  .section-3-content .text {
    padding-bottom: 30px !important;
  }
}
@media (max-width: 1024px) {
  .secition-meet-the-team-1-inner .personal-information .text-color-primary {
    margin: 0 !important;
  }
  .section-box-text-inner {
    flex-wrap: wrap;
    gap: 0 !important;
  }
  .section-box-text-inner .box-text {
    flex: 1 1 50%;
    padding: 15px;
  }
  .section-4 .image {
    flex: 1 1 100%;
  }
  .section-4 .section-4-inner .section-4-content {
    flex: 1 1 100%;
    padding: 100px 15px !important;
  }
  .section-4 .section-4-inner.style-2 .section-4-content {
    padding: 50px 0 0 !important;
  }
  .section-4-2 .image {
    flex: 1 1 100%;
  }
  .section-4-2 .section-4-2-content {
    flex: 1 1 100%;
    padding: 100px 15px !important;
  }
  .gallery-box.style-2 {
    grid-gap: 15px;
  }
  .header-right {
    gap: 20px !important;
  }
}
@media (max-width: 991px) {
  .section-special-event-1-title h4 {
    padding-bottom: 100px !important;
  }
  .section-special-event-contact .inner {
    padding: 100px 0 !important;
  }
  .section-private-dinner-content {
    padding: 100px 15px !important;
  }
  .gallery-item {
    padding-right: 10px !important;
  }
  .banner-content {
    padding: 100px 0 !important;
    text-align: center;
  }
  .banner-content h1 br {
    display: none;
  }
  .testimonial-item {
    padding: 100px 0 100px !important;
  }
  .testimonial-item .text {
    padding: 0 !important;
  }
  .recommended-1 .image {
    padding: 30px 0 !important;
  }
  .recommended-item br {
    display: none;
  }
  .gallery-box {
    gap: 10px !important;
  }
  .special-menu-content {
    padding: 0 !important;
  }
  .content-section .text {
    padding-bottom: 30px !important;
  }
  .section-3 {
    padding: 100px 15px !important;
  }
  .section-3 .section-3-right-content {
    padding: 15px !important;
  }
  .section-special-menu .bottom-btn {
    padding: 0 !important;
  }
  .recommended .recommended-item {
    padding: 30px 0 0 !important;
  }
  .recommended .line {
    display: none;
  }
  h3,
  h4 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
  .tf-spacing-1,
  .tf-spacing-17,
  .tf-spacing-18,
  .tf-spacing-19 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .tf-spacing-2,
  .tf-spacing-3,
  .tf-spacing-4,
  .tf-spacing-6,
  .tf-spacing-8,
  .tf-spacing-11,
  .tf-spacing-12,
  .tf-spacing-13,
  .tf-spacing-14,
  .tf-spacing-15,
  .tf-spacing-16,
  .tf-spacing-20,
  .tf-spacing-21,
  .tf-spacing-23 {
    padding-top: 0;
    padding-bottom: 100px !important;
  }
  .tf-spacing-5,
  .tf-spacing-7,
  .tf-spacing-9,
  .tf-spacing-10 {
    margin-top: 0;
    margin-bottom: 100px !important;
  }
  .tf-spacing-13 {
    padding-top: 100px !important;
    padding-bottom: 0;
  }
  .page-title-home .title {
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 50px !important;
  }
  .page-title-content {
    padding: 100px 0 100px !important;
  }
  .page-title-content .title {
    padding-bottom: 0 !important;
  }
  .contact-us-content {
    padding: 100px 0 0px !important;
  }
  .contact-us-content.special-menu-content {
    padding: 0 !important;
  }
  .section-private-dinner-content .title {
    font-size: 30px !important;
    line-height: 30px !important;
  }
  .wg-blog {
    margin-bottom: 50px !important;
  }
  .section-box-text-inner {
    padding: 35px 0 35px !important;
  }
  .contact-inner {
    padding: 50px 0 0 !important;
  }
  .section-2-item {
    top: 5% !important;
  }
  .footer-top {
    padding-top: 100px !important;
  }
  .section-about-us-inner {
    flex-direction: column;
  }
  .section-about-us-inner .widget-video {
    width: 100% !important;
  }
  .section-about-us-inner .section-about-us-content {
    width: 100% !important;
    padding: 100px 15px !important;
  }
  .section-about-us-inner .section-about-us-content .text {
    padding: 0 !important;
  }
  .content-section .title {
    font-size: 30px;
    line-height: 30px;
  }
  .toggle-title {
    font-size: 20px !important;
    line-height: 20px !important;
  }
  .box-icon .title-box-icon {
    font-size: 20px !important;
    line-height: 20px !important;
  }
  .banner-content .title {
    font-size: 30px;
    line-height: 30px !important;
  }
  .special-event-content br {
    display: none;
  }
  .wg-shop-detail .content {
    padding: 0 !important;
  }
  .section-reservation-inner {
    gap: 15px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "aa cc" "bb bb";
  }
  .section-reservation-inner .image-1 {
    grid-area: aa;
    margin: 0 !important;
  }
  .section-reservation-inner .form-book {
    grid-area: bb;
    width: 100% !important;
  }
  .section-reservation-inner .image-2 {
    margin: 0 !important;
    grid-area: cc;
  }
  .note {
    padding: 50px 15px !important;
  }
  .widget-menu-tab {
    justify-content: start !important;
  }
  .arrow-slider-btn {
    display: none !important;
  }
  .gallery-box.style-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-areas: "aa bb" "cc ff" "dd dd" "gg gg" "ee hh";
  }
  .gallery-box.style-2 .gallery-item-8 {
    display: block;
  }
  .page-title-content {
    text-align: center;
  }
  .section-3-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-3-inner .section-3-right {
    max-width: 100%;
  }
  .section-3-inner .line {
    display: none;
  }
  .discover-item {
    padding: 0 !important;
  }
}
@media (max-width: 768px) {
  .shop-item {
    padding-bottom: 30px !important;
  }
  .blog-details .widget-video {
    padding-bottom: 15px !important;
  }
  h3,
  h4 {
    font-size: 20px !important;
    line-height: 30px !important;
  }
  .section-3-left .image {
    flex: 1 1 50%;
  }
  .our-menu-list {
    padding: 0 !important;
  }
  .meet-the-team-1-right {
    flex-direction: column;
    gap: 50px !important;
  }
  .meet-the-team-1-right .personal-information .text-color-primary {
    padding-bottom: 15px !important;
  }
  .meet-the-team-1-right .personal-information .text {
    padding-bottom: 15px !important;
  }
  .meet-the-team-1-right .personal-information::before {
    display: none;
  }
  .box-icon {
    flex: 1 1 100% !important;
  }
  .box-icon br {
    display: none;
  }
  .section-1 .section-1-inner {
    gap: 30px !important;
  }
  .name-food .line {
    margin: auto 10px 10px !important;
  }
  .content-section .title {
    padding: 0 !important;
  }
  .section-special-event-contact .inner h2 {
    padding: 0 15px !important;
  }
  .section-special-event .image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .section-special-event .image .image-2 {
    position: unset;
  }
  .special-event-1-content {
    padding-top: 30px !important;
  }
  .special-event-2-content {
    padding-bottom: 30px !important;
  }
  .content-section.style-3 ul {
    flex-direction: column;
    gap: 10px;
  }
  .icon-box {
    padding-bottom: 30px !important;
  }
  .icon-box .icon {
    padding-bottom: 15px !important;
  }
  .icon-box .title-icon {
    padding-bottom: 15px !important;
  }
  .section-2 .section-2-item {
    display: none;
  }
  .wg-404 .content .title::before {
    transform: translateX(-175px);
    top: 0;
    right: 39%;
    font-size: 165px;
  }
  .wg-404 .content .title img {
    width: 200px;
  }
  .wg-404 .content .title::after {
    transform: translateX(175px);
    top: 0;
    left: 36.5%;
    font-size: 165px;
  }
  .form-book {
    padding: 80px 15px !important;
  }
  .footer-middel {
    padding: 50px 0 0;
  }
  .footer-menu-list {
    padding-bottom: 50px;
  }
  .footer-menu-list .title {
    padding-bottom: 10px !important;
  }
  .footer-menu-list ul {
    padding-bottom: 15px !important;
  }
  .footer-menu-list .text {
    padding-bottom: 15px !important;
  }
  .footer-top {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom p {
    padding-bottom: 15px;
  }
  .title-footer {
    padding-bottom: 20px;
  }
  .section-2-content {
    padding-bottom: 30px !important;
  }
}
@media (max-width: 700px) {
  .steak-level {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 650px) {
  .section-3-content .text {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 628px) {
  .section-3-left .image {
    flex: 1 1 100%;
  }
  .section-3-left .section-3-content {
    flex: 1 1 100%;
  }
}
@media (max-width: 622px) {
  .section-3-content .text {
    padding-bottom: 20px !important;
  }
}
@media (max-width: 600px) {
  .page-title-home .content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
  }
  .header-right .tf-btn {
    display: none;
  }
  .icon-list .icon-box {
    flex: 1 1 100%;
  }
  .icon-list .icon-box .text br {
    display: none;
  }
}
@media (max-width: 550px) {
  .section-3-content {
    display: none;
  }
  .slide-home .image img {
    height: 200px;
  }
  .section-box-text-inner .box-text {
    flex: 1 1 100%;
  }
  .wg-testimonial .testimonial-item .text {
    padding: 0 !important;
  }
  .section-reservation-inner {
    gap: 15px !important;
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "aa" "bb" "cc";
  }
  .section-reservation-inner .form-book {
    padding-bottom: 0 !important;
  }
  .section-reservation-inner .bottom {
    padding: 0 !important;
  }
  .section-3 .section-3-content {
    left: 30px;
  }
  .tf-dropdown-sort .tf-btn {
    padding: 15px !important;
  }
  .meta {
    flex-direction: column;
  }
  .cols {
    flex-direction: column;
  }
  .social-list {
    flex-wrap: wrap;
  }
  .page-title-content .title {
    font-size: 40px !important;
  }
  .section-contact-2 .contact-inner-2 {
    grid-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    display: grid;
    position: relative;
    grid-template-areas: "bb" "cc";
  }
  .section-contact-2 .contact-inner-2 .wg-map {
    border: unset;
    padding: 0 !important;
  }
  .section-contact-2 .contact-inner-2 .wg-map .box-map.style-2 {
    width: 100% !important;
    height: 409px !important;
  }
  .section-contact-2 .contact-inner-2 .wg-map .box-map #map1 {
    border-radius: unset;
    height: 60vh !important;
  }
  .section-contact-2 .image {
    display: none;
  }
  .footer-bottom p {
    text-align: center;
    padding-bottom: 20px;
    line-height: 20px !important;
  }
  .footer-bottom .footer-bottom-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px !important;
  }
  #header_main.is-fixed.is-small .header-innner-wrap {
    padding-top: 10px !important;
  }
  .header-inner {
    margin: 0 !important;
  }
}



.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ccc;
  padding: 20px;
  font-family: sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
}

.cookie-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-options {
  margin: 15px 0;
}

.cookie-options label {
  margin-right: 15px;
}

.cookie-buttons button {
  margin-right: 10px;
  padding: 10px 15px;
  border: none;
  background-color: #005bb5;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-buttons button:hover {
  background-color: #004799;
}





/*# sourceMappingURL=styles.css.map */
