* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    min-width: 320px;
}

header {
    background-color: white;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
}

.main-wrapper {
    padding: 20px 0;
    width: 100%;
    background-color: white;
}

.wrapper-img {
    background-image: url(/v3/view/img/wrapper1.png);
    padding: 40px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}
.wrapper-img img {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.content {
    width: 100%;
    padding: 20px;
    border-radius: 7px;
    margin: auto;
    max-width: 1100px;
    font-size: 0;
    font-family: Arial, sans-serif;
}

footer {
    background-color: #0a007c;
    font-size: 12pt;
    text-align: center;
    font-family: Arial, sans-serif;
    color: white;
    padding: 20px 0 50px 0;
}

footer a {
    color: white;
    font-weight: bold;
}

.alert-hover {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    font-size: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
}

.alert-block {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: white;
    z-index: 999999;
    border: 10px solid rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
    max-width: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.alert-close {
    background-color: black;
    border-radius: 50%;
    right: 0;
    top: 0;
    position: absolute;
    width: 35px;
    height: 35px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 17pt;
    line-height: 1.5;
    cursor: pointer;
    color: white;
    font-weight: bold;
}

.alert-body {
    padding: 4%;
    max-width: 100%;
}

.hide {
    display: none !important;
}

.clear {
    clear: both;
}

input, select, textarea {
    outline: none !important;
}
p {
    font-family: Arial, sans-serif;
    font-size: 13pt;
    text-align: justify;
}
@media (min-width: 769px) and (max-width: 1200px) {
    .content {
        width: calc(100% - 100px);
        margin: 0 50px;
    }
}

@media (max-width: 768px) {
    p {
        font-size: 11pt;
    }
    .content {
        margin: 0;
        border-radius: 0;
    }

    .main-wrapper {
        padding: 0;
    }

    footer {
        font-size: 11pt;
        padding: 15px 10px 25px;
    }

    span.first_letter {
        font-size: 60pt;
        line-height: 54px
    }
}

@media (max-width: 420px) {
    p {
        text-align: left;
    }
    footer {
        font-size: 10pt;
    }
}

@media (max-height: 700px) {
    .alert-block {
        top: 0;
    }
}