
#banner{
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
}

#banner .banner_img{
    width: 70%;
    height: 100%;
   background-image: url('../images/banner.png');
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   border-radius: 0px 200px 0px 0 ;
   position: relative;
}


.banner_img::before{
    content:"";
    width:100%;
    height: 400px;
    background-color: #f9f9fc ;
    position: absolute;
    top: 0;
    left: 0;   
    z-index: -1;
}

 
#banner .banner_title_container{
    width: 30%;
    position: relative;
}

#banner .banner_title_container::before{
  content: ""; 
  position: absolute;
  top: -80px;
  right: 5px;
  width: 100%;
  height: 100%;
  background-image: url('../images/top.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

#banner .banner_title_container .banner_title{
    padding: 50px 0px; 
    font-size: 18px;
    max-width: 300px;
    width: auto;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#banner .banner_title_container .banner_title h2{
    font-size: 36px;
}

#banner .banner_title span {
    align-self: flex-end;
    margin-right: 20px;
    color: #192D5F;
    letter-spacing: 4px;

}

#banner .banner_content{
    position: absolute;
    bottom: 0;
    left: 45%;
    font-size: 35px;
    display: flex;
    flex-direction: column;
}

#banner .banner_content h1:first-child{
    margin-bottom: 30px;
    align-self: flex-end;
}

#banner .banner_content h1{
    padding-left: 20px;
    font-weight: 400 !important;
    background-color: #fff;
}




@media (max-width: 600px) {
    #banner{
        width: 100%;
        height: 60vh;
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        
    }

    #banner .banner_title_container .banner_title h2{
        font-size: 28px;
    }
    
    #banner .banner_img{
        width: 100%;
        height: 100%;
       background-image: url('../images/banner.png');
       background-position: center;
       background-repeat: no-repeat;
       background-size: cover;
       border-radius: 0px 200px 0px 0 ;
    }
     
    #banner .banner_title_container{
        width: 100%;
    }

    
    
    #banner .banner_title_container .banner_title{
        padding: 22px; 
    }
    
    #banner .banner_content{
        position: absolute;
        bottom: 30%;
        left: 10%; 
        font-size: 15px;
    }

    #banner .banner_content h1:first-child{
        margin-bottom: 20px;
    }
}