main {
  width: 100%;
  padding-left: clamp(50px, 6.5vw, 89px);
  padding-right: 46px;
}
.main.active {
  visibility: hidden;
}


.info {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  letter-spacing: 0.17em;
  line-height: calc(26 / 14);
}
.news {
  width: 100%;
  margin-top: 106px;
}
.news .title {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  width: fit-content;
}

.news .title::after {
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  content: '';
  width: 12px;
  height: 12px;
  background-image: url(../images/link-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.news .list {
  margin-top: 29px;
}
.news .list-item {
  margin-top: 18px;
}
.news .list-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 13px;
}
.news .list-date time {
  font-size: 12px;
}
.news .item {
  text-decoration: underline;
}

.brands {
  width: 100%;
  margin-top: 307px;
}
.brands .title {
  font-weight: 400;
  font-size: 14px;
}
.brands .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 4vw;
  width: 100%;
  max-width: 852px;
}

.footer {
  width: 130px;
  margin: 38px 46px 33px auto;
  font-size: 10px;
}

  /* -768px
  ------------------------------ */
  @media screen and (max-width:768px) {

    main {
      padding-left: 26px;
      padding-right: 24px;
      margin-top: 33px;
    }
    .info {
      font-size: 12px;
      letter-spacing: 0.09em;
      line-height: calc(24 / 12);
    }
    .news {
      margin-top: 80px;
    }
    .brands {
      margin-top: 80px;
    }
    .brands .container {
      display: flex;
      flex-wrap: wrap;
      column-gap: 30px;
      row-gap: 47px;
      margin-top: 25px;
    }
    .brands .container div:nth-of-type(2n-1) {
      width: 160px;
    }
    .brands .container div:nth-of-type(2n) {
      width: 117px;
    }
    .brands .container div:nth-of-type(1) {
      text-align: center;
    }
    .brands .container div:nth-of-type(1) img {
      width: 71.8%;
    }
    .brands .container div:nth-of-type(5) {
      text-align: center;
    }
    .brands .container div:nth-of-type(5) img {
      width: 38.75%;
    }
    .footer {
      margin: 60px 24px 30px auto;
    }
  }