
:root{
    --main-color: #bb181a;
    --black: black;
    --light-color: #868e96;
}


*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    
    transition: all .2s linear;
}

::selection{
    background: var(--main-color);
    color: #eaeaea;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
}

html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background: #eaeaea;
}

html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 5rem;
}

section{
    padding: 2rem 9%;
}

.heading{
    font-size: 4rem;
    text-decoration: underline;
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: black;
    
}

.heading span{
    
    color: #bb181a;

}



.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 2rem;
    background: #eaeaea;
    font-weight: 500;
    cursor: pointer;
    color: #bb181a;
    font-size: 1.7rem;
    text-align: center;
    
}

.btn:hover{
    background: #bb181a;
    color: #eaeaea;
    
    
}

.btn1{
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    background: #bb181a;
    font-weight: 500;
    cursor: pointer;
    color: #eaeaea;
    font-size: 1.7rem;
}

.btn1:hover{
    background: red;
    color: #eaeaea;
    letter-spacing: .1rem;
}





/*----------------------header section startet hier------------------*/

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 3rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, .7);
    box-shadow: 0rem .1rem .5rem rgba(0, 0, 0, .4);
    z-index: 1000;
}

.header .logo{
    font-size: 2.7rem;
    color: #eaeaea;
    font-weight: bold;
    /*text-transform: uppercase;*/
    letter-spacing: .01rem;
}

.header .logo span{
    color: #bb181a;
    
}

.header .navbar a{
    font-size: 2rem;
    color: #eaeaea;
    margin: 0 2rem;
}

.header .navbar a:hover{
    color: #bb181a;
}

.header .icons div{
    font-size: 2.5rem;
    color: #eaeaea;
    padding: .5rem;
    cursor: pointer;
    margin-left: 1rem;
    
}

.header .icons div:hover{
    transform: rotate(180deg);
    color: #bb181a;
}

.header .icons a{
    font-size: 1.5rem;
    letter-spacing: .1rem;
    color: #eaeaea;
    background: #bb181a;
    font-weight: 500;
    
    padding: .8rem 2rem;
    border: none;
}

.header .icons a:hover{
    color: #bb181a;
    background: #eaeaea;
}

#menu-btn{
    display: none;
}

.header.active{
    padding: 2rem 9%;
    background: rgba(0, 0, 0, .8);
}



/*----------------------header section endet hier------------------*/



.home{
    padding: 0%;
}

.home .home-slider .box{
    min-height: 100vh;
    display: flex;
    
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-size: cover !important;
    background-position: center !important;
}


.home .home-slider .box .content{
    text-align: center;
    max-width: 70rem;
}

.home .home-slider .box .content h3{
    font-size: 5rem;
    color: #eaeaea;
    
    transition-delay: .2s;
}

.home .home-slider .box .content  span{
    
    color: red;
    
    
}

.home .home-slider .box .content p{
    font-size: 1.7rem;
    color: #eaeaea;
    padding: 1rem 0;
    transition-delay: .4s;
}

.home .home-slider .box .button .btn-1{
    background: #bb181a;
    color: #eaeaea;
    margin-left: .5rem;
}

.home .home-slider .box .button .btn-1:hover{
    background: #eaeaea;
    color: #bb181a;
}

.home .home-slider .box .button{
    transition-delay: .6s;
}

.home .home-slider .box .content > *{
    transform: translateY(2rem);
    opacity: 0;
}

.home .home-slider .box .content > *{
    transform: translate(0);
    opacity: 1;
}

/*.home .home-slider .swiper-slide-active .content > *{
    transform: translateY(0);
    opacity: 1;
}*/

.feature .feature-slider{
    padding-bottom: 4rem;

}

.feature .feature-slider .box{
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0;
}

.feature .feature-slider .box .image{
    height: 40rem;
    width: 100%;
    overflow: hidden;
}

.feature .feature-slider .box .image img{

    height: 100%;
    width: 100%;
    object-fit: cover;
}

.feature .feature-slider .box:hover .image img{

    transform: scale(1.2);
}

.feature .feature-slider .box .content{

    padding: 1rem 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    align-items: center;


}

.feature .feature-slider .box .content h3{

    font-size: 2rem;
    font-weight: bold;
    color: #eaeaea;
    
    background: rgba(0, 0, 0, .3);
    padding: .2rem;
    margin-top: .5rem;

}

.feature .feature-slider .box .content .price{
    width: 20rem;
    height: 10rem;
    line-height: 10rem;
    border-radius: 10%;
    text-align: center;
    margin: auto;
    background: #bb181a;
    font-size: 2rem;
    font-weight: bolder;
    color: #eaeaea;
}

.feature .feature-slider .box:hover .content .price{
    background: none;
    border: .3rem solid #eaeaea;
}


.schedule1  h1{
    display: block;
    text-decoration: underline;
    padding-top: 2rem;
    font-size: 3rem;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 2rem;

}


.schedule1  h2{
    display: block;
    color: #bb181a;
    
    font-size: 2.4rem;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 1rem;

}


.schedule1  h3{
    display: block;
    text-decoration: underline;
    padding-top: .1rem;
    font-size: 2.2rem;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 2rem;

}


.schedule1  h4{
    display: block;
    
    padding-top: 2rem;
    font-size: 1.8rem;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 2rem;

}

.schedule1  p{
    display: block;
    
    padding-top: 2rem;
    font-size: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 2rem;

}

.schedule1  p a{
    display: block;
    color: #bb181a;
    
    font-size: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 1rem;

}





.schedule1 .box-container11 h3{
    display: block;
   font-family: Arial, Helvetica, sans-serif;
    text-decoration: underline;
    font-size: 1.7rem;
    color: #bb181a;
    
    
}

.schedule1 .box-container11 h1 i{
    
    font-size: 1.4rem;
    color: #bb181a;
    
    
}

.schedule1 .box-container11 h1 a{
    
    font-size: 1.4rem;
    color: #bb181a;
    
    
}


.schedule1{
    background-color: #eaeaea;
}

.schedule .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(25rem,1fr));
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.schedule .box-container .box{
    background: #eaeaea;
    overflow: hidden;
    padding: 1rem;
}

.schedule .box-container .box .content{
    padding: 2rem;
}

.schedule .box-container .box .content h3{
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: .5rem;
    text-decoration: underline;
    text-align: center;
}

.schedule .box-container .box .content p{
    color: black;
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

.schedule .box-container .box .icons{
    padding: 0 2rem;
    text-align: center;
}

.schedule .box-container .box .icons span{
    display: block;
    font-size: 1.5rem;
    color: black;
    padding: .5rem 0;
    text-align: center;
}

.schedule .box-container .box .icons span i{
    margin-right: .5rem;
    text-align: center;


}

.schedule .box-container .box .btn{
    margin: 1.5rem 2rem;
    background: #bb181a;
    color: #eaeaea;
    
    
    
    

}

.schedule .box-container .box .btn:hover{
    background: red;
}

.schedule .box-container .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainers .trainer-slider{
    padding-bottom: 4rem;
}

.trainers .trainer-slider .box{
    position: relative;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0;
}

.trainers .trainer-slider .box .image{
    height: 40rem;
    width: 100%;
    overflow: hidden;

}

.trainers .trainer-slider .box .image img{

    height: 100%;
    width: 100%;
    object-fit: cover;
}

.trainers .trainer-slider .box .name{
    padding: 2rem 0;
}

.trainers .trainer-slider .box .name h1{
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}

.trainers .trainer-slider .box .name p{
    font-size: 2.5rem;
    color: #bb181a;
}


.testimonail .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 1.5rem;
    padding: 7rem 0;
}

.testimonail .box-container .box{
    padding: 2rem;
    position: relative;
    text-align: center;
    background: #eaeaea;
    box-shadow: 0 .1rem .5rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
}

.testimonail .box-container .box:hover{
    transform: translateY(-5%);
    transition: .5s linear;
    background: #eaeaea;
    border: .2rem solid #bb181a;
}

.testimonail .box-container .box .image{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
}

.testimonail .box-container .box .image img{
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: -6rem;
}

.testimonail .box-container .box .name{
    padding: 1rem 0;
}

.testimonail .box-container .box .name p{
    color: black;
    font-size: 1.3rem;
}

.testimonail .box-container .box .name h1{
    font-size: 2rem;
    color: black;
}

.testimonail .box-container .box .name p span{
    text-transform: none;
}

.testimonail .box-container .box p{
    font-size: 1.5rem;
    color: black;
    font-weight: 400;
    line-height: 1.8;
}


.blogs{
    background-color: #eaeaea;
}


.blogs .blogs-slider{
    padding-bottom: 4rem;
    
}


.blogs .blogs-slider .box{
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
    background: #eaeaea;
    
    box-shadow: 0 .5rem .5rem rgba(0, 0, 0, .3);
}

.blogs .blogs-slider .box .image{
    height: 40rem;
    width: 100%;
    overflow: hidden;
}

.blogs .blogs-slider .box .image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.blogs .blogs-slider .box:hover .image img{

    transform: scale(1.2);
}

.blogs .blogs-slider .box .content{
    padding: 2rem;
    padding-bottom: 1rem;
}

.blogs .blogs-slider .box .content h3{

    font-size: 2rem;
    color: black;
    font-weight: bold;
    padding-bottom: 1rem;
}

.blogs .blogs-slider .box .content span{
    font-size: 1.3rem;
    color: black;

}


.blogs .blogs-slider .box .content span i{
    margin-right: .5rem;
    color: #bb181a;
}

.blogs .blogs-slider .box .content p{
    padding-top: 1rem;
    color: black;
    line-height: 1.8;
    font-size: 1.5rem;
}

.blogs .blogs-slider .box .button{
    text-align: center;
    padding-bottom: 6rem;
}

.blogs .blogs-slider .box .button .btn{
    background: #bb181a;
    color: #eaeaea;
}

.blogs .blogs-slider .box .button .btn:hover{
    background: red;
    color: #eaeaea;
}



















.blogs1 .blogs-slider{
    padding-bottom: 4rem;
    
}


.sponsoren .row .content {
    margin-top: 5rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding-bottom: 3rem;
    overflow: hidden;
    text-align: center;
   
   
    
   
}

.blogs .blogs-slider .box .image{
    height: 40rem;
    width: 100%;
    overflow: hidden;
}

.blogs .blogs-slider .box .image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.blogs .blogs-slider .box:hover .image img{

    transform: scale(1.2);
}

.blogs .blogs-slider .box .content{
    padding: 2rem;
    padding-bottom: 1rem;
}















.footer{
    background:  rgba(0, 0, 0, .7);
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(33rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box{
    padding: 2rem;
}

.footer .box-container .box h1{
    font-size: 2.5rem;
    color: #eaeaea;
    font-weight: 600;
    padding-bottom: 1rem;
}

.footer .box-container .box .text{
    color: #eaeaea;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.8;
    padding-bottom: 1rem;
}

.footer .box-container .box .icon{
    padding: 1rem 0;

}

.footer .box-container .box .icon a i{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    background: #bb181a;
    text-align: center;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 .5rem;
    color: #eaeaea;
}

.footer .box-container .box .icon a i:hover{
    color: #bb181a;
    background: none;
    border: .2rem solid #bb181a;
}

.footer .box-container .box .icons a{
    display: block;
    color: #eaeaea;
    font-size: 1.5rem;
    margin: 1.5rem 0;
}

.footer .box-container .box .icons a i{
    margin-right: 1rem;
    color: #bb181a;
}

.footer .box-container .box .icons a:hover i{
    
    color: #eaeaea;
}

.footer .box-container .box .icons a:hover{
    color: #bb181a;
}






.footer .credit{
    padding: 3rem 0;
    text-align: center;
    border-top: .1rem solid #868e96;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #eaeaea;
}

.footer .credit span{
    color: #bb181a;
}

.footer .credit a{
    text-align: center;
    padding: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    font-size: 1.5rem;
    color: #eaeaea;
    
    
}

.footer .credit a:hover{
    color: #bb181a;
    
}


    
    



















/*--------------------responsive section--test--------------------*/

@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem;
    }

    .header.active{
        padding: 2rem;
    }

    section{
        padding: 2rem;
    }
}

@media (max-width:768px){

   

   

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(0, 0, 0, .8);
        border-top: .1rem solid #bb181a;
        clip-path: polygon(0 0 , 100% 0 , 100% 0 , 0 0);
        
    }

    .header .navbar.active{
        clip-path: polygon( 0 0, 100% 0 , 100% 100%, 0 100%);
    }

    .header .navbar a{
        display: block;
        margin: 4rem;
        font-size: 2.4rem;
        text-align: center;
        
        
    }

    .feature .feature-slider .box .content h3{
        padding: 1rem;
    }

    .testimonail .box-container{
        padding: 1rem 0;
    }

    .testimonail .box-container .box{
        margin-top: 6rem;
    }

    
}


@media (max-width:480px){

    html{
        font-size: 50%;
    }

    .header .icons a{
        letter-spacing: none;
        font-size: 1.3rem;
        padding: 1rem;
    }
}

