/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}

.hero .hero-content {
  width: 100%;
}

.hero .hero-content .content {
  padding-right: 2rem;
}

@media (max-width: 991px) {
  .hero .hero-content .content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }
}

.hero .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.5rem;
  }
}

.hero .hero-content .hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content .hero-actions .btn {
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.hero .hero-content .hero-actions .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.hero .hero-content .hero-actions .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .hero-content .hero-info .info-item {
  width: 100%;
}

.hero .hero-content .hero-info .info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-content .hero-info .info-item small {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-content .hero-info .info-item .fw-medium {
  font-weight: 600;
  color: var(--heading-color);
}

.hero .hero-images {
  position: relative;
  height: auto;
}

@media (max-width: 991px) {
  .hero .hero-content .hero-actions {
    justify-content: center;
  }

  .hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero .hero-content .hero-info .info-item {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .hero .hero-images {
    /*height: 500px;*/
  }
}

.hero .hero-images .main-image {
  position: relative;
  width: 100%;
  height: 70%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-images .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero .hero-images .main-image:hover img {
  transform: scale(1.05);
}

.hero .hero-images .floating-images .floating-image {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--surface-color);
}

.hero .hero-images .floating-images .floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero .hero-images .floating-images .floating-image:hover img {
  transform: scale(1.1);
}

.hero .hero-images .floating-images .floating-image.floating-image-1 {
  top: 15%;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-images .floating-images .floating-image.floating-image-2 {
  bottom: 20%;
  left: -30px;
  animation: float 3s ease-in-out infinite 1.5s;
}

@media (max-width: 991px) {
  .hero .hero-images .floating-images .floating-image {
    width: 100px;
    height: 100px;
  }

  .hero .hero-images .floating-images .floating-image.floating-image-1 {
    right: 10px;
  }

  .hero .hero-images .floating-images .floating-image.floating-image-2 {
    left: 10px;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}