/**
 * Breakpoints
 **/
/** 
 * Colors
 **/
.text-plus {
  position: relative;
  z-index: -1;
  display: flex;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .text-plus {
    flex-direction: row;
  }
}
.text-plus .plus-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  align-self: flex-end;
  display: flex;
}
@media (min-width: 768px) {
  .text-plus .plus-wrapper {
    width: 35%;
    align-self: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 1200px) {
  .text-plus .plus-wrapper {
    aspect-ratio: auto;
    min-height: 280px;
  }
}
.text-plus .plus-wrapper .plus {
  position: absolute;
  top: 100%;
  left: 50%;
  display: flex;
  width: 123.5%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .text-plus .plus-wrapper .plus {
    justify-content: center;
    top: 0;
    left: 100%;
  }
}
.text-plus .plus-wrapper .plus div {
  position: relative;
  width: 35%;
  height: 7vw;
  background-color: white;
}
@media (min-width: 768px) {
  .text-plus .plus-wrapper .plus div {
    width: 100%;
    max-height: 14.5%;
  }
}
@media (min-width: 1200px) {
  .text-plus .plus-wrapper .plus div {
    height: 100px;
    max-height: 100px;
  }
}
.text-plus .plus-wrapper .plus div::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  transform: rotate(90deg);
  background-color: white;
}
.text-plus .plus-wrapper .headline-single,
.text-plus .plus-wrapper .headline-double {
  position: relative;
  align-self: flex-end;
  margin: 30px 0 10px 0;
  z-index: 2;
  text-align: left;
  width: 65%;
}
@media (min-width: 768px) {
  .text-plus .plus-wrapper .headline-single,
.text-plus .plus-wrapper .headline-double {
    position: absolute;
    align-self: auto;
    margin: auto;
    text-align: right;
    width: 100%;
    padding: 20% 20% 0 0;
  }
}
.text-plus .content {
  height: auto;
  flex: 1;
}
.text-plus .content div {
  padding: 0;
}
.text-plus .content.bg--primary {
  padding: 70px 20px 20px 20px;
}
@media (min-width: 768px) {
  .text-plus .content.bg--primary {
    padding: 70px 20px 20px 70px;
  }
}
@media (min-width: 1200px) {
  .text-plus .content.bg--primary {
    padding: 70px 75px;
  }
}
.text-plus .content ul {
  margin-left: 1em;
  list-style-type: square;
}
.text-plus .content ul li::marker {
  color: #666666;
}
.text-plus .content ul + h3 {
  margin-top: 1.5em;
}
.text-plus .content h3 {
  margin-bottom: 0.5em;
}

.text-plus.small {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .text-plus.small .plus-wrapper {
    width: 10%;
    height: 10%;
  }
}
@media (min-width: 1200px) {
  .text-plus.small .plus-wrapper {
    min-height: 120px;
  }
}
.text-plus.small .plus-wrapper .plus {
  height: 100px;
  justify-content: center;
  width: 100%;
  left: 85%;
  top: 0;
  align-items: baseline;
}
@media (min-width: 768px) {
  .text-plus.small .plus-wrapper .plus {
    width: 259%;
    top: -30%;
    align-items: center;
    left: 65%;
  }
}
.text-plus.small .plus-wrapper .plus div {
  max-height: 64%;
}
.text-plus.small .content {
  padding: 10px;
}

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