.banner-main {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 72px 20px;  
  display: flex;
  align-items: center;
  justify-content: center;

}

.banner-main .overlay {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all .4s ease;
}


.banner-main .banner-content { 
  z-index: 2;
  text-align: center;
  width: 100%;
}

.banner-main .text-content{
  max-width: 720px;
  margin: 0 auto;
}


.banner-main .banner-overline{
  margin-bottom: 15px;
  display: inline-block;
}

.banner-main .banner-title{
  margin-bottom: 20px;
}

.banner-main .banner-description * {
  margin-top: 20px;
}


{# Button #}
.banner-main .btn-group{
  margin: 0 -15px;
  margin-top: 50px;
}

.banner-main .button{
  margin: 15px;
}


.banner-main .banner-image img{
  margin-top: 80px;
  border-radius: 6px;
}


/* Media query for responsive */
@media screen and (max-width: 776px) {

  .banner-main .banner-image img{
    margin-top: 50px;
  }

  .banner-main .btn-group{
    margin-top: 30px;
  }

}

