.main_container {
    background-color: #f5f5f5de;
}
.inner_examples {
    width: 80%;
    margin: 40px auto 0;
    padding-bottom: 60px;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.15);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #f5f5f5de;
}

.high_examples {
    display: flex;
    justify-content: space-between;
    width: 92%;
    padding-top: 40px;
    margin: 0 auto;
}

input.add_photo {
    background-color: rgb(32, 160, 82);
    padding: 10px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.add_block {
    display: flex;
    flex-direction: column;
}

span.high_examples__span__page {
    padding-right: 10px;

}

span.high_examples__span {
    padding: 8px;
    cursor: pointer;
}

span.high_examples__span__select {
    background-color: rgb(32, 160, 82);
    border-radius: 6px;
    color: white;
}

ul.photo_examples__inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

li.photo_examples__elem {
    margin-top: 40px;
    width: 26%;
}

img.photo_examples__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

@media (max-width: 1400px) {
    img.photo_examples__img {
        height: 200px;
    }
}

@media (max-width: 1000px) {
    li.photo_examples__elem {
        margin-top: 20px;
    }
    img.photo_examples__img {
        height: 130px;
    }
}

@media (max-width: 600px) {
    .high_examples {
        flex-direction: column;
    }
    li.photo_examples__elem {
        width: 46%;
    }
    img.photo_examples__img {
        height: 140px;
    }
    h5.high_examples__photo {
        margin-bottom: 30px;
    }
}

@media (max-width: 400px) {
    img.photo_examples__img {
        height: 110px;
    }
}
