@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em "Segoe UI", Calibri, sans-serif;
    color: #fff;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 770px;
    border: solid 1px #000;
    background: #1B5F7E;
}

.content {
    background: -webkit-linear-gradient(top, #1B5F7E 30%, #8599B1);
    background: -moz-linear-gradient(top, #1B5F7E 30%, #8599B1);
    background: -o-linear-gradient(top, #1B5F7E 30%, #8599B1);
    background: -ms-linear-gradient(top, #1B5F7E 30%, #8599B1);
    background: linear-gradient(to bottom, #1B5F7E 30%, #8599B1);
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0 0 4rem;
    font-size: 1.892em;
    line-height: 1.1em;
}

h1,
h2,
.center {
    text-align: center;
}

.center {
    font-size: 1.188em;
    line-height: 1.3;
}

h2 {
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.3;
    margin: -15px 0 0;
}

h3 {
    font-size: 1.063em;
    line-height: 1.3;
}

h4 {
    font-size: 1.188em;
    line-height: 1.3;
    padding-bottom: 1rem;
}

hr {

    border: none;
    background: #fff;
    height: 2px;
    width: 34%;
}

.small {
    font-size: 0.875em;
    line-height: 1.3;
}

.left {
    width: 42%;
}

.sencond-left {
    width: 45%;
}

.right {
    width: 37%;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

a.red,
h4 em,
.benefits span {
    color: #E51C22;
}

ul {
    padding: 1rem 0 3rem;
    list-style: none;
}

li {
    padding: 0 0 0 13px;
}

ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -13px;
}

header {
    padding: 1rem 0 2.5rem;
}

article {
    padding: 0.5rem 1.5rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    margin: 0 -1.5rem;
}

.benefits {
    border: 2px dashed #EE1D23;
    border-right: none;
    border-radius: 10px;
    padding: 1rem 1.5rem 1rem;
}

.benefits p {
    display: flex;
    align-self: end;
}

.benefits p span:last-of-type {
    padding: 0.5rem 0 0 1rem;
    width: 140px;
}

.position {
    position: absolute;
    bottom: 52px;
    right: -6px;
    width: 250px;
    z-index: 1;
}

footer img {
    display: block;
}

section {
    padding: 1rem 1.5rem 0 0;

}

.contact {
    color: #175C7B;
    text-align: right;
    font-size: 0.93em;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:769px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #1B5F7E;
    }

    .position {
        position: static;
        width: 100%;
    }

    .position h4,
    .position p {
        text-align: center;
    }

    .contact {
        text-align: center;
    }

    .benefits br,.hide_m {
        display: none;
    }

    .benefits {
        border: 2px dashed #EE1D23;
    }
    .benefits p span:last-of-type {
        width: unset;
    }
    p :is(span, a) {
        display: inline-block;
    }
    section {
        padding-right: 0;
    }
}
@media only screen and (max-width:769px) {
    article {
        padding: 0.5rem 1rem;
    }
}