.scheduleMeetingVpContainer{
  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;
}
.scheduleMeetingVp{
  padding: var(--spacing-xl) 0;
}
.scheduleMeetingVpBlocks{
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
}
.scheduleMeetingVpBlockWithIcon{
  display: flex;
  align-items: flex-end;
}
.scheduleMeetingVpBlockWithHeader{
  display: flex;
  align-items: center;
}
.scheduleMeetingVp{
  height: 100%;
}
.scheduleMeetingVpBlockHeader{
  line-height: 130%;
  color: #FFFFFF;
}
.scheduleMeetingVpBlockDescription{
  font-size: var(--font-size-xl);
  line-height: 159%;
  color: #BBBBBB;
}
.scheduleMeetingVpBlockButtonTexts{
  display: flex;
  align-items: center;
}
.scheduleMeetingVpBlockButtonTextsWrapper{
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}
@media screen and (max-width: 1600px) {
  .scheduleMeetingVpBlocks{
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-xl);
  }
  .scheduleMeetingVpBlockButtonTextsWrapper{
    align-items: center;
  }
  .scheduleMeetingVpBlockscheduleMeetingVpIcon{
    width: 80%;
    margin: 0 auto;
  }
  .scheduleMeetingVpBlockHeader{
    text-align: center;
  }
  .scheduleMeetingVpBlockDescription{
    text-align: center;
    font-size: var(--font-size-lg);
  }
}