.information-cards-section {
    position: relative;

    &__item-col {
        &:nth-child(n+4) {
            margin-top: 24px;
        }
    }

    &__item-card {
        transition: all 0.3s ease;

        &:hover {
            transform: rotate(2deg);
        }
    }

    &__image {
        width: 100%;
        height: 340px;

        &, & img {
            border-radius: 0 0 32px 32px;
        }

        &.enable-image-padding {
            padding: 0 16px 16px;

            img {
                border-radius: 0;
            }
        }
    }

}

