.scheduleMeetingContainer{
  width: 100%;
  height: fit-content;
  background-image: url(../../../assets/illustrations/scheduleMeeting.png);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-position-y: 0%;
  background-size: cover;
}
.scheduleMeeting{
  padding: var(--spacing-xl) 0;
}
.scheduleMeetingBlocks{
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
}
.scheduleMeetingBlockWithIcon{
  display: flex;
  align-items: flex-end;
}
.scheduleMeetingBlockWithHeader{
  display: flex;
  align-items: center;
}
.scheduleMeeting{
  height: 100%;
}
.scheduleMeetingBlockHeader{
  line-height: 130%;
  color: #FFFFFF;
}
.scheduleMeetingBlockDescription{
  font-size: var(--font-size-xl);
  line-height: 159%;
  color: #BBBBBB;
}
.scheduleMeetingBlockButtonTexts{
  display: flex;
  align-items: center;
}
.scheduleMeetingBlockButtonTextsWrapper{
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}
@media screen and (max-width: 1600px) {
  .scheduleMeetingBlocks{
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-xl);
  }
  .scheduleMeetingBlockButtonTextsWrapper{
    align-items: center;
  }
  .scheduleMeetingBlockScheduleMeetingIcon{
    width: 80%;
    margin: 0 auto;
  }
  .scheduleMeetingBlockHeader{
    text-align: center;
  }
  .scheduleMeetingBlockDescription{
    text-align: center;
    font-size: var(--font-size-lg);
  }
}