.large_banner {
    width: 100%;
    height: 600px;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
}

.large_banner img {
    width: 100%;
	height: 100%;
	box-sizing: border-box;
	object-fit: cover;
	object-position: 50% 50%;
}

@media (max-width: 600px) {
    .large_banner {
        margin-bottom: 100px;
    }
}