/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

:root {
    --black: #000000;
    --white: #ffffff;
    --orange: #F08213;
    --dark-purple: #25364A;
  }


.img-big-cut-top-right {
    clip-path: polygon(calc(100% - 150px) 0, 100% 150px, 100% 100%, 0 100%, 0 0);
}

@media screen and (max-width: 991px) {
    .img-big-cut-top-right {
        clip-path: polygon(calc(100% - 100px) 0, 100% 100px, 100% 100%, 0 100%, 0 0);
    }
}

@media screen and (max-width: 767px) {
    .img-big-cut-top-right {
        clip-path: polygon(calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%, 0 0);
    }
}

.img-medium-cut-top-right {
    clip-path: polygon(calc(100% - 100px) 0, 100% 100px, 100% 100%, 0 100%, 0 0);
}

.img-small-cut-top-right {
    clip-path: polygon(calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%, 0 0);
}


.txt-orange {
    color: var(--orange);
}