

.hero .overlay{
  background-color:#000;
  position: relative;
  height:100%;
  width:100%;
  z-index:0;
  left:0;
  right:0;
  top:0;
  opacity:0.7;
  object-fit: cover;
}
.hero .content {
  color: #fff;
  z-index: 2;
  text-align: left;
  animation: slideUp 1s ease-out forwards;
  opacity: 0; /* Start invisible for animation to fade in */
  margin-top: 100px;
}
.hero .content h1 {
  font-size: 45px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  animation: slideUp 1.2s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  text-align: left;
  margin-left: 0px;
}
.hero .content p{
    font-size: 26pt;
      margin-left: 0px;

}

.hero .content h1{
  margin-top: -30px;
  font-size:45px;
  font-weight:700;
  font-family: 'Montserrat', sans-serif;
  z-index: -1;
}

.hero .content a{
    border-radius: 20px;
    border: 3px solid;
    font-size: 18pt;
    padding: 13px;
    color:white;
margin-top: 20px;
      margin-left: 0px;

}

@keyframes slideUp {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

