:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/raleway-v34-latin-500.eot');
    src: url('../fonts/raleway-v34-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/raleway-v34-latin-500.woff2') format('woff2'), url('../fonts/raleway-v34-latin-500.woff') format('woff'), url('../fonts/raleway-v34-latin-500.ttf') format('truetype'), url('../fonts/raleway-v34-latin-500.svg#Raleway') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/raleway-v34-latin-700.eot');
    src: url('../fonts/raleway-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/raleway-v34-latin-700.woff2') format('woff2'), url('../fonts/raleway-v34-latin-700.woff') format('woff'), url('../fonts/raleway-v34-latin-700.ttf') format('truetype'), url('../fonts/raleway-v34-latin-700.svg#Raleway') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 15px;
    line-height: 19px;
    color: #32393E;
    font-weight: 500;
}

#wrapper {
    max-width: 910px;
    margin: 16px auto;
    box-sizing: border-box;
    background-color: #fff;
    border: solid thin #231f20;
    position: relative;
    padding: 60px 50px;
    overflow: hidden;
}

header {
    margin: 0 0 25px;
}

section {
    margin: 0 0 45px;
    overflow: hidden;
    display: flex;
    gap: 15px;
}

section:nth-of-type(1) {
    align-items: center;
}

section div {
    width: 640px;
}

section:nth-of-type(1) p {
    font-size: 17px;
    line-height: 21px;
}

.benefit {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer {
    margin: 55px 0 0;
    display: flex;
    justify-content: center;
}

footer figure {
    width: 165px;
    margin: 0 55px;
}

footer .contact {
    border-left: #0085A1 3px solid;
    padding: 0 0 10px 55px;
}

footer .contact h2 {
    margin-top: 0;
}

footer figure img {
    margin: 0 0 40px;
}

p:not(:last-child) {
    margin-bottom: 16px;
}

p.padding {
    padding-top: 7px;
}

span {
    white-space: nowrap;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    font-size: 19px;
    margin: 16px 0;
    line-height: 22px;
}

h2 {
    font-size: 17px;
    margin: 16px 0;
    line-height: 21px;
}

ul {
    margin: 0 50px 0 0;
    list-style: none;
}

ul li {
    padding-left: 50px;
    margin-bottom: 6px;
}

li:before {
    text-indent: -50px;
    content: "\2022";
    float: left;
    font-size: 17px;
    margin-top: -1px;
}

:is(a:link, a:visited, a:active) {
    color: #32393E;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

@media screen and (max-width:908px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 5% 4%;
    }

    header img {
        width: 100%;
    }

    footer .contact {
        padding-left: 50px;
    }

    ul {
        margin: 0;
    }

    :is(p, li) {
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media screen and (max-width:767px) {
    #wrapper {
        padding: 16px;
    }

    section div {
        width: calc(100% - 130px);
    }

    .benefit {
        justify-content: space-around;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer figure {
        width: auto;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 26px;
    }

    footer .contact {
        border-left: none;
        border-top: #0085A1 3px solid;
        padding: 16px 0;
    }

    .contact :is(h2, p) {
        text-align: center !important;
    }

    .mobile {
        display: none;
    }
}

@media screen and (max-width:630px) {
    section {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0;
        margin: 0 0 32px;
    }

    section div {
        width: auto;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }
}