@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/mulish-v13-latin-regular.eot');
    src: url('../fonts/mulish-v13-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/mulish-v13-latin-regular.woff2') format('woff2'), url('../fonts/mulish-v13-latin-regular.woff') format('woff'), url('../fonts/mulish-v13-latin-regular.ttf') format('truetype'), url('../fonts/mulish-v13-latin-regular.svg#Mulish') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/mulish-v13-latin-700.eot');
    src: url('../fonts/mulish-v13-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/mulish-v13-latin-700.woff2') format('woff2'), url('../fonts/mulish-v13-latin-700.woff') format('woff'), url('../fonts/mulish-v13-latin-700.ttf') format('truetype'), url('../fonts/mulish-v13-latin-700.svg#Mulish') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-slab-v34-latin-700.eot');
    src: url('../fonts/roboto-slab-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-slab-v34-latin-700.woff2') format('woff2'), url('../fonts/roboto-slab-v34-latin-700.woff') format('woff'), url('../fonts/roboto-slab-v34-latin-700.ttf') format('truetype'), url('../fonts/roboto-slab-v34-latin-700.svg#RobotoSlab') 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;
}

:root {
    font-size: 16px;
}

body {
    color: #000;
    font-family: "Mulish", "Arial", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.4;
    background: url(../images/bg.jpg) no-repeat;
    background-size: 100%;
    background-color: #9ED6F4;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    box-shadow: 0 0 0.625rem rgb(75 75 75 / 50%);
    background: rgb(255, 255, 255, 0.9);
}

:is(a:link, a:visited, a:active) {
    color: #CF212F;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {

    text-decoration: underline;
}

a.tel {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-family: "Roboto Slab", "Arial", sans-serif;
    font-size: clamp(1.4rem, 0.6941rem + 3.0118vw, 2.2rem);
    color: #192756;
    line-height: 1.3;
    margin: 1.5rem 0 1rem
}

h1 span {
    font-weight: 400;
    font-size: 1.75rem;
}

h2 {
    font-size: 1.25rem;
    color: #192756;
}

h3 {
    color: #004384;
    font-size: 1.5em;
    margin-bottom: 0.7rem;
}

ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: none;
}

ul li:before {
    content: "\23F5";
    color: #CF212F;
    float: left;
    margin-left: -20px;
    font-weight: 900;
}

header {
    padding: 2rem;
}

article {
    padding: 2rem 2.5rem 0;
}

article section {
    padding: 1rem 1.5rem;
    background-color: #FFFFFF;
    margin-bottom: 1.5rem;
    box-shadow: 3px 3px 4px #A6A6A6;
    border: 1px solid transparent;
}

article section:hover {
    border: 1px solid #CF212F;
}

footer {
    padding: 0 2.5rem 1rem;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    22% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    47% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    72% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    97% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 24s slidy infinite;
}

figure img {
    width: 20%;
    float: left;
}

@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: 30rem) {

    header {
        display: flex;
        justify-content: center;
        padding: 1rem;
    }

    h1 {

        margin: 1rem 0;
    }

    article {
        padding: 1rem 1rem 0;
    }

    ul {
        margin: 0.5rem 0 0.5rem 1rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}