@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v40-latin-700.eot');
    src: url('../fonts/open-sans-v40-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-700.woff') format('woff'), url('../fonts/open-sans-v40-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: 0.0625rem solid #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.25rem;
}

.nowrap {
    white-space: nowrap;
}

a.link {
    color: #0000FF;
    text-decoration: underline;
}

ul {
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 0 0 0 3.75rem;
}

ul li:before {
    content: "";
    background-color: #000000;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    position: relative;
    display: block;
    float: left;
    top: 0.5625rem;
    margin: 0 0 0 -1.875rem;
}

h1 {
    font-size: 1.375rem;
    font-weight: 400;
    margin: 2.5rem 0 0;
    background: linear-gradient(to right, #ED1F28, #ff7300, #CAB842, #46A667, #0275B9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h2 {
    font-size: 1rem;
    margin: 0 0 0.625rem;
}

h3 {
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0 0 2.5rem;
    background: linear-gradient(to right, #ED1F28, #ff7300, #CAB842, #46A667, #0275B9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

header {
    display: flex;
    justify-content: flex-end;
    padding: 2.5rem 5rem 1.25rem;
}

.image {
    padding: 1.25rem 5rem 2.5rem;
}

article {
    padding: 0 5rem 3.125rem;
}

footer {
    padding: 0 5rem 3rem;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    width: calc(100% - 13.25rem);
}

.right {
    width: 12rem;
}

.button {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}

.button a {
    padding: 10px 16px;
    background-color: #e32c29;
    border: 2px solid #e32c29;
    font-weight: 700;
    color: #fff;
    border-radius: 6px;
    display: inline-block;
    transition: .3s;
}

.button a:hover {
    background-color: #fff;
    color: #000;
}

@media only screen and (max-width: 56.1875rem) {
    #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) {

    p,
    ul {
        margin-bottom: 1rem;
    }

    ul li {
        padding: 0 0 0 0.9375rem;
    }

    ul li:before {
        margin: 0 0 0 -0.9375rem;
    }

    h1 {
        margin: 0;
    }

    h2 {
        margin: 0 0 0.3125rem;
    }

    h3 {
        margin: 0 0 1.25rem;
    }

    header {
        padding: 1rem;
        justify-content: center;
    }

    .image {
        padding: 0 1rem .5rem;
    }

    article {
        padding: 0 1rem 1.25rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}

@media only screen and (max-width: 39.375rem) {
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.25rem;
    }

    .left {
        width: 100%;
    }

    .button {
        padding-top: 1rem;
    }
}