@charset "utf-8";

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin-regular.eot');
    src: local(''), url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v25-latin-600.eot');
    src: local(''), url('../fonts/montserrat-v25-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/montserrat-v25-latin-600.woff2') format('woff2'), url('../fonts/montserrat-v25-latin-600.woff') format('woff'), url('../fonts/montserrat-v25-latin-600.ttf') format('truetype'), url('../fonts/montserrat-v25-latin-600.svg#Montserrat') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #555555;
    font-family: "Montserrat", Arial sans-serif;
    font-size: .937rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 71.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6)
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.562rem;
}

hr {
	margin-bottom: 1.0rem;
	margin-top: 0.512rem;
	color: #305754;
	background-color: #305754;
	height: 10px;
	
}

ul {
    list-style: none;
    margin: 0 0 1.562rem .312rem;
    padding: 0;
}

ul li {
    padding-left: 1rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.975em;
    line-height: 0.6;
}

h1,
h2,
h3,
h4 {
    color: #305754;
}

h1,
h2 {
    font-size: 2.187rem;
    font-weight: 600;
    margin-bottom: 2.312rem;
	margin-top: 1rem;
}

header {
    padding: 1.25rem 2.5rem
}

.flex {
    display: flex;
    justify-content: space-between;
    column-gap: 1.25rem;
    margin-top: 3.125rem
}

.left {
    width: 80%;
}

header {}

article {
    padding: .625rem 2.5rem;
}

footer {
    padding: .625rem 2.5rem;
}

a.button {
    border-radius: .375rem;
    font-size: 1.5rem;
    margin-bottom: 1.125rem;
    padding: .875rem 1.75rem;
    color: #fff;
    background: #c40f1e;
    display: inline-block;
}

.button:hover {
    background-color: #353535;
}

footer .button {
    border-radius: .625rem;
    padding: 1.25rem 2.5rem
}

section p {
    display: flex;
    align-items: center;
    column-gap: 0.825rem
}

section p:last-of-type {
    margin-left: .312rem
}

.box {
    border-radius: 10px;
    border: 1px solid rgb(230, 230, 230);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 6px 0px;
    margin: 1px -10px 22px;
    max-width: 355px;
    padding: 16px 18px 18px;
    text-align: center;
    line-height: 2;
	background-color: #70aca7;
	color: #fff;
}

.box p:last-of-type {
    line-height: 1.2;
    margin-top: 1.25rem
}

.box a {
    color: #000;
}

.right {
    width: 25%
}

.right .button {
    display: block;
    text-align: center;
	margin-left: -0.575rem;
	margin-right: -0.575rem;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 36.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    30% {
        left: 0%;
    }

    33% {
        left: -100%;
    }

    64% {
        left: -100%;
    }

    67% {
        left: -200%;
    }

    97% {
        left: -200%;
    }

    100% {
        left: -300%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 18s slidy infinite;
}

figure img {
    width: 25%;
    float: left;
}

@media only screen and (max-width: 71.187rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    article,
    header,
    footer {
        padding: .625rem 0;
    }

    h1,
    h2 {
        font-size: 1.687rem
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 56.187rem) {
    .flex {
        display: block;
        margin-top: .937rem
    }

    .right,
    .left {
        width: auto;
    }

    .box {
        margin: 20px auto
    }

    .right a.button {
        width: fit-content;
        margin: 0 auto;
    }
    
    h1 {
        margin:0;
    }
    
    h1 , h2 {
        font-size: 1.5rem
    }

    footer .button {
        display: none;
    }
}
