/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --gorent-font: "Roboto", sans-serif;
  --gorent-font-two: "Inter Tight", sans-serif;
  --gorent-gray: #868689;
  --gorent-gray-rgb: 134, 134, 137;
  --gorent-base: #FFB51D;
  --gorent-base-rgb: 255, 181, 29;
  --gorent-black: #131222;
  --gorent-black-rgb: 19, 18, 34;
  --gorent-extra: #E3E3E3;
  --gorent-extra-rgb: 227, 227, 227;
  --gorent-white: #ffffff;
  --gorent-white-rgb: 255, 255, 255;
  --gorent-bdr-color: #D9D9D9;
  --gorent-bdr-color-rgb: 238, 239, 242;
  --gorent-bdr-radius: 20px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  position: relative;
  display: block;
  font-family: var(--gorent-font);
  color: var(--gorent-gray);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  z-index: 1;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--gorent-font-two);
  color: var(--gorent-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--gorent-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--gorent-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--gorent-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-bottom: 49px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  color: var(--gorent-base);
  font-weight: 400;
  text-transform: uppercase;
}

.section-title__tagline-shape {
  position: relative;
  display: block;
  margin-bottom: 3px;
}

.section-title__tagline-shape img {
  width: auto;
}

.section-title__title {
  color: var(--gorent-black);
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  margin: 7px 0 0;
  text-transform: inherit
}





/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  color: var(--gorent-black);
  background-color: var(--gorent-base);
  padding: 13px 30px 13px;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}

.thm-btn::after {
  content: "";
  background-color: var(--gorent-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.thm-btn:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.thm-btn:hover {
  color: var(--gorent-white);
}

.thm-btn span {
  position: relative;
  top: -1px;
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--gorent-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--gorent-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--gorent-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--gorent-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--gorent-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gorent-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}


/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--gorent-base);
  border-color: var(--gorent-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--gorent-white-rgb), .50);
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--gorent-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: var(--gorent-gray);
  border: none;
  border-radius: var(--gorent-bdr-radius);
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .thm-btn:hover {
  color: var(--gorent-black);
}

.xs-sidebar-group .content-inner .form-inner .form-group .thm-btn span:before {
  background-color: var(--gorent-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  border: none;
  background-color: var(--gorent-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button::after {
  background-color: var(--gorent-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--gorent-white);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--gorent-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--gorent-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--gorent-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--gorent-white-rgb), .10);
  border-radius: 50%;
  color: var(--gorent-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--gorent-base);
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--gorent-white);
}


/*=============== scrollbar-Css =============*/

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7px 120px 8px;
  background-color: var(--gorent-black);
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--gorent-white-rgb), .20);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 16px;
  color: var(--gorent-base);
  position: relative;
  display: inline-block;
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  color: var(--gorent-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.main-menu__contact-list li .text p a {
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--gorent-base);
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__top-login-reg-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.main-menu__top-login-reg-box a {
  color: var(--gorent-white);
  font-weight: 500;
  position: relative;
  display: block;
}

.main-menu__top-login-reg-box a:hover {
  color: var(--gorent-base);
}

.main-menu__top-login-reg-box p {
  color: var(--gorent-base);
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--gorent-white-rgb), .20);
  border-radius: 5px;
  font-size: 14px;
  color: var(--gorent-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--gorent-white);
  border: 1px solid var(--gorent-base);
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--gorent-base);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu__social a+a {
  margin-left: 5px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 120px 0;
}

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  /* padding: 20px 0; */
}

.main-menu__middle-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--gorent-base);
}

.main-menu__cart-box {
  position: relative;
  display: block;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--gorent-base);
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-black);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
}

.main-menu__call-content {
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 7px;
}

.main-menu__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  font-family: var(--gorent-font);
}

.main-menu__call-number a {
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--gorent-base);
}


.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 30px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--gorent-base);
  margin-top: 6px;
  margin-bottom: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  width: 25px;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 30px;
}


.stricky-header.main-menu {
  background-color: var(--gorent-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 30px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--gorent-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 20px;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--gorent-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--gorent-base);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--gorent-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--gorent-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--gorent-white);
  min-width: 330px;
  padding: 9px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--gorent-bdr-radius);
  border-bottom-right-radius: var(--gorent-bdr-radius);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--gorent-black-rgb), 0.10);
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--gorent-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--gorent-font-two);
  text-transform: capitalize;
  padding: 16px 2px 16px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: rgba(var(--gorent-base-rgb), 1.0);
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--gorent-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -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);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--gorent-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--gorent-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 30px;
  color: var(--gorent-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--gorent-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--gorent-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--gorent-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--gorent-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--gorent-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--gorent-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--gorent-base);
  border: none;
  outline: none;
  color: #fff;
  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;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--gorent-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  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;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--gorent-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--gorent-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--gorent-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--gorent-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--gorent-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--gorent-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}


.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -25px;
  margin-bottom: -25px;
}

.home-showcase__inner {
  padding: 40px 42px 34px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: var(--gorent-bdr-radius);
  border-bottom-right-radius: var(--gorent-bdr-radius);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 4px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--gorent-bdr-radius);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  background-color: var(--gorent-white);
}

.home-showcase__image>img {
  width: 100%;
  border-radius: var(--gorent-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 800ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0.70;
  z-index: 1;
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1.0;
  transform-origin: top center;
}

.home-showcase__buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -ms-linear-gradient(left, #131222 0%, #131222 100%);
  background-image: -moz-linear-gradient(left, #131222 0%, #131222 100%);
  background-image: -o-linear-gradient(left, #131222 0%, #131222 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #131222), color-stop(100, #131222));
  background-image: -webkit-linear-gradient(left, #131222 0%, #131222 100%);
  background-image: linear-gradient(to right, #131222 0%, #131222 100%);

  opacity: 1;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  z-index: -1;
}

.home-showcase__image:hover .home-showcase__buttons::before {
  opacity: 0.90;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.home-showcase__buttons__item {
  padding: 7px 20px 9px;
  width: 160px;
  text-align: center;
  justify-content: center;
}

.home-showcase__buttons__item::after {
  background-color: var(--gorent-white);
}

.home-showcase__buttons__item:hover {
  color: var(--gorent-black);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: var(--gorent-black);
  margin-top: 18px;
  text-transform: capitalize;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--gorent-white, #ffffff);
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__top {
  position: relative;
  display: block;
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7px 80px 8px;
  z-index: 1;
}

.main-menu-two__top-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--gorent-white-rgb), .10);
  z-index: -1;
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li+li {
  margin-left: 46px;
}

.main-menu-two__contact-list li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--gorent-white-rgb), .20);
}

.main-menu-two__contact-list li:first-child:before {
  display: none;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  font-size: 16px;
  color: var(--gorent-base);
  position: relative;
  display: inline-block;
}

.main-menu-two__contact-list li .text {
  margin-left: 10px;
}

.main-menu-two__contact-list li .text p {
  color: var(--gorent-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.main-menu-two__contact-list li .text p a {
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--gorent-base);
}

.main-menu-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-login-reg-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.main-menu-two__top-login-reg-box a {
  color: var(--gorent-white);
  font-weight: 500;
  position: relative;
  display: block;
}

.main-menu-two__top-login-reg-box a:hover {
  color: var(--gorent-base);
}

.main-menu-two__top-login-reg-box p {
  color: var(--gorent-base);
}

.main-menu-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--gorent-white-rgb), .20);
  border-radius: 5px;
  font-size: 14px;
  color: var(--gorent-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-two__social a:hover {
  color: var(--gorent-white);
  border: 1px solid var(--gorent-base);
}

.main-menu-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--gorent-base);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-two__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-two__social a+a {
  margin-left: 5px;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--gorent-white-rgb), .10);
  z-index: -1;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px 0;
}

.main-menu-two__left {
  display: block;
}

.main-menu-two__logo {
  display: block;
  padding: 20px 0;
}

.main-menu-two__middle-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--gorent-white);
}

.main-menu-two__cart-box {
  position: relative;
  display: block;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--gorent-base);
  color: var(--gorent-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart:hover {
  color: var(--gorent-white);
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-black);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
}

.main-menu-two__call-content {
  margin-left: 10px;
}

.main-menu-two__call-sub-title {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 3px;
}

.main-menu-two__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  font-family: var(--gorent-font);
}

.main-menu-two__call-number a {
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
  color: var(--gorent-base);
}


.main-menu-two__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 30px;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  width: 25px;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 30px;
}


.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--gorent-white);
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--gorent-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--gorent-base);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--gorent-base);
}


.stricky-header.main-menu-two {
  background-color: var(--gorent-black);
}

















/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 120px 0;
}

.main-menu-three__left {
  display: block;
}

.main-menu-three__logo {
  display: block;
  padding: 20px 0;
}

.main-menu-three__middle-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu-three__search-box {
  position: relative;
  display: block;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--gorent-base);
}

.main-menu-three__cart-box {
  position: relative;
  display: block;
}

.main-menu-three__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 500;
  background-color: var(--gorent-base);
  color: var(--gorent-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart:hover {
  color: var(--gorent-base);
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.main-menu-three__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gorent-black);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
}

.main-menu-three__call-content {
  margin-left: 10px;
}

.main-menu-three__call-sub-title {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 3px;
}

.main-menu-three__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  font-family: var(--gorent-font);
}

.main-menu-three__call-number a {
  color: var(--gorent-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__call-number a:hover {
  color: var(--gorent-base);
}


.main-menu-three__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  width: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 30px;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-two {
  width: 25px;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 30px;
}


.stricky-header.main-menu-three {
  background-color: var(--gorent-white);
}







/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-four:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--gorent-black-rgb), 0.90);
  z-index: -1;
}

.main-menu-four__wrapper {
  position: relative;
  display: block;
}

.main-menu-four__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-four__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
}

.main-menu-four__logo {
  display: block;
  padding: 30px 0;
}

.main-menu-four__main-menu-box {
  display: block;
}

.main-menu-four__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu-four__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__search-box {
  position: relative;
  display: block;
}

.main-menu-four__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__search:hover {
  color: var(--gorent-base);
}

.main-menu-four__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--gorent-base);
  border-radius: 50%;
  color: var(--gorent-white);
  font-size: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__call-icon:hover {
  background-color: var(--gorent-white);
  color: var(--gorent-base);
}

.main-menu-four__call-content {
  margin-left: 10px;
}

.main-menu-four__call-sub-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--gorent-white-rgb), .90);
  line-height: 14px;
  font-family: var(--gorent-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-menu-four__call-number {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
  font-family: var(--gorent-font-two);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-menu-four__call-number a {
  color: var(--gorent-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__call-number a:hover {
  color: var(--gorent-base);
}

.stricky-header.main-menu-four {
  background-color: var(--gorent-black);
}

.main-menu-four .main-menu__list>li+li,
.stricky-header.main-menu-four .main-menu__list>li+li {
  margin-left: 30px;
}




/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gorent-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--gorent-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn::after {
  background-color: var(--gorent-black);
  border-radius: 0;
}

.search-popup__content .thm-btn::before {
  background-color: var(--gorent-black);
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--gorent-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--gorent-white);
}


/*--------------------------------------------------------------
# Edit All Css
--------------------------------------------------------------*/





































/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gorent-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--gorent-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}









/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

.main-menu__logo img {
  width: 200px;
  padding: 3px 0px;
}

.footer-widget__about-logo img {
  width: 230px;
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}

.logo-box img {
  width: 230px;
  background: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}

@media (max-width:575px) {
  .main-menu__top {
    padding: 12px 0px;
  }
}



/* ===================
20. Booking css 
====================== */

.booking-area {
  position: relative;
  margin-top: -70px;
  z-index: 99;
}

.booking-form {
  padding: 30px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.booking-title {
  font-size: 25px;
  margin-bottom: 10px;
}

.booking-form .form-group {
  margin-top: 10px;
  position: relative;
}

.booking-form .form-group i {
  position: absolute;
  right: 20px;
  bottom: 21px;
}

.booking-form .form-group label {
  margin-bottom: 2px;
  color: #000000;
}

.booking-form .form-select,
.booking-form .form-control {
  padding: 14px 50px 14px 20px;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: none;
  color: #757F95;
}

.booking-form .form-select:focus,
.booking-form .form-control:focus {
  border-color: #FFB300;
}

.booking-form .theme-btn {
  width: 100%;
  padding: 15px;
}

.booking-form .theme-btn::before {
  width: 360px;
  height: 360px;
}

.theme-btn {
  font-size: 14px;
  color: var(--color-dark);
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #FFB300;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.booking-form .theme-btn {
  width: 100%;
  padding: 15px;
}

.nice-select {
  width: 100%;
  font-weight: 400;
  height: 55px;
  line-height: 54px;
  border-radius: 10px;
  font-size: 16px;
  border-color: #CED4DA;
  border: 1px solid #ced4da;
  color: #868689;
  background: transparent;
}

.nice-select .list {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}


@media all and (max-width: 991px) {
  .booking-form {
    padding: 25px;
  }

  .booking-form .theme-btn {
    margin-top: 25px;
  }
}


/* custom */
/* Desktop Mega Menu */
.mega-menu {
  position: relative;
}

.mega-menu-content {
  display: flex;
  width: 700px;
  position: absolute;
  left: 0;
  top: 100%;
  background: #000;
}

.mega-column {
  width: 340px;
  /* padding: 10px; */
}

.mega-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.mega-column ul {
  list-style: none;
  padding: 0;
}

.mega-column ul li {
  margin-bottom: 6px;
}


/* Mobile Responsive Fix */
@media (max-width: 991px) {

  .mega-menu-content {
    display: block;
    width: 100%;
    position: static;
    background: transparent;
  }

  .mega-column {
    width: 100%;
    /* padding: 10px 15px; */
  }

  .mega-column h4 {
    margin-top: 10px;
    color: #fff;
  }

}


@media (max-width:991px) {

  .dropdown .mega-menu-content {
    display: none;
  }

  .dropdown.open .mega-menu-content {
    display: block;
  }

}

.mega-menu-content {
  width: 100%;
  left: 0;
}

/* custom */

.mega-submenu {
  display: none;
  padding-left: 15px;
}

.mega-title {
  font-weight: 600;
  display: block;
  cursor: pointer;
  /* margin-bottom:10px; */
}

.mega-title.active+.mega-submenu {
  display: block;
}

.main-menu__call a {
  border-radius: 100px;
}

.main-menu__call span {
  font-weight: 800;
  font-size: 20px;
}

aside.sidebar-area {
  position: sticky;
  top: 10px;
}

.pulse:nth-child(1) {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.pulse:nth-child(2) {
  -webkit-animation: pulse 2s infinite 0.3s;
  animation: pulse 2s infinite 0.3s;
}

.pulse:nth-child(3) {
  -webkit-animation: pulse 2s infinite 0.3s;
  animation: pulse 2s infinite 0.3s;
}

.whatsapp-info,
.pulse {
  font-family: "Lato", sans-serif;
  display: inline-block;
  color: #fff;
  background: #1ab744;
  position: fixed;
  bottom: 30px;
  right: 50px;
  font-size: 45px;
  text-align: center;
  z-index: 99;
  border-radius: 90%;
  height: 50px;
  width: 50px;
  line-height: 45px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

.calles:nth-child(1) {
  -webkit-animation: calles 2s infinite;
  animation: calles 2s infinite;
}

.calles:nth-child(2) {
  -webkit-animation: calles 2s infinite;
  animation: calles 2s infinite;
}

.calles:nth-child(2) {
  -webkit-animation: calles 2s infinite;
  animation: calles 2s infinite;
}

.phone-info,
.calles {
  font-family: "Lato", sans-serif;
  display: inline-block;
  color: #fff;
  background: #066de3;
  position: fixed;
  bottom: 30px;
  left: 50px;
  font-size: 45px;
  text-align: center;
  z-index: 99;
  border-radius: 90%;
  height: 50px;
  width: 50px;
  line-height: 45px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

@keyframes calles {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}


/*====================
52. Footer css 
======================*/

.footer-area {
  background: #000;
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.footer-area::before {
  content: "";
  position: absolute;
  background-image: url(assets/images/icon/shape-2.png);
  background-repeat: repeat-x;
  width: 100%;
  height: 50px;
  left: 0;
  top: 0;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 210px;
  margin-bottom: 20px;
  background: #fff;
  padding: 10px 10px;
  border-radius: 10px;
}

.copyright {
  position: relative;
  padding: 15px 0;
  background: #000;
  border-bottom: 5px solid #FFB300;
  z-index: 1;
  margin-top: 15px;
}

.copyright::before {
  content: "";
  position: absolute;
  right: 0;
  top: -10px;
  bottom: -1px;
  background: #FFB300;
  width: 50%;
  clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: #fff;
  transition: all .5s ease-in-out;
}

.copyright .footer-menu li a:hover {
  color: #FFB300;
}

.copyright .copyright-text {
  color: #fff;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #FFB300;
  font-weight: 500;
}

.footer-widget-title {
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 600;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 90px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2px;
  background-color: #FFB300;
  bottom: 0;
  left: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-list li a {
  color: #fff;
  transition: all .5s ease-in-out;
}

.footer-list li a i {
  margin-right: 5px;
  color: #FFB300;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: #FFB300;
}

.footer-widget-box p {
  color: #fff;
  padding-right: 18px;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 27px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social li a i {
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50px;
  background: #000;
  color: #FFB300;
  transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
  background: #fff;
  color: #FFB300;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-contact li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 50px;
  background: #FFB300;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: none;
  border: none;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.subscribe-form .theme-btn:hover {
  color: #FFB300;
}

.subscribe-form .theme-btn::before {
  background: #fff;
}


@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright::before {
    clip-path: polygon(30% 1%, 100% 0, 100% 100%, 0% 100%);
  }

  .copyright .copyright-text a {
    color: #FFB300;
  }
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}



/* gallery css */
.magnific-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.magnific-img {
  display: inline-block;
  width: 100%;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-arrow-left:before {
  border-right: none !important;
}

.mfp-arrow-right:before {
  border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
  opacity: 0 !important;
  transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
  opacity: 1 !important;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  object-fit: contain;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

.my-class_fom span a {
  color: #808080;
}

.btn-book a {
  color: white;
}

.my-class_fom:hover span a {
  color: #fff;
}

/* gallery css */



#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-plane {
  font-size: 3rem;
  color: var(--gorent-base);
  animation: flyPlane 1.2s ease-in-out infinite alternate;
}

@keyframes flyPlane {
  from {
    transform: translateX(-30px) rotate(-10deg);
  }

  to {
    transform: translateX(30px) rotate(10deg);
  }
}

/* ===================== NAVBAR ===================== */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  transition: box-shadow .38s cubic-bezier(.4, 0, .2, 1);
}

.navbar-custom.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .10);
}

.navbar-brand-logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: #000;
  letter-spacing: -1px;
  text-decoration: none;
}

.navbar-brand-logo span {
  color: var(--gorent-base);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links>li>a {
  font-size: .9rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color .38s cubic-bezier(.4, 0, .2, 1);
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gorent-base);
  transition: width .38s cubic-bezier(.4, 0, .2, 1);
}

.nav-links>li>a:hover {
  color: var(--gorent-base);
}

.nav-links>li>a:hover::after {
  width: 100%;
}

.btn-nav-login {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid #000;
  background: transparent;
  font-weight: 600;
  font-size: .85rem;
  color: #000;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
}

.btn-nav-login:hover {
  background: #000;
  color: #fff;
}

.btn-nav-register {
  padding: 8px 22px;
  border-radius: 50px;
  background: var(--gorent-base);
  border: 2px solid var(--gorent-base);
  font-weight: 600;
  font-size: .85rem;
  color: #fff;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
}

.btn-nav-register:hover {
  background: var(--gorent-base);
  border-color: var(--gorent-base);
  transform: translateY(-2px);
}

/* ===================== HERO BANNER ===================== */
.hero-banner {
  margin-top: var(--nav-h);
  position: relative;
  height: 520px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 60%, #2d6a9f 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1525625293386-3f8f99389edd?w=1400&q=80') center/cover no-repeat;
  opacity: .35;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 27, 42, .85) 35%, rgba(13, 27, 42, .1));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 18px;
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero-badge i {
  color: var(--gorent-base);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  font-weight: 900;
}

.hero-title span {
  color: var(--gorent-base);
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
}

.hero-meta-item i {
  color: var(--gorent-base);
}

/* Tab Nav in hero */
.hero-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 0;
}

.hero-tab {
  flex: 0 0 auto;
  padding: 14px 32px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  border: none;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
  border-top: 3px solid transparent;
}

.hero-tab:hover,
.hero-tab.active {
  background: #fff;
  color: var(--gorent-base);
  border-top-color: var(--gorent-base);
}

/* ===================== FILTER BAR ===================== */
.filter-bar {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: var(--nav-h);
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.filter-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 8px 20px;
  border-radius: 50px;
  background: #f9f7f4;
  border: 1.5px solid #e0e0e0;
  font-size: .82rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--gorent-base);
  color: #fff;
  border-color: var(--gorent-base);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 105, 42, .35);
}

/* ===================== SECTION HEADER ===================== */
.section-head {
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gorent-base);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gorent-base);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #000;
}

.sort-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .87rem;
  font-weight: 500;
}

.sort-bar select {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 14px;
  background: #fff;
  font-size: .85rem;
  cursor: pointer;
  color: #000;
  outline: none;
}

.count-badge {
  background: #ffeee5;
  color: var(--gorent-base);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .8rem;
  font-weight: 700;
}

/* ===================== TOUR CARDS ===================== */
.tour-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1), box-shadow .38s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
}

/* Image wrapper */
.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.tour-card:hover .card-img-wrap img {
  transform: scale(1.1);
}

/* Overlay on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, .7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .38s cubic-bezier(.4, 0, .2, 1);
}

.tour-card:hover .card-overlay {
  opacity: 1;
}

/* Quick action buttons */
.card-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
}

.tour-card:hover .card-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .95rem;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
}

.action-btn:hover {
  background: var(--gorent-base);
  color: #fff;
  transform: scale(1.1);
}

/* Badges */
.card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-pill {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.badge-discount {
  background: #ff4757;
  color: #fff;
}

.badge-trending {
  background: var(--gorent-base);
  color: #fff;
}

.badge-new {
  background: #2ecc71;
  color: #fff;
}

/* Card body */
.card-body-custom {
  padding: 1.25rem 1.4rem 1.4rem;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #6b7280;
  margin-bottom: .6rem;
}

.card-location i {
  color: var(--gorent-base);
}

.card-title-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  line-height: 1.3;
  display: block;
  margin-bottom: .8rem;
  transition: color .38s cubic-bezier(.4, 0, .2, 1);
}

.card-title-link:hover {
  color: var(--gorent-base);
}

.card-meta-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  border-top: 1px solid #f0f0f0;
  padding-top: .8rem;
  margin-bottom: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
}

.meta-item i {
  color: var(--gorent-base);
  font-size: .75rem;
}

.stars {
  color: #f59e0b;
  font-size: 24px;
}

.review-count {
  font-size: 15px;
  color: #6b7280;
  margin-left: 4px;
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-from {
  font-size: 15px;
  color: #6b7280;
  display: block;
  margin-bottom: 2px;
}

.price-original {
  font-size: 15px;
  color: #6b7280;
  text-decoration: line-through;
  margin-right: 6px;
}

.price-current {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gorent-base);
}

.price-per {
  font-size: 15px;
  color: #6b7280;
}

.btn-book {
  padding: 9px 20px;
  border-radius: 50px;
  background: var(--gorent-base);
  color: #000;
  border: none;
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-book:hover {
  background: var(--gorent-base);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 105, 42, .4);
}

.btn-book i {
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
}

.btn-book:hover i {
  transform: translateX(3px);
}

/* ===================== SIDEBAR ===================== */
.sidebar-widget {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid #ffeee5;
}

.widget-title span {
  color: var(--gorent-base);
}

/* Price range slider */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--gorent-base) 0%, var(--gorent-base) 60%, #e0e0e0 60%);
  outline: none;
  margin: 1.2rem 0 .5rem;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gorent-base);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232, 105, 42, .4);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

/* Checkbox list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: #000;
  cursor: pointer;
}

.check-list li input[type=checkbox] {
  accent-color: var(--gorent-base);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.check-list li:hover {
  color: var(--gorent-base);
}

/* Radio */
.radio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.radio-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  cursor: pointer;
}

.radio-list li input[type=radio] {
  accent-color: var(--gorent-base);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.radio-list li label {
  cursor: pointer;
  color: #000;
  transition: color .38s cubic-bezier(.4, 0, .2, 1);
}

.radio-list li:hover label {
  color: var(--gorent-base);
}

/* Star filter */
.star-filter {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.star-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  cursor: pointer;
}

.star-row input {
  accent-color: var(--gorent-base);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Read more toggle */
.read-more-link {
  color: var(--gorent-base);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: .7rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap .38s cubic-bezier(.4, 0, .2, 1);
}

.read-more-link:hover {
  gap: 8px;
}

/* ===================== OFFER BANNER ===================== */
.offer-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 4rem;
  margin: 3rem 0;
}

.offer-section::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80') center/cover;
  opacity: .3;
}

.offer-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 27, 42, 1) 40%, rgba(13, 27, 42, .2));
}

.offer-content {
  position: relative;
  z-index: 2;
}

.offer-sub {
  color: var(--gorent-base);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.offer-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.offer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 2rem;
  font-size: .9rem;
}

.offer-location i {
  color: var(--gorent-base);
}

.btn-offer {
  padding: 14px 36px;
  border-radius: 50px;
  background: var(--gorent-base);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-offer:hover {
  background: #fff;
  color: var(--gorent-base);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
}

/* ===================== FAQ ===================== */
.faq-section {
  padding: 4rem 0;
}

.accordion-item {
  border: 1.5px solid #ebebeb !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
}

.accordion-item:hover {
  border-color: var(--gorent-base) !important;
}

.accordion-button {
  font-size: 1rem;
  font-weight: 700;
  color: #000 !important;
  background: #fff !important;
  padding: 1.1rem 1.4rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gorent-base) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e8692a' viewBox='0 0 16 16'%3E%3Cpath d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z'/%3E%3C/svg%3E") !important;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

.accordion-body {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.8;
}

/* ===================== FOOTER ===================== */
footer {
  background: #0d1b2a;
  color: rgba(255, 255, 255, .75);
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gorent-base), #f7b731, var(--gorent-base));
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1px;
}

.footer-logo span {
  color: var(--gorent-base);
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.9;
  margin-top: .8rem;
  color: rgba(255, 255, 255, .55);
}

.footer-heading {
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  font-size: .87rem;
  text-decoration: none;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transition: opacity .38s cubic-bezier(.4, 0, .2, 1);
  font-size: .75rem;
  color: var(--gorent-base);
}

.footer-links a:hover {
  color: var(--gorent-base);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .4);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gorent-base);
  color: #fff;
  border-color: var(--gorent-base);
  transform: translateY(-3px);
}

/* ===================== SCROLL TO TOP ===================== */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gorent-base);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(232, 105, 42, .45);
  opacity: 0;
  transform: translateY(20px);
  transition: all .38s cubic-bezier(.4, 0, .2, 1);
}

#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--gorent-base);
  transform: translateY(-3px);
}

/* ===================== MISC ===================== */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 3rem 0;
}

.off-canvas-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s cubic-bezier(.4, 0, .2, 1);
}

.off-canvas-bg.show {
  opacity: 1;
  pointer-events: all;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-banner {
    height: 420px;
  }

  .offer-section {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .nav-links {
    display: none;
  }

  .hero-meta {
    gap: 1rem;
  }

  .hero-tab {
    padding: 10px 18px;
    font-size: .8rem;
  }
}


/* custom css */

.about-one__right p {
  text-align: justify;
}



/* tour detal */
/* ===== MAIN CONTENT ===== */
.main-content-section {
  padding: 44px 0 60px;
}

.section-title {
  /* travel end date: 20px; */
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f0efe9;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: #131222;
  font-weight: 500;
}

.info-badge i {
  color: #ffc107;
  font-size: 1rem;
}

.tour-description {
  color: #4a4a5a;
  font-size: 0.94rem;
  line-height: 1.8;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0efe9;
  font-size: 0.91rem;
  color: #3a3a4a;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.highlights-list li:last-child {
  border-bottom: none;
}

.highlights-list li::before {
  content: '✓';
  color: #ffc107;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #3a3a4a;
}

.include-item i {
  color: #ffc107;
}

.cancellation-box {
  background: #fff8e1;
  border: 1px solid #ffc10730;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #4a3c00;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cancellation-box i {
  font-size: 1.3rem;
  color: #ffc107;
  flex-shrink: 0;
}

.map-placeholder {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1930 0%, #131222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px dashed rgba(255, 193, 7, 0.3);
}

.map-placeholder i {
  font-size: 3rem;
  color: #ffc107;
  margin-bottom: 10px;
  opacity: 0.7;
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ===== FAQ ===== */
.faq-accordion .accordion-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.92rem;
  color: #131222;
  background: #fff;
  padding: 16px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #131222;
  color: #ffc107;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(1deg);
}

.faq-accordion .accordion-body {
  color: #4a4a5a;
  font-size: 0.88rem;
  line-height: 1.7;
  border-top: 1px solid #f0f0f0;
}

/* ===== EXTRA SERVICES ===== */
.extra-service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  transition: all 0.28s;
  cursor: pointer;
  height: 100%;
}

.extra-service-card:hover {
  border-color: #ffc107;
  box-shadow: 0 8px 28px rgba(255, 193, 7, 0.12);
  transform: translateY(-3px);
}

.extra-service-icon {
  width: 56px;
  height: 56px;
  background: #fff8e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: #ffc107;
}

.extra-service-card h6 {
  font-weight: 700;
  font-size: 0.9rem;
  color: #131222;
  margin-bottom: 6px;
}

.extra-service-card p {
  font-size: 0.8rem;
  color: #7a7a8a;
  margin-bottom: 10px;
}

.extra-service-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffc107;
}

/* ===== REVIEWS ===== */
.review-overall {
  background: #131222;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  color: #fff;
}

.review-score-big {
  font-size: 4rem;
  font-weight: 700;
  color: #ffc107;
  line-height: 1;
}

.review-total {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin-top: 4px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-bar-label {
  font-size: 0.82rem;
  color: #4a4a5a;
  width: 100px;
  flex-shrink: 0;
}

.review-bar-track {
  flex: 1;
  height: 6px;
  background: #e9e9e9;
  border-radius: 10px;
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: #ffc107;
  border-radius: 10px;
  transition: width 1s ease;
}

.review-bar-score {
  font-size: 0.82rem;
  font-weight: 600;
  color: #131222;
  width: 28px;
}

.review-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.review-user-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffc107;
}

.review-user-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #131222;
}

.review-date {
  font-size: 0.78rem;
  color: #9a9aaa;
}

.review-text {
  font-size: 0.87rem;
  color: #4a4a5a;
  line-height: 1.7;
  margin-top: 10px;
}

.write-review-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 24px;
  margin-top: 10px;
}

.write-review-section h5 {
  font-size: 1.15rem;
  color: #131222;
  margin-bottom: 18px;
}

.form-control-custom {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: #131222;
  transition: border-color 0.2s;
  width: 100%;
  outline: none;
}

.form-control-custom:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.12);
}

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(19, 18, 34, 0.08);
  position: sticky;
  top: 80px;
  border: 1px solid #eee;
}

.price-old {
  text-decoration: line-through;
  color: #9a9aaa;
  font-size: 1rem;
}

.price-new {
  font-size: 2.2rem;
  font-weight: 700;
  color: #131222;
}

.price-new span {
  font-size: 1rem;
  font-weight: 400;
  color: #7a7a8a;
}

.price-note {
  font-size: 0.78rem;
  color: #7a7a8a;
  margin-bottom: 18px;
}

.btn-book {
  background-color: #ffc107;
  color: #131222;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  width: 50%;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s, transform 0.18s;
  letter-spacing: 0.3px;
}

.btn-book:hover {
  background-color: #e6ac00;
  color: #131222;
  transform: translateY(-2px);
}

.btn-enquiry {
  background-color: transparent;
  color: #131222;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid #131222;
  border-radius: 10px;
  padding: 11px 20px;
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: 10px;
}

.btn-enquiry:hover {
  background-color: #131222;
  color: #ffc107;
}

.sidebar-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 20px 0;
}

.sidebar-plan-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #131222;
  margin-bottom: 12px;
}

.plan-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  color: #3a3a4a;
  font-size: 0.87rem;
  transition: color 0.2s;
}

.plan-link:hover {
  color: #ffc107;
}

.plan-link i {
  width: 30px;
  height: 30px;
  background: #fff8e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hotline-box {
  background: #131222;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  text-decoration: none;
}

.hotline-box i {
  color: #ffc107;
  font-size: 1.3rem;
}

.hotline-box .hl-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.hotline-box .hl-num {
  color: #ffc107;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===== RELATED TOURS ===== */
.related-section {
  padding: 50px 0 60px;
  background: #f8f7f4;
}

.related-section-title {
  font-size: 1.7rem;
  color: #131222;
  font-weight: 700;
  margin-bottom: 28px;
}

.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(19, 18, 34, 0.06);
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #eee;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(19, 18, 34, 0.12);
}

.tour-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.tour-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.tour-card:hover .tour-card-img-wrap img {
  transform: scale(1.07);
}

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffc107;
  color: #131222;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.tour-badge.discount {
  background: #131222;
  color: #ffc107;
}

.tour-card-body {
  padding: 18px 18px 16px;
}

.tour-card-location {
  font-size: 0.78rem;
  color: #7a7a8a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tour-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #131222;
  text-decoration: none;
  display: block;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.tour-card-title:hover {
  color: #ffc107;
}

.tour-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #7a7a8a;
}

.tour-meta-item i {
  color: #ffc107;
}

.tour-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: #131222;
}

.tour-price small {
  font-weight: 400;
  color: #9a9aaa;
  font-size: 0.76rem;
}



/* tour detal */

.product-details__img img{
  width: 100%;
}

.product-details__thumb-img img{
  width: 100%;
}

.services-datails{
  padding-bottom: 13px;
}

.services-datails p {
    text-align: justify;
    padding-bottom: 16px;
}
.services-datails ul li{
  padding-bottom: 10px;
}
.services-datails ul li::before {
    content: "✓";
    color: #ffb51d;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
    font-size: 19px;
    padding-right: 15px;
}
.listing-one__img img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.listing-two__img img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

