.about-page-content {
	display: flex;
	justify-items: center;
	text-align: center;
	height: 100%;
	color: black;
	width: 100%;
	flex-direction: column;
}

.about-banner {
	width: 100%;
	height: 35vh;
	min-height: 200px;
	background: url(../images/about_background.jpg) no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	backdrop-filter: brightness(75%);
    display: flex;
    flex-direction: column;
	position: static;
}

.grid-container {
	margin: 40px;
	flex-grow: 1; /* Take up remaining space */
    min-height: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.grid-item {
	height: 750px;
	padding: 20px;
	text-align: center;
}


.about-us-image {
	width: 70%;
	height: 100%;
}

.entries {
	flex-grow: 1; /* Take up remaining space */
    min-height: 0;
    width: 100%;
    max-width: 800px;
    margin: auto;
    position: relative;
    left: -5px;
	height: 100%;
	color: black;
}

.entries:after {
    content: '';
    position: absolute;
    top:0px;
    left:50.5%;
    bottom:25px;
    transform:translateX(-50%);
    width:4px;
    background-color:#fff;
}

.entry {
    width: calc(50% - 80px);
    float: left;
    padding: 20px;
    clear: both;
    text-align: right;
}

.entry:not(:first-child) {
    margin-top: -60px;
}

.title {
    font-size: 32px;
    margin-bottom: 12px;
    position: relative;
    color: black;
}

.title:before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 4px solid #ffffff;
    background-color: #1D1D1D;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: -73px;
    z-index: 1000;
}

.title.big:before {
    width: 24px;
    height: 24px;
    transform: translate(8px, -50%);
}


.entry:nth-child(2n) {
    text-align: left;
    float: right;
	width
}

.entry:nth-child(2n) .title:before {
    left: -63px;
}

.entry:nth-child(2n) .title.big:before {
    transform: translate(-8px, -50%);
}

@media only screen and (max-width: 1500px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
	.grid-item {
		height: auto;
	}
}