@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.6.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --blue: #0059ac;
    --bluelighter:#307dc5;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}



/* essentials */

h1,h2,h3,h4 {
    text-align: center;
    text-transform: uppercase;
    /* text-shadow: 1px 1px 4px #000000; */
    letter-spacing: 2px;
    /* font-size: 1.7rem; */
}

svg{
    pointer-events: none;
}

p, span, i, b {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 15px 0 15px 0;
    letter-spacing: 1px;
    color: #444;
}
.wrap {
    padding: 30px 0 30px 0;
}

section {
    background-color: #fff;
    padding: 30px 0 30px 0;
}

.navbar-brand:hover{
    color: white;
}

nav {
    background-color: var(--bluelighter);
}
nav img {
    box-shadow: none;
}

img {
    box-shadow: 0 1px 5px 0 rgb(0 0 0 / 30%), 0 1px 5px 0 rgb(0 0 0 / 30%);
    border-radius: 8px;
}

nav a {
    color: #fff;
}
nav .navbar-nav a:hover{
    color: rgb(199, 199, 199);
    font-size: 1.01rem;
    transition: .5s;
}

.btn {
    padding:14px;
    border: none;
    color: #fff;
    background-color: var(--bluelighter);
    text-align: center;
    margin: 20px 0 20px 0;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
}
.btn:hover{
    background-color: rgba(0, 0, 0, 0.685);
    color: #fff;
    font-size: 1.01rem;
    transition: .5s;
}

.background-full{
    z-index: 0;
    position: absolute;
    width: 100%;
    height: auto;
    pointer-events: none;
    box-shadow: none;
}
.background-full img{
    width: 100%;
    height: 100%;
    -webkit-filter: blur(1px);
    filter:  brightness(0.50);
    opacity: 0.2;
    box-shadow: none;
}
.service-list .item > p,i{
    /* display: inline; */
    padding: 0 12px 0 12px;
}

/* headings */

.headings{
    margin-top: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.headings h1{
    color: var(--blue);
    font-weight: 600;
    text-shadow: none;

}
.headings h2 {
    font-weight: 400;
    color: var(--blue);
    letter-spacing: 0.8px;
    text-shadow: none;
}


/* 1 #landing */

#landing {
    color: #333;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.95),rgba(255, 255, 255, 0.95)),
        url(/img/streets.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; 
}
#landing img{
    box-shadow: none;
}
.logo-row{
    /* background-color: var(--bluelighter); */
    padding: 20px 0 20px 0;
}
.logo-row img{
    max-height: 60px;
}
/* 2 about */

#about {
    background-color: #eee;
}

.service-list{
    text-align: left;
    margin-top: 20px;
}
.service-list i{
    font-size: 33px;
    color: var(--blue);
    height: 100%;
}
.service-list p{
    font-size: 14px;
    margin: 0;
}

/* 3 bestellung */

#bestellung {
    text-align: center;
    background-image: 
    linear-gradient(rgba(255, 255, 255, 0.90),rgba(255, 255, 255, 0.90)),
    url(/img/streets.svg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
#bestellung img.mar{
    margin: 20px 0 20px 0;
}

.number{
    /* text-align: center; */
    font-size: 60px;
    font-weight: bold;
    margin: 20px 0 20px 0;
    color: var(--bluelighter);
}

/* 4 benefit */

section#benefit ul>li {
    letter-spacing: 1.6px;
    line-height: 1.7;
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 10px;
    display: block;
}

/* switch buttons*/


 .switch-btn {
    font-size: 24px !important;
    padding: 10px;
    background-color:#fff;
    border: 1px solid var(--bluelighter);
    cursor: pointer;
    min-width: 100%;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
}
.switch-btn .active {
    background-color: #e6e8ff;
}
 .switch-btn i{
    font-size: 28px;
}
 .switch-btn:hover {
    background-color: rgb(212, 212, 212);
    transition: .5s;    
}

#switch-div #trust, #sicherheit{
    display: none;
}

/* footer */

footer {
    margin-top: 40px;
    padding-bottom: 50px;
    background-color: #eee !important;
}

footer ul li{
    line-height: 2.2;
    letter-spacing: 1.8px;
}

/* @media */

@media screen and (max-width: 992px){
    .headings{
        margin-top: 20px;
        font-size: 1.6rem !important;
    }
    h1,h2,h3,h4,h5{
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px){

}

@media screen and (max-width: 576px){
    
}

/* extern */

#booking_form{
    margin-top: 30px;
    margin-bottom: 30px;
}

#booking_form img{
    box-shadow: none;
}