.section {
    height: initial !important;
    min-height: 100px !important;
}

@media (max-width: 900px) {
    .section {
        padding-bottom: 9vh !important;
    }
}

@media (min-width: 901px) {
    .section {
        padding-bottom: 9vh !important;
    }
}

@media (min-width: 1200px) {
    .discount {
        font-size: 2.2rem;
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .discount {
        font-size: 1.9rem;
        text-align: center;
    }
}

a:hover {
    color: white;
}

.contact-btn {
    display: block;
    padding-right: 20px;
}


.dark-background {
    background-image: url("../img/section2-background.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}


#section-features {
    /* ... */
}

@media screen and (max-width: 730px) and (orientation: portrait) {
    #section-features {
        background-size: 730px 100%;
    }
}

#section-patiimaks {
    /* ... */
}

#section-users-reviews {
    /* ... */
}

@media screen and (max-height: 650px) and (orientation: landscape) {
    #section2-screen {
        display: none !important;
    }
}

@media screen and (orientation: portrait) {
    #section4-concept {
        display: none !important;
    }
    #section5-meeting {
        display: none !important;
    }
}

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
            
#mobile-nav {
    top: 15px !important;
}

.last-update {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 0.8rem;
    background: rgb(240, 240, 240);
    color: rgb(23, 55, 94, 0.6) !important;
    padding: 5px 15px;
}

@media (max-width: 768px) {
    .last-update {
        width: 100%;
        position: static;
        text-align: center;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .last-update {
        display: none !important;
    }
}

.live-blinking-icon {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background: red;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 2px;
    animation: blink-animation 1.5s steps(2, start) infinite;
    -webkit-animation: blink-animation 1.5s steps(2, start) infinite;
}

#header {
    background: linear-gradient(135deg, #17375E 0%, #17375E 100%) !important;
    position: fixed !important;box-shadow: 0px 3px 10px 1px rgb(0 0 0 / 30%);
}

#header > .logo {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 300 !important;
}

#header > .logo:hover {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 300 !important;
    background: rgba(0, 0, 0, 0.1);
}

.chat-msg-box {
    display: inline-block;
    border: 1px solid white;
    border-radius: 200px;
    width: fit-content;
    padding: 10px 20px;
    border-left-width: 15px !important;
}

.chat-msg-box.chat-msg-box--right {
    border-left-width: 1px !important;
    border-right-width: 15px !important;
}

@media (max-width: 1200px) {
    .chat-msg-box {
        font-size: 0.5rem;
        border-left-width: 8px !important;
    }
    .chat-msg-box.chat-msg-box--right {
        border-left-width: 1px !important;
        border-right-width: 8px !important;
    }
}

  
.thumbnail-video {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.thumbnail-video:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
#fullscreen-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999999999;
}
#fullscreen-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#close-btn {
    position: absolute;
    top: 10px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
} 

#hero-mockup {
    transition: all 0.2s ease-in-out;
    cursor: move;
}
#hero-mockup:hover {
    transform: scale(1.0) translateX(-50px);
    transition: all 0.6s ease-in-out;
}

@media (min-width: 1200px) {
    .title-slogan {
        min-width: 530px !important;
    }
}

.btn-hover-lighter:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}





.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 auto;
    width: calc(100% - 40px); /* Dostosowanie szerokości do uwzględnienia marginesu */
    max-height: 100%; /* Ogranicz maksymalną wysokość */
    object-fit: contain; /* Zachowaj aspect ratio */
    margin: 0 20px; /* Dodaj marginesy po obu stronach */
    max-height: 130px; /* Ustaw maksymalną wysokość na 150px */
}

@media screen and (min-width: 1200px) {
    .carousel-item {
        width: calc(20% - 40px); /* Dostosowanie szerokości dla 5 elementów na ekran */
    }
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
    .carousel-item {
        width: calc(33.333% - 40px); /* Dostosowanie szerokości dla 3 elementów na ekran */
    }
}

@media screen and (max-width: 768px) {
    .carousel-item {
        width: calc(100% - 40px); /* Dostosowanie szerokości dla 1 elementu na ekran */
    }
}
