@charset "utf-8";

:root {
    font-size: 16px;
}

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

body {
    color: #747474;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

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

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    border: 1px solid #747474;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #0000ff;
    text-decoration: underline;
}

h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

h2 {
    font-size: 1rem;
    color: #ffac0a;
}

h3 {
    font-size: 1.3rem;
    color: #ffac0a;
    font-weight: 400;
    margin-bottom: 2rem;
}

h4 {
    font-size: 1rem;
    color: #555454;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}
.justify{
	text-align: justify;
}
ul {
    list-style: none;
    margin-bottom: 1rem;
}

ul li {
    padding: 0 0 0 1.25rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    margin-left: -1.25rem;
    color: #ffac0a;
    font-size: .8rem;
}

article {
    padding: 2rem 4rem;
}

.row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.row .left {
    width: 22%;
}

.row .right {
    width: 75%;
}

.img {
    display: flex;
    justify-content: right;
    margin: 4rem 0 1rem
}

footer {
    background-color: #114b77;
    padding: 0.5rem 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: #fff;
    align-items: end;
}

footer p {
    margin: 0;
}

footer .socials {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem;
}

.socials .border {
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem
}

.socials .border a {
    line-height: 0;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    .row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .row .left,
    .row .right {
        width: 100%;
    }

    .row .left {
        text-align: left;
    }

    article {
        padding: 2rem;
    }.justify{
	text-align: left;
}
}

@media only screen and (max-width: 40rem) {

    article {
        padding: 1rem;
    }

    .img {
        justify-content: center;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

}