body {
     margin: 0;
     font-family: 'Montserrat', sans-serif;
     line-height: 1.4;
     color: #252f41;
 }

 .bg-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.wrapper {
     display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.heading {
     color: #fff;
    font-weight: 300;
  font-size: 49px;
    font-style: normal;
    letter-spacing: -2px;
  margin: -370px 0px 0px 0px;
    text-align: center;
    position: relative;
}

.heading:after {
   content: '';
    width: 20%;
  height: 3px;
    background: #fff;
    display: flex;
    margin: 20px auto 30px;
}

.description p {
   color: #fff;
    margin: 0px 0px 0px 0px;
    text-transform: uppercase;
    font-size: 21px;
  font-weight: 800;
  letter-spacing: 1;
    text-align: center;
}

@supports (object-fit: cover){
     .bg-img img, .bg-img source{
          min-height: 100%;
          min-width: 100%;
          object-fit: cover;
          max-width: 100%;
          max-height: 100%;
     }

}
.bg-img img, .bg-img source {
    position: absolute;
    visibility: visible;
    z-index: -1;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
}


@media screen and (max-width:768px) {

   .heading { font-size: 30px;margin: -310px 0px 0px 0px; padding: 0px 30px;}
   .description p {margin: 0px 20px 0px 20px; font-size: 14px;}

}