.news {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}

.news a,
.news .item {
  color: var(--black);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-decoration: none;
  gap: 1rem;
  padding: 1.2rem 1rem;
  border-radius: 1.2rem;
  outline: 1px solid rgb(241 241 241);
  box-shadow: 1px 1px 5px rgb(235, 235, 235), inset -1px -1px 5px rgb(251 251 251);
}

.news .title {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}

.news .text {
  text-align: justify;
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 2.2rem;
}

.news span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--blue);
}

.about {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.about .text {
  font-size: 1.7rem;
  line-height: 2.2rem;
  text-align: justify;
}

.about .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.about .nfz {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about .iso {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about .nfz img {
  width: 40rem;
}

.about .iso img {
  width: 22rem;
}

@media screen and (max-width: 675px) {

  .news .text,
  .about .text {
    text-align: left;
  }

  .about .logo {
    flex-direction: column;
    gap: 6rem;
  }

  .about .nfz img {
    width: 75%;
  }

  .about .iso img {
    width: 60%;
  }

}