.cmp-teaser--designnewhome {
  font-family: Archivo;
  max-width: 1360px;
  margin: 0 auto;
  @media (min-width: 1024px) and (max-width: 1439px) {
    padding: 0 40px;
    max-width: unset;
  }
  .cmp-teaser {
    display: flex;
    background: #f6f6f6;
    align-items: center;
    border-radius: 8px;
    flex-direction: row-reverse;

    @media screen and (max-width: 650px) {
      flex-direction: column;
      margin: 0;
      position: relative;
      padding-top: 90px;
      background: #fff;
    }

    .cmp-teaser__content {
      width: 30%;
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 14px 30px;

      @media screen and (max-width: 650px) {
        width: 100%;
        background: #f6f6f6;
        padding: 16px;
      }

      .cmp-teaser__pretitle {
        font-size: 44px;
        font-weight: 500;
        color: #232426;
        line-height: 110%;

        @media screen and (max-width: 650px) {
          font-size: 24px;
          position: absolute;
          top: 0;
          width: 100%;
          left: 0;
          text-align: center;
        }
      }

      .cmp-teaser__title {
        font-size: 18px;
        font-weight: 300;
        color: #323232;
        line-height: 20px;
        width: 80%;

        @media screen and (max-width: 650px) {
          font-size: 14px;
          font-weight: 400;
          color: #696f75;
          position: absolute;
          top: 35px;
          width: 70%;
          left: 15%;
          text-align: center;
        }
      }

      .cmp-teaser__description {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        gap: 40px;

        @media screen and (max-width: 650px) {
          margin-top: 0;
          gap: 25px;
        }

        p {
          display: flex;
          gap: 14px;
          align-items: center;
          font-size: 16px;
          font-weight: 500;
          color: #2e2f32;
          line-height: 20px;

          span {
            font-size: 18px;
            font-weight: 600;
            color: #3b3d40;
            height: 52px;
            min-width: 52px;
            background: rgba(82, 82, 82, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
          }
        }
      }
    }

    .cmp-teaser__image {
      width: 70%;

      @media screen and (max-width: 650px) {
        width: 100%;
      }

      img {
        border-radius: 8px;

        @media screen and (max-width: 650px) {
          width: 100%;
          border-radius: 0;
        }
      }
    }
  }
}
@media (min-width: 1279px) and (max-width: 1439px) {
  .cmp-teaser--designnewhome .cmp-teaser__content .cmp-teaser__description {
    margin-top: 12px !important;
  }

}