.banner-main {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  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%;
   max-width: 1298px;
  margin-left: auto;
  margin-right: auto;
    padding-inline: 16px;
}

.banner-main .text-content{
  margin: 0 auto;
  padding-bottom: 50px;
}

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

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

.banner-main .banner-description {
  margin-top: 55px;
}
.banner-main .overlay{
  background-repeat: no-repeat;
}

{# Button #}
.banner-main .btn-group{
  margin: 0 -15px;
  margin-top: 50px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.banner-main .button{
  margin: 15px;
  line-height: 120%;
  position: relative;
}

.banner-main .button .button__custom-icon.outside-button{
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 13px);
    margin: 0;
}

.banner-main .banner-image img{
  margin-top: 80px;
  border-radius: 6px;
}
.banner-content__columns{
    display: grid;
    grid-template-columns: auto;
    gap: 32px;
}

/* 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;
  }

}

