/* Styling for apprenticeship landing page - please be aware of the CSS combinators used to minify the styling. Lots of absolute positioning - always take a full back up. */
#appImgTn{
  width: 500px; 
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  position: relative;
}
#heroBlur{
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  max-width: 100%;
  object-fit: cover; 
}
#appHeader{
  background-color: var(--murkygreen);
  padding: 20px 0px;
}
#appHeaderH1{
  padding: 0 !important;
  margin-top:;
  margin-bottom: 10px;
}
#appHeaderH1 + p{
  background-color: #68b54b;
  color: var(--dark);
  padding: 10px 20px;
  text-align: center;
  max-width: fit-content;
  border-radius: 5px;
}
#appHeader > img{
  opacity: 0.15;
  filter: blur(2px);
}
#curvedOverlay{
  position: absolute;
  bottom: -2.1%;
  right: 0; left: 0;
  max-width: -webkit-fill-available;
  max-width: -moz-available;
  padding: 0;
  z-index: 2; 
}
#sixCtaWrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
#sixCtaWrapper > div{
  flex: 0 0 25%;
  background-color: var(--white);
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  position: relative;
}
#sixCtaWrapper > div > img{
  position: relative;
  object-fit: contain;
  height: 80px;
  margin-bottom: 15px;
}
#sixCtaWrapper > div > p{
  margin-bottom: 20px;
}
#appUspCta{
  background-color: #68b54b;
  max-width: -webkit-fill-available;
  padding: 5px 10px;
  color: var(--white);
  border-radius: 5px;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
body main a, body main a > p{
  text-decoration: none !important; 
}
body main a, body main a > #appUspCta:hover{
  background-color: #53913c; 
}
@media only screen and (max-width: 700px) {
  #sixCtaWrapper > div{
    flex: 1 100%;
  }
  #appImgTn{
    height: 200px; 
  }
  #appTextWrapper{
    margin-right: auto; 
  }
}













