.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%;
}

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

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

.imageGroup {
  float: left;
  position: relative;
  width: 50%;
  overflow: hidden;
}

.square {
  margin-top: 7rem;
  width: calc(47.5% - 0.3rem);
  float: left;
  position: relative;
  overflow: hidden;
}

.square.left {
  margin-left: 2.5%;
  margin-right: 0.6rem;
}

.imageGroup img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.groupItemTitle {
  font-size: 5.2rem;
  position: absolute;
  font-weight: 900;
}

.textGroupContainer {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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(--secondary);
}

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

.square:hover figure,
.imageGroup:hover figure {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.textGroupContainer p:not(.groupItemTitle) {
  opacity: 0;
  bottom: 10%;
  position: absolute;
  text-transform: lowercase;
  padding: 1.5rem 3rem;
}

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

.square:hover .textGroupContainer p:not(.groupItemTitle) {
  -webkit-animation: slide-in-blurred 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0 both;
  animation: slide-in-blurred 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0s 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;
  }
}

.imageGroup figure {
  aspect-ratio: 1/1.2;
}

@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;
  }

  .square {
    width: 100%;
  }

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

  .square .groupItemTitle {
    bottom: 50%;
  }

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

  .square:hover .textGroupContainer p:not(.groupItemTitle) {
    animation: none;
  }

  .imageGroup {
    width: 90%;
    margin-left: 5%;
  }

  .square.left,
  .square.right {
    margin: 0 0 5px 0;
  }
}
