.juri-wrapper {
    background-color: #fff;
    margin: 50px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 450px);
    gap: 75px;
    justify-items: center;
    padding: 75px;
    justify-content: center;
    /* direction: rtl; */
}

.juri {
    width: 450px;
    gap: 20px;
    display: grid;
    justify-items: center;
    text-align: center;
    align-content: start;
}

.juri-foto {
    width: 250px;
    height: 250px;
}

.juri-foto img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 150px;
}

.juri-title {
    font-size: 20pt;
    color: #184677;
    font-weight: 600;
}

.juri-desc {
    font-weight: 100;
    font-size: 13pt;
}

@media screen and (max-width: 1324px) {
    .juri-wrapper {
        grid-template-columns: repeat(auto-fill, 310px);
    }

    .juri {
        width: 300px;
    }

    .juri-foto {
        width: 200px;
        height: 200px;
    }

    .juri-foto img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 959px) {
    .juri-wrapper {
        grid-template-columns: repeat(auto-fill, 200px);
    }

    .juri {
        width: 200px;
    }

    .juri-foto {
        width: 200px;
        height: 200px;
    }

    .juri-foto img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 724px) {
    .juri-wrapper {
        grid-template-columns: repeat(auto-fill, 100%);
        padding: 75px 10px;
    }

    .juri {
        width: 300px;
    }

    .juri-foto {
        width: 200px;
        height: 200px;
    }

    .juri-foto img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 710px) {
    .juri-wrapper {
        grid-template-columns: repeat(auto-fill, 100%);
    }
}

@media screen and (max-width: 426px) {
    .juri-wrapper {
        grid-template-columns: repeat(auto-fill, 100%);
        margin: 10px;
    }
    
    .juri {
        width: 300px;
    }

    .juri-foto {
        width: 150px;
        height: 150px;
    }

    .juri-foto img {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 375px) {
    .juri-wrapper {
      grid-template-columns: repeat(auto-fill, 100%);
    }
}