@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #fd5622;

  /* Corrected typo */

  --bg-dark: #000;

  --bg-light: #fff;

  --bg-grey: #ededed;

  --bg-grey-shade: #dbdbdb;

  --border-radius: 30px;

  --small-border-radius: 8px;

  --xs-border-radius: 4px;
}

/*main#main { overflow: hidden; }*/

/* =================animate css ends here================= */

/* =================reset css starts here=================  */

* {
  margin: 0;

  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
body,
html,
form,
fieldset {
  margin: 0;

  padding: 0;

  outline: none;

  border: 0;
}

a {
  text-decoration: none;

  border: 0;

  outline: 0;
}

ul {
  list-style: none;
}

a:focus,
input:focus,
textarea:focus,
*:focus {
  outline: 0 !important;
}

.blog-inner-content p a {
  color: #e33802;
}

/* =================reset css ends here================= */

/* =================core css starts here================= */

body {
  font-size: 16px;

  line-height: 24px;

  font-family: "Poppins", serif;

  color: #000;
}

.container {
  width: 100%;

  max-width: 1300px;
}

a,
input,
button {
  display: inline-block;

  text-decoration: none;

  color: inherit;

  outline: none;

  transition: all 0.2s ease-in;

  -webkit-transition: all 0.2s ease-in;
}

a img {
  border: 0px none;
}

a:hover {
  outline: none;

  color: #fd784e;

  text-decoration: none;
}

a:active {
  outline: none;

  text-decoration: none;
}

a:focus {
  outline: none;

  outline-offset: 0px;

  text-decoration: none;

  color: inherit;
}

img {
  max-width: 100%;

  border: 0;

  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", serif !important;

  margin: 0px;

  padding: 0px;

  margin-bottom: 24px;

  line-height: 1.2;

  font-weight: 700 !important;

  color: inherit;
}

h2 {
  font-size: 20px !important;
  font-weight: 600 !important;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  ul.products
  li.product
  .price {
  color: #000000 !important;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--primary-color);
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 26px;
}

h6 {
  font-size: 22px;
}

p {
  margin: 0px;

  padding: 0px;

  margin-bottom: 24px;

  color: #000;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

.btn {
  font-weight: 700;

  text-transform: uppercase;

  border-radius: 5px;

  padding: 12px 15px;

  min-width: 140px;

  font-size: 14px;

  line-height: 18px;

  box-shadow: none;

  transition: all 0.2s ease-in;

  -webkit-transition: all 0.2s ease-in;
}

.btn-default,
.btn-default:focus {
  color: #fff;

  background-color: var(--primary-color);

  border: solid 1px var(--primary-color);
}

.btn-default:hover,
.btn-default:active {
  color: #fff;

  background-color: #fd784e;

  border-color: #fd784e;
}

.btn-primary,
.btn-primary:focus {
  color: #fff;

  background-color: #333;

  border: solid 1px #333;
}

.btn-primary:hover,
.btn-primary:active {
  color: #ffffff;

  background-color: transparent;

  border-color: #333;
}

.btn.btn-block {
  min-width: 100%;
}

.btn + .btn {
  margin-left: 18px;
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
  background: #e33802;

  color: #fff;

  border-color: #e33802;
}

.heading h3 {
  font-size: 40px;

  margin-bottom: 10px;

  line-height: 54px;

  color: #000;

  font-weight: 600;

  text-transform: uppercase;
}

.heading h6 {
  font-size: 14px;

  text-transform: uppercase;

  margin-bottom: 0;
}

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

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

.bg-grey-shade {
  background-color: var(--bg-grey-shade);
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.py-60 {
  padding-block: 60px;
}

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

.pt-60 {
  padding-top: 60px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pt-10 {
  padding-top: 10px;
}

/* =================core css ends here================= */

/* =======Header section start here========= */

header {
  padding: 10px 70px;

  transition: all 0.3s ease-in-out;

  background-color: #fff;
}
.cst-nav-bar {
  padding-block: 0;
}
.cst-nav-bar a.navbar-brand img {
  width: 180px;
}

.cst-nav-bar .navbar-nav li {
  padding-inline: 40px;
}

.cst-nav-bar .nav-link {
  position: relative;

  color: #000;

  font-size: 18px;

  font-weight: 500;
}

.cst-nav-bar .nav-link::after {
  position: absolute;

  content: "";

  width: 0%;

  height: 1px;

  background-color: var(--primary-color);

  top: 100%;

  left: 0;

  transition: all 0.3s ease-in;
}

.cst-nav-bar .nav-link:hover::after {
  width: 100%;
}

.talk-us {
  display: flex;

  align-items: center;
}

.talk-us a:first-child {
  color: #000;

  margin-right: 20px;

  font-size: 18px;
}

a.shopping-cart {
  position: relative;
  background: #000;
  padding: 8px 12px;
  margin-left: 10px;
  border-radius: 6px;
  color: #fff;
}
span.cart-items {
  position: absolute;
  bottom: calc(100% - 15px);
  left: calc(100% - 15px);
  width: 30px;
  height: 30px;
  font-size: 12px;
  background-color: var(--primary-color);
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}
/* ==========main============ */

/* =========hero section======= */

.hero-section {
  padding-block: 40px;
  position: relative;
}

.hero-intro img {
  border-radius: var(--border-radius);
}

.hero-right img {
  display: block;
  width: 100%;
}
.hero-intro h1 {
  color: #000;
}

.hero-intro p {
  font-size: 18px;

  color: #000;
}

.hero-slider-wrapper .hero-slider li {
  width: 100%;

  height: 800px;

  object-fit: cover;

  object-position: center;
}

.hero-slider-wrapper .hero-slider li img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;
}

/* ======service section start here===== */

.service-content {
  position: relative;
  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  gap: 20px;
  z-index: 9;
}

.serivce-card {
  padding: 60px 30px;

  border: 2px solid #000;

  height: 100%;

  border-radius: 30px;

  box-shadow: 0px 10px 0px 2px #000;

  color: #000;
}

.serivce-card.dark-card {
  background-color: #000;

  color: #fff;
}

.serivce-card.dark-card h4,
.serivce-card.dark-card p,
.serivce-card.dark-card .service-content a span {
  color: #fff;
}

.service-card-img img {
  width: 100%;

  height: 150px;

  object-fit: cover;

  object-position: center;
}

.service-content a {
  display: flex;

  align-items: center;
}

.service-content a i {
  font-size: 34px;

  color: var(--primary-color);

  transform: rotate(-34deg);

  transition: all 0.3s ease-in-out;
}

.service-content a span {
  font-size: 20px;

  margin-left: 10px;

  text-decoration: underline;

  text-underline-offset: 6px;
}

.service-content a:hover i {
  transform: rotate(0deg);
}

.service-card-img {
  display: block;
}

.serivce-card {
  position: relative;
  /* background-image: url(http://hideout.coderwolves.com/wp-content/uploads/2025/02/blog-1-1.jpg);/\ */
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.serivce-card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #ffffff, #ffffff42);
}
.serivce-card.dark-card::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #000000, #00000042);
}

/* ======service section start here===== */

/* ======make things happens============ */

.make-things-wrapper {
  background-color: #1f1f1f;
  padding: 60px 30px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.make-things-wrapper .heading h4 {
  font-size: 54px;
  font-weight: 700;
  color: #ffffff; /* Highlighted heading */
}

.make-things-wrapper .body-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
}

.make-things-wrapper .body-text b {
  color: var(--primary-color); /* Highlighted price */
  font-weight: 700;
}


.make-things-wrapper img {
  border-radius: 16px;
  box-shadow: 0 6px 20px var(--primary-color);
  max-width: 100%;
  height: auto;
}

/* ======make things happens============ */

/* ========booking form========== */

/* =====booking-location======== */
.city-input-wrapper {
  position: relative;
}
.city-input-wrapper .location-url {
  position: absolute;
  right: 12px;
  top: 0;
}
.location-wrapper-book .location-url {
  justify-content: center;
}
/* =====booking-location======== */

.booking-form {
  padding: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.booking-form label {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400 !important;
  font-family: "Poppins";
}

.booking-form select:focus,
.booking-form input:focus {
  box-shadow: 0 0 0 2px #fff;

  background-color: #fff;
}

.booking-form select,
.booking-form input {
  background-color: #fff !important;

  border: 0.4px solid var(--primary-color) !important;

  box-shadow: none !important;

  color: #000 !important;

  font-size: 16px !important;

  padding: 0px 14px !important;

  outline: none !important;

  height: 40px !important;

  border-radius: 4px !important;
  width: 100%;
}

form#rnb-search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

form#rnb-search-form > * {
  width: 32% !important;
}

form#rnb-search-form button {
  border-radius: 6px;
  background-color: var(--primary-color);
  margin-top: 25px;
  position: relative;
  padding-block: 8px;
}
option:hover {
  background-color: yellow;
}

/* =======online platform slider====== */
.online-platform {
  margin: 0;
}

/* =====CALANDER CSS======= */

.ui-widget-header.ui-helper-clearfix.ui-corner-all {
  background-color: var(--primary-color);
  color: #fff;
}

.ui-timepicker-viewport .ui-menu-item a:hover,
.ui-timepicker-standard .ui-state-hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border-color: var(--primary-color) !important;
}

/* =======How It works========== */

.heading h6 span {
  border-radius: 2px;

  display: inline-block;

  margin-bottom: 8px;

  padding: 6px 12px;

  background: var(--primary-color);

  color: #ffffff;

  margin-bottom: 8px;

  font-family: sans-serif;

  font-weight: 400;
}

.about-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  border-radius: var(--border-radius);
}

.about-img {
  position: relative;

  height: 100%;
}

.heading p {
  margin-bottom: 0;
}

.heading p + p {
  margin-top: 14px;
}

.heading h5 {
  font-size: 24px;

  text-transform: uppercase;

  font-weight: 600;

  margin-bottom: 12px;

  color: #3b3b3b;
}

.main-heading {
  margin-bottom: 34px;
}

.main-heading h5 {
  text-transform: uppercase;

  font-size: 32px;

  font-weight: 600;

  color: #3b3b3b;

  margin-bottom: 12px;
}

.main-heading h6 {
  margin: 0;

  font-size: 14px;

  font-weight: 500;

  text-transform: uppercase;

  font-family: sans-serif;
}

.main-heading h6 span {
  border-radius: 2px;

  display: inline-block;

  padding: 6px 12px;

  background: var(--primary-color);

  margin-bottom: 8px;

  color: #000;
}

.main-heading h3 {
  font-size: 54px;

  margin-bottom: 10px;

  line-height: 64px;

  color: #3b3b3b;

  font-weight: 600;

  text-transform: uppercase;
}

.about-sec-bottom-list {
  border-top: 1px solid #c8c8c8;

  margin-top: 40px;

  display: flex;

  margin-bottom: -40px;

  padding-top: 40px;

  flex-wrap: wrap;

  width: calc(100% + 24px);

  margin-left: -12px;
}

.about-sec-bottom-item {
  display: flex;

  width: 50%;

  padding: 0px 12px;

  margin-bottom: 40px;
}

.about-sec-bottom-icon {
  display: grid;

  place-items: center;

  width: 80px;

  height: 80px;

  padding: 20px;

  background: var(--primary-color);

  border-radius: 50%;
}

.about-sec-bottom-content {
  width: calc(100% - 80px);

  padding-left: 18px;
}

.about-sec-bottom-icon i {
  color: #fff;
  font-size: 30px;
}

.about-sec-bottom-content h5 {
  text-transform: uppercase;

  font-weight: 500;

  font-size: 22px;

  color: #000;

  margin-bottom: 8px;
}

.about-sec-bottom-content p {
  font-size: 16px;

  font-weight: 300;
}

/* =============Home Theater services=============== */

.our-service {
  background-color: #fff;

  border: 2px solid #000;

  border-radius: var(--border-radius);

  overflow: hidden;

  box-shadow: 0px 10px 0px 2px #000;
}

.our-service a {
  width: 100%;

  display: block;
}

.service-img {
  position: relative;

  width: 100%;

  height: 250px;
}

.service-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: all 0.3s ease-in-out;

  border-radius: 0;
}

.service-img img:hover {
  transform: scale(1.1);
}


.service-img span.price {
  position: absolute;

  left: 20px;

  bottom: 20px;

  color: #ffffff;

  font-size: 22px;

  font-weight: 500;
}

.service-items {
  padding: 24px;
}

.serivce-text h4 {
  font-size: 24px;

  color: #000;

  font-weight: 500;

  margin-bottom: 10px;
}

.serivce-text span {
  font-size: 14px;

  color: #a4a4a4;
}

.service-icon a {
  background-color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
}

/* =====anemeties slider======== */

ul.amenities-slider {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 10px;
  margin: 0;
}

.service-items > div {
  padding-bottom: 20px;

  border-bottom: 1px dashed #000;
}

.amenities-slider li {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;

  color: #444444;

  font-size: 12px;

  font-weight: 300;

  border-radius: 2px;
}

.amenities-slider li span i {
  font-size: 28px;

  color: #474747;
}

.amenities-slider .slick-track {
  display: flex;
}

.amenities-slider .slick-track li.slick-slide {
  height: auto;
}

/* the slides */
.our-service-slider .slick-track {
  display: flex;
  padding-block: 20px;
}
.our-service-slider .slick-track .slick-slide {
  height: auto;
}
.our-service-slider .slick-slide {
  margin: 0 10px;
}
.our-service-slider button.slick-arrow {
  position: absolute;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 45px;
  height: 45px;
  text-align: center;
  padding: 0;
  font-size: 22px;
  line-height: 45px;
}
.our-service-slider button.slick-next {
  right: -60px;
}
.our-service-slider button.slick-prev {
  left: -60px;
}

/* the parent */

.our-service-slider .slick-list {
  margin: 0 -10px;
}

/* ========testimonail slider========== */
.our-visitors .col-md-4 .heading h3 {
  margin-bottom: 0;
}
.our-visitors .col-md-8 .body-text p {
  color: #000000;
  font-size: 22px;
  font-weight: 600;
}
#customers-testimonials .item {
  background-color: #fff;

  padding: 30px 30px;

  border-radius: var(--border-radius);

  border: 2px solid #000;

  box-shadow: 0 10px 0 2px #000;
}

#customers-testimonials .slick-track {
  margin-bottom: 40px;
}

#customers-testimonials .item.slick-slide.slick-current.slick-active {
  background-color: var(--primary-color);
}

#customers-testimonials .item img {
  width: 80px;

  height: 80px;

  border-radius: 50%;

  object-fit: cover;

  object-position: center;
}
.ratting {
  margin-left: 20px;
}
.ratting span i {
  color: rgb(255, 200, 0);
}
#customers-testimonials .item .testimonial-name {
  color: #000;

  font-size: 22px;

  font-weight: 700;
}

/* the slides */

#customers-testimonials .slick-slide {
  margin: 0 10px;
}

/* the parent */

#customers-testimonials .slick-list {
  margin: 0 -10px;
}

/* ==================faq sec start here============ */

.faq-wrapper .accordion-button::after {
  filter: invert(100%);
}

.faq-wrapper .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);

  color: #fff;

  box-shadow: none;

  border-radius: 4px 4px 0px 0px;
}

.faq-wrapper button.accordion-button.collapsed {
  background-color: var(--bg-grey);

  color: #000;

  border-radius: 4px;

  overflow: hidden;
}

.faq-wrapper .accordion-body {
  background-color: var(--bg-grey);

  color: #000;

  border-radius: 0px 0px 4px 4px;

  overflow: hidden;
}

.faq-wrapper .accordion-item {
  border: none;

  border-radius: 4px !important;

  background: transparent;
}

.faq-wrapper .accordion-button:focus {
  box-shadow: none;
}
.faq-img{
  position: sticky;
  top: 40px;
}
.faq-img img {
  width: 100%;

  height: 400px;

  object-fit: cover;

  object-position: center;

  border-radius: var(--border-radius);
}

/* ======================================== */

/* =======About page====== */

/* ======================================== */
.part-journey {
  margin-top: 40px;
}

ul.why-choose-us {
  margin-top: 40px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;
  margin-left: 0;
}

.why-choose-us li {
  font-size: 18px;

  margin: 10px 0;

  display: flex;

  gap: 20px;
}

.why-choose-us li span {
  flex-shrink: 0;

  width: 30px;

  height: 30px;
}

.why-choose-us li i {
  font-size: 30px;

  margin-right: 10px;

  color: #ff6600;

  /* Adjust icon color */
}

.lits-text h6 {
  font-size: 18px;

  font-weight: 600;

  color: #000;

  margin-bottom: 0px;
}

.lits-text {
  font-size: 14px;

  color: #666a74;
}

.heading.choose-us p {
  text-align: justify;
}

.statistics {
  text-align: center;

  border: 2px solid #000;

  padding: 30px 20px;

  border-radius: var(--border-radius);

  box-shadow: 0px 10px 0px 2px #000;
}

.statistics span {
  display: block;

  font-size: 48px;

  font-weight: 700;

  margin-bottom: 20px;
}

.statistics h4 {
  font-size: 16px;

  font-weight: 400;

  color: #7a7a7a;

  margin-bottom: 0;
}

/* ======================================== */

/* =======About page====== */

/* ======================================== */

/* ======================================== */

/* =======Blog page====== */

/* ======================================== */

/* ==========Banner================= */

.banner_container {
  display: flex;

  flex-flow: column;

  justify-content: center;

  min-height: 300px;

  padding: 40px 0 40px;

  position: relative;

  color: #000;

  z-index: 1;

  text-align: center;
}

.banner_container h1,
.banner_container h2 {
  font-size: 64px;

  margin-bottom: 6px;

  color: #ffffff;

  text-transform: uppercase;

  font-weight: 600;

  line-height: 74px;
  border: none;
  padding-bottom: 0;
}

.banner_container p {
  margin-top: 12px;
}

.banner_bg {
  position: absolute;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  z-index: -1;
}

.banner_bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.banner_bg::before {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  background-color: rgba(0, 0, 0, 0.6);
}

.breadcrumb {
  margin-bottom: 0;

  text-align: center;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto;

  padding: 8px 12px;

  border-radius: 4px;
}

.breadcrumb-item,
.breadcrumb-item a {
  font-weight: 400;

  font-size: 14px;

  line-height: 16px;

  color: #ffffff;

  transition: all 0.3s ease-in;

  white-space: nowrap;

  display: block;
}

.breadcrumb .breadcrumb-item:last-child {
  white-space: nowrap;

  text-overflow: ellipsis;

  overflow: hidden;
}

.breadcrumb-item a .breadcrumb-item.active {
  color: var(--primary-color) !important;
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb-item {
  font-weight: 500;

  text-transform: uppercase;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
  position: absolute;

  left: 6px;

  content: ">";

  font-family: monospace;

  font-weight: 600;

  font-size: 14px;

  color: #ffffff;
}

.breadcrumb-item {
  position: relative;
}

.breadcrumb-item a i {
  background: var(--primary-color);

  padding: 4px;

  margin-right: 10px;

  border-radius: 4px;

  font-size: 14px;
}

.wave-curve {
  width: 100%;

  padding-bottom: 7%;

  position: absolute;

  left: 0;

  bottom: 0;
}

.wave-curve svg {
  width: 100%;

  height: 100%;

  object-fit: contain;

  position: absolute;

  left: 0;

  top: 1px;
}

/*=======================blog-css-start===============*/

.blog-list {
  display: flex;

  flex-flow: wrap;

  width: calc(100% + 24px);

  margin-left: -12px;

  margin-bottom: -24px;
}

.blog-item {
  width: 33.33%;

  padding: 0px 12px;

  margin-bottom: 24px;
}

.blog-img {
  position: relative;

  padding-bottom: 66%;

  overflow: hidden;

  border-radius: var(--border-radius);
}

.blog-img img {
  position: absolute;

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: var(--border-radius);

  filter: brightness(0.8);

  transition: all 0.6s ease-in;
}

.blog-img img:hover {
  transform: scale(1.1);
}

.post-tag {
  position: absolute;

  top: 12px;

  right: 12px;

  font-size: 13px;

  display: inline-block;

  font-weight: 500;

  padding: 4px 10px 3px;

  border-radius: 3px;

  color: #000;
}

.blog-posted-list {
  display: flex;

  margin: 8px 0px;
}

.blog-posted-list li {
  list-style: none;
  font-size: 13px;

  color: #000;

  font-weight: 500;
}

.blog-posted-list li + li {
  margin-left: 16px;

  padding-left: 16px;

  position: relative;
}

.blog-posted-list li + li::before {
  position: absolute;

  content: "";

  width: 10px;

  height: 2px;

  background: #666a74;

  top: 50%;

  transform: translateY(-50%);

  left: -5px;
}

.blog-heading h5 {
  font-size: 22px;

  color: #000;

  line-height: 36px;

  margin-bottom: 0;

  font-weight: 600;
}

/*=============blog pagination============= */

/* ========================================= */

/* Blog details */

/* ========================================= */

/*========================*/

.blog-inner-wrapper {
  padding-right: 40px;

  position: relative;

  border-right: 2px dashed #c9c9c9;

  margin-right: 20px;

  margin-bottom: -20px;
}

.blog-left-side-wrapper {
  position: sticky;

  top: 110px;

  z-index: 1000;
}

.blog-inner-content h1 {
  font-size: 54px;

  font-weight: 600;

  color: #3b3b3b;

  margin-bottom: 10px;

  margin-top: 20px;
}

.blog-inner-content h2 {
  font-size: 48px;

  font-weight: 600;

  color: #3b3b3b;

  margin-bottom: 10px;

  margin-top: 20px;
}

.blog-inner-content h3 {
  font-size: 42px;

  font-weight: 600;

  color: #3b3b3b;

  margin-bottom: 10px;

  margin-top: 20px;
}

.blog-inner-content h4 {
  font-size: 36px;

  font-weight: 600;

  color: #3b3b3b;

  margin-bottom: 10px;

  margin-top: 20px;
}

.blog-inner-content h5 {
  font-size: 27px;

  font-weight: 600;

  color: #3b3b3b;

  margin-bottom: 10px;

  margin-top: 20px;
}

.blog-inner-content h6 {
  font-size: 24px;

  font-weight: 600;

  color: #3b3b3b;

  margin-bottom: 10px;

  margin-top: 20px;
}

.blo-inner-content-list li + li {
  margin-top: 8px;
}

.blo-inner-content-list {
  margin-top: 20px;
}

.blo-inner-content-list li {
  color: #777;

  padding-left: 24px;

  position: relative;
}

.blo-inner-content-list li::before {
  position: absolute;

  content: "";

  width: 6px;

  height: 6px;

  background: #777;

  border-radius: 4px;

  top: 8px;

  left: 12px;
}

.blog-inner-content p {
  margin-bottom: 0;

  text-align: justify;
}

.blog-inner-content p br {
  display: none;
}

.blog-inner-content p + p {
  margin-top: 12px;
}

.blog-inner-content + .blog-inner-content {
  margin-top: 44px;
}

.blog-inner-img {
  padding-bottom: 43%;

  position: relative;

  margin-bottom: 20px;

  border-radius: var(--border-radius);

  overflow: hidden;
}

.blog-inner-img img {
  position: absolute;

  top: 0;

  left: 0;

  border-radius: var(--border-radius);

  transition: all 0.3s ease-in;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.blog-inner-img img:hover {
  filter: brightness(0.7);
}

.blog-right-side-wrapper {
  position: sticky;

  top: 100px;

  z-index: 1000;
}

.blog-right-side-wrapper h4 {
  font-size: 24px;

  font-weight: 600;

  padding-left: 14px;

  position: relative;

  line-height: 1;
}

.blog-right-side-wrapper h4::before {
  position: absolute;

  content: "";

  width: 3px;

  height: 100%;

  background: var(--primary-color);

  left: 0;
}

.recent-post-head h4 {
  font-size: 18px;

  font-weight: 500;

  color: #0a639d;

  margin-bottom: 20px;
}
.recent-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recent-post-list li + li {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d7d7d7;
}

.recent-post-box {
  position: relative;

  padding-left: 96px;

  height: 100%;
}

.blog-right-img {
  position: absolute;

  top: 0;

  left: 0;

  width: 80px;

  height: 100%;

  filter: brightness(0.5);

  border-radius: var(--small-border-radius);

  overflow: hidden;
}

.blog-right-date {
  font-size: 14px;

  color: var(--primary-color);

  font-weight: 500;

  margin-bottom: 2px;

  line-height: 20px;
}

.recent-post-box h5 {
  font-size: 18px;

  font-weight: 500;

  margin: 0;
}

.blog-right-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: var(--small-border-radius);
}

.blog-title-right {
  font-size: 18px;

  font-weight: 600;

  color: #3b3b3b;

  display: -webkit-box;

  overflow: hidden;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  line-height: 25px;
}

.recent-post-box h6 {
  margin-bottom: 4px;
}

/* ========================================= */

/* Blog details */

/* ========================================= */

.pagination {
  display: flex;

  justify-content: center;

  padding: 1rem 0;

  list-style: none;

  gap: 20px;
  border: 0 !important;
}

.pagination li {
  margin: 0 5px;
}

.pagination li a,
.pagination li span {
  display: inline-block;

  padding: 8px 12px;

  text-decoration: none;

  background-color: var(--primary-color);

  color: #ffffff;

  border-radius: 5px;

  transition: background-color 0.3s ease;
}

.pagination li a:hover {
  background-color: #e33802;
}

.pagination li.active span {
  background-color: #343a40;
}

.pagination li.disabled span {
  background-color: #d3d3d3;

  cursor: not-allowed;
}

/* ======================================== */

/* =======Blog page====== */

/* ======================================== */

/* ========================================== */

/* =======single page theater ====== */

/* ========================================== */

/* ========================================== */
ul#theater-for li img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

ul#theater-nav {
  margin-top: 20px;
  box-shadow: 0px 0px 20px 1px var(--primary-color);
}

ul#theater-nav li img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center;
}

/* the slides */
ul#theater-nav .slick-slide {
  margin: 0 5px;
}

/* the parent */
ul#theater-nav .slick-list {
  margin: 0 -5px;
}

ul#theater-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  background: none;
  border: none;
}

ul#theater-nav button.slick-prev {
  left: -20px;
}

ul#theater-nav button.slick-next {
  right: -20px;
}

ul#theater-nav button i {
  color: var(--primary-color);
  font-size: 34px;
}
/* ======amenities ======= */

.amenities-container h2 {
  color: #333;
  margin-bottom: 15px;
}
.page-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-list li {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}
.page-list li:hover {
  transform: scale(1.05);
  background: #f8f8f8;
}
.page-list-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: white;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 15px;
}
.page-list-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #444;
}
/* ========================================== */
/* =======single page theater ====== */
/* ========================================== */
.serv-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
  border-radius: 30px;
}
/* ========================================== */

/* =======contact page ====== */

/* ========================================== */

.contact-us {
  background-color: #fff1ed;
}

.contact-inner-box {
  background-color: #fff;

  position: relative;

  border-radius: 30px 0px 0px 30px;

  padding: 40px;
 padding-right: 110px;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.4);
}

.contact-inner-box::before {
  position: absolute;

  content: "";

  right: 0;

  top: 0;

  width: 100px;

  height: 100%;

  background-color: var(--primary-color);
}

.contact-info {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  right: 0;

  background-color: black;

  border-radius: 30px 0px 0px 30px;

  color: #fff;

  padding: 30px 50px 30px;
}

.contact-info h5 {
  font-size: 24px;

  text-transform: uppercase;
  color: var(--bg-light);
}

ul.contact-info-list {
  margin: 0;
  list-style: none;
}

li.contact-info-item {
  margin-bottom: 14px;
}

li.contact-info-item span {
  margin-right: 10px;
}
li.contact-info-item a {
  color: #fff;
}

ul.social-links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 14px;
  margin: 0;
  list-style: none;
}
li.social-link a i {
  color: #fff;
}
.contact-form {
  margin-top: 40px;
}
.form-wrapper {
  width: 50%;
}
.form-wrapper .cst-input {
  margin-bottom: 28px;
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background-color: transparent;
  outline: none;
  box-shadow: none;
  color: #686868;
  padding-left: 12px;
}
.form-wrapper .cst-textarea {
  margin-bottom: 14px;
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background-color: transparent;
  outline: none;
  box-shadow: none;
  color: #686868;
  padding-left: 12px;
}
.form-wrapper .cst-btn {
  color: #fff;
  background-color: var(--primary-color);
  border: solid 1px var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 12px 15px;
  min-width: 140px;
  font-size: 14px;
  line-height: 18px;
  box-shadow: none;
}

/* ========================================== */
.contact-info-wrapper {
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.4);
    border-radius: 30px 0px;
    overflow: hidden;
}

.contact-info-wrapper h4 {
    font-size: 24px;
    margin-bottom: 20px;
    background-color: var(--primary-color);
    padding: 20px 30px;
}
.contact-info-text {
    padding: 0px 30px 30px;
}


.contact-info-text p strong {
    color: #000;
}
.contact-info-wrapper p {
    margin-bottom: 10px;
    color: #666666;
}
/* =======contact page ====== */
/* ========== product page========== */
/* =========single product======== */
.single-product #main .entry-utility,
.single-product #main .entry-meta {
  display: none;
}
h1.entry-title {
  text-align: center;
}

div#nav-above {
  display: none;
}

div#wrapper #main > #container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 12px;
}
.woocommerce div.product {
  margin-bottom: 0;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
div#primary {
  display: none;
}
div#nav-below {
  display: none;
}

ul.wc-block-components-product-details li {
  margin-bottom: 14px;
}
.woocommerce span.onsale {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color) !important;
}
.wc-block-components-button:not(.is-link) {
  background-color: #000;
  color: #fff;
  text-decoration: none !important;
  border-radius: 6px;
}
.woocommerce .quantity .qty {
  padding: 4px 8px;
  box-shadow: none;
  background: transparent;
  border: 1px solid #000;
}
.woocommerce div.product form.cart .button {
  background-color: #000;
}
.woocommerce .woocommerce-product-details__short-description {
  margin-bottom: 10px;
}

.woocommerce .summary.entry-summary .btn-book-now {
  background: #000 !important;
}
.booking_cost ul li::before {
  display: none;
}
.booking-pricing-info ul li span.price {
  color: #000 !important;
}

.woocommerce div.product p.price {
  color: #000000 !important;
}
.rnb-pricing-plan-button .rnb-pricing-plan .rnb-pricing-plan-link {
  background-color: #000 !important;
  color: #fff !important;
}

ul.chosen-results li.active-result.highlighted {
  background-color: #000000 !important;
}
.wc-block-components-quantity-selector {
  display: none !important;
}
/* ==========cart============ */

/* Style product image */
.wp-block-woocommerce-cart .wc-block-cart-item__image img {
  border-radius: 8px;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Style product name */
.wp-block-woocommerce-cart .wc-block-components-product-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.wp-block-woocommerce-cart .wc-block-components-product-name:hover {
  color: #ff6600;
}

/* Price styling */
.wp-block-woocommerce-cart .wc-block-components-product-price {
  font-size: 16px;
  color: #28a745;
  font-weight: bold;
}

.wp-block-woocommerce-cart .wc-block-components-product-price del {
  color: #888;
  font-size: 14px;
}

/* Discount badge */
.wp-block-woocommerce-cart .wc-block-components-sale-badge {
  background: var(--primary-color);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 20px;
}

/* Product details */
.wp-block-woocommerce-cart .wc-block-components-product-details li {
  font-size: 14px;
  color: #555;
  padding: 2px 0;
}

/* =======cart total============= */
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
  flex-wrap: nowrap;
  gap: 10px;
}

.wp-block-woocommerce-cart .wc-block-components-main {
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 12px !important;
  height: fit-content;
  border-radius: 8px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar {
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 12px !important;
  height: fit-content;
  border-radius: 8px;
}
.wp-block-woocommerce-cart
  .wc-block-components-sidebar
  .wc-block-components-totals-coupon__button {
  background: var(--primary-color);
}

/* ======shop preivate theater======== */
.summary.entry-summary {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.booking-pricing-info {
  background: #fff !important;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.price-showing {
  background-color: #ffffff !important;
  border: 1px solid #ddd;
}
.rnb-pricing-wrap {
  background-color: #f8f7f7;
  border: 1px solid #ddd !important;
  padding: 10px;
  margin: 10px 0;
}
/* ======login form====== */

.page.type-page.status-publish.hentry .woocommerce {
  width: 50%;
  margin: 0 auto;
  box-shadow: 0 0 12px 5px rgb(0 0 0 / 20%);
  border: 0;
  padding: 30px 20px;
  border-radius: 4px;
}
.page.type-page.status-publish.hentry
  .woocommerce
  .woocommerce-form-login.login {
  /* background-color: #ddd; */
  border: 0;
  padding: 0 !important;
  margin: 0 !important;
}
.page.type-page.status-publish.hentry
  .woocommerce
  .woocommerce-form-login.login
  input {
  border: 0 !important;
  outline: 0;
  height: 48px;
  margin-bottom: 12px;
  background-color: #ddd;
}
input#rememberme {
  height: revert;
}
.page.type-page.status-publish.hentry
  .woocommerce
  .woocommerce-form-login__submit {
  background-color: var(--primary-color);
  color: #fff;
}
/* =====dashboard========== */
/* General Styling */

/* Sidebar Navigation */
.woocommerce-edit-account #wrapper .woocommerce,
.woocommerce-edit-address #wrapper .woocommerce,
.woocommerce-downloads #wrapper .woocommerce,
.woocommerce-orders #wrapper .woocommerce,
.woocommerce-dashboard #wrapper .woocommerce ,
.woocommerce-view-order #wrapper .woocommerce {
  display: flex;
  gap: 0;
  width: 100%;
  box-shadow: 0 0 17px 4px rgb(228, 228, 228);
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
}
.woocommerce-edit-account #wrapper .woocommerce nav,
.woocommerce-edit-address #wrapper .woocommerce nav,
.woocommerce-downloads #wrapper .woocommerce nav,
.woocommerce-orders #wrapper .woocommerce nav,
.woocommerce-dashboard #wrapper .woocommerce nav ,
.woocommerce-view-order #wrapper .woocommerce nav {
  background: #1e1e2d;
  padding: 40px 0px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.woocommerce-edit-account #wrapper .woocommerce nav ul,
.woocommerce-edit-address #wrapper .woocommerce nav ul,
.woocommerce-downloads #wrapper .woocommerce nav ul,
.woocommerce-orders #wrapper .woocommerce nav ul,
.woocommerce-dashboard #wrapper .woocommerce nav ul ,
.woocommerce-view-order #wrapper .woocommerce nav ul {
  margin: 0;
}
.woocommerce-edit-account #wrapper .woocommerce nav ul li,
.woocommerce-edit-address #wrapper .woocommerce nav ul li,
.woocommerce-downloads #wrapper .woocommerce nav ul li,
.woocommerce-orders #wrapper .woocommerce nav ul li,
.woocommerce-dashboard #wrapper .woocommerce nav ul li ,
.woocommerce-view-order #wrapper .woocommerce nav ul li {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.woocommerce-edit-account #wrapper .woocommerce nav ul li a,
.woocommerce-edit-address #wrapper .woocommerce nav ul li a,
.woocommerce-downloads #wrapper .woocommerce nav ul li a,
.woocommerce-orders #wrapper .woocommerce nav ul li a,
.woocommerce-dashboard #wrapper .woocommerce nav ul li a ,
.woocommerce-view-order #wrapper .woocommerce nav ul li a {
  display: block;
  padding-block: 12px;
  padding-left: 36px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
  background: var(--primary-color);
  color: #fff;
}
.rnb-cancel-order-popup-content .rnb-cancel-now {
  background: var(--primary-color);
  color: #fff;
}
.rnb-cancel-order-popup-content .close-rnb-cancel-popup {
  background:#000000;
  color: #ffffff;
}
.woocommerce-view-order #wrapper ul.wc-item-meta {
  margin: 0;
}
.woocommerce-orders .woocommerce-orders-table .woocommerce-orders-table__cell a.view ,
.woocommerce-orders .woocommerce-orders-table .woocommerce-orders-table__cell a.pay {
  margin-right:10px;
  }
/* Main Dashboard Content */
/* ===========account details===== */

.woocommerce-edit-account
  #wrapper
  .woocommerce
  .woocommerce-MyAccount-content
  form
  fieldset {
  padding: 0;
}
/* ========adress======= */
.woocommerce-edit-account
  #wrapper
  .woocommerce
  .woocommerce-MyAccount-content
  form
  button.button,
.woocommerce-edit-address
  #wrapper
  .woocommerce
  .woocommerce-MyAccount-content
  form
  button.button {
  color: #fff;
  background-color: var(--primary-color);
  border: solid 1px var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 12px 15px;
  min-width: 140px;
  font-size: 14px;
  line-height: 18px;
  box-shadow: none;
}
.woocommerce-edit-address
  #wrapper
  .woocommerce
  .u-column1.col-1.woocommerce-Address {
  width: 100%;
  padding: 0;
}
.woocommerce-edit-address
  #wrapper
  .woocommerce
  .u-column1.col-1.woocommerce-Address
  header {
  padding: 0;
}
/* ========order======= */
.woocommerce-downloads #wrapper .woocommerce .woocommerce-info,
.woocommerce-orders #wrapper .woocommerce .woocommerce-info {
  border-color: var(--primary-color);
}
.woocommerce-MyAccount-content {
  flex-grow: 1;
  background: #fff;
  padding: 40px 20px;
  border-radius: 0px 10px 10px 0px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Alert Message */
.woocommerce-message {
  background: #f8f9fa;
  border-left: 5px solid #ff6b6b;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
  border-radius: 6px;
}

/* Dashboard Links */
.woocommerce-MyAccount-content a {
  color: #ff6b6b;
  font-weight: 500;
  text-decoration: none;
}

.woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .woocommerce-edit-account #wrapper .woocommerce nav,
  .woocommerce-edit-address #wrapper .woocommerce nav,
  .woocommerce-downloads #wrapper .woocommerce nav,
  .woocommerce-orders #wrapper .woocommerce nav,
  .woocommerce-dashboard #wrapper .woocommerce nav {
    padding: 20px 0px;
    width: 100%;
  }
  .woocommerce-edit-account #wrapper .woocommerce nav ul li,
  .woocommerce-edit-address #wrapper .woocommerce nav ul li,
  .woocommerce-downloads #wrapper .woocommerce nav ul li,
  .woocommerce-orders #wrapper .woocommerce nav ul li,
  .woocommerce-dashboard #wrapper .woocommerce nav ul li {
    margin-bottom: 8px;
  }
  .woocommerce {
    flex-direction: column;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}
/* ========checkout=========== */
.woocommerce-checkout
  .wc-block-components-sidebar-layout
  .wc-block-components-main {
  padding-right: 0;
}
.woocommerce-checkout .wc-block-checkout__main form.wc-block-components-form {
  border: 1px solid #1212121c;
  padding: 16px;
  margin-top: 10px;
  border-radius: 4px;
}

.woocommerce-checkout .wc-block-checkout__main form.wc-block-components-form div#order-notes {
  display: none !important;
}
.wc-block-components-address-form__thwcfe-block-dob_ label {
  visibility: hidden; /* hides the text but keeps the element in layout */
  display: inline-block;
  position: relative;
}

.wc-block-components-address-form__thwcfe-block-dob_ label::after {
  content: "DD-MM-YY"; /* your custom label text */
  visibility: visible;
  color: #000000;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
}


/* ======single product======= */
.single-product .single-product .summary.entry-summary {
  display: grid;
}
.single-product .single-product .summary.entry-summary form.cart.rnb-cart {
  order: 2;
}
.product_cat-private-home-theater .location-url {
  margin-top: 10px;
  margin-bottom: 10px;
}
.product_cat-private-home-theater .location-url a {
  color: #2271b1;
}
body.product-template-default.single.single-product.admin-bar.theme-HomeTheaterTheme .cart.rnb-cart {
  margin-top: 0px;
}
 form.cart.rnb-cart h5 {
  padding-top: 0;
}
.woocommerce-product-gallery .flex-viewport {
  height:570px !important;
  margin-bottom: 12px;
}
.woocommerce-product-gallery__image img {
  width: 100%;
  height: 570px !important;
  object-fit: cover;
  object-position: center;
}
.woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs li {
  width: calc(16.66% - 12px) !important;
}
/* ========== product page========== */
/* ============checkout============== */

/* ========================================== */
/* =======search result========= */
body#error-page {
  max-width: 100% !important;
  padding: 0 !important;
}
.search_title h2 {
  position: relative;
  font-size: 28px !important;
  margin-bottom: 40px;
}
.search_title h2::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 60%;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%);
  background-color: #000;
}
.show-result .show-availabel {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  align-items: center;
  gap: 16px;
  border-radius: 6px;
  padding-inline: 20px;
  padding-block: 20px 36px;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e3e3e3;
}
.show-result .price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.show-result .price p {
  font-size: 20px !important;
  font-weight: bold;
  color: #000;
  margin: 0 !important;
}

.show-result .heading h6 {
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.show-result .show-availabel img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 16/10;
}
.location-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.location-url {
  margin-bottom: 22px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.location-url h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600 !important;
}
.location-url p {
  margin: 0 !important;
}
.ameneties-wrapper h4 {
  text-align: center;
  padding-bottom: 10px;
}

.ameneties-wrapper ul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ameneties-wrapper ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ameneties-wrapper ul li {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
  margin-bottom: 13px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  border: dashed 1px rgba(0, 0, 0, 0.2);
  padding: 8px;
  text-align: center;
}
.ameneties-wrapper ul li i {
  background-color: var(--primary-color);
  width: 40px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  border-radius: 4px;
}
.show-result .show-availabel .private-theater {
  position: relative;
}

.show-result .show-availabel .private-theater::after {
  position: absolute;
  content: "";
  background-image: linear-gradient(45deg, #000000, transparent);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.show-result .show-availabel .private-theater h6 {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  margin: 0;
}
.show-availabel > p {
  position: absolute;
  left: 20px;
  bottom: 6px;
  font-size: 14px;
  font-style: italic;
  color: red;
  margin: 0 !important;
}

/* =======search result========= */

/* ===============footer================== */

footer {
  padding-block: 40px;
}

.footer-07 {
  background: #121212;
}

ul#menu-footer-menu {
  display: flex;
	flex-wrap:wrap;
  justify-content: center;
  margin: 0;
  list-style: none;
}
ul.ftco-footer-social.p-0 {
  margin: 0;
}

.ftco-footer-social li {
  list-style: none;

  margin: 0 10px 0 0;

  display: inline-block;
}

.ftco-footer-social li a {
  height: 40px;

  width: 40px;

  display: block;

  background: rgba(0, 0, 0, 0.05);

  border-radius: 50%;

  position: relative;
}

.ftco-footer-social li a span {
  position: absolute;

  font-size: 20px;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);
}

.ftco-footer-social li a span i {
  color: var(--primary-color);
}

.footer-07 p {
  color: rgba(255, 255, 255, 0.3);
}

.footer-07 .footer-heading {
  font-size: 30px;

  color: #fff;

  font-weight: 700;

  margin-bottom: 30px;
}

.footer-07 .footer-heading .logo {
  color: #fff;
}

.footer-07 .menu {
  margin-bottom: 30px;
}

.footer-07 .menu a {
  color: rgba(255, 255, 255, 0.6);

  margin: 0 10px;

  text-transform: uppercase;

  letter-spacing: 1px;

  transition: all 0.3s ease-in-out;
}

.footer-07 .menu a:hover {
  color: var(--primary-color);
}

.footer-07 .ftco-footer-social li a {
  background: transparent;

  border: 1px solid var(--primary-color);
}

/* ===============footer================== */

/* ======================== */

/* 

  ##Device = Desktops

  ##Screen = 1281px to higher resolution desktops

*/

@media (min-width: 1281px) {
  .cst-nav-bar .navbar-nav li {
    padding-inline: 22px;
    margin-left: 0;
  }
}

/* 

  ##Device = Laptops, Desktops

  ##Screen = B/w 1025px to 1280px

*/
@media (min-width: 1280px) and (max-width: 1410px) {
  header {
    padding: 10px 0px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  header {
    padding: 10px 0px;
  }
  .cst-nav-bar .navbar-nav {
    padding-inline: 0px;
    margin: 0;
  }
  .cst-nav-bar .navbar-nav li {
    padding-inline: 12px;
  }
  form#rnb-search-form > * {
    width: 31% !important;
  }
}

/* 

  ##Device = Tablets, Ipads (portrait)

  ##Screen = B/w 768px to 1024px

*/

@media (min-width: 1025px) and (max-width: 1140px) {
  .cst-nav-bar a.navbar-brand img {
    width: 160px;
  }
  .btn {
    padding: 10px 12px;
    min-width: 120px;
  }

  .cst-nav-bar .navbar-nav li {
    padding-inline: 6px;
  }
  form#rnb-search-form > * {
    width: 31% !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  header {
    padding: 22px 0px;
}
  .cst-nav-bar .navbar-nav {
    padding-inline: 0;
    margin: 0;
  }

  .cst-nav-bar .navbar-nav li {
    padding-inline: 0px;
  }
  .cst-nav-bar a.navbar-brand img {
    width: 160px;
  }
  .btn {
    padding: 10px 12px;
    min-width: 120px;
  }
  header {
    padding: 10px 0px;
  }

  .cst-nav-bar .navbar-nav {
    padding-inline: 0px;
    margin: 0;
  }
  .cst-nav-bar .nav-link {
    font-size: 18px;
  }
  .talk-us a:first-child {
    font-size: 18px;
  }

  .cst-nav-bar .navbar-nav li {
    padding-inline: 4px;
  }

  .blog-item {
    width: 50%;
  }
  .show-result .show-availabel {
    grid-template-columns: 1fr !important;
    padding-bottom: 100px !important;
  }
  .show-availabel > p {
    bottom: 20px;
  }
  form#rnb-search-form > * {
    width: 31% !important;
  }
}

/* 

  ##Device = Tablets, Ipads (landscape)

  ##Screen = B/w 768px to 1024px

*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  header {
    padding: 22px 0px;
}
  .show-result .show-availabel {
    grid-template-columns: 1fr !important;
    padding-bottom: 100px !important;
  }
  .show-availabel > p {
    bottom: 20px;
  }
}

/* 

  ##Device = Low Resolution Tablets, Mobiles (Landscape)

  ##Screen = B/w 481px to 767px

*/

@media (min-width: 481px) and (max-width: 767px) {
  header {
    padding: 22px 0px;
}
  .cst-nav-bar .navbar-nav {
    padding-inline: 0;
    margin: 0;
  }

  .cst-nav-bar .navbar-nav li {
    padding-inline: 0px;
  }
  .row.gallery img {
    width: revert;

    height: revert;

    object-fit: cover;

    object-position: center;

    aspect-ratio: 2 / 1;
  }

  .blog-item {
    width: 50%;
  }
  /* ====checkout page======= */
  .location-wrapper {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
}
.location-url{
  margin-bottom: 0;
}
.item-arrtributes ul li, .item-extras ul li {
  width: 100% !important;
}
}

/* 

  ##Device = Most of the Smartphones Mobiles (Portrait)

  ##Screen = B/w 320px to 479px

*/

@media (min-width: 320px) and (max-width: 480px) {
  .py-60 {
    padding-block: 30px;
  }
  /* ====header-===== */

  header {
    padding: 10px 0px;
  }

  .cst-nav-bar .navbar-nav {
    padding-inline: 0;
    margin: 0;
  }

  .cst-nav-bar .navbar-nav li {
    padding-inline: 0px;
  }
  .talk-us {
    align-items: start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 26px;
  }
  .talk-us .btn + .btn {
    margin-left: 0;
  }
  h1 {
    font-size: 38px !important;
  }

  .banner_container h1,
  .banner_container h2 {
    font-size: 32px !important;

    line-height: 38px;
  }

  .heading h3 {
    font-size: 34px !important;

    line-height: 40px;
  }

  .about-sec-bottom-item {
    display: flex;

    width: 100%;

    padding: 0px 12px;

    margin-bottom: 40px;
  }
  .our-service-slider button.slick-next {
    right: 6px;
  }
  .our-service-slider button.slick-prev {
    left: 6px;
  }
  form#rnb-search-form > * {
    width: 100% !important;
  }

  .make-things-wrapper {
    padding: 30px;
  }
  /* ======online platform====== */
  .online-platform .slick-slide img{
    margin: 0 auto;
  }
  /* ======make things======= */
  .make-things-wrapper .heading h4{
      font-size: 34px;
  }
  /* =====about us====== */
  ul.why-choose-us {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  /* blog */

  .blog-item {
    width: 100%;
  }

  .blog-inner-wrapper {
    position: relative;

    border-right: 0;

    padding-right: 0;
  }

  .blog-inner-content h5 {
    font-size: 18px !important;
  }

  .blog-inner-content h6 {
    font-size: 18px !important;
  }

  /* contact */

  .contact-info {
    display: block;
    top: revert;
    transform: translate(0);
    bottom: 0;
    left: 0;
    border-radius: 10px 10px 0px 0px;
  }

  .contact-inner-box::before {
    display: none;
  }
  .contact-inner-box {
    border-radius: 10px 10px 0px 0px;
    padding: 20px;
  }
  .form-wrapper {
    width: revert;
    padding-bottom: 250px;
  }
  /* ======woocommerce===== */

  .page.type-page.status-publish.hentry .woocommerce {
    width: 100%;
  }
  /* ======search result========== */
  .show-result .show-availabel {
    grid-template-columns: 1fr !important;
    padding-bottom: 130px !important;
  }
  .ameneties-wrapper ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .show-availabel > p {
    bottom: 20px;
    font-size: 16px !important;
    right: 10px;
  }
  .warning-msg {
    bottom: 20px;
    right: 20px;
  }
    /* ====checkout page======= */
    .location-wrapper {
      flex-direction: column;
      justify-content: start;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 18px;
  }
  .location-url{
    margin-bottom: 0;
  }
  .item-arrtributes ul li, .item-extras ul li{
    width: 100% !important;
  }
  .footer-07 .menu a {
    font-size: 14px;
  }
  .footer-07 p {
    font-size: 12px;
  }

}

/* Pagination css */

span.page-numbers.current {
  padding: 6px 14px;

  color: #fff;

  background-color: #fd5622;

  border-radius: 2px;
}

a.page-numbers {
  background-color: #ffffff66;

  color: #000;

  padding: 6px 14px;

  border-radius: 2px;

  border: 1px solid #e0e0e0;

  transition: all 0.3sease-in-out;
}
