body {
  position: relative;
}
body .home {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
body .home .baner {
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 440px;
  width: 100%;
  background: linear-gradient(270deg, #a4deff 0%, #f2fbff 100%);
}
body .home .baner .center {
  width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
body .home .baner .center .text {
  display: flex;
  flex-direction: column;
  width: 50%;
}
body .home .baner .center .text h1 {
  height: 123px;
  color: var(--Black1, #1f1f1f);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 69px;
  /* 115% */
  text-transform: uppercase;
}
body .home .baner .center .text div {
  margin-top: 20px;
  height: 145px;
  color: var(--Black1, #1f1f1f);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
  /* 31.92px */
}
body .home .baner .center img {
  margin-left: 70px;
  height: 403px;
}
body .home .center {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}
body .home .center .container .row div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .home .center .container .row div img {
  width: 50px;
  height: 50px;
}
body .home .center .container .row div .title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 4px 0;
}
body .home .center .container .row div .text {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 241px;
}
body .home .products {
  margin-top: 20px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}
body .home .products .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
body .home .products .content {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  font-style: normal;
  line-height: normal;
}
body .home .products .content .productCell {
  border: 1px solid  #C9C9C9;
  width: 236px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
body .home .products .content .productCell:hover {
  color: black;
}
body .home .products .content .productCell .img {
  width: 216px;
  height: 216px;
  object-fit: contain;
}
body .home .products .content .productCell .label {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: auto;
  line-height: 1.5em;
  /* Set the line height */
  height: 3em;
}
body .home .products .content .productCell .description {
  width: 100%;
  overflow: hidden;
  color: #424242;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 350;
  line-height: normal;
}
body .home .products .content .productCell .price {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
}
body .home .torm {
  margin-top: 30px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
body .home .news {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}
body .home .news .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
body .home .news .post-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  padding: 0;
}
body .home .news .post-list li {
  border: 1px solid  #C9C9C9;
  padding: 15px;
  width: 50%;
}
body .home .news .post-list li h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}
body .home .news .post-list li p {
  color: #424242;
  font-size: 12px;
  font-weight: 350;
}
body .home .news .post-list li p img {
  width: 216px;
  height: 215px;
  float: inline-start;
  object-fit: cover;
  margin-right: 15px;
}
body .home .terms {
  width: 100%;
  max-width: 1200px;
}
body .home .terms .container-fluid .navbar-toggler {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  background: #009bdb57;
  border-radius: 5px;
  transition: .2s ease;
}
body .home .terms .container-fluid .navbar-toggler:hover {
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px #00000073;
}
@media screen and (max-width: 769px) {
  body .home .baner {
    justify-content: flex-start;
    height: 262px;
  }
  body .home .baner .center .text {
    padding-left: 20px;
  }
  body .home .baner .center .text h1 {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    /* 122.727% */
    text-transform: uppercase;
    height: auto;
  }
  body .home .baner .center .text div {
    height: auto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 133%;
    /* 18.62px */
  }
  body .home .baner .center img {
    margin-left: 0;
    width: 248px;
  }
  body .home .center .container .row div {
    text-align: center;
  }
  body .home .center .container .row div img {
    width: 36px;
    height: 36px;
  }
  body .home .center .container .row div .title {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  body .home .center .container .row div .text {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 185px;
    max-width: 100%;
  }
  body .home .torm {
    display: none;
  }
  body .home .products {
    padding: 20px;
  }
  body .home .products .content :last-child {
    display: none;
  }
  body .home .products .content .productCell {
    position: relative;
    width: 50%;
    height: auto;
  }
  body .home .products .content .productCell .img {
    width: 90%;
    height: 165px;
  }
  body .home .products .content .productCell .price {
    display: block;
  }
  body .home .news {
    padding: 20px;
  }
  body .home .news .post-list > :last-of-type {
    display: none;
  }
  body .home .news .post-list li {
    width: 100%;
    padding: 5px;
  }
  body .home .news .post-list li h3 {
    font-size: 14px;
    font-weight: 600;
  }
  body .home .news .post-list li p {
    color: #424242;
    font-size: 10px;
    font-weight: 350;
  }
  body .home .news .post-list li p img {
    width: 200px;
    height: 200px;
  }
  body .home .terms .container-fluid .center h2 {
    font-size: 20px;
  }
  body .home .terms .container-fluid .center p,
  body .home .terms .container-fluid .center ol {
    font-size: 12px;
  }
}
