.container-fluid {
  max-width: 1350px;
}

.card-post-1 {
  margin-bottom: 60px;
}
.card-post-1.card-post-2 .item-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-post-1.card-post-2 .item-container .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  min-height: 300px;
}
.card-post-1.card-post-2 .item-container .content .title {
  font-size: 25px;
}
.card-post-1 .item-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #F9FAFC;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 750px) {
  .card-post-1 .item-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card-post-1 .item-container .img {
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  min-height: 500px;
}
.card-post-1 .item-container .img:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}
.card-post-1 .item-container .img img {
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.card-post-1 .content {
  padding: 40px 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.card-post-1 .content .title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 15px;
  display: block;
}
@media (max-width: 1000px) {
  .card-post-1 .content .title {
    font-size: 25px;
  }
}
.card-post-1 .content .title a {
  color: #212121;
}
.card-post-1 .content .title a:hover {
  color: #212121;
}
.card-post-1 .content .date {
  font-size: 15px;
  color: #212121;
  margin-bottom: 40px;
  background-image: url(../img/calendar-fold.svg);
  background-repeat: no-repeat;
  background-position: 0 50%;
  padding-left: 30px;
  background-size: 20px 20px;
}
.card-post-1 .content .description {
  font-size: 15px;
  margin-bottom: 10px;
  color: #212121;
}
.card-post-1 .content .btn-container {
  margin-top: 40px;
}
.card-post-1 .content .btn-container .btn {
  border-radius: 5px;
}