/***************************
****************************
FONTS
****************************
****************************/



@font-face {
    font-family: "futura";
    src: url('../fonts/FuturaLTPro-Light.ttf') format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "futura";
    src: url('../fonts/FuturaLTPro-Medium.ttf') format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "futura";
    src: url('../fonts/FuturaLTPro-Bold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
}

/***************************
  ****************************
  ESSENTIALS
  ****************************
  ****************************/

#programm,
#impulsgeber,
#anfahrt, #kontakt /* usw. */ {
    scroll-margin-top: 130px;
}
html {
    font-size: 20px;
}

body {
    font-family: 'futura', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 300;
    line-height: 1.6;
}

h2{
    color:#bd1549;
}
.p-red{
    color:#bd1549;
}

@media screen and (min-width: 767px) {
    .img-w-500{
        width: 500px;
        margin-left: auto;
    }
}
hr{
    border-top: 2px solid #bd1549;
    z-index: 99999999999999;
    position: relative;
    opacity: 1;
    background-color: transparent;
}
.mb-6{
    margin-bottom: 4.5rem;
}

.bg-gray-300{
    background-color:#dee2e6;
}

.border-rounded-not-left{
    border-top-left-radius: 0px ;
    border-top-right-radius: 50px ;
    border-bottom-right-radius: 50px ;
    border-bottom-left-radius: 50px ;

}
.border-rounded-not-left-small{
    border-top-left-radius: 0px ;
    border-top-right-radius: 25px ;
    border-bottom-right-radius: 25px ;
    border-bottom-left-radius: 25px ;

}
.space-between{
    justify-content: space-between;
}
.mob-flex-start
{
    display: flex;
    justify-content: flex-start;
}
.mobile-row{
    flex-direction: column;
}
@media screen and (min-width: 767px) {
    .mob-flex-start
    {
        display: flex;
        justify-content: flex-end;
    }
    .mobile-row{
        flex-direction: row;
    }
}


/***************************
  ****************************
  HEADER
  ****************************
  ****************************/

.site-header{
    position: fixed;
    width: 100%;
    z-index: 99999;

}

.site-header img{
    width: 320px;
}
.site-branding{
    z-index: 9999;
    position: relative;
}
@media screen and (min-width: 767px) {
    .site-header{
        //margin: 32px 0;
        background-color: #fff;
        z-index: 99999;
    }
    .site-header img{
        width: 100%;
        max-width: 450px;
    }
}
.no-header{
    padding-top: 170px;
}
@media screen and (min-width: 767px) {
    .no-header{
        padding-top: 240px;
    }
    .navbar-expand-lg .navbar-nav{
        gap:32px;
    }
}
.nav-link, .nav-link{
    font-weight: normal;
}

.nav-link, .nav-link:visited{
    color:#000;
}
.nav-link:hover{
    color:#bd1549;;
}
.nav-item .btn-danger{
    background-color: #bd1549;
    display: inline-block!important;
    margin-top: 20px;
}
.nav-item .btn-danger:visited{
    color:#fff;
}

.nav-item .btn-danger:hover {
    background-color: #96103a;
    box-shadow: 0 4px 12px rgba(189, 21, 73, 0.4);
}

.nav-item .btn-danger:hover .plane-icon,
.nav-item .btn-danger:hover svg {
    animation: fly 0.4s ease forwards;
}

@keyframes fly {
    0%   { transform: translate(0, 0) rotate(0deg); }
    50%  { transform: translate(3px, -3px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.nav-item .btn-danger:active {
    transform: translateY(0px);
    box-shadow: none;
}

@media screen and (min-width: 767px) {
    .no-header{
        padding-top: 240px;
    }
    .nav-item .btn-danger{
        display: flex!important;
        margin-top: 0;
    }
}

/***************************
  ****************************
  VIDEO
  ****************************
  ****************************/
section #intro-vid{
    margin-top: 90px;
}
section#video-intro h1{
    position: relative;
    color:#bd1549;
    text-transform: uppercase;
}
section#video-intro h1 span{
    font-weight: 300;
}

@media screen and (min-width: 767px) {
    section #intro-vid{
        margin-top: 0px;
    }
    section#video-intro h1{
        position: absolute;
        top:50%;
        left:50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color:#fff;
    }
}
/***************************
  ****************************
  KONTAKT
  ****************************
  ****************************/
.form-check{
    padding-left: 10px;
}

.btn-veranstaltung {
    background-color: #bd1549;
    border-color: #bd1549;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-veranstaltung:hover,
.btn-veranstaltung:focus {
    background-color: #a01240;
    border-color: #a01240;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(189, 21, 73, 0.35);
}

.btn-veranstaltung:active {
    background-color: #8a0f37;
    border-color: #8a0f37;
    color: #fff;
    transform: translateY(0);
    box-shadow: none;
}


/***************************
  ****************************
  FOOTER
  ****************************
  ****************************/
footer a{
    text-decoration: none;
    color:#000;
}
footer a:hover{
    color:#bd1549;
}