@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');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    background: #fff url(../images/bg.jpg) no-repeat top center;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    overflow: hidden;
}

:is(a:link, a:visited, a:active) {
    color: #ee7202;
    text-decoration: none;
    white-space: nowrap;
}


a:hover {
    text-decoration: underline;
    color: #005580;
}

p {
    margin: 0 0 10px;
}

a.tel {
    color: inherit;
}


h1 {
    font-size: 15px;
    margin: 0
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 18px;
    line-height: 1.3;
    padding: 10px 0 30px 0;
    color: #ee7202;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    padding-left: 25px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -18px;
    font-size: 25px;
    line-height: 0.8;
}

header {
    box-shadow: 0px 0px 20px -12px rgba(0, 0, 0, 1);
    margin: 0 20px 20px;
}

.box {
    background: #ffffff;
    box-shadow: 0px 0px 20px -12px rgba(0, 0, 0, 1);
    margin: 0 20px 20px;
    padding: 32px;
}

.slider {
    position: relative;
}

.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 12s linear infinite 0s;
}

.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 52.4%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    box-shadow: 0px 0px 20px -12px rgba(0, 0, 0, 1);
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    margin: 0 20px;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem;
    }

    span {
        white-space: nowrap
    }

    header {
        text-align: center
    }

    header,
    .box {
        margin: 0 0 .5rem;
    }

    footer {
        margin: 0;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    body {
        background: #fff;
    }
}

@media only screen and (max-width: 480px) {
    .box {
        padding: 1rem
    }

    ul li {
        padding-left: 1rem
    }

    h2 {
        padding: 0 0 8px 0;
    }
}