.home .home-banner-1{
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 90% center;
    min-height: 400px;
    position: relative;
}


.home .home-banner-1{
    background-image: url('../images/planning1.png');
}


.home .home-banner .home-banner-text{
    position: absolute;
    top: 50%;
    left:43%;
    transform: translate(-110%, -50% );
    color: white;
    
}

.home .home-banner .home-banner-text h1{
    font-size: 5rem;
    font-weight: 700;

}
@media (max-width:767px){
  .home .home-banner-1{
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 90% center;
    min-height: 300px;
    position: relative;
}
  .home .home-banner .home-banner-text h1{
     font-size: 3rem;
      
  }
} 
@media (max-width:429px){ 
  .home .home-banner .home-banner-text{
      text-align: center;
      width: 100%;
      transform: translate(-50%, -50%);
      margin: auto;
      
  }
  .home .home-banner .home-banner-text h1{
  font-size: 2.5rem;
  }
}


/* Section 2 */
.sec-3 .card{
  width: 70%;
}
@media (max-width:767px){
  .sec-3 .card{
    width: 90%;
}
} 




 /* hover text */
 .texthovun{
    display: block;
    position: relative;
    padding: 0.2em 0;
    width: fit-content;
    margin: auto;
  }

  .texthovun ::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: rgb(0, 0, 141);
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
  }
  
  .texthovun :hover::after,
  .texthovun :focus::after {
    opacity: 1;
    transform: translate3d(0, 0.14em, 0);
  }


.blueh1{
    font-size: 4rem;
    color: rgb(0, 0, 141);
}




.button-69 {
    background-color: rgb(0, 0, 141);
    /* background-image: linear-gradient(#8614f8 0, #760be0 100%); */
    border-radius: 5px;
    border-style: none;
    box-shadow: rgba(245, 244, 247, .25) 0 1px 1px inset;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    height: 60px;
    line-height: 60px;
    margin-left: -4px;
    outline: 0;
    text-align: center;
    transition: all .3s cubic-bezier(.05, .03, .35, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: bottom;
    width: 190px;
  }
  
  .button-69:hover {
    opacity: .8;
  }
  
  @media (max-width: 600px) {
    .button-69 {
      font-size: 14px;
      height: 45px;
      line-height: 45px;
      width: 120px;
    }
  }