#contactus {
    width: 100%;
    height: 75vh;
    background: url("../../Powertec-logos/contact us grey.jpg") top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  #contactus:hover {
    width: 100%;
    height: 75vh;
    background: url("../../Powertec-logos/contact us.jpg") top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
  #contactus:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #contactus .container {
    position: relative;
  }
  
  #contactus h1 {
    padding: 15px;
    background-color: #6ea4429c;
    color: #fff;
    width: 500px;
    display: flex;
    justify-content: center;
  }
  
  #contactus h1 span {
    color: #fff;
  }
  
  #contactus h2 {
    color: #000;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
  }
  
  #contactus .btn-get-started {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #f28f26;
  }

  @media (max-width: 768px) {
    #contactus {
      width: 100%;
      height: 500px;
      background: url("../../Powertec-logos/contact\ us\ 500X500px.jpg") top;
      background-repeat: no-repeat;
      position: relative;
    }

    #contactus h1{
      padding: 15px;
      background-color: #6ea4429c;
      color: #fff;
      display: flex;
      justify-content: center;
    }
  }

  