*{
    font-family: 'Poppins';
    color: whitesmoke;
}

.logo{
    width: 150px;
    margin: 20px;
}

.navbar{
    width: 100%;
    font-size: 20px;
    position: absolute;
    z-index: 999;
}

.bg-navbar{
    background: linear-gradient(#000000bb, #0000009d, #0000007c, #0000003b, transparent);
}

.navbar{
    --bs-navbar-padding-y: 0;
}

.navbar-nav{
    --bs-nav-link-hover-color: none;
}

.navbar-collapse{
    flex-grow: 0;
    text-align: center;
    transition: .4s;
}

.navbar-nav li{
    margin: 15px;
}

.navbar-toggler{
    margin: 20px;
}

.navbar-border{
    width: 100%;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    background-color: transparent;
}

.carousel{
    width: 100%;
    height: 100vh;
}

.carousel-inner{
    height: 100vh;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    overflow: hidden;
}

.carousel-item img {
    object-fit:cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 40%;
    padding: 10px;
    text-align: left;
    color: whitesmoke;
    border-radius: 5px;
    font-size: 22px;
}

.carousel-caption.r{
    transform: translate(50%,-50%);
    top: 50%;
    left: 30%;
    margin-right: 10%;
}

.carousel-content-text{
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-item.active .carousel-caption .carousel-content-text {
    opacity: 1;
    transform: translateY(0);
}

.promo_header{
    font-size: 60px;
}

h5{
    font-size: 40px;
    margin-bottom: 20px;
}

.carousel-control-prev, .carousel-control-next{
    overflow: hidden;
}

[data-bs-theme="dark"].carousel .carousel-control-next-icon, [data-bs-theme="dark"].carousel .carousel-control-prev-icon{
    filter: none;
}

.carousel .carousel-control-next-icon, .carousel .carousel-control-prev-icon{
    filter: none;
}

.promo_button, .trener_button, .eshop_button, .join_button{
    background: #3CAA0D;
    border: none;
    margin-top: 20px;
    border-radius: 15px;
    transition: .4s;
}

.promo_button{
    padding: 10px 15px;
}

.promo_button:hover{
    background: #2b790a;
    transform: scale(1.03);
}

.trener_button{
    padding: 10px 22px;
}

.trener_button:hover{
    background: #28a745;
}

.eshop_button{
    padding: 14px 28px;
    border-radius: 30px;
}

.eshop_button:hover{
    background: #60c624;
}

.join_button{
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid transparent;
}

.join_button:hover{
    background-color: #000000;
    color: #3CAA0D;
    border: 2px solid #3CAA0D;
}

.cards-container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 0;
    background: #343a40;
    flex-wrap: wrap;
}

.card{
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .navbar-collapse{
        background: #1b1b1bb9;
    }
}

@media (max-width: 1200px) {
    .card {
        flex: 1 0 30%;
    }


}

@media (max-width: 992px) {
    .card {
        flex: 1 0 45%;
    }


}

@media (max-width: 576px) {
    .card {
        flex: 1 0 100%;
    }


}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.card p{
    color: inherit;
}

.card p.padding {
    margin-bottom: 15px;
    padding: 25px;
}

.card button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 25px;
    transition: background-color 0.3s ease;
}

.card.the:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card.about-us {
    background-color: #3CAA0D;
    color: whitesmoke;
}

.card button {
    background-color: #3CAA0D;
    color: whitesmoke;
}

.card.about-us button:hover {
    background-color: #2A7A0B;
}

.card.information {
    background-color: #F2F2F2;
    color: #3CAA0D;
}

.card.testimonials {
    background-color: #3CAA0D;
    color: whitesmoke;
}

.card-content-container{
    margin-top: 25px;
    color: #333;
    background: whitesmoke;
    border-radius: 50px;
}

.card-body ul{
    padding: 0;
    display: block;
}

.card-body ul li{
    color: #333;
    text-decoration: none;
    display: block;
    padding: 15px;
}

.card-body ul li a{
    text-decoration: none;
    color: #333;
    border-bottom: 2px solid #3CAA0D;
}

.card.shadow-sm.me-4{
    margin-right: 0 !important;
}

.card.the.testimonials p, .card.the.testimonials h6 {
    color: #333;
}

.ohlasy-text{
    padding-top: 20px;
}

.padding{
    margin: 35px;
}