@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #444;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: rgba(243, 243, 241, 1.0);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

p {
    padding-bottom: 1.875rem;
}

h1 {
    font-size: 1.625rem;
    line-height: 1.3;
    padding: 0 0 1.875rem;
}

h2 {
    font-size: 1.25rem;
    padding-bottom: .625rem;
}

.info+h2 {
    padding: 0 0 1.875rem;
}

ul {
    list-style: none;
    padding-bottom: 1.875rem;
}

ul li {
    padding: 0 0 0 2.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.5rem;
    font-size: 1.5rem;
    line-height: 1;
    color: #0ea4df;
}

.img {
    padding: 0 1rem;
}

.info {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    padding-bottom: 1.875rem;
}

.info div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info div p {
    padding: 0;
}

.info div i {
    color: #0ea4df;
    font-size: 1.2rem;
}

.about {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.875rem;
}

.about div {
    border-top: 2px solid #bfbfbf;
    flex: 0 0 28%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    padding-top: .25rem;
}

.about div span {
    font-size: 1.75rem;
}

.benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.benefits div {
    border-top: 1px solid #bfbfbf;
    padding-top: .25rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    flex: 0 0 28%;
    min-height: 70px;
}

.benefits div p {
    padding: .625rem 0;
}

.lineheight {
    line-height: 2;
}

.button {
    display: flex;
    justify-content: end;
}

.button a {
    padding: 10px 20px;
    background-color: #3278be;
    color: #fff;
    border-radius: 6px;
    line-height: 1.3;
}

header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: end;
}

article {
    padding: 2rem;
}

footer {
    background-color: rgba(235, 240, 244, 1.0);
    padding: 1rem 2rem;
    display: flex;
    justify-content: end;
    gap: 1rem;
}

footer a i {
    color: rgb(95, 105, 114);
    font-size: 2.5rem;
}

@media only screen and (max-width: 59.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .about div,
    .benefits div {
        flex: 0 0 31%;
    }
}

@media only screen and (max-width: 44rem) {
    header {
        padding: 1rem;
        justify-content: center;
    }

    article {
        padding: 1.5rem 1rem;
    }

    .button,
    footer {
        justify-content: center;
    }

    .about {
        flex-direction: column;
        align-items: center;
    }

    .about div {
        width: 100%;
    }

    .benefits div {
        flex: 0 0 48%;
    }
}

@media only screen and (max-width:30rem) {
    .benefits div {
        flex: 0 0 100%;
    }

    ul,
    p {
        padding-bottom: 1.25rem;
    }

    ul li {
        padding: 0 0 0 1.5rem;
    }

}