
.banner-area{
  position: relative;
  background-position: top center;
  background-size: cover;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 100px 0px 180px 0px;
  overflow:hidden;
}

.banner-area.center{
  background-position: center center;
}


.banner-area.bottom{
  background-position: bottom center;
}

.banner-area .row{
  width: 100%;
  display: flex;
}

.banner-area .column{
  position: relative;
  display: flex;
  width:100%;
}

.banner-area .column-inner{
  display:flex;
  padding:10px;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
}

.banner-area .column-inner>div{
  position: relative;
  width: 100%;
}

.banner-area .supertitle-wrapper{
  margin-bottom: 20px;
  color: #000000;
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0px;
  width:100%;
}

.banner-area .supertitle-inner{
  transition: background 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s, box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px -36px 0px;
}

.banner-area .title-wrapper{
  width: 100%;
  position: relative;
}

.banner-area .title-wrapper h2{
  color: #000000;
  text-transform: none;
  margin:0;
}

.banner-area .subtitle-wrapper{
  margin-bottom:20px;
  font-size:20px;
}

.banner-area .subtitle-inner{
  margin: 0px 0px 28px 0px;
  padding: 0px 56px 0px 0px;
}

.banner-area .btn-wrapper{
  width:auto;
  position:relative;
}

.banner-area .btn-wrapper a{
  border-style: solid;
  border-top-width: 1px;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  font-family: 'Rubik',sans-serif;
  font-weight: 500;
  line-height: 1;
  border-radius: 28px;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  border-color: #fba919;
  background-color: #fba919;
  color:#232323;
  font-size: 0.875rem;
  display:inline-block;
  text-decoration:none;
  box-shadow: 0px 12px 16px -8px rgb(27 95 193 / 38%);
}

.banner-area .btn-wrapper a:hover,
.banner-area .btn-wrapper a:focus{
  color: #232323;
  text-decoration:none;
  background-color: rgba(251,168,24,0.89);
  border-color: #fba919;
}


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

  .banner-area .row{
    flex-wrap:wrap;
  }

  .banner-area .subtitle-inner{
    padding: 0px 40px 0px 0px;
  }

  .banner-area .subtitle-wrapper{
    font-size:16px;
  }

}


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

  .banner-area .supertitle-wrapper{
    margin-bottom: 0;
    font-size: 16px;
  }

  .banner-area .title-wrapper h2{
    font-size:28px;
  }

  .banner-area .supertitle-inner{
    margin:0;
  }

  .banner-area .subtitle-inner{
    padding: 0px 0px 0px 0px;
  }

}



