@import url(css/bootstrap.min.css);
@import url(css/hkgrotesk-fonts.css);
@import url(css/font-awesome.min.css);
@import url(css/classy-nav.css);


* {
    margin: 0;
    padding: 0;
}

body {
/*    ersetzen durch "Helvetica???"*/
    font-family: "HK Grotesk", sans-serif;
    font-weight: 400;
    font-size: 14px;
    background-color: rgb(255, 242, 227);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /*    ersetzen durch "HK Grotesk"*/
    font-family: "HK Grotesk", sans-serif;
    color: #232323;
    line-height: 1.4;
    font-weight: 600;
}

a,
a:active,
a:focus,
a:hover {
    color: #232323;
    text-decoration: none;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    outline: none;
}

li {
    list-style: none;
}

p {
    line-height: 1.9;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}
    ul li {
        margin: 0;
        padding: 0;
    }

.bg-overlay {
    position: relative;
    z-index: 1;
}
    .bg-overlay::after {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: rgba(0, 0, 0, 0.1);
    }
/* hab ich selbst hinzugefügt */
.bg-overlay-dark {
    position: relative;
    z-index: 1;
}
    .bg-overlay-dark::after {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: rgba(0, 0, 0, 0.3);
    }

.box-shadow {
    -webkit-box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.2);
}

.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-transparent {
  background-color: transparent !important;
}

.mt-15 {
  margin-top: 15px; }

.mt-30 {
  margin-top: 30px; }

.mt-40 {
  margin-top: 40px; }

.mt-50 {
  margin-top: 50px; }

.mt-70 {
  margin-top: 70px; }

.mt-100 {
  margin-top: 100px; }

.mt-150 {
  margin-top: 150px; }

.mr-15 {
  margin-right: 15px; }

.mr-30 {
  margin-right: 30px; }

.mr-50 {
  margin-right: 50px; }

.mr-100 {
  margin-right: 100px; }

.mb-15 {
  margin-bottom: 15px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-70 {
  margin-bottom: 70px; }

.mb-80 {
  margin-bottom: 80px; }

.mb-100 {
  margin-bottom: 100px; }

.ml-15 {
  margin-left: 15px; }

.ml-30 {
  margin-left: 30px; }

.ml-50 {
  margin-left: 50px; }

.ml-100 {
  margin-left: 100px; }

.pt-50 {
  padding-top: 50px !important;
}

.header-area { 
    position: fixed;
    z-index: 599;
    width: 100%;
    left: 0;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
    .header-area .main-header-area.sticky {
        top: 0;
        width:100%;
        position: fixed;
        background-color: #111111;
        box-shadow: 0 3px 50px rgba(0, 0, 0, 0.2);
        border-bottom: none;
        left: 0;
        z-index: 650;
        border-bottom-color: transparent;
    }
.main-header-area {
    background-color: rgba(0, 0, 0, 0.2);
}

.classy-nav-container {
    background-color: transparent;
    padding: 0 2%;
}
    /* Wenn Screenbreite max. 767px dann hat der Navi-Container einen festen Innenabstand */
    @media only screen and (max-width: 767px) {
        .classy-nav-container {
            padding: 0 15px;
        } 
    }
    .classy-nav-container .classy-navbar {
        height: 80px;
        padding: 0;
    }
    /* Wenn Screenbreite max. 767px dann hat die Navi-Bar eine feste Höhe */
    @media only screen and (max-width: 767px) {
        .classy-nav-container .classy-navbar {
            height: 70px;
        }
    }
    /* Wenn Screenbreite max. 767px dann hat das Navi-Logo eine maximale Breite */
    @media only screen and (max-width: 767px) {
        .classy-nav-container .classy-navbar .nav-brand {
            max-width: 90px;
            margin-right: 15px;
        }
    }

    /* Die Linie unter dem aktuell ausgewählten Navi-Element (Liste, Link) */
    .classy-nav-container .classy-navbar .classynav ul a.current-item a::after {
          content: '';
          position: absolute;
          width: 80%;
          height: 3px;
          background-color: #ff8900;
          bottom: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%);
          z-index: 1;
    }
    /* Wenn Screenbreite max. 991px dann wird die Linie unter dem Navi-Element verändert */
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .classy-nav-container .classy-navbar .classynav ul li.current-item a::after {
              left: 0;
              width: 50%;
              height: 1px;
        }
    }
    @media only screen and (max-width: 767px) {
        .classy-nav-container .classy-navbar .classynav ul li.current-item a::after {
              left: 0;
              width: 50%;
              height: 1px;
        }
    }
    

/*
 Wenn Screenbreite max. 991px dann wirft das Menü einen Schatten 
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breakpoint-on .classy-navbar .classy-menu {
        background-color: #000000;
        box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.2);
    }
    .breakpoint-on .classynav > ul > li > a {
        background-color: #000000;
    }
    .classycloseIcon .cross-wrap span {
        background-color: #ffffff;
    }
}
@media only screen and (max-width: 767px) {
    .breakpoint-on .classy-navbar .classy-menu {
        background-color: #000000;
        box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.2);
    }
    .breakpoint-on .classynav > ul > li > a {
        background-color: #000000;
    }
    .classycloseIcon .cross-wrap span {
        background-color: #ffffff;
    }
}
*/

.classy-nav-container {
    position: relative;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.6);
    /* sticky */
}
.classy-nav-container * {
    box-sizing: border-box;
}
/*
.classy-nav-container a {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-decoration: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #232323;
    display: inline-block;
}
*/
/*
.classy-nav-container a:hover, .classy-nav-container a:focus {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-decoration: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #1abc9c;
}
*/
.classy-nav-container.classy-sticky {
    position: fixed;
    z-index: 1010;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
}
.classy-nav-container.box-skins .classynav>ul>li {
    background-color: #1abc9c;
}
.classy-nav-container.box-skins .classynav>ul>li>a {
    color: #fff;
}
.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.classy-navbar {
    width: 100%;
    height: 70px;
    padding: 0.5em 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}
.classy-navbar .nav-brand {
    font-size: 26px;
    font-weight: 500;
    color: #565656;
    display: inline-block;
    margin-right: 30px;
}
/*
.classy-navbar .nav-brand:focus, .classy-navbar .nav-brand:hover {
    font-size: 26px;
    font-weight: 500;
}
*/

.welcome-welcome-slide {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 950px;
}
    @media only screen and (max-width: 767px) {
        .welcome-welcome-slide {
            height: 1200px;
        }
    }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .welcome-welcome-slide {
            height: 1300px;
        }
    }
.welcome-text {
  position: relative;
  z-index: 1;
}
    .welcome-text h2 {
        font-size: 72px;
        color: #ffffff;
        display: block;
        text-transform: capitalize;
    }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .welcome-text h2 {
            font-size: 48px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .welcome-text h2 {
            font-size: 48px;
        }
    }
    @media only screen and (max-width: 767px) {
        .welcome-text h2 {
            font-size: 36px;
        }
    }
    .welcome-text h5 {
        font-size: 21px;
        color: #ffffff;
        margin-bottom: 40px;
    }

.phany-music-area {
    position: relative;
    z-index: 2;
    background-color: rgb(255, 242, 227);
}
    .phany-music-area.home {
        box-shadow: 0px 10px 80px rgb(0, 0, 0); 
    }
    .phany-music-area.music-page {
        box-shadow: 0px 10px 80px rgb(0, 0, 0); 
    }

    .phany-music-area .phany-music-thumbnail {
        position: relative;
        z-index: 1;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 260px;
        flex: 0 0 260px;
        max-width: 260px;
        width: 260px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .phany-music-area .phany-music-thumbnail {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 300px;
            flex: 0 0 300px;
            max-width: 300px;
            width: 300px;
        }
    }
    @media only screen and (max-width: 767px) {
        .phany-music-area .phany-music-thumbnail {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
            width: 100%;
        }
    }
    .phany-music-area .phany-music-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 260px);
        flex: 0 0 calc(100% - 260px);
        max-width: calc(100% - 260px);
        width: calc(100% - 260px);
        position: relative;
        z-index: 1;
        padding: 30px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .phany-music-area .phany-music-content {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(100% - 300px);
            flex: 0 0 calc(100% - 300px);
            max-width: calc(100% - 300px);
            width: calc(100% - 300px);
        }
    }
    @media only screen and (max-width: 767px) {
        .phany-music-area .phany-music-content {
            padding: 20px;
            -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%;
            width: 100%;
        }
    }
    .phany-music-area .phany-music-content .music-published-date {
        font-size: 12px;
        display: block;
        text-transform: uppercase;
        color: #ff8900;
        letter-spacing: 1px;
        font-weight: bold;
    }
    .phany-music-area .phany-music-content h2 {
        font-size: 36px;
        display: block;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .phany-music-area .phany-music-content h2 {
            font-size: 24px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .phany-music-area .phany-music-content h2 {
            font-size: 24px;
        }
    }
    @media only screen and (max-width: 767px) {
        .phany-music-area .phany-music-content h2 {
            font-size: 20px;
        }
    }
    .phany-music-area .phany-music-content .music-meta-data p {
        text-transform: uppercase;
        color: #666666;
        font-size: 14px;
    }
    @media only screen and (max-width: 767px) {
        .phany-music-area .phany-music-content .music-meta-data p {
            font-size: 12px;
        }
    }
    .phany-music-area .phany-music-content .music-meta-data p a {
        text-transform: uppercase;
        color: #666666;
        font-size: 14px;
    }
    @media only screen and (max-width: 767px) {
        .phany-music-area .phany-music-content .music-meta-data p a {
            font-size: 12px;
        }
    }
    .phany-music-area .phany-music-content .music-meta-data p a:focus, .phany-music-area .phany-music-content .music-meta-data p a:hover {
        color: #ff8900;
    }
    .phany-music-area .phany-music-content .likes-share-download {
        position: relative;
        z-index: 1;
        padding-top: 15px;
        border-top: 1px solid #ebebeb;
    }
    .phany-music-area .phany-music-content .likes-share-download a {
        color: #a6a6a6;
        font-size: 14px;
    }
    @media only screen and (max-width: 767px) {
        .phany-music-area .phany-music-content .likes-share-download a {
            font-size: 12px;
        }
    }
    .phany-music-area .phany-music-content .likes-share-download a:focus, .phany-music-area .phany-music-content .likes-share-download a:hover {
        color: #ff8900;
    }
    .phany-music-area.style-2 {
        margin-bottom: 30px;
        background-color: #ffffff;
/*        box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.1);*/
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.6);
    }
    .phany-music-area.style-2 .phany-music-thumbnail {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .phany-music-area.style-2 .phany-music-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

.audioplayer {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    border: none;
    border-radius: 0;
    padding-bottom: 10px;
}
    .audioplayer .audioplayer-playpause {
        width: 35px;
        height: 35px;
        transition: all 0 ease-in-out;
    }
    .audioplayer .audioplayer-bar::before {
        top: 2px;
        height: 5px;
        background-color: #e1e1e1;
    }
    .audioplayer .audioplayer-bar > div {
        top: 2px;
    }
    .audioplayer .audioplayer-bar-loaded {
        display: none;
    }
    .audioplayer .audioplayer-bar-played {
        background: #ff8900;
        height: 5px;
    }
    .audioplayer .audioplayer-bar-played::after {
        display: none;
    }
    .audioplayer .audioplayer-time {
        font-size: 14px;
        color: #232323;
        font-weight: 600;
    }
    .audioplayer .audioplayer-volume-adjust > div {
        height: 5px;
    }
    .audioplayer .audioplayer-volume-adjust div div {
        background-color: #ff8900;
        height: 5px;
    }
    .audioplayer:not(.audioplayer-playing) .audioplayer-playpause, .audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover {
        background-color: #ff8900;
    }
    .audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
        margin-left: 3px;
        border-left: 12px solid #ffffff;
    }


.breadcumb-area {
    position: relative;
    z-index: 1;
    height: 300px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    
}
    @media only screen and (max-width: 767px) {
        .breadcumb-area {
            height: 200px;
        }
    }
    .breadcumb-area .title {
        font-size: 72px;
        margin-bottom: 0;
        color: #ffffff;
        text-transform: capitalize;
        text-align: center;
    }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .breadcumb-area .title {
            font-size: 48px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .breadcumb-area .title {
            font-size: 56px;
        }
    }
    @media only screen and (max-width: 767px) {
        .breadcumb-area .title {
            font-size: 30px;
        }
    }
    .breadcumb-area.single-podcast-breadcumb {
        height: auto;
        padding: 180px 0 100px;
    }

.breadcumb--con .breadcrumb {
    padding: 30px 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
}
    .breadcumb--con .breadcrumb .breadcrumb-item,
    .breadcumb--con .breadcrumb .breadcrumb-item > a,
    .breadcumb--con .breadcrumb .breadcrumb-item.active {
        font-size: 18px;
        text-transform: capitalize;
        color: #232323;
        font-weight: 500;
        letter-spacing: normal;
    }
    @media only screen and (max-width: 767px) {
        .breadcumb--con .breadcrumb .breadcrumb-item,
        .breadcumb--con .breadcrumb .breadcrumb-item > a,
        .breadcumb--con .breadcrumb .breadcrumb-item.active {
            font-size: 14px;
        }
    }
    .breadcumb--con .breadcrumb .breadcrumb-item:focus, 
    .breadcumb--con .breadcrumb .breadcrumb-item:hover,
    .breadcumb--con .breadcrumb .breadcrumb-item > a.clickable:focus,
    .breadcumb--con .breadcrumb .breadcrumb-item > a.clickable:hover,
    .breadcumb--con .breadcrumb .breadcrumb-item.active:focus,
    .breadcumb--con .breadcrumb .breadcrumb-item.active:hover {
        color: #ff8900;
    }
    .breadcumb--con .breadcrumb .breadcrumb-item.active {
        color: #a6a6a6;
    }
    .breadcumb--con .breadcrumb .breadcrumb-item.active:focus,
    .breadcumb--con .breadcrumb .breadcrumb-item.active:hover {
        color: #a6a6a6;
    }
    .breadcumb--con .breadcrumb .page-item:first-child .page-link {
        margin-left: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .breadcumb--con .breadcrumb .page-item:last-child .page-link {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .breadcumb--con .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        content: "\f105";
        font-family: 'FontAwesome';
    }



.navbar {
/*    overflow: hidden;*/
    background-color: transparent;
}

.navbar a {
    float: left;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
    @media only screen and (max-width: 600px) {
        .navbar a {
            font-size: 12px;
            padding: 14px 13px;
        }
        .navbar .dropdown-element button {
            font-size: 12px;
            padding: 14px 13px;
        }
    }

.dropdown-element {
    float: left;
    overflow: hidden;
}

.dropdown-element .dropbtn {
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 16px;
    padding: 14px 16px;
    background-color: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown-element:hover .dropbtn {
    color: #ff8900;
}

.dropdown-content {
    float: none;
    display: none;
    position: absolute;
    z-index: 10000;
    background-color: #232323;
    min-width: 160px;
}

.dropdown-content a {
    float: none;
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    text-align: left;
}

.dropdown-content a:hover {
    
}

.dropdown-element:hover .dropdown-content {
    display: block;
}

.dropdown-element .dropbtn:hover .dropdown-content {
    display: block;
}

.about-us-content {
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
}
    @media only screen and (max-width: 767px) {
        .about-us-content h1,
        .about-us-content h2 {
            font-size: 24px;
        }
    }
.about-us-content.centered {
    text-align: center;
}
.about-us-content.bigger p, a {
    font-size: 20px;
    color: #666666;
}
.about-us-content.bigger h1 {
    font-size: 24px;
}
.about-us-content.bigger h2 {
    color: #ff8900;
    font-size: 22px;
    margin-top: 30px;
}

.profile-img {
    margin-left: 25px;
    margin-bottom: 25px;
}
    @media only screen and (max-width: 767px) {
        .profile-img {
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
    }
    @media only screen and (min-width: 768px) {
        .profile-img {
            float: right;
        }
    }

.youtube-container {
    margin-top: 70px;
    width: 100%;
}
    .youtube-container h2 {
        color: #232323;
    }





