.products-section {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #f1f2f6;
}

.products-container {
  display: flex;
  justify-content: center;
  height: calc(100% - 220px);
}

.products-container .text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 220px);
  padding: 0 5%;
}

.products-container p {
  font-size: 16px;
  color: #ff0000;
  line-height: 2.5em;
  text-align: right;
}

.products-container .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 220px);
}

.products-container .image-container img {
  width: auto;
  height: 90%;
}

@media screen and (max-width: 1024px) {
  .products-section {
    width: 100vw;
    height: 100%;
  }

  .products-section .products-container {
    height: 100%;
  }

  .products-section .products-container .text-container,
  .products-section .products-container .image-container {
    width: 100%;
    height: 100%;

  }

  .products-section .products-container .text-container p {
    text-align: left;
    padding-top: 50px;
  }

  .products-section .products-container .image-container img {
    width: 80%;
    height: auto;
  }
}
