@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chewy&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
html {
  scroll-padding-top: 130px;
}

:root {
  --white-color: #fff;
  --black-color: #1d1d1d;
  --main-color: #507c08;
}

h1,
h1 span,
h2,
h2 span,
h3,
h3 span {
  font-family: "Cormorant Garamond", serif;
}

ul {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

li {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
}

.global_btn {
  background-color: var(--main-color);
  padding: 7px 12px;
  border-radius: 5px;
  color: var(--white-color);
  font-weight: 500;
  font-size: 17px;
  text-transform: capitalize;
  border: none;
  outline: none;
  transition: 0.4s ease all;
}

.global_btn:hover {
  transition: 0.4s ease all;
  background-color: #446c04;
  color: var(--white-color);
}

.back_bg {
  background-color: var(--main-color);
}

.slick-dots li.slick-active button:before {
  display: none !important;
}

.slick-dots {
  bottom: -3rem !important;
}

.slick-dots li {
  width: 6px !important;
  height: 6px !important;
  aspect-ratio: 1 !important;
  margin: 0 2px !important;
}

.slick-dots li button {
  transition: all 0.5s ease-in;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 32px;
  background: rgba(182, 182, 182, 0.5) !important;
}

.slick-dots li.slick-active button {
  background: var(--main-color) !important;
  width: 1.5rem !important;
  transition: all 0.5s ease-in;
}

.slick-dots li.slick-active {
  width: 1.5rem !important;
}

.slick-dots li button::before {
  display: none !important;
}

@media (max-width: 768px) {
  .global_btn {
    font-size: 14px;
    padding: 5px 12px;
  }
}
