@import url("animation-efects.css");
        .container {
            max-width: 95%;
												margin: 0 auto;
												width: 100vw;
        }
        .container.card {
            margin-top: 3.3rem;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: -5px -4px 47px 3px rgba(198, 198, 198, 0.3);
            text-align: center;
            padding: 3.6rem;
            /* padding-bottom: 3.6rem; */
        }
        .title-main {
            font-size: 3.6rem;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 2.1rem;
        }
        .main-image svg {
            max-width: 61rem;
            margin-bottom: 2rem;
        }

        .subheading{
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 3rem;
        }

        .card .text {
            font-size: 13px;
            letter-spacing: 0.26px;

        }
        footer {
            color: #b1b1b1;
            font-size: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* padding-top: 1.7rem; */
        }
        footer .logo img:hover {
										width: 124px !important;
										position: absolute;
										top: -60px;
								}
        footer .left-side {
            display: flex;
            align-items: center;
        }
        /* Medias */
        @media screen and (max-width: 1024px){
            .container {max-width: 90%;}
        @media screen and (max-width: 768px){
            html {font-size: 7px;}
            .container {
                max-width: 90%;}
            .container.card {margin-top: 6rem;}
            .card .text { font-size: 1.6rem;}
        } 
        @media screen and (max-width: 480px){
            html {font-size: 5.7px;}
            .container {max-width: 95%;}
            .title-main {font-size: 6.6vw;}
            /* .container.card {margin-top: 2rem;} */
            .subheading{font-size: 13px;}
            .card .text { font-size: 12px;}
            footer {flex-direction: column;}
        } 
        }
h1{
  text-align:center;
  text-transform: uppercase;
  /*color: #F1FAEE;*/ 
  font-size: 4rem;
}

.roller{
  height: 4.125rem;
  line-height: 4rem;
  position: relative;
  overflow: hidden; 
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
  color: #1D3557;
}


#spare-time{
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 1rem;
  margin-top: 0;
  /*color: #A8DADC;*/
  
}

.roller #rolltext {
  position: absolute;
  top: 0;
  animation: slide 5s infinite;  
}

@keyframes slide {
  0%{
    top:0;
  }
  25%{
    top: -4rem;    
  }
  50%{
    top: -8rem;
  }
  72.5%{
    top: -12.25rem;
  }
}

@media screen and (max-width: 600px){
  h1{
  text-align:center;
  text-transform: uppercase;
  color: #F1FAEE; 
  font-size: 2.125rem;
}
  
  .roller{
  height: 2.6rem; 
  line-height: 2.125rem;  
  }
  
  #spare-time {
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }
  
  .roller #rolltext {  
  animation: slide-mob 5s infinite;  
}
  
  @keyframes slide-mob {
  0%{
    top:0;
  }
  25%{
    top: -2.125rem;    
  }
  50%{
    top: -4.25rem;
  }
  72.5%{
    top: -6.375rem;
  }
}
}
	
.counter {
  display: flex;
  font-size: 48px;
  font-weight: bold;
  overflow: hidden;
}
.digit {
  transition: transform 0.5s ease;
  height: 60px; /* Dostosuj odpowiednio */
  width: 40px;  /* Dostosuj odpowiednio */
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-scanline {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgb(0, 127, 176), transparent);
    animation: docScan 5s cubic-bezier(.65,.05,.36,1) infinite;
    z-index: 10; opacity: 0.75;
}
@keyframes docScan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}
