header {
  background: var(--green);
}

.detailPost {
  margin-top: 78px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}
.detailPost .future {
  z-index: 1;
  position: relative;
  height: 55vh;
}
@media (max-width: 640px) {
  .detailPost .future {
    height: auto;
  }
}
.detailPost .future img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 640px) {
  .detailPost .future img {
    height: auto;
  }
}
.detailPost .main {
  z-index: 1;
  padding-bottom: 8rem;
  position: relative;
  padding-top: 3rem;
  font-size: 13px;
}
.detailPost .main .content {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  max-width: 75%;
  margin: -10rem auto 0 auto;
  background: var(--green);
  color: #fff;
  padding: 20px 4rem;
  text-align: justify;
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .detailPost .main .content {
    max-width: 100%;
    padding: 15px;
    position: relative;
    z-index: 9;
  }
}
.detailPost .main .content .text .title {
  text-align: center;
  margin-top: 1rem;
  color: var(--yellow);
  font-family: "philosopher";
  margin: auto;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.detailPost .main .content img {
  margin: auto;
  display: block;
  border: 15px solid rgba(239, 239, 239, 0.09);
  margin-bottom: 15px;
}
.detailPost .main .content .share {
  display: flex;
  list-style: none;
  padding-left: 0;
  align-items: center;
}
.detailPost .main .content .share li {
  margin-left: 8px;
  width: 32px;
  height: 32px;
  background: #F6F6F6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.detailPost .main .content .share li:nth-child(1) {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 8px;
  background: none;
}
.detailPost .main .content .share li:nth-child(2) i {
  color: blue;
}
.detailPost .main .content .share li:nth-child(3) i {
  color: #dc4a38;
}
.detailPost .main .content .share li:nth-child(4) i {
  color: #007ab5;
}
.detailPost .main .content .share li:nth-child(6) i {
  color: red;
}
.detailPost .main .content .share li:nth-child(n+2):hover {
  background: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=detail_post.css.map */