.home_main_bg{
   background-image: url(../images/bg4.jpg);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   color: #fff;
   z-index: 1;
   position: relative;
   &::after{
      position: absolute;
      content: '';
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      background-color: rgba(56, 59, 65, 0.4);
      z-index: -1;
   }
}
.home{
   position: relative;
   // height: 100vh;
   .home_wrapper{
      // padding-top: 120px;
      .home_text{
         h1{
            font-size: 42px;
            font-weight: 600;
            color: $white;
            line-height: 50px;
         }
         p{
            color: $white;
         }
         .banner_btn{
            padding: 7px 25px;
            border-radius: 35px;
            font-size: 16px;
            color: $black;
            font-weight: 500;
            background-color: $white;
            display: inline-block;
            margin-top: 12px;
         }
      }
      .banner_img{
         display: flex;
         justify-content: center;
         align-items: center;
         height: 70vh;
         img{
            height: 100%;
            width: 100%;
            object-fit: contain;
         }
      }
   }
   .swiper-pagination {
      transition: .3s opacity;
      transform: translate3d(0,0,0);
      z-index: 10;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 30px;
  }
  .swiper-pagination-bullet {
      width: 16px;
      height: 8px;
      display: inline-block;
      border-radius: 10px;
      background: $white;
  }
  .swiper-pagination-bullet-active{
      height: 8px;
      width: 30px;
  }
  .swiper-button-next{
   height: 65px;
   width: 65px;
   border-radius: 50%;
   background-color: #6b6a6a6b;
   display: flex;
   justify-content: center;
   align-items: center;
   right: -20px;
  }
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
   color: #fff;
   font-size: 30px;
}

.swiper-button-prev{
   height: 65px;
   width: 65px;
   border-radius: 50%;
   background-color: #5c5b5b6b;
   display: flex;
   justify-content: center;
   align-items: center;
   left: -20px;
  }
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
   color: #fff;
   font-size: 30px;
}


   
   
}