@import "../fonts/roca/stylesheet.css";
.font-roca-one {
  font-family: "Roca One";
}

.font-roca-two {
  font-family: "Roca Two";
}

body {
  position: relative;
}

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 400 !important;
  transition: all 0.5s ease-in-out;
  background-color: #070a068a;
  color: #caffce;
}
#defaultModal1, #defaultModal2 {
  z-index: 500 !important;
}

#default-carousel{
  z-index: 600 !important;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(254, 255, 239);
  /* You can customize the background color */
  z-index: 9999;
}


.text-beige {
  color: #ede8db;
}

.bg-beige {
  background-color: #ede8db;
}

.text-primary {
  color: #476d42;
}

.bg-primary {
  background-color: #476d42;
}

.bg-dark-green {
  background-color: #070a06;
}

.nav-active {
  color: #476d42;
}



*{
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #ede8db;
  z-index: 1;
}

/* ------------------ Scrollbar */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme-bg);
  border-radius: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #476d42;
  border-radius: 10px;
}

/* --------- Navbar -------------------- */

.nav-link.active {
  font-size: 15px;
  font-weight: 600;
  color: #476d42;
  transition: all 1s ease-in;
}


/* ----- About Us Section */

#bg-about {
  z-index: -50;
  opacity: 0.5;
  overflow: hidden;
  width: 100vw !important;
}

.about-overlay {
  position: absolute;
  background: linear-gradient(90deg,#ffffffa8 0%, #ede8db 45%,#ede8db 100%);
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
}

/* ----------------- Common css */


.pt_120 {
  padding-top: 120px;
}
.pb_120 {
  padding-bottom: 120px;
}
@media (max-width: 1280px) {
  .pt_120 {
    padding-top: 100px;
  }
  .pb_120 {
    padding-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .pt_120 {
    padding-top: 80px;
  }
  .pb_120 {
    padding-bottom: 80px;
  }
}

/* ----------------- Clip pth  */
.clip_bg {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
/* -------------- Animation text */
.designers {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  color: transparent;
  transition: all 0.5s;
  position: relative;
}
.designers::before {
  content: attr(data-text);
  position: absolute;
  color: #c9f31d;
  width: 0px;
  overflow: hidden;
  animation: pulse-width 3s ease-in infinite;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #c9f31d;
}
@keyframes pulse-width {
  50% {
    width: 100%;
  }
}

/* -------------------- slider dote */
.swiper-pagination3 {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  margin: 20px -20px;
}
.swiper-pagination3 .swiper-pagination-bullet {
  background: #ffffff;
  width: 8px;
  height: 8px;
  opacity: 1;
  position: relative;
}
.swiper-pagination3 .swiper-pagination-bullet-active {
  background: #c9f31d;
  padding: 2px;
  width: 8px;
  height: 8px;
  position: relative;
  opacity: 1;
}

.swiper-pagination-bullet-active::before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  content: "";
  border: 1px solid #c9f31d !important;
  border-radius: 50%;
}

.swiper-pagination3 .swiper-pagination-bullet::before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 20px;
  height: 20px;
  content: "";
  border: 1px solid #ffffff;
  border-radius: 50%;
}


/* ------------ Logo slider */
.slide-track {
  width: calc(200px * 10);
  display: flex;
  align-items: center;
  animation: scroll 30s linear infinite;
  height: 100%;
  gap: 200px;
}

.slide-track .slide img {
  width: 100%;
}

.asseen .slide-track .slide img {
  width: 150%;
}

.asseen .slide-track {
  width: calc(250px * 10);
  display: flex;
  align-items: center;
  animation: scroll 30s linear infinite;
  height: 100%;
  gap: 100px;
}

@media only screen and (max-width: 768px) {
  .slide-track {
    width: calc(200px * 10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: scroll 20s linear infinite;
    height: 100%;
    gap: 50px;
  }
}

.slide-track2{
  animation: scroll2 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(calc(-150px * 8));
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(calc(-150px * 8));
  }
  100% {
    transform: translateX(0px);
  }
}