main {
  width: auto;
  flex: 1;
}
main .container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.header {
  background-color: var(--main-black);
  position: relative;
}
.header img {
  width: 200px;
  margin-left: -30px;
  position: relative;
  z-index: 2;
}

.union {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background: url(/assets/background.jpg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  background-attachment: fixed;
  background-color: #131516;

  position: relative;
  z-index: 1;
  top: -58px;
}

.union .text {
  font-family: 'AA-BebasNeue';
  font-style: normal;
  font-weight: 400;
  font-size: 11vw;
  line-height: 190px;
  /* letter-spacing: 10px; */
  text-transform: uppercase;
  color: #fff;
  padding: 10px 10px 10px 5px;
  display: flex;
  align-items: center;
  /* justify-content: ; */
  position: relative;
  mix-blend-mode: multiply;
  background-color: var(--main-black);
}
.union .gth {
  display: flex;
  align-items: center;
  justify-content: end;
  mix-blend-mode: multiply;

  background-color: var(--main-black);
}

.union .figure > div {
  width: 407px;
  height: 407px;
  position: relative;
  box-sizing: content-box;
  background-color: #fff;
}
.union .figure .circle {
  border-radius: 50%;
  display: flex;
}

.union .figure .square {
  height: 334px;
  top: -130px;
  border-top-right-radius: 80%;
  border-top-left-radius: 80%;
}

.info-item {
  font-family: 'Formular';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 38px;
}
.info-item img {
  width: 78px;
  height: 78px;
}
.info-item .title {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
  color: var(--title-color);
  padding-bottom: 6px;
}
.info-item .value-item {
  color: #fff;
}

.file-item {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  text-decoration: none;
}
.file-item .data {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}
.file-item .data .data-value {
  font-family: 'Formular';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}
.file-item .data span {
  font-family: 'Formular';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--title-color);
  text-transform: uppercase;
}

@media (min-width: 1720px) {
  .union .text {
    font-size: 190px;
  }
}

@media (max-width: 998px) {
  .union {
    display: flex;
    flex-direction: column;
    top: 0;
  }
  .union .gth {
    justify-content: center;
  }
  .union .text {
    justify-content: center;
    padding: unset;
    font-size: 21vw;
  }
}

@media (max-width: 768px) {
  .header img {
    margin-left: -10px;
  }

  .union .figure > div {
    width: 333px;
    height: 333px;
  }

  .union .text {
    font-size: 16vw;
  }
}

@media (max-width: 425px) {
  .header img {
    width: 126px;
    height: 100px;
  }
  .union {
    background-attachment: scroll;
    background-position-x: -1131px;
    background-position-y: -100px;
  }
  .union .gth {
    justify-content: center;
  }
  .union .figure > div {
    width: 300px;
    height: 300px;
  }
  .union .text {
    font-size: 19vw;
  }
}
