.hero-cover-wrapper {
	width: 100%;
	max-width: 100vw;
	margin: 0;
	padding: 0;
	position: relative;
	box-sizing: border-box;
}

.hero-cover-wrapper .container {
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
}

.hero-cover {
    position: relative;
    width: 100%;
	max-width: 100vw;
    height: 100vh; /* full screen */
	margin: 0;
	padding: 0;
    overflow: hidden;
	box-sizing: border-box;
}

.hero-cover .slide {
	box-sizing: border-box;
    width: 100%;
    height: 100%;
	max-width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* hide all slides initially */
    background-size: cover;
    background-position: center;
    color: #fff; /* temporary text color */
	margin: 0 !important;
	padding: 0 !important;
}

.hero-cover .slide.active {
    display: block; /* show the active slide */
	padding: 0 !important;
	margin: 0 !important; 
}

.hero-cover .arrow {
    position: absolute;
	margin-left: 0;
	margin-right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #000;
    background-color: rgba(0,0,0,0.5);
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
}

.hero-cover .arrow.left {
    left: 1rem;
}

.hero-cover .arrow.right {
    right: 1rem;
}