.fullScreenContainer {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  height: auto;
  overflow: hidden;
  color: var(--base);
}

.fullImgTitle {
  position: absolute;
  right: 7%;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--base);
  font-size: 2rem;
}

.fullScreenContainer figure {
  width: 100%;
}

.imageGroup figure {
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.imageGroup:hover figure {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}

.fullScreenPromo {
  width: 100%;
  display: block;
}

.imageGroup {
  float: left;
  position: relative;
  width: calc(100% / 3);
}

.groupItemTitle {
  font-size: 2.7rem;
  font-weight: 500;
  position: absolute;
  bottom: 50px;
  -webkit-transition: bottom 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: bottom 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.imageGroup:hover .groupItemTitle {
  bottom: 50%;
}

.textGroupContainer {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  text-align: center;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.textGroupContainer p {
  color: var(--white);
}

.imageGroup a,
.imageGroup img,
.imageGroup figure {
  display: block;
  width: 100%;
}

.textGroupContainer p:not(.groupItemTitle) {
  margin-top: 58px;
  opacity: 0;
}

.textGroupContainer p.lineEffectCenter:not(.groupItemTitle)::before {
  bottom: -0.6rem;
  background: var(--white);
}

.imageGroup:hover .textGroupContainer p:not(.groupItemTitle) {
  -webkit-animation: slide-in-blurred 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s
    both;
  animation: slide-in-blurred 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

@-webkit-keyframes slide-in-blurred {
  0% {
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred {
  0% {
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1100px) {
  .promoColumnImage {
    width: 100%;
    height: 114vw;
    margin: 0 auto;
    display: block;
    float: none;
    margin-bottom: 30px;
  }

  .promoWideImage {
    width: 100%;
    margin-bottom: 30px;
  }

  .imageGroupContainer {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }

  .fullScreenPromo {
    margin-left: 0%;
    width: 100%;
    margin-top: 0;
  }

  .fullScreenContainer {
    justify-content: center;
  }

  .fullImgTitle {
    right: unset;
  }

  .imageGroup {
    width: 100%;
  }

  .imageGroup {
    margin-bottom: 3px;
  }
  .imageGroup figure {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
  }
  .imageGroup .groupItemTitle {
    bottom: 50%;
  }
  .textGroupContainer p:not(.groupItemTitle) {
    margin-top: 39px;
    opacity: 1;
  }
  .imageGroup:hover .textGroupContainer p:not(.groupItemTitle) {
    animation: none;
  }
}
