/* CSS Reset */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    overflow: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1.35;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Page Styles */

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-ExtraLight.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}


.template-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-color: #cf0f21;
}

.header-container{
    overflow: initial;
    display: flex;
    justify-content: space-between;
    width: -webkit-fill-available;
}

.header-text {
    align-content: center;
    color: white;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 3em;
}

.brand-container{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.brand {
    width: 7em;
    height: 7em;
    background-color: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 9;
}

.brand img{
    width: 6.5em;
    height: auto;
}

.arrow {
    padding-top: 1em;
    width: .2em;
    height: 0;
    border-left: 1em solid transparent;
    border-right: 1em solid transparent;
    border-bottom: 2em solid white;
}

.content-container {
    display: flex;
    flex-direction: column;
    height: -webkit-fill-available;
    align-items: flex-end;
    margin: 3em;
}

.texts {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    position: relative;
    overflow: unset;
    padding: 2.5vmax 2vmax 1.75vmax;
    background-color: white;
}

.description {
    margin-top: .75vmax;
    font-size: 2.5vmax;
    font-family: Montserrat;
    font-weight: 700;
    box-sizing: border-box;
    min-height: 8vmax;
    display: flex;
    align-items: center;
    color: #222;
    line-height: 1.35;
}

.credits {
    position: absolute;
    top: .75vmax;
    right: .75vmax;
    font-family: Montserrat;
    font-weight: 500;
    opacity: .7;
    font-size: 1vmax;
    text-transform: uppercase;
    color: #555
}

@media (min-aspect-ratio: 16/4) {
    .brand {
        width: 10em;
        height: 10em;
    }
    
    .brand img{
        width: 9em;
        height: auto;
    }

    .texts {
        padding: 2em 5em 2em;
    }
    .header-text {
        font-size: 8em;
    }
}

@media (orientation: portrait) {
    /*logo proporção 3:1*/
    .brand {
        width: 21em;
        height: 7em;
        background-color: white;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: unset;
        position: relative;
        z-index: 9;
    }
    .brand img{
        
        height: 7em;
        width: auto;
    }
}