.one-circle {
  width: 100%;
  height: 150%;
  position: absolute;
  z-index: 0;
  right: -65px;
  top: 0px;
}

.two-circle {
  width: 80%;
  height: 125%;
  position: absolute;
  z-index: 1;
  top: 75px;
  right: 0;
}

.three-circle {
  width: 60%;
  height: 100%;
  position: absolute;
  z-index: 2;
  right: 64px;
  top: 135px;
}

@media (max-width: 768px) {
  .one-circle {
    right: -50px;
    top: -10px;
  }
  .two-circle {
    top: 40px;
    right: -12px;
  }
  .three-circle {
    right: 18px;
    top: 85px;
  }
}
.home-logo-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
  background: #E3F3EF;
}

.home-logo-wrapper.reverse {
  margin-top: -2rem;
}

.clients-grid.logo-animate {
  opacity: 1;
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.clients-grid.logo-animate div {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.logo-animate div {
  color: var(--Lazamed-darker, #1B7660);
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.home-logo-wrapper:hover .logo-animate {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(calc(0% + 50px));
  }
  100% {
    transform: translateX(-100%);
  }
}
.howitworks-content {
  min-width: 580px;
}
.howitworks-content-img {
  margin-top: -40px;
}

.howitworks-container > div:nth-child(2n) {
  flex-direction: row-reverse !important;
}

.accordion-button::after {
  content: "+" !important;
  font-size: 30px;
  height: 30px;
  font-weight: normal;
  background-image: none !important;
  color: #fff !important;
}

.accordion-button:not(.collapsed)::before {
  content: "";
  width: 85%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 70px;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg) !important;
  background-image: none !important;
  color: #fff !important;
}

@media (max-width: 1280px) {
  .howitworks-content {
    min-width: auto;
  }
  .howitworks-content > div {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .accordion-button:not(.collapsed)::before {
    content: "";
    width: 60vw;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: 0;
    left: 70px;
  }
  .howitworks-container > div:nth-child(2n) {
    flex-direction: column-reverse !important;
  }
  .howitworks-content {
    min-width: 100%;
  }
  .howitworks-content-img {
    margin-top: auto;
  }
  .logo-animate div {
    font-size: 12px;
  }
  .logo-animate div svg {
    width: 24px;
    height: 24px;
  }
  .clients-grid.logo-animate {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .clients-grid.logo-animate div {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .home-logo-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  @keyframes slide {
    0% {
      transform: translateX(calc(0% + 31px));
    }
    100% {
      transform: translateX(-100%);
    }
  }
}
.logo-animate {
  animation: slide 10s infinite linear;
}/*# sourceMappingURL=main.css.map */