  .start-feature-1-container-bg {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    background-position: center center;
    background-size: cover;
    width: 100%;
    min-height: 450px;
    outline: 1px solid  #353535;
  }

  .start-feature-1-image-container-outer {
    position: relative;
    margin: 20px;
    z-index: 555;
  }

  .start-feature-1-image-container {
    position: relative;
    overflow: hidden;
    width: 300px;
  }

  .start-feature-1-image-container::after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }

  .start-feature-1-featured-image {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .start-feature-1-featured-image-round {
    border-radius: 50%;
    border-color: #FFF;
    border-width: 3px;
    border-style: solid;
  }

  .start-feature-1-text-and-button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 455px;
    background-color: rgba(255,255,255,0.80);
    backdrop-filter: blur(4px);
    z-index: 20;
    border-left: 1px solid #353535;
  }

  .start-feature-1-text {
    width: 100%;
    padding-bottom: 20px;
  }

  .start-feature-1-text h3 {
    font-family: 'Roboto Condensed';
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    padding: 10px 12px 0px 12px;
  }

.headline-h2-container {
  border-bottom: 1px solid #353535;
  margin-bottom: 18px;
}

  .start-feature-1-text h2 {
    font-family: 'Roboto Condensed';
    font-size: 36px;
    font-weight: 200;
    text-transform: uppercase;
    padding: 0px 12px 0px 12px;
    margin-bottom: 12px;
  }

.start-feature-1-text .teaser{
  padding: 0px 12px 0px 12px;
}

.button-container {
  padding: 12px;
}

.inner-content .start-feature-1-button {
  width: 100%;
  background-color: rgba(211, 208, 196, 0.6);
  border: 1px solid #353535;
  color: rgba(63,63,63,1);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all .4s ease;
  }

  .start-feature-1-button:hover {
  background-color: rgba(211, 208, 196, 0.95);
  border: 1px solid #353535;
  }
  

  
@media (max-width: 992px) {
  
  .start-feature-1-container-bg {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    min-height: auto;
  }
  
  .start-feature-1-image-container {
    width: 200px;  
    margin-bottom: -50px;
  }

  .start-feature-1-text-and-button {
    width: 100%;
    border: none;
  }
  
  .start-feature-1-text .teaser {
    max-width: 85%;
  }
  
}

@media (max-width: 768px) {
  
  .start-feature-1-image-container {
    width: 150px;  
    margin-bottom: -38px;
  }
  
  .start-feature-1-text .teaser {
    max-width: 100%;
  }

}