:root {
    --white: white;
    --black: black;
  }

  .body {
    margin: 0;
  }
  
  .hero-stack {
    background-color: #0c3a45;
    padding: 80px 30px;
    position: relative;
  }
  
  .container {
    width: 100%;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-wrapper-two {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .margin-bottom-24px {
    margin-bottom: 24px;
  }
  
  .button-primary {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #1a1b1f;
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    transition: all .2s;
  }
  
  .button-primary:hover {
    color: #fff;
    background-color: #32343a;
  }
  
  .button-primary:active {
    background-color: #43464d;
  }
  
  .hero-image {
    width: 100%;
    margin-top: 50px;
  }
  
  .heading {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .image {
    font-size: 14px;
  }
  
  .div-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
  }
  
  @media screen and (min-width: 1920px) {
    .hero-stack, .body {
      color: #0c3a45;
      background-color: #0c3a45;
    }
  
    .heading {
      color: #fff;
      background-color: rgba(0, 0, 0, 0);
      flex-flow: row;
      flex: 0 auto;
      order: 0;
      justify-content: center;
      align-self: auto;
      align-items: center;
      margin-bottom: 20px;
      font-size: 24px;
      display: block;
    }
  
    .image {
      display: block;
    }
  
    .div-block {
      grid-column-gap: 11px;
      grid-row-gap: 11px;
      flex: 0 auto;
      justify-content: center;
      align-self: stretch;
      align-items: center;
      display: flex;
    }
  }
  
  @media screen and (max-width: 991px) {
    .container {
      max-width: 728px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .hero-stack {
      padding: 60px 15px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .container {
      max-width: none;
    }
  }
  