.geometric-figure {
    position: absolute;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.geometric-figure_circle, 
.geometric-figure_circle-border {
    border-radius: 50%;
}

.geometric-figure_circle-border {
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
}

.geometric-figure_cross {
    display: flex;
    justify-content: center;
}

.geometric-figure_cross:before, 
.geometric-figure_cross:after {
    position: absolute;
    width: 2px;
    height: 100%;
    content: '';
    border-radius: 3px;
}

.geometric-figure_cross:after {
    transform: rotate(90deg);
}

.geometric-figure_dotted-square {
    width: 78px;
    height: 78px;
    background-image: url('/blog/wp-content/themes/se_theme/images/svg/dotted-square-dark.svg');
    background-repeat: round;
    background-position: 0;
    background-size: auto;
    opacity: .2;
}

.geometric-figure_square {
    border-style: solid;
    border-width: 2px;
    border-radius: 2px;
}

@media screen and (min-width: 768px) {
    .geometric-figure_dotted-square {
        width: 100px;
        height: 100px;
    }

    .geometric-figure_mobile {
        display: none;
    }
}

@media screen and (max-width: 1199px) {
    .geometric-figure_desktop {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .geometric-figure_tablet {
        display: none;
    }
}
