/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .meta {
  display: flex;
  padding-left: 0;
  margin-top: 30px;
  margin-bottom: 20px;
}
.blog-details-desc .meta li {
  list-style-type: none;
  display: inline-block;
  margin-right: 12px;
}
.blog-details-desc .meta li:last-child {
  margin-right: 0;
}
.blog-details-desc .meta li a {
  color: var(--primaryColor);
  text-decoration: none;
}
.blog-details-desc h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
.blog-details-desc h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.blog-details-desc blockquote {
  background: #F8F5F2;
  position: relative;
  margin-top: 30px;
  padding: 30px 30px 30px 105px;
}
.blog-details-desc blockquote::before {
  content: "\f110";
  position: absolute;
  left: 30px;
  top: 55px;
  font-size: 50px;
  font-family: flaticon_aegis !important;
  font-style: normal;
  font-weight: normal !important;
  color: var(--primaryColor);
  line-height: 0;
}
.blog-details-desc blockquote p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.5;
  color: var(--blackColor);
  font-family: var(--heading-fontFamily);
}
.blog-details-desc blockquote cite {
  font-size: 17px;
  margin-bottom: 0;
  color: var(--blackColor);
  font-family: var(--heading-fontFamily);
  font-weight: 700;
}
.blog-details-desc .block-image {
  margin-top: 10px;
}
.blog-details-desc .article-footer {
  clear: both;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  margin-top: 45px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.blog-details-desc .article-footer .list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  list-style-type: none;
}
.blog-details-desc .article-footer .list li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
  padding-right: 14px;
  position: relative;
  margin-bottom: 0;
  font-size: 16px;
}
.blog-details-desc .article-footer .list li::before {
  content: "/";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--paragraphColor);
  font-size: 16px;
  font-family: var(--main-fontfamily);
}
.blog-details-desc .article-footer .list li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.blog-details-desc .article-footer .list li:last-child::before {
  display: none;
}
.blog-details-desc .article-footer .list li a {
  color: var(--paragraphColor);
  text-decoration: none;
}
.blog-details-desc .article-footer .list li a:hover {
  color: var(--primaryColor);
}
.blog-details-desc .article-footer .social {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  list-style-type: none;
  display: flex;
  justify-content: end;
  align-items: center;
}
.blog-details-desc .article-footer .social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 0;
}
.blog-details-desc .article-footer .social li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-footer .social li span {
  color: var(--blackColor);
  font-weight: 600;
}
.blog-details-desc .article-footer .social li a {
  display: inline-block;
  height: 35px;
  width: 35px;
  border: 1px solid var(--blackColor);
  border-radius: 50%;
  position: relative;
}
.blog-details-desc .article-footer .social li a img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.blog-details-desc .article-footer .social li a:hover {
  border: 1px solid var(--primaryColor);
}
.blog-details-desc .comment-wrap-form {
  margin-top: 100px;
}
.blog-details-desc .comment-wrap-form .content {
  margin-bottom: 35px;
}
.blog-details-desc .comment-wrap-form .content h2 {
  font-size: 40px;
  margin-bottom: 15px;
}
.blog-details-desc .comment-wrap-form .content p {
  margin-bottom: 0;
}
.blog-details-desc .comment-wrap-form .form-group {
  margin-bottom: 25px;
}
.blog-details-desc .comment-wrap-form .form-group label {
  color: var(--blackColor);
  display: block;
  margin-bottom: 10px;
}
.blog-details-desc .comment-wrap-form .form-group .form-control {
  display: inline-block;
  border: 0.5px solid #B3B3B3;
  background: rgba(248, 245, 242, 0.2);
  height: 55px;
  padding: 15px 20px;
  border-radius: 0;
  box-shadow: unset;
  outline: 0;
  color: #999999;
  transition: var(--transition);
}
.blog-details-desc .comment-wrap-form .form-group .form-control::-moz-placeholder {
  color: #999999;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-details-desc .comment-wrap-form .form-group .form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.blog-details-desc .comment-wrap-form .form-group .form-control:focus {
  border: 0.5px solid #242424;
}
.blog-details-desc .comment-wrap-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.blog-details-desc .comment-wrap-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.blog-details-desc .comment-wrap-form .form-group textarea.form-control {
  min-height: 120px;
}
.blog-details-desc .comment-wrap-form .form-group .form-check {
  color: #999999;
}
.blog-details-desc .comment-wrap-form .form-group .form-check .form-check-input {
  margin-top: 0.24em;
  box-shadow: unset !important;
  color: #999999;
}
.blog-details-desc .comment-wrap-form .form-group .form-check .form-check-input[type=checkbox] {
  border-radius: 0;
}
.blog-details-desc .comment-wrap-form .form-group .form-check .form-check-input:checked {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}
.blog-details-desc .comment-wrap-form .form-group .form-check .form-check-input:focus {
  border-color: var(--primaryColor);
}
.blog-details-desc .comment-wrap-form .form-group .form-check .form-check-label {
  cursor: pointer;
  color: #999999;
}
.blog-details-desc .comment-wrap-form .default-btn {
  border: none;
  border-radius: 0;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .blog-details-desc .quote {
    padding: 20px;
  }
  .blog-details-desc .quote .icon {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 5px;
  }
  .blog-details-desc .quote h4 {
    font-size: 15px;
  }
  .blog-details-desc .quote h5 {
    font-size: 15px;
  }
  .blog-details-desc .article-footer .social {
    justify-content: start;
    margin-top: 15px;
  }
  .blog-details-desc .comment-wrap-form {
    margin-top: 50px;
  }
  .blog-details-desc .comment-wrap-form .content h2 {
    font-size: 27px;
    margin-bottom: 15px;
  }
}/*# sourceMappingURL=aegis-blog-details.css.map */