/*--------------------------------------------------------------
# Hero Section Home
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/ai-ai-1.jpg");
  background-size: cover;
  background-position: 0 -120px;
  filter: blur(1px);
  z-index: -1;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #000000;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #10ea4a;
}

#hero h2 {
  color: #000000;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #ffffff;
  background-color: rgb(48, 56, 219);
}

#hero .btn-get-started:hover {
  color: #000000;
  background-color: rgb(255, 255, 255);
}

#hero .btn-watch-video {
  font-size: 16px;
  margin-left: 25px;
  padding-right: 15px;
  border-radius: 5px;
  color: #ffffff;
  background-color: rgb(48, 56, 219);
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  font-size: 32px;
  transition: 0.5s;
  line-height: 0;
  margin-right: 8px;
  padding-left: 10px;
  margin-left: 3px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

#hero .btn-watch-video:hover {
  color: #000000;
  background-color: rgb(255, 255, 255);
}
#hero .custom-icon {
  transform: scale(0.8);
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.045);
  }
  100% {
    transform: scaleX(1);
  }
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}
