@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px) fixed, url('../images/bg.jpg') no-repeat top center fixed;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    max-width: 740px;
    background: #fff;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1em;
    line-height: 1.1em;
}

h2 {
    color: #68a2b9;
    font-size: 1.25em;
    line-height: 1.3;
    padding-bottom: 0.6rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #68A2B9;
    text-decoration: none;
}

a[href^="tel:"] {
    white-space: nowrap;
    color: #000;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0.5rem 20px;
}

ul li:before {
    content: "\2022";
    font-size: 0.7em;
    float: left;
    margin: 0 0 0 -16px;
    color: #68a2b9;
}

.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;
    }
}

.content {
    padding: 25px 80px;
}

.logo {
    padding: 25px 80px;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }

    p :is(span, a) {
        display: inline-block;
    }

    .logo,
    .content {
        padding: 1rem;
    }

    h1 br {
        display: none;
    }
}