#secHero
{
    position: fixed;
    left: 0;
    top: 100px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel
{
    z-index: -2;
    width: 100%;
    height: 100%;
}

.imgCarousel
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-in-out;
}

.slide
{
    width: 100%;
    height: 100%;
	opacity: 0;
    position: absolute;
    transition: opacity 1s linear;
}

.slideHeads
{
    position: fixed;
    bottom: 13%;
    right: 0;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 10px 10px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #ff6602;
	transition: all 1.5s ease-in-out;
}

.slideH1
{
    margin: -0.8em 1em 0.2em 1em;
    font-size: 3em;
    text-align: right;
    color: #fff;
    text-shadow: 0 0 10px #000;
	transition: all 1s ease-in-out;
}

.slideH2
{
    margin: -0.5em 1em 0.3em 1em;
    font-size: 1.5em;
    text-align: right;
    color: #000;
    text-shadow: 0 0 15px #fff;
	transition: all 1s ease-in-out;
}

.slideHIDDEN
{
    display: none;
}

.showMe
{
    opacity: 1;
    .imgCarousel
	{
        transform: scale(1.1);
    }
}

.awayLeft
{
    margin-right: 300px;
}

.awayRight
{
    right: -20em;
    margin-right: 200px;
}

@media screen and (max-width: 960px)
{
    #secHero
    {
        top: 0px;
    }
    
	.slideH1
	{
		font-size: 2em;
	}

	.slideH2
	{
		font-size: 1em;
	}
}