.img_card_operations
{
    position:relative;
    padding: 0px;
    margin: 0px;
    height: 200px;
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
}

.img_card_operations div
{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.img_card_operations_reverse
{
    position:relative;
    padding: 0px;
    margin: 0px;
    height: 200px;
    -webkit-clip-path: polygon(5% 0%, 0% 100%, 100% 100%, 100% 0%);
    clip-path: polygon(5% 0%, 0% 100%, 100% 100%, 100% 0%);
}

.img_card_operations_reverse div
{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.operations_pd::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 9px;
    left: 0px;
    background-color: var(--content-bag-shadow);
    border: 7px solid var(--content-bag-light-shadow);
    border-radius: 3px;
    z-index: -1;
}

.operations_pd
{
    position: relative;
	background-color: hwb(0deg 95% 5%);
}

.operations_pd p
{
    text-align: justify;
    line-height: 1.65;
    color: #707070;
    font-size: 15px;
    font-weight: 400;
}

.card_operations_title h2
{
    display: block;
    color: #1a1a1a;
    font-weight: 500;
}

@media only screen and (max-width: 1380px)
{
    .img_card_operations
    {
        height: 200px;
        -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
    }

    .img_card_operations_reverse
    {
        height: 200px;
        -webkit-clip-path: polygon(5% 0%, 0% 100%, 100% 100%, 100% 0%);
        clip-path: polygon(5% 0%, 0% 100%, 100% 100%, 100% 0%);
    }

    .card_operations_title
    {
        padding-left: 0;
    }
}

@media only screen and (max-width: 1200px)
{
    .img_card_operations
    {
        height: 230px;
        -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
    }

    .img_card_operations_reverse
    {
        height: 230px;
        -webkit-clip-path: polygon(5% 0%, 0% 100%, 100% 100%, 100% 0%);
        clip-path: polygon(5% 0%, 0% 100%, 100% 100%, 100% 0%);
    }
}

@media only screen and (max-width: 990px)
{
    .img_card_operations
    {
        height: 275px;
        -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 95% 0%);
    }

    .img_card_operations_reverse
    {
        height: 275px;
        -webkit-clip-path: polygon(5% 0%, 0% 100%, 100% 100%, 100% 0%);
        clip-path: polygon(5% 0%, 0% 100%, 100% 100%, 100% 0%);
    }
}

@media only screen and (max-width: 768px)
{
    .img_card_operations
    {
        height: 200px;
        -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
    }

    .img_card_operations_reverse
    {
        height: 200px;
        -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
    }

    .order_wrapper
    {
        display: flex;
        flex-direction: column;
    }
    .order_wrapper div:first-child
    {
        order: 1;
    }

}


