

.imageWithTextGroupContainer figure {
  width: 100%;
  display: block;
}

.titleAndDescription.observer.onViewport {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
}

.imageWithTextGroupContainer img.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;
}
p.shopNow.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;
}


.imageWithTextGroupContainer {
  width: calc((90% / 3) - 14px);
  display: flex;
  margin: 0;
  align-items: center;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  float: left;
  margin-right: 20px;
}
.imageWithTextGroupContainer:first-of-type {
    margin-left: 5%;
}
.imageWithTextGroupContainer:last-of-type{
  margin-right:5%;
  margin-bottom: 34px;
}
.imageWithTextGroupContainer img {
  width: 100%;
  display: block;
}

.imageWithTextGroupContainer:hover .shopNow{
  opacity:1;
}
.imageWithTextGroupContainer:hover .groupTitleArrow {
  margin-left: 25px;
  transition: all 0.3s;
}

.titleAndDescription {
  width: 100%;
  margin: auto;
  text-align: center;
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
}
p.groupDescription {
  font-size: 18px;
  line-height: 22px;
}

p.shopNow {
    position: absolute;
    bottom: 38px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 4;
    color: #FFFFFF;
    width: fit-content;
    background: #206C6A;
    height: 45px;
    border-radius: 100px;
    padding: 13px 54px 13px 40px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 18px;
    border: 1px solid #206C6A;
    background-image: url(../../files/whiteArrow.png);
    background-repeat: no-repeat;
    background-position: right 28px center;
    background-size: 15px;
    opacity: 0;
}

  p.shopNow:hover {
    color: var(--secondary) !important;
    background-color: #fff;
    background-image: url(../../files/greenArrow.png);
  }
.groupTitle {
  position: relative;
  display: flex;
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 26px;
  flex-direction: column;
  align-items: center;
}



@media screen and (max-width: 1100px) {
  .imageWithTextGroupContainer img {
    width: 100%;
    display: block;
  }
  .imageWithTextGroupContainer figure {
    display: block;
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
    animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
    width: 100%;
    margin-top: 6vw;
  }
  .imageWithTextGroupContainer:hover .groupTitleArrow {
    margin-left: 25px;
    transition: all 0.3s;
  }
.imageWithTextGroupContainer {
  width: 90%;
  margin-left: 5%;
}
  .titleAndDescription {
    max-width: 400px;
      width: 100%;
  }
p.shopNow {
  opacity:1;
}
    p.groupDescription {
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    text-align: center;
  }
  .groupTitle {
    position: relative;
    font-size: var(--title-font-size);
    line-height: var(--group-line-height);
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
  }
  
}