
.content-text p{
    margin-bottom: 20px;
}

.container {
    margin: auto;
    margin-bottom: 50px;
}
.products_dec{
    margin-bottom: 20px;
}

.container .top-section {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
    margin-top: 30px;
}

.container .card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 30px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container .card .text {
  margin-bottom: 20px;
}

.container .card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.container .card p {
  color: #555;
  line-height: 1.6;
}
.container .card .image {
    height: 100%;
    margin: 0 auto;
}

.container .card .image img {
    /*width: 100%;*/
    height: 100%;
}

.container .bottom-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.container .bottom-section .image{
  margin-right: 20px;
}

.container .bottom-section.reverse {
  flex-direction: row;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container .bottom-section .image{
        margin-right: auto;
    }
    .container .text img{
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {

    .container{
        margin-bottom: 10px;
    }
  .container .top-section {
    flex-direction: column;
  }

  .container .bottom-section {
    flex-direction: column;
  }

  .container .bottom-section.reverse {
    flex-direction: column;
  }

  .container .card .image img{
      width: 100%;
  }
  .container .bottom-section .image{
        margin-right: auto;
    }

  .container .text img{
        width: 32px;
    }
}