* {
    margin: 0;
    padding: 0;
    border: 0;
}

.invisible {
    display: none;
}

/* Load Fonts */

@font-face {
    font-family: 'Roboto';
    font-display: swap;
    src: url('../../files/theme/fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'RobotoBold';
    font-display: swap;
    src: url('../../files/theme/fonts/Roboto-Bold.ttf');
}

/* Headlines & Text */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: 'RobotoBold', Arial;
    color: #025fa4;
    font-weight: 400;
    margin-bottom: 1.7rem;
}

p {
    line-height: 1.5;
    margin-bottom: 1.3rem;
    font-family: 'Roboto', Arial;
    color: #FFFFFF;
}

a {
    font-family: 'RobotoBold', Arial;
    color: #FFFFFF;
    text-decoration: none;
}

ul  {
    margin-bottom: 1.7rem;
    list-style-position: inside;
}

ul li {
    font-family: 'Roboto', Arial;
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 0.5rem;
}

body {
    background-color: #2b3137;
    font-size: 18px;
}

header {
    position: fixed;
    width: 100%;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: height 0.35s;
    z-index: 9999;
}

header .inside {
    position: relative;
    height: 100%;
    padding: 0 1rem;
}

#nav_opened:checked + #wrapper #header {
    height: 100%;
}

/*
 * Logo
 */
header #logo {
    position: absolute;
    top: 7px;
    left: 1rem;
    width: 102px;
    height: 60px;
    transition: width 0.35s, height 0.35s;
}

header #logo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    background: transparent url(../../files/theme/img/logo.png) no-repeat center center;
    background-size: contain;
    transition-delay: 0.35s;
    transition: opacity 0.35s;
}

/*
 * Navigation
 */
header nav {
    position: absolute;
    max-height: 0;
    top: 120px;
    left: 1.7rem;
    font-size: 1.75rem;
    overflow: hidden;
    transition: max-height 0.35s;
}

#nav_opened:checked + #wrapper #header nav {
    max-height: 100vh;
}

header nav ul {
    list-style-type: none;
}

header nav li {
    margin-bottom: 2rem;
}

header nav li.active strong{
    font-family: 'RobotoBold', Arial;
    color: #FF9D1C;
    font-weight: normal;
}

header nav li strong {
    font-family: 'RobotoBold', Arial;
    font-weight: normal;
    color: #FFFFFF;
}

header nav li.active strong {
    font-weight: normal !important;
}

header .mod_navigation .level_2 {
    margin-top: 2rem;
    padding-left: 1.7rem;
}

header .mod_navigation .level_2 li {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Main */

#main .inside {
    padding: 100px 1.7rem 0 1.7rem;
}

/*
 * Forms
 */
.ce_form .widget {
    position: relative;
    margin-bottom: 1rem;
}

.ce_form input,
.ce_form select,
.ce_form textarea,
.ce_form button[type=submit]{
    appearance: none;
    line-height: 1.5;
    box-sizing: border-box;
    resize: none;
    color: #fbfffe;
    background-color: rgba(68,77,87, 0.8);
    font-family: 'Roboto', Arial;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 5px;
    outline: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s, border 0.2s;
}

.ce_form input,
.ce_form select,
.ce_form textarea {
    width: 100%;
}

.ce_form .widget {
    position: relative;
}

.ce_form .widget > label {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0px 10px 0px 10px;
    pointer-events: none;
    background-color: transparent;
    color: #9d9d9d;
    font-family: 'Roboto', Arial;
    transform: translateY(-50%);
    transition: transform 0.2s, font-size 0.2s, top 0.2s, background-color 0.2s;
}

.ce_form .widget-text input:valid ~ label,
.ce_form .widget-text input:focus ~ label,
.ce_form .widget-textarea textarea:valid ~ label,
.ce_form .widget-textarea textarea:focus ~ label {
    top: 0;
    transform: translateX(20px) translateY(-5px);
    font-size: 0.8rem;
    border-left: 1px solid #fbfffe;
    border-right: 1px solid #fbfffe;
    background-color: #2b3137;
}

.ce_form input:valid,
.ce_form input:focus,
.ce_form textarea:valid,
.ce_form textarea:focus {
    border: 1px solid #fbfffe;
    background-color: transparent;
}

.ce_form input::placeholder {
    color: #fbfffe;
}

.ce_form input:-ms-input-placeholder {
    color: #fbfffe;
}
.ce_form input::-ms-input-placeholder {
    color: #fbfffe;
}

.ce_form .widget-select:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    font-family: 'FontAwesomeSolid';
    transform: translateY(-50%);
    z-index: 99;
}

.ce_form button[type=submit]{
    position: relative;
    width: 100%;
    font-family: 'RobotoBold', Arial;
    text-transform: uppercase;
    background-color: transparent;
    z-index: 9;
}

.ce_form button[type=submit]:before {
    content: '';
    position: absolute;
    background-color: rgba(2, 95, 164, 1.0);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: background-color 0.35s;
}

.ce_form button[type=submit]:hover:before {
    background-color: rgba(55, 39, 76, 0);
}

.ce_form button[type=submit]:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: 1px solid #fbfffe;
    transform: scale(1.2, 1.2);
    transition: transform 0.35s, opacity 0.35s;
}

.ce_form button[type=submit]:hover:after {
    opacity: 1;
    transform: scale(1,1);
}

.ce_form .widget-checkbox span {
    display: flex;
    justify-content: space-between;
}

.ce_form .widget-checkbox input {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    margin-right: 1rem;
}

input[type="checkbox"]:checked {
    background-image: url(../../files/theme/img/check.png);
    background-size: contain;
}

.ce_form .widget-checkbox label .content-text {
    padding: 0;
    color: #FBFFFE;
}

/* Text */
.content-text p img,
.header-img img {
    max-width: 100%;
    height: auto;
}

.header-img img {
    width: 100%;
    margin-bottom: 1.7rem;
}

/* Table */
table {
    line-height: 1.5;
    margin-bottom: 1.3rem;
    font-family: 'Roboto', Arial;
    color: #FFFFFF;
}

table tr {
    background-color: #5c6977;
}

table td {
    padding: 0.5rem;
}

table tr:nth-of-type(2n) {
    background-color: transparent;
}


/* Footer */

footer {
    background-color: #24292e;
    overflow: hidden;
}

footer > .inside {
    padding: 2rem 1.7rem;
}

footer p {
    margin: 0;
}

/* Cookiebar */
.cc-inner {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contao-cookiebar p {
    color: #FFFFFF;
}

.contao-cookiebar .highlight .success {
    background-color: #025fa4;
    border-color: #025fa4;
}

.contao-cookiebar .cc-info a {
    color: #025fa4;
}

@media only screen and (min-width: 768px) {
    header .inside,
    #main .inside,
    #footer .inside {
        max-width: 1400px;
        margin: 0 auto;
    }

    #main p img {
        width: 45%;
    }
}
#hamburger {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    width: 84px;
    height: 75px;
    cursor: pointer;
    padding: inherit;
    z-index: 10;
}

#hamburger-box {
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 10px;
    top: 50%;
    right: 1rem;
    margin-bottom: 2px;
    z-index: 3;
    padding: inherit;
    transition: top 0.35s;
}

#hamburger-inner {
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: 75ms;
}

#hamburger-inner, #hamburger-inner:before, #hamburger-inner:after {
    position: absolute;
    width: 30px;
    height: 3px;
    transition-property: transform;
    background-color: #FBFFFE;
    transition: background-color 0.35s;
}

#hamburger-inner:before, #hamburger-inner:after {
    display: block;
    content: "";
}
#hamburger-inner:before {
    top: -10px;
    transition: top 75ms ease .12s, opacity 75ms ease;
}
#hamburger-inner:after {
    bottom: -10px;
    transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
}

/* Hamburger Active */
#nav_opened:checked + #wrapper #hamburger #hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(45deg);
}

#nav_opened:checked + #wrapper #hamburger #hamburger-inner:before {
    top: 0;
    transition: top 75ms ease,opacity 75ms ease .12s;
    opacity: 0;
}

#nav_opened:checked + #wrapper #hamburger #hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transform: rotate(-90deg);
}
  
