@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.eot');
    src: url('../fonts/roboto-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v32-latin-regular.woff') format('woff'), url('../fonts/roboto-v32-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v32-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.eot');
    src: url('../fonts/roboto-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v32-latin-700.woff2') format('woff2'), url('../fonts/roboto-v32-latin-700.woff') format('woff'), url('../fonts/roboto-v32-latin-700.ttf') format('truetype'), url('../fonts/roboto-v32-latin-700.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-slab-v34-latin-regular.eot');
    src: url('../fonts/roboto-slab-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-slab-v34-latin-regular.woff2') format('woff2'), url('../fonts/roboto-slab-v34-latin-regular.woff') format('woff'), url('../fonts/roboto-slab-v34-latin-regular.ttf') format('truetype'), url('../fonts/roboto-slab-v34-latin-regular.svg#RobotoSlab') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 16px/1.5 "Roboto", Arial, Helvetica, sans-serif;
    font-weight: 400;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.3) 300px, rgba(245, 245, 245, 1) 570px), url(../images/bg.jpg) top center/ 100% no-repeat;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 49.375rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff url('../images/bottom.jpg') 0 110% no-repeat;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-weight: bold
}

a.tel {
    font-weight: normal
}

a:hover {
    text-decoration: underline;
}

article p {
    padding-bottom: 1.25em;
}

h1 {
    font-size: 2.2em;
    line-height: 1.25;
    font-family: "Roboto Slab", Arial, sans-serif;
    color: #007cb0;
    padding-top: .75em;
}

h2 {
    font-family: "Roboto Slab", Arial, sans-serif;
    color: #007cb0;
    font-size: 1.4em;
    padding: 1em 0 0.25em;
}

h3 {
    font-size: 1em;
    font-family: "Roboto Slab", Arial, sans-serif;
    color: #007cb0;
    padding: 0.25em 0 1.65em;
}

h3 span {
    font-weight: 400;
}

ul {
    list-style: none;
    padding: 0 0 1.25em 1.25em;
}

ul li {
    padding: 0 0 0.125em;
}

ul li:before {
    content: "\2022";
    position: absolute;
    font-size: 1.75em;
    line-height: .82;
    color: #007cb0;
    margin: 0 0 0 -0.6em;
}

.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;
    }
}

article {
    padding: 2.5rem 3.75rem 0;
}

footer {
    padding: 0 3.75rem 7rem;
    display: flex;
    justify-content: center;
}

a.button {
    line-height: 1;
    font-weight: 700;
    padding: 1em 2.5em;
    margin: 1.5em auto;
    color: #ffffff;
    background: #007cb0;
    border: 1px solid #007cb0;
    text-transform: uppercase;
}

a.button:hover {
    border-color: #b6be11;
    background: #b6be11;
    color: #ffffff;
    text-decoration: none;
}

@media only screen and (max-width: 49.313rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    body {
        background: #EDEDEB;
    }
}

@media only screen and (max-width: 46rem) {
    article {
        padding: 1rem 2rem 0;
    }

    footer {
        padding: 0 2rem 5rem;
    }
}

@media only screen and (max-width: 35rem) {

    article p {
        padding-bottom: 1rem;
    }

    ul {
        padding: 0 0 1rem 1rem;
    }

    h1 {
        font-size: 1.55rem;
        padding-top: 0;
    }

    h2 {
        font-size: 1rem;
        padding: 0 0 0.25em;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}