

.hero-homepage{
  .full_grid{
    background-color: var(--color-primary--4);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    .hero-homepage__image{
      height: 100%;
      article{
        height: 100%;
        picture{
          height: 100%;
          img{
            object-fit: cover;
            height: 333px;
          }
        }
      }

    }
    .hero-homepage__text{
      position: relative;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      height: 100%;
      justify-content: center;
      z-index: 1;

      &::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 1184px;
        height: 210px;
        z-index: -1;
        background-image: url("../../images/pattern-top-shape--light.svg");
        background-size: cover;
        background-repeat: no-repeat;
      }
      h1{
        font-family: Oswald;
        /* font-size: 64px; */
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
        text-transform: uppercase;
      }
      p{
        margin: 0;
      }

      .cta-wrapper-horizontal{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap:16px;

        >a{
          flex-shrink: 0;
        }
      }
    }
  }
  .hero-homepage__data{
    width: 100%;
    background-color: var(--color-primary--1);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 100px;
    row-gap: 32px;
    padding: 32px;

    div{
      display: flex;
      flex-direction: column;
      gap: 10px;
      p{
        margin: 0;
        padding: 0 auto;
        font-family: Roboto;
        font-size: 14px;
        font-weight: 700;
        line-height: 100%; /* 14px */
        text-transform: uppercase;
        text-align: center;

        &.monoton{
          font-family: Monoton;
          font-size: 40px;
          font-weight: 400;
          line-height: 100%; /* 64px */
          letter-spacing: 5.12px;
        }
      }
    }
  }
}

.hero-homepage.hero-homepage__background--primary_1 .full_grid {
  background-color: var(--color-primary--1);
  color: var(--color-white);
}


.hero-homepage.hero-homepage__background--primary_2 .full_grid {
  background-color: var(--color-primary--2);
}


.hero-homepage.hero-homepage__background--primary_3 .full_grid {
  background-color: var(--color-primary--3);
}


.hero-homepage.hero-homepage__background--primary_4 .full_grid {
  background-color: var(--color-primary--4);
}

.path-node .hero-homepage .hero-homepage__text::before {
  display: none;
}

/*
MARK: 750 PX
*/
@media all and (min-width: 750px) {
  .hero-homepage{
    .full_grid{
      display: grid;
      grid-template-columns: 1fr 1fr;

      .hero-homepage__image{
        article{
          picture{
            img{
              height: 100%;
            }
          }
        }
      }
    }
    .hero-homepage__data{
      flex-direction: row;
      justify-content: center;
      column-gap: 50px;
    }
  }
}

/*
MARK: 1000 PX
*/
@media all and (min-width: 1000px) {
  .hero-homepage{
      h1 {
        font-size: var(--heading-homepage);
      }
    .hero-homepage__data{
      div{
        flex-shrink: 0;
      }
    }
  }
}


/*
MARK: 1060 PX
*/

@media all and (min-width: 1060px) {
  .hero-homepage{
    .full_grid{
      .hero-homepage__text{
        padding: 25px 40px;
      }
    }
    .hero-homepage__data{
      column-gap: 100px;
    }
  }
}

/*
MARK: 1260 PX
*/
@media all and (min-width: 1260px) {
  .hero-homepage{
    .full_grid{
      .hero-homepage__text{
        padding: 50px 80px;
      }
    }
    .hero-homepage__data{
      div{
        p{
          &.monoton{
            font-size: 64px;
          }
        }
      }
    }
  }
}


/*
MARK: 1460 PX
*/
@media all and (min-width: 1460px) {
  .hero-homepage{
    .full_grid{
      .hero-homepage__text{
        padding: 100px 160px;
      }
    }
  }
}


/*
MARK: 1730 PX
*/
@media all and (min-width: 1730px) {
  .hero-homepage{
    .full_grid{
      .hero-homepage__text{
        h1{
          font-size: 64px;
        }
      }
    }
  }
}
