@charset "utf-8";

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v21-latin-regular.eot'); 
  src: url('../fonts/poppins-v21-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/poppins-v21-latin-regular.woff2') format('woff2'), 
       url('../fonts/poppins-v21-latin-regular.woff') format('woff'), 
       url('../fonts/poppins-v21-latin-regular.ttf') format('truetype'), 
       url('../fonts/poppins-v21-latin-regular.svg#Poppins') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v21-latin-700.eot');
  src: url('../fonts/poppins-v21-latin-700.eot?#iefix') format('embedded-opentype'),
       url('../fonts/poppins-v21-latin-700.woff2') format('woff2'),
       url('../fonts/poppins-v21-latin-700.woff') format('woff'), 
       url('../fonts/poppins-v21-latin-700.ttf') format('truetype'),
       url('../fonts/poppins-v21-latin-700.svg#Poppins') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #003399;
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: normal;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, #f2fafb 800px),
        url(../images/background.jpg) no-repeat top center;
    background-size: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    padding: 1.25rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1rem;
}

.no_margin {
    margin: 0;
}

span {
    white-space: nowrap
}

a.grau {
    color: #0099b0;
}

h1 {
    color: #003399;
    font-size: 1.45rem
}

h2 {
    font-size: 1rem;
    margin: 0 0 1rem;
}

h2 span {
    font-weight: normal;
}

h3 {
    color: #003399;
    font-size: 16px;
    margin: 1.875rem 0 1.312rem;
}

h4 {
    font-weight: normal;
    color: #003399;
    margin: .625rem 0 1.25rem;
    font-size: 1.562rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 40px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.5rem;
    line-height: 1;
    color: #141F79;
}

.slider {
    position: relative;
    margin-bottom: 1.562rem;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
    border-radius: 1.25rem;
}

.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;
    }
}

.top {
    display: flex;
    column-gap: 1.25rem;
    margin-bottom: 1rem;
    align-items: center
}

.flex p {
    margin: 0 0 10px
}

i {
    color: #F56363;
    margin-right: .437rem
}

.logo {
    border: 1px solid #CFD6E7;
    padding: .25rem;
    border-radius: .25rem;
    width: 7.5rem;
    height: 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center
}

.logo:hover {
    border: 1px solid #0C2577;
}

.flex {
    display: flex;
    column-gap: 20px
}

.icons {
    margin: 5px 0 1rem;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 40%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
    margin: 2.5rem 0;
}

.iframe-wrapper iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

hr {
    border-top: 1px solid #CFD6E7;
    color: transparent;
    background-color: transparent;
    height: 0;
    margin: 1.25rem auto;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    hr {
        margin: 1.25rem 0
    }

    .iframe-wrapper {
        margin: 1.25rem 0 10px;
    }

    .top {
        flex-direction: column;
        margin: 0;
    }

    .top p {
        text-align: center;
        margin: .625rem 0;
    }

    h1 {
        text-align: center;
    }

    header .flex {
        justify-content: center;
    }

    h3 {
        margin: .625rem 0;
    }

    h4 {
        text-align: center;
    }

    ul li {
        padding-left: 1.375rem;
    }

    h2 span {
        white-space: normal;
    }
}

@media only screen and (max-width: 43.75rem) {
    .flex {
        flex-wrap: wrap
    }
}

@media only screen and (max-width: 38.75rem) {
    .flex {
        flex-wrap: wrap
    }

    h4 {
        font-size: 1.25rem;
    }
}

@media only screen and (max-width: 30.625rem) {

    .top,
    .flex {
        flex-direction: column
    }

    header p {
        text-align: center
    }

    h1 {
        text-align: center;
        margin: 1rem 0 0;
        font-size: 1.125rem
    }

    h3 {
        font-size: 1.187rem;
        margin: 0 0 5px
    }

    ul li {
        padding-left: 1.375rem
    }
}

@media only screen and (max-width: 23.375rem) {
    h1, 
    h3,
    h4 {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}
