
.frame-items-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 100px;
    max-width: 1350px;
    padding: 100px 50px;
    margin: auto;
    background-color: white;
}

.frame-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.frame-item-image-wrapper {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 120%;
    margin-bottom: 42px;
}


.frame-item .image-container {
    position: absolute;
    background-size: contain;
    background-position: center;
    overflow: hidden;
    top: 2%;
    left: 3%;
    width: 95%;
    height: 96%;
    border-radius: 17% 21% 20% 17%;
    transform: translateZ(0);
}

.frame-item img.frame-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: scale 0.2s ease-in-out;
}
.frame-item:hover img.frame-item-image {
    scale: 1.2;
}

.frame-item div.frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.frame-item div.frame svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.frame-item a.frame-item-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 2;
}

.frame-item h4 {
    color: #29A181;
    font-weight: bold;
    margin-bottom: 32px;
}

.frame-item .frame-item-content-wrapper {
    padding: 0 6%;
}


@media only screen and (max-width: 1700px) {


}

@media only screen and (max-width: 992px) {

    .frame-items-container {
        grid-template-columns: auto;
        column-gap: 0;
        row-gap: 42px;
        max-width: 100%;
        padding: 42px 24px;
    }

    .frame-item-image-wrapper {
        margin-bottom: 32px;
    }
}


