.Detail {
  display: block;
  margin-top: 50px;
}

.Detail .title {
  display: block;
  text-align: center;
}

.Detail .title h2 {
  font-size: 28px;
  color: #000;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.Detail .title p {
  font-size: 17px;
  color: #444;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.Detail .wrapper {
  width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.Detail .wrapper .content {
  width: 23%;
  backdrop-filter: blur(50px);
  padding: 10px 10px;
  border-radius: 5px;
  padding-bottom: 20px;
  margin-top: 40px;
  cursor: pointer;
  transition: 0.6s;
  box-shadow: 0 3px 9px 0px #0000008f;
}

.Detail .wrapper .content:hover {
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.Detail .wrapper .content span {
  display: block;
  width: 65px;
  height: 65px;
  background-color: hsla(0, 0%, 100%, 0.4);
  border-radius: 50%;
  margin-top: 20px;
  margin: auto;
}

.Detail .wrapper .content span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Detail .wrapper .content h3 {
  font-size: 25px;
  color: #0678b1;
  margin: 0;
  padding: 10px 0px;
  font-weight: 500;
  text-align: center;
}

.Detail .wrapper .content p {
  font-size: 17px;
  color: #444;
  margin: 0;
  padding: 10px 0px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

@media only screen and (max-width: 768px) and (min-width: 360px) {
  .Detail {
    padding: 0px 10px;
  }
  .Detail .title h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .Detail .wrapper {
    width: 100%;
    flex-wrap: wrap;
  }
  .Detail .wrapper .content {
    width: 100%;
    text-align: center;
  }
  .Detail .wrapper .content h2 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
  .Detail {
    padding: 0px 10px;
  }
  .Detail .wrapper {
    width: 100%;
    flex-wrap: wrap;
  }
  .Detail .wrapper .content {
    width: 48%;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1299px) and (min-width: 993px) {
  .Detail {
    padding: 0px 10px;
  }
  .Detail .wrapper {
    width: 100%;
  }
}
