.hero {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
}
.hero .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80vh;
  
}
.hero-left {
  width: 50%;
  
}
.hero-tag {
  color: #25a7ff;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  
}
.hero-left h1 {
  font-size: 60px;
  color: #fff;
  margin: 20px 0;
  line-height: 75px;
  
}
.hero-left h1 span {
  color: #25a7ff;
  
}
.hero-left p {
  color: #cfcfcf;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
  
}
.hero-btns {
  display: flex;
  gap: 20px;
  
}
.btn-primary {
  background: #25a7ff;
  color: #fff;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 40px;
  
}
.btn-secondary {
  border: 2px solid #25a7ff;
  color: #fff;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 40px;
  
}
.hero-right {
  width: 45%;
  
}
.hero-right img {
  width: 100%;
  
}
/* ===========================
   Mobile Responsive Hero
=========================== */

@media (max-width: 992px) {
  .hero .container {
  flex-direction: column;
  text-align: center;
  padding: 50px 0;
  
}
.hero-left,
    .hero-right {
  width: 100%;
  
}
.hero-right {
  margin-top: 40px;
  
}
.hero-left h1 {
  font-size: 48px;
  line-height: 60px;
  
}
.hero-left p {
  font-size: 17px;
  line-height: 28px;
  
}
.hero-btns {
  justify-content: center;
  flex-wrap: wrap;
  
}
.hero-right img {
  max-width: 500px;
  width: 100%;
  margin: auto;
  display: block;
  
}

}


@media (max-width: 768px) {
  .hero {
  padding: 40px 0 60px;
  min-height: auto;
  
}
.hero-left h1 {
  font-size: 38px;
  line-height: 50px;
  
}
.hero-left p {
  font-size: 16px;
  line-height: 28px;
  
}
.hero-btns {
  flex-direction: column;
  align-items: center;
  gap: 15px;
  
}
.btn-primary,
    .btn-secondary {
  width: 220px;
  text-align: center;
  
}
.hero-right img {
  max-width: 100%;
  margin-top: 20px;
  
}

}
@media (max-width: 480px) {
  .hero-left h1 {
  font-size: 30px;
  line-height: 42px;
  
}
.hero-tag {
  font-size: 13px;
  
}
.hero-left p {
  font-size: 15px;
  line-height: 25px;
  
}
.btn-primary,
    .btn-secondary {
  width: 100%;
  max-width: 250px;
  padding: 14px 20px;
  
}
.hero-right img {
  width: 100%;
  
}

}
