body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    font-family: sans-serif;
}

*,
 ::after,
 ::before {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.row_container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.custom_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.portion {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.portion-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.portion-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.mt-80 {
    margin-top: 80px;
}

.btn-theme-static {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 40px;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    color: white !important;
    background-color: #AF1E27 !important;
    border-color: #AF1E27 !important;
}

.btn-theme-static:hover {
    background-color: #FFF8E7 !important;
    color: #AF1E27 !important;
    border-color: #FFF8E7 !important;
}

.portion {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.main-logo {
    max-height: 200px;
    margin-bottom: 100px;
}

button:focus,
.btn:focus {
    outline: 0;
}

@media only screen and (max-width: 800px) {
    .mt-80 {
        margin-top: 40px;
    }
    .portion {
        margin-bottom: 50px;
    }
    .main-logo {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    .custom_container {
        max-width: 1140px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
    .portion {
        padding-right: 30px;
        padding-left: 30px;
    }
}