* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Raleway, sans-serif;
    background-color: #f4f4f4;
}

.header_wrapper {
    overflow: hidden;
    background-color: black;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.header {
    overflow: hidden;
    background-color: black;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    height: 80%;
}

.header a {
    float: left;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}

.header a.logo {
    font-size: 40px;
    font-weight: bold;
    width: 250px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.margin_href {
    margin-left: 30px;
    margin-right: 30px;
}

.content {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.top_wrapper {
    padding: 8px 8px 8px 8px;
    background: #f4f4f4;
    margin-top: 100px;
    text-align: center;
    color: #929292;
}

.top_wrapper :first-child {
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}

.top_wrapper :nth-child(2) {
    line-height: 25px;
}

.card_wrapper {
    margin-top: 1%;
    display: flex;
}

.card {
    width: 50%;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text_wrapper_left {
    width: 85%;
    text-align: center;
    background-color: white;
    padding: 10px;
    z-index: 1;
    margin-top: -5%;
}

.text_wrapper_right {
    width: 85%;
    text-align: center;
    background-color: white;
    padding: 10px;
    z-index: 1;
    margin-top: -5%;
}

.text_wrapper_left :first-child {
    font-size: 20px;
    text-align: left;
}

.text_wrapper_left :nth-child(2) {
    color: #929292;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    font-weight: bold;
}

.text_wrapper_right :first-child {
    font-size: 20px;
    text-align: left;
}

.text_wrapper_right :nth-child(2) {
    color: #929292;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    font-weight: bold;
}

.image_wrapper_right {
    width: 100%;
}

.image_wrapper_left {
    margin-top: -5%;
    width: 100%;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bottom_wrapper {
    display: none;
}

@media screen and (max-width: 1160px) {
    .header {
        width: 100%;
    }
    .text_wrapper_right {
        margin-top: -12%;
    }
}

@media screen and (max-width: 1024px) {
    .header {
        width: 100%;
    }
    .text_wrapper_right {
        margin-top: -5%;
    }
}

@media screen and (max-width: 768px) {
    .header {
        width: 100%;
    }
    .text_wrapper_right {
        margin-top: -12%;
    }
}

@media screen and (max-width: 500px) {
    .header_wrapper {
        overflow: hidden;
        background-color: black;
        height: 110px;
        display: flex;
        align-items: center;
        top: 0px;
    }
    .header {
        overflow: hidden;
        background-color: black;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 90%;
    }
    .header a {
        float: left;
        color: white;
        text-align: center;
        text-decoration: none;
        font-size: 14px;
    }
    .header a.logo {
        font-size: 40px;
        font-weight: bold;
        width: 220px;
    }
    .margin_href {
        margin-left: 0px;
        margin-right: 0px;
    }
    .header-right :first-child {
        display: none;
    }
    .bottom_wrapper {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50px;
        padding: 15px;
        background-color: black;
        text-align: center;
        color: white;
        z-index: 999;
    }
    .content {
        width: 100%;
    }
    .card_wrapper {
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .card {
        width: 94%;
        padding: 10px;
        position: relative;
    }
    .text_wrapper_left {
        width: 90%;
        padding: 10px;
        margin-top: -10%;
    }
    .text_wrapper_right {
        width: 90%;
        padding: 10px;
        margin-top: -10%;
    }
    .image_wrapper_left {
        margin-top: -10%;
        width: 100%;
    }
    .bottom_wrapper a {
        color: white;
        text-decoration: none;
    }
    .blank {
        height: 40px !important;
    }
}