/*================================================
Blog Area CSS
=================================================*/
.mf-blog-card {
  margin-bottom: 25px;
  transition: var(--transition);
}
.mf-blog-card .blog-image {
  overflow: hidden;
}
.mf-blog-card .blog-image a img {
  transition: var(--transition);
}
.mf-blog-card .blog-content {
  margin-top: 20px;
}
.mf-blog-card .blog-content .meta {
  padding-left: 0;
  margin-bottom: 15px;
}
.mf-blog-card .blog-content .meta li {
  list-style-type: none;
  font-size: 15px;
  color: var(--paragraph-color);
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.mf-blog-card .blog-content .meta li:last-child {
  margin-right: 0;
}
.mf-blog-card .blog-content .meta li:last-child::before {
  display: none;
}
.mf-blog-card .blog-content .meta li::before {
  position: absolute;
  content: "";
  right: -17px;
  top: 3px;
  background-color: var(--paragraph-color);
  width: 1px;
  height: 15px;
}
.mf-blog-card .blog-content .meta li a {
  color: var(--paragraph-color);
}
.mf-blog-card .blog-content .meta li a:hover {
  color: var(--main-color);
}
.mf-blog-card .blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.mf-blog-card .blog-content h3 a {
  color: var(--black-color);
}
.mf-blog-card .blog-content p {
  margin-bottom: 12px;
}
.mf-blog-card .blog-content .blog-btn {
  color: var(--optional-black-color);
  font-weight: 500;
}
.mf-blog-card:hover {
  transform: translateY(-5px);
}
.mf-blog-card:hover .blog-image a img {
  transform: scale(1.1);
}

/*================================================
MF Widget Sidebar CSS
=================================================*/
.mf-widget-area {
  padding-left: 30px;
}
.mf-widget-area.with-left-bar {
  padding-left: 0;
  padding-right: 30px;
}
.mf-widget-area .widget {
  margin-bottom: 30px;
}
.mf-widget-area .widget:last-child {
  margin-bottom: 0;
}
.mf-widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding-left: 40px;
}
.mf-widget-area .widget .widget-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 6.8px;
  width: 30px;
  height: 7px;
  background-color: var(--black-color);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.mf-widget-area .widget_search form {
  position: relative;
}
.mf-widget-area .widget_search form .search-field {
  height: 70px;
  color: var(--paragraph-color);
  display: block;
  width: 100%;
  border: none;
  border-radius: 50px;
  padding: 15px 70px 15px 30px;
  transition: var(--transition);
  font-weight: 500;
  outline: 0;
  background: #f9f9f9;
}
.mf-widget-area .widget_search form .search-field::-moz-placeholder {
  color: var(--paragraph-color);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.mf-widget-area .widget_search form .search-field::placeholder {
  color: var(--paragraph-color);
  transition: var(--transition);
}
.mf-widget-area .widget_search form .search-field:focus::-moz-placeholder {
  color: transparent;
}
.mf-widget-area .widget_search form .search-field:focus::placeholder {
  color: transparent;
}
.mf-widget-area .widget_search form button {
  border: none;
  background-color: transparent;
  color: var(--black-color);
  position: absolute;
  right: 20px;
  padding: 0;
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  line-height: 0;
}
.mf-widget-area .widget_search form button:hover, .mf-widget-area .widget_search form button:focus {
  color: var(--main-color);
}
.mf-widget-area .widget_recent_post {
  position: relative;
  overflow: hidden;
}
.mf-widget-area .widget_recent_post .item {
  overflow: hidden;
  margin-bottom: 25px;
}
.mf-widget-area .widget_recent_post .item:last-child {
  margin-bottom: 0;
}
.mf-widget-area .widget_recent_post .item .thumb {
  float: left;
  width: 100px;
  height: 100px;
  overflow: hidden;
  display: block;
  position: relative;
  margin-right: 20px;
  z-index: 1;
}
.mf-widget-area .widget_recent_post .item .thumb .fullimage {
  width: 100px;
  height: 100px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.mf-widget-area .widget_recent_post .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/images/blog/blog1.jpg);
}
.mf-widget-area .widget_recent_post .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/images/blog/blog2.jpg);
}
.mf-widget-area .widget_recent_post .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/images/blog/blog3.jpg);
}
.mf-widget-area .widget_recent_post .item .thumb::before, .mf-widget-area .widget_recent_post .item .thumb::after {
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  content: "";
  background-color: var(--white-color);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.mf-widget-area .widget_recent_post .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}
.mf-widget-area .widget_recent_post .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}
.mf-widget-area .widget_recent_post .item .info {
  overflow: hidden;
  position: relative;
  top: 10px;
}
.mf-widget-area .widget_recent_post .item .info span {
  display: block;
  color: var(--optional-black-color);
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 10px;
}
.mf-widget-area .widget_recent_post .item .info .title {
  margin-bottom: 0;
  line-height: 28px;
  font-size: 16.5px;
  font-weight: bold;
  color: var(--black-color);
}
.mf-widget-area .widget_recent_post .item .info .title a {
  display: inline-block;
  color: var(--black-color);
}
.mf-widget-area .widget_recent_post .item:hover .thumb::before, .mf-widget-area .widget_recent_post .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.mf-widget-area .widget_categories .list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.mf-widget-area .widget_categories .list li {
  margin-bottom: 15px;
}
.mf-widget-area .widget_categories .list li:last-child {
  margin-bottom: 0;
}
.mf-widget-area .widget_categories .list li a {
  color: var(--paragraph-color);
  font-weight: 500;
  font-size: 15px;
}
.mf-widget-area .widget_categories .list li a:hover {
  color: var(--black-color);
}
.mf-widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 18px;
}
.mf-widget-area .tagcloud a {
  display: inline-block;
  background: #f5f5f5;
  color: var(--paragraph-color);
  padding: 8px 15px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
  margin-right: 5px;
}
.mf-widget-area .tagcloud a:hover, .mf-widget-area .tagcloud a:focus {
  color: var(--white-color);
  background-color: var(--black-color);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .mf-widget-area {
    padding-left: 0;
    margin-top: 30px;
  }
  .mf-widget-area.with-left-bar {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .mf-widget-area .widget_recent_post .item .info .title {
    font-size: 12.5px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mf-widget-area {
    padding-left: 0;
    margin-top: 30px;
  }
  .mf-widget-area.with-left-bar {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mf-widget-area {
    padding-left: 0;
  }
  .mf-widget-area.with-left-bar {
    padding-right: 0;
  }
  .mf-widget-area .widget_recent_post .item .info .title {
    font-size: 12.5px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mf-widget-area {
    padding-left: 0;
  }
  .mf-widget-area.with-left-bar {
    padding-right: 0;
  }
  .mf-widget-area .widget_recent_post .item .info .title {
    font-size: 14.5px;
  }
}/*# sourceMappingURL=blog.css.map */