
.product-architecture {
  width: 100%;
  padding: 50px 20px;
  background-color: #ffffff;
  
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-architecture > .title {
  margin-bottom: 5px;
  width: 100%;
  max-width: 1240px;

  font-weight: 400;
  font-size: 21px;
}

.product-architecture > .description {
  margin-bottom: 20px;
  width: 100%;
  max-width: 1240px;

  font-weight: 500;
  font-size: 36px;
}

.product-architecture img {
  width: 100%;
  max-width: 1240px;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .product-architecture {
    padding: 20px;
    display: block;
  }

  .product-architecture > .title {
    width: 100%;
    font-size: 16px;
  }

  .product-architecture > .description {
    margin-bottom: 10px;
    width: 100%;
    font-size: 21px;
  }

  .product-architecture img {
    margin-bottom: 0;
  }
}
