@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-pro-v21-latin-regular.eot'); 
  src: local(''),
       url('../fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'), 
       url('../fonts/source-sans-pro-v21-latin-regular.woff') format('woff'), 
       url('../fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'), 
       url('../fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg'); 
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/source-sans-pro-v21-latin-700.eot'); 
  src: local(''),
       url('../fonts/source-sans-pro-v21-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/source-sans-pro-v21-latin-700.woff2') format('woff2'), 
       url('../fonts/source-sans-pro-v21-latin-700.woff') format('woff'), 
       url('../fonts/source-sans-pro-v21-latin-700.ttf') format('truetype'), 
       url('../fonts/source-sans-pro-v21-latin-700.svg#SourceSansPro') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    position: relative;
    color: #000;
    font: 400 1em/1.5em 'Source Sans Pro', Arial, sans-serif;
    background: #fff url("../images/bg.jpg") no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
}
body::before {
    content: " ";
    width: 100%;
    height: 102%;
    background-color: rgba(254, 204, 0, .2);
    position: absolute;
    top: -1rem;
    left: 0;
}
h1, h2, strong {
    font-weight: bold;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 0 8px #666;
    border-radius: 20px;
}
.slider {
    position: relative;
    width: 77%;
}
.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 {
  display: inline-block;
  background: #FECC00;
  padding: 0.6rem 1.5rem;
  margin: 1rem auto;
  cursor: pointer;
  border: 0.1rem solid #FECC00;
  transition: all 140ms ease 0s;
  -moz-transition: all 140ms ease 0s;
  -webkit-transition: all 140ms ease 0s;
  color: #fff;
  border-radius: 30px;
}
.button a:hover {
  background-color: #000;
  text-decoration: none;
  color: #FECC00;
}
p {
    padding-bottom: 1rem;
}
p a.ins{
    text-decoration: underline 1px dotted #FECC00;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: #298A63 !important;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 3rem;
    line-height: 1.3;
    color: #000;
}
h1 span{
    color: #b8b5ab;
    font-weight: 400;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3em;
    margin: 1rem 0 0.5rem;
}
.big{
    font-size: 1.3em;
    line-height: 1.3;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding:0 0 0.35rem  1.5rem;
}
li:before {
    content: url('../images/icon.png');
    float: left;
    margin: -1px 0 0 -1.5rem;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    width: 30%;
    padding: 1rem;
}
main {
    padding: 2rem 2rem 0;
}
hr {
    border: none;
    background: #008A45;
    height: 3px;
    width: 70px;
    text-align: center;
    margin: 0.5rem auto;
}
.iframe {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
 .iframe iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
footer{
    margin: 0 -2rem;
}
@media only screen and (max-width: 799px) {
    body::before{
        display: none;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        border-radius: 0;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1{
        font-size: 2em;
    }
}
@media only screen and (max-width:480px) {
    main {
        padding: 1rem;
    }
    h1 {
        font-size: 1.75em;
    }
}