* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

#schedule-top-main-container {
    height: fit-content;
    display: flex
;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 100px 50px;
    padding-bottom: 0px;
    width: 100%;
}
#schedule-top-container {
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#schedule-top-container h1 {
  color: black;
  font-size: 35px;
  font-weight: 700;
    padding: 0;
  margin: 0;
}
#schedule-top-container h2 {
  color: rgb(231, 123, 0);
  font-weight: 900;
    padding: 0;
  margin: 0;
}
#schedule-top-container p {
  color: black;
  padding: 0;
  text-align: center;
  margin: 0;
}
#schedule-top-container span {
  font-size: x-small;
  text-align: center;
  color: black;
    padding: 0;
  margin: 0;
}
#schedule-calendly-container {
  position: relative; 
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  background-image: url(/Images/backgroundSchedule.webp);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 50px;
  background-position: center;
}

#schedule-calendly-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  /* margin-top: 10px; */
  z-index: 1;
}

#schedule-calendly-container > * {
  position: relative;
  z-index: 2;
}

#schedule-calendly-container h2 {
  color: #000000;
  font-weight: 700;
}

.calendly-inline-widget {
  border-radius: 10px;
}

@media (max-width: 600px) {
  #schedule-top-container h1 {
    font-size: 15px;
  }
  #schedule-top-container h2 {
    font-size: 20px;
  }
  #schedule-top-container p {
    font-size: x-small;
  }
  #schedule-top-container span {
    font-size: 9px;
  }
  #schedule-calendly-container {
    height: 800px;
    padding: 0px;
  }
  #schedule-calendly-container h2 {
    font-size: 15px;
  }
  #schedule-top-main-container {
    padding-top: 50px;
  }
}

