/* =========================================
   Headings
   ====================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DeutscheBankDisplay';
    color: #133c7f;
    margin: 0;
}

h1{
    font-size: 24px;
    margin-bottom: 20px;
}

@media screen and (min-width: 1200px){
    h1{
        font-size: 30px;
        margin-bottom: 30px;
    }
}


/* =========================================
   Typography
   ====================================== */

p {
    font-family: 'DeutscheBankDisplay';
    color: #133c7f;
    margin: 0;
    font-size: 20px;
}

p + p {
    margin-top: 20px;
}

a:link,
a:active,
a:visited {
    color: #133c7f;
    text-decoration: underline;
}

@media screen and (min-width: 1200px){
    p {
        font-size: 23px;
    }

    p + p {
        margin-top: 30px;
    }

}

/* ==============================
   Main
   ============================= */

.main {
    background-image: url('../img/top_bg.jpg'), url('../img/bottom_bg.jpg');
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, 100% auto;
    padding: 5vh 0 15vh;
}

.main.noscroll {
    height: 100vh;
}

@media screen and (min-width: 768px){

    .main {
        background-image: url('../img/top_bg.jpg'), url('../img/bottom_bg.jpg');
        background-position: left top, right bottom;
        background-repeat: no-repeat, no-repeat;
        background-size: 100% auto, 100% auto;
    }

}

@media screen and (min-width: 992px) and (max-width: 1400px){
    .container {
        max-width: 830px;
    }
}

@media screen and (min-width: 1920px) {

    .main {
        background-size: auto, auto;
    }

}

/* ==============================
   Header
   ============================= */

.header {
    padding-top: 2vh;
    margin-bottom: 50px;
}

.header-text {

}

.header-text,
.header-logo {
    padding-top: 0;
}

.header-logo img {
    width: 40px;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .header {
        padding-top: 10vh;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 768px) and (min-height: 700px){
    .header {
        margin-bottom: 9vh;
    }
}

@media screen and (min-width: 992px) {
    .header {
        padding-top: 40px;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 992px) and (min-height: 800px) {
    .header {
        margin-bottom: 10vh;
    }
}


@media screen and (min-width: 992px){

    .header-logo img{
        width: 70px;
        margin-bottom: 20px;
    }

}

@media screen and (min-width: 1200px){

    .header {
        margin-bottom: 0;
    }

}

@media screen and (min-width: 1200px) and (min-height: 900px) {
    .header {
        margin-bottom: 10vh;
    }
}


/* ==============================
   Content
   ============================= */

.content-img {
    margin-bottom: 30px;
}

@media screen and (min-width: 992px){

    .content-img {
        margin-bottom: 0;
        max-width: 120%;
        transform: translate(-20%, 0);
    }

    .content-body {
        padding-left: 20px;
    }

}

@media screen and (min-width: 1200px){

    .content-img {
        max-width: 130%;
        transform: translate(-25%, 0);
    }

}