body{
   
        overflow-x:hidden;
        font-family:"Kanit", sans-serif;
        font-weight:400;
        
    }
*{
    box-sizing:border-box;
}

.block{
    background-color:rgb(22,22,22);
   
}
.wrapper{
    display:flex;
    column-gap:20px; 
    flex-wrap:wrap;
    padding-bottom:50px;
}
.wes-img{
   object-fit:cover;
   width:100%;
   height:100%;
}

.wes-img-container{
    
    height:500px;
    width:100%;
    background-color:black;
}

.col{
    flex:1;
}
.col h1{
    color:grey;
    color:white;
    font-size:40px;
    font-family:'Josefin Sans',Arial,sans-serif;
    line-height: 1.1;
    padding:20px;
    

}

.col1{
    
    padding-top:150px;    
    
}
.col2{
    padding-top:100px;
}
.col p{
    color:darkgray;
    text-align:justify;
    padding:20px; 
}


@media(max-width:1110px){
    .wrapper{
        column-gap:0;
        display:block;
    }

    
}

