@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/hind-v18-latin-300.eot');
    src: url('../fonts/hind-v18-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v18-latin-300.woff2') format('woff2'), url('../fonts/hind-v18-latin-300.woff') format('woff'), url('../fonts/hind-v18-latin-300.ttf') format('truetype'), url('../fonts/hind-v18-latin-300.svg#Hind') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/hind-v18-latin-regular.eot');
    src: url('../fonts/hind-v18-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v18-latin-regular.woff2') format('woff2'), url('../fonts/hind-v18-latin-regular.woff') format('woff'), url('../fonts/hind-v18-latin-regular.ttf') format('truetype'), url('../fonts/hind-v18-latin-regular.svg#Hind') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Hind';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/hind-v18-latin-500.eot');
    src: url('../fonts/hind-v18-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/hind-v18-latin-500.woff2') format('woff2'), url('../fonts/hind-v18-latin-500.woff') format('woff'), url('../fonts/hind-v18-latin-500.ttf') format('truetype'), url('../fonts/hind-v18-latin-500.svg#Hind') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Hind', "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #007cc5;
}

strong {
    font-weight: 500;
}

p {
    padding-bottom: 1rem;
}

article p {
    padding-bottom: 2.5rem;
}

h1,
h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    color: #007cc5;
    font-weight: normal;
    text-transform: uppercase;
    padding: 0 0 .938rem;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
    color: #007cc5;
    text-transform: uppercase;
    padding-bottom: .5rem;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
    border-top: 1px solid #929292;
}

ul li {
    padding: .35rem 0 .35rem 1.75rem;
    border-bottom: 1px solid #929292;
    position: relative;
}

ul li:before {
    content: url("../images/check.png");
    float: left;
    margin-left: -1.75rem;
}

ul.icons li:before {
    content: "";
    margin-left: 0;
}

ul.icons i {
    position: absolute;
    left: 0;
    top: .5rem;
    color: #007cc5;
}

.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;
    }
}

.button a {
    padding: 13px 19px 13px 29px;
    font-size: 1.125rem;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 500;
    border: 2px solid #007cc5;
    background-color: #fff;
    color: #007cc5;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    width: fit-content;
    transition: .2s;
}

.button a::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #007cc5;
    position: absolute;
    right: 60px;
}

.button a:hover {
    background-color: #007cc5;
    color: #fff;
}

.button a:hover::after {
    background-color: #fff;
}

header {
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
    padding: 2rem;
}

article {
    padding: 1.5rem 2rem;
}

footer {
    padding: 1.5rem 2rem;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media only screen and (max-width: 59.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: 50rem) {
    header {
        align-items: center;
    }

    footer {
        flex-direction: column-reverse;

    }

    .button {
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 35rem) {
    header {
        padding: 1.5rem 1rem 1rem;
        gap: 1.5rem;
    }

    article {
        padding: 1.5rem 1rem .5rem;
    }

    footer {
        padding: 1rem;
    }

    h3 {
        font-size: 1rem;
    }
}