* {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0 solid;
    font-size: 13px;
    color: #222;
    font-weight: 400;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

body {
    background: #faf9f7;
}

:root {
    --mblue: #3535cf;
    --mbluedark: #1a1a94;
    --link: #b90000;

    --orange: #ff502d;
    --orange1: #fa8d01;
    --green: #56642a;
    --green2: #62722d;
    --green3: #7a8d3b;
    --gray10: #eee;
    --gray: #aaa;

    --fontsize: 15px;
    --lineheight: 30px;

    --black: #222;
}

p {
    line-height: 28px;
    /* color: #222; */
    text-align: justify;
}

input[type="submit"],
button {
    appearance: none;
    -webkit-appearance: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;

}

.image img {
    border-radius: 0;
    border: 1px dashed #eee;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.date {
    margin-bottom: 6px;
}

.date svg {
    width: 10px;
    fill: #aaa;
    height: 10px;
    margin-left: 5px;
}

.date span {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    color: #777;
    }

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.button {
    display: inline-block;
    padding: 5px 10px 8px;
    background: #fa8e00;
    color: #111;
    border-radius: 5px;
}

strong {
    font-weight: 900;
}

.visually-hidden {
    display: none;
}

#main-wrapper {
    padding: 0px 0 60px;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: auto;
    display: flex;
    justify-content: center;
}


/*************************/
/******** Block **********/
/*************************/
.block {
    max-width: 100%;
    width: 100%;
}

.block .content {
    display: block;
    width: 100%;
    margin: auto;
}


.block.yellow-bg {
    background: #ffeb3b29
}

.block.green1-bg {
    background: #ab9d6e36;
}