#containeruni {
		margin: 0 auto;
		width:100%;
		max-width:800px;
		display:flex;
		flex-direction:row;
		flex-wrap:wrap;
		justify-content:space-around;
		align-items:center;
		align-content:flex-start;
		background-color: white;
}
.left33 {
    float: left;
    width: 33%;
}
.imgleft {
    max-width: 100%;
    height: auto;
	-ms-interpolation-mode: bicubic;
	object-fit: contain; /*'fill' or 'cover'*/
	object-position: 50%;	
}

.right67 {
    float: right;
    width: 67%;
}
.imgright {
    max-width: 100%;
    height: auto;
	-ms-interpolation-mode: bicubic;
	object-fit: contain; /*'fill' or 'cover'*/
	object-position: 50%;	
}
.imgright500 {
    width: 100%;
    max-width: 500px;
    height: auto;
	-ms-interpolation-mode: bicubic;
	object-fit: contain; /*'fill' or 'cover'*/
	object-position: 50%;	
}


.left100 {
    float: left;
    width: 100%;
}
.imgleft100 {
    max-width: 100%;
    height: auto;
	-ms-interpolation-mode: bicubic;
	object-fit: contain; /*'fill' or 'cover'*/
	object-position: 50%;	
}

.group:after {
    content:"";
    display: table;
    clear: both;
}

img {
    max-width: 100%;
    height: auto;
	-ms-interpolation-mode: bicubic;
	object-fit: contain; /*'fill' or 'cover'*/
	object-position: 50%;	
}
@media screen and (max-width: 600px) {
    .left33, 
    .right67 {
        width: 50%;
    }
	}
@media screen and (max-width: 480px) {
    .left33, 
    .right67 {
        float: center;
        width: 100%;
        margin: 0 auto;
        align: center;
    }
    .left33 {
				padding-bottom:15px;
			}
	.imgleft,
	.imgright {
		align: center;
	}
}