/* poppins */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

/* Loader wrapper */
.page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  /* background color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Loader animation (spinning circle) */
.page-loader .loader {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  border-top: 4px solid #c48f56;
  /* accent color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin keyframes */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Hide loader when page is loaded */
body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}


/* ------------------------------- Range  */
:root {
    --slider-color-sand: #dba006;
}

/* Targeting the flat skin – change if you're using another */
.irs--flat .irs-bar {
    background-color: var(--slider-color-sand);
    height: 4px;
    top: 25px;
    /* align bar with handle center */
}

.irs--flat .irs-line {
    background-color: #e0e0e0;
    height: 4px;
    top: 25px;
}

/* Circle handle */
.irs--flat .irs-handle {
    background-color: var(--slider-color-sand);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    top: 18px;
    /* vertically center over 4px bar */
    border: none;
}

/* Optional: on hover */
.irs--flat .irs-handle:hover {
    box-shadow: 0 0 0 4px rgba(255, 169, 32, 0.2);
}

.irs--flat .irs-handle>i:first-child {
    display: none;
}


/* ============================================================================================ lightbox -works  */
.slick-lightbox-close {
  position: absolute;
  top: 15%;
  right: 5%;
  height: 30px;
  width: 30px;
  display: block;
  cursor: pointer;
  background-color: #222;
  color: #DEB257;
}




/* -------------------------- owl slider */
.owl-carousel .owl-stage {
  display: flex;
  height: 100%;
}

.owl-carousel .owl-stage .owl-item {
  height: auto
}

/* Style both buttons */
.owl-nav button,
.slick-arrow {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: none !important;
  z-index: 99;
}

.owl-prev {
  left: -160px;
}

.owl-next {
  right: -160px;
}

.owl-carousel:hover .owl-prev {
  left: 16px;
}

.owl-carousel:hover .owl-next {
  right: 16px;
}

/* Hover effect */
.owl-nav button:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Icon size */
.owl-nav i {
  font-size: 16px;
  line-height: 1;
}


.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto;
}

.slick-slide>div {
  height: 100%;
}

.slick-arrow.slick-prev {
  left: 0;
}

.slick-arrow.slick-next {
  right: 0;
}


/* --------------------------------------------------- Footer  */
.footer-menu a {
  text-decoration: none;
  padding-left: 20px;
  display: inline-flex;
  position: relative;
  color: #cccc;
}

.footer-menu a:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
}

/* --------------------------------------------------- Contact Form 7 style override  */



select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff !important;
    background: url("data:image/svg+xml,%3Csvg width=\'20\' height=\'20\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M5 6l5 5 5-5 2 1-7 7-7-7 2-1z\' fill=\'%23c1c1c1\'/%3E%3C/svg%3E") no-repeat right 15px top 50%;
}
