.scrolling-section {
width: 100%;
    color: white;
    background-color: #fff;
    padding: 0px 0px 0px 10px;
    text-align: center;
    align-items: center;
    display: flex;
    background: #1ca234;
}

.topsearch-text {
    width: 120px;
    font-size: 18px;
    margin: 0 auto;
    display: flex;
    color: white;
}


.scrolling-container {
    width: 100%;
    overflow: hidden; 
    border-radius: 5px;
    box-sizing: border-box; 
    z-index: 50;
}


.scrolling-text {
    white-space: nowrap; 
    display: inline-block;
    animation: scrollText 30s linear infinite; 
    padding-left: 100%;
    color: white;
}


.scrolling-text p {
    cursor: pointer;
    padding: 3px;
    display: inline-block; 
    font-size: 1.1em;
    color: white;
    font-weight: 500;
}

.scrolling-text p:hover {
    color: blue;
}


.scrolling-container:hover .scrolling-text {
    animation-play-state: paused;
}

/* Definicja animacji */
@keyframes scrollText {
    0% {
        transform: translateX(0); 
    }
    100% {
        transform: translateX(-100%); 
    }
}

.separator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #c3c3c3;
  border-radius: 50%;
  margin: 2px 5px; 
  margin-left: 3px;
}

.button-burger {
    align-items: center;
    border: none;
    outline: none;
    background-color: #1ca234;
    
    color:white;
    margin-right: 30px;
}

.tc-video-slider1 {
    height: 200px;
}

.tc-header-slider2 {
    /* height: 350px; */
}

.logo-width {
    padding-left: 20px;
    /* margin-right: 220px */
}

.logo-height {
    height: 200px;
}

.banner-teq {
    width: 1175px;
    margin-top: 20px;
}

.logo-loading {
    width: 200px;
    height: 200px;
    align-items: center;
    position: flex;
}

.teq-logo {
    height: 50px;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* White background as in your image */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top of everything */
    transition: opacity 0.5s ease-out; /* Smooth fade-out effect */
}

.loader-container {
    position: relative; /* Allows logo to be positioned inside */
    width: 120px; /* Size of the entire loader */
    height: 120px;
    display: flex; /* For centering the logo */
    justify-content: center;
    align-items: center;
   
}

.loading-circle {
    width: 100%;
    height: 100%;
    border: 8px solid #e0e0e0; /* Light grey base for the circle */
    border-top: 8px solid #23af00; /* Blue top border, similar to your image */
    border-radius: 50%;
    animation: rotateCircle 2s linear infinite; /* Spin animation for the circle */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    position: absolute; /* To allow logo to overlay */
}

/* Keyframes for the circle rotation */
@keyframes rotateCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.loader-logo {
    max-width: 70%; /* Adjust based on your logo's size */
    max-height: 70%;
    display: block; /* Remove extra space below image */
    z-index: 10000; Ensure logo is above the circle
}





    /*  */