.banner .item {
  position: relative;
  background: linear-gradient(90deg, var(--color-main) 0%, rgba(16, 67, 69, 0) 100%);
}
.banner .item .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.banner .item .container .content_banner {
  width: 480px;
  color: #fff;
}
.banner .item .container .content_banner .title_banner {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
.banner .item .container .content_banner .view_more {
  display: inline-block;
  margin-top: 5px;
  padding: 10px 30px;
  border-radius: 5px;
  background-color: #ff79a9;
  color: #fff;
}
.banner .slick-dots {
  position: absolute;
  bottom: 30px;
  z-index: 1;
}
.banner .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(225, 225, 225, 0.5);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner .slick-dots li button:before {
  display: none;
}
.banner .slick-dots li.slick-active {
  border: 1px solid #fff;
  border-radius: 50%;
}
.banner .slick-dots li.slick-active button {
  background-color: #fff;
}
@media (max-width: 767px) {
  .banner .item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner .item .container {
    top: unset;
    transform: translateY(0);
    bottom: 0;
    background: linear-gradient(0deg, rgba(16, 67, 69, 0.9) 21.33%, rgba(16, 67, 69, 0) 100%);
  }
  .banner .item .container .content_banner {
    width: 100%;
    padding: 60px 0;
  }
  .banner .item .container .content_banner .title_banner {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .banner .item .container .content_banner p:not(.title_banner) {
    text-align: justify;
    line-height: 18px;
  }
  .banner .item .container .content_banner .view_more {
    padding: 10px 20px;
  }
}

.box_news {
  display: grid;
  grid-template-columns: 1fr 480px;
  grid-gap: 20px;
  margin-top: 50px;
  margin-bottom: 30px;
}
.box_news .news .top_news {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.box_news .news .top_news .top_left {
  padding: 0 !important;
}
.box_news .news .top_news .view_all {
  display: flex;
  grid-gap: 10px;
  align-items: center;
  color: #ec008c;
}
.box_news .news .list_news {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
.box_news .news .list_news .top {
  margin-bottom: 20px;
}
.box_news .news .list_news .top a {
  align-items: center;
}
.box_news .news .list_news .top a .img img {
  width: 100%;
  height: 214px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.box_news .news .list_news .top .title_new {
  font-size: 20px;
  color: #121212;
  font-weight: bold;
  margin: 20px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 50px;
}
.box_news .news .list_news .top .summary {
  color: #333333;
  font-size: 16px;
  line-height: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 173px;
  margin-bottom: 0;
}
.box_news .news .list_news .bottom a {
  display: block;
  margin-bottom: 20px;
}
.box_news .news .list_news .bottom a .top_item {
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}
.box_news .news .list_news .bottom a .top_item .img {
  width: 50%;
}
.box_news .news .list_news .bottom a .top_item .img img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}
.box_news .news .list_news .bottom a .top_item .title_new {
  width: 50%;
  color: #121212;
  font-weight: bold;
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 78px;
  margin-bottom: 0;
}
.box_news .news .list_news .bottom a .summary {
  color: #333333;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 66px;
  margin-bottom: 0;
}
.box_news .news .list_news .bottom a:last-child {
  margin-bottom: 0;
}

#box_about .form_title .title {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  gap: 10px;
  display: flex;
  align-items: center;
}
#box_about .form_title .title_bot {
  margin: 8px 0 30px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
#box_about .top_block {
  position: relative;
  background: #ffeef0;
  padding: 75px 0;
}
#box_about .top_block .block_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#box_about .top_block .block_left .top_left {
  padding: 0;
  margin-bottom: 20px;
}
#box_about .top_block .block_left .note {
  color: #121212;
  font-size: 17px;
}
#box_about .top_block .block_left .note span {
  font-weight: 600;
  color: #ec008c;
}
#box_about .top_block .col-md-5.col-lg-5.col-xl-5 {
  max-width: 430px;
  flex-grow: 5;
}
#box_about .top_block .col-md-7.col-lg-7.col-xl-7 {
  max-width: 770px;
  flex-grow: 7;
}
#box_about .top_block .slick-slide {
  margin-left: 8px;
  margin-right: 8px;
}
#box_about .top_block .content .item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}
#box_about .top_block .content .item-content p {
  margin: 0;
  font-size: 18px;
  color: #121212;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 50px;
}
#box_about .top_block .content .item-content img {
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
#box_about .top_block .click-showcontent .DivImageContentShow {
  flex-grow: 7;
  max-width: 300px;
}
#box_about .top_block .click-showcontent .DivImageContentShow img.ImageContentShow {
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  min-width: 300px;
  max-width: 300px;
  width: 100%;
}
#box_about .top_block .click-showcontent .ContentShow {
  flex-grow: 5;
}
#box_about .top_block .click-showcontent .ContentShow h3 {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  color: #121212;
}
#box_about .top_block .click-showcontent .ContentShow .SummaryContentShow {
  font-size: 16px;
  color: #121212;
  margin-bottom: 48px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 120px;
}
#box_about .top_block .click-showcontent .ContentShow .LinkContentShow {
  display: block;
  background: #ff79a9;
  padding: 15px 17px;
  border-radius: 4px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: #fff;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
#box_about .top_block .click-showcontent .ContentShow .LinkContentShow:hover {
  background: #ec008c;
}
#box_about .top_block .box-slide {
  position: relative;
  z-index: 1;
}
#box_about .top_block .flower_bgr {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
#box_about .bottom_block {
  background: url(../../../../templates/default/images/bgr_pink.jpg) top 0px left 0 no-repeat;
  height: 670px;
  position: relative;
}
#box_about .bottom_block .box_community {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#box_about .bottom_block .box_community .left .note {
  font-size: 18px;
}
#box_about .bottom_block .box_community .right {
  max-width: 680px;
}

.partner .title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.partner .title .note {
  font-size: 16px;
  color: #121212;
  font-weight: normal;
}

.box_partner .slick-track {
  display: flex;
  align-items: center;
}
.box_partner .item {
  padding: 15px 20px;
  border: solid 1px #facedf;
  border-radius: 8px;
  margin: 0 12px;
}
.box_partner .item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  max-height: 70px;
}
.box_partner .slick-prev::before,
.box_partner .slick-next::before {
  display: none;
}
.box_partner .slick-arrow {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  top: 45%;
}
.box_partner .slick-arrow i {
  width: 25px;
  height: 25px;
  font-size: 25px;
  color: #002a00;
}
.box_partner .slick-prev {
  left: -50px;
}
.box_partner .slick-next {
  right: -50px;
}

@media (max-width: 768px) {
  body .top_left .title {
    font-size: 24px;
    text-align: center;
    justify-content: center;
  }
  .box_news {
    grid-template-columns: 1fr;
    margin: 0;
  }
  .box_news .news .top_news .title {
    font-size: 18px;
    justify-content: start;
  }
  .box_news .news .list_news {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .box_news .news .list_news .top {
    margin-bottom: 0;
  }
  .box_news .news .list_news .top a {
    flex-direction: column;
  }
  .box_news .news .list_news .top a .img {
    margin-bottom: 20px;
  }
  .box_news .news .list_news .top a .img img {
    height: auto;
  }
  .box_news .news .list_news .top .title_new {
    font-size: 18px;
    color: var(--color-main);
    font-weight: bold;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    height: 45px;
    line-height: normal;
  }
  .box_news .news .list_news .top .summary {
    color: #222;
    line-height: 18px;
    -webkit-line-clamp: 4;
    height: 72px;
  }
  .box_news .news .list_news .bottom {
    flex-direction: column;
  }
  .box_news .news .list_news .bottom a {
    display: block;
    margin-bottom: 15px;
  }
  .box_news .news .list_news .bottom a .top_item {
    display: block;
    margin-bottom: 10px;
  }
  .box_news .news .list_news .bottom a .top_item .img {
    width: 100%;
    height: auto;
  }
  .box_news .news .list_news .bottom a .top_item .img img {
    height: auto;
  }
  .box_news .news .list_news .bottom a .top_item .title_new {
    width: 100%;
    color: var(--color-main);
    font-weight: bold;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 55px;
    margin-bottom: 0;
    margin-top: 15px;
  }
  .box_news .news .list_news .bottom a .summary {
    color: #222;
    margin-bottom: 0;
    line-height: 18px;
  }
  #box_about .top_block {
    padding: 40px 0;
  }
  #box_about .top_block .block_left .note {
    font-size: 15px;
  }
  #box_about .top_block .box-slide .click-showcontent {
    flex-direction: column-reverse;
    align-items: center !important;
  }
  #box_about .top_block .box-slide .click-showcontent .ContentShow h3 {
    margin-bottom: 10px;
  }
  #box_about .top_block .box-slide .click-showcontent .ContentShow .SummaryContentShow {
    margin-bottom: 15px;
    -webkit-line-clamp: 3;
    height: 68px;
  }
  #box_about .top_block .box-slide .click-showcontent .ContentShow .LinkContentShow {
    padding: 5px 10px;
    font-size: 14px;
    margin: auto;
  }
  #box_about .top_block .box-slide .click-showcontent .DivImageContentShow .ImageContentShow {
    max-height: 300px;
    margin: auto;
  }
  #box_about .bottom_block .box_community {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #box_about .bottom_block .box_community .left .note {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
  }
  #box_about .bottom_block .box_community .list_community .item {
    padding: 40px 30px;
  }
  #box_about .bottom_block .box_community .list_community .item .top .title {
    font-size: 22px;
    height: 64px;
  }
  #box_about .bottom_block .box_community .list_community .item .bottom .image img {
    margin-bottom: 20px;
  }
  #box_about .bottom_block .box_community .list_community .content {
    margin: 20px 0;
  }
  .partner .title {
    padding: 30px 0 20px;
  }
  .partner .title .note {
    width: 80%;
    margin: auto;
  }
  .box_partner .item {
    padding: 10px;
  }
}
@media (max-width: 450px) {
  .top_news {
    flex-direction: column;
    gap: 10px;
  }
  #box_about .top_left {
    margin-bottom: 10px;
  }
  #box_about .top_left .title {
    font-size: 20px;
  }
  #box_about .top_block .block_left {
    margin-bottom: 20px;
  }
  #box_about .top_block .ContentShow {
    width: 90%;
    margin: auto;
    text-align: center;
  }
  #box_about .bottom_block .box_community {
    display: unset;
  }
  #box_about .bottom_block .box_community .list_community {
    margin-top: 20px;
  }
  #box_about .bottom_block .box_community .list_community .item {
    padding: 30px 15px 40px;
  }
  #box_about .bottom_block .box_community .list_community .item .top .title {
    font-size: 19px;
    height: 54px;
  }
  #box_about .bottom_block .box_community .list_community .item .bottom .name,
  #box_about .bottom_block .box_community .list_community .item .bottom .summary {
    font-size: 16px;
  }
  #box_about .bottom_block .box_community .list_community .item .bottom .summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 48px;
  }
  #box_about .bottom_block .box_community .list_community .slick-arrow {
    width: 40px;
    height: 40px;
  }
  #box_about .bottom_block .box_community .list_community .slick-prev {
    left: 30%;
  }
  #box_about .bottom_block .box_community .list_community .slick-next {
    left: 55%;
  }
}/*# sourceMappingURL=home6.css.map */