@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #231F20;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.site {
    color: #01558C;
}

p {
    margin: 0 0 1rem;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: #004699;
    background: #fff;
    padding: .625rem 1rem .625rem 1rem;
    position: absolute;
    bottom: 9rem;
    left: 2rem;
}


h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: #004699;
    background: #fff;
      padding: .625rem 1rem .625rem 1rem;
    margin: 0 0 1rem;    
    position: absolute;
    bottom: 3.5rem;
    left: 2rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    color: #004699;
}

ul {
    margin: 0 0 1.5rem 1.25rem;
    list-style-type: square;
}

ul li::marker {
    font-size: 1.25rem;
}

.benefits {
  margin: 0;
  padding: 0;
}

.benefits li {
  display: inline-block;
}

.benefits li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 8px 2px 5px;
  background-color: #0052a4;
}


.box_top {
    position: relative;
}


.info {
    background-color: #004699;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem 2rem;
}
.info :is(p,i) {
    color: #fff;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.info i {
    margin-right: 00.5rem;
}

article {
    padding: 1rem 2rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
    align-items: flex-start;
}
.flex aside {
    background-color: #dddff2;
    padding: 1rem;
    width:L 40%;
    border-radius: 1rem;
    margin-top: 3.25rem;
}

footer {
    padding: 1rem 2rem;
}


@media only screen and (max-width: 49rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1,
    h2 {
        position: static;
    }
    h1 {
        padding: .625rem 1rem 0 1rem;
    }
    .info {
        flex-wrap: wrap;
    }

    .info p {
        white-space: nowrap;
    }
}


@media only screen and (max-width: 40rem) {

    article {
        padding: 1rem;
    }

    .flex {
        flex-direction: column;
        gap: 0;
    }

    .flex aside {
        width: 100%;
    }
  
}