
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    font-family: poppins, sans-serif;
}

.fa-arrow-right:hover {
    transform: translateX(3px);
    transition: 0.4s ease-in;
}
.fa-ul li {
    padding: 10px;
}
.carousel-caption {
    background: transparent;
    padding: 20px;
    bottom: 3rem;
    border-radius: 5px;
    z-index: 10;
  }
  
  .btn-default {
    background-color: #F7AB6E;
    color: #fff;
    border-color: #F7AB6E;
  }

  .btn-default:focus {
    background-color: #F7AB6E;
    color: #fff;
    border-color: #F7AB6E;
  }
  
  .btn-default:hover {
    background-color: #F7AB6E;
    color: #fff;
    border-color: #F7AB6E;
  }
  
/* width */
::-webkit-scrollbar {
    width: 10px;

  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #F7AB6E
  }
  
.bg-hannfried {
    background-color: #F7AB6E
}
.text-hannfried {
    color: #F7AB6E
}
.text-bg-hannfried {
    color: #F7AB6E
}

.carousel-item img {
    max-height: 500px;
    width: 100%;
}

.mf-social-side-list {
    position: fixed;
    top: 30vh;
    right: 0 !important;
    z-index: 100;
}

.mf-social-side-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin:0
}
.mf-social-side-list ul li a {
    color: #ffffff;
    border-radius: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.mf-social-side-list ul li a:hover {
    opacity: .9;
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
}
.mf-social-side-list ul li a {
    background: #F7AB6E;
    color: #000;
}

.navbar-hannfried .nav-link:hover::after {
    width: 100%;
    color: #fff!important;
    transition: width .3s;

}

.navbar-hannfried .nav-link::after{
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #F7AB6E;
    transition: width .3s;
}

.navbar-hannfried .active , #footer .active{
    color: #F7AB6E !important;
    font-weight: bold !important;
}



.nav-link:hover::after {
    width: 100%;
    color: #fff!important;
    transition: width .3s;

}

.nav-link::after{
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #F7AB6E;
    transition: width .3s;
}

#impressum h1,h2,h3,h4,h5 {
    margin-top: 30px;
}

#datenschutz h1,h2,h3,h4,h5 {
    margin-top: 30px;
}

#impressum .card {
    height: 50px;
}

.back-to-top {
    background: #F7AB6E;
    position: fixed;
    bottom: -6px;
    right: 20px;
    padding: 1em;
    z-index: 100;
  }

  footer {
    height: 8rem;
  }

.text-justify {
    text-align: justify;
}
.fade-in-left.in-view {
    animation: fadeInLeft 1s ease-in-out;
}
.fade-in-right.in-view {
    animation: fadeInRight 1s ease-in-out;
}

.custom-popover {
    background-color:#F7AB6E;
    --bs-popover-max-width: 600px;
  }
  .popover-content{     background: #ffff99; }
@media (min-width: 768px) {
    .navbar-hannfried {
        height: 150px;
    }
}
@media (max-width: 768px) {
    .navbar-brand img {
        width: 40px;

    }
}

@media (max-width: 768px) { 
    .carousel-item img {
        min-height: 200px;
        width: 100%;
    }
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-400px);
    }
    to {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translate(0);
    }
}


.fade-in.in-view{
    animation: fadeInUp 2s ease;
}

@keyframes fadeInUp {
    from {
        
        opacity: 0;
        
    }
    to {
        
        opacity: 1;
    
    }
}

