#anniversaryLogo {
	position: relative;
	text-align: center;
	margin: 40px 0px;
}

#anniversaryLogo img {
	outline: none;
	border: none;
	width: 640px;
	max-width: 100%;
}

.photo {
    position: relative;
    display: inline-block;
    font-size: 0px;
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
}
.photo .photo-frame {
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 10;  /* avoid safari's text antialiasing issue */
    width: 240px;
    border-radius: 12px;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.photo .photo-frame:before {  /* 3:4 aspect ratio */
    content: "";
    position: relative;
    display: block;
    width: 100%;
    padding-top: 133.33%;
}

#chairmanPhoto .photo-frame {
    background-image: url("/news/2021/ofs-30th-anniversary/david-perry.jpg");
}

#videoContainer {
	position: relative;
	display: block;
	width: 2000px;
	max-width: 100%;
	margin: 0px auto;
	padding: 0px 40px;
}

/* CSS media queries */
@media (max-width: 960px) {
}

/* mobile */
@media (max-width: 600px) {
    .video-container {
        padding: 0px 20px;
    }
}

@media (max-width: 480px) {
    .photo {
        margin-right: 15px;
        margin-bottom: 0px;
    }
    .photo .photo-frame {
        width: 150px;
    }
}

