h1 {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Spectral';
    font-weight: 300;
    margin-right: 200px;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.collections_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.collections_items .item {
    width: calc(33.33% - 50px);
    margin-bottom: 30px;
}

.collections_items .item p {
    text-align: center;
    font-family: 'Spectral';
    font-size: 16px;
    margin: 10px 0 0;
}

.collections_items .item img {
    width: 100%;
}

#main-content {
    margin-top: 213px;
}

#image-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #fff;
}

#image-popup img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 2%;
    height: 100%;
}

#popup-close {
    position: absolute;
    top: 35px;
    right: 35px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-image: url(../images/close.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

img.popup-image {
    cursor: pointer;
    transition: 0.3s all;
}

img.popup-image:hover {
    opacity: 0.9;
}

@media screen and (max-width:1024px) {
    .collections_items .item {
        width: calc(33.33% - 30px);
        margin-bottom: 30px;
    }
}

@media screen and (max-width:767px) {
    #main-content {
        margin-top: 80px;
    }

    .wrap-content {
        padding: 0 30px;
    }

    h1 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .collections_items .item {
        width: calc(50% - 10px);
        margin-bottom: 30px;
    }

    .collections_items .item p {
        text-align: left;
        font-size: 12px;
    }

    #image-popup img {
        margin-top: 5%;
        height: auto;
    }
}