
:root {
  --primary-color: #bf2527;
  --secondary-color: #162f51;
  --text-color: #666666;
  --text-color-dark: #121212;
  --text-color-white: #ffffff;

  --theme-color-light: #ffffff;
  --theme-color-white: #ffffff;
  --theme-color-white-rgb: 255, 255, 255;
  --theme-color-dark: #121212;
  --theme-color-dark2: #222222;
  --theme-color-gray: #f6f6f6;
  --theme-color-black: #000;
  --theme-color-black-rgb: 0, 0, 0;
  --theme-color1: #162f51;
  --theme-color1-rgb: 193, 35, 39;
  --theme-color2: #fdece3;
  --theme-color3: #faf7f2;
  --theme-color4: #cab293;
  --theme-color5: #cb935d;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --bg-theme-color3: var(--theme-color3);
  --bg-theme-color4: var(--theme-color4);
  --gradient-1: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.64) 42%,
    rgba(0, 0, 0, 0.32) 100%
  );
  --gradient-2: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  --gradient-3: linear-gradient(
    275.66deg,
    rgba(0, 0, 0, 0.95) 5.7%,
    #1a1a1a 45.93%
  );

  --text-color9: #999999;
  --headings-color: #bf2527;
  --review-color: #ffc737;
  --link-color: var(--headings-color);
  --link-hover-color: var(--headings-color);
  /* --title-font: "Playfair Display", serif; */
  --text-font: "Open Sans", serif;
  --text-font2: "Barlow Condensed", serif;
  --body-font-size: 16px;
  --body-line-height: 1.75;
  --body-font-weight: 400;
  --line-height-heading-h1: 1.2em;
  --line-height-heading: 1.2;
  --line-height-heading-small: 1.35em;
  --h1-font-size: 72px;
  --h2-font-size: 50px;
  --h3-font-size: 36px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --h1-font-weight: 400;
  --h2-font-weight: 400;
  --h3-font-weight: 400;
  --h4-font-weight: 400;
  --h5-font-weight: 400;
  --h6-font-weight: 400;
  --sec-title-subtitle-font-size: 14px;
  --sec-title-subtitle-color: var(--theme-color1);
  --sec-title-subtitle-font-family: var(--text-font);
  --sec-title-subtitle-font-weight: 400;
  --sec-title-subtitle-line-height: 28px;
  --sec-title-color: var(--headings-color);
  --sec-title-font-size: var(--h2-font-size);
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #f2f3f5;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #131313;
  --container-width: 1200px;
  --small-container-width: 1000px;
  --large-container-width: 1760px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/

@font-face { 
  font-display: swap !important; 
}

::-moz-selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color-dark);
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

* {
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p,
.text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--headings-color);
  font-family: var(--title-font);
  line-height: var(--line-height-heading-);
  position: relative;
}
h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small,
h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
  color: var(--headings-color);
  font-weight: normal;
  line-height: 1;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  color: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading-small);
  letter-spacing: 0.15px;
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading-small);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):hover,
p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b,
a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol,
ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

b,
strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: var(--container-width);
  }
}
/*=== Default Form ===*/
.form-control,
.input-text {
  height: calc(2.25rem + 27px);
  padding: 15px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control:focus {
  border-color: #d3d3d3 !important;
}

.form-control::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder,
.input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder,
.input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
form button {
  background-color: var(--primary-color) !important;
  color: var(--text-color-white) !important;
}
/* -------- Dark Theme Styling ---------- */
.dark-layout {
  background-color: var(--theme-color-dark) !important;
  --sec-title-color: var(--theme-color-light);
}
.dark-layout .sticky-header .main-menu .navigation > li > a,
.dark-layout h1,
.dark-layout h2,
.dark-layout h3,
.dark-layout h4,
.dark-layout h5,
.dark-layout h6 {
  color: var(--theme-color-light);
}
.dark-layout .preloader {
  background-color: var(--theme-color-dark);
}
.dark-layout .preloader:after {
  background-image: url("");
}
.dark-layout .sticky-header {
  background-color: var(--theme-color-dark);
}
.dark-layout .hidden-bar .upper-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.dark-layout .hidden-bar .social-links li {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/*** 

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/*** 

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

figure.image {
  margin-bottom: 0;
}

.title a {
  color: inherit;
}

.color1 {
  color: var(--theme-color1);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  z-index: 99;
  background-color: #ffffff;
}

.large-container {
  position: static;
  max-width: var(--large-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-pattern-1 {
  background-image: url(../images/icons/pattern-1.html);
}

.text-theme-color1 {
  color: var(--primary-color);
}

.bg-theme-color1 {
  background-color: var(--theme-color1);
}

.text-theme-color2 {
  color: var(--theme-color2);
}

.bg-theme-color2 {
  background-color: var(--theme-color2);
}

/*=======================
    Preloader
=======================*/
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
}
.preloader:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  margin-left: -75px;
  margin-top: -30px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: pulse 1s infinite linear;
  animation: pulse 1s infinite linear;
  background-image: url(../images/logo/favicon.ico);
  content: "";
}
.preloader:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--theme-color-dark);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--title-font);
  letter-spacing: 2px;
  text-transform: uppercase;
  content: "Loading";
  -webkit-transition: none;
  transition: none;
}

/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  font-size: 16px;
  line-height: 40px;
  color: var(--text-color-white);
  text-align: center;
  cursor: pointer;
  background-color: var(--primary-color);
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*======================
    Tabs Box
======================*/
.tabs-box {
  position: relative;
}
.tabs-box .tab {
  display: none;
}
.tabs-box .tab.active-tab {
  display: block;
}

/*=======================
    List Styles
=======================*/
.list-style-one {
  position: relative;
}
.list-style-one li {
  position: relative;
  font-size: 12px;
  line-height: 30px;
  font-weight: 400;
  color: var(--text-color);
  margin-right: 50px;
  margin-bottom: 7px;
  padding-left: 22px;
}
.list-style-one li .icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme-color1);
}

/*=======================
    List Styles
=======================*/
.list-style-two {
  margin-top: 28px;
}
.list-style-two li {
  font-size: 16px;
  color: var(--text-color);
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.list-style-two li .icon {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme-color1);
}

/*===========================
    Social Icons Styles
============================*/
.social-icon-one {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.social-icon-one li {
  position: relative;
  margin-left: 20px;
}
.social-icon-one li:first-child {
  margin-left: 0;
}
.social-icon-one li a {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 30px;
  color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-one li a:hover {
  color: var(--theme-color1);
}

/*======================
    Play Buttons
======================*/
.play-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.play-btn .icon {
  position: relative;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--theme-color1);
  background-color: var(--theme-color-light);
  border: 1px solid var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-btn .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 10px 25px;
  text-transform: capitalize;
  padding-left: 30px;
  margin-left: -10px;
  color: var(--theme-color2);
  background: var(--theme-color-gray);
  border-radius: 0px 22px 22px 0px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-btn:hover .icon {
  background-color: var(--bg-theme-color1);
  color: var(--theme-color-light);
}
.play-btn:hover .title {
  background-color: var(--bg-theme-color2);
  color: var(--theme-color-light);
}

/*======================
    Media Play Button 
======================*/
.play-now {
  position: relative;
  display: block;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.play-now .icon {
  position: relative;
  display: inline-block;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 85px;
  background-color: #ffffff;
  color: var(--bg-theme-color2);
  z-index: 1;
  font-size: 18px;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 0px 10px 0 rgba(255, 255, 255, 0.3);
  -webkit-transform-origin: center;
  transform-origin: center;
}
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 70px;
  width: 70px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  content: "";
}
.play-now .ripple.light {
  -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255);
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
}
.play-now .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.play-now .ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 50px rgba(233, 35, 47, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
    box-shadow: 0 0 0 0 rgba(233, 35, 47, 0);
  }
}
/*======================
    Carousel Navs
======================*/
.default-navs .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.default-navs .owl-next,
.default-navs .owl-prev {
  display: block;
  width: 60px;
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  line-height: 58px;
  color: var(--theme-color-dark);
  background: #fff;
  border: 1px solid #e3e3e3;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  margin-left: 20px;
}
.default-navs .owl-next:hover,
.default-navs .owl-prev:hover {
  border-color: var(--theme-color1);
}
.default-navs .owl-prev {
  margin-left: 0;
}

.disable-navs .owl-nav {
  display: none;
}

.disable-dots .owl-dots {
  display: none;
}

.before-none:before,
.before_none:before {
  display: none;
}

.after-none:after,
.after_none:after {
  display: none;
}

.overlay-anim {
  position: relative;
}
.overlay-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.overlay-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

section {
  position: relative;
}

.checkout-form-section-two
  .checkout-form
  .checkout-field
  .chk-field
  select
  option {
  font-size: 14px;
  padding: 0 10px;
  text-align: center;
}

.checkout-form-section-two {
  width: auto;
}

.checkout-form-section-two .checkout-form .btn-style-one {
  padding: 0 50px !important;
  width: auto !important;
}
@media (max-width: 991.98px) {
  .checkout-form-section-two .checkout-form .btn-style-one {
    width: 100% !important;
  }
}

.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 600;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.theme-btn .btn-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*Btn Style One*/
.btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  padding: 15px 30px;
  overflow: hidden;
  color: var(--headings-color);
  background: #f8f5f0;
  text-transform: uppercase;
  z-index: 9;
  border-radius: 30px;
}
.btn-style-one i {
  position: relative;
  display: block;
  margin-left: 10px;
}
.btn-style-one:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--bg-theme-color1);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-one:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.btn-style-one:hover {
  color: #fff;
}

/*Btn Style Two*/
.btn-style-two {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  padding: 16px 32px;
  overflow: hidden;
  color: var(--theme-color-light);
  border: 1px solid var(--theme-color1);
  background-color: var(--theme-color1);
  text-transform: uppercase;
  z-index: 9;
}
.btn-style-two i {
  position: relative;
  display: block;
  margin-left: 10px;
}
.btn-style-two:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--theme-color-dark);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-two:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.btn-style-two:hover {
  color: var(--theme-color-light);
}

/*Btn Style Three*/
.btn-style-three {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.1em;
  padding: 13px 39px 17px;
  overflow: hidden;
  color: var(--theme-color-light);
  border: 1px solid var(--theme-color-light);
  background-color: transparent;
  text-transform: uppercase;
  z-index: 9;
}
.btn-style-three i {
  position: relative;
  display: block;
  margin-left: 10px;
}
.btn-style-three:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--bg-theme-color1);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-three:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.btn-style-three:hover {
  border-color: var(--bg-theme-color1);
  color: var(--theme-color-light);
}

/*Btn Style Four*/
.btn-style-four {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.1em;
  padding: 15px 50px;
  overflow: hidden;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;
  text-transform: uppercase;
  z-index: 9;
}
.btn-style-four i {
  position: relative;
  display: block;
  margin-left: 10px;
}
.btn-style-four:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background-color: var(--secondary-color);
  border-radius: inherit;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-four:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.btn-style-four:hover {
  border-color: var(--bg-theme-color1);
  color: var(--theme-color-light);
}

.theme-btn.small {
  padding: 10px 30px;
  line-height: 20px;
  font-size: 10px;
}

.theme-btn.large {
  padding: 20px 60px;
  line-height: 25px;
}

.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
  animation: bounce-y 10s infinite linear;
}

@-webkit-keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounce-z {
  -webkit-animation: fa-spin 70s infinite;
  animation: fa-spin 70s infinite;
}

.reveal-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.reveal-left.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
/* @media (max-width: 767px) {
  .reveal-left {
    clip-path: none !important;
  }
  .reveal-left img {
    display: block;
    width: 100%;
    height: auto;
  }
} */

.reveal-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.reveal-right.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-top {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.reveal-top.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-bottom {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.reveal-bottom.animated {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.img-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-fit-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.btn-anim {
  position: relative;
}
.btn-anim:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.btn-anim:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.anim-inactive-image {
  -webkit-animation: anim-inactive-image 10s infinite linear;
  animation: anim-inactive-image 10s infinite linear;
}

@-webkit-keyframes anim-inactive-image {
  0% {
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}
@keyframes anim-inactive-image {
  0% {
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

/*** 

====================================================================
Main Header
====================================================================

/* Header Span - Adjusted for sticky header */
.header-span {
  position: relative;
  height: 80px;
  display: block;
  width: 100%;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .header-lower {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .main-box {
  position: relative;
  left: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .main-box .nav-outer {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop Menu Styles with Side Arrows */
.main-menu {
  position: relative;
}

@media (max-width: 991.98px) {
  .main-menu {
    display: none;
  }
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 25px 0px;
  margin-right: 30px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li:last-child {
  margin-right: 0;
}

.main-menu .navigation > li > a {
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-family: var(--text-font);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 30px;
  opacity: 1;
  padding: 0;
  position: relative;
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-decoration: none;
}

.main-menu .navigation > li > a:hover {
  color: var(--theme-color1);
}

.main-menu .navigation > li > a.active {
  color: var(--theme-color1);
  font-weight: 600;
}

/* Dropdown Arrow Styles - Side Position */
.dropdown-arrow {
  font-size: 10px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  color: #000000;
}

.main-menu .navigation > li.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--theme-color1);
}

/* Dropdown Menu Styles */
/* Center Dropdown Menu Styles */
.main-menu .navigation > li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
}

.main-menu .navigation > li > .dropdown-menu {
  position: absolute;
  left: 50%; /* Center horizontally */
  top: 100%;
  width: 220px;
  z-index: 100;
  padding: 15px 0;
  background-color: #ffffff;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px); /* Center and offset */
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/* For Mega Dropdown - Keep it centered */
.main-menu .navigation > li.mega-dropdown > .mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  top: 100%;
  width: 600px;
  z-index: 1000;
  padding: 30px;
  background-color: #ffffff;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: flex;
  gap: 30px;
}

.main-menu .navigation > li.mega-dropdown:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Center the text in dropdown items */
.main-menu .navigation > li > .dropdown-menu > li > a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 14px;
  text-align: center; /* Center text */
  text-transform: capitalize;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #333;
  text-decoration: none;
}

/* Hover effect for centered dropdown items */
.main-menu .navigation > li > .dropdown-menu > li > a:hover {
  color: var(--theme-color1);
  background-color: #f8f9fa;
}

/* Ensure dropdown parent has proper positioning */
.main-menu .navigation > li.dropdown {
  position: relative;
}

/* Fix for the Reservation mega dropdown columns */
.mega-menu-column {
  flex: 1;
}

.mega-menu-column h4 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--theme-color1);
  text-align: center; /* Center column headers */
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-column ul li {
  margin-bottom: 8px;
  text-align: center; /* Center list items */
}

.mega-menu-column ul li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.mega-menu-column ul li a:hover {
  color: var(--theme-color1);
}

/* Update the JavaScript for centered dropdowns */
.main-menu .navigation > li.dropdown:hover > .dropdown-menu,
.main-menu .navigation > li.mega-dropdown:hover > .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  display: block !important;
}

.main-menu .navigation > li.mega-dropdown:hover > .mega-menu {
  display: flex !important;
}
/* Ensure dropdown arrows are properly positioned */
.main-menu .navigation > li.dropdown {
  position: relative;
}

/* Fix for dropdown menu items */
.main-menu .navigation > li > .dropdown-menu > li > a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 1.4;
  font-weight: 400;
  font-size: 14px;
  text-align: center; /* Center text in dropdown */
  text-transform: capitalize;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #333;
  text-decoration: none;
}

/* Hover effect for dropdown items */
.main-menu .navigation > li > .dropdown-menu > li > a:hover {
  color: var(--theme-color1);
  background-color: #f8f9fa;
  text-align: center;
}


/* Mega Dropdown for Reservation */
/* Centered Mega Dropdown */
.main-menu .navigation > li.mega-dropdown {
  position: static; /* Important for centered mega menu */
}

.main-menu .navigation > li.mega-dropdown > .mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  top: 100%;
  width: 600px;
  z-index: 1000;
  padding: 30px;
  background-color: #ffffff;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: flex;
  gap: 30px;
}

.main-menu .navigation > li.mega-dropdown:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-column {
  flex: 1;
}

.mega-menu-column h4 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--theme-color1);
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-column ul li {
  margin-bottom: 8px;
}

.mega-menu-column ul li a {
  color: #555;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.mega-menu-column ul li a:hover {
  color: var(--theme-color1);
  padding-left: 5px;
}

.main-header .outer-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

/*** 
====================================================================
    header-style-five
====================================================================
***/
.header-style-five {
  position: fixed;
  top: 0;
}

.header-style-five .header-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ====================================================================
   MOBILE MENU - FIXED VERSION
==================================================================== */

/* Mobile Nav Toggler */
.mobile-nav-toggler {
  display: none;
  cursor: pointer;
  z-index: 9999;
  background: none;
  border: none;
  padding: 10px;
  margin-left: 15px;
}

@media (max-width: 991.98px) {
  .mobile-nav-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav-toggler .icon {
    font-size: 24px;
    color: #000 !important;
    transition: all 0.3s ease;
  }
  
  .mobile-nav-toggler:hover .icon {
    color: var(--theme-color1) !important;
  }
  
  /* Hide desktop menu on mobile */
  .nav-outer {
    display: none !important;
  }
}

/* Mobile Menu Structure - FIXED */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: none;
}

.mobile-menu.menu-open {
  opacity: 1;
  visibility: visible;
  display: block;
}

.mobile-menu .menu-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background: #000;
  padding: 0;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 100000;
}

.mobile-menu.menu-open .menu-box {
  transform: translateX(0);
}

.menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 99999;
}

/* Mobile Menu Header - FIXED CLOSE BUTTON */
.upper-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #111;
  border-bottom: 1px solid #333;
  position: relative;
}

.nav-logo img {
  max-width: 120px;
  height: auto;
}

.close-btn {
  cursor: pointer;
  font-size: 24px;
  color: #fff !important;
  background: none;
  border: none;
  padding: 5px;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn:hover {
  color: var(--theme-color1) !important;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.mobile-nav li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav li a {
  display: block;
  padding: 15px 20px;
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.mobile-nav li a:hover {
  color: var(--theme-color1) !important;
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile Dropdown Styles - IMPROVED */
.mobile-nav .dropdown .sub-menu {
  display: none;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .dropdown.active .sub-menu {
  display: block;
}

.mobile-nav .dropdown > .dropdown-toggle {
  position: relative;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .dropdown > .dropdown-toggle .fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.mobile-nav .dropdown.active > .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

.mobile-nav .dropdown .sub-menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .dropdown .sub-menu li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .dropdown .sub-menu li a {
  padding-left: 40px;
  font-size: 14px;
  background: #151515;
  color: #ccc !important;
}

.mobile-nav .dropdown .sub-menu li a:hover {
  color: var(--theme-color1) !important;
  background: rgba(255, 255, 255, 0.05);
}

/* Contact Info Styles - IMPROVED */
.contact-list-one {
  list-style: none;
  padding: 25px 20px;
  margin: 0;
  background: #111;
  border-top: 1px solid #333;
}

.contact-list-one li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-list-one li:last-child {
  margin-bottom: 0;
}

.contact-info-box {
  color: #fff;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.contact-info-box .icon {
  color: var(--theme-color1) !important;
  margin-right: 15px;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact-info-box .content {
  flex: 1;
}

.contact-info-box .title {
  display: block;
  font-size: 12px;
  color: #ccc;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box a, 
.contact-info-box .text {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
}

.contact-info-box a:hover {
  color: var(--theme-color1) !important;
}

/* Social Links - 5 ICONS */
.social-links {
  list-style: none;
  padding: 25px 20px;
  margin: 0;
  display: flex;
  justify-content: center;
  background: #111;
  border-top: 1px solid #333;
  gap: 10px;
}

.social-links li {
  margin: 0;
}

.social-links a {
  color: #fff !important;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--theme-color1) !important;
  border-color: var(--theme-color1);
  transform: translateY(-2px);
  background: rgba(181, 207, 43, 0.1);
}

/* Desktop - Hide mobile menu completely */
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  
  .mobile-nav-toggler {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .mobile-menu .menu-box {
    width: 300px;
  }
  
  .mobile-nav li a {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .mobile-nav .dropdown .sub-menu li a {
    padding-left: 35px;
  }
}

@media (max-width: 575.98px) {
  .mobile-menu .menu-box {
    width: 280px;
  }
  
  .upper-box {
    padding: 15px;
  }
  
  .nav-logo img {
    max-width: 100px;
  }
}

/* Body overflow handling */
body.mobile-menu-open {
  overflow: hidden;
}

/* Active state for mobile menu items */
.mobile-nav li a.active {
  color: var(--theme-color1) !important;
  background: rgba(181, 207, 43, 0.1);
}

/* Header Style Five Specific */
.header-style-five .main-box {
  background-color: transparent;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 991.98px) {
  .header-style-five .main-box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.header-style-five .main-menu .navigation > li > a {
  color: var(--theme-color-white);
  position: relative;
  text-transform: uppercase;
}

.header-style-five .main-menu .navigation > li > a:before {
  background-color: var(--headings-color);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0;
}

.header-style-five .main-menu .navigation > li > a:hover {
  color: var(--headings-color);
}

.header-style-five .main-menu .navigation > li > a:hover:before {
  width: 100%;
}

/* DESKTOP DROPDOWN FIXES */
/* Center Dropdown Menu Styles */
.main-menu .navigation > li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
}

.main-menu .navigation > li > .dropdown-menu {
  position: absolute;
  left: 50%; /* Center horizontally */
  top: 100%;
  width: 220px;
  z-index: 100;
  padding: 15px 0;
  background-color: #ffffff;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px); /* Center and offset */
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}


/* Sticky Header */
.sticky-header {
  background: #000;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  left: 0px;
  opacity: 0;
  padding: 0px 0px;
  position: fixed;
  top: 0px;
  visibility: hidden;
  width: 100%;
  z-index: 99999;
}

.sticky-header.fixed-header {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.sticky-header .logo {
  padding: 10px 0;
}

.sticky-header .logo img {
  max-height: 40px;
}

.sticky-header .nav-outer {
  background: none;
  margin-left: auto;
  position: relative;
}

.sticky-header .main-menu .navigation > li {
  margin: 0;
  margin-left: 25px;
  padding: 20px 0;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  color: var(--theme-color1);
}

.sticky-header .outer-box,
.sticky-header .navbar-header {
  display: none;
}

/* EMERGENCY OVERRIDES - ADD AT THE VERY END */
.mobile-menu {
    display: block !important;
}

.mobile-menu .menu-box {
    display: block !important;
}

.mobile-menu.menu-open {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu.menu-open .menu-box {
    transform: translateX(0) !important;
}

/* Remove any other conflicting mobile menu implementations */
[class*="mobile-menu-visible"],
.mobile-nav-toggler[style*="display: block"] {
    display: none !important;
}/***

====================================================================
  Hidden Sidebar style
====================================================================

***/
.toggle-hidden-bar {
  position: relative;
}

.hidden-bar {
  position: fixed;
  right: 0;
  top: 0px;
  height: 100%;
  overflow-y: auto;
  z-index: 99999;
  max-width: 320px;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  visibility: hidden;
  background: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hidden-bar::-webkit-scrollbar {
  width: 2px;
}
.hidden-bar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px #cecece;
  box-shadow: inset 0 0 2px #cecece;
  border-radius: 10px;
}
.hidden-bar::-webkit-scrollbar-thumb {
  background: #7a7a7a;
  border-radius: 10px;
}
.hidden-bar::-webkit-scrollbar-thumb:hover {
  background: #7a7a7a;
}
.hidden-bar .inner-box {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--theme-color-dark);
  height: 100%;
}
.hidden-bar .upper-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 20px 30px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.hidden-bar .upper-box .close-btn {
  position: relative;
  top: -5px;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: var(--theme-color1);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hidden-bar .upper-box .close-btn:hover {
  opacity: 0.5;
}
.hidden-bar .upper-box .nav-logo {
  position: relative;
  text-align: left;
  width: 100%;
}
.hidden-bar .upper-box .nav-logo img {
  max-height: 40px;
}
.hidden-bar .text-box {
  position: relative;
  padding: 25px 30px 25px;
}
.hidden-bar .text-box .title {
  color: var(--theme-color-light);
}
.hidden-bar .text-box .text {
  color: var(--theme-color-light);
}

.hidden-bar-back-drop {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

.active-hidden-bar .hidden-bar {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.active-hidden-bar .hidden-bar-back-drop {
  opacity: 1;
  visibility: visible;
}

.hidden-bar .social-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--theme-color-dark);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: auto;
}
.hidden-bar .social-links li {
  position: relative;
  text-align: center;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.hidden-bar .social-links li a {
  position: relative;
  display: block;
  line-height: 50px;
  height: 50px;
  font-size: 14px;
  text-align: center;
  color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.hidden-bar .social-links li a:hover {
  color: var(--theme-color1);
}

/*** 

====================================================================
Section Title
====================================================================

***/
.sec-title {
  position: relative;
  margin-bottom: 50px;
}
.sec-title.white .sub-title:before {
  display: none;
}
.sec-title.white h2 {
  color: #fff;
}
.sec-title .sub-title {
  position: relative;
  color: var(--secondary-color);
  font-family: var(--sec-title-subtitle-font-family);
  font-size: var(--sec-title-subtitle-font-size);
  font-weight: var(--sec-title-subtitle-font-weight);
  line-height: var(--sec-title-subtitle-line-height);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 7px;
  letter-spacing: 3px;
  top: -9px;
}
@media (max-width: 575.98px) {
  .sec-title .sub-title {
    letter-spacing: 1px;
  }
}
.sec-title .sub-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -50px;
  width: 37px;
  height: 10px;
  background-image: url(../images/icons/before.png);
}
.sec-title .sub-title::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 100%;
  margin-left: 5px;
  width: 37px;
  height: 10px;
  background-image: url(../images/icons/before.png);
}
.sec-title .sub-title.style-two:before {
  display: none;
}
.sec-title .sub-title.style-three {
  margin-left: 50px;
}
.sec-title .sub-title.style-four:before,
.sec-title .sub-title.style-four:after {
  display: none;
}
.sec-title h2 {
  position: relative;
  display: block;
  font-size: var(--sec-title-font-size);
  color: var(--primary-color);
  font-family: var(--sec-title-font-family);
  font-weight: var(--sec-title-font-weight);
  margin-bottom: 0;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .sec-title h2 {
    font-size: 44px;
  }
}
@media (max-width: 575.98px) {
  .sec-title h2 {
    font-size: 36px;
  }
  .sec-title h2 br {
    display: none;
  }
}
.sec-title .text {
  margin-top: 24px;
}
.sec-title.light .sub-title,
.sec-title.light .text,
.sec-title.light h2,
.sec-title.light h1 {
  color: #fff;
}

/***

====================================================================
  Banner Section
====================================================================

***/
/* Banner Section Styles */
.banner-section-seven {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-section-seven .outer-box {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.banner-section-seven .image-1 {
    height: 100vh;
    min-height: 600px;
}

.banner-section-seven .image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Centered Content Styles */
.banner-section-seven .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
}

/* Glassmorphism Content Box */
.content-glass-box {
    backdrop-filter: blur(1px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0px 0px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
}

/* Glass Button */
.glass-btn {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Carousel Controls */
.banner-section-seven .carousel-control-prev,
.banner-section-seven .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-section-seven .carousel-control-prev {
    left: 20px;
}

.banner-section-seven .carousel-control-next {
    right: 20px;
}

.banner-section-seven .carousel-control-prev-icon,
.banner-section-seven .carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-glass-box {
        padding: 10px 10px;
        max-width: 700px;
    }
    
    .content-glass-box h1 {
        font-size: 3rem !important;
    }
}

@media (max-width: 768px) {
    .banner-section-seven .outer-box,
    .banner-section-seven .image-1 {
        height: 70vh;
        min-height: 500px;
    }
    
    .content-glass-box {
        padding: 10px 15px;
        max-width: 90%;
    }
    
    .content-glass-box h1 {
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
    }
    
  
    
    .banner-section-seven .carousel-control-prev,
    .banner-section-seven .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .banner-section-seven .outer-box,
    .banner-section-seven .image-1 {
        height: 60vh;
        min-height: 400px;
    }
    
    .content-glass-box {
        padding: 10px 10px;
    }
    
    .content-glass-box h1 {
        font-size: 2rem !important;
        /* margin-bottom: 15px !important; */
    }
    
    .glass-btn {
        font-size: 14px;
        padding: 10px 25px !important;
    }
    
    .banner-section-seven .carousel-control-prev,
    .banner-section-seven .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

/* Ensure proper Bootstrap carousel behavior */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}

/*** 

====================================================================
  Checkout Form Section
====================================================================

***/
.checkout-form-section {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.checkout-form-section.v2 {
  position: static;
  background: var(--theme-color-dark2);
}
.checkout-form-section.v2 .checkout-form {
  background: transparent;
}
.checkout-form-section.v2 .checkout-form .checkout-field {
  border-color: rgba(255, 255, 255, 0.1);
}
.checkout-form-section.v2 .checkout-form .checkout-field > h6 {
  color: #fff;
}
.checkout-form-section.v3 {
  position: static;
}
.checkout-form-section.v3 .checkout-form {
  background: var(--theme-color-white);
  -webkit-box-shadow: 0px 10px 10px rgba(var(--theme-color-black-rgb), 0.05);
  box-shadow: 0px 10px 10px rgba(var(--theme-color-black-rgb), 0.05);
  margin-top: -48px;
  position: relative;
  z-index: 1;
}
.checkout-form-section.v3 .checkout-form .checkout-field {
  border-color: rgba(var(--theme-color-white-rgb), 0.1);
}
.checkout-form-section.v3 .checkout-form .checkout-field .chk-field input {
  font-size: 12px;
  color: var(--theme-color1);
  width: 260px;
  background: transparent;
  border-color: transparent;
  z-index: 99;
  position: relative;
  font-weight: 500;
}
.checkout-form-section.v3 .checkout-form .checkout-field > h6 {
  color: var(--theme-color-dark);
}
.checkout-form-section .checkout-form {
  background: var(--theme-color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px 15px 15px 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 907.99px) {
  .checkout-form-section .checkout-form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.checkout-form-section .checkout-form .checkout-field {
  padding: 14px 25px 11px;
  border-right: 1px solid #f8f5f0;
}
.checkout-form-section .checkout-form .checkout-field.br-0 {
  border-right: 0;
}
.checkout-form-section .checkout-form .checkout-field > h6 {
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: -2px;
}
.checkout-form-section .checkout-form .checkout-field .chk-field {
  position: relative;
}
.checkout-form-section .checkout-form .checkout-field .chk-field input,
.checkout-form-section .checkout-form .checkout-field .chk-field select {
  font-size: 12px;
  color: var(--theme-color1);
  width: 260px;
  background: transparent;
  border-color: transparent;
  z-index: 99;
  position: relative;
}
.checkout-form-section .checkout-form .checkout-field .chk-field i {
  position: absolute;
  top: 1px;
  right: 0;
  color: var(--theme-color4);
  font-size: 16px;
}
.checkout-form-section .checkout-form .checkout-field .chk-field select option {
  font-size: 14px;
}
.checkout-form-section .checkout-form .btn-style-one {
  margin-left: auto;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  line-height: 45px;
  background-color: var(--theme-color1);
  border-color: transparent;
  padding: 0;
  width: 140px;
  text-align: center;
  margin-top: -8px;
  position: relative;
  border: 0;
  top: 5px;
  height: 50px;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 907.99px) {
  .checkout-form-section .checkout-form .btn-style-one {
    width: 100%;
    margin-top: 15px;
  }
}
@media (max-width: 767.98px) {
  .checkout-form-section .checkout-form .btn-style-one {
    margin-top: 0;
  }
}
.checkout-form-section .checkout-form .btn-style-one:before {
  background: #000;
}

.chk-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.chk-field select::-ms-expand {
  display: none;
}

.chk-field input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--theme-color1);
}

.chk-field input ::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--theme-color1);
}

.chk-field input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--theme-color1);
}

.chk-field input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--theme-color4);
}

@media only screen and (max-width: 1410px) {
  .checkout-form-section .checkout-form .checkout-field .chk-field input,
  .checkout-form-section .checkout-form .checkout-field .chk-field select {
    width: 255px;
  }
}
@media only screen and (max-width: 1200px) {
  .checkout-form-section .checkout-form .checkout-field .chk-field input,
  .checkout-form-section .checkout-form .checkout-field .chk-field select {
    width: 190px;
  }
}
@media only screen and (max-width: 991px) {
  .checkout-form-section .checkout-form .checkout-field .chk-field input,
  .checkout-form-section .checkout-form .checkout-field .chk-field select {
    width: 185px;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-form-section .checkout-form .btn-style-one {
    margin-left: auto;
  }
  .checkout-form-section.v2 .checkout-form .checkout-field {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 576px) {
  .checkout-form-section .checkout-form .checkout-field .chk-field input,
  .checkout-form-section .checkout-form .checkout-field .chk-field select {
    width: 100%;
  }
  .checkout-form-section .checkout-form {
    display: block;
  }
  .checkout-form-section .checkout-form .checkout-field {
    border: 0;
  }
  .checkout-form-section .checkout-form .btn-style-one {
    width: 100%;
  }
  .checkout-form-section .checkout-form .checkout-field {
    padding: 13px 0 11px;
  }
}
/*** 

====================================================================
  Checkout Form Section
====================================================================

***/
.checkout-form-section-two {
  width: 100%;
}
.checkout-form-section-two .checkout-form {
  background: var(--theme-color-white);
  -webkit-box-shadow: 0px 10px 10px rgba(var(--theme-color-black-rgb), 0.05);
  box-shadow: 0px 10px 10px rgba(var(--theme-color-black-rgb), 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -66px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 907.99px) {
  .checkout-form-section-two .checkout-form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.checkout-form-section-two .checkout-form .checkout-field {
  border-color: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
  padding: 33px 25px 30px 40px;
  max-height: 132px;
  position: relative;
}
@media (max-width: 575.98px) {
  .checkout-form-section-two .checkout-form .checkout-field {
    padding: 33px 12px 30px;
  }
}
.checkout-form-section-two .checkout-form .checkout-field:first-child:before {
  display: none;
}
.checkout-form-section-two .checkout-form .checkout-field:before {
  background-image: url(../images/icons/shape-line1.png);
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 59px;
  width: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .checkout-form-section-two .checkout-form .checkout-field:before {
    display: none;
  }
}
.checkout-form-section-two .checkout-form .checkout-field.br-0 {
  border-right: 0;
}
.checkout-form-section-two
  .checkout-form
  .checkout-field.select-field
  .chk-field {
  cursor: pointer;
  width: 35px;
}
.checkout-form-section-two
  .checkout-form
  .checkout-field.select-field
  .chk-field
  select {
  color: var(--text-color);
  cursor: pointer;
  width: 30px;
}
.checkout-form-section-two .checkout-form .checkout-field > h4 {
  margin-bottom: 9px;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field {
  position: relative;
  width: 112px;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field input,
.checkout-form-section-two .checkout-form .checkout-field .chk-field select {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-color-dark);
  background: transparent;
  border-color: transparent;
  width: auto;
  z-index: 99;
  position: relative;
}
.checkout-form-section-two .checkout-form .checkout-field .chk-field i {
  position: absolute;
  top: 6px;
  right: 1px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1;
}
.checkout-form-section-two
  .checkout-form
  .checkout-field
  .chk-field
  select
  option {
  font-size: 14px;
}
.checkout-form-section-two
  .checkout-form
  .checkout-field
  .chk-field
  input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--theme-color1);
  opacity: 1;
}
.checkout-form-section-two
  .checkout-form
  .checkout-field
  .chk-field
  input
  ::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--theme-color1);
  opacity: 1;
}
.checkout-form-section-two
  .checkout-form
  .checkout-field
  .chk-field
  input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--theme-color1);
  opacity: 1;
}
.checkout-form-section-two
  .checkout-form
  .checkout-field
  .chk-field
  input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--theme-color4);
  opacity: 1;
}
.checkout-form-section-two .checkout-form .btn-style-one {
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 0px;
  line-height: 30px;
  background-color: var(--theme-color-dark);
  border-color: transparent;
  padding: 0;
  width: 170px;
  text-align: center;
  position: relative;
  border: 0;
  height: 132px;
  font-weight: 600;
  color: var(--theme-color-white);
}
@media only screen and (max-width: 907.99px) {
  .checkout-form-section-two .checkout-form .btn-style-one {
    height: 80px;
    width: 100%;
    margin-top: 15px;
  }
  .checkout-form-section-two .checkout-form .btn-style-one br {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .checkout-form-section-two .checkout-form .btn-style-one {
    margin-top: 0;
  }
}
.checkout-form-section-two .checkout-form .btn-style-one:before {
  background: var(--theme-color1);
}

/*** 

====================================================================
		About Section
====================================================================

***/
.about-section {
  position: relative;
  padding: 146px 0 31px;
}
.about-section .info-block {
  margin-bottom: 24px;
}
@media (max-width: 575.98px) {
  .about-section {
    padding-top: 80px;
  }
}
.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.about-section .content-column .inner-column {
  position: relative;
  padding-left: 25px;
}
.about-section .content-column .inner-column .sec-title {
  margin-bottom: 30px;
}
.about-section .content-column .inner-column .sec-title .sub-title::before {
  display: none;
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column .sec-title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
.about-section .content-column .inner-column .sec-title .text-2 {
  margin-top: 40px;
  margin-right: 50px;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  color: var(--theme-color5);
  text-decoration: underline;
}
.about-section .content-column .inner-column .sec-title .text {
  margin-top: 30px;
}
.about-section .content-column .inner-column .list-style-two {
  margin-top: 0;
}
.about-section .content-column .inner-column .list-style-two li {
  font-size: 18px;
  padding-left: 27px;
}
.about-section .content-column .inner-column .list-style-two li .icon {
  color: var(--theme-color5);
}
.about-section .content-column .inner-column .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}
.about-section .content-column .inner-column .btn-box .theme-btn {
  padding: 17px 42px 18px;
}
.about-section .content-column .inner-column .btn-box .theme-btn:before {
  background: var(--secondary-color);
}
.about-section .content-column .inner-column .btn-box .theme-btn:hover {
  color: #fff;
}
.about-section .content-column .inner-column .btn-box .theme-btn:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.about-section .content-column .inner-column .btn-box .contact-info {
  position: relative;
  padding-left: 72px;
  top: -2px;
}
.about-section .content-column .inner-column .btn-box .contact-info .image {
  position: absolute;
  left: 0;
  top: 6px;
}
.about-section .content-column .inner-column .btn-box .contact-info span {
  text-transform: uppercase;
}
.about-section .content-column .inner-column .btn-box .contact-info .title {
  margin-bottom: 0;
  margin-top: -2px;
}
.about-section .image-column {
  position: relative;
}
.about-section .image-column .inner-column {
  position: relative;
  padding-bottom: 141px;
}
.about-section .image-column .inner-column::after {
  border: 5px solid var(--primary-color);
  content: "";
  position: absolute;
  top: -49px;
  left: 263px;
  width: 167px;
  height: 198px;
  z-index: -1;
}
.about-section .image-column .inner-column .icon-dots {
  position: absolute;
  left: -120px;
  bottom: -30px;
}
.about-section .image-column .image-1 {
  position: relative;
  display: inline-block;
  border-radius: 0;
  margin-bottom: 0px;
}
.about-section .image-column .image-1 img {
  width: 100%;
}
.about-section .image-column .image-2 {
  position: absolute;
  right: 14px;
  bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .image-2 {
    right: 0;
  }
}
.about-section .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .about-section .outer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about-section .exp-box {
  bottom: 18px;
}
.about-section.home4-style:before {
  background-image: url(../images/background/home.html);
  bottom: 0;
  content: "";
  height: 400px;
  position: absolute;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  width: 570px;
}
.about-section.home4-style .content-column .inner-column .sec-title .text {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
}
.about-section.home4-style .content-column .inner-column {
  padding-left: 50px;
}
@media (max-width: 991.98px) {
  .about-section.home4-style .content-column .inner-column {
    padding-left: 0;
  }
}
.about-section.home4-style .image-1:after {
  display: none;
}
.about-section.home4-style .image-2 {
  bottom: -100px;
  left: -50px;
}
.about-section.home4-style .image-2:after {
  border: 1px solid var(--theme-color1);
  content: "";
  height: 100%;
  left: 60px;
  position: absolute;
  top: -60px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .about-section.home4-style .image-2 {
    bottom: 0;
    left: 0;
  }
}
.about-section.home4-style .info-block {
  margin-right: 0;
}
.about-section.home4-style .info-block .inner {
  min-height: auto;
  padding-left: 0px;
}
.about-section.home4-style .info-block .inner .title {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .about-section.home4-style .info-block .inner .title {
    max-width: inherit;
  }
}
.about-section.home4-style .info-block .icon-box {
  border: 1px solid #eaeaea;
  border-radius: 50%;
  height: 50px;
  line-height: 50px;
  position: relative;
  text-align: center;
  width: 50px;
}
.about-section.home4-style .info-block i {
  font-size: 26px;
}

.exp-box {
  position: absolute;
  left: 135px;
  background: #000;
  width: 260px;
  text-align: center;
  padding: 36px 15px 33px;
}
.exp-box figure {
  margin-bottom: 12px;
}
.exp-box .title {
  color: var(--theme-color-light);
  margin-bottom: 9px;
}
.exp-box .text {
  color: #ababab;
  font-family: var(--text-font2);
  line-height: 24px;
}

.info-block {
  position: relative;
  margin-bottom: 49px;
  margin-right: 115px;
}
.info-block:last-child {
  margin-right: 0;
}
.info-block .inner {
  position: relative;
  padding-left: 94px;
  min-height: 80px;
}
.info-block .inner:hover .icon-box {
  color: var(--theme-color-light);
}
.info-block .inner:hover .icon-box:before {
  opacity: 1;
}
.info-block .image-box {
  position: absolute;
  left: 0;
  top: 3px;
}
.info-block .icon-box {
  position: absolute;
  left: 0;
  top: 3px;
}
.info-block .icon-box i {
  font-size: 64px;
  color: #000;
}

.contact-info {
  position: relative;
  padding-left: 72px;
  top: -2px;
}
.contact-info .icon-box {
  position: absolute;
  left: 0;
  top: 6px;
}
.contact-info .icon-box i {
  color: var(--theme-color1);
  font-size: 48px;
}
.contact-info span {
  text-transform: uppercase;
}
.contact-info .title {
  margin-bottom: 0;
  margin-top: -2px;
}

@media only screen and (max-width: 1200px) {
  .info-block {
    margin-right: 30px;
  }
  .contact-info .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .about-section .content-column .inner-column {
    padding-left: 0;
  }
  .info-block .title {
    max-width: 150px;
  }
}
@media only screen and (max-width: 576px) {
  .info-block {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .about-section .outer-box {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .about-section .outer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-section .content-column .btn-box {
    display: block;
  }
  .contact-info {
    margin-top: 40px;
  }
}
/*** 

====================================================================
		About Section Two
====================================================================

***/
.about-section-two {
  position: relative;
  padding: 120px 0 80px;
}
@media (max-width: 575.98px) {
  .about-section-two {
    padding-top: 80px;
  }
}
.about-section-two .anim-icons .image-1 {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.about-section-two .info-block {
  margin-bottom: 24px;
}
.about-section-two .info-block .icon-box i {
  color: var(--theme-color1);
}
.about-section-two .content-column {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}
.about-section-two .content-column .inner-column {
  position: relative;
}
.about-section-two .content-column .inner-column .sec-title {
  margin-bottom: 38px;
}
@media (max-width: 1199.98px) {
  .about-section-two .content-column .inner-column .sec-title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
.about-section-two .content-column .inner-column .sec-title .text {
  margin-top: 40px;
  /* font-size: 18px;
  font-weight: 500;
  line-height: 28px; */
  /* color: var(--theme-color1); */
  margin-right: 165px;
}
@media (max-width: 575.98px) {
  .about-section-two .content-column .inner-column .sec-title .text {
    margin-right: 0;
  }
}
.about-section-two .content-column .inner-column .list-style-two {
  margin-top: 0;
}
.about-section-two .content-column .inner-column .list-style-two li {
  padding-left: 27px;
}
.about-section-two .content-column .inner-column .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}
.about-section-two .content-column .inner-column .btn-box .theme-btn {
  margin-right: 42px;
  border: 0;
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
  font-weight: 500;
  text-transform: uppercase;
  padding: 17px 42px 18px;
}
.about-section-two .content-column .inner-column .btn-box .theme-btn:before {
  background: #000;
}
.about-section-two .content-column .inner-column .btn-box .theme-btn:hover {
  color: #fff;
}
.about-section-two
  .content-column
  .inner-column
  .btn-box
  .theme-btn:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.about-section-two .content-column .inner-column .btn-box .contact-info {
  position: relative;
  padding-left: 72px;
  top: -2px;
}
.about-section-two .content-column .inner-column .btn-box .contact-info .image {
  position: absolute;
  left: 0;
  top: 6px;
}
.about-section-two .content-column .inner-column .btn-box .contact-info span {
  text-transform: uppercase;
}
.about-section-two .content-column .inner-column .btn-box .contact-info .title {
  margin-bottom: 0;
  margin-top: -2px;
}
.about-section-two .image-column {
  position: relative;
  margin-bottom: 50px;
}
.about-section-two .image-column .inner-column {
  position: relative;
  padding: 48px 0 117px 20px;
  text-align: right;
}
@media (max-width: 991.98px) {
  .about-section-two .image-column .inner-column {
    padding: 48px 0 117px 0;
    text-align: left;
  }
}
.about-section-two .image-column .inner-column:after {
  border: 2px solid var(--primary-color);
  content: "";
  position: absolute;
  height: 365px;
  left: -12px;
  top: 183px;
  width: 388px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .about-section-two .image-column .inner-column:after {
    display: none;
  }
}
.about-section-two .image-column .inner-column .icon-dots {
  position: absolute;
  left: -120px;
  bottom: -30px;
}
.about-section-two .image-column .image-1 {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 0px;
}
.about-section-two .image-column .image-1 img {
  border: 10px solid #eee;
  width: 100%;
}
.about-section-two .image-column .image-2 {
  position: absolute;
  bottom: -95px;
  left: -90px;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .about-section-two .image-column .image-2 {
    left: -45px;
  }
}
@media (max-width: 991.98px) {
  .about-section-two .image-column .image-2 {
    bottom: 0;
    left: 100px;
  }
}
.about-section-two .image-column .image-2 img {
  border: 10px solid #eee;
}
.about-section-two .outer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .about-section-two .outer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about-section-two .exp-box {
  bottom: 18px;
}
.about-section-two .info-block {
  position: relative;
  margin-bottom: 26px;
  margin-right: 60px;
}
@media (max-width: 575.98px) {
  .about-section-two .info-block {
    margin-right: 0;
  }
}
.about-section-two .info-block:last-child {
  margin-right: 0;
}
.about-section-two .info-block .inner {
  position: relative;
  padding-left: 94px;
  min-height: 80px;
}
.about-section-two .info-block .inner:hover .icon-box {
  color: var(--theme-color-light);
}
.about-section-two .info-block .inner:hover .icon-box:before {
  opacity: 1;
}
.about-section-two .info-block .inner .icon-box {
  line-height: 1;
}
.about-section-two .info-block .image-box {
  position: absolute;
  left: 0;
  top: 3px;
}
.about-section-two .contact-info {
  position: relative;
  padding-left: 72px;
  top: -2px;
}
.about-section-two .contact-info .icon-box {
  position: absolute;
  left: 0;
  top: 6px;
}
.about-section-two .contact-info .icon-box i {
  color: var(--theme-color1);
  font-size: 48px;
}
.about-section-two .contact-info span {
  text-transform: uppercase;
}
.about-section-two .contact-info .title {
  margin-bottom: 0;
  margin-top: -2px;
}

/*** 

====================================================================
    About Section Four
====================================================================

***/
.about-section-four {
  position: relative;
  padding: 0 0 120px;
  z-index: 2;
}
.about-section-four .auto-container {
  padding: 0;
}
.about-section-four .sec-title {
  margin-bottom: 20px;
}
.about-section-four .sec-title .sub-title {
  margin-left: 50px;
}
.about-section-four .outer-box {
  position: relative;
  background-color: #f4efec;
  padding: 100px 15px 100px;
}
.about-section-four .content-column {
  margin-bottom: 0;
  z-index: 1;
}
.about-section-four .content-column .inner-column {
  position: relative;
  margin-right: 10px;
}
.about-section-four .content-column .inner-column .inner {
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .about-section-four .content-column .inner-column .inner {
    margin-bottom: 40px;
  }
}
.about-section-four .content-column .inner-column .inner .list-style-two li {
  color: var(--text-color);
  font-size: 18px;
  padding-left: 28px;
}
.about-section-four
  .content-column
  .inner-column
  .inner
  .list-style-two
  li
  .icon {
  top: 1px;
}
.about-section-four .image-column .inner-column .image-box {
  position: relative;
}
.about-section-four .image-column .inner-column .image-box figure {
  margin: 0;
}
.about-section-four .image-column .inner-column .image-box .image {
  position: relative;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
  left: -117px;
  top: 0;
  border: 10px solid var(--theme-color-light);
  max-width: 321px;
  z-index: 1;
  -webkit-box-shadow: 0 0 49px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 49px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1399.98px) {
  .about-section-four .image-column .inner-column .image-box .image {
    left: 9px;
  }
}
@media (max-width: 991.98px) {
  .about-section-four .image-column .inner-column .image-box .image {
    left: 10px;
    top: 25px;
  }
}
@media (max-width: 767.98px) {
  .about-section-four .image-column .inner-column .image-box .image {
    left: 80px;
  }
}
@media (max-width: 575.98px) {
  .about-section-four .image-column .inner-column .image-box .image {
    left: 30px;
    top: 0px;
    max-width: 200px;
  }
}
.about-section-four .image-column .inner-column .image-box .image-2 {
  border: 10px solid var(--theme-color-light);
  position: absolute;
  top: 108px;
  left: 140px;
  -webkit-transform: rotate(6deg);
  transform: rotate(6deg);
}
@media (max-width: 1199.98px) {
  .about-section-four .image-column .inner-column .image-box .image-2 {
    left: 180px;
  }
}
@media (max-width: 991.98px) {
  .about-section-four .image-column .inner-column .image-box .image-2 {
    left: 350px;
    bottom: 165px;
  }
}
@media (max-width: 767.98px) {
  .about-section-four .image-column .inner-column .image-box .image-2 {
    left: 250px;
  }
}
@media (max-width: 575.98px) {
  .about-section-four .image-column .inner-column .image-box .image-2 {
    left: 181px;
    bottom: 115px;
    width: 150px;
  }
}

/*** 

====================================================================
    About Section Six
====================================================================

***/
.about-section-six {
  position: relative;
  padding: 100px 0 80px;
}
.about-section-six .content-column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
  z-index: 1;
}
.about-section-six .content-column .inner-column {
  position: relative;
}
.about-section-six .content-column .sec-title {
  margin-bottom: 40px;
}
.about-section-six .content-column .sec-title .sub-title::before {
  display: none;
}
@media (max-width: 575.98px) {
  .about-section-six .content-column .sec-title h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
.about-section-six .content-column .sec-title .text {
  margin-top: 30px;
  margin-right: 50px;
}
.about-section-six .content-column .progress-info {
  margin-right: 80px;
}
@media (max-width: 575.98px) {
  .about-section-six .content-column .progress-info {
    margin-right: 0;
  }
}
.about-section-six .image-column {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 575.98px) {
  /* .about-section-six .image-column {
    display: none;
  } */
}
.about-section-six .image-column .inner-column {
  position: relative;
  padding-left: 61px;
}
@media (max-width: 1399.98px) {
  .about-section-six .image-column .inner-column {
    padding-left: 0;
  }
}
.about-section-six .image-column .inner-column::after {
  content: "";
  background-image: url(../images/icons/shape-7.png);
  position: absolute;
  bottom: -33px;
  right: -30px;
  width: 288px;
  height: 288px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .about-section-six .image-column .inner-column::after {
    display: none;
  }
}
.about-section-six .image-column .inner-column .icon-dots {
  position: absolute;
  left: -120px;
  bottom: -30px;
}
.about-section-six .image-column .image-1 {
  position: relative;
  display: inline-block;
  border-radius: 0;
  margin-bottom: 0px;
}
.about-section-six .image-column .image-1 img {
  width: 100%;
}
.about-section-six .image-column .exp-info-text {
  color: var(--theme-color-black);
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
  position: absolute;
  bottom: 145px;
  left: -114px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
@media (max-width: 1399.98px) {
  .about-section-six .image-column .exp-info-text {
    left: -100px;
    bottom: 150px;
  }
}

/*** 

====================================================================
  service-section
====================================================================

***/

/******************************
  CONTINUOUS INFINITE SCROLL
*******************************/
.scroll-row {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.scroll-track {
    display: flex;
    width: max-content;
    gap: 25px;
}

/* Speed control */
.scroll-left .scroll-track {
    animation: scrollLeft 30s linear infinite;
}

.scroll-right .scroll-track {
    animation: scrollRight 30s linear infinite;
}

/* Left → Right */
@keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Right → Left */
@keyframes scrollRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/******************************
  ITEM SIZE
*******************************/
.scroll-box-item {
    min-width: 160px;
    max-width: 160px;
}


.service-section {
  background-color: #f7f3ee;
  position: relative;
  padding: 0px 0 30px;
}
.service-section:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-image: url(../images/icons/bg-shape1.png);
  z-index: 2;
  pointer-events: none;
}
.service-section .anim-icons .image-1 {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.service-section .anim-icons .image-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .service-section .sec-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .service-section .sec-title .sub-title {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .service-section .sec-title h2 {
    font-size: 32px;
  }
}

.service-block {
  margin-bottom: 24px;
}
.service-block .inner-box {
  position: relative;
  text-align: center;
  border: 2px solid #f8f5f0;
  padding: 45px 20px 33px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: #fff;
}
.service-block .inner-box:hover {
  background-color: var(--secondary-color);
}
.service-block .inner-box:hover::before {
  background-color: var(--theme-color-light);
}
.service-block .inner-box:hover .content-box .title {
  color: var(--theme-color-light);
}
.service-block .inner-box:hover .content-box .text {
  color: var(--theme-color-light);
}
.service-block .inner-box:hover .icon-box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.service-block .inner-box:hover .icon-box i {
  color: #fff;
}
.service-block .inner-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 95px;
  height: 11px;
  background-color: var(--primary-color);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box .icon-box {
  margin-bottom: 11px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-block .inner-box .icon-box i {
  color: var(--primary-color);
  font-size: 58px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box .content-box .title {
  margin-bottom: 18px;
  font-family: var(--text-font2);
  font-size: var(--h4-font-size);
  color: var(--secondary-color);
}
.service-block .inner-box .content-box .text {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/***

====================================================================
    Services Section Six
====================================================================

***/
.service-block-six {
  position: relative;
}
.service-block-six .inner-box {
  position: relative;
}
.service-block-six .inner-box:hover .bg-shap svg path {
  fill: var(--theme-color1);
}
.service-block-six .inner-box:hover .bg-icon {
  color: var(--theme-color-white);
}
.service-block-six .inner-box:hover .bg-icon svg path {
  fill: var(--theme-color-white);
}
.service-block-six .inner-box:hover .front-icon {
  color: var(--theme-color-white);
}
.service-block-six .inner-box:hover .front-icon svg path {
  fill: var(--theme-color-white);
}
.service-block-six .inner-box:hover .shadow-icon {
  color: rgba(var(--theme-color-white-rgb), 0.1);
}
.service-block-six .icon-box {
  display: inline-block;
  height: 142px;
  line-height: 148px;
  overflow: hidden;
  position: relative;
  width: 148px;
}
.service-block-six .icon-box .bg-shap {
  z-index: -1;
}
.service-block-six .icon-box .bg-shap svg path {
  fill: rgb(193 35 39 / 5%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-six .icon-box .bg-icon {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  font-size: 80px;
  color: var(--primary-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-six .icon-box .bg-icon i {
  opacity: 0.2;
  font-weight: lighter;
}
.service-block-six .icon-box .bg-icon svg path {
  fill: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-six .icon-box .front-icon {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 60px;
  color: var(--primary-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-six .icon-box .front-icon svg path {
  fill: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block-six .shadow-icon {
  color: rgba(var(--theme-color1-rgb), 0.1);
  font-size: 72px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.service-block-six .frnt-icon {
  color: var(--theme-color1);
  font-size: 48px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.service-block-six .content-box p {
  color: var(--secondary-color);
  font-size: var(--h5-font-size);
  margin-bottom: 0px;
  font-family: var(--text-font2);
}

/*** 

====================================================================
  testimonial-section-Four
====================================================================

***/
.testimonial-section-four {
  padding: 100px 0;
  position: relative;
  background: #f8f9fa;
}

.testimonial-section-four:before {
  background-size: cover;
  bottom: -90px;
  content: "";
  height: 334px;
  right: 0;
  position: absolute;
  width: 338px;
}

/* Centered Heading */
.testimonial-section-four .sec-title {
  margin-bottom: 50px;
}

.testimonial-section-four .sec-title .sub-title {
  color: var(--theme-color1);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.testimonial-section-four .sec-title h2 {
  color: var(--secondary-color);
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* Full Image - No Scroll Animations */
.testimonial-section-four .image-box {
  position: relative;
  height: 100%;
  padding-right: 30px;
}

.testimonial-section-four .image-box .image {
  height: 550px; /* Increased height for full image */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-section-four .image-box .full-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.testimonial-section-four .image-box:hover .full-image {
  transform: scale(1.05);
}

/* Add overlay effect on hover */
.testimonial-section-four .image-box .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(181, 207, 43, 0.1), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  border-radius: 20px;
}

.testimonial-section-four .image-box:hover .image::before {
  opacity: 1;
}

/* Testimonial Carousel Styles - No Scroll Animations */
.testimonial-carousel-two {
  position: relative;
  padding: 0 10px;
}

.testimonial-block-four {
  margin-bottom: 30px;
  position: relative;
}

.testimonial-block-four .inner-box {
  background-color: #ffffff;
  box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.08);
  padding: 40px 35px;
  position: relative;
  transition: all 0.4s ease;
  border-radius: 20px;
  border-left: 5px solid var(--theme-color1);
  transform: translateY(0);
}

.testimonial-block-four .inner-box:hover {
  background-color: var(--theme-color1);
  transform: translateY(-10px);
  box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-block-four .inner-box:hover .icon,
.testimonial-block-four .inner-box:hover .text,
.testimonial-block-four .inner-box:hover .name {
  color: var(--theme-color-white);
}

.testimonial-block-four .content-box {
  position: relative;
}

.testimonial-block-four .content-box .icon {
  color: var(--theme-color1);
  display: inline-block;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.testimonial-block-four .inner-box:hover .content-box .icon {
  color: var(--theme-color-white);
  opacity: 1;
  transform: scale(1.1);
}

.testimonial-block-four .content-box .text {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
  font-size: 17px;
  font-style: italic;
  transition: all 0.4s ease;
}

.testimonial-block-four .info-box {
  align-items: center;
  border-top: 1px solid #e3e3e3;
  display: flex;
  margin-top: 25px;
  padding: 25px 0 0;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-block-four .inner-box:hover .info-box {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.testimonial-block-four .info-box .name {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  transition: all 0.4s ease;
}

.testimonial-block-four .inner-box:hover .info-box .name {
  color: var(--theme-color-white);
}

/* Carousel Navigation */
.testimonial-section-four .slick-slider {
  position: relative;
}

.testimonial-section-four .slick-slider .slick-arrow {
  background-color: #ffffff;
  border: 2px solid var(--theme-color1);
  color: var(--theme-color1);
  font-size: 0;
  position: absolute;
  bottom: -80px;
  top: auto;
  transform: none;
  z-index: 1;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-section-four .slick-slider .slick-arrow:hover {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(181, 207, 43, 0.3);
}

.testimonial-section-four .slick-slider .slick-arrow:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 16px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.testimonial-section-four .slick-slider .slick-arrow.slick-prev {
  right: 70px;
  left: auto;
}

.testimonial-section-four .slick-slider .slick-arrow.slick-prev:before {
  color: var(--theme-color1);
  content: "\f060";
}

.testimonial-section-four .slick-slider .slick-arrow.slick-prev:hover:before {
  color: var(--theme-color-white);
}

.testimonial-section-four .slick-slider .slick-arrow.slick-next {
  right: 10px;
}

.testimonial-section-four .slick-slider .slick-arrow.slick-next:before {
  color: var(--theme-color1);
  content: "\f061";
}

.testimonial-section-four .slick-slider .slick-arrow.slick-next:hover:before {
  color: var(--theme-color-white);
}

/* Slick Carousel Styles */
.slick-gap-30 .slick-list {
  margin: 0 -15px;
}

.slick-gap-30 .slick-list .slick-slide {
  margin: 0 15px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.slick-gap-30 .slick-list .slick-slide.slick-active {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .testimonial-section-four {
    padding: 80px 0;
  }
  
  .testimonial-section-four .image-box .image {
    height: 500px;
  }
  
  .testimonial-section-four .sec-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .testimonial-section-four {
    padding: 60px 0;
  }
  
  .testimonial-section-four .image-box {
    margin-bottom: 40px;
    padding-right: 0;
  }
  
  .testimonial-section-four .image-box .image {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .testimonial-section-four .sec-title {
    margin-bottom: 40px;
  }
  
  .testimonial-section-four .sec-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-section-four {
    padding: 50px 0 80px;
  }
  
  .testimonial-block-four .inner-box {
    padding: 30px 25px;
  }
  
  .testimonial-section-four .image-box .image {
    height: 400px;
  }
  
  .testimonial-section-four .slick-slider .slick-arrow {
    bottom: -70px;
    height: 45px;
    width: 45px;
  }
  
  .testimonial-section-four .slick-slider .slick-arrow.slick-prev {
    right: 60px;
  }
  
  .testimonial-section-four .sec-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-section-four {
    padding: 40px 0 80px;
  }
  
  .testimonial-block-four .inner-box {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .testimonial-block-four .content-box .text {
    font-size: 15px;
  }
  
  .testimonial-section-four .image-box .image {
    height: 350px;
    border-radius: 15px;
  }
  
  .testimonial-section-four .sec-title h2 {
    font-size: 24px;
  }
  
  .testimonial-section-four .sec-title .sub-title {
    font-size: 14px;
  }
}
/*** 

====================================================================
  video-section Two
====================================================================

***/
.video-section-two {
  position: relative;
  padding: 172px 0;
}
.video-section-two .sub-title:before,
.video-section-two .sub-title:after {
  filter: brightness(0) invert(1);
}
@media (max-width: 767.98px) {
  .video-section-two {
    padding: 120px 0;
  }
}
.video-section-two .bg-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(var(--theme-color-black-rgb), 0.7);
}
.video-section-two .sec-title {
  margin-bottom: 0;
}
.video-section-two .sec-title .sub-title {
  color: #d9d9d9;
}
.video-section-two .sec-title h2 {
  font-size: 60px;
  line-height: 1;
}
@media (max-width: 1399.98px) {
  .video-section-two .sec-title h2 {
    line-height: 1.3;
  }
}
@media (max-width: 767.98px) {
  .video-section-two .sec-title h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.98px) {
  .video-section-two .sec-title h2 {
    font-size: 36px;
  }
}
.video-section-two .btn-box {
  margin-top: 30px;
}
.video-section-two .btn-box .play-now-two {
  background-color: transparent;
  border: 1px solid var(--theme-color-light);
  color: var(--primary-color);
  position: relative;
  top: 0;
  font-size: 40px;
  width: 113px;
  height: 113px;
  text-align: center;
  line-height: 113px;
  border-radius: 50%;
  display: inline-block;
}
/*** 

====================================================================
  video-section Four
====================================================================

***/
.video-section-four {
  position: relative;
  padding: 99px 0 66px;
}
.video-section-four .bg-image {
  z-index: -1;
}
.video-section-four .bg-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(var(--theme-color-black-rgb), 0.5);
}
.video-section-four .outer-box {
  margin: 0px -53px;
}
@media (max-width: 1399.98px) {
  .video-section-four .outer-box {
    margin: 0;
  }
}
.video-section-four .sec-title {
  margin-bottom: 58px;
}
.video-section-four .btn-box {
  margin-top: 30px;
  text-align: center;
}
.video-section-four .btn-box .play-now-two {
  border: none;
  background-color: rgba(var(--theme-color-white-rgb), 0.48);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--primary-color);
  display: inline-block;
  font-size: 30px;
  text-align: center;
  line-height: 162px;
  width: 162px;
  height: 162px;
  position: relative;
  top: 0;
}
@media (max-width: 575.98px) {
  .video-section-four .btn-box .play-now-two {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}
.video-section-four .info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 85px;
}
.video-section-four .info-text .inner-info {
  border-left: 1px solid rgba(var(--theme-color-white-rgb), 0.5);
  padding-left: 30px;
  max-width: 440px;
}
.video-section-four .info-text .inner-info .text {
  color: var(--theme-color-white);
  margin-bottom: 16px;
}
.video-section-four .info-text .inner-info .link {
  color: var(--theme-color-white);
  font-weight: 700;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.video-section-four .info-text .inner-info .link:hover {
  color: var(--primary-color);
}
.video-section-four .info-text .inner-info .link:hover .icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.video-section-four .info-text .inner-info .link .icon {
  font-size: 18px;
  margin-left: 8px;
  position: relative;
  top: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/*** 

====================================================================
  room-section
====================================================================

***/
.rooms-section {
  position: relative;
  padding: 120px 0;
  background: #f8f5f0;
}
@media (max-width: 575.98px) {
  .rooms-section .sec-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .rooms-section .sec-title h2 {
    font-size: 32px;
  }
}

.room-block.col-lg-3 .inner-box .box-caption .bx-links li {
  margin-right: 3px;
}
.room-block .inner-box {
  position: relative;
}
.room-block .inner-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#222222),
    to(#222222)
  );
  background: linear-gradient(to left, #222222, #222222);
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.room-block .inner-box:hover .box-caption {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.room-block .inner-box:hover .content-box {
  bottom: 84px;
  z-index: 9;
}
.room-block .inner-box:hover:before {
  opacity: 0.4;
  visibility: visible;
}
.room-block .inner-box:hover .image-box figure img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.room-block .inner-box .box-caption {
  position: absolute;
  left: 30px;
  width: calc(100% - 60px);
  z-index: 99;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.room-block .inner-box .box-caption .book-btn {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 14pxx;
  color: #ffffff;
  font-family: var(--text-font2);
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.room-block .inner-box .box-caption .book-btn:hover {
  background-color: var(--theme-color1);
  border-color: transparent;
}
.room-block .inner-box .box-caption .bx-links {
  margin-left: auto;
}
.room-block .inner-box .box-caption .bx-links li {
  display: inline-block;
  margin-right: 11px;
}
.room-block .inner-box .box-caption .bx-links li:last-child {
  margin-right: 0;
}
.room-block .inner-box .box-caption .bx-links li a {
  color: #fff;
  font-size: 16px;
}
.room-block .inner-box .image-box figure {
  margin-bottom: 27px;
  overflow: hidden;
}
.room-block .inner-box .image-box figure img {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.room-block .inner-box .content-box {
  position: absolute;
  bottom: 22px;
  right: 32px;
  text-align: right;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 9;
}
.room-block .inner-box .content-box .title {
  font-size: 27px;
  margin-bottom: -6px;
  color: var(--theme-color-light);
}
.room-block .inner-box .content-box .price {
  font-size: 14px;
  color: var(--theme-color-light);
}
@media (max-width: 991.98px) {
  .room-block .inner-box .image-box .image-2 img {
    width: 100%;
    height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.room-facility-list {
  position: relative;
}
.room-facility-list .icon {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: block;
  font-size: 22px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  width: 64px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.room-facility-list .list-one:hover .icon {
  background-color: var(--primary-color);
  color: #fff;
}
.room-facility-list h6.title {
  color: var(--secondary-color);
  font-family: var(--text-font2);
}
.room-details__content-right {
  position: relative;
  display: block;
  margin-top: 40px;
}

.room-details__details-box {
  background-color: #f5f6f7;
  border: 1px solid var(--theme-color1);
  border-radius: 10px;
  padding: 43px 50px 30px 50px;
  position: relative;
  z-index: 1;
}

.rooms_thumbnail_slider .rooms_details_slider .slick-slide {
  height: 500px;
}
.rooms_thumbnail_slider .rooms_details_slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.rooms_thumbnail_slider .rooms_details_slider_nav {
  margin-top: 20px;
}

.rooms_thumbnail_slider .rooms_details_slider_nav .slick-slide {
  margin: 0 5px;
  cursor: pointer;
  height: auto;
}

.rooms_thumbnail_slider .rooms_details_slider_nav img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.rooms_thumbnail_slider .slick-arrow {
  background-color: var(--primary-color);
  color: var(--text-color-white);
  z-index: 1;
  width: 40px;
  height: 40px;
}
.rooms_thumbnail_slider .slick-prev {
  left: 10px;
}
.rooms_thumbnail_slider .slick-next {
  right: 10px;
}
.rooms_thumbnail_slider .slick-prev:before,
.rooms_thumbnail_slider .slick-next:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 18px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.rooms_thumbnail_slider .slick-prev:before {
  content: "\f060";
}
.rooms_thumbnail_slider .slick-next:before {
  content: "\f061";
}
.rooms_thumbnail_slider .slick-arrow:hover {
  background-color: var(--secondary-color);
}
.rooms_thumbnail_slider .slick-arrow:hover:before {
  color: var(--text-color-white) !important;
}

.room-details__left h3 {
  margin-bottom: 10px;
}
.room-details__left .price {
  color: var(--secondary-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  font-family: var(--text-font2);
  margin-bottom: 15px;
}
@media only screen and (max-width: 480px) {
  .room-block .inner-box .box-caption .book-btn {
    padding: 0 10px;
    margin-right: 10px;
  }
  .room-block.col-lg-3 .inner-box .box-caption .bx-links li {
    margin-right: 10px;
  }
  .rooms-section {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .rooms_thumbnail_slider .rooms_details_slider .slick-slide {
    height: auto;
  }
}
/***

====================================================================
    Product Section One
====================================================================

***/
.room-service-section {
  background-color: rgba(var(--theme-color1-rgb), 0.1);
}

.room-service-block-one .inner-box {
  background-color: var(--theme-color-light);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.room-service-block-one .inner-box .image-box {
  height: 250px;
}
.room-service-block-one .inner-box:hover .image-box img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.room-service-block-one .inner-box .image-box .image {
  position: relative;
  overflow: hidden;
}
.room-service-block-one .inner-box .image-box .image img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .room-service-block-one .inner-box .image-box .image img {
    height: auto;
  }
}
.room-service-block-one .content-box {
  padding: 30px 30px 15px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .room-service-block-one .content-box {
    padding: 20px;
  }
}
.room-service-block-one .content-box .inner-box {
  border-bottom: 1px solid rgba(106, 105, 105, 0.2);
  margin-bottom: 25px;
  padding-bottom: 20px;
}
.room-service-block-one .content-box .title {
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .room-service-block-one .content-box .title {
    font-size: 20px;
  }
  .room-service-block-one .content-box .price {
    font-size: 18px;
  }
}
.room-service-block-one .content-box .price {
  color: var(--secondary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  font-family: var(--text-font2);
}
.room-service-block-one .content-box .facilities-box {
  position: relative;
}
.room-service-block-one .content-box .facilities-list li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #818181;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 25px;
}
.room-service-block-one .content-box .facilities-list i {
  color: #818181;
  font-size: 24px;
}

@media (max-width: 767.98px) {
  .room-service-block-one .inner-box .image-box {
    height: auto;
  }
}

/*** 

====================================================================
  Features Section Two
====================================================================

***/
.feature-section-two {
  position: relative;
  padding: 30px 0 60px;
}
@media (max-width: 767.98px) {
  .feature-section-two {
    padding-top: 70px;
  }
}

.feature-row:hover .image-column .inner-column .image-box .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.feature-row .image-column .inner-column {
  position: relative;
  z-index: 9;
}
.feature-row .content-column .inner-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-color: #f8f5f0;
  /* padding: 61px 91px 70px; */
  padding: 35px;
  height: 100%;
}
@media (max-width: 1199.98px) {
  .feature-row .content-column .inner-column {
    padding: 15px 35px;
  }
}
@media (max-width: 575.98px) {
  .feature-row .content-column .inner-column {
    padding: 61px 15px 70px;
  }
}
.feature-row .content-column .inner-column .content-box {
  text-align: center;
}
.feature-row .content-column .inner-column .sec-title {
  margin-bottom: 34px;
}
.feature-row .content-column .inner-column .sec-title .text {
  margin-top: 16px;
}
.feature-row .content-column .inner-column .sec-title .sub-title {
  margin-bottom: 11px;
}
.feature-row .content-column .inner-column .sec-title h2 {
  display: inline-block;
  border-bottom: 1px solid rgba(var(--theme-color-black-rgb), 0.1);
  padding: 0 10px 19px;
}
@media (max-width: 1199.98px) {
  .feature-row .content-column .inner-column .sec-title h2 {
    font-size: 40px;
    display: block;
  }
}
@media (max-width: 575.98px) {
  .feature-row .content-column .inner-column .sec-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 1199.98px) {
  .feature-row .content-column .inner-column .sec-title .text {
    font-size: 16px;
  }
}
.feature-row .content-column .inner-column .read-more {
  font-family: var(--text-font);
  font-weight: 500;
  padding: 13px 45px 15px;
}
.feature-row .content-column .inner-column .read-more:hover {
  border-color: var(--headings-color);
}
.feature-row .image-column .image {
  overflow: hidden;
}
.feature-row .image-column .image img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/***

==================================================================
    Pricing Section three
==================================================================

***/
.pricing-section-three {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767.98px) {
  .pricing-section-three {
    padding: 80px 0 40px;
  }
}
@media (max-width: 575.98px) {
  .pricing-section-three .sec-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

.pricing-block-three {
  margin-bottom: 120px;
}
@media (max-width: 767.98px) {
  .pricing-block-three {
    margin-bottom: 40px;
  }
}
.pricing-block-three .inner-box {
  position: relative;
}
.pricing-block-three .inner-box .content-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pricing-block-three .inner-box .content-column .inner-column {
  position: relative;
  padding: 0 0 30px;
  z-index: 99;
}
@media (max-width: 991.98px) {
  .pricing-block-three .inner-box .content-column .inner-column {
    margin-right: 0;
    margin-top: 0;
  }
}
.pricing-block-three .inner-box .content-column .inner-column .pricing-amount {
  color: var(--theme-color1);
  display: block;
  font-size: 48px;
  margin-bottom: 0;
  font-family: var(--title-font);
}
.pricing-block-three
  .inner-box
  .content-column
  .inner-column
  .pricing-amount
  span {
  font-size: 14px;
  color: var(--theme-color-dark);
  margin-left: 5px;
}
.pricing-block-three .inner-box .content-column .inner-column .pricing-title {
  font-size: 27px;
  color: var(--theme-color-dark);
  margin-bottom: 18px;
  margin-top: -4px;
}
.pricing-block-three .inner-box .content-column .inner-column .list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}
.pricing-block-three
  .inner-box
  .content-column
  .inner-column
  .list-box
  .list-style-two {
  margin-right: 53px;
  margin-top: 0;
}
@media (max-width: 1199.98px) {
  .pricing-block-three
    .inner-box
    .content-column
    .inner-column
    .list-box
    .list-style-two {
    margin-right: 12px;
  }
}
.pricing-block-three
  .inner-box
  .content-column
  .inner-column
  .list-box
  .list-style-two:last-child {
  margin-right: 0;
}
.pricing-block-three .inner-box .content-column .inner-column .list-style-two {
  margin-top: 30px;
}
.pricing-block-three
  .inner-box
  .content-column
  .inner-column
  .list-style-two
  li {
  margin-bottom: 10px;
}
.pricing-block-three .inner-box .content-column .inner-column .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 41px;
}
.pricing-block-three
  .inner-box
  .content-column
  .inner-column
  .btn-box
  .btn-link {
  color: var(--theme-color-dark);
  font-size: 18px;
  text-decoration: none;
}
.pricing-block-three
  .inner-box
  .content-column
  .inner-column
  .btn-box
  .btn-link
  i {
  font-size: 15px;
  margin-left: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pricing-block-three
  .inner-box
  .content-column
  .inner-column
  .btn-box
  .btn-link:hover {
  color: var(--theme-color1);
}
.pricing-block-three
  .inner-box
  .content-column
  .inner-column
  .btn-box
  .btn-link:hover
  i {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}
.pricing-block-three .inner-box .image-column .image-box {
  margin-left: 40px;
}
@media (max-width: 1199.98px) {
  .pricing-block-three .inner-box .image-column .image-box {
    margin-left: 30px;
  }
}
@media (max-width: 991.98px) {
  .pricing-block-three .inner-box .image-column .image-box {
    margin-left: 0;
  }
}
.pricing-block-three .inner-box .image-column .image-box figure {
  position: relative;
}
.pricing-block-three .inner-box .image-column .image-box figure:before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.pricing-block-three .inner-box .image-column .image-box figure:hover:before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.pricing-block-three .inner-box .image-column .image-box figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pricing-block-three .inner-box.content-align-right .content-column {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.pricing-block-three .inner-box.content-align-right .image-column .image-box {
  margin-left: 0;
  margin-right: 40px;
}
@media (max-width: 1199.98px) {
  .pricing-block-three .inner-box.content-align-right .image-column .image-box {
    margin-right: 30px;
  }
}
@media (max-width: 767.98px) {
  .pricing-block-three .inner-box.content-align-right .image-column .image-box {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

/***

==================================================================
	Main Footer
==================================================================

***/
.main-footer {
  position: relative;
  background-color: var(--theme-color-dark);
  /* Widget Section */
}
.main-footer .widgets-section {
  position: relative;
  padding: 20px 0 0px;
}
.main-footer .footer-column {
  position: relative;
  
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
  position: relative;
  color: var(--theme-color-white);
  margin-bottom: 21px;
}
.main-footer .widget-content {
  position: relative;
}
.main-footer .widget-content .text {
  color: var(--theme-color-white);
}

.user-links {
  position: relative;
}
.user-links li {
  position: relative;
  line-height: 32px;
  color: #929292;
  font-weight: 400;
  margin-bottom: 8px;
}
.user-links li::before {
  content: "\f054";
  position: absolute;
  left: 0px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  visibility: visible;
  visibility: visible;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.user-links li:last-child {
  margin-bottom: 0;
}
.user-links li a {
  position: relative;
  display: inline-block;
  color: inherit;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  margin-left: 15px;
}
.user-links li a:hover {
  color: var(--theme-color-white);
}
.user-links li a:before {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.user-links li a:hover:before {
  width: 100%;
}
.user-links.style-two li {
  padding-left: 0;
}
.user-links.style-two li:before {
  display: none;
}
.user-links.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.user-links.two-column li {
  width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.recent-post {
  position: relative;
  margin-bottom: 30px;
}
.recent-post:last-child {
  margin-bottom: 0;
}
.recent-post .inner {
  position: relative;
}
.recent-post .inner .post-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #adadad;
  line-height: 30px;
  margin-bottom: 23px;
  padding-left: 25px;
}
.recent-post .inner .post-info i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  margin-right: 10px;
  color: var(--theme-color1);
}
.recent-post .inner .post-title {
  color: var(--theme-color-white);
  letter-spacing: -0.8px;
  margin-bottom: 0;
}

.contact-list {
  position: relative;
  margin-bottom: 30px;
}
.contact-list:last-child {
  margin-bottom: 0;
}
.contact-list .inner {
  position: relative;
}
.contact-list .inner .list-info {
  color: #b7b7b7;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  line-height: 1.6;
  margin-bottom: 0;
  gap: 15px;
  margin-bottom: 15px;
}
.contact-list .inner .list-info .list-info-icon {
  color: #fff;
  -webkit-box-flex: 0;
  width: 40px;
  height: 40px;
  line-height: 37px;
  background-color: rgb(191 37 39 / 10%);
  text-align: center;
  flex: 0 0 auto;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}
.contact-list .inner .list-info .list-info-icon i {
  position: relative;
  margin: 0px;
  color: var(--primary-color);
}
.contact-list .inner .list-info a {
  color: #b7b7b7;
}
.contact-list .inner .list-info a:hover {
  color: var(--primary-color);
}
.contact-list .inner .list-info i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  margin-right: 10px;
  color: var(--theme-color1);
}
.contact-list .inner .post-title {
  color: var(--theme-color-white);
  letter-spacing: -0.8px;
  margin-bottom: 0;
}

/*=== Footer Bottom ===*/
.footer-bottom {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(var(--theme-color-white-rgb), 0.1);
  padding: 5px;
}
.footer-bottom .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-bottom .copyright-text {
  position: relative;
  margin-bottom: 0;
  color: #75727b;
}
.footer-bottom .copyright-text span {
  color: var(--theme-color-white);
}
.footer-bottom .copyright-text a {
  color: inherit;
}
.footer-bottom .copyright-text a:hover {
  color: var(--theme-color-white);
}
.footer-bottom .footer-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.footer-bottom .footer-nav li {
  font-size: 16px;
  line-height: 32px;
  color: var(--text-color);
  margin-left: 30px;
}
.footer-bottom .footer-nav li:first-child {
  margin-left: 0;
}
.footer-bottom .footer-nav li a {
  color: var(--theme-color-white);
}
.footer-bottom .footer-nav li a:hover {
  color: var(--theme-color1);
}

.footer-style-one {
  background-color: #0a1c36;
  position: relative;
  /* Subscribe Form Three */
}
.footer-style-one .about-widget .logo {
  position: relative;
  margin-bottom: 24px;
}
.footer-style-one .about-widget .text {
  margin-bottom: 47px;
  font-size: 20px;
  color: #b7b7b7;
  line-height: 30px;
  margin-right: 20px;
}
.footer-style-one .about-widget .text strong {
  color: #b7b7b7;
}
.footer-style-one .links-widget {
  margin-bottom: 50px;
}
.footer-style-one .links-widget li a {
  color: #b7b7b7;
}
.footer-style-one .links-widget li a:hover {
  color: var(--theme-color-white);
}
.footer-style-one .links-widget li i {
  position: absolute;
  left: -27px;
}

.footer-style-one
  .info-widget
  .widget-content
  .recent-post
  .inner
  .post-info:first-child {
  margin-bottom: 0;
}
.footer-style-one .widget-social {
  margin-top: 30px;
  margin-bottom: 23px;
}
.footer-style-one .widget-social .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-style-one .widget-social .social-icon li {
  margin-right: 17px;
}
.footer-style-one .widget-social .social-icon li:last-child {
  margin-right: 0;
}
.footer-style-one .widget-social .social-icon li a {
  color: var(--text-color);
  display: inline-block;
  font-size: 21px;
  text-align: center;
  line-height: 40px;
}
.footer-style-one .widget-social .social-icon li a:hover {
  background-color: transparent;
  border-color: transparent;
  color: var(--primary-color);
}

@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 480px) {
  .footer-bottom {
    padding: 27px 0 10px;
  }
  .footer-bottom .copyright-text {
    line-height: 20px;
    margin-bottom: 15px;
  }
  .footer-bottom .footer-nav {
    line-height: 20px;
    margin-bottom: 15px;
  }
}

/*** 

====================================================================
Page Title
====================================================================

***/
@-webkit-keyframes "ripple" {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes "ripple" {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.page-title {
  background-color: var(--theme-color2);
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0 0;
  min-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-title:before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(17, 32, 33, 0.9)),
    to(transparent)
  );
  background: linear-gradient(180deg, rgba(17, 32, 33, 0.9), transparent);
}
.page-title .title {
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 17px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: auto;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .page-title .title {
    font-size: 34px;
  }
}
.page-title .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
  max-width: 520px;
}

.page-breadcrumb {
  position: relative;
  margin-top: 5px;
}
.page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  position: absolute;
  content: "\f105";
  right: -6px;
  top: 1px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  color: #ffffff;
}
.page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color: var(--theme-color3);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: #ffffff;
}

.page-title.style-two {
  background-position: center center;
}
.page-title.style-two .page-breadcrumb-outer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 8;
}
.page-title.style-two .page-breadcrumb li {
  color: rgb(7, 7, 16);
  font-weight: 600;
}
.page-title.style-two .page-breadcrumb li:after {
  color: rgb(7, 7, 16);
}
.page-title.style-two .page-breadcrumb li a {
  color: rgba(7, 7, 16, 0.6);
}
.page-title.style-two .page-breadcrumb li a:hover {
  color: rgb(7, 7, 16);
}

.background-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}
.error-page__inner .error-page__title-box {
  position: relative;
  display: block;
}
.error-page__inner .error-page__title {
  position: relative;
  display: inline-block;
  font-size: 280px;
  line-height: 280px;
  margin-bottom: 0;
  color: var(--theme-color1);
}
.error-page__inner .error-page__sub-title {
  font-size: 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 50px;
  margin-top: -16px;
}
.error-page__inner .error-page__text {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.error-page__inner .error-page__form {
  position: relative;
  display: block;
  margin: 42px auto 20px;
}
.error-page__inner .error-page__form input[type="search"] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #f5f5f5;
  font-size: 14px;
  color: #333;
  padding-left: 50px;
  padding-right: 75px;
  border-radius: 7px;
}
.error-page__inner .error-page__form button[type="submit"] {
  background-color: transparent;
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.error-page__inner .error-page__form-input {
  position: relative;
  display: block;
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
}

/***

====================================================================
        Contact
====================================================================

***/
.contact-details__info {
  position: relative;
  display: block;
  margin-top: 0px;
}
.contact-details__info li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.contact-details__info li .icon {
  height: 80px;
  width: 80px;
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li .icon span {
  color: var(--text-color-white);
  font-size: 25px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li:hover .icon {
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
}
.contact-details__info li:hover .icon span {
  color: var(--text-color-bg-theme-color2);
}
.contact-details__info li:hover .text a {
  color: var(--notech-base);
}
.contact-details__info li:hover .text a span {
  color: var(--notech-gray);
}
.contact-details__info li .text {
  margin-left: 30px;
}
.contact-details__info li .text p {
  font-size: 14px;
  line-height: 24px;
}
.contact-details__info li .text a {
  color: var(--text-color);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-details__info li .text span {
  color: var(--text-color);
}
.contact-details__info li + li {
  margin-top: 19px;
}

.contact-details__info li .text h6 {
  font-family: var(--text-font2);
  color: var(--secondary-color);
  font-size: var(--h4-font-size);
}
.map {
  height: 550px;
}

/***

====================================================================
    Blog Details
====================================================================

***/
.blog-details {
  position: relative;
  display: block;
}

.blog-details__left {
  position: relative;
  display: block;
}
.blog-details__img {
  position: relative;
  display: block;
  border-radius: 10px;
}
.blog-details__img img {
  width: 100%;
  border-radius: 10px;
}
.blog-details__date {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--secondary-color);
  text-align: center;
  padding: 21px 24px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blog-details__date .day {
  font-size: 16px;
  color: #fff;
  line-height: 16px;
}
.blog-details__date .month {
  position: relative;
  display: block;
  font-size: 10px;
  color: #fff;
  line-height: 12px;
  text-transform: uppercase;
}
.blog-details__content {
  position: relative;
  display: block;
  margin-top: 22px;
}
.blog-details__title {
  font-size: 30px;
  line-height: 40px;
  margin-top: 12px;
  margin-bottom: 21px;
}
.blog-details__content ul li
{
  list-style: inside;
}

.blog-details__content ol li
{
  list-style: inherit;
}
.blog-details__bottom {
  padding: 30px 0 30px;
  margin-top: 49px;
  border-top: 1px solid #ece9e0;
}
@media only screen and (max-width: 767px) {
}
.blog-details__bottom p {
  margin: 0;
}
.blog-details__tags span {
  color: #0e2207;
  font-size: 20px;
  margin-right: 14px;
}
.blog-details__tags a {
  position: relative;
  font-size: 12px;
  background-color: var(--theme-color1);
  color: #fff;
  display: inline-block;
  padding: 5px 30px 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 35px;
}
.blog-details__tags a:hover {
  background-color: var(--primary-color);
  color: var(--text-color-white);
  text-decoration: none !important;
}
.blog-details__tags a {
  margin: 5px 5px 5px 0px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog-details__social-list a {
  position: relative;
  height: 43px;
  width: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--secondary-color);
  background-color: var(--theme-light-background);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.blog-details__social-list a:hover {
  color: var(--text-color-white);
}
.blog-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.blog-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--primary-color);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}
.blog-details__social-list a + a {
  margin-left: 10px;
}

/*** 
====================================================================
Sidebar
====================================================================

***/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 30px;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__post {
    padding: 30px;
  }
}
.hotel-policy ul,
.hotel-policy li {
  list-style: inside;
}

.highlight_keywords li {
  display: inline-block;
  padding-right: 10px;
  position: relative;
  font-size: 12px;
}
.highlight_keywords li:after {
  content: "|";
  position: absolute;
  right: 0px;
}
.highlight_keywords li a {
  color: #b7b7b7;
}

/*** 
====================================================================
News and Blog Css
====================================================================
***/
.news-section {
  position: relative;
  padding: 127px 0 51px;
}
.news-block-four {
  margin-bottom: 40px;
}
.news-block-four .inner-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.news-block-four .inner-box:hover .image-box .image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-block-four .inner-box:hover .image-box .image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-block-four .image-box {
  position: relative;
  height: 350px;
}
.news-block-four .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.news-block-four .image-box .image img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.news-block-four .image-box .image img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-block-four .image-box .date {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 72px;
  display: block;
  z-index: 3;
}
.news-block-four .image-box .date strong {
  position: relative;
  display: block;
  width: 72px;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--title-font);
  padding: 5px 0 13px;
  line-height: 1;
  color: var(--theme-color-light);
  background-color: var(--theme-color1);
  text-align: center;
}
.news-block-four .image-box .date strong span {
  display: block;
  font-size: 14px;
  font-family: var(--text-font);
  margin-top: 4px;
}
.news-block-four .content-box {
  margin-top: 30px;
}
.news-block-four .content-box .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  margin-left: 47px;
  margin-bottom: 18px;
}
.news-block-four .content-box .post-meta li {
  position: relative;
  font-weight: 400;
}
.news-block-four .content-box .post-meta .categories:hover a {
  color: var(--theme-color1);
}
.news-block-four .content-box .post-meta .categories:before {
  content: "";
  position: absolute;
  border-bottom: 2px solid var(--theme-color1);
  width: 37px;
  left: -47px;
  bottom: 11px;
}
.news-block-four .content-box .post-meta .categories a {
  color: var(--theme-color1);
}
.news-block-four .content-box .post-meta .date {
  color: var(--theme-color1);
  margin-left: 21px;
}
.news-block-four .content-box .post-meta .date:before {
  bottom: 10px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: -13px;
}
.news-block-four .content-box .title {
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: auto;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .news-block-four .image-box{
    height: auto;
  }
  .news-block-four .content-box{
    margin-top: 0px;
  }
  .news-block-four .content-box .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.news-block-four .content-box .title:hover {
  color: var(--theme-color1);
}
.news-block-four .content-box .read-more {
  color: var(--theme-color-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
  font-family: var(--title-font);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.news-block-four .content-box .read-more:before {
  background-color: var(--theme-color-dark);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  right: -60px;
  bottom: 0;
  width: 51px;
}
.news-block-four .content-box .read-more:after {
  background-color: var(--theme-color1);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  right: -9px;
  bottom: 0;
  width: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.news-block-four .content-box .read-more:hover {
  color: var(--theme-color1);
}
.news-block-four .content-box .read-more:hover:after {
  right: -60px;
  width: 51px;
}
.news-block-four .content-box .read-more:hover .icon {
  color: var(--theme-color1);
}
.news-block-four .content-box .read-more .icon {
  color: var(--theme-color-dark);
  font-size: 12px;
  position: absolute;
  bottom: 6px;
  right: -62px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

/*** 

====================================================================
Sidebar
====================================================================

***/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: var(--h4-font-weight);
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 30px;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.sidebar__post .sidebar__title {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__title {
    margin-bottom: 0;
  }
}
.sidebar__post .sidebar__post-list {
  margin: 0;
}
.sidebar__post .sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media only screen and (max-width: 767px) {
  .sidebar__post .sidebar__post-list li {
    padding: 16px 0;
  }
}
.sidebar__post .sidebar__post-list li:hover {
  background-color: #ffffff;
  border-radius: 10px;
}
.sidebar__post .sidebar__post-list li + li {
  margin-top: 11px;
}
.sidebar__post .sidebar__post-list .sidebar__post-image {
  margin-right: 20px;
  -webkit-box-flex: 70px;
  -ms-flex: 70px 0 0px;
  flex: 70px 0 0;
}
.sidebar__post .sidebar__post-list .sidebar__post-image > img {
  width: 80px;
  border-radius: 10px;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}
.sidebar__post .sidebar__post-list .sidebar__post-content {
  position: relative;
  top: -3px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
  letter-spacing: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: auto;
  overflow: hidden;
}
.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
  color: #0e2207;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: #757873 !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
  color: var(--theme-color1);
  font-size: 14px;
  padding-right: 3px;
}

.sidebar__category {
  position: relative;
  display: block;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  border-radius: 10px;
  padding: 30px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sidebar__category {
    padding: 30px;
  }
}
.sidebar__category .sidebar__title {
  margin-bottom: 10px;
}
.sidebar__category-list {
  margin: 0;
}
.sidebar__category-list li + li {
  margin-top: 4px;
}
.sidebar__category-list li a {
  color: #757873;
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 10px;
  font-weight: 500;
  border-radius: 10px;
}
.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: #0e2207;
  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}
.sidebar__category-list li a:hover span {
  color: #ffcd1e;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}
.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--theme-color2);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}
.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: #0e2207;
  border-radius: 10px;
  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
}
.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: #ffcd1e;
}

.sidebar__tags {
  position: relative;
  display: block;
  color: var(--theme-light-background-text-color);
  background-color: var(--theme-light-background);
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
.sidebar__tags .sidebar__title {
  margin-bottom: 25px;
}
.sidebar__tags-list a {
  font-size: 14px;
  color: #0e2207;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #ffffff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
}
.sidebar__tags-list a:hover {
  color: #fff;
  background: var(--theme-color1);
}
.sidebar__tags-list a + a {
  margin-top: 10px;
}
