.btn {
  color: var(--text-white);
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-size: var(--fz-18);
  font-weight: 700;
  border-radius: 5px;
  padding: 12px 24px;
  cursor: pointer;
  line-height: 1.5;
}

.btn.btn-primary {
  background-color: var(--primary-color);
}

.btn.btn-primary:hover {
  background-color: #282828;
  color: #fff;
}

.btn.btn-secondary {
  padding: 0px;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn.btn-secondary .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url(../../img/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-form {
  border-radius: 4px;
  background: var(--primary-color);
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  font-size: var(--fz-18);
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  gap: 12px;
}

.btn-form:hover {
  background-color: #282828;
}

.btn-form .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url(../../img/send.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.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;
}

.submitting .btn-form {
  position: relative;
}

.submitting .btn-form::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  animation: loader 0.7s linear infinite;
  border-width: 0.10417rem;
  border-style: solid;
  border-color: #fff;
  border-top-color: transparent;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
}

@keyframes loader {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .btn,
  .btn-form {
    font-size: var(--fz-16);
  }
}
