html {
    overflow: hidden;
}

.officerHeadingContainer {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 7em;
}

/* wave header design top and bottom */
.wave-top {
	width: 100%;
    height: 6em;
	background: linear-gradient(135deg, rgba(24, 61, 110, 0.9) 0%, rgba(24, 61, 110, 0.8) 100%);
	background-size: cover;
    position: relative;
}

.wave-top::before {
    content: "";
    position: absolute;
    top: 2em;
	left: 0;
	width: 100%;
	height: 6rem;
	background: url("/static/projects/staticImages/wave-small.png") center no-repeat;
	background-size: cover;
	overflow: hidden;
}

.wave-bottom {
	width: 100%;
	height: 6rem;
	background: linear-gradient(135deg, rgba(154, 0, 41, 0.9) 0%, rgba(154, 0, 41, 0.8) 100%);
	background-size: cover;
    position: relative;
}

.wave-bottom::before {
    content: "";
    position: absolute;
    top: -2em;
	left: 0;
	width: 100%;
	height: 6rem;
	background: url("/static/projects/staticImages/wave-small-reversed.png") center no-repeat;
	background-size: cover;
	overflow: hidden;
}

@media screen and (min-width: 470px) {
    .wave-bottom {
        height: 10rem;
    }

    .wave-top::before {
        height: 8.5rem;
        background: url("/static/projects/staticImages/wave-medium.png") center no-repeat;
        background-size: cover;
    }
    
    .wave-bottom::before {
        height: 8.5rem;
        background: url("/static/projects/staticImages/wave-medium-reversed.png") center no-repeat;
        background-size: cover;
    }

    .wave-top {
        height: 10rem;
    }

}

@media screen and (min-width: 950px) {
    .wave-bottom {
        height: 18.7rem;
    }

    .wave-bottom::before {
        height: 18.7rem;
        background: url("/static/projects/staticImages/wave-large-reversed.png") center no-repeat;
        background-size: cover;
    }

    .wave-top {
        height: 18.7rem;
    }

    .wave-top::before {
        height: 18.7rem;
        background: url("/static/projects/staticImages/wave-large.png") center no-repeat;
        background-size: cover;
    }
}

.officerTitle {
    color: #2c3e50;
    font-size: 2.9rem;
    font-weight: 700;
    position: relative;
    display: block;
    padding-bottom: 1rem;
}

.officerTitle:after {
    height: 4px;
    background-color: #cc0000;
}

.officerTitle::after {
    background-color: #cc0000;
    left: 50%;
    width: 100px;
    bottom: 0;
    content: "";
    position: absolute;
    transform: translate(-50%, 0);
}

.officer-content-wraper {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 3em;
    margin-bottom: 3em;
}

.officer-content-row {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;
    justify-content: center;
}

.officer-content {
    display: flex;
    flex-direction: column;
    padding-left: 2em;
    padding-right: 2em;
    align-items: center;
    margin-left: 2.5em;
    margin-right: 2.5em;
    margin-bottom: 2em;
    margin-top: 2em;
}

@media only screen and (max-width: 700px) {
    .officer-content-row {
        display: block;
    }
    .officer-content {
        margin-left: 0;
        margin-right: 0;
    }
}

.officer-content-row h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.50em;
    margin-top: 0.50em;
}

.officer-content-row p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.50em;
}

.officer-content-img {
    margin-top: 1.5em;
    margin-bottom: 0.90em;
    width: 13em;
    height: 13em;
    border-radius: 50%;
	border: 3px solid rgba(154, 0, 41, 1);
}