@font-face {
    font-family: GothamBookRegular;
    src: url(/magno/view/fonts/GothamBookRegular.otf);
}

@font-face {
    font-family: GothamBold;
    src: url(/magno/view/fonts/GB.otf);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-width: 320px;
    font-size: 0;
    background-color: black;
}
.nav-wrapper {
    background-color: #6bc9fc;
}
.wrapper-white {
    padding: 50px 0;
    background-color: white;
}

.wrapper-images {
    background-color: #050730;
    padding: 50px 0;
    color: white;
    position: relative;
}

.wrapper-images > img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    height: 300px;
}

.wrapper-images > img:first-of-type {
    top: 0;
    left: 0;
}

.wrapper-images > img:last-of-type {
    bottom: 0;
    right: 0;
}

.wrapper-img {
    padding: 50px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}

.content {
    margin: auto;
    font-size: 0;
    width: 1150px;
    font-family: GothamBookRegular, Arial, sans-serif;
}

h1 {
    font-family: GothamBold;
    font-size: 26pt;
    text-align: center;
    margin: 0 0 30px 0;
}

h2 {
    font-family: GothamBold;
    font-size: 26pt;
    text-align: center;
    margin: 0 0 30px 0;
}

.wrapper-images h2 {
    color: #58b5f1;
}

span.first_letter {
    font-family: "Times New Roman";
    font-size: 88pt;
    font-weight: bold;
    line-height: 79px;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 5px;
    float: left;
}

.content p {
    font-family: GothamBookRegular, Arial, sans-serif;
    font-size: 13pt;
    margin: 20px auto;
    line-height: 21px;
    text-align: justify;
}

.clear {
    clear: both;
}

strong {
    font-family: GothamBold;
}

.hide {
    display: none !important;
}

header {
    position: relative;
    background-color: #010101;
    padding: 25px 0;
    overflow: hidden;
    width: 100%;
}

.header-bg {
    position: absolute;
    background-image: url(/magno/view/img/header.png);
    left: calc((100% - 1150px) / 2 + 220px);
    top: 0;
    width: 100%;
    height: 100%;
    background-position: left center;
    background-repeat: no-repeat;
}

.relative {
    position: relative;
}

.logo-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-txt .info1 {
    font-family: GothamBold;
    font-size: 16pt;
    color: #63c4fe;
    text-transform: uppercase;
}

.logo-txt .info2 {
    font-size: 8pt;
    color: white;
}

.nav-wrapper nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.nav-wrapper nav ul li {
    padding: 14px 10px 10px;
    border-bottom: 4px solid #6bc9fc;
    margin-left: 10px;
}

.nav-wrapper nav ul li a {
    font-size: 13pt;
    color: black;
    text-decoration: none;
}

.nav-wrapper nav ul li:hover {
    border-color: #050730;
}

footer {
    background-color: #000000;
    padding: 25px 0 50px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-nav a {
    font-size: 13pt;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid white;
}

.footer-nav a:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border: 0;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-info {
    font-size: 13pt;
    text-align: center;
    color: white;
    line-height: 21px;
}

.mobile_menu {
    display: none;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .content {
        width: 970px;
    }

    .header-bg {
        left: calc((100% - 970px) / 2 + 220px);
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .content {
        width: 750px;
    }

    .header-bg {
        left: calc((100% - 750px) / 2 + 220px);
    }
}

@media (max-width: 768px) {
    .wrapper-white, .wrapper-img, .wrapper-1, .wrapper-images {
        padding: 20px 0;
    }

    span.first_letter {
        font-size: 60pt;
        line-height: 63px;
        margin-bottom: 5px;
    }

    h1, h2 {
        font-size: 21pt;
        margin-bottom: 20px;
    }

    header {
        padding: 15px 0;
    }

    .header-bg {
        left: 220px;
    }

    .content {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content p {
        font-size: 11pt;
        margin: 15px auto;
        line-height: 18px;
    }

    a {
        word-break: break-word;
    }

    .nav-wrapper nav ul li a, .footer-nav a, .footer-info {
        font-size: 11pt;
    }
}

@media (max-width: 600px) {
    .nav-wrapper nav ul li {
        margin-left: 2px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (max-width: 500px) {
    .content p {
        text-align: left;
    }

    #main-nav {
        display: none;
        position: absolute;
        right: 0;
        top: 100%;
        background-color: #0c1c5c;
    }

    #main-nav.show_menu {
        display: flex;
    }

    .mobile_menu {
        display: block;
        margin-left: auto;
    }

    .nav-wrapper nav ul {
        flex-direction: column;
    }

    .nav-wrapper nav ul li a {
        color: white;
    }

    .nav-wrapper nav ul li {
        padding: 10px 17px;
        border-bottom: 1px solid white;
    }

    .nav-wrapper {
        position: relative;
    }
    h2 {
        font-size: 18pt;
    }
}