@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1em/1.3em Calibri, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 955px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem;
    text-align: left;
hyphens: auto;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0 0 2rem -3rem;
    padding: 2rem 3rem;
    width: fit-content;
    font-size: 2.7em;
    line-height: 1.1;
    background: #46605D;
    font-weight: 400;
    color: #fff;
}

h1 small {
    font-size: 0.95em;
    font-weight: 700;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #46605D;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

li {
    padding-left: 0.7rem;
}

li:before {
    content: "•";
    font-size: 0.8em;
    float: left;
    margin: 0 0 0 -0.7rem;
    color: #46605D;
}

.orange {
    background: #D37036;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    color: #fff;

}

article {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.left,
.right {
    width: 48%;
}

figure {
    display: flex;
    justify-content: end;
}

footer {
    margin: -170px 0 0 0;
}

footer p {
    text-align: right;
}

@media only screen and (max-width:954px) {
    #wrapper {
        border: none;
        margin: 0 auto;
         text-align: left;
    }
    p span{
        display: inline-block;
    }

    footer {
        margin: 1rem 0 0;
    }

    figure {
        display: flex;
        justify-content: center;
    }

    footer p {
        text-align: center;
    }

    p,
    ul {
        hyphens: auto;

    }
}
@media only screen and (max-width:780px){
    .left,.right{
        width: 100%;
    }
    h1{
        font-size: 2em;
    }
    .last{
        padding-bottom: 0;
    }
    .hide_m{
        display: none;
    }
      #wrapper{
        padding: 1rem;
      }
      h1{
        margin: 0 -1rem 1rem;
        padding: 1rem;
      }
}