.banner {
  position: relative;
}

.banner img {
  width: 100%;
  display: block;
}

.banner .title {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 15px;
}

.banner .info {
  line-height: 1.75;
}

.banner .info>*:not(:last-child) {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .banner img {
    min-height: 300px;
  }

  .banner .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
  }

  .banner .title {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .banner .container>* {
    max-width: 646px;
  }

  .banner .title {
    margin-bottom: 25px;
  }

  .banner .info>*:not(:last-child) {
    margin-bottom: 30px;
  }
}


/* products */
.products {
  padding-bottom: 30px;
}

.products .item {
  padding-top: 30px;
}

.products .title {
  text-align: left;
  margin-bottom: 10px;
  font-family: 'PlusJakartaSans-S'
}

.products .sub-info {
  line-height: 1.75;
  margin-bottom: 20px;
}

.products .row {
  margin-left: -9px;
  margin-right: -9px;
  margin-bottom: -30px;
}

.products .row>div {
  padding: 0 9px;
  margin-bottom: 30px;
}

.products .block {
  height: 100%;
  padding-bottom: 20px;
  border-radius: 3px;
  border: 1px solid #D0D0D0;
}

.products .block>*:not(.img) {
  margin-left: 15px;
  margin-right: 15px;
}

.products .img {
  width: 100%;
}

.products .img img {
  width: 100%;
  aspect-ratio: 285 / 285;
}

.products .tit {
  line-height: 1.38;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--style-color);
  font-family: 'PlusJakartaSans-B'
}

.products .info {
  font-size: 14px;
  line-height: 2;
}

.products .info ul {
  padding-left: 20px;
}

.products .info>*:not(:last-child), .products .info ul>li:not(:last-child) {
  margin-bottom: 6px;
}

@media (min-width: 576px) {
  .products .tit {
    height: 67px;
  }
}

@media (min-width: 1200px) {
  .products {
    padding-bottom: 60px;
  }

  .products .item {
    padding-top: 60px;
  }

  .products .title {
    margin-bottom: 17px;
  }

  .products .sub-info {
    margin-bottom: 35px;
  }

  .products .row {
    margin-bottom: -40px;
  }

  .products .row>div {
    margin-bottom: 40px;
  }

  .products .block {
    padding-bottom: 42px;
    transition: all .3s;
  }

  .products .block:hover {
    border-color: var(--sub-color);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  }

  .products .block>*:not(.img) {
    margin-left: 30px;
    margin-right: 30px;
  }

  .products .tit {
    height: 75px;
    margin-top: 27px;
    margin-bottom: 23px;
    transition: all .3s;
  }

  .products .tit:hover {
    color: var(--sub-color);
    text-decoration: underline;
  }
}

@media (min-width: 1440px) {
  .products {
    padding-bottom: 100px;
  }

  .products .item {
    padding-top: 92px;
  }
}


/* benefit */
.benefit {
  padding: 60px 0;
  background: #F7F7F7;
}

.benefit .title {
  text-align: left;
  margin-bottom: 20px;
}

.benefit .row {
  margin-bottom: -20px;
}

.benefit .row>div {
  margin-bottom: 20px;
}

.benefit .icon {
  width: auto;
  height: 43px;
}

.benefit .tit {
  margin-top: 16px;
  margin-bottom: 8px;
  font-family: 'PlusJakartaSans-B'
}

.benefit .info {
  line-height: 1.75;
}

@media (min-width: 1200px) {
  .benefit {
    padding: 60px 0;
  }

  .benefit .title {
    margin-bottom: 27px;
  }

  .benefit .row {
    margin-left: -21px;
    margin-right: -21px;
  }

  .benefit .row>div {
    padding: 0 21px;
  }
}

@media (min-width: 1440px) {
  .benefit {
    padding: 92px 0 94px;
  }
}


/* contact */
.contact {
  padding: 30px 0;
}

.contact .title {
  text-align: left;
  margin-bottom: 15px;
}

.contact .info {
  line-height: 1.75;
  margin-bottom: 20px;
}

.contact label {
  margin-bottom: 15px;
  font-family: 'PlusJakartaSans-S';
}

.contact label span {
  color: var(--sub-color);
}

.contact .form-control {
  border-radius: 2px;
  border-color: #D0D0D0;
  box-shadow: none;
}

.contact input.form-control {
  height: 46px;
}

.contact textarea.form-control {
  height: 128px;
}

.contact .btn-wrap {
  text-align: left;
}

.contact .btn {
  width: 160px;
  padding: 11px 15px 10px;
  margin-top: 20px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--style-color);
}

@media (min-width: 1200px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact .title {
    margin-bottom: 20px;
  }

  .contact .info {
    margin-bottom: 40px;
  }

  .contact form .row {
    margin-left: -20px;
    margin-right: -20px;
  }

  .contact form .row>div {
    padding: 0 20px;
  }

  .contact .form-group {
    margin-bottom: 26px;
  }

  .contact form input.form-control {
    height: 51px;
  }

  .contact form textarea.form-control {
    height: 201px;
  }

  .contact .btn {
    width: 250px;
    font-size: 18px;
    margin-top: 30px;
    transition: background .3s;
  }

  .contact .btn:hover {
    background: var(--sub-color);
  }
}

@media (min-width: 1440px) {
  .contact {
    padding-top: 91px;
    padding-bottom: 100px;
  }

  .contact .info {
    margin-bottom: 48px;
  }
}


/* faq */
.faq {
  padding: 30px 0;
  background: #F7F7F7;
}

.faq .title {
  text-align: left;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(208, 208, 208, .5);
}

.faq .item {
  margin-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(208, 208, 208, .5);
}

.faq .item-title {
  font-family: 'PlusJakartaSans-S';
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq .item-title i {
  margin-left: 15px;
  margin-right: 15px;
  transition: transform .3s;
  cursor: pointer;
}

.faq .item-title.active i {
  transform: rotate(180deg);
}

.faq .item-info {
  margin-top: 10px;
  margin-right: 30px;
  line-height: 1.75;
  display: none;
}

.faq .item-info>*:not(:last-child) {
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .faq {
    padding: 60px 0;
  }

  .faq .title {
    padding-bottom: 30px;
  }

  .faq .item {
    margin-top: 36px;
    padding-bottom: 30px;
  }

  .faq .item-title i {
    margin-right: 25px;
  }

  .faq .item-info {
    margin-right: 60px;
  }
}

@media (min-width: 1440px) {
  .faq {
    padding-top: 91px;
    padding-bottom: 100px;
  }

  .faq .item-info {
    margin-right: 100px;
  }
}