@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&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&family=Waterfall&family=Radio+Canada:ital,wght@0,300..700;1,300..700&display=swap');

* {
  box-sizing: none;
}


body {
  font-family: "Montserrat", sans-serif !important;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Montserrat", sans-serif !important;
}



.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.container {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none !important;
}


.lightbox {
  position: fixed !important;
  top: 60px !important;

}

/* ------------------------------------------------------------------------------------------------------------------------------- */

.main-banner-section {
  position: relative;
  overflow: hidden;
}

.main-banner-section video{
  width: 100%;
  height: 900px;
  object-fit: cover;
  object-position: center;
}
@media (min-width:992px) and (max-width:1200px){
  .main-banner-section video{
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
  }
}
@media (min-width:768px) and (max-width:992px){
  .main-banner-section video{
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width:768px){
  .main-banner-section video{
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
  }
}
/* --------------------------------------------------------------------------------------------------------------- */

.main-btn {
  position: relative;
  display: inline-flex;
  padding: 10px 30px;
  border-radius: 0;
  background-color: #FFC000;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.4s;

  overflow: hidden;
}


.main-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.4s;
}

.main-btn span {
  position: relative;
}

.main-btn:hover {
  color: #fff !important;
}

.main-btn:hover::before {
  height: 100%;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-group .btn-sec {
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  transition: all 0.4s;
}

.btn-group .btn-sec:hover {
  background-color: #fff;
  color: #000;
}

.btn-group .main-btn:nth-child(2):hover {
  background-color: rgba(0, 0, 0, 1);
  color: #fff;
  border: 1px solid #fff;
}


@media (max-width:568px) {

  .btn-group {
    gap: 10px;
  }

  .btn-group a,
  .btn-group .btn-sec {
    padding: 8px 16px;
    text-transform: capitalize;
    font-size: 16px;
  }



}

/* ------------------------------------------------------------------------------------------------------- */
.booking-form-section {
  position: relative;
  z-index: 10;

}


.booking-form-section .form-content-wrapper {
  padding: 30px 20px;
  background-color: #fff;
  position: relative;
  z-index: 5;
  margin-top: -40px;
  margin-bottom: 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.booking-form-section .form-content-wrapper h4.title {
  text-align: center;
  margin-bottom: 20px;

}

.booking-form-section form input,
.booking-form-section form select {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 2px solid #D8D8D8;
  transition: all 0.4s;
  color: #949494;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif !important;
}

.booking-form-section form input:focus,
.booking-form-section form select:focus {
  outline: none;
  box-shadow: none;
}

.booking-form-section form input[type='submit'] {
  background-color: #FFC000;
  color: #000;
  border-bottom: none;
}

.booking-form-section form input[type='submit']:hover {
  background-color: #000;
  color: #fff;
}

.booking-form-section form input::-webkit-inner-spin-button {
  display: none;
}

.booking-form-section form select::marker {
  display: none;
}


@media (max-width:768px) {
  .booking-form-section .form-content-wrapper {
    margin-top: 0;
    margin-bottom: 20px;

  }

}

/* ----------------------------------------------------------------------------- */
.section-title span {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: #fff;
  border-radius: 1px;
  color: #000;
  font-family: 'Montserrat', sans-serif !important;
  animation: boxShadowAnim 1s linear infinite;
}

@keyframes boxShadowAnim {
  0% {
    box-shadow: 0 0 0 0px rgb(255, 192, 0, 0.5);

  }

  20% {
    box-shadow: 0 0 0 1px rgb(255, 192, 0, 0.5);
  }

  40% {
    box-shadow: 0 0 0 2px rgb(255, 192, 0, 0.5);

  }

  60% {
    box-shadow: 0 0 0 3px rgb(255, 192, 0, 0.5);
  }

  80% {
    box-shadow: 0 0 0 4px rgb(255, 192, 0, 0.5);

  }

  100% {
    box-shadow: 0 0 0 5px rgb(255, 192, 0, 1);
  }
}

.section-title h2 {
  font-size: 44px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif !important;
}




/* ----------------------------------------------------------------------------------------------- */

.about-main-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-main-section .left-content {
  position: relative;
  padding-right: 120px;
}


.about-main-section .left-content .img-box {
  width: 100%;
  padding: 10px;
  border: 1px dashed #FFC000;
  height: 600px;
  border-radius: 4px;

}

.about-main-section .left-content .img-box img {

  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-main-section .left-content .exp-box p {
  position: absolute;
  top: 50%;
  right: -140px;
  transform: translateY(-50%) rotate(270deg);
  background-color: #FFC000;
  padding: 14px 30px;
  border: 6px solid #fff;
  border-radius: 50px;
  color: #000;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.about-main-section .left-content .exp-box p span {
  font-weight: 900;
  color: #fff;
}



@media (min-width:992px) and (max-width:1200px) {
  .about-main-section .left-content {
    position: relative;
    padding-right: 30px;
  }

  .about-main-section .left-content .exp-box p {
    right: -120px;
  }

}

@media (max-width:992px) {
  .about-main-section {
    padding: 20px 0 80px;
  }

  .about-main-section .left-content {
    position: relative;
    padding-right: 0;
    margin-bottom: 60px;
  }

  .about-main-section .left-content .img-box {
    height: 460px;


  }


  .about-main-section .left-content .exp-box p {
    left: 50%;
    right: 0;
    top: 100%;
    width: 100%;
    font-size: 22px;
    transform: translate(-50%, -50%) rotate(0);
  }
}


@media (max-width:568px) {
  .about-main-section .left-content .img-box {
    height: 380px;

  }
}


.about-main-section p.abt-text {
  margin: 30px 0;
  color: #414141;
  line-height: 26px;
}

.about-main-section .feature-box-wrapper {
  padding-left: 20px;
  border-left: 4px solid #FFC000;
  margin-bottom: 30px;
}

.about-main-section .feature-box-wrapper .feature-box {
  padding: 10px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-main-section .feature-box-wrapper .feature-box:last-child {
  margin-right: 0;
}

.about-main-section .feature-box-wrapper .feature-box img {
  opacity: .6;
  width: 50px;
  height: 50px;
}

.about-main-section .feature-box-wrapper .feature-box p.box-title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0;
}




.cta-main-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background-color: #000;
  background: url(../img/slider/slider-1.webp) no-repeat center fixed;
  overflow: hidden;
  background-size: cover;
}

.cta-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.cta-main-section h2 {
  color: #fff;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 700;
}

.cta-main-section p {
  color: #D8D8D8;
  line-height: 26px;
}

.cta-main-section p strong {
  text-transform: capitalize;
}

.cta-main-section ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.cta-main-section ul li {
  margin-bottom: 18px;
  padding: 4px 16px;
  text-transform: uppercase;
  background-color: #fff;
  font-size: 16px;
  font-weight: 700;

}

.cta-main-section .btn-group {
  margin-top: 20px;
}

@media (max-width:568px) {
  .cta-main-section ul {
    display: block;
  }

  .cta-main-section ul li {
    margin-bottom: 10px;
  }


}

.main-service-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}



.main-service-section .service-box-wrapper {
  margin-top: 30px;
  position: relative;
}

.main-service-section .service-box-wrapper .nav-pills {
  gap: 10px;
  margin-bottom: 40px;
}

.main-service-section .service-box-wrapper .nav-pills button {
  background-color: #000;
  border-radius: 50px;
  color: #fff;
  padding: 10px 30px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.4s;
}

.main-service-section .service-box-wrapper .nav-pills button.active {
  background-color: #FFC000;
  color: #000;
}

.main-service-section h4.cta-text {
  margin-top: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.main-service-section h4.cta-text a {
  color: #FFC000;
}

.service-cta-box {
  margin-top: 40px;
  border-radius: 6px;
  padding: 30px 0 40px;
  position: relative;
  overflow: hidden;
}

.service-cta-box h4 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
}

.service-cta-box p {
  letter-spacing: 1px;
  line-height: 28px;
  font-weight: 500;
  color: #414141;
  position: relative;
}

.service-cta-box h6 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #000;
  position: relative;
}

.service-cta-box .cta-btn {
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
  display: flex;
  padding: 10px 20px;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  border-radius: 4px;
  background-color: #25D366;
  transition: all 0.3s;
}

.service-cta-box .cta-btn:hover {
  background-color: #000;
}

.service-cta-box .cta-btn svg {
  width: 32px;
  height: 32px;
  animation: headShake 2s infinite;
}

.service-cta-box p.info {
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  letter-spacing: 1px;
}

.service-cta-box .right-content {
  padding-left: 80px;
}

.service-cta-box .img-box {
  width: 100%;
  height: 580px;
  overflow: hidden;
  border-radius: 4px;
}

.service-cta-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}


@media (max-width:1200px) {
  .service-cta-box .right-content {
    padding-left: 0;
  }
}

@media (min-width:768px) and (max-width:992px) {
  .service-cta-box h4 {
    font-size: 36px;
  }

  .service-cta-box .img-box {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
  }
}

@media (max-width:768px) {
  .service-cta-box {
    padding: 40px 20px;
    position: relative;
    background: url(../img/backgrounds/get-whatsapp-connection.jpeg) no-repeat center;
    background-size: cover;
    color: #fff;
  }

  .service-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);

  }

  .service-cta-box h4 {
    font-size: 32px;
  }

  .service-cta-box p {
    color: #fff !important;
  }

  .service-cta-box h6 {
    color: #fff;
  }
}






.product-feature-section {
  position: relative;
  background: url(../img/backgrounds/imported-white-marble.webp) no-repeat center fixed;
  background-size: cover;
  overflow: hidden;
}


.product-feature-section .right-content {
  padding: 80px 0 80px 40px;
  position: relative;
}

.product-feature-section .right-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.product-feature-section.box-sec .right-content {
  padding: 80px 40px 80px 0 !important;
  position: relative;
}

.product-feature-section.box-sec .right-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 200%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.product-feature-section .right-content span.tagline {
  position: relative;
  color: #FFC000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;

}

.product-feature-section .right-content h2.title {
  color: #fff;
  position: relative;
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 700;
}

.product-feature-section .right-content p {
  position: relative;
  color: #f8f9fa;
}

.product-feature-section .right-content ul li {
  color: #f8f9fa;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.product-feature-section .right-content ul li svg {
  color: #FFC000;
  margin-right: 10px;
}

.product-feature-section .right-content h4.cta-text {
  position: relative;
  color: #FFC000;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media (max-width:992px) {
  .product-feature-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
  }

  .product-feature-section .right-content,
  .product-feature-section.box-sec .right-content {
    padding: 80px 0 80px 0 !important;
  }


  .product-feature-section .right-content::before {
    display: none;
  }
}

@media (max-width:568px) {
  .product-feature-section .right-content h2.title {
    color: #fff;
    position: relative;
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 34px;
    font-weight: 600;
  }
}



.testimonial-section {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section .testimonial-box-wrapper {
  margin-top: 30px;
}

.testimonial-section .owl-stage {
  padding: 20px 0 80px;
}

.testimonial-section .testimonial-box-wrapper .testimonial-box {
  padding: 30px 20px;
  border-radius: 10px;
}

.testimonial-section .testimonial-box-wrapper .testimonial-box .rating svg {
  color: orange;
}

.testimonial-section .testimonial-box p.message {
  margin: 20px 0;
}

.testimonial-section .testimonial-box p.message svg {
  width: 40px;
  height: 40px;
  color: #D8D8D8;
  margin-right: 10px;
}

.testimonial-section .testimonial-box p.message {
  font-weight: 400;
  color: #414141;
  height: 180px;
  letter-spacing: 1px;
  overflow: scroll;
  line-height: 22px;
}

.testimonial-section .testimonial-box p.name {
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;

}

.testimonial-section .testimonial-box span.place {
  text-align: center;
  display: block;
  color: #949494;
  font-weight: 600;
  font-size: 14px;
}



/* ------------------------------------------------------------------------------------------------------------------------ */


.innerpage-title {
  height: 600px;
  position: relative;
  background: url(../img/backgrounds/inner-page-title.jpg) no-repeat center;
}

.innerpage-title .content {
  padding: 60px 60px 60px 140px;
  background-color: #1B1B1B;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top-right-radius: 100px;
}

.innerpage-title .content h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 42px;
}

.innerpage-title .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.innerpage-title .content ul li {
  position: relative;
  font-size: 14px;
  color: #D8D8D8;
  font-weight: 700;
}

.innerpage-title .content ul li a {
  color: #fff;
}

.innerpage-title .content ul li::after {
  content: "—";
  margin-left: 10px;
  color: #fff;
}

.innerpage-title .content ul li:last-child::after {
  display: none;
}

@media (min-width:768px) and (max-width:992px) {
  .innerpage-title .content {
    padding: 40px 60px 40px 80px;

  }

  .innerpage-title .content h2 {
    font-size: 36px;
  }
}

@media (max-width:768px) {
  .innerpage-title .content {
    width: 100%;
    padding: 40px 30px;

  }

  .innerpage-title .content h2 {
    font-size: 32px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------ */

.counter-section {
  padding: 20px 0 80px;
  overflow: hidden;
}

.counter-section .counter-box {
  position: relative;
  text-align: center;
  padding: 80px 10px;
  background: url(../img/backgrounds/why-us-bg.jpg) no-repeat center fixed;
  background-size: cover;
  margin-bottom: 30px;
}

.counter-section .counter-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000, #2c2c2c, #5a5a5a);
  opacity: .5;
}


.counter-section .counter-box h4 {
  position: relative;
  font-size: 58px;
  font-weight: 900;
  color: #fff;
}

.counter-section .counter-box p {
  font-weight: 600;
  color: #fff;
  position: relative;
}



/* --------------------------------------------------------------------------------------------------------- */

.innerservice-page {
  padding: 80px 0 40px;
  position: relative;
}

.innerservice-page .main-content-wrapper span.destination {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  color: #414141;
}

.innerservice-page .main-content-wrapper span.destination strong {
  color: #000;
}

.innerservice-page .main-content-wrapper p.text {
  line-height: 28px;
  font-weight: 500;
  color: #414141;

}

.innerservice-page .main-content-wrapper p.text strong {
  color: #000;
  text-transform: capitalize;
}

.innerservice-page .main-content-wrapper h4.sub-title {
  margin-top: 20px;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
}

.innerservice-page .whyus-box-wrapper {
  padding: 14px 0;
}

.innerservice-page .whyus-box-wrapper .content-box {
  margin-bottom: 16px;
}

.innerservice-page h6.title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;

}


/* ----------------------------------------------------------------------------- */


.innerservice-listing {
  margin: 40px 0;
  position: relative;
}

.innerservice-listing .service-box {
  position: relative;
  margin-bottom: 30px;
}

.innerservice-listing .service-box .img-box .carousel-item {
  width: 100%;
  height: 400px;
  border-radius: 6px;
  overflow: hidden;
}

.innerservice-listing .service-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 1s;
}

.innerservice-listing .service-box h4 a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 10px;
  font-size: 18px;
  color: #000;
  transition: all 0.4s;
}

.innerservice-listing .service-box:hover img {
  transform: scale(1.1);

}

.innerservice-listing .service-box:hover h4 a {
  color: #FFC000;
}

.innerservice-cta-section {
  padding: 120px 0;
  position: relative;
  background: url(../img/backgrounds/inner-page-title.jpg) no-repeat center fixed;
  background-size: cover;
}

.innerservice-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/slider/hero_overlay_1.png) no-repeat center;
  background-size: cover;
}

.innerservice-cta-section h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  text-transform: capitalize;
}

.innerservice-cta-section p {
  color: #fff;
  letter-spacing: 1px;
  margin: 30px 0;
}


@media (min-width:768px) and (max-width:1200px) {
  .innerservice-listing .service-box .img-box .carousel-item {
    height: 300px;
  }

  .innerservice-cta-section h2 {
    font-size: 42px;
  }
}

@media (max-width:768px) {
  .innerservice-cta-section {
    padding: 60px 0;
  }

  .innerservice-cta-section h2 {
    font-size: 32px;
  }

  .innerservice-cta-section::before {
    background: #000;
    opacity: .8;
  }

  .innerservice-cta-section p {
    color: #fff;
    letter-spacing: 1px;
    margin: 20px 0;
  }
}

@media (min-width:568px) and (max-width:768px) {
  .innerservice-listing .service-box .img-box .carousel-item {
    height: 240px;
  }

  .innerservice-listing .service-box h4 a {
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
    margin-top: 10px;
    font-size: 16px;
  }
}

@media (max-width:568px) {
  .innerservice-listing .service-box .img-box .carousel-item {
    height: 300px;
  }

  .innerservice-listing .service-box h4 a {
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
    margin-top: 10px;
    font-size: 16px;
  }
}



/* --------------------------------------------------------------------------------------------------------------------- */

.product-single-page {
  padding: 80px 0;
  position: relative;
}

.product-single-page .main-content-wrapper {
  margin-top: 40px;
}

.product-single-page .main-content-wrapper .top-content-wrapper p {
  line-height: 28px;
  font-weight: 500;
  color: #414141;
}

.product-single-page .main-content-wrapper .top-content-wrapper a.read-more-text {
  display: block;
  margin: 20px 0;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
}

.product-single-page .main-content-wrapper .top-content-wrapper a.read-more-text svg {
  animation: slideDownAnime 0.8s infinite linear;
}

@keyframes slideDownAnime {
  0% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(5px);
  }
}

.product-single-page .main-content-wrapper .left-content .img-gallery {
  margin-bottom: 60px;
}

.product-single-page .main-content-wrapper .left-content .img-gallery .carousel-item {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.product-single-page .main-content-wrapper .left-content .img-gallery .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 13s;
}


.product-single-page .main-content-wrapper .left-content .img-gallery .carousel-item.active img {
  transform: scale(1.2);
}

.product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators {
  position: relative;
  margin-top: 14px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: grid;
  text-align: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators button {
  width: 100%;
  height: 160px;
  margin: 0;
  text-indent: 0;
  opacity: 1;
  border: 2px solid transparent;
  transition: all 0.4s;
  overflow: hidden;
}

.product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators button:hover img {
  transform: scale(1.2);
}

.product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators button.active {
  border: 2px solid #FFC000;
}

.product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}



@media (min-width:992px) and (max-width:1200px) {
  .product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators button {
    height: 120px;
  }
}

@media (max-width:768px) {
  .product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators button {
    height: 120px;
  }
}

@media (max-width:568px) {
  .product-single-page .main-content-wrapper .left-content .img-gallery .carousel-item {
    width: 100%;
    height: 320px;
    overflow: hidden;
  }

  .product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-single-page .main-content-wrapper .left-content .img-gallery .carousel-indicators button {
    width: 100%;
    margin: 0;
    height: 120px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-single-page .main-content-wrapper .left-content h4.price {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
}

.product-single-page .main-content-wrapper .left-content h4.price span {
  font-size: 26px;
  font-weight: 700;
  color: rgba(0, 0, 0, 1);
}

.product-single-page .main-content-wrapper .left-content table th {
  padding: 10px;
}

.product-single-page .main-content-wrapper .left-content table td {
  padding: 10px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
  transition: all 0.4s;
}

.product-single-page .main-content-wrapper .left-content table tr:hover td {
  color: #000;

}

.product-single-page .main-content-wrapper .left-content p.note {

  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 10px;
  margin-bottom: 30px;
}


.product-single-page .main-content-wrapper .left-content h4.sub-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.product-single-page .main-content-wrapper p {
  line-height: 28px;
  font-weight: 500;
  color: #414141;
}

.product-single-page .main-content-wrapper p strong {
  color: #000;
  text-transform: capitalize;
}

.product-single-page .main-content-wrapper .left-content p strong {
  color: #000;
}

.product-single-page .main-content-wrapper h4.sub-title {
  margin: 20px 0;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
}

.product-single-page .main-content-wrapper h6 {
  font-size: 20px;
  font-weight: 700;
}

.product-single-page .main-content-wrapper .right-content {
  padding-left: 40px;
  height: 100%;
}



.product-single-page .main-content-wrapper .right-content .offer-widget {
  position: relative;
  padding: 40px 20px;
  background-color: #1B1B1B;
  z-index: 2;
  background: url(../img/backgrounds/offer-widget-bg.jpg) no-repeat center;
  background-size: cover;
  position: sticky;
  top: 100px;
}

.product-single-page .main-content-wrapper .right-content .offer-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(27, 27, 27, 0.85);
  z-index: -1;
}

.product-single-page .main-content-wrapper .right-content .offer-widget .content-wrapper {
  text-align: center;
}

.product-single-page .main-content-wrapper .right-content .offer-widget .content-wrapper h4.title {
  position: relative;
  color: #000;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  width: 100%;
  height: 100%;
  margin: -35px auto 40px auto;
  padding: 40px 30px;
  background-color: #FFC000;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0 0);
  clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0 0);
  z-index: 2;
  margin-bottom: 40px;
}

.product-single-page .main-content-wrapper .right-content .offer-widget .content-wrapper h4.title::before {
  content: "";
  position: absolute;
  inset: 5px;
  top: 0;
  background-color: #fff;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0 0);
  clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0 0);
  z-index: -1;
}

.product-single-page .main-content-wrapper .right-content .offer-widget .content-wrapper p {
  color: #f8f9fa;
  margin-bottom: 40px;
  letter-spacing: 1px;
  line-height: 28px;
}



@media (max-width:1200px) {
  .product-single-page .main-content-wrapper .right-content {
    padding-left: 0;
    margin-top: 40px;
  }

}





/* ------------------------------------------------------------------------------------------------------------------ */


.innergallery-section {
  position: relative;
  padding: 10px 0 50px;
}

.innergallery-section .carousel-cell {
  width: 50%;
  /* half-width */
  height: 600px;
  margin-right: 10px;
}

.innergallery-section .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s;
}

.innergallery-section .carousel-cell img:hover {
  filter: brightness(50%) grayscale(50%);
}

.innergallery-section .flickity-button {
  width: 30px;
  height: 30px;
  transition: all 0.4s;
  opacity: .4;
}

.innergallery-section .flickity-button:focus {
  outline: none;
  box-shadow: none;


}

.innergallery-section .flickity-button.previous {
  left: 60px;
}

.innergallery-section .flickity-button.next {
  right: 60px;
}

.innergallery-section .flickity-button:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.6);
}

.innergallery-section .flickity-page-dots {
  display: none;
}

@media (min-width:992px) and (max-width:1200px) {
  .innergallery-section .carousel-cell {
    width: 70%;
    /* half-width */
    height: 550px;
    margin-right: 10px;
  }
}

@media (min-width:768px) and (max-width:992px) {
  .innergallery-section .carousel-cell {
    width: 80%;
    /* half-width */
    height: 440px;
    margin-right: 10px;
  }
}

@media (min-width:568px) and (max-width:768px) {
  .innergallery-section .carousel-cell {
    width: 90%;
    /* half-width */
    height: 420px;
    margin-right: 10px;
  }
}

@media (max-width:568px) {
  .innergallery-section .carousel-cell {
    width: 100%;
    /* half-width */
    height: 330px;
    margin-right: 10px;
  }
}







.popup-modal-box .whatsapp-modal {
  background-color: #fff;
  color: white;
  border-radius: 4px;
  overflow: hidden;
}

.popup-modal-box .whatsapp-header {
  background-color: #fff;
  color: #128C7E;
  text-align: center;
  padding: 15px;
}

.popup-modal-box .whatsapp-header h5 {
  font-weight: bold;
  margin: 0;
}

.popup-modal-box .btn-close {
  color: #fff;
  background-color: #fff;
}

.popup-modal-box .whatsapp-form label {
  color: #fff;
  font-weight: 500;
}

.popup-modal-box .whatsapp-form .form-control,
.popup-modal-box .whatsapp-form .form-select {
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #d8ffe6;
  color: #075E54;
}

.popup-modal-box .whatsapp-form .form-control::-webkit-inner-spin-button {
  display: none;
}

.popup-modal-box .whatsapp-form .form-control:focus,
.popup-modal-box .whatsapp-form .form-select:focus {
  outline: none;
  box-shadow: none;
}

.popup-modal-box .whatsapp-btn {
  background-color: #25D366;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  padding: 10px;
  width: 100%;
  transition: 0.3s;
}

.popup-modal-box .whatsapp-btn:hover {
  background-color: #009233;
  color: #fff;
}

.popup-modal-box .whatsapp-chat {
  background-color: #ECE5DD;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.popup-modal-box .chat-bubble {
  background-color: #DCF8C6;
  color: #075E54;
  padding: 10px;
  border-radius: 12px;
  max-width: 80%;
}

.popup-modal-box .bot-message {
  text-align: left;
  font-weight: 500;
}



.innercontact-page {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.innercontact-page .section-title p.text {
  font-weight: 500;
  color: #000000;
  line-height: 28px;
}

.innercontact-page .contact-detail-wrapper .left-content {
  padding-right: 40px;
  position: relative;
  padding-bottom: 40px;
}

.innercontact-page .contact-detail-wrapper .left-content .contact-box {
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.innercontact-page .contact-detail-wrapper .left-content .contact-box:last-child {
  border-bottom: none;
}

.innercontact-page .contact-detail-wrapper .left-content .contact-box h6 {
  font-size: 24px;
  font-weight: 800;
}

.innercontact-page .contact-detail-wrapper .left-content .contact-box a {
  color: #5a5a5a;
  margin-bottom: 5px;
  display: block;
  transition: all 0.3s;
}

.innercontact-page .contact-detail-wrapper .left-content .contact-box a:hover {
  color: #000;
}

.innercontact-page .contact-detail-wrapper .right-content {
  width: 150%;
  height: 100%;
}

.innercontact-page .contact-detail-wrapper .right-content .location-map,
.innercontact-page .contact-detail-wrapper .right-content iframe {
  width: 100%;
  height: 100%;
}


.innercontact-page .contact-form-wrapper .left-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.innercontact-page .contact-form-wrapper .left-content img {
  position: absolute;
  width: 200%;
  height: 100%;
  object-fit: cover;
  top: 0;
  right: 0;
}

.innercontact-page .contact-form-wrapper .right-content {
  padding: 80px 20px;
}

.innercontact-page .contact-form-wrapper .right-content .form-control {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  border: 1px solid #f6f4f5;
  background-color: #f6f4f5;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 0;
  transition: all 0.3s;
}

.innercontact-page .contact-form-wrapper .right-content .form-control:focus,
.innercontact-page .contact-form-wrapper .right-content .form-control:hover {
  box-shadow: none;
  border-color: #e6af5d;
}

.innercontact-page .contact-form-wrapper input[type='submit'] {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;
  border-radius: 0;
  background-color: #000;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}


@media (max-width:992px) {
  .innercontact-page .contact-detail-wrapper .right-content {
    width: 100%;
    height: 400px;
  }

  .innercontact-page .contact-form-wrapper .left-content img {
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 100%;

  }

  .innercontact-page .contact-form-wrapper .right-content {
    padding: 60px 0;
  }

  .innercontact-page h2.title {
    font-size: 36px;
  }
}



.innersold-page {
  padding: 80px 0;
  position: relative;
}

.innersold-page .content-wrapper .box-content {
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
  position: relative;
}

.innersold-page .content-wrapper .box-content .img-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

.innersold-page .content-wrapper .box-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 1s;
}

.innersold-page .content-wrapper .box-content:hover .img-box img {
  transform: scale(1.1);
}

.innersold-page .content-wrapper .box-content p.text {
  margin-bottom: 0;
  margin-top: 10px;

}

.innersold-page .content-wrapper .box-content a.link {
  font-size: 14px;
  text-decoration: underline !important;
  color: #000;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (min-width:568px) and (max-width:768px) {
  .innersold-page .content-wrapper .box-content .img-box {
    height: 260px;
  }
}



/* ------------------------------------------------------------------------------------------------------- */

.popular-google-search {
  padding: 40px 0;
  position: relative;
}

.popular-google-search .search-content {
  border: 1px dashed rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;

}

.popular-google-search .search-content img {
  margin-top: -100px;
  padding: 10px 20px;
  width: 120px;
  background-color: #fff;
  animation: boxShadowAnim 1s linear infinite;
}

.popular-google-search h4.title {
  text-transform: capitalize;
  font-weight: 700;
  text-align: center;
  margin-top: -14px;
}

.popular-google-search h4.title img {
  height: 30px;
}

.popular-google-search ul li {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
  color: #414141;
  font-size: 15px;
  letter-spacing: 1px;
}

.popular-google-search ul li::after {
  content: "|";
  margin-left: 10px;
  font-weight: 700;

}

.popular-google-search ul li:last-child::after {
  display: none;
}

.popular-google-search p.date {
  font-size: 14px;
  font-weight: 500;
  text-align: end;
}

@media (max-width:768px) {
  .popular-google-search h4.title {
    text-align: start;
  }

  .popular-google-search ul {
    text-align: start;
  }

  .popular-google-search ul li {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    letter-spacing: 0;
  }

  .popular-google-search ul li::after {
    display: none;
  }

}


.innergallery-section{
  padding: 80px 0;
  position: relative;
}
.innergallery-section .gallery-box-wrap{
  margin-top: 40px;
}
.innergallery-section .gallery-box-wrap .gallery-box {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 6px;
  border-bottom: 5px solid #000;
}

.innergallery-section .gallery-box-wrap .gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.innergallery-section .gallery-box-wrap .gallery-box svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  color: #fff;
  transition: all 0.4s;
}

.innergallery-section .gallery-box-wrap .gallery-box:hover img {
  transform: scale(1.2);
  filter: brightness(50%);
}

.innergallery-section .gallery-box-wrap .gallery-box:hover svg {
  transform: translate(-50%, -50%) scale(1);
}


@media (max-width:992px){
  .innergallery-section .gallery-box-wrap .gallery-box {
    height: 360px;
  }
}
@media (max-width:568px){
  .innergallery-section .gallery-box-wrap .gallery-box {
    height: 320px;
    border-radius: 0;
  }
}



.mid-ad-banner {
  padding: 80px 0;
  position: relative;
  text-align: center;
  background: url(../img/backgrounds/mid-ad-bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.mid-ad-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.mid-ad-banner h2 {
  font-size: 50px;
  font-weight: 500;
  font-family: 'Waterfall', sans-serif !important;
  color: #fff;
}

.mid-ad-banner h1 {
  font-family: 'Philosopher', sans-serif !important;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.mid-ad-banner h4 {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

@media (max-width:468px) {
  .mid-ad-banner h2 {
    font-size: 40px;
  }

  .mid-ad-banner h1 {
    font-size: 44px;
    margin-bottom: 20px;
  }

  .mid-ad-banner h4 {
    font-size: 18px;
  }
}
