@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

:root{
    font-size: 14px;
}

html{
    scroll-behavior: smooth;
}

body{
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}

.page-wrapper{
    overflow-x: hidden;
}

p, b, address{
    color:#797979;
}

h1{
    font-size: 36px;
    color: #DBAC34;
}

h2{
    font-size: 26px;
    color: #DBAC34;
}

h3{
    font-size: 18px;
    font-weight: 400;
}

.border-radius-8{
    border-radius: 8px;
}

.bg-light-gray{
    background-color: #f3f3f3;
}

@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 970px;
    }
}


/* HEADER */

.header {
   filter: drop-shadow(3px 0px 5.5px rgba(147,147,147,0.5));
    z-index: 9;
    top:0;
    background-color: #fff;
}

.header .nav-link{
    font-size: 15px;
    transition:0.3s all;
    color:#625226 !important;
}

.header .nav-link:hover{
    color:#DBAC34 !important;
}

.header__logo img{
    height:45px;
}



@media (min-width: 1200px){
    .header__logo img{
        height:65px;
    }
}

@media (min-width: 992px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
}

@media (max-width: 992px){
    .navbar-nav{
        text-align: center;
    }
}

/* hero */

.hero-image-desktop{
    height: 600px;
    object-fit: cover;
    object-position: calc(50% + 151px) top;
}

@media(max-width:991px){
    .hero-image-desktop{
        height: 450px;
        object-position: calc(42% + 11px) top;
    }
}

.hero-section{
    padding-top: 45px;
}

/* BANNER */

.banner-section{
    margin-top: -90px;
}

.banner-wrapper {
    height: 180px;
    background-color: #fff;
    filter: drop-shadow(3px 0px 5.5px rgba(147,147,147,0.5));
}

/* ICON BOX */

.icon-box img{
    width: 68px;
    height: auto;
    margin-right: 20px;
}

/* working-history */

.working-history > div{
    display: grid !important;
    grid-template-columns: 70px 1fr;
}

/* ABOUT US SECTION */
.about-us-section{
    padding: 60px 0 30px;
}

/* wettermoderatorin */
.wettermoderatorin {
    padding: 60px 0 80px;
}

.wettermoderatorin img{
    max-height: 150px;
    width: auto;
}

/* working history section */
.working-history-section{
    padding: 100px 0 50px;
}

/* MODERATION SECTION */
.moderation-section{
    padding: 100px 0 0px;
}

/* TESTIMONIAL SECTION */

@media(min-width:768px){
    .testimonial-section{
        padding: 60px 100px 50px;
    }
    
    .testimonial-section .icon-box{
        padding-right: 89px;
    }
}

.navbar-toggler-icon {
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);
}



/* footer */

footer{
    padding-top: 55px;
}

.footer-container{
    padding-bottom: 80px;
}

@media(max-width:992px){
    h1 {
        font-size: 26px;
    }

    h2{
        font-size: 20px;
    }

    .icon-box img {
        width: 48px;
    }
    
    .banner-section{
        margin-top: -70px;
    }

    .banner-wrapper {
        height: 140px;
    }    
    section:not(.banner-section, .hero-section),
    .footer-container{
        padding: 60px 0 !important;
    }

    footer{
        padding-top: 0 !important;
    }

    .icon-box img{
        margin-right: 10px;
    }
}

/* audio player */
.play-container{
    width: 60px;
    height: 60px;
    border: 1px solid #e1e1e1;
    border-radius: 50%;
}
@media(max-width:767px){
    .play-container {
        width: 40px;
        height: 40px;
   }
}
.audio-player {
    width: 100%;
    background: #fff;
    color: white;
    font-size: 0.75em;
    overflow: hidden;
    display: flex;
}
.audio-player .timeline {
    background: #5c5c5c;
    width: 100%;
    height: 3px;
    position: relative;
    cursor: pointer;
}
.audio-player .timeline .progress {
    background: #5c5c5c;
    width: 0%;
    height: 100%;
    transition: 0.25s;
}
.timeline-pointer{
    background: #5c5c5c;
    position: absolute;
    left: -4px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.audio-player .controls {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.audio-player .controls > * {
    display: flex;
    justify-content: center;
    align-items: center;
}
.audio-player .controls .toggle-play.play {
    cursor: pointer;
    position: relative;
}
.audio-player .controls .toggle-play.play:after{
    content: '';
    display: block;
    background-image: url('img/play-fill.svg');
    background-size: 36px auto;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
}
@media(max-width:769px){
    .audio-player .controls .toggle-play.play:after, .audio-player .controls .toggle-play.pause:before{
        background-size: 20px auto !important;
   }
}
.audio-player .controls .toggle-play.play:hover {
    transform: scale(1.1);
}
.audio-player .controls .toggle-play.pause {
    height: 15px;
    width: 20px;
    cursor: pointer;
    position: relative;
}
.audio-player .controls .toggle-play.pause:before {
    content: '';
    display: block;
    background-image: url(img/pause-fill.svg);
    background-size: 36px auto;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 50px;
    min-height: 50px;
}
.audio-player .controls .toggle-play.pause:hover {
    transform: scale(1.1);
}
.audio-player .controls .time {
    display: flex;
}
.audio-player .controls .time > * {
    padding: 2px;
}
.audio-player .controls .volume-container {
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.audio-player .controls .volume-container .volume-button {
    height: 26px;
    display: flex;
    align-items: center;
}
.volume-container .volume-button img{
    width:35px 
}
.audio-player .controls .volume-container .volume-button .volume {
    transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-slider {
    position: absolute;
    left: 6px;
    top: 49px;
    z-index: -1;
    width: 0;
    background: #f0f0f0;
    height: 7px;
    box-shadow: 0 0 20px #000 a;
    transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
    background: #5c5c5c;
    height: 100%;
    width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
    width: 120px;
}
.icono-volumeMute img.volume-icon-sound{
    display: none;
}
.icono-volumeMedium img.volume-icon-muted{
    display: none;
}
.time, .name{
    display: none !important;
}


/* testimonial slider */
.slick-list{
    padding-top: 10px;
    padding-bottom: 30px;
}

.slick-track{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.slick-slide{
    height:unset;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    min-width: 5px;
    padding:0;
    min-height: 5px;
    border-radius: 50%;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;          
    background-color: #cccccc;
    -webkit-appearance: none;
}

.slick-dots li.slick-active button{
    background-color: #535353;
}

.single-testimonial{
    padding: 0 10px;
}

.single-testimonial > div{
    border-radius: 6px;
    filter: drop-shadow(2.121px 2.121px 4.5px rgba(130,130,130,0.5));
    background-color: #ffffff;
    padding: 20px;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.slick-list {
    height: unset !important;
}
