.advanced-banner .banner-content-inner{
  width:100%;
}
.advanced-banner .media-content .img_wrp{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.advanced-banner .hero-cards {
  position: relative;
}
.advanced-banner .hero-cards .hero-card{
  position:absolute;
}
.advanced-banner .hero-cards .hero-card.card_animate{
  animation: cardFloat 6s ease-in-out infinite;
}
.advanced-banner .hero-card .card-title{
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.advanced-banner .hero-card .card-text{
  font-size: 0.9rem;
  line-height: 1.5;
}

.advanced-banner .adv-banner-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.advanced-banner .adv-banner-form h5.form-title {
  font-size: 1.3rem !important;
  font-weight: 800;
  line-height:1.19047619048;
      font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0A0A0A;
  margin:0 0 15px;
}

{% if module.module_settings.content_position=="left" %}

.advanced-banner .adv-banner-form{
  max-width:100%;
  margin-left:auto;

}

{% endif %}

{% if module.module_settings.content_position=="right" %}

.advanced-banner .adv-banner-form{
  max-width:100%;
  margin-right:0;

}

{% endif %}

@media (min-width:1025px){
  .advanced-banner .adv-banner-form{
    max-width:480px;

  }

}


@media(max-width:1024px){
  .advanced-banner .hero-cards .hero-card{
    width: 100% !important;
    position: static;
    animation: none !important;
  }
  .advanced-banner .hero-cards .hero-card:not(:last-child){
    margin-bottom:20px;
  }
  .advanced-banner .hero-cards .hero-card:first-child{
    margin-top:20px;
  }
}
@keyframes cardFloat{
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}