

/* My own utility classes */

/* colors */

.bg-color-primary {
    background: #B68C5A;
}

.bg-color-dark {
    background: #111111;
}

/* font colors */

.font-color-dark1 {
    color: #111111;
}

.font-color-dark2 {
    color: #414040;
}

.font-color-dark3 {
    color: #707070;
}

.font-color-dark4 {
    color: #A0A0A0;
}

.font-color-dark5 {
    color: #CFCFCF;
}

.font-color-dark6 {
    color: #E7E7E7;
}

.font-color-dark7 {
    color: #F3F3F3;
}


/* fonts */


.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}


.eb-garamond-Extrabold {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}


/* owl carousel */

.swiper {
  width: 900px;
  height: 400px;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet-active {
    background: white;
}

.swiper-pagination-bullet {
    background: gray;
}

@media screen and (max-width:900px) {
  .swiper {
    width: 700px;
    height: 400px;
  }
}

@media screen and (max-width:700px) {
  .swiper {
    width: 500px;
    height: 500px;
  }
}

@media screen and (max-width:500px) {
  .swiper {
    width: 300px;
    height: 600px;
  }
}

@media screen and (max-width:400px) {
  .swiper {
    width: 250px;
    height: 800px;
  }
}
/* custom faq */

details summary {
  position: relative;
  /* padding-left: 1.5rem; */
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "+";
  position: absolute;
  right: 25px;
  font-weight: normal;
  transition: transform 0.2s ease;
}

details[open] summary::before {
  content: "–";
}