.partneri {
    display: flex;
    justify-content: center;
    align-items: center;
}


.nadpis h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 71px;

    text-align: center;

    color: #000000;

    margin-bottom: 30px;
}

.popis-partneri {
    margin-bottom: 70px;
}

.popis-partneri p {

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;

    text-align: center;

    color: #A6A6A6;

    margin-bottom: 30px;
}


.nadpis-obrazok h1 {
    font-family: 'Remhu';
    font-style: normal;
    font-weight: 400;
    font-size: 150px;
    line-height: 222px;

    text-align: center;

    color: #000000;
}

.nadpis-obrazok h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 29px;
    line-height: 40px;

    margin-top: -45px;
    text-align: center;

    color: #A6A6A6;
}

.img-eseso img {
    margin-top: 150px;
    margin-bottom: 100px;
    width: 1300px;
}

.eseso-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nadpis-obrazok img {
    margin-top: 40px;
    margin-bottom: 60px;
    width: 450px;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); /* Creates a flexible number of columns */
    
  }

  .image-grid-item {
    padding: 8px;
    display: flex; /* Flexbox to center the content */
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    outline: black 1px solid;
    height: 150px; /* Adjust the height as needed */
    background-color: white; /* In case the image is transparent */
    filter: grayscale(1);
    box-sizing: border-box; /* Includes border in the width and height */
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  .wrapper > div {
    
    text-align: center;
  }

  .image-grid-item img {
    max-width: 100%; /* Ensure the image does not overflow its container */
    max-height: 100%; /* Adjust the image to the container's height */
    object-fit: contain; /* Ensures the image fits within its container without stretching */
  }

  /* Optional: if you want to remove the grayscale effect on hover */
  .image-grid-item:hover {
    filter: none;
    transform: scale(1.1); /* Scales up the item */
    z-index: 1000;
  }

@media (max-width: 1400px) {
    .img-eseso img {
        width: 1200px;
    }
}

@media (max-width: 1250px) {
    .img-eseso img {
        width: 970px;
    }
}










@media (max-width: 970px) {
    .nadpis-obrazok img {
        width: 300px;

    }

    .nadpis-obrazok h3 {
        font-size: 20px;
    }

    .popis-partneri p {
        font-size: 15px;
    }

    .img-eseso img {
        width: 700px;
    }
}
@media (max-width: 700px) {
    .img-eseso img {
        width: 500px;
    }
}

@media (max-width: 500px) {
    .img-eseso img {
        width: 400px;
    }
}
@media (max-width: 400px) {
    .img-eseso img {
        margin-top: 50px;
        width: 300px;
    }
}