.titleAndDescription {
  display: flex;
  font-size: var(--base-font-size);
  width: 50%;
  flex-direction: column;
  bottom: 0px;
  padding: 30px 50px 30px 5%;
  box-sizing: border-box;
}

.imageWithTextGroupContainer {
  position: relative;
  margin: 70px 0px 0px;
  opacity: 0;
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
}

.groupTitle {
  font-size: 60px;
  line-height: 69px;
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  text-transform: lowercase;
  font-weight: 100;
  display: flex;
}
.firstWord {
    margin-right: 14px;
    font-weight: 500;
    font-style: italic;
}

.imageWithTextGroupContainer figure {
  width: 50%;
  height: 100%;
  display: flex;
}

.imageWithTextGroupContainer figure img {
  width: 100%;
  /* height: 100%; */
}


.imageWithTextGroupContainer:first-child {
    display: none;
}
p.groupDescription {
    font-size: 16px;
}

.shopNow {
    margin-top: 30px;
    color: var(--base-aux);
    background-color: var(--base);
    cursor: pointer;
    width: fit-content;
    border: 1px solid var(--base);
    border-radius: 100px;
    padding: 10px 20px;
}

.shopNow:hover {
    background: transparent;
    color: var(--base);
}

imageWithText.imageWithTextGroupContainer:nth-of-type(2) {
    background: #FFC0B9;
}
imagewithtext.imageWithTextGroupContainer.observer.onViewport {
    -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s
    both;
    animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
}
imageWithText.imageWithTextGroupContainer:nth-of-type(1) {
    background: #FDC36A;
}
@media screen and (max-width:768px){
  .titleAndDescription.observer.onViewport {
  width: var(--web-container);
  /* margin-left: 5%; */
  box-sizing: border-box;
  padding: 90px 0px;
}
    .titleAndDescription {
    width: 96%;
    padding: 70px 5%;
}
    .firstWord {
    position: absolute;
}

.restTitle {
    text-indent: 58px;
    width: 100%;
}
imagewithtext.imageWithTextGroupContainer {
    flex-direction: column-reverse;
}

.imageWithTextGroupContainer figure {
    width: 100%;
}

.groupTitle {
  width: fit-content;
  font-size: 50px;
  line-height: normal;
}
}