#section1 .item:nth-child(1) .rotate {
  top: 21%;
  right: 47%;
}

#section1 .item:nth-child(2) .rotate {
  top: 26%;
  right: 44%;
}

#section1 .symptoms_box {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

#section1 .symptoms_box .symptoms {
  width: 100%;
  border-radius: 16px;
  padding: 20px 30px;
  font-size: 20px;
  color: #535353;
}

#section1 .symptoms_box .symptoms.left {
  background-color: #fdf8f3;
}

#section1 .symptoms_box .symptoms.right {
  background-color: #f6f7f8;
}

#section1 .symptoms_box .symptoms .title {
  font-size: 20px;
  margin-bottom: 10px;
}

#section1 .symptoms_box .symptoms.left .title,
#section1 .symptoms_box .symptoms.left i {
  color: #d99c61;
}

#section1 .symptoms_box .symptoms.right .title,
#section1 .symptoms_box .symptoms.right i {
  color: #000;
}

#section1 .symptoms_box .symptoms p {
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #section1 {
    margin-top: 50px;
  }

  #section1 .symptoms_box {
    flex-direction: column;
  }

  #section1 .symptoms_box .symptoms .title {
    font-size: 18px;
  }

  #section1 .symptoms_box .symptoms {
    font-size: 16px;
  }
}