.autoplayer-pro {
    position: relative;
    overflow: hidden;
    height: 75vh;
}

.autoplayer-pro.half-height {
    height: 45vh;
}

.autoplayer-pro.landscape {
    height: 0;
    padding-bottom: calc(100% * 9/16);
}

.autoplayer-pro.landscape video {
	width: 100%;
}

.autoplayer-pro .poster {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    min-height: 100%;
	min-width: 100%;
	object-fit: cover;
    transform: translate(-50%, -50%);
}

.autoplayer-pro .fallback.loaded .poster {
    filter: none;
}

.autoplayer-pro .video {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 300ms cubic-bezier(0,0,0.3,1);
}

.autoplayer-pro.video-loaded .video {
    opacity: 1;
}

.autoplayer-pro .top-content {
    position: absolute;
    display: inline-block;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 5px));
    text-align: center;
}

.autoplayer-pro .subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    color: #fff;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, .4), -1px 2px 2px rgba(0, 0, 0, .2);
    letter-spacing: 0.01em;
    line-height: 1em;
    margin-bottom: 2px;
}

.autoplayer-pro .title {
	font-family:'DIN W01 Cond Bold';
	font-size: 54px;
	color: #fff;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, .4), -1px 2px 2px rgba(0, 0, 0, .2);
    line-height: 1.03em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* -- video controls -- */
.autoplayer-pro .video-controls {
    display: none;
    margin-bottom: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding-left: 13px;
    padding-bottom: 13px;
    margin: 0;
}

.autoplayer-pro.video-loaded .video-controls {
	display: grid;
	gap: 10px;
}

.autoplayer-pro .video-control {
	line-height: 1;
	border: 1px solid rgba(255, 255, 255, 1);
	text-align: center;
	border-radius: 50%;
	background: rgba(72, 130, 42, 0.7);
	color: #fff;
	padding: 0;
	z-index: 10;
	transition: background 100ms, border-color 100ms;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: white;
	position: static;
	transform: none;
	margin: 0;
	height: 52px;
	width: 52px;
	border-width: 1px;
	font-size: 20px;
	opacity: 0.7;
}

.autoplayer-pro .video-control:hover {
    background-color: #48822a;
    cursor: pointer;
    opacity: 1;
}

.autoplayer-pro .scroll-wrapper {
    display: none;
}

.autoplayer-pro .faq,
.autoplayer-pro .convention-center,
.autoplayer-pro .live-for-more {
	position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    z-index: 2;
}
.autoplayer-pro .live-for-more.spanish {
    top: 18%;
    width: 37%;
}

.autoplayer-pro .live-for-more.english {
    width: 30%;
}

.autoplayer-pro .live-for-more.portuguese {
    width: 30%;
}

@media (min-width: 40em) {
    .autoplayer-pro,
    .autoplayer-pro.half-height,
    .autoplayer-pro.landscape {
        height: 100vh;
    }

    .autoplayer-pro video,
    .autoplayer-pro.half-height video,
    .autoplayer-pro.landscape video {
	    width: auto;
    }

	.autoplayer-pro .top-content {
		transform: translate(-50%, calc(-50% + 131px));
	}
	
	.autoplayer-pro .text-content {
		display: inline-block;
		margin-bottom: 40px;
	}
	
	.autoplayer-pro .subtitle {
		font-size: 50px;
	}

	.autoplayer-pro .title {
		font-size: 80px;
	}

	.autoplayer-pro .scroll-wrapper {
		display: flex;
		flex-direction: column;
		position: relative;
	}

    .autoplayer-pro .scroll-button {
        z-index: 3;
        padding-left: 13px;
        padding: 0;
        margin: 0 auto 5px;
        background: rgba(72, 130, 42, 0.8);
    }

    .autoplayer-pro .scroll-button:hover {
    	background-color: #48822a;
    	cursor: pointer;
    }

    .autoplayer-pro .scroll-wrapper::after {
    	content: '';
        position: absolute;
        z-index: -1;
        width: 200px;
        height: 200px;
        border-radius: 100%;
        background-color: #ffffff;
        top: 50%;
        left: 50%;
        transform-origin: 0% 0%;
        animation-name: scale-in-center;
        animation-duration: 2.5s;
        animation-timing-function: ease;
        animation-delay: 0s;
        animation-iteration-count: infinite;
        animation-direction: normal;
        animation-fill-mode: none;
        pointer-events: none;
    }

    .autoplayer-pro .scroll-button i {
    	color: #fff;
    }

    .autoplayer-pro .scroll-label {
    	text-transform: uppercase;
    	color: #fff;
    	font-size: 18px;
    	font-family:'Inter';
    	text-shadow: 1px 2px 2px rgba(0, 0, 0, .4), -1px 2px 2px rgba(0, 0, 0, .2);
    }

    .autoplayer-pro .video-controls {
    	display: flex;
    	flex-direction: column;
    	padding-bottom: 29px;
    	padding-left: 37px;
    }

    .autoplayer-pro .video-control {
    	display: block;
    	position: relative;
    }

    .autoplayer-pro .video-control.playback {
    	margin-bottom: 6px;
    }
}

@media (min-width: 64em) {
	.autoplayer-pro .top-content {
		max-width: 1190px;
		width: 100%;
	}

	.autoplayer-pro .text-content {
		margin-bottom: 90px;
	}

	.autoplayer-pro .subtitle {
		font-size: 60px;
		margin-bottom: 0;
	}

	.autoplayer-pro .title {
		font-size: 100px;
		line-height: 1em;
		position: relative;
		top: -13px;
	}

	.autoplayer-pro .live-for-more {
		top: 21%;
	}

	.autoplayer-pro .live-for-more.spanish {
		width: 25%;
		top: 20%;
	}
    .autoplayer-pro .faq,
    .autoplayer-pro .live-for-more,
    .autoplayer-pro .convention-center{
        width: 60%;
    }
}

.autoplayer-pro .video-control:hover {
}

.autoplayer-pro .video-control:focus {

}

.autoplayer-pro .video-control .fa-play {
    margin-left: 2px;
}

@keyframes scale-in-center {
	0% {
		transform: scale(0) translate(-50%, -50%);
		opacity: .35;
	}
	
	100% {
		transform: scale(1.2) translate(-50%, -50%);
		opacity: 0;
	}
}
