@media screen and (max-width:1024px) {
	
    .layout-1-1 .left-column
    {
    	width:70% !important;
    }
    
    .layout-1-1 .right-column
    {
    	width:30% !important;
    }
}

@media screen and (max-width:800px) {
	
    .layout-1-1 .left-column
    {
    	width:100% !important;
    }
    
    .layout-1-1 .right-column
    {
    	display:none;
    }
}

/*
1024 < width ---> 50:50
800 < width <= 1024 ---> 70:30
width <= 800 ---> 100:0
*/