* {
	box-sizing: border-box;
  }
  
  :root {
	--schedule-container-height: 30vw;
  /*   --mobile-oss-height: 20vw; */
  }
  
  .schedule-container {
	padding-top: 3vw;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	/* align-content: center; */
	align-items: center;
	flex-wrap: none;
	max-width: 100vw;
	/* border: 3px solid green; */
	/* background-color: #ddd */
	background-image: url("https://checkitouthomeinspection.com/wp-content/uploads/2020/09/portland-homes-ready-for-home-inspection-service.jpg");
	  background-repeat: repeat;
	background-size: contain;
    /* height: var(--schedule-container-height);	 */
	padding: 6vw 3vw 3vw 3vw
  }
  .calendar-container {
	display: flex;
  /*   border: 2px solid #000; */
	/* border: 3px dashed red; */
	height: calc(0.7*var(--schedule-container-height));
  /*   flex-shrink: 1; */
  /*   padding: 2vw 0; */
  }
  
  #calendar {
	display: flex;
	height: 100%;
  /*   flex-shrink: 1; */
  /*   width: 35vw; */
  }
  .one-stop-shopping-container {
	display: flex;
	align-items: flex-end;
	height: calc(0.3*var(--schedule-container-height));
  /*   flex-shrink: 1; */
  }
  #one-stop-shopping {
	display: flex;
	height: 100%;
  /*   flex-shrink: 1; */
  /* /*   width: 35vw; */ */
  }
  .schedule-by-phone-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(0.3*var(--schedule-container-height));
  /*   flex-shrink: 1; */
  }
  #schedule-by-phone {
	display: flex;
	height: 100%;
  /*   flex-shrink: 1; */
  /*   width: 15vw; */
  /*   transform: scale(-1, 1); */
	/* transform-origin: 8vw 8vw; */
  }
  
  
  @media (max-width: 72em) {
	.schedule-container {
  /*     background: none; */
	  flex-wrap: wrap;
	  justify-content: center;
  /*     height: calc(var(--mobile-header-height)); */
	  padding: 0;
	  margin-top: 2vw;
	}
  
	.calendar-container {
  /*     border: 3px dashed green; */
	  order: 2;
	  height: calc(1.1*var(--schedule-container-height));
	  padding: 2vw 0;
	  transform: translate(10vw)
	}
  
	.one-stop-shopping-container {
	  order: 1;
	  display: flex;
	  justify-content: center;
  /*     background-image: url("https://checkitouthomeinspection.com/wp-content/uploads/2020/09/full-service-home-inspections-in-portland-oregon-1.jpg"); */
	  background: white;
  /*     background-repeat: repeat; */
  /*     background-size: contain; */
	  flex: 0 0 100vw;
	  transform: none;
	  height: calc(var(--schedule-container-height));
	}
  
	.schedule-by-phone-container {
	  order: 3;
  /*     border: 3px dashed red; */
	  height: calc(0.5*var(--schedule-container-height));
	  transform: translate(10vw);
	}
  
  }
  