.custom-banner-area {

  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 20vh 0px;
}


}
.background-image-wrapper{
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  position: absolute;

}
.video-wrapper {
  width:100%;
  height:100%;
  overflow: hidden;
  position: absolute;
}
video {
  object-fit: cover;
  width:100%;
  height:100%;
}
.custom-banner-area .page-center {
  /* padding-top: 132px; */
  z-index: 11;
  background-color:white;
}

.custom-banner-area .page-center h1>div:nth-child(2n) {
 color: #d86f45;
}
.custom-banner-area .page-center h1 {
  /* font-weight: 800; */
  letter-spacing: 0.1em;
  /* font-size: 80px; */
}
.custom-banner-area .page-center * {
  position: relative;
}

.custom-banner-area .page-center a.btn-link { margin-right: 3%;}
.custom-banner-area .page-center a.btn-link:last-of-type { margin-right:0;}

.custom-banner-area .page-center a.btn-link {
  border: 1px solid #000;
  display: inline-block;
  /* font-weight: 600; */
  line-height: normal;
  padding: 14px 30px;
  /* font-size: 14px; */
  padding-right: 90px;
  position: relative;
  margin-bottom: 10px;
}
.custom-banner-area .page-center a.btn-link span.icon {
  position: absolute;
  right: 48px;
  top: 50%;
  transition: .5s linear;
}
.custom-banner-area .page-center a.btn-link span.icon:before {
  content: '';
  width: 28px; 
  height: 1px;
  background: #000;
  display: block;
  position: absolute;
  right: 0;
}
.custom-banner-area .page-center a.btn-link span.icon:after {
  display: block;
  margin: 0px auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(135deg);
  content: '';
  top: -4px;
  position: absolute;
  right: 1px;
}
.custom-banner-area .page-center a.btn-link:hover span.icon {
  right: 30px;
  opacity:1;
}
.custom-banner-area .page-center .bottom-sectrion {
  position: absolute;
  bottom: 110px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
  padding-right: 0;
  font-size: 0.8em;
}
.custom-banner-area {
  position: relative;
}
.custom-banner-area .page-center .bottom-sectrion:before {
  position: absolute;
  bottom: -110px;
  content: '';
  width: 2px;
  height: 84px;
  display: block;
  left: 0;
  right: 0;
  background: #000;
  margin: 0 auto;
}

{% set bp_mobile = "200px" %} 
{% set bp_tablet = '770px' %} 
{% set bp_desktop_s = '1050px' %} 
{% set bp_desktop_m = '1920px' %} 
{% set bp_desktop_b = '2800px' %} 


@media(max-width:1050px){ 
  .custom-banner-area .page-center {
    padding-left: 10vw;
    padding-right: 10vw;
  }
} 

@media(max-width:767px){
  .custom-banner-area .page-center {
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 0;
  }
  .custom-banner-area .page-center h1 {
    /* font-size: 40px; */
  }
  .custom-banner-area {
    display: flex;
    align-items: center;
  } 
}


