:root {
    --dark-green: #005151;
    --white: #ffffff;
    --black: #000000;
    --hero-bg-color: #EEEDE9;
    --secondary-bg-color: #E6E6E6;
}

.font-400 {
  font-weight: 400;
}

.h-100 {
  height: 100%;
}

.gap-8 {
  gap: 8px;
}

.m-0 {
  margin: 0px;
}

.content-spacing {
  padding-top: 48px;
  padding-bottom: 48px;
}

.bg-secondary {
  background-color: var(--secondary-bg-color);
}

.d-flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-32 {
  gap: 32px;
}

.align-items-center {
  align-items: center;
}

.justify-content-right {
  justify-content: right;
}

.justify-content-left {
  justify-content: left;
}

.justify-content-center {
  justify-content: space-evenly;
}

.text-align-center {
  text-align: center;
}

a.btn.btn-light {
  background-color: #ffffff;
  color: #cf112d;
  border: 1px solid #cccccc;
  transition: all 200ms ease-in-out;
}

a.btn.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

a.btn.btn-danger {
  transition: all 200ms ease-in-out;
}

.section-border-left {
  border-left: 10px solid #cf112d;
}

.p-16 {
  padding: 16px;
}

/*HERO STYLES*/
.hero-section {
    background-image: none;
    height: auto;
  background-color: var(--hero-bg-color);
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

.hero-section h1 {
    color: var(--dark-green);
}
#mp-videos p {margin-bottom: 3rem;}
#form iframe { width: 100%;
    margin-bottom: 16px;
	height: 1205px;}

@media only screen and (max-width: 767px) {
 
  .row {
    flex-direction: column;
    gap: 16px;
  }

  .content-spacing {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section-border-left {
    border-left: 0px;
  }

  a.btn.btn-light,
  a.btn.btn-danger {
    width: 100%;
  }

  .mobile-text-center {
    text-align: center;
  }
    
}

@media handheld, only screen and (min-width:768px) {
    .hero-section {
  background-image: image-set(
    url(/portals/0/images/managed-print-services-hero.png) 1x, url(/portals/0/images/managed-print-services-hero@2x.png) 2x);
  background-position: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--hero-bg-color);
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  min-height: 190px;
}
    .hero-section .hero-text {width: 50%; line-height: 1.1em;}
}
@media handheld, only screen and (min-width:970px) {
    .hero-section {background-position: right;}
}
@media handheld, only screen and (min-width: 1600px) {
  .hero-section {
    height: 300px;
  }
}






/*
@media only screen and (min-width: 868px) {
  .hero-section {
    background-size: 50%;
  }
}

@media only screen and (max-width: 867px) {
  .hero-section {
    background-size: 60%;
  }
}
*/

