.groupsContainer {
  width: 95%;
  margin: 0 auto;
}

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

.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;
  overflow: hidden;
}

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

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

.imageGroupSquare: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) - 3rem);
  margin: 2.5rem 1.5rem;
}

.imageGroupSquare {
  float: right;
  position: relative;
  width: calc((100% / 3) - 3rem);
  margin-bottom: 2rem;
  /* overflow: hidden; */
  margin: 0 1.5rem 2rem;
}

.imageGroupImage {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.imageGroupSquareImage {
  position: relative;
  width: 100%;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  object-fit: contain;
}

.groupItemTitle,
.groupItemTitleSquare {
  font-size: 40px;
  letter-spacing: 2px;
  font-weight: 400;
  display: none;
  position: absolute;
  font-family: "Vollkorn";
  bottom: 25px;
  -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 .groupItemTitle,
.imageGroupSquare .groupItemTitleSquare {
  /* bottom: 54%; */
  display: block;
  -webkit-animation: slide-in-blurred 0.1s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
  animation: slide-in-blurred 0.1s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.imageGroupSquare:hover .imageGroupSquareImage,
.imageGroup:hover .imageGroupImage {
  -webkit-filter: blur(5px);
  filter: blur(3px);
}

.textGroupContainer,
.textGroupContainerSquare {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.textGroupContainer {
  bottom: 0;
}

.textGroupContainer p,
.textGroupContainerSquare p {
  color: #fff;
}

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

.imageGroupSquare a,
.imageGroupSquare img,
.imageGroupSquare figure {
  display: block;
  width: 100%;
  overflow: hidden;
}

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

.textGroupContainer p:not(.groupItemTitle),
.textGroupContainerSquare p:not(.groupItemTitleSquare) {
  /* margin-top: 70px; */
  opacity: 0;
  position: absolute;
  text-transform: initial;
  border-bottom: 1px solid transparent;
  font-weight: 100;
  background-color: var(--primary);
  padding: 0.8rem 1.3rem;
  font-size: 1.3rem;
  bottom: 0;
  color: white;
}
.shopNowBtn {
  position: relative;
  text-transform: initial;
  border-bottom: 1px solid transparent;
  font-weight: 100;
  background-color: var(--primary);
  padding: 0.8rem 1.3rem;
  font-size: 1.3rem;
  color: white;
  width: fit-content !important;
  margin: 25px auto 0;
}
.shopNowBtn p {
  color: white;
}

.textGroupContainerSquare p:not(.groupItemTitleSquare):hover,
.textGroupContainer p:not(.groupItemTitle):hover {
  color: var(--primary);
  background-color: var(--white);
}

.imageGroupSquare .textGroupContainerSquare p:not(.groupItemTitleSquare) {
  -webkit-animation: slide-in-blurred 0.1s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
  animation: slide-in-blurred 0.1s cubic-bezier(0.23, 1, 0.32, 1) 0.1s 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) {
  .groupsContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    gap: 10px;
  }

  .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: 90%;
    margin-bottom: 50px;
    /* margin: unset; */
    /* display: none; */
  }

  .imageGroupSquare {
    width: 90%;
    margin-bottom: 20px;
  }

  .imageGroupImage,
  .imageGroupSquareImage {
    position: relative;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
  }

  .groupItemTitle,
  .groupItemTitleSquare {
    /* bottom: 50%; */
    display: block;
    -webkit-animation: slide-in-blurred 2.7s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
    animation: slide-in-blurred 2.7s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
    font-size: 42px;
    text-transform: initial;
  }

  .textGroupContainer p:not(.groupItemTitle) {
    /* bottom: unset; */
    -webkit-animation: slide-in-blurred 2.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
    animation: slide-in-blurred 2.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
  }

  .textGroupContainerSquare p:not(.groupItemTitleSquare) {
    bottom: 0%;
    -webkit-animation: slide-in-blurred 2.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
    animation: slide-in-blurred 2.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
    font-size: unset;
  }

  .imageGroup:hover .imageGroupImage {
    -webkit-filter: unset;
    filter: unset;
  }

  .imageGroupSquare:hover .imageGroupSquareImage {
    -webkit-filter: unset;
    filter: unset;
  }

  .imageGroupImage {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
  }

  .imageGroupSquareImage {
    -webkit-filter: brightness(80%);
    filter: brightness(80%);
  }

  .textGroupContainer,
  .textGroupContainerSquare {
    bottom: -16%;
  }

  .textGroupContainer {
    bottom: -30%;
  }
}

@media (min-width: 1100px) and (max-width: 1400px) {
  .textGroupContainer,
  .textGroupContainerSquare {
    bottom: -4%;
  }

  .textGroupContainer {
    bottom: -18%;
  }
}

@media (min-width: 1600px) and (max-width: 1900px) {
  .textGroupContainer,
  .textGroupContainerSquare {
    bottom: -0%;
  }

  .textGroupContainer {
    bottom: -13%;
  }
}
