.banner-main-3 {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 54px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  height: calc(100vh - 90px);
}

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

.banner-main-3 .banner-content { 
  max-width: 1170px;
  margin: 0 auto;
  padding: 20px;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 110px;
}

{# Banner Image Slider #}
.banner-main-3 .left {
  width: 60%;
  display: flex;
  align-items: center;
}

.banner-main-3 .left .banner-image-slider{
  width: 100%;
  height: 100%;
}


{# Banner slider #}
.banner-main-3 .uk-position-relative{
  height: 100%;
}

.banner-main-3 .uk-slideshow-items {
  border-radius: 6px;
  height: 100%;
}


.banner-main-3 .slidenav-previous-btn,
.banner-main-3 .slidenav-next-btn{
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-main-3 .uk-icon:not(.uk-preserve) [stroke*='#']:not(.uk-preserve) {  
  stroke-width: 4;
}


{# Banner Text #}
.banner-main-3 .right{
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.banner-main-3 .banner-text-box{
  margin-bottom: 80px;
}

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

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

{# Button #}
.banner-main-3 .btn-group{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.banner-main-3 .button.uk-button-primary:hover,
.banner-main-3 .button.uk-button-primary:active{
  background: transparent;
}

.banner-main-3 .button.uk-button-default{
  background: transparent;
}



{# Social links #}
.banner-main-3 .social-links{
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner-main-3 .social-links a{
  transition: all 0.4s ease;
  text-decoration: none;
}


/* Media query for responsive */
@media screen and (max-width: 1198px) {
  .banner-main-3 {
    height: calc(100vh - 70px);
  }

  .banner-main-3 .banner-content { 
    gap: 50px;
  }

  .banner-main-3  .right,
  .banner-main-3  .left{
    width: 50%;
  }

}


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

  .banner-main-3 .banner-content { 
    flex-wrap: wrap;
  }

  .banner-main-3  .right,
  .banner-main-3  .left{
    width: 100%;
  }

  .banner-main-3 {
    height: auto;
  }

}
