/* DIAMOND */
.diamond-list {
    display: grid;
    grid-template-columns: 250px;
    justify-content: center;
    margin-bottom: 10px;
    grid-gap: 10px;
}
.diamond-list_second-row .diamond-list_item-services {
    display: none;
}
.diamond-list__link {
    position: relative;
    height: 285px;
    display: block;
}
.diamond-list__link {
    color: #fff;
}
.diamond-list__link:hover .diamond-list__front {
    color: #fff;
    overflow: hidden;
    opacity: 0;
    transition: all .35s ease;
}
.diamond-list__link:hover .diamond-list__back {
    color: #94b0b7;
    overflow: visible;
    opacity: 1;
    transition: all .35s ease;
}
.diamond-list__item {
    position: relative;
    height: 285px;
}
.diamond-list__head {
    font-size: 16px;
    font-weight: 300;
}
.diamond-list__text {
    font-size: 14px;
    font-weight: 300;
}
.diamond-list__front,
.diamond-list__back {
    position: absolute;
    top: 43px;
    left: 25px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    overflow: visible;
    transition: all .35s ease;
}
.diamond-list__back {
    opacity: 0;
    overflow: hidden;
    transition: all .35s ease;
}
.diamond-list__link::before {
    content: "";
    top: 43px;
    left: 25px;
    display: block;
    position: absolute;
    transition: all 0.35s ease;
    background-color: #94b0b7;
    width: 200px;
    height: 200px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.diamond-list__front img {
    max-width: 83px;
}
.diamond-list__head {
    color: #000;
}
.diamond-list__link:hover::before {
    color: #94b0b7;
    background: #fff;
    border: 3px solid #94b0b7;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.35s ease;
}
@media screen and (min-width: 768px) {
    .diamond-list {
        grid-template-columns: 350px 350px;
    }
    .diamond-list_first-row .diamond-list_item-services {
        display: none;
    }
    .diamond-list_second-row .diamond-list_item-services {
        display: block;
    }
    .diamond-list__head {
        font-size: 20px;
    }
    .diamond-list__text {
        font-size: 17px;
    }
    .diamond-list__front,
    .diamond-list__back {
        position: absolute;
        top: 50px;
        left: 50px;
        width: 250px;
        height: 250px;
    }
    .diamond-list__link::before {
        top: 50px;
        left: 50px;
        width: 250px;
        height: 250px;
    }
}

@media screen and (min-width: 1200px) {
    .diamond-list {
        grid-template-columns: repeat(3, 285px);
    }
    
}

@media screen and (min-width: 1200px) {
    .diamond-list_first-row {
        grid-template-columns: repeat(3, 285px);
        margin-bottom: -130px;
    }
    .diamond-list_second-row {
        grid-template-columns: repeat(4, 285px);
    }
    .diamond-list_second-row .diamond-list__item:last-child {
        grid-column: inherit;
    }
    .diamond-list__item {
        height: 285px;
    }
    .diamond-list__head,
    .diamond-list__text {
        max-width: 170px
    }
    .diamond-list__text {
        font-size: 15px;
    }
    .diamond-list__front,
    .diamond-list__back {
        top: 43px;
        left: 43px;
        width: 200px;
        height: 200px;
    }
    .diamond-list__link::before {
        top: 43px;
        left: 43px;
        width: 200px;
        height: 200px;
    }
}
.show-diamond {
    display: none !important;
}
@media screen and (max-width: 1200px) {
    .hide-diamond {
        display: none !important;
    }
    .show-diamond {
        display: block !important;
    }
    .diamond-list__item {
        position: relative;
        height: 285px;
        display: inline-block;
        width: 285px;
    }
    section.diamond.field2.show-diamond {
        text-align: center;
        padding: 40px 0px;
    }
    .diamond-list__front,
    .diamond-list__back {
        top: 43px;
        left: 43px;
        width: 200px;
        height: 200px;
    }
    .diamond-list {
        display: block;
        text-align: center;
    }
    .diamond-list__link::before {
        top: 43px;
        left: 43px;
        width: 200px;
        height: 200px;
    }
}
