.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:800px){
    .home .home-banner .home-banner-text{
        text-align: center;
        width: 100%;
        transform: translate(-60%, -50%);
        margin: auto;
        
    }
    .home .home-banner-1{
    
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 90% center;
        min-height: 300px;
        position: relative;
    }

}

@media (max-width:500px){ 
    
    .home .home-banner .home-banner-text h1{
    font-size: 2.7rem;
    }
  }

/* Section 2 */
.sec-2{
    width: 100%;
    /* background-color: white; */
    min-height: 400px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}


 /* 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);
  }


  /* hover Image */

  .hover01{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.hover01 figure:hover img{
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}



.sec-2 .card{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    width: 60%;

}
.sec-2 .card2{
    width: 17%;
}

@media (max-width:820px){
    .sec-2 .card{
        
        width: 70%;
    
    }
    .sec-2 .card2{
        width: 17%;
    }

}
@media (max-width:770px){
    .sec-2 .card{
        
        width: 70%;
    
    }
    .sec-2 .card2{
        width: 25%;
    }

}
@media (max-width:500px){
    .sec-2 .card{
        
        width: 90%;
    
    }
    .sec-2 .card2{
        width: 40%;
    }

}



.sec-2 p,
.sec-2 li,
.sec-2 table{
    
    font-size: 1.3rem;
    

}
.blueh1{
    font-size: 2.7rem;
    color: rgb(0, 0, 141);
}