.more-to-explore {
  padding: 100px 0;
  text-align: center;
}

.more-to-explore h3 {
  color: #333;
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 1.46;
}
.more-to-explore .flex-container {
  justify-content: space-between;
  display: flex;
  max-width: 1080px;
  margin: auto;
  flex-wrap: wrap;
}

.more-to-explore .flex-item {
  display: inline-flex;
  flex: 0 0 360px;
  margin-top: 20px;
}
.more-to-explore a.item__content:hover .p2 {
  color: #1e96ec;
}
.more-to-explore .item__content {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 30px 30px 20px;
}
.more-to-explore .item__content:hover {
  box-shadow: rgba(0, 0, 0, 0.12) 1px 1px 4px 1px;
}
.more-to-explore .item__content img {
  width: 27px;
}
.more-to-explore .item__content .text {
  position: relative;
  text-align: left;
  margin-left: 20px;
  padding-left: 20px;
}
.more-to-explore .item__content .text::before {
  content: '';
  display: block;
  height: 100%;
  border-left: 1px solid #eaeaea;
  position: absolute;
  top: 0;
  left: 0;
}
.more-to-explore .item__content .text .p2 {
  color: #333;
  line-height: 1.3;
  margin-bottom: 16px;
}
.more-to-explore .item__content .text .p3 {
  color: #666;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .more-to-explore .flex-item {
    flex: 0 0 30%;
  }
}
@media screen and (max-width: 768px) {
  .more-to-explore {
    padding: 50px 0;
  }
  .more-to-explore .flex-item {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 500px) {
  .more-to-explore .flex-item {
    flex: 0 0 100%;
    margin-top: 0;
  }
}