.blog main>.container {
  margin-bottom: 60px;
}

.blog-grid.type-section {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 60px;
}

.button-wrapper {
  text-align: center;
}

.blog-grid.type-section .inner {
  width: 45%;
}

.blog-grid.type-section .blog-item .thumb {
  height: 350px;
  width: 100%;
}

.blog-grid.type-section .blog-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-grid.type-section .blog-item .content {
  padding: 30px;
}

.blog-grid.type-section .blog-item .postmeta {
  display: block;
  margin-bottom: 30px;
  color: #B5B5B5;
  font-size: 14px;
}

.blog-grid.type-section .blog-item .title {
  margin-bottom: 30px;
  display: block;
  min-height: 50px;
  font-weight: 600;
  color: #343434;
}

.blog-grid.type-section .blog-item .excerpt {
  min-height: 100px;
  line-height: 1.5
}

.blog-grid.type-section .blog-item .read-more {
  text-transform: uppercase;
  font-weight: 600;
  color: #F28B4F;
  letter-spacing: 2px;
}

/*
* Blog archive page
 */
.blog-grid.row .blog-item .thumb {
  height: 300px;
}

.blog-grid.row .blog-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-grid.row div[class^="col-"] {
  margin-bottom: 60px;
}

.blog-grid.row .blog-item {
  height: 100%;
}

.blog-grid.row .blog-item .content .read-more {
  text-transform: uppercase;
  color: #f0762f;
}

.blog-grid.row .blog-item .content .title {
  color: #343434;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 30px;
  display: block;
  min-height: 80px;
  font-size: 18px;
}

.blog-grid.row .blog-item .content .postmeta {
  display: block;
  margin-bottom: 30px;
  font-size: 14px;
}

.blog-grid.row .blog-item .content .excerpt {
  min-height: 150px;
}

.secondary .widget-title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 30px
}

.secondary .widget {
  margin-bottom: 100px;
}

.secondary ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.secondary ul li {
  margin-bottom: 15px
}

.secondary ul li:last-child {
  margin-bottom: 0;
}

.secondary ul a {
  color: #343434;
  font-weight: 600;
}

.load-more {
  text-align: center;
}

.load-more a {
  position: relative;
  overflow: hidden;
}

.load-more .spinner {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  margin: 0 auto;
  transition: all 500ms;
}

.load-more .text-label {
  transition: bottom, -webkit-transform 500ms;
  transition: bottom, transform 500ms;
  transition: bottom, transform 500ms, -webkit-transform 500ms;
  position: relative;
  display: block;
  bottom: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.load-more.is-loading .spinner {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.load-more.is-loading .text-label {
  bottom: -10px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

@media (max-width:991px) {
  .blog-grid.type-section .blog-item .excerpt{
    min-height: auto;
  }
  
  .blog-grid.type-section {
    -webkit-flex-direction: column;
    flex-direction: column
  }

  .blog-grid.type-section .inner {
    width: 100%;
    margin-bottom: 30px
  }

  .blog-grid.type-section .inner:last-child {
    margin-bottom: 0;
  }

  .blog-grid.row .blog-item .content .title,
  .blog-grid.row .blog-item .content .excerpt {
    min-height: auto;
  }

  .blog-grid.type-section .blog-item .content{
    padding:30px 0;
  }
}