@charset "UTF-8";
.btn-more {
  color: #fff;
  text-decoration: underline;
  padding-left: 10px;
  margin-top: 50px;
}
.btn-more .icon-more-btn {
  position: relative;
  top: 3px;
  margin-left: 5px;
}

.btn {
  background-color: transparent;
  color: #000;
  padding: 0;
  border: none;
  cursor: pointer;
  padding: 10px 5px 10px 20px;
}

.btn-cta {
  position: relative;
  font-size: 16px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 40px;
  z-index: 9;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.btn-cta span {
  transition: 0.5s ease;
  margin-top: 5px;
  display: inline-block;
  align-self: flex-start;
  /* sadece text kadar genişlik */
}

.btn-green {
  color: #0D330B;
}
.btn-green .btn-full-bg {
  background-color: #0D330B;
  color: #fff;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-green .btn-full-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1a5c17;
  transition: left 0.4s ease;
  z-index: 0;
}
.btn-green .btn-full-bg span {
  position: relative;
  z-index: 1;
}
.btn-green .btn-full-bg:hover {
  color: #fff;
}
.btn-green .btn-full-bg:hover::before {
  left: 0;
}

.btn-red {
  color: #8A0303;
}
.btn-red .btn-full-bg {
  background-color: #8A0303;
  color: #fff;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-red .btn-full-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #b50f0f;
  transition: left 0.4s ease;
  z-index: 0;
}
.btn-red .btn-full-bg span {
  position: relative;
  z-index: 1;
}
.btn-red .btn-full-bg:hover {
  color: #fff;
}
.btn-red .btn-full-bg:hover::before {
  left: 0;
}

@media (max-width: 768px) {
  .btn-more {
    width: 100%;
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 50px;
    padding-left: 0;
  }
  .btn-cta {
    margin: 0 10px;
  }
}

/*# sourceMappingURL=buttons.css.map */
