@font-face {
  font-family: 'Akzidenz-Medium';
  src: url('../fonts/AkzidenzGrotConBQ-Medium.otf');
}

@font-face {
  font-family: 'Akzidenz-Cond';
  src: url('../fonts/AkzidenzGrotesk-Cond.otf');
}

html {
  scroll-behavior: smooth;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-services {
  width: 100%;
  height: 200px;
}

.swiper-slide {
  background-color: #ffffff;
  border-radius: 5px;

  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);

  width: 300px !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 70px !important;
}

.swiper-button-prev {
  left: 10% !important;
}

.swiper-button-next {
  right: 10% !important;
}

#main-content {
  display: none;
}

/* Estilos para la página de carga */
#loading-page {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 50;
}

/* Spinner personalizado */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.swal-button {
  background-color: #ff7400;
}

.swal-button:hover {
  background-color: #ff7400 !important;
  opacity: 0.8;
}

.swal-icon--warning {
  border-color: #ff7400 !important;
}

.swal-icon--warning__body,
.swal-icon--warning__dot {
  background-color: #ff7400;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
