/* ==========================================================================
   SEO Text Columns
   Shared by: _text_columns_bg.html, _widget_listing_items.html,
              _widget_listing_items_with_icon.html
   Loaded async via seo/base.html
   Page-specific overrides (.mobile-proxy .text-columns__bg etc.) remain in app.css
   ========================================================================== */

.text-columns {
  padding-bottom: 50px;
}
.text-columns__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .text-columns__wrapper {
    justify-content: space-between;
  }
}
.text-columns__item {
  width: 30%;
  margin: 55px 15px 0;
}
@media (max-width: 767px) {
  .text-columns__item {
    width: 44%;
  }
}
.text-columns__item:first-child,
.text-columns__item:nth-child(4) {
  margin-left: 0;
}
.text-columns__item:nth-child(3),
.text-columns__item:nth-child(6) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .text-columns__item:nth-child(3),
  .text-columns__item:nth-child(5) {
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .text-columns__item {
    width: 100%;
    margin: 45px 0 0 0 !important;
  }
}
.text-columns__item-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 20px;
  position: relative;
}
.text-columns__item-title:before {
  position: absolute;
  top: -15px;
  left: 0;
  content: "";
  height: 2px;
  width: 60px;
  background: #0174e4;
}
.text-columns__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
