.carousel-inner img {
    
    background: 
color-mix(in srgb, var(--background-color), transparent 60%);
    
}

.header .logo img {
    max-height: 75px!important;
    margin-right: 8px;
}

#hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 75px 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


#hero img {
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
		min-height: 100vh;

    
}

.carousel-item {
	min-height: 100vh;
    /*display: none;*/
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
}


.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 40%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}
#hero h5 {
    margin: 0;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 700;
	color: white;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);

}
@media (max-width: 768px) {
    #hero h5 {
        font-size: 32px;
    }
}
#hero p {
    margin: 10px 0 0 0;
    font-size: 24px;
	color: white;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 1);

}
#hero .btn-get-started {
    color:white;
    font-weight: 400;
    font-size: 15px;
    display: inline-block;
    padding: 8px 30px;
    margin: 30px 0 0 0;
    transition: 0.5s;
    text-transform: uppercase;
    border: 2px solid 
	color-mix(in srgb, white, transparent 20%);
}