/**
 * Add an arrow element
 *
 * Accepts:
 * - $direction: {String} Positioning method for element
 * - $size: {String}
 * - $stroke: {String}
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
/**
 * Add an arrow element
 *
 * Accepts:
 * - $direction: {String} Positioning method for element
 * - $size: {String}
 * - $stroke: {String}
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
.editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes, body.frontend .section-boxes .all-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  .editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes, body.frontend .section-boxes .all-boxes {
    padding: 0;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes .box, body.frontend .section-boxes .all-boxes .box {
  display: flex;
  flex-direction: column;
  width: 49%; /* added width property to ensure 2 boxes per row */
  padding: 50px 0px;
  border: 3px solid #3F1C95;
  margin-bottom: 30px;
  box-shadow: 0px 0px 7px 4px rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 991px) {
  .editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes .box, body.frontend .section-boxes .all-boxes .box {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes .box, body.frontend .section-boxes .all-boxes .box {
    padding: 20px 0;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes .box .icon-container, body.frontend .section-boxes .all-boxes .box .icon-container {
  width: 170px;
  margin: 0px auto;
  transition: all 0.4s ease;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes .box .icon-container:hover, body.frontend .section-boxes .all-boxes .box .icon-container:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
  .editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes .box .icon-container, body.frontend .section-boxes .all-boxes .box .icon-container {
    width: 100px;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes .box .text, body.frontend .section-boxes .all-boxes .box .text {
  width: 90%;
  margin: 45px auto;
  text-align: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-boxes .all-boxes .box .img-container, body.frontend .section-boxes .all-boxes .box .img-container {
  width: 100px;
  margin: 0 auto;
}

/*# sourceMappingURL=block.css.map*/