@charset "utf-8";
@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/titillium-web-v15-latin-regular.eot');
    src: local(''),
        url('../fonts/titillium-web-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/titillium-web-v15-latin-regular.woff2') format('woff2'),
        url('../fonts/titillium-web-v15-latin-regular.woff') format('woff'),
        url('../fonts/titillium-web-v15-latin-regular.ttf') format('truetype'),
        url('../fonts/titillium-web-v15-latin-regular.svg#TitilliumWeb') format('svg');
}
@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/titillium-web-v15-latin-700.eot');
    src: local(''),
        url('../fonts/titillium-web-v15-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/titillium-web-v15-latin-700.woff2') format('woff2'),
        url('../fonts/titillium-web-v15-latin-700.woff') format('woff'),
        url('../fonts/titillium-web-v15-latin-700.ttf') format('truetype'),
        url('../fonts/titillium-web-v15-latin-700.svg#TitilliumWeb') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #232323;
    font: 400 1em/1.5em 'Titillium Web', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1080px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    padding: 2rem 6rem 0;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.3), 0 0 0px rgba(0, 0, 0, 0.1);
}
:is(h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #007FA7;
    text-decoration: underline;
}
a.btn {
    background: #007FA7;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 2rem;
}
a.btn img {
    width: 26px;
    margin-left: 0.5rem;
}
a.btn:hover {
    background: #85CFE8;
}
.black {
    color: #232323;
    margin-left: 0.7rem;
    font-weight: 900;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    color: #007FA7;
}
h1 {
    margin: 0 0 2rem;
    font-size: 4em;
    line-height: 1.1;
    font-weight: 400;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-weight: 400;
    font-size: 3em;
    line-height: 1;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
h5 {
    font-size: 3em;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 0.7rem;
    position: relative;
}
li:before {
    content: "\2010";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.big {
    font-size: 1.188em;
    line-height: 1.3;
}
.flex {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.left {
    width: 490px;
}
.right {
    width: 330px;
}
.info p {
    border-bottom: solid 1px #BFBFBF;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
}
.info p>strong {
    width: 140px;
    color: #007FA7;
}
.info p>span {
    flex: 1;
}
.noborder {
    border: none;
}
.contact {
    margin: 2rem 0;
    padding: 1.5rem 1rem;
    background: #007FA7;
    color: #fff;
}
.flexbox {
    display: flex;
    gap: 1.5rem;
}
.flexbox div {
    flex: 1;
}
.flexbox div>p:first-of-type{
    padding-bottom: 0.35rem;
    font-size: 1.25em;
}
header figure {
    margin: 2rem -6rem;
}
.top {
    padding: 0;
    display: flex;
    gap: 1.5rem;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    16.6% {
        left: 0%;
    }
    33.2% {
        left: -100%;
    }
    49.8% {
        left: -100%;
    }
    66.4% {
        left: -200%;
    }
    83% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    16.6% {
        left: 0%;
    }
    33.2% {
        left: -100%;
    }
    49.8% {
        left: -100%;
    }
    66.4% {
        left: -200%;
    }
    83% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
.slider {
    overflow: hidden;
}
.slider figure img {
    width: 25%;
    float: left;
}
.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 15s;
    -webkit-animation-delay: 5s;
    -webkit-animation-iteration-count: infinite;
    animation: 15s slidy infinite;
}
footer {
    padding: 2rem 6rem;
    margin: 0 -6rem;
    background: #E5E5E5;
}
figure {
    margin: 0;
}
@media only screen and (max-width:1079px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding-inline: 3rem;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .top {
        flex-direction: column;
        align-items: center;
    }
    h1 {
        font-size: 3.5em;
    }
    h1 br {
        display: none;
    }
    h3 {
        text-align: center;
        font-size: 2.5em;
    }
    header figure {
        margin: 2rem -3rem;
    }
}
@media only screen and (max-width:768px) {
    #wrapper {
        padding-inline: 2rem;
    }
    header figure {
        margin: 2rem -2rem;
    }
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    h1 {
        font-size: 3em;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding-inline: 1rem;
    }
    header figure {
        margin: 1rem -1rem;
    }
    h1 {
        font-size: 2.2em;
    }
    h3, h5 {
        font-size: 2em;
    }
    .info p {
        flex-direction: column;
    }
}