#mayor-message {
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  min-height: 29rem;
  padding: 2.5rem 0rem;
}

.mayor-welcome {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 0;
  bottom: -76px;
  font-size: 12rem;
  color: #e9e9e9;
  z-index: 0;
  user-select: none;
}

.mayor-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mayor-message .mayor-message-text p {
  margin-bottom: 0rem;
}

.mayor-message-text {
  width: 60%;
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}

.mayor-message-icon {
  width: 40%;
  display: flex;
  justify-content: center;
}

.mayor-message-icon img {
  width: 171px;
  height: 171px;
  border-radius: 60%;
  object-fit: cover;
}

@media screen and (max-width: 760px) {
  #mayor-message {
    height: auto;
    padding: 2rem 1rem;
  }

  .mayor-message {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .mayor-message-text {
    width: 100%;
  }

  .mayor-message-icon {
    width: 100%;
  }
}
