/**
 * Add an arrow element
 *
 * Accepts:
 * - $direction: {String} Positioning method for element
 * - $size: {String}
 * - $stroke: {String}
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
.section-projects-mobile {
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .section-projects-mobile {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .section-projects-mobile {
    user-select: none;
  }
}

.projects-mobile {
  display: flex;
  position: relative;
}
.projects-mobile:not(.dragging) {
  transition: all 0.4s ease;
}
.projects-mobile-single {
  min-width: 84%;
  box-shadow: 0 3px 15px rgba(255, 161, 104, 0.4);
  background: #FFFDED;
  margin-bottom: 32px;
}
.projects-mobile-single:not(:last-child) {
  margin-right: 20px;
}
.projects-mobile-single h2 {
  margin-bottom: 0.47em;
}
.projects-mobile-single-fill {
  height: 32px;
}
.projects-mobile-single-image {
  padding-top: 50%;
  background-position: center;
  background-size: cover;
}
.projects-mobile-single-content {
  padding: 20px 14px 27px 14px;
}
.projects-mobile-navigation {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.projects-mobile-navigation .circle {
  transition: all 0.4s ease;
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: relative;
}
.projects-mobile-navigation .circle::after {
  transition: all 0.4s ease;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  left: 6px;
  top: 6px;
  border-radius: 50%;
  background: #137D77;
  position: absolute;
}
.projects-mobile-navigation .circle.active {
  border-color: #137D77;
}
.projects-mobile-navigation .circle.active::after {
  width: 14px;
  height: 14px;
  left: 4px;
  top: 4px;
}
/*# sourceMappingURL=projects-mobile-section.css.map*/