/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

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;
    font-family: 'Roboto', sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

/* Box Model Hack */
* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}


/* LAYOUT */

.container {
    width: 1280px;
    margin: 0 25px;
    @media screen and (orientation:portrait) {
        width: 300px;
    }
}

header{
    margin: 20px auto;
}

header .container .item{
    width: 100%;

}

header .container .item img{
    width: 100%;
    max-width: 350px;
    @media screen and (orientation: portrait) {
        max-width: 300px;
    }
}

h1{
    font-size: 4rem;
    @media screen and (orientation: portrait) {
        font-size: 2rem;
    }
}

p{
    font-size: 1.7rem;
}

.banner{
    background: url(./multipart-bg.jpg);
    background-size: cover;
    height:750px;
    @media screen and (orientation: portrait) {
        height: 600px;
    }
}

main .banner {
    margin: 0 25px 25px 25px;
}

main .banner .red-banner::before{
    content: "";
    display: block;
    width: 50px;
    height: 128px;
    background-color: #DD112F;
    position: absolute;
    transform: skewX(10deg);
    left: -14px;
}

main .banner .red-banner{
    background-color: #DD112F;
    width: 100%;
    max-width: 850px;
    height: auto;
    position: absolute;
    z-index: 10;
    top: 25%;
    left: 2%;
    transform: skewX(-10deg);
    @media screen and (orientation: portrait) {
        max-width: 320px;
        left: 5%;
    }
}

main .banner .red-banner h1{
    color: white;
    transform: skewX(10deg);
    padding: 2rem;
}

main .banner .financial-container{
    width: 90%;
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, .5);
    text-align: center;
    transform: translate(-50%, -50%);
    padding: 3rem;
    @media screen and (orientation:portrait){
        top: 65%;
    }
}



main .financial-container p{
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

main .financial-container p a{
    text-decoration: none;
    color: black;
}

main .financial-container p a:hover{
    color: #DD112F;
    transition: all .3s ease-in-out;
}

footer{
    text-align: right;
    margin: 0 25px 25px 25px
}