@charset "UTF-8";
/* CSS Document */

div:has(header#c3_header_main) {
    overflow: hidden;
}

header#c3_header_main {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
    aspect-ratio: 16 / 9;
    margin-top: -10%;
    margin-bottom: -5%;
	
	h1 {
		display: block;
        position: absolute;
        left: calc(7.5% - 5px);
        /*top: 40%;*/
        top: 50%;
        font-size: 4vw;
        letter-spacing: 0.7vw;
        line-height: 5vw;
        color: white;
        z-index: 2;
        text-transform: uppercase;
       
	}
}

header#c3_header_main iframe {
    background-color: #333333;
}

@media only screen and (max-width: 900px) {
    header#c3_header_main {
        margin-top: 0%;
        margin-bottom: 0%;

        h1 {
            top: 40%;

        }
    }

}