.flex_layout.structure {
  padding-block: 30px;
  margin-bottom: 80px;
}
.flex_layout.structure .structure-row {
  max-width: 1300px;
  margin-inline: auto;
}
.flex_layout.structure .structure-row .bouy-logo {
  display: block;
  margin-inline: auto;
}

.flex_layout.structure .structure-row .lines {
  width: 100%;
  height: auto;
  padding-inline: 10%;
}

.flex_layout.structure .structure-row svg.first-row {
  display: block;
  margin: 0 auto;
}

.flex_layout.structure .boxes {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 20px;
  max-width: 1300px;
  margin-inline: auto;
}
.flex_layout.structure .box {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 20px;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 30px 20px;
  border-radius: 10px;
}

.flex_layout.structure .box .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
}

.flex_layout.structure .box .image-container img {
  width: fit-content;
  height: auto;
}

.flex_layout.structure .box-title {
  font-size: 12px;
}
.flex_layout.structure .structure-row:last-child {
  margin-top: 20px;
  position: relative;
}

.flex_layout.structure .structure-row:last-child .box::before {
  content: '';
  position: absolute;
  top: 0;
  width: 1.2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
}

.flex_layout.structure .structure-row:last-child .box {
  margin-top: calc(70px + 12px);
  /* translate: calc(50% + 12px) 0; */
}

/* .flex_layout.structure .structure-row:last-child .box {
  translate: calc(50% + 12px) 0;
} */
@media screen and (max-width: 990px) {
  .flex_layout.structure {
    padding: 0 20px;
    overflow: hidden;
  }
  .flex_layout.structure .boxes {
    overflow: scroll;
  }
}
