.blog-line-horizontal {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  transform: translate(-50%, -50%);
  /* 	@media(max-width:1200px) {
  		display: none;
  	} */
}

.blog-line-vertical {
  width: 1px;
  height: 1300px;
  background: #e6e6e6;
  position: absolute;
  left: 56%;
  top: -165px;
  z-index: -1;
}
/*@media (max-width: 1300px) {
  .blog-line-vertical {
    left: 50%;
  }
}*/

.blog-button-prev img {
  display: none;
}

.blog-button-next img {
  display: none;
}

.blog {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-title {
  font-weight: 200;
  font-size: 64px;
  line-height: 64px;
  letter-spacing:  -0.012em;
  color: #000;
}
.blog-slider {
  max-width: 600px;
}
.blog-slider-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
}
.blog-slide-image {
  max-width: 580px;
  width: 100%;
  height: 325px;
  background-repeat: no-repeat;
  background-size: cover!important;
}
.blog-slide-data {
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  padding: 24px 0 0 24px;
  display: block;
}
.blog-slide-title {
  text-align: center;
  padding-top: 16px;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.012em;
  text-align: center;
  color: #000;
}
.blog-button-next {
  color: #000;
  text-decoration: underline;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  letter-spacing:  -0.012em;
}
.blog-button-prev {
  color: #000;
  text-decoration: underline;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.012em;
}

@media screen and (max-width: 1900px){
  .blog-line-horizontal{
    top: 10%;
  }
}

@media screen and (max-width: 992px){
    .blog-title {
        font-size: 43px;
    }
}

@media screen and (max-width: 768px){
    .blog-slider-wrap {
        padding-top: 90px;
    }
    .blog-slide-image {
        max-width: 270px;
        height: 150px;
        margin: 0 auto;
    }
    .blog-slide-title {
        font-size: 15px;
    }
    .blog-button-next, .blog-button-prev{
      margin-bottom: 60px;
    }
    .blog-button-next span,
    .blog-button-prev span {
        display: none;
    }
    .blog-button-next img,
    .blog-button-prev img {
        display: block;
        width: 40px;
        height: 20px;
    }
}