* {
    box-sizing: border-box;
}

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

header {
    padding: 20px 0;
}

header  img {
    display: block;
    max-width: 100%;
}

.content {
    margin: auto;
    max-width: 1150px;
    width: calc(100% - 50px);
    font-size: 0;
    font-family: Arial, sans-serif;
}

footer {
    background-color: black;
    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%;
    font-size: 11pt;
    font-family: Arial, sans-serif;
}

.hide {
    display: none !important;
}

.clear {
    clear: both;
}

input, select, textarea {
    outline: none !important;
}
.main_wrapper {
    padding: 40px 0;
    background-color: white;
}
.img_wrapper {
    background-image: url(/v2/view/img/wrapper-3.png);
    background-position-x: right;
    padding: 40px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000017;
    background-position-y: center;
}
.img_wrapper img {
    display: block;
    margin: auto;
    max-width: 100%;
}
@media (min-width: 769px) and (max-width: 840px) {
    .content {
        width: calc(100% - 20px);
    }
}
@media (max-width: 768px) {
    .img_wrapper, .main_wrapper {
        padding: 20px 0;
    }
    .content {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

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

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

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