* {
    -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: #111;
    font-weight: 400;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

body {
    background: #f9f9f9;
}

:root {

    --link: #b90000;
    
    --orange: #ff502d;
    --orange1: #fa8d01;
    --green: #56642a;
    --green2: #62722d;
    --green3: #7a8d3b;
    --gray10: #eee;
    --gray: #aaa;
    
    --fontsize:15px;
    --lineheight:30px;
    
}

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: 7px;
    border: 1px dashed #eee;
}

.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: 10px 0 60px;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
 


/*************************/
/******** 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;}


