

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/montserrat-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/montserrat-bold.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



html, body{
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat';
    color: #2B2E34;
}

ul.navigation{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
}
@media (min-width: 768px) {
    ul.navigation{
        padding-top: 0.5rem;
    }
}
@media (min-width: 1000px) {
    ul.navigation{
        justify-content: space-between;
    }
}
@media (min-width: 1200px) {
    ul.navigation{
        padding-top: 1rem;
    }
}
ul.navigation li{
    display: inline-block;
    margin-right: 0.5rem;
}
@media (min-width: 1200px) {
    ul.navigation li{
        margin-right: 1rem;
    }
}
ul.navigation a, ul.navigation button{
    font-weight: 700;
    color: #0B2E5A;
    text-decoration: none;
}
ul.navigation button{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;     /* inherit font from parent */
    color: #0B2E5A;  /* inherit text color */
    cursor: pointer;
    font-weight: 700;
}
.border-blue{
    border: 2.75px solid #0B2E5A;
    border-radius: 41px;
    padding: 2rem;
    position: relative;
    padding-bottom: 8rem;
}
@media (min-width: 768px) {
    .border-blue{
        padding: 3rem;
        padding-bottom: 6rem;
    }
}
@media (min-width: 1000px) {
    .border-blue{
        padding: 3rem;
    }
}
.border-blue img{
    position: absolute;
    bottom: 0rem;
    right: 5px;
    max-height: 34%;
}
@media (min-width: 768px) {
    .border-blue img{
        max-height: 44%;
    }
}
@media (min-width: 1000px) {
    .border-blue img{
        bottom: 0.5rem;
        max-height: 48%;
    }
}
@media (min-width: 1400px) {
    .border-blue img{
        bottom: 1rem;
        max-height: 65%;
    }
}
.bg-blue{
    background-color: #D8E7F0;
    position: relative;
}
.bg-blue > img{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 0;
}
.bg-gray{
    background-color: #F0F0F0;
}
.bg-bluedark{
    background-color: #0B2E5A;
    color: white;
}
h1{
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 1rem;
    color: #12305B;
    text-transform: uppercase;
        line-height: 1.1;
}
@media (min-width: 768px) {
    h1{
        font-size: 45px;
    }
}
@media (min-width: 1000px) {
    h1{
        font-size: 60px;
    }
}
@media (min-width: 1200px) {
    h1{
        font-size: 82px;
    }
}
@media (min-width: 1400px) {
    h1{
        font-size: 90px;
    }
}
h2, .h2{
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #12305B;
}
@media (min-width: 768px) {
    h2, .h2{
        font-size: 34px;
    }
}
@media (min-width: 1000px) {
    h2, .h2{
        font-size: 40px;
       
    }
}
@media (min-width: 1200px) {
    h2, .h2{
        font-size: 46px;
    }
}
@media (min-width: 1400px) {
    h2, .h2{
        font-size: 49px;
    }
}

h3{
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #54A4C0;
}
@media (min-width: 768px) {
    h3{
        font-size: 38px;
    }
}
@media (min-width: 1000px) {
    h3{
        font-size: 43px;
    }
}
@media (min-width: 1200px) {
    h3{
        font-size: 48px;
    }
}

.label{
    font-weight: 700;
    text-transform: uppercase;
    color: #54A4C0;
    letter-spacing: 2px;
}
@media (min-width: 768px) {
    .label{
        letter-spacing: 8px;
    }
}

.headline{
    font-weight: 700;
    text-transform: uppercase;
    color: #0B2E5A;
    font-size: 20px;
}

.img-fluid{
    width: 100%;
}
ul.list{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 5px;
    list-style: none;
    padding-left: 0;
    text-transform: uppercase;
    z-index: 1;
}
@media (min-width: 1400px) {
    ul.list{
        font-size: 20px;
    }
}
ul.list li{
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    z-index: 1;
}
ul.list li::before{
    content: ' ';
    position: absolute;
    left: 0;
    width: 19px;
    height: 2px;
    background-color: #12305B;
    top: 14px;
}
a, button{
    transition: all 0.3s ease;
}
a:hover, button:hover{
    opacity: 0.7;
}
.btn.btn-primary{
    background-color: #54A4C0;
    color: white;
    font-weight: 700;
    
    border: none;
    border-radius: 15px;
    padding: 13px 20px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-size: 16px;
}
@media (min-width: 768px) {
    .btn.btn-primary{
        letter-spacing: 6px;
    }
}

@media (min-width: 1200px) {
    .btn.btn-primary{
        font-size: 17px;
        letter-spacing: 7px;
        padding: 15px 28px;
    }
}
@media (min-width: 1400px) {
    .btn.btn-primary{
        letter-spacing: 8px;
        font-size: 20px;
    }
}
.btn.btn-primary::after{
    content: url('img/btn-2.svg');
    top: 2px;
    position: relative;
    padding-left: 8px;
}
.btn.btn-primary::hover{
    opacity: 0.8;
}
div.blue{
    position: relative;
}

div.blue::before{
    position: absolute;
    content: ' ';
    left: 0;
    bottom: 0;
    height: 125%;
    background-color: #0B2E5A;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 45px;
    display: none;
}
@media (min-width: 1090px) {
    div.blue::before{
        width: 55px;
        display: block;
    }
}
@media (min-width: 1200px) {
    div.blue::before{
        width: 90px;
    }
}
.slider{
    margin-left: -10px;
    margin-right: -10px;
}
.slide{
    margin-left: 10px;
    margin-right: 10px;
}
.slider-1 .slide{
    padding: 2rem;
    border: 2.75px solid #12305B;
    border-radius: 41px;
    height: fit-content;
}
.slider-2 .slide{
    padding: 2.5rem;
    border: 2.75px solid #12305B;
    position: relative;
}
@media (min-width: 1200px) {
    .slider-2 .slide{
        padding: 3rem;
    }
}
.slider-2 .slide::after{
    position: absolute;
    content: url('img/quote.svg');
    top: 0;
    right: 1rem;
    transform: translateY(-50%);
}
.slider-2 .slick-track{
    padding-top: 3rem;
}
img.round{
    border-radius: 20px;
}

.formular{
    border: 2.75px solid #12305B;
    padding: 2rem;
    border-radius: 41px;
}
@media (min-width: 768px) {
    .formular{
        padding: 4rem 5rem;
    }
}
@media (min-width: 1000px) {
    .formular{
        padding: 5rem 7rem;
    }
}
@media (min-width: 1400px) {
    .formular{
        padding: 6rem 9rem;
    }
}
#formular .btn.btn-primary{
    text-align: start;
    position: relative;
    padding-right: 50px;
}
@media (min-width: 1000px) {
    #formular .btn.btn-primary{
        padding-right: 85px;
    }
}
#formular .btn.btn-primary::after{
    content: url('img/download.svg');
    position: absolute;
    right: 20px;
    top: 22px;
    scale: 0.8;
}
@media (min-width: 768px) {
    #formular .btn.btn-primary::after{
        top: 14px;
    }
}

@media (min-width: 1000px) {
    #formular .btn.btn-primary::after{
        right: 30px;
        top: 15px;
    }
}
@media (min-width: 1200px) {
    #formular .btn.btn-primary::after{
        top: 20px;
        scale: 1;
    }
}
@media (min-width: 1400px) {
    #formular .btn.btn-primary::after{
        top: 24px;
    }
}
img.footer-img{
    height: 125px;
    width: auto;
}
.footer .headline{
    color: white;
}
.footer ul{
    list-style: none;
    padding-left: 0;
}
.footer ul li{
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.footer ul li a, .footer a{
    color: white;
    text-decoration: none;
}
form input[type="text"], form input[type="email"], form input[type="tel"]{
    border-radius: 9px;
    border: 1px solid #BEBCBC;
    width: 100%;
    padding: 8px;
    margin-bottom: 1.5rem;
}
form input[type="text"]:focus, form input[type="email"]:focus, form input[type="tel"]:focus{
    border: 1px solid #12305B;
    box-shadow: none;
}
form label{
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 7px;
}
@media (min-width: 768px) {
    form label{
        font-size: 20px;
        margin-bottom: 9px;
    }
}



/* Container */
.switch {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

/* Hide the default checkbox */
.switch input {
    display: none;
}

/* The slider background */
.slidercheck {
    position: relative;
    width: 50px;
    height: 28px;
    background-color: #e5e8eb; /* grey background */
    border-radius: 34px;
    transition: 0.3s;
    flex-shrink: 0;
}

/* The circle inside */
.slidercheck::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Checked state */
.switch input:checked + .slidercheck {
    background-color: #54A4C0; /* green when active */
}

.switch input:checked + .slidercheck::before {
    transform: translateX(22px);
}

/* Optional: text styling */
.switch-text {
    font-weight: 400;
    font-size: 16px;
}

.switch-text a{
    color: #2B2E34;
}

.switch-text a:hover {
    text-decoration: underline;
}

#contactInfo {
    margin-top: 5px;
    padding: 8px;
    background: #0B2E5A;
    right: -10px;
    border-radius: 20px;
    position: absolute;
    width: 340px;
    padding: 1rem;
    padding-bottom: 0;
    color: white;
}
#contactInfo a{
    font-weight: 400;
    font-size: 16px;
    color: white;
}
.hidden {
    display: none;
}
#contactBtn::after{
    content: url('img/kontakt.svg');
    top: -3px;
    position: relative;
    left: 4px;
}
.socials a img{
    margin-right: 1.5rem;
}

.slider-controls button{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;     /* inherit font from parent */
    color: #0B2E5A;  /* inherit text color */
    cursor: pointer;
    font-weight: 700;
}
.slider-controls button img{
    scale: 2.5;
    margin-left: 5px;
    margin-right: 5px;
}


.cookie-banner {
    text-align: center;
    position: fixed;
    top: 50%;
    height: auto;
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0B2E5A;
    color: white;
    border-radius: 20px;
    z-index: 99999;

    box-shadow: 0 0px 44px rgba(0,0,0,.9);
    padding: 3rem 2rem;
    max-width: 1000px;
}
@media (min-width: 768px) {
    .cookie-banner {
        width: 75%;
        padding: 3rem;
    }
}

@media (min-width: 1000px) {
   .cookie-banner {
       width: 60%;
    }
}
@media (min-width: 1200px) {
    .cookie-banner {
        width: 50%;
    }
}
.cookie-inner {
    max-width: 980px; margin: 0 auto; padding: 16px;
    
}
@media (min-width: 700px) {
    .cookie-inner {  }
}
.cookie-text a{
    color: white;
    text-decoration: underline;
}
.cookie-actions .btn{ margin-left: 5px;margin-right: 5px; margin-bottom: 5px;}
.cookie-banner .btn::after{
    content: none;
}
.hidden { display: none !important; }

body{
    position: relative;
}

.invalid label, label.invalid {
    color: red;
}