.price {
   display: flex;
   align-items: center;
}

.price::before {
   content: "Starting at";
   font-family: "Itau Text - Bold";
   font-size: 15px;
   line-height: 15px;
   color: #303133;
   text-wrap: nowrap;
   margin-right: 4px;
}

.session-price {
   flex-direction: column;
   align-items: flex-end;
}

.session-price::before {
   content: "Sessions start at";
   margin-right: 0;
}

@media screen and (max-width: 800px) {
  .session-price::before {
     text-align: left!important;
     text-wrap: nowrap!important;
     width: max-content!important;
  }
}