@import url(/assets/css/header.css);
@import url(/assets/css/footer.css);

main {
  background-color: #f2f4f7;
}
.blog-detail-container {
  padding: 40px 140px;
  display: flex;
  gap: 35px;
  flex-direction: column;
  background-color: #f2f4f7;
}
.blog-detail-container .detail-img {
  max-height: 487px;
  width: 100%;
}
.blog-detail-container .detail-img img {
  max-height: 487px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.blog-detail-text {
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 35px;
}
.blog-detail-text .text-title h3 {
  color: #2d3748;
  font-size: 42px;
  font-weight: 700;
  line-height: 54px;
}
.blog-detail-text .text-title div {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 20px;
  margin-top: 20px;
}
.blog-detail-text .text-title div span {
  color: #2d3748;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.78px;
}
.blog-detail-text .text-title div p {
  color: #718096;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
}
.text-item_first {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.text-item_first h5,
.text-item_second h5 {
  color: #242424;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}
.text-item_first .text-about-title {
  color: #718096;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  margin: 30px 0;
}
.text-item_first ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.text-item_first ul li p {
  color: #5f6980;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  margin-top: 1px;
}
.text-item_first .item-services {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 3px;
  margin: 30px 0 0 10px;
}

.item-services li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.item-services li span::after {
  content: "•";
  color: #718096;
}
.item-services li p {
  color: #718096;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}
.text-item_second {
  display: flex;
  align-items: start;
  flex-direction: column;
}
.text-item_second p {
  color: #718096;
  font-weight: 400;
  font-size: 16px;
  line-height: 20.8px;
}
.text-item_second ul {
  margin: 30px 0 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
.text-item_second li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.text-item_second li span::after {
  content: "•";
  color: #718096;
}
@media (max-width: 1200px) {
  .blog-detail-container {
    padding: 48px 24px;
  }
}
@media (max-width: 991px) {
  .blog-detail-text {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .blog-detail-text .text-title h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
  }
}
@media (max-width: 576px) {
  .blog-detail-text .text-title div p {
    margin-top: 50px;
  }
  .blog-detail-text .text-title div {
    margin-top: 0;
  }
}
@media (max-width: 450px) {
  .blog-detail-text {
    padding: 0 4px;
  }
}
@media (max-width: 360px) {
}
