.blog-feed-section {
  position: relative;
  background: #0D2834;
  padding: 8px 0px 62px 0px;
}

.blog-feed-section .blog-feed {
  position: relative;
}

.blog-feed-section .section-icon {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.blog-feed-section h2 {
  color: #091524;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.blog-feed-section h3 {
  color: #091524;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 15px;
}

.blog-feed-section .read-more {
  color: #262F68;
  font-size: 16px;
  font-weight: 500;
}

.blog-feed-section .read-more svg {
  transition: all .3s linear;
}

.blog-feed-section .read-more:hover svg {
  transform: translateX(10px);
}

.blog-feed-section .page-title-wrapper .icon-box {
  background: #f0f0f1;
  background: linear-gradient(180deg, #f0f0f1 0%, #c4c4c9 40%);
  border-radius: 50%;
  display: block;
  height: 90px;
  width: 90px;
  margin: -45px auto 10px;
  display: flex;
  align-items: center;
}

.blog-feed-section .page-title-wrapper .icon-box .icon {
  margin: 0 auto;
  text-align: center;
  display: block;
}

.blog-feed-section .modified-date {
  padding-bottom: 13px;
}

.blog-feed-section .post-content {
  font-size: 14px;
  line-height: 1.3;
  padding-bottom: 20px;
}

.blog-feed-section .container-box {
  background-color: #EDF1F5;
  border: 1px solid #FFFFFF66;
  border-radius: 5px;
  box-shadow: 0px 9px 21px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 9px 21px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 9px 21px 0px rgba(0, 0, 0, 0.16);
  margin: 100px 0 0px;
}

.blog-feed-section .container-box .page-title-wrapper {
  padding: 0 30px;
  text-align: center;
}

.blog-feed-section .container-box .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 45px 30px;
  gap: 45px;
}

.blog-feed-section .container-box .list .item {
  width: calc(33.33% - 30px);
  background: #fff;
  border-radius: 7px;
  padding: 35px;
  box-sizing: border-box;
}

@media (max-width: 1150px) {
  .blog-feed-section .container-box .list .item {
    width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  .blog-feed-section .container-box .list {
    row-gap: 20px;
  }
  .blog-feed-section .container-box .list .item {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #92B8D3;
  }
}
