* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Sofia Sans", Arial, sans-serif;
    color: #36586A;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    position: relative;
}

#wrapper .left {
    width: 47.5%;
}

#wrapper .right {
    width: 50%;
    border-left: 1px solid #62B77C;
    padding: 30px 0 30px 20px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper article {
    padding: 30px 56px;
}

#wrapper footer {
    padding: 30px 46px 30px 56px;
    background: #36586A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#wrapper footer p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 800;
}

#wrapper h1 {
    margin-bottom: 29px;
    font-size: 28px;
    font-weight: 800;
}

#wrapper .position {
    background: #62B77C;
    padding: 0 50px 20px;
    position: absolute;
    width: 50%;
    top: -64px;
    right: 0;
}

#wrapper .position:before {
    content: "";
    width: calc(100% + 100px);
    height: 200px;
    background: #62B77C;
    position: absolute;
    top: -166px;
    left: -50px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

#wrapper .mb {
    margin-bottom: 3px;
}

#wrapper .position ul {
    margin-bottom: 12px;
}

#wrapper .big {
    font-size: 22px;
    margin-bottom: 0;
}

#wrapper h1 .block {
    display: block;
    font-size: 20px;
    font-weight: 500;
}

#wrapper h2 {
    margin: -20px 0 9px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    text-align-last: center;
}

#wrapper h2 span {
    color: #fff;
    display: block;
}

#wrapper h3 {
    margin-bottom: 7px;
    font-size: 23px;
    font-weight: 800;
    color: #62B77C;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #36586A;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 12px;
    position: relative;
    margin-bottom: 3px;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 12px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 5px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper footer a {
    color: #fff !important;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .position {
        padding: 16px;
    }

    #wrapper article {
        padding: 30px 5% 16px;
    }

    #wrapper footer {
        padding: 15px 5%;
    }
}

@media (max-width: 699px) {
    #wrapper footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    #wrapper footer p {
        text-align: center;
    }
}

@media (max-width: 699px) {
    #wrapper .left {
        width: 100%;
    }

    #wrapper .right {
        width: 100%;
        padding: 0;
        border: none;
    }

    #wrapper .position:before {
        top: -148px;
        width: calc(100% + 40px);
        left: -20px;
        height: 150px;
    }

    #wrapper article {
        margin-top: 15%;
    }

    #wrapper .position {
        width: 100%;
        position: static;
        margin-bottom: 19px;
    }
}