html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

header {
    position: relative;
    min-height: 100%;
    width: 100%;
    margin-bottom: 60px;
}

.header_content, video {
    margin: 0;
    min-height: 100%;
    padding: 50px auto 50px auto;
    width: 100%;
    background: #00A1DF;
    background: linear-gradient(180deg,rgba(0, 161, 223, 1) 0%, rgba(0, 117, 163, 1) 100%);
}

#cookies-eu-banner {
    padding: 10px;
    position: fixed;
    z-index: 10000;
    background-color: #343434;
    color: #aaaaaa;
    font-size: 20px;
    bottom: 0;
    border-radius: 8px;
    opacity: 0.7;
    max-width: 550px;
}

#cookies-eu-banner a {
    color: #aaaaaa;
}

video {
    z-index: 1;
    position: absolute;
    top: 0;
    object-fit: cover;
    max-height: 100%;
}

.header_content {
    z-index: 100;
    position: absolute;
    opacity: 0.75;
    top: 0;
}

.header_container {
    position: absolute;
    top: 25%;
    right: 25%;
    text-align: right;
}

header img {
    width: 64px;
    position: absolute;
    left: 50%;
    bottom: 3%;
}

h1 {
    font-family: "Red Hat Display", sans-serif;
    margin: 0;
    color: #ffffff;
}

h2 {
    font-family: "Didact Gothic", sans-serif;
    font-size: 18px;
    margin: 0;
    font-weight: normal;
    color: #eeeeee;
}

h3 {
    margin-top: 80px;
    font-family: "Red Hat Display", sans-serif;
    text-align: center;
}

header img {
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

.text_container {
    font-family: "Didact Gothic", sans-serif;
    font-size: 20px;
    max-width: 1024px;
    margin: 0 auto 0 auto;
    text-align: justify;
}

.image_stock_container {
    margin: 80px 0 0 0;
    display: block;
    text-align: center;
}

.image_stock {
    max-width: 200px;
}

.ok_24 {
    list-style-image: url('../img/ok-circle-svgrepo-com.png');
}

.bold {
    font-weight: bold;
}

.no_bullet {
    list-style-image: none;
    list-style-type: none;
    font-weight: normal;
}

.inline_cards {
    display: flex;
    justify-content: center;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
}

#partners img {
    margin: 0 5px 0 5px;
}

.text_container img {
    display: block;
    max-width: 70%;
    margin: 0 auto 0 auto;
}

#contact p {
    margin: 0 5px 0 5px;
}

#contact img {
    max-width: 120px;
}

#contact_form {
    text-align: center;
}

#contact_form input, #contact_form textarea {
    width: 100%;
    min-height: 30px;
    margin: 0 5px 5px 5px;
    padding: 10px;
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
    border: 1px solid rgba(0, 117, 163, 1);
    border-radius: 2px;
}

button {
    border: 1px solid rgba(0, 117, 163, 1);
    background-color: #016c96;
    color: #ffffff;
    border-radius: 3px;
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    margin: 20px;
}

#contact_form_container {
    padding-bottom: 100px;
}

.card {
    border: 1px solid rgba(0, 117, 163, 1);
    border-radius: 10px;
    min-width: 300px;
    margin: 5px;
    flex: 1;
}

.card div {
    margin: 0;
}

.card_header {
    background-color: #00A1DF;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-family: "Red Hat Display", sans-serif;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    min-height: 60px;
}

.card_body {
    padding: 5px;
}

.message_success {
    font-wight: bold;
    color: #00aa00;
    background-color: #ffffff;
    padding: 5px;
    font-size: 24px;
}

.message_error {
    font-wight: bold;
    color: #ff0000;
    background-color: #ffffff;
    padding: 5px;
    font-size: 24px;
}

.align_center {
    text-align: center;
}

@media only screen and (max-width: 1110px) {

    .text_container {
        max-width: 90%;
    }

    .inline_cards {
        display: grid;
    }

    .card {
        margin: 0 0 25px 0;
    }

    #partners {
        display: inline-block;
        text-align: center;
    }

    #contact_form input, #contact_form textarea {
        max-width: 90%;
    }
    
    .header_container {
        padding: 5px;
    }

    header img {
        left: 44%;
    }

}