@font-face {
    font-family: FagoWebPro;
    src: url('FagoWebPro.woff') format('truetype');
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.header-wrapper {
    background: #001e38;
}

.logo-wrapper {
    height: 120px;
    position: relative;
    width: 200px;
}

.logo {
    height: 50px;
    left: 15px;
    position: absolute;
    top: 36px;
    left: 30px;
}

.img-wrapper {
    background: white;
    position: relative;
    height: 400px;
    width: 100wh;
    overflow: hidden;
}

.teaser {
    position: absolute;
    width: 100%;
    min-width: 100%;
    min-height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-container {
    display: flex;
}

.content {
    margin: 10px 10%;
}

.main-title {
    color: red;
    font-family: FagoWebPro;
    margin-bottom: 0;
    font-size: 30px;
    word-break: break-word;
}

.sub-title {
    color: #001e38;
    font-family: FagoWebPro;
    margin-top: 5px;
    font-size: 30px;
    word-break: break-word;
}

p {
    font-family: FagoWebPro;
    color: grey;
}

.footer-wrapper {
    background: #001e38;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 100%;
    height: 30px;
    background: #001e38;
    display: block;
    color: white;
    font-size: 12px;
    font-family: FagoWebPro;
}

.footer {
    padding: 7px 10px;
}

@media (min-width: 500px) and (max-width: 740px) {
    .content-container {
        flex-direction: column;
    }
    .teaser {
        height: 200px;
    }
}

@media (max-width: 500px) {
    .content-container {
        flex-direction: column;
    }
    .content {
        margin: 5px 5%;
    }

    .img-wrapper {
        display: none;
    }

    .teaser {
        display: none;
    }
    .main-title, .sub-title {
        font-size: 21px;
    }
}