.corporate_cards_with_text_container {
    width: 80%;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
}

.corporate_cards_with_text_item {
    flex: 0 1 19vw;
    height: calc(19vw * 1.25);
    position: relative;
    overflow: hidden;
    margin: 0 0.7vmax 0.7vmax 0;
}

.three_row .corporate_cards_with_text_item {
    flex: 0 1 30%;
    height: 40vh;
}

.corporate_cards_with_text_item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 0.2s all ease-in-out;
    background-image: linear-gradient(1deg, rgba(255, 255, 255, 0.5) 0%, rgba(235, 235, 235, 0.25) 50%, rgba(201, 201, 201, 0.1) 100%);
}

.corporate_cards_with_text_img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
    transform: scale(0.8, 0.8);
}

.corporate_cards_with_text_item:hover .corporate_cards_with_text_img {
    transform: scale(1.0, 1.0);
    transition: 1.0s all ease-in-out;
}

.homepage .corporate_cards_with_text_img {
    transform: scale(1.0, 1.0);
}

.homepage .corporate_cards_with_text_item:hover .corporate_cards_with_text_img {
    transform: scale(1.2, 1.2);
    transition: 1.0s all ease-in-out;
}

.corporate_cards_with_text_inner_container {
    width: 100%;
    position: absolute;
    bottom: 1vmax;
}

.corporate_cards_with_text_text {
    width: 95%;
    position: relative;
    margin: 0 auto;
    font: 600 calc(var(--corporate_default_font_size) * var(--corporate_product_slider_2_title)) 'Fira Sans Extra Condensed', sans-serif;
    padding: 0;
    color: #000;
    z-index: 2;
    text-align: center;
}

.clip_test {
    width: 50%;
    height: 70vh;
    margin: 2vmax auto;
    position: relative;
    overflow: hidden;
}

.clip_top {
    clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%, 50% 0%, 55% 100%, 60% 0%, 65% 100%, 70% 0%, 75% 100%, 80% 0%, 85% 100%, 90% 0%, 95% 100%, 100% 0%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #fff;
}

.clip_bottom {
    clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%, 50% 0%, 55% 100%, 60% 0%, 65% 100%, 70% 0%, 75% 100%, 80% 0%, 85% 100%, 90% 0%, 95% 100%, 100% 0%);
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    transform: rotate(180deg);
}

.clip_left {
    clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%, 50% 0%, 55% 100%, 60% 0%, 65% 100%, 70% 0%, 75% 100%, 80% 0%, 85% 100%, 90% 0%, 95% 100%, 100% 0%);
    /* content: "";
    position: absolute;
    top: 30%;
    left: calc(-50% + 1px);
    transform: rotate(-90deg);
    height: 3px;
    width: 100%;
    background-color: #fff; */
    content: "";
    position: absolute;
    top: 50%;
    left: 1px;
    width: 90vh;
    height: 3px;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.clip_right {
    clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%, 50% 0%, 55% 100%, 60% 0%, 65% 100%, 70% 0%, 75% 100%, 80% 0%, 85% 100%, 90% 0%, 95% 100%, 100% 0%);
    /* content: "";
    position: absolute;
    top: 30%;
    right: calc(-50% + 1px);
    transform: rotate(90deg);
    height: 3px;
    width: 100%;
    background-color: #fff; */
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    width: 80vh;
    height: 3px;
    background-color: #fff;
    transform: translate(50%, -50%) rotate(90deg);
}

.clip_center {
    clip-path: polygon(0% 100%, 5% 0%, 10% 100%, 15% 0%, 20% 100%, 25% 0%, 30% 100%, 35% 0%, 40% 100%, 45% 0%, 50% 100%, 55% 0%, 60% 100%, 65% 0%, 70% 100%, 75% 0%, 80% 100%, 85% 0%, 90% 100%, 95% 0%, 100% 100%);
    content: "";
    position: absolute;
    top: 0%;
    right: 0%;
    width: 200%;
    height: 5px;
    background-color: #f00;
}

.clip_test_img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

@media screen and (max-width: 1250px) {
    .corporate_cards_with_text_item {
        flex: 0 1 100%;
        height: 35vmax;
    }
    .corporate_cards_with_text_container {
        width: 100%;
    }
    .three_row .corporate_cards_with_text_item {
        flex: 0 1 100%;
        margin: 0 0 2vmax 0;
    }
}

@media screen and (max-width: 1250px) and (orientation: landscape) {
    .three_row .corporate_cards_with_text_item {
        height: calc(100vh - var(--top_menu));
    }
}