.title .title-top{
  font-size: 45px;
  color: #354963;
  text-align: center;
  padding: 100px 0 50px;
}
.title .title-top::before {
  content: "";
  height: 1px;
  width: 80px;
  background: #354963;
  display: inline-block;
  position: relative;
  top: -14px;
  left: -40px;
}
.title .title-top::after {
  content: "";
  height: 1px;
  width: 80px;
  background: #354963;
  display: inline-block;
  position: relative;
  top: -14px;
  right: -40px;
}

.content{
  display: flex;
  flex-wrap: wrap;
}

.content .box{
  width: 33%;
  padding: 0 20px;
}

.content .box .card{
  box-shadow: 0 5px 15px -5px rgba(34, 11, 11, 0.5);
  padding: 50px 20px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content .box .card:hover{
  box-shadow: 0 10px 25px -5px rgba(34, 11, 11, 0.5);
}

.content .box .card .img{
  height: 150px;
  width: 150px;
}

.content .box .card .title{
  font-size: 28px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.content .box .card .titles{
  height: 80px;
}

.content .box .card span{
  margin-bottom: 15px;
  font-size: 18px;
}

.content .box .card p>a{
  color: rgb(185, 59, 59);
  font-size: 16px;
}

@media (max-width: 768px) {

  .title .title-top{
    font-size: 25px;
    font-weight: 600;
  }
  .title .title-top::before {
    content: none;
    top: -8px;
    left: -10px;
  }
  .title .title-top::after {
    content: none;
    top: -8px;
    right: -10px;
  }

  .content{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .content .box{
    width: 100%;
    padding: 0 20px;
  }
}