body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.home {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f7f8fc;
}

.hero {
  position: relative;
  text-align: center;
  color: white;
  margin-top: 100px;
}

.hero img {
  width: 100%;
  height: auto;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recommended-project {
  width: 60%;
  margin: 40px 0;
  text-align: center;
  margin-bottom: 100px;
}

.recommended-project .rp-title {
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 42px;
  color: #3e3c3c;
  margin-bottom: 26px;
}
.recommended-project .rp-subTitle {
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 30px;
  color: #425383;
  margin-bottom: 86px;
}

.project-card {
  margin: 10px;
  width: 100%;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  display: flex;
}

.project-card img {
  width: 45%;
  height: auto;
}

.project-card .info {
  margin-left: 88px;
  text-align: left;
}

.info .i-title {
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 28px;
  color: #070707;
  margin-bottom: 36px;
}

.info .i-address {
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  margin-bottom: 36px;
}

.info .i-text {
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 14px;
  color: #777373;
  line-height: 25px;
}

.info .i-button {
  width: 204px;
  height: 52px;
  background: #425383;
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 24px;
  line-height: 52px;
  text-align: center;
  margin-top: 60px;
}

.i-button a {
  color: #ffffff;
}

.projects {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects .p-title {
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 42px;
  color: #3e3c3c;
  margin-bottom: 26px;
}

.projects .p-subTitle {
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 30px;
  color: #425383;
  margin-bottom: 26px;
}

.projects .p-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
}

.projects .p-list .pl-card {
  width: calc(25% - 20px);
  background: #ffffff;
  box-shadow: 0px 0px 13px 0px rgba(127, 127, 127, 0.14);
  margin-bottom: 35px;
}

.projects .p-list .pl-card img {
  width: 100%;
  height: auto;
}

.projects .p-list .pl-card .title {
  font-family: Source Han Sans SC;
  font-weight: 400;
  font-size: 20px;
  color: #5b5e66;
  padding: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.projects .p-list .pl-card .title a:hover {
  color: chocolate;
}
