@charset "UTF-8";
.information_boxes_module {
  padding-top: 30px; }
  .information_boxes_module .information_box {
    margin-bottom: 30px; }
    .information_boxes_module .information_box.col-md-3:nth-child(2n), .information_boxes_module .information_box.col-md-4:nth-child(2n) {
      transition-delay: 200ms; }
    .information_boxes_module .information_box.col-md-3:nth-child(3n), .information_boxes_module .information_box.col-md-4:nth-child(3n) {
      transition-delay: 400ms; }
    .information_boxes_module .information_box.col-md-3:nth-child(4n) {
      transition-delay: 600ms; }
    .information_boxes_module .information_box.title_italic h4 {
      font-style: italic; }
    .information_boxes_module .information_box.title_orange h4 {
      color: #e06a20; }
    .information_boxes_module .information_box.title_light-orange h4 {
      color: #f5a855; }
    .information_boxes_module .information_box.title_green h4 {
      color: #6A9150; }
  .information_boxes_module .content_wrapper {
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    padding-bottom: 15px;
    height: 100%; }
    .information_boxes_module .content_wrapper .icon_wrapper {
      width: 54px;
      height: 54px;
      margin-bottom: 15px;
      display: inline-flex;
      border-radius: 10px;
      position: relative;
      overflow: hidden;
      padding: 5px; }
      .information_boxes_module .content_wrapper .icon_wrapper .icon_background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 10px; }
      .information_boxes_module .content_wrapper .icon_wrapper img {
        width: 100%;
        height: auto;
        position: relative; }
    .information_boxes_module .content_wrapper .counter {
      margin-bottom: 15px; }
    .information_boxes_module .content_wrapper .link_arrow {
      font-weight: bold;
      display: inline-block;
      margin-bottom: 15px; }
      .information_boxes_module .content_wrapper .link_arrow::after {
        content: '→';
        margin-left: 5px;
        transition: margin-left 0.2s; }
      .information_boxes_module .content_wrapper .link_arrow:hover {
        text-decoration: none; }
        .information_boxes_module .content_wrapper .link_arrow:hover::after {
          margin-left: 10px; }
  .information_boxes_module.green-theme .icon_wrapper .icon_background {
    background-color: #C7DEBB; }
  .information_boxes_module.green-theme .link_arrow {
    color: #6A9150; }
  .information_boxes_module.orange-theme .icon_wrapper .icon_background {
    background-color: #f5a855; }
  .information_boxes_module.orange-theme .link_arrow {
    color: #e06a20; }
  .information_boxes_module.transparent-theme .content_wrapper {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    border: 1px solid #3D3830;
    color: #D4CEC6; }
    .information_boxes_module.transparent-theme .content_wrapper .transparent-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #3D3830;
      opacity: 0.5;
      z-index: -1; }
    .information_boxes_module.transparent-theme .content_wrapper .counter {
      color: #e06a20; }
    .information_boxes_module.transparent-theme .content_wrapper h3 {
      color: #F6F3EE; }
