/* Laboix Buton Stilleri */
.laboix-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: #0EBD66;
  color: #fff;
  font-family: "Lexend", sans-serif;
  padding: 19px 41.5px;
  transition: 500ms;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 112.5%;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  border-radius: 10px; /* Oval şekil vermek için */
}
.laboix-btn:hover {
  color: #0EBD66;
  background-color: #fff;
}
.laboix-btn::before {
  content: "";
  height: 0px;
  width: 0px;
  background-color: #021936;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.laboix-btn:hover {
  color: #fff;
}
.laboix-btn:hover::before {
  height: 400px;
  width: 200%;
  top: -70%;
  left: -50%;
}
.laboix-btn--submite:hover::before {
  height: 200%;
  width: 200%;
  top: -50%;
  left: -50%;
}
.laboix-btn--base {
  background: #021936;
}
.laboix-btn--base::before {
  background-color: #0EBD66;
}
.laboix-btn--base:hover {
  color: #021936;
}
.laboix-btn--white::before {
  background-color: #fff;
}
.laboix-btn--white:hover {
  color: #021936;
}

/* Main Slider Two Button Styles */
.main-slider__btn .laboix-btn::before {
  background-color: #fff;
}
.main-slider__btn .laboix-btn:hover {
  color: #021936;
}
