@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-3-v18-latin-regular.eot');
    src: url('../fonts/source-sans-3-v18-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v18-latin-regular.woff2') format('woff2'), url('../fonts/source-sans-3-v18-latin-regular.woff') format('woff'), url('../fonts/source-sans-3-v18-latin-regular.ttf') format('truetype'), url('../fonts/source-sans-3-v18-latin-regular.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/source-sans-3-v18-latin-500.eot');
    src: url('../fonts/source-sans-3-v18-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v18-latin-500.woff2') format('woff2'), url('../fonts/source-sans-3-v18-latin-500.woff') format('woff'), url('../fonts/source-sans-3-v18-latin-500.ttf') format('truetype'), url('../fonts/source-sans-3-v18-latin-500.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-3-v18-latin-700.eot');
    src: url('../fonts/source-sans-3-v18-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v18-latin-700.woff2') format('woff2'), url('../fonts/source-sans-3-v18-latin-700.woff') format('woff'), url('../fonts/source-sans-3-v18-latin-700.ttf') format('truetype'), url('../fonts/source-sans-3-v18-latin-700.svg#SourceSans3') format('svg');
}

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    font-family: 'Source Sans 3', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 47.5rem;
    margin: 1rem auto;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #EE7202;
}

a.link:hover {
    text-decoration: underline;
}

p {
    text-align: justify;
    margin: 0 0 1.25rem;
}

.nowrap {
    white-space: nowrap;
}

a.link_btm:hover {
    text-decoration: underline;
}

ul {
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 0 0 0 1rem;
}

ul li:before {
    content: "";
    background-color: #333;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    position: relative;
    display: block;
    float: left;
    top: 0.5625rem;
    margin: 0 0 0 -1rem;
}

h1 {
    font-size: 2.0625rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

h1+p {
    font-size: 1.375rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

h2 {
    color: #ee7202;
    font-size: 1.75rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 1rem;
}

h2::after {
    content: "";
    background: url("../images/line.png") center center no-repeat;
    background-size: contain;
    width: 27.1875rem;
    height: 1.8125rem;
    display: block;
    position: relative;
    margin: 0 0 0 50%;
    transform: translateX(-50%);
}

header {
    box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.2);
}

article {
    margin: 2.5rem 0;
}

.title {
    color: #fff;
    background-color: #EE7202;
    padding: 1rem;
    margin: 0 0 2.5rem;
}

.section_text_center>p {
    text-align: center;
}

.btn_container {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0;
}

a.btn {
    color: #fff;
    background-color: #EE7202;
    font-size: 1.1875rem;
    line-height: 0.9;
    width: 11.25rem;
    height: 2.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.3125rem;
}

a.btn:hover {
    background-color: #455459;
}

footer p {
    text-align: center;
    margin: 0;
}

.orange {
    color: #fff;
    background-color: #EE7202;
    margin: 0 0 0.0625rem;
    padding: 1.25rem 1rem;
}

.grey {
    background-color: #929292;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

a.web {
    font-size: 1.125rem;
}

.slider {
    position: relative;
}

.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}

.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}

@media only screen and (max-width: 47.4375rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    ul {
        margin: 0 0 1.25rem;
    }

    p {
        text-align: left;
    }

    h1 {
        font-size: 1.5rem;
    }

    h1+p {
        font-size: 1.125rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    article {
        margin: 1.25rem 0;
    }

    .title {
        margin: 0 0 1.25rem;
    }

    .orange {
        padding: 1rem;
    }
}

@media only screen and (max-width: 29.6875rem) {

    h2 {
        margin: 0 0 0.3125rem;
    }

    h2::after {
        width: 80%;
    }
}