/*============================================================================================
	Hero Area
==============================================================================================*/
.hero-area.style2 {
  position: relative;
  padding: 100px 0px 154px;
  overflow: hidden;
}
.hero-area.style2 .hero-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 780px;
}
.hero-area.style2 .hero-bg img {
  width: 100%;
  height: 100%;
}
.hero-area.style2 .hero-image img {
  width: 100%;
  height: 525px;
  object-fit: contain;
  border-radius: 24px;
}
.hero-area.style2 .hero-image {
  position: relative;
}
.hero-area.style2 .hero-image .border-shape {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  filter: drop-shadow(40px 80px 120px rgba(10, 38, 71, 0.27));
  border-radius: 63px;
  width: 126px;
  height: 180px;
  position: absolute;
  display: inline-block;
  right: 12%;
  top: 0px;
}

.hero-area.style2 .hero-image::after {
  position: absolute;
  content: "";
  width: 142px;
  height: 142px;
  background-image: url("../../../images/rocket-icon.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 10px;
  right: 5%;
  animation: action 1s infinite alternate;
}

.hero-area.style2 .hero-image::before {
  position: absolute;
  content: "";
  width: 130px;
  height: 130px;
  background-image: url("../../../images/circle-icon.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation-name: shake;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 17%;
  left: 4%;
}
.hero-area.style2 .hero-cont-intro-text {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 16px 24px rgba(10, 38, 71, 0.04);
  border-radius: 4px;
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: var(--title-color);
}
.hero-area.style2 .hero-cont-intro-text span {
  font-weight: 800;
}
.hero-area.style2 .hero-cont-intro-text img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  position: relative;
  top: -3px;
}
.hero-area.style2 .hero-cont-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 140%;
  color: var(--title-color);
  margin-bottom: 16px;
}
.hero-area.style2 .hero-cont-text {
  margin: 0;
}
.hero-area.style2 .hero-cont-buttons {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-area.style2 .hero-cont-buttons .btn {
  background: #ffffff;
  box-shadow: 0px 1px 2px rgba(19, 0, 90, 0.12);
  color: var(--secondary-color);
}
.hero-area.style2 .hero-cont-buttons .btn.btn-secondary {
  color: var(--off-white-color);
}
.hero-area.style2 .hero-cont-buttons .theme-btn.secondary {
  background: var(--white-color);
  color: var(--primary-color) !important;
}
/* Hero Animations */
.hero-area.style2 .hero-cont-intro-text {
  animation: fadeInUp 1s both 1s;
}
.hero-area.style2 .hero-cont-title {
  animation: fadeInUp 1s both 1s;
}
.hero-area.style2 .hero-cont-text {
  animation: fadeInRight 1s both 1.5s;
}
.hero-area.style2 .hero-cont-buttons {
  animation: fadeInUp 1.2s both 1.8s;
}

/* Animation Keyframes */
@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area.style2 .col-lg-6.col-12.order-class {
    order: -1;
  }
  .hero-area.style2 .hero-bg {
    height: 990px;
  }
  .hero-area.style2 .hero-image {
    margin-top: 56px;
  }
  .hero-area.style2 .hero-area {
    padding: 100px 0px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-area.style2 .hero-image {
    display: none;
  }
  .hero-area.style2 .hero-cont-intro-text {
    font-size: 18px;
  }
  .hero-area.style2 .hero-cont-title {
    font-size: 30px;
    line-height: 130%;
    margin-bottom: 10px;
  }
  .hero-area.style2 {
    padding: 80px 0px 100px;
  }
  .hero-area.style2 .hero-bg {
    height: 600px;
  }
  .hero-area.style2 .hero-bg img {
    object-fit: cover;
  }
}
/*============================================================================================
	End Hero Area
==============================================================================================*/
