.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner-background {
  position: relative;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out;
}
.no-banner-img{
  min-height:400px;
  background-color: #1e355e;
}
.banner-background>img {
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
  height: 400px;
}
.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
}
.banner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 100px auto;
  width: calc(100% - 30px);
  height: 25%;
  text-align: center;
}

.banner-container {
  max-width: 1140px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
}

.banner-container .banner-title {
  font-size: 50px;
  padding: 0 0 10px 0;
  margin: 0;
  color: #fff;
  font-family: 'Poppins-ExtraBold';
  text-shadow: 1px 1px 1px #6a7b94;
  font-weight: bold;
  line-height: 60px;
}

.banner-container .banner-sub-title {
  font-size: 30px;
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
  color: #fff;
  font-family: 'Poppins-SemiBold';
  line-height: 36px;
}

.banner_btn_wrap {
  padding: 20px 15px;
  background: #54668e;
}

.banner_btn_wrap .btn_inner {
  text-align: center;
}

.banner_btn_wrap a {
  width: 350px;
  max-width: 100%;
  display: inline-block;
  font-size: 16px;
  transition: all 0.5s ease-in-out 0s;
  color: #fff;
  padding: 8px;
  letter-spacing: 0.5px;
  background: #b25637;
  border-radius: 40px;
  text-transform: uppercase;
  text-decoration:none;
}

.banner_btn_wrap a:hover {
    color: #fff;
    text-decoration: none;
    background: #7a2f15;
}

.banner_btn_wrap a:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  margin: 0 0 0 8px;
  content: "\f178";
  position: relative;
  top: -3px;
}

/* =================================== Media Query ====================== */
@media (max-width: 991px){
  .banner-container .banner-title {
    font-size: 45px;
    line-height: 1.2;
  }
  .banner-container .banner-sub-title {
    font-size: 22px;
    line-height: 1.2;
  }
  .banner-section {
    margin-top: 5px;
  }
}
@media (max-width: 600px){
  .overlay {
    display: none;
  }
}
@media (min-width: 576px){
  .banner-container {
    max-width:540px;
  }
}

@media (min-width:768px){
  .banner-container {
    max-width:720px;
  }
}

@media (min-width: 992px){
  .banner-container{
    max-width:960px;
  }
}

@media (min-width: 1200px){
  .banner-container {
    max-width:1140px
  }
}