@charset "utf-8";

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v51-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v51-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/roboto-v51-latin-900.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-900.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-900.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000000;
    font: 400 1em/1.3em 'Roboto', Arial, sans-serif;
}

h5,
strong {
    font-weight: 700;
}

#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}

p {
    padding-bottom: 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    margin: 0 0 2rem;
    font-size: 2.3em;
    line-height: 1.1em;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.3em;
    margin-bottom: 1rem;
}

h3 {
    font-size: 3em;
    line-height: 1;
    text-align: center;
    margin-bottom: 2rem;
}

h1,
h2,
h3,
h4 {
    font-weight: 900;
}

:is(h3, h4) span {
    font-weight: 300;
    color: #009fe3;
    display: block;
}

h4 {
    font-size: 1.7em;
    line-height: 1.3em;
    margin-bottom: 2rem;
}

h1,
h2,
h3,
h4 {
    color: #1c3666;
}

h1,
h2,
h3,
h4,
h5 {
    text-transform: uppercase;
}

h5 {
    font-size: 0.9em;
    line-height: 1.3em;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

h5::after {
    content: "";
    display: block;
    width: 1.8758rem;
    height: 1px;
    border-top: 2px solid #e30975;
    position: absolute;
    top: 7px;
    left: 0;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

li {
    padding-left: 1.25rem;
}

li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: -1px 0 0 -1rem;
}

header figure {
    margin: 1rem;
    display: flex;
    justify-content: flex-end;
}

@-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%;
    }
}

header section {
    overflow: hidden;
}

header section figure img {
    width: 25%;
    float: left;
}

header section figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 30s;
    -webkit-animation-delay: 5s;
    -webkit-animation-iteration-count: infinite;
    animation: 30s slidy infinite;
}

article {
    padding: 2rem;
}

article section div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

article section div p img {
    display: block;
    margin: 0 auto 1rem;
}

article section div p {
    text-align: center;
    width: 216px;
}

article section div strong {
    color: #1c3666;
    font-size: 1em;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 900;
}

footer {
    padding: 1rem 2rem;
    background: #1c3666;
}

footer :is(p, h5, h4) {
    color: #fff;
}

footer section {
    display: flex;
    justify-content: space-between;
}

footer section div {
    width: 50%;
}

footer .button {
    display: inline-block;
    padding: 1rem 3rem;
    width: 232px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    background: #17baff url('../images/icon.jpg') no-repeat;
    background-position: top 47% left 15rem;
    transition: all ease 0.3s;
    text-align: center;
}

footer .button:hover {
    transition: all ease 0.3s;
    padding: 1rem 2rem;
    background-position: top 47% left 11.5rem;
    text-decoration: none;
}

footer strong a {
    font-size: 1.375em;
    line-height: 1.3;
}

@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    h1,
    h3 {
        font-size: 2em;
    }

    article {
        padding: 1rem;
    }

    footer {
        padding: 1rem;
    }

    footer section {
        display: block;
    }

    footer section div {
        width: auto;
    }
}

@media only screen and (max-width: 463px) {
    header>figure {
        justify-content: center;
    }

    .center {
        display: flex;
        justify-content: center;
    }

    body {
        font-size: 0.875em;
    }

    article section div p {
        width: 150px;
    }

    h4 {
        text-align: center;
    }
}

@media only screen and (max-width: 332px) {
    article section div {
        justify-content: center;
    }
}