﻿html,
body {
    font-family: "Poppins";
    font-size: 18px;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.text-black {
    color: black;
}

.none a {
    text-decoration: none;
    color: inherit;
}

.etap {
    text-align: left;
    margin: 20px 0;
}

.nav-bar {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link-custom {
    color: white;
    text-decoration: none;
    transition: color 0.6s ease;
}

    .nav-link-custom:hover {
        color: #F4002C;
    }

.software {
    border: 1px solid black;
    border-radius: 10px;
}

.softwareitem {
    border: 1px solid black;
    border-radius: 15px;
    text-align: left;
    margin: 1rem;
    padding: 1rem 0 1rem 0;
    transition: background-color 0.3s ease;
}

    .softwareitem.active {
        background-color: white;
    }

.software img {
    margin-left: 20px;
    padding-right: 20px;
}



.logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .logo img {
        width: 50%
    }

.circledevice {
    margin-right: -90px;
    margin-top: -100px;
}

.link-item {
    padding: 10px;
    text-align: left;
    width: auto;
    white-space: nowrap;
}

.link-item2 {
    text-align: center;
    width: auto;
    white-space: nowrap;
    border-radius: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: transform 0.5s ease-in-out;
}


    .link-item2:hover {
        transform: scale(1.1);
    }




    /* DODAJ ANIMACJĘ */

    .link-item a,
    .link-item2 a {
        color: white;
        transition: color 0.5s, border-color 0s;
        padding: 8px 12px;
        border-radius: 20px;
        border: 2px solid transparent;
        text-decoration: none;
    }


.link-item.active a {
    color: #F4002C;
    border: 2px solid white;
}

.link-item a:hover {
    color: #F4002C;
    border: 2px solid white;
}

.link-item-white.active a {
    color: #F4002C;
    border: 2px solid black;
}

.link-item-white a:hover {
    color: #F4002C;
    border: 2px solid black;
}

.link-item-white a {
    color: black;
    text-decoration: none;
    transition: color 0.5s, border-color 0s;
    padding: 8px 12px;
    border-radius: 20px;
    border: 2px solid transparent;
}


.grid-site {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 20px;
}

@media (max-width: 576px) {
    .grid-site {
        grid-template-columns: 1fr;
        grid-row-gap: 12px;
    }
    
    .grid-site > div {
        padding: 6px 0;
    }
}

.grid-site-horizontal {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
}


.clogo:hover {
    cursor: pointer;
}

.svg-container {
    display: grid;
    grid-template-columns: repeat(3, 0fr);
    gap: 5px;
    gap: 10px;
    grid-row-gap: 10px;
    padding: 2rem 1rem;
}

.leftline {
    transform: translate(-80%, 40%);
}

.slider {
    border-radius: 20px;
}

.sticky_parent {
    height: 400vh;
}

.sticky {
    overflow: hidden;
    position: sticky;
    top: 0;
    height: 100vh;
}


.scroll_section {
    position: absolute;
    top: 0;
    height: 100%;
    width: 400vw;
    will-change: transform;
    display: flex;
}






.slider_image {
    width: auto;
    border-radius: 20px;
    overflow: hidden;
    min-width: max-content;
    flex-shrink: 0;
}

.slider-innerimage {
    height: 100%;
    width: 100%;
    object-fit: cover;
    width: auto !important
}

.slider-inline-container {
    display: flex;
    will-change: transform;
    padding: 0px 20px 0px 20px;
    transition: transform 0.5s ease;
}

.slider-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
}

.flex-row-reverse:nth-child(2n) {
    flex-direction: row-reverse
}

.devicesimulator {
    display: flex;
    width: 100%;
    position: relative;
}

.device-inner-block {
    width: calc(100% - 40px);
    height: calc(100% + 100px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    border-radius: 25px;
}

    .device-inner-block img {
        width: 100%;
    }


    .device-inner-block::-webkit-scrollbar {
        width: 0;
    }

.circle {
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transition: border-color 0.3s, background-color 0.3s;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

    .circle:hover {
        background-color: #F4002C;
        color: white;
    }


    .circle.active {
        width: 35px;
        height: 35px;
        background-color: #F4002C;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        font-weight: 600;
    }

@media (max-width: 576px) {
    .circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .circle.active {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

.circle-white {
    width: 35px;
    height: 35px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.circle-visible {
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.circle-visible-white {
    width: 35px;
    height: 35px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}


.circle-line {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    gap: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px;
}

    .circle-line::-webkit-scrollbar {
        display: none;
    }

@media (max-width: 576px) {
    .circle-line {
        gap: 10px;
    }
    
    .circle-line .circle {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
}


.hidden-view {
    display: none;
}

@media (max-width: 768px) {
    .changetitle {
        font-size: 1.25rem !important;
        margin-top: 1rem;
    }
    
    .changedescription {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
    
    .points-container {
        font-size: 0.8rem !important;
    }
    
    .www-description,
    .shop-description,
    .system-description,
    .marka-description,
    .newspaper-description,
    .pack-description,
    .media-description {
        height: auto !important;
        min-height: 60px;
    }
    
    .nav-handler {
        padding: 12px 0;
    }
    
    .changesite {
        font-size: 0.9rem;
    }
}

.black-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 50%;
}


/* MAIN VIEW */

.logo-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    height: 100%;
    width: 100%;
}

    .logo-container img {
        width: 125px;
        height: 125px;
        margin: 0 20px;
    }

@media (max-width: 992px) {

    .logo-container img {
        width: 100px;
        height: 100px;
        margin: 0 10px;
    }
}


.navbar-custom {
    background-color: #000;
}

    .navbar-custom .navbar-brand,
    .navbar-custom .nav-link {
        color: #fff;
    }

.nav-chat-button {
    display: none;
    color: white;
    border: none;
    padding: 10px 10px;
    cursor: pointer;
    width: 100%;
    border-radius: 999px;
}

@media (max-width: 991px) {
    .nav-chat-button {
        display: block;
    }
}

/* END OF MAIN VIEW */





/* SLIDER */

.view-slider-container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.photo-slider-container {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: auto;
}

.slider-dots {
    text-align: center;
    margin-top: 10px;
}

.navdot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
}

.navdot-white {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;
}

    .navdot.active,
    .navdot-white.active {
        background-color: #F4002C;
    }

.carousel-container {
    display: flex;
    align-items: center;
}

.arrow {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 5px;
    color: #F4002C;
}

.hidden {
    display: none;
}

/* END OF SLIDER */




@media (min-width: 992px) {
    .link-grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .link-grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .link-grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}



.ls-2 {
    letter-spacing: 2px;
}


.blackc {
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.text {
    text-align: center;
    color: black;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
}



.top-device-block {
    width: 100%;
    height: 20px;
    position: absolute;
    z-index: 999;
    top: 0px;
    border-top: 2px solid white;
    border-radius: 350px;
}

.bottom-device-block {
    width: 100%;
    height: 20px;
    position: absolute;
    z-index: 999;
    bottom: 0px;
    border-bottom: 2px solid white;
    border-radius: 20px;
}

.left-device-block {
    width: 10px;
    height: 100%;
    position: absolute;
    z-index: 999;
    left: 0px;
    border-left: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.right-device-block {
    width: 10px;
    height: 100%;
    position: absolute;
    z-index: 999;
    right: 0px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}




@media (max-width: 1150px) {
    .logo-mainpage {
        animation-duration: 1s;
        animation-fill-mode: both;
        opacity: 0;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeOut {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    .logo-mainpage.fade-in {
        animation-name: fadeIn;
    }

    .logo-mainpage.fade-out {
        animation-name: fadeOut;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero {
    width: 100vw;
    overflow: hidden;
}

.svg-desktop {
    display: block;
}

.svg-mobile {
    display: none;
}

@media (max-width: 768px) {
    .svg-desktop {
        display: none;
    }
    
    .svg-mobile {
        display: block;
    }
    
    .hor {
        width: 100%;
    }
}





.dot {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: black;
}

h2 {
    font-size: clamp(24px, 5vw, 50px);
}

p {
    font-size: clamp(18px, 3vw, 30px);
    line-height: clamp(1.5em, 2vw, 3em);
}

.full {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mainimg img {
    height: 100%;
    width: auto;
}


/* */

.pe-2 {
    display: block;
    float: left;
}

.www-description {
    height: 130px;
}

.shop-description {
    height: 100px;
}

.system-description {
    height: 100px;
}

.marka-description {
    height: 80px;
}

.newspaper-description {
    height: 80px;
}

.pack-description {
    height: 80px;
}

.media-description {
    height: 80px;
}

.logo-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    padding: 5px;
    overflow: hidden;
    max-height: none;
}

.logo-grid-item {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px;
}

    .logo-grid-item:hover {
        transform: scale(1.05);
        opacity: 0.8;
    }

.logo-grid-view {
    display: block;
}

.logo-single-view {
    display: none;
}
