:root {
    --theme-color-black: #140e07;
    --theme-color-grey: #C5C5C5;
    --theme-color-main: #97c03e;
    --theme-header-height: 148px;
    --theme-main-padding: 70px;
    --theme-side-margin: 30px;
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
@font-face {
    font-family: ZonaProRegular;
    src: url("../fonts/ZonaPro-Regular.woff2") format("woff2"), url("../fonts/ZonaPro-Regular.woff") format("woff");
    font-display: block
}
@font-face {
    font-family: ZonaProBold;
    src: url("../fonts/ZonaPro-Bold.woff2") format("woff2"), url("../fonts/ZonaPro-Bold.woff") format("woff");
    font-display: block
}
html, button, input, option, select, textarea {
    font-family: "ZonaProRegular", Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, p.lead, strong {
    font-family: "ZonaProBold", Helvetica, Arial, sans-serif;
    font-weight: normal;
}
h1 {
    font-size: 38px;
    line-height: 1.2;
    text-align: center;
    max-width: 1070px;
    margin: -15px auto 55px;
}
h1 strong {
    color: var(--theme-color-main);
}
body {
    margin: 0;
    background: #f7f7f7;
    /*font-family: "Ubuntu", sans-serif;*/
    color: var(--theme-color-black);
    position: relative;
}
#wrapper {
    margin: var(--theme-header-height) auto 0;
    padding: 70px 100px;
    background: #fff;
    border: 1px solid #00000010;
    width: 100%;
    max-width: 1360px;
    border-bottom: 150px solid var(--theme-color-main);
}
#main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: #f7f7f7;
    z-index: 20;
    height: var(--theme-header-height);
}
.logo span {
    text-indent: -9999px;
    overflow: hidden;
    color: transparent;
    position: absolute;
}
#main-footer {
    text-align: center;
    padding: 0 var(--theme-main-padding);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
}
.orange {
    color: #cf4200;
}
#main-footer > a {
    font-weight: 500;
}
a {
    text-decoration: none;
    color: unset;
    transition: opacity .2s ease-out;
}
a:hover {
    opacity: .6;
}
img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.align-center {
    text-align: center;
}
.align-center img {
    margin: 0 auto;
}
img.shadowed {
    -webkit-box-shadow: 25px 25px 0px 0px var(--theme-color-main);
    -moz-box-shadow: 25px 25px 0px 0px var(--theme-color-main);
    box-shadow: 25px 25px 0px 0px var(--theme-color-main);
}
.align-center img.shadowed {
    margin-bottom: 20px;
    max-width: calc(100% - 80px);
    position: relative;
    left: -10px;
}
.text {
    line-height: 1.6;
    font-size: 18px;
    padding: 0 45px;
}
.full {
    width: calc(100% + 200px);
    margin-left: -100px;
    max-width: none;
    min-height: 180px;
    object-fit: cover;
}
.row {
    display: flex;
}
h2 {
    font-size: 37px;
    line-height: 1.1;
    margin: 0;
}
h2.large {
    position: relative;
    color: #fff;
    background: var(--theme-color-main);
    padding: 14px 80px 14px 180px;
    margin-left: -100px;
    text-indent: 180px;
}
p {
    text-align: justify;
}
.align-right {
    text-align: right;
}
p.indent {
    text-indent: 15px;
}
p.lead {
    font-size: 25px;
    padding: 0 45px;
    line-height: 1.4;
}
.green {
    color: var(--theme-color-main);
}
.mt-main {
    margin-top: 70px;
}
.mb-main {
    margin-bottom: 70px;
}
.mb-small {
    margin-bottom: 10px;
}
.mt-main + .stand-out {
    margin-top: 40px;
}
@media (pointer: fine) {
    ::-webkit-scrollbar {
        width: 15px;
        height: 15px;
    }
    ::-webkit-scrollbar-track {
        display: none;
    }
    ::-webkit-scrollbar-thumb {
        border-radius: 10rem;
        background: #00000040;
        background-clip: padding-box !important;
        border: 4px solid rgba(0, 0, 0, 0);
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #00000060;
    }
    ::-webkit-scrollbar-thumb:active {
        background: #00000080;
    }
}
.stand-out {
    position: relative;
    padding: 20px;
    clear: both;
}
.stand-out .lead {
    max-width: 630px;
    margin: 0 auto;
    text-align: justify;
    padding: 0;
}
.stand-out.large .lead {
    max-width: 960px;
}
.stand-out.large:before, .stand-out.large:after {
    width: calc(100% - ((100% - 960px) / 2) + 100px);
}
.stand-out:before, .stand-out:after {
    content: "";
    position: absolute;
    width: calc(100% - ((100% - 630px) / 2) + 100px);
    left: -100px;
    top: -30px;
    height: 15px;
    background: var(--theme-color-main);
}
.stand-out:after {
    left: auto;
    right: -100px;
    height: 8px;
    bottom: -30px;
    top: auto;
}
.row.double {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: calc(100% + 120px);
    margin-left: -100px;
    align-items: flex-end;
}
.row.double .left {
    width: 70%;
}
.row.double .right {
    width: 30%;
    padding: 0;
    font-size: 32px;
}
.row.double p {
    text-align: left;
    margin-bottom: 0;
}
.left-out {
    margin-left: -100px;
}
p a {
    font-weight: 500;
    opacity: .7;
    text-decoration: underline;
}
p a:hover {
    font-weight: 500;
    opacity: .4;
}
.halves {
    gap: 50px;
    align-items: center;
}
.half {
    width: 50%;
}
.half .left-out, .half .right-out {
    width: calc(100% + 50px);
    max-width: none;
}
.half .right-out {
    margin-right: -100px;
    width: calc(100% + 100px);
}
.half.text {
    padding: 0;
}
figure{
    float: left;
    width: 100%;
    text-align: center;
}
figcaption{
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
}
@media screen and (max-width: 1540px) {
    #wrapper {
        border-left: none;
        border-right: none;
        overflow: hidden;
    }
    :root {
        --theme-main-padding: 4vw;
    }
    :root {
        --theme-header-height: 120px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 35px;
    }
}
@media screen and (max-width: 1440px) {
    :root {
        --theme-header-height: 100px;
    }
    .logo img {
        width: 85px;
    }
}
@media screen and (max-width: 1280px) {
    #wrapper {
        padding: 50px;
    }
    h1 {
        margin-bottom: 35px;
    }
    h2.large {
        padding-left: 150px;
    }
    .row.double .left {
        width: 67%;
    }
    .row.double .right {
        width: 33%;
        font-size: 30px;
    }
    .row.double {
        gap: 40px;
        width: calc(100% + 60px);
        margin-left: -50px;
    }
    .left-out {
        margin-left: -50px;
    }
    .left-out figcaption{
        text-indent: 35px;
    }
    .half .right-out {
        margin-right: -50px;
        width: calc(100% + 50px);
    }
    .stand-out.large .lead {
        max-width: 80%;
    }
    .stand-out.large:before, .stand-out.large:after {
        width: calc(100% - ((100% - 80%) / 2) + 84px);
    }
}
@media screen and (max-width: 1024px) {
    .text {
        font-size: 16px;
        line-height: 1.7;
    }
    p.lead {
        font-size: 21px;
    }
    .text, p.lead {
        padding: 0 25px;
    }
    h2.large {
        padding-left: 100px;
    }
    .row.double .left {
        width: 60%;
    }
    .row.double .right {
        width: 40%;
        font-size: 27px;
    }
    .mt-main {
        margin-top: 50px;
    }
    .mb-main {
        margin-bottom: 50px;
    }
    .stand-out:after {
        bottom: -15px;
    }
    .stand-out:before {
        top: -25px;
    }
    .halves {
        gap: 30px;
    }
    #wrapper {
        border-bottom-width: 100px;
    }
}
@media screen and (max-width: 950px) {
    #wrapper {
        padding: 40px 20px 10px;
    }
    :root {
        --theme-header-height: 70px;
    }
    .logo img {
        width: 80px;
    }
    .stand-out .lead {
        max-width: 80%;
    }
    .stand-out:before, .stand-out:after {
        width: calc(100% - ((100% - 80%) / 2) + 84px);
    }
    .row.halves {
        flex-direction: column;
    }
    .align-right {
        text-align: justify;
    }
    .half {
        width: 100%;
    }
    .half.text {
        padding: 0 25px;
    }
    .half .right-out {
        margin-right: auto;
        margin-left: auto;
        width: calc(100% - 45px);
    }
    .half.right {
        text-align: center;
    }
    h2.large {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        text-indent: 40px;
        max-width: calc(100% - 5px);
        margin-left: -20px;
    }
    .row.double {
        flex-direction: column;
        margin-left: 0;
        width: 100%;
        padding: 0 25px;
        box-sizing: border-box;
        gap: 0;
    }
    .row.double .right {
        font-size: 25px;
    }
    img.shadowed {
    -webkit-box-shadow: 20px 20px 0px 0px var(--theme-color-main);
    -moz-box-shadow: 20px 20px 0px 0px var(--theme-color-main);
    box-shadow: 20px 20px 0px 0px var(--theme-color-main);
}
}
@media screen and (max-width: 800px) {
    h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    h2 {
        font-size: 29px;
    }
    p.lead {
        font-size: 20px;
    }
    .row.double .left, .row.double .right {
        width: 100%;
        font-size: 24px;
    }
    #wrapper {
        border-bottom-width: 40px;
    }
    .mt-main {
        margin-top: 30px;
    }
    .mb-main {
        margin-bottom: 30px;
    }
    .stand-out {
        margin: 50px auto !important;
    }
    .halves {
        gap: 20px;
    }
    .half.right{
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 620px) {
    h1 {
        font-size: 24px;
    }
    h1 strong br{
        display: none;
    }
    h2 {
        font-size: 23px;
    }
    p.lead, .text, .half.text, .row.double {
        padding: 0;
    }
        h2.large {
        max-width: calc(100% + 40px);
            text-indent: 0;
            padding: 12px 20px;
    }
        .half .right-out {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
    }
    .align-center img.shadowed {
        max-width: 100%;
        left: 0;
    }
    .mt-main {
        margin-top: 20px;
    }
    .mb-main {
        margin-bottom: 20px;
    }
    p.lead {
        font-size: 19px;
    }
    .stand-out .lead {
        max-width: 100% !important;
    }
    .stand-out:before {
        top: -15px;
    }
    .stand-out:after {
        bottom: -5px;
    }
    .stand-out:before, .stand-out:after {
        width: 100% !important;
        left: -20px !important;
    }
    .stand-out:after {
        right: -20px !important;
        left: auto !important;
    }
    .row.double .right {
        font-size: 20px;
    }
    p, .lead{
        text-align: left !important;
    }
}