.fullScreenContainer {
  display: block;
  align-items: center;
  width: 100%;
  position: relative;
  height: auto;
  overflow: hidden;
  float: left;
  color: var(--base);
  margin-top: calc(calc(100% - var(--home-container)) / 4);
  margin-bottom: calc(calc(100% - var(--home-container)) / 4);
}

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

.fullScreenContainer figure {
  width: 100%;
}

.threeImageGroup:hover figure {
  -homekit-filter: brightness(0.8);
  filter: brightness(0.8);
}
.threeImageGroup a > figure.tr-4 {
    position: relative;
    overflow: hidden;
}

/* overlay de gradiente */
.threeImageGroup a > figure.tr-4::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

/* hover desde el contenedor */
.threeImageGroup:hover a > figure.tr-4::after {
    opacity: 1;
}

.fullScreenPromo {
  width: 100%;
  margin: auto;
  display: block;
  /* margin-bottom: 30px; */
}

.fullScrenTextContainer {
  position: absolute;
  width: 400px;
  height: 250px;
  background: #fff;
  margin-top: 20vh;
  margin-left: 61%;
}

.fullScrenTextTitle {
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 45px 30px 15px;
}

.seeMoreFullScreen {
  display: flex;
  font-size: 14px;
}

.seeMoreFullScreen figure {
  margin-left: 11px;
}

.fullScrenText {
  font-weight: 400;
  font-size: 13px;
  padding: 0 30px 25px 30px;
}

.seeMoreFullScreen {
  color: #bb9447;
  font-weight: 700;
  font-size: 16px;
  padding: 0 30px;
  padding-left: 19px;
}

.twoImageGroup {
  float: left;
  position: relative;
  width: calc((var(--home-container) - 1 * (100% - var(--home-container)) / 12) / 2);
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  margin-top: 3rem;
  border-radius: 0;
}

.twoImageGroup:nth-of-type(odd) {
  margin-left: calc(calc(100% - var(--home-container)) / 2);
  margin-right: 8px;
}

.threeImageGroup {
  width: calc((var(--home-container) - 2 * (100% - var(--home-container)) / 14) / 3);
  position: relative;
  overflow: hidden;
  float: left;
  margin-top: 8px;
  opacity: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.threeImageGroup:hover figure img {
  filter: brightness(0.8);
}

.threeImageGroup:nth-of-type(3n + 0) {
  margin-left: 8px; /* 1.5% margin left */
  margin-right: calc((100% - var(--home-container)) / 2.5); /* 3% margin right */
}

.twoImageGroup:nth-of-type(even) {
  margin-right: calc(calc(100% - var(--home-container)) / 2.5);
}

.threeImageGroup:nth-of-type(3n-2) {
  /* margin: 0px 18px 0 0; */
  margin-left: calc(calc(100% - var(--home-container)) / 2);
  margin-right: 8px; /*ac 1.5% margin right */
}

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

.groupItemTitle {
  font-size: 30px;
  line-height: 34px;
  position: absolute;
  bottom: 60px;
  font-weight: var(--groups-font-weight);
  opacity: 0;
  color: var(--image-group-font-color);
}

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

.seeMoreFullScreen figure img {
  width: 100px;
}

.textGroupContainer .groupItemTitle {
  color: var(--image-group-font-color);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.threeImageGroup a,
.threeImageGroup img,
.threeImageGroup figure {
  display: block;
  width: 100%;
  height: auto;
}

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

/* figure que contiene la imagen */
.twoImageGroup a > figure.tr-4 {
    position: relative;
    overflow: hidden;
}

/* overlay de gradiente */
.twoImageGroup a > figure.tr-4::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

/* hover */
.twoImageGroup:hover a > figure.tr-4::after {
    opacity: 1;
}
.threeImageGroup:hover figure img,
.twoImageGroup:hover figure img {
  -webkit-filter: brightness(0.9);
  filter: brightness(0.8);
}

.textGroupContainer p:not(.groupItemTitle) {
  opacity: 0;
  bottom: 30px;
  padding: 0 15px;
  position: absolute;
  color: var(--base-aux);
  padding: 8px 21px;
}
.textGroupContainer p:not(.groupItemTitle):hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--base-aux) !important;
}
.textGroupContainer p:not(.groupItemTitle)::before {
  bottom: -6px;
  background: var(--base-aux);
}

.threeImageGroup:hover .textGroupContainer p:not(.groupItemTitle) {
  -webkit-animation: fade-in-bottom 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
  animation: fade-in-bottom 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

.threeImageGroup:nth-of-type(3n-1).onViewport {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.threeImageGroup:nth-of-type(3n-2).onViewport,
.twoImageGroup:nth-of-type(odd).onViewport {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s both;
}

.threeImageGroup:nth-of-type(3n + 0).onViewport,
.twoImageGroup:nth-of-type(even).onViewport {
  -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;
}

.twoImageGroup:hover .groupItemTitle {
  -webkit-animation: fade-in-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.threeImageGroup:hover .groupItemTitle {
  -webkit-animation: fade-in-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.twoImageGroup:hover .textGroupContainer p:not(.groupItemTitle) {
  -webkit-animation: fade-in-bottom 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
  animation: fade-in-bottom 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

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

  .fullScrenTextContainer {
    width: 90%;
    margin-left: 5%;
    margin-top: 25vh;
  }

  .fullScrenTextTitle {
    font-size: 23px;
  }

  .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;
    /* margin-bottom: 130px; */
  }

  .fullScreenContainer {
    justify-content: center;
  }

  .fullImgTitle {
    right: unset;
  }

  .threeImageGroup {
    width: calc((100% - 4px) / 2);
    margin: 4px 4px 4px 0 !important;
    /* float: unset; */
    margin-bottom: 0px !important;
  }
  .threeImageGroup:nth-of-type(even) {
   margin-right: 0px !important;
  }
  
  .twoImageGroup,
  .twoImageGroup:nth-of-type(odd) {
    width: calc(100% - 0px);
    margin: 20px 0px 0px !important;
  }

  .threeImageGroup:nth-of-type(3n-2),
  .threeImageGroup:nth-of-type(3n + 0) {
    margin: 20px 20px;
  }

  .threeImageGroup figure, .twoImageGroup figure {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
  }

  .textGroupContainer p:not(.groupItemTitle) {
    margin-top: 0;
    opacity: 1;
    position: absolute;
    font-size: 12px;
    bottom: 0px;
  }

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

  .groupItemTitle {
    opacity: 1;
    font-size: 16px;
    line-height: 20px;
    bottom: 28px;
  }
  .twoImageGroup  .groupItemTitle {
    font-size: 26px;
    bottom: 52px;
}

.twoImageGroup .btn-2.tr-3 {
    font-size: 16px;
    bottom: 12px;
}
  
  .threeImageGroup:hover .groupItemTitle {
    -webkit-animation: none;
    animation: none;
  }

  .threeImageGroup a > figure.tr-4::after,
  .twoImageGroup a > figure.tr-4::after {
    opacity: 1;
  }
}
