

/********************************/
/*  .services-container-width   THIS IS FOR HOME PAGE JUMBOTRONS */
/********************************/

.page-content-class {
  /* display: flex; */
  width: auto;
  /* height: 100vh;*/
  height: 100%;
  position: relative;
  margin: 0px;
  
}

@media screen and (max-width: 857px) {
  .page-content-class {
    width: auto;
    height: 100%;
    position: relative;
    padding: 20px 50px;
  }
}

@media screen and (857px <= width <= 1275px) {
  .page-content-class {
    width: auto;
    height: 100%;
    position: relative;
    margin: 0px; 
  }
}

/********************************/
/*  .services-flex-basis       THIS IS FOR HOME PAGE JUMBOTRONS  */
/********************************/

.services-flex-basis {
  flex-basis: 40%;
  
}

@media screen and (max-width: 650px) {
  .services-flex-basis {
    flex-basis: 100%;
  }
}

@media screen and (650px <= width <= 1275px) {
  .services-flex-basis {
    flex-basis: 40%;
  }
}

/********************************/
/*  .services-minimum-width  THIS IS FOR HOME PAGE JUMBOTRONS  */
/********************************/

.services-minimum-width {
  min-width: 100px;
}

@media screen and (max-width: 857px) {
  .services-minimum-width {
    min-width: 100px;  }
}

@media screen and (857px <= width <= 1275px) {
  .services-minimum-width {
    min-width: 100px;  }
}

