/**
 * Add an arrow element
 *
 * Accepts:
 * - $direction: {String} Positioning method for element
 * - $size: {String}
 * - $stroke: {String}
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
.section-projects {
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 991px) {
  .section-projects {
    display: none;
  }
}

.projects.opened .projects-header {
  color: transparent;
}
.projects.opened .projects-header:not(.open) {
  opacity: 0.6;
}
.projects.opened .projects-single:not(.open) .projects-single-image {
  opacity: 0.6;
}
.projects-singles, .projects-headers {
  display: flex;
}
.projects-header {
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FEFFEB;
}
.projects-header h4 {
  text-transform: uppercase;
  margin: 0;
  padding: 0.4em 0.2em;
  max-height: 3.2em;
  font-size: 18px;
}
@media only screen and (min-width: 992px) {
  .projects-header h4 {
    font-size: calc(18px + 7 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 1300px) {
  .projects-header h4 {
    font-size: 25px;
  }
}
.projects-single {
  transition: all 0.4s ease;
  max-height: 555px;
  height: 40.9vw;
}
.projects-single.open .projects-single-opener {
  transform: rotate(45deg);
  background: #137D77;
}
.projects-single.open .projects-single-opener::before, .projects-single.open .projects-single-opener::after {
  background: #FFFDED;
}
.projects-single.open .projects-single-image-wrapper {
  width: 28.573% !important;
}
.projects-single.open .projects-single-content {
  width: 71.427% !important;
  opacity: 1;
}
.projects-single-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.projects-single-wrapper:hover .projects-single-opener {
  background: #137D77;
}
.projects-single-wrapper:hover .projects-single-opener::before, .projects-single-wrapper:hover .projects-single-opener::after {
  background: #FFFDED;
}
.projects-single-image {
  transition: all 0.4s ease;
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.projects-single-image-wrapper {
  transition: all 0.4s ease;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.projects-single-opener {
  transition: all 0.4s ease;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #FFFDED;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  position: relative;
}
@media only screen and (min-width: 992px) {
  .projects-single-opener {
    height: calc(50px + 14 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 1300px) {
  .projects-single-opener {
    height: 64px;
  }
}
@media only screen and (min-width: 992px) {
  .projects-single-opener {
    width: calc(50px + 14 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 1300px) {
  .projects-single-opener {
    width: 64px;
  }
}
.projects-single-opener::after, .projects-single-opener::before {
  transition: all 0.4s ease;
  content: "";
  display: block;
  background: #137D77;
  position: absolute;
}
.projects-single-opener::after {
  width: 40.625%;
  height: 6.25%;
  top: 46.875%;
  left: 29.6875%;
}
.projects-single-opener::before {
  height: 40.625%;
  width: 6.25%;
  left: 46.875%;
  top: 29.6875%;
}
.projects-single-icons {
  display: flex;
}
.projects-single-content {
  transition: all 0.4s ease;
  width: 0;
  opacity: 0;
}
.projects-single-content h3 {
  margin-top: 0.9em;
  margin-bottom: 0.5em;
}
.projects-single-content p {
  margin-bottom: 1.7em;
}
.projects-single-content span {
  text-align: left;
  display: flex;
  align-items: center;
  margin-right: 3vw;
}
.projects-single-content img {
  width: 80%;
}
@media only screen and (min-width: 992px) {
  .projects-single-content img {
    width: calc(80% + 20 * (100vw - 992px) / 308);
  }
}
@media only screen and (min-width: 1300px) {
  .projects-single-content img {
    width: 100%;
  }
}
.projects-single-content a {
  margin-top: 1.2em;
  display: block;
}
.projects-single-content-inner {
  padding: 1vw 2.5vw 2.2vw 2.2vw;
}
.projects-single-content .simplebar-horizontal {
  display: none !important;
}
.projects-single-content .simplebar-vertical {
  left: 0;
  width: 7px !important;
  overflow: visible;
}
.projects-single-content .simplebar-scrollbar::before {
  opacity: 1 !important;
  left: 0;
  top: 0 !important;
  bottom: 0 !important;
  right: 0;
  border-radius: 0;
  background: #137D77;
  transform: translateX(-50%);
}
/*# sourceMappingURL=projects-section.css.map*/