.btn {
  color: var(--text-black);
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-transform: capitalize;
  font-size: var(--fz-16);
  line-height: inherit;
  font-weight: 400;
  border-radius: 5px;
  padding: 7px 14px 7px 14px;
  cursor: pointer;
}

.btn.btn-primary {
  background-image: linear-gradient(90deg, #89cfec 0, #bde7f6 50%, #89cfec);
  transition: all 0.5s;
}

.btn.btn-primary:hover {
  background-image: linear-gradient(
    90deg,
    #5ab5d9 0,
    #8dd3ee 50%,
    #5ab5d9
  ) !important;
  transition: background-image 0.3s ease;
}

.btn.btn-secondary {
  background-color: #90d2ed;
  padding: 10px 20px;
  transition: all 0.5s;
}

.btn.btn-secondary:hover {
  background-image: linear-gradient(90deg, #89cfec 0, #bde7f6 50%, #89cfec);
}

.global-slider-style-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.global-slider-style-1 .btn-prev .icon,
.global-slider-style-1 .btn-next .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-slider-style-1 .btn-prev,
.global-slider-style-1 .btn-next {
  background-color: #000000;
  cursor: pointer;
  width: 48px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-slider-style-1 .btn-prev img {
  transform: rotate(180deg);
}

.global-slider-style-1 .btn-prev img,
.global-slider-style-1 .btn-next img {
  width: 18px;
  height: 18px;
}
