/* hero css */
.hero-banner-area {
  position: relative;
  background-color: var(--primary);
  padding-top: 220px;
  padding-bottom: 140px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .hero-banner-area { padding-top: 180px; padding-bottom: 100px; }
}
@media only screen and (max-width: 991px) {
  .hero-banner-area { padding-top: 150px; padding-bottom: 80px; }
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 64px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 25px;
  letter-spacing: -2px;
}
@media only screen and (max-width: 1399px) {
  .hero-title { font-size: 56px; }
}
@media only screen and (max-width: 991px) {
  .hero-title { font-size: 44px; letter-spacing: -1px; }
}
@media only screen and (max-width: 767px) {
  .hero-title { font-size: 36px; }
}

.hero-descr {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white-2);
  margin-bottom: 40px;
  max-width: 600px;
}
@media only screen and (max-width: 767px) {
  .hero-descr { font-size: 16px; margin-bottom: 30px; }
}

.hero-shapes .shape {
  position: absolute;
  z-index: -1;
}
.hero-shapes .shape-1 {
  top: 15%;
  right: 10%;
  animation: t-SlideBottom 8s infinite alternate;
}
.hero-shapes .shape-2 {
  bottom: 10%;
  left: 5%;
  animation: t-Bubble 6s infinite ease-in-out;
}