.greeting {
      padding: 120px 0px 60px 0;

  color: #333;
}



.greeting-title {
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.greeting-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;   align-items: flex-start;
    flex-direction: row-reverse;
}

.greeting-photo {
  /* flex: 1 1 250px; */
  width: 37%;
  text-align: center;
}

.greeting-photo img {
  max-width: 100%;
  border-radius: 12px;

}
.greeting-text span img{
    width: 85px;
}
.greeting-text {
  /* flex: 2 1 500px; */
  width: 45%;
  line-height: 1.7;
}

.greeting-text p {
  margin-bottom: 20px;
}

.greeting-text .sign {
  margin-top: 40px;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 950px){

    .greeting-content{
        flex-direction: column;
    }
    .greeting-photo,
    .greeting-text{
        width: 100%;
        margin-bottom: 20px;
    }
}