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

.groupItemButton {
  display: block;
  margin: 3rem auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  border: 1px solid;
  padding: 0 3rem;
  line-height: 4rem;
}

.groupItemButton:hover {
  background: var(--base);
  color: var(--white);
}

.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% / 2);
  aspect-ratio: 1/1;
  margin-bottom: 6rem;
}

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

.rectagleContainer.imageGroup {
  background: var(--grey2);
}

.textGroupContainer {
  position: relative;
  margin-top: 2rem;
}

.imageGroup a,
.imageGroup img,
.imageGroup figure {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.square[href="#"] {
  pointer-events: none;
}

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

.imageGroup .rectangle {
  width: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.imageGroup.rectagleContainer img,
.imageGroup.rectagleContainer figure {
  width: 100%;
  height: auto;
}

@-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%;
    margin-bottom: 1.5rem;
  }

  .imageGroup:not(.rectagleContainer) {
    margin-bottom: 3px;
    aspect-ratio: unset;
  }

  .imageGroup a,
  .imageGroup img,
  .imageGroup figure {
    height: auto;
    object-fit: unset;
  }

  .imageGroup .rectangle {
    width: 90%;
  }

  .textGroupContainer {
    margin-top: 4.5rem;
  }

  .imageGroup.rectagleContainer img,
  .imageGroup.rectagleContainer figure {
    aspect-ratio: 1/1;
    height: 100%;
    object-fit: cover;
    margin-top: 1rem;
  }

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

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

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

  .groupItemButton {
    margin-bottom: 0;
  }
}
