.triangle_pattern {
    position: absolute;
    top: auto;
    bottom: auto;
    left: auto; 
    right: auto;
    width: 450px;
    height: 450px;
    background: var(--light-bg);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
} 
.triangle_pattern_top_left {
    top: 0; 
    left: 0;  
    clip-path: polygon(0 100%, 0 0, 100% 0);
}
.triangle_pattern_top_right {
    top: 0; 
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 0);
}
.triangle_pattern_bottom_left {
    bottom: 0;
    left: 0; 
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.triangle_pattern_bottom_right {
    bottom: 0; 
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.triangle_pattern_medium {
    width: 220px;
    height: 220px;
}   
.triangle_pattern_small {
    width: 120px;
    height: 120px;
} 
.triangle_pattern_white {
    background: var(--white-color);
}  
.triangle_pattern_grey_v2 {
    background: var(--light-color-v4);
}
@media screen and (max-width: 991.98px) {
    .triangle_pattern {
        width: 280px;
        height: 280px;
    }
    .triangle_pattern_medium {
        width: 150px;
        height: 150px;
    }   
    .triangle_pattern_small {
        width: 90px;
        height: 90px;
    } 
}
@media screen and (max-width: 767.98px) {
      .triangle_pattern {
        width: 90px;
        height: 90px;
    }
    .triangle_pattern_medium {
        width: 70px;
        height: 70px;
    }   
    .triangle_pattern_small {
        width: 50px;
        height: 50px;
    } 
} 