@import url("https://fonts.googleapis.com/css2?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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
:root {
  --color1: $color1;
  --color2: #e0820b;
  --color3: $color3;
  --color4: #008b48;
  --color5: rgb(11, 32, 19);
}

* {
  box-sizing: border-box;
  margin: 0px;
  border: 0px;
  font-family: "Merriweather Sans", sans-serif;
  list-style-type: none;
}

.loader {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}

.loader:before,
.loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}

.loader:before {
  animation: ball1 1s infinite;
  background-color: #fff;
  box-shadow: 30px 0 0 #005218;
  margin-bottom: 10px;
}

.loader:after {
  animation: ball2 1s infinite;
  background-color: #005218;
  box-shadow: 30px 0 0 #fff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}
@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #005218;
  }
  50% {
    box-shadow: 0 0 0 #005218;
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #005218;
    margin-bottom: 10px;
  }
}
@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #fff;
  }
  50% {
    box-shadow: 0 0 0 #fff;
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #fff;
    margin-top: 0;
  }
}
html {
  scroll-behavior: smooth;
}

input {
  border-color: white;
}

.navbar .menu {
  opacity: 0;
  font-weight: normal;
  cursor: pointer;
  text-transform: capitalize;
  transition: 0.1s;
  translate: 0 5px;
}
.navbar .menu:hover {
  transform: scale(1.1);
  text-shadow: 0 0 0 #000;
}
.navbar .menuActive {
  transform: scale(1.1);
  text-shadow: 0 0 0 #000;
}
.navbar .menuBox {
  transition: 1s;
}
.navbar .menuBoxActive {
  transform: translateX(0);
}
.navbar #toggleMenu {
  color: white;
}
.navbar .toggleMenuActive {
  color: black !important;
}

.slider {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  overflow-x: hidden;
  background: rgb(20, 11, 0);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: relative;
}
.slider .slide_section {
  display: flex;
  flex-direction: row;
  transition: 2s;
  height: 80%;
}
.slider .slider_items {
  min-width: 100%;
  padding: 0 10px;
  height: 100%;
  display: grid;
  margin: 0 auto;
  place-items: center;
}
.slider .slider_items p {
  font-size: 22px;
  color: white;
  font-weight: 500;
}
.slider #controller {
  position: absolute;
  bottom: 20px;
  transform: translateX(-50%);
  left: 50%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.slider #controller .dotActive {
  background: white !important;
}
.slider #controller .dot {
  cursor: pointer;
  width: 15px;
  aspect-ratio: 1/1;
  background: #008b48;
  border-radius: 50%;
}

.container {
  max-width: 1140px !important;
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .container {
    padding: 0 1rem;
  }
}

.heroSection {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  height: max-content;
  background: #f5f5f5 url("../images/home-page/background.svg");
  background-repeat: repeat-x;
  background-position: bottom;
}
.marchant .heroBgImage,
.contact .heroBgImage {
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0 !important;
  background-image: url(../images/home-page/hero-section-bg.jpg);
}
.marchant .heroBgImage::before,
.contact .heroBgImage::before {
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(var(--color2) 0%, var(--color2) 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.95;
  z-index: 0;
}

.selectDiv {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 300px;
  overflow: auto;
  transform: translateY(calc(100% + 5px));
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: none;
}
.selectDiv .optionDiv {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0 10px;
}
.selectDiv .optionDiv:hover {
  background-color: #ccc;
  cursor: pointer;
}
.selectDiv .optionDiv img {
  width: 30px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn {
  position: relative;
  color: black;
  overflow: hidden;
  background: transparent;
}
.btn span {
  z-index: 1;
}
.btn::before, .btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  background-color: orange;
  z-index: -1;
  transition: all 400ms ease-in;
}
.btn:hover {
  color: #fff;
}
.btn::before {
  opacity: 0.3;
}
.btn::after {
  transition-delay: 0.3s;
}
.btn:hover::before, .btn:hover::after {
  top: 0;
}

.heroBgGrediant {
  background: radial-gradient(rgba(0, 139, 72, 0.9) 0%, rgba(0, 139, 72, 0.9) 100%), url("../images/home-page/hero-section-bg.jpg");
}

.sliderDiv .left-controller,
.sliderDiv .right-controller {
  opacity: 0.4;
  transition: 0.3s;
}
.sliderDiv:hover .left-controller,
.sliderDiv:hover .right-controller {
  opacity: 1;
}

#body .colorChange {
  filter: hue-rotate(105deg);
}
#body .shadow {
  box-shadow: 0 6px 2px 1px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}
#body .shadow:hover {
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.25);
}
#body .shadow2 {
  box-shadow: 0 3px 2px 1px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}
#body .brandSection {
  background-image: url(../images/home-page/brand-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#body .work-section {
  background-image: url(../images/home-page/scoop-works.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
#body .work-section .work_card {
  position: relative;
}
#body .work-section .work_card::after {
  content: "";
  top: 50%;
  z-index: 1;
  background-image: url(../images/home-page/icon/arror-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  transform: translate(90%, -50%);
}
@media screen and (max-width: 767px) {
  #body .work-section .work_card::after {
    bottom: 0px;
    rotate: 90deg;
    left: 50%;
    top: unset;
    transform: translate(90%, 50%);
  }
}
#body .pricing_section {
  background-image: url(../images/home-page/pricing-section.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
#body .pricing_section .under_line {
  border-bottom: 3px solid rgb(255, 62, 35);
}
#body .availble_device {
  background: linear-gradient(180deg, #008b48 0%, rgb(11, 32, 19) 100%);
}
#body .tab {
  cursor: pointer;
}
#body .tabActive {
  color: #000;
  border-bottom: 4px solid #ee7e6e;
}
#body .formBoxActive {
  display: block !important;
}
#body .formBox {
  display: none;
  box-shadow: 0 0 2px 1px #ccc;
}
#body .formBox label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}
#body .formBox .countyCode {
  pointer-events: none;
}
#body .formInput {
  border-radius: 5px !important;
  border: 1px solid #ccc;
}
#body .formInput:focus {
  box-shadow: none;
}
#body .timeTable td {
  padding: 2px;
}
#body .timeTable tr td,
#body .timeTable tr th {
  border-style: solid;
  border-width: 1px 1px 1px 0;
  border-color: #ccc;
}
#body .timeTable tr td:first-child,
#body .timeTable tr th:first-child {
  padding: 5px 3px;
}
#body .timeTable tr td:last-child,
#body .timeTable tr th:last-child {
  border-right: 0px;
}
#body .timeTable tr td select,
#body .timeTable tr th select {
  width: 100%;
  border-radius: 10px;
}
#body .timeTable tr th {
  border-top: 0px;
  padding: 5px;
}
#body .timeTable tr:last-child td {
  border-bottom: 0px;
}
#body .timeTable tr td select {
  width: 100%;
}
#body .cartDiv {
  position: relative;
}
#body .cartDiv::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 50%;
  background: #e0820b;
  border-radius: 20px;
}
#body .accordion__wrapper {
  border-radius: 2.5rem;
  width: 100%;
  padding: 3rem 2rem;
}
#body .accordion__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: black;
  text-align: center;
  margin-bottom: 4rem;
}
#body .accordion {
  padding-bottom: 2rem;
  width: 100%;
}
#body .accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 2px 0 rgba(0, 0, 0, 0.2);
}
#body .accordion__question {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
}
#body .accordion__answer {
  padding: 1rem 0;
  color: white;
}
#body .accordion__content {
  overflow: hidden;
  height: 0;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #body .accordion__question {
    font-size: 1rem;
    font-weight: bold;
    color: black;
  }
}
#body .purchaseInput {
  max-width: 400px;
  background: rgba(204, 204, 204, 0.6156862745);
  border-radius: 10px;
  border-style: solid;
  border: 0px;
  border-bottom: 1px solid #008b48;
  padding: 10px 10px;
}
#body .purchaseInput::-moz-placeholder {
  color: #008b48;
  padding-left: 5px;
}
#body .purchaseInput::placeholder {
  color: #008b48;
  padding-left: 5px;
}
#body .PaymentDetailsCard {
  position: relative;
}
#body .PaymentDetailsCard .PaymentDetails {
  background: rgba(112, 112, 112, 0.2470588235);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 70px 20px;
}
#body .PaymentDetailsCard::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 100px;
  transform: translate(-50%, -50%);
  height: 150px;
  border-radius: 50%;
  filter: blur(20px);
  background: var(--color4);
  z-index: 0;
}/*# sourceMappingURL=style.css.map */