@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

body {
    background: url('../images/blog-main-bg.jpg') no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    overflow-x: hidden !important;
	  font-family: 'Open Sans', sans-serif;
  }
  .blog-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .vlog-content {
    display: flex;
    background-image: url('../images/vlog.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    align-items: center;
    justify-content: center;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    cursor: pointer;
}
  .vlog-content.blog {
    background-image: url('../images/blog.png');
  }
  .vlog-content.vlog {
    background-image: url('../images/news.png');
  }
  .vlog-content .vlog-text {
    position: relative;
    background-color: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vlog-content:hover .vlog-text {display: none;}
  .vlog-content .vlog-text h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    position: relative;
    text-align: center;
    display: inline-block;
    margin-bottom: 0;
  }
  .vlog-content .vlog-text::before,.vlog-content .vlog-text::after {
    content: '';
    position: absolute;
    width: 20%;
    display: block;
    height: 2px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .vlog-content .vlog-text::after {
    right: 15%;
    left: auto;
  }
  .vlog-content .vlog-text::before {
    left: 15%;
    right: auto;
  }

@media only screen and (max-width: 767px){
  .vlog-content{
      height: 180px;
  }
  .blog-content {
    overflow: scroll;
  }
  .blog-container {
      margin-top: 5rem;
  }
  header#main-header {
      background: white;
  }

}
@media only screen and (max-width: 525px){
  .vlog-content{
      height: 140px;
  }
}