.container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.textField {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-column: 5 span;
}
.items {
  padding: 2rem 1.5rem;
  box-shadow: 2px 2px 3.4px 0px #0000002b;
  background: #f8f8f86b;
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: repeat(6 , 1fr);
  gap: 2rem;
}

.title {
  color: #424242;
  font-size: 22px;
  font-weight: 600;
  line-height: 34.08px;
}

.introduction {
  color: #000000b8;
  font-size: 14px;
  font-weight: 400;
  line-height: 21.23px;
  text-align: justify;
}

.body {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: right;
  color: #000000;
  text-align: justify;
  
}

.body > p {
  padding:10px 0
}

.textBox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
 
}
.socialTitle {
  color: #424242;
  font-size: 15px;
  font-weight: 600;
  line-height: 23.24px;
  text-align: center;
}

.line {
  background: #f3f3f3;
  height: 2px;
  position: absolute;
  width: 100%;
}

.titr {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.titlePasage {
  position: relative;
  z-index: 1;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1rem;
}

.products {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
}
.productsItems {
  border-radius: 0.5rem;
  /* border: 1px solid #848383; */
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.truncate {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}
.social_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 500px) {
  .items {
    display: flex;
    flex-direction: column;
  }
  .title {
    text-align: right;
  }

  .products {
    padding: .5rem;
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .main_image > img {
        width: 120px !important;
        height: 120px !important;
  }

  .productsItems {
    overflow: hidden;
    box-shadow: none;
    display: flex;
    border-bottom: 1px solid #848383;
    border-radius: 0;
  }
  .social_container {
    gap: .5rem;
  }
}
