/* Added fallbacks to help with CLS, feel free to remove if it doesn't help on your project */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
.home-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -200px; }
  @media (min-width: 641px) {
    .home-banner {
      margin-top: -208px; } }
  @media (min-width: 1341px) {
    .home-banner {
      margin-top: -125px; } }
  .home-banner .banner-sm {
    display: block !important; }
    @media (min-width: 769px) {
      .home-banner .banner-sm {
        display: none !important; } }
  .home-banner .banner-desktop {
    display: none !important; }
    @media (min-width: 769px) {
      .home-banner .banner-desktop {
        display: block !important; } }
  .home-banner img,
  .home-banner picture {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
    object-position: top right;
    z-index: -1;
    position: absolute; }
  .home-banner .banner-content {
    color: #FFFFFF;
    padding: 250px 1rem 100px 1rem;
    z-index: 9; }
    @media (min-width: 1025px) {
      .home-banner .banner-content {
        padding: 250px 1rem 150px 1rem; } }
    .home-banner .banner-content h1 {
      margin-bottom: 3rem; }
    .home-banner .banner-content h3 {
      font-size: 22px; }
      @media (min-width: 1025px) {
        .home-banner .banner-content h3 {
          font-size: 30px; } }
      .home-banner .banner-content h3:nth-of-type(2) {
        max-width: 800px;
        margin: 0 auto 3rem auto; }
    .home-banner .banner-content .btn-primary {
      width: 100%;
      margin-bottom: 1rem; }
      @media (min-width: 641px) {
        .home-banner .banner-content .btn-primary {
          width: auto;
          margin-bottom: 0; }
          .home-banner .banner-content .btn-primary:first-of-type {
            margin-right: 2rem; } }
