
.carousel-item:after {
    content:"";
    display:block;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background: black;
    opacity: 0.6;
  }
  .slider img {
 
    height: 80vw;
    width: 100vw;
  background-size: cover;
  background-attachment: fixed;
}
.carousel-caption{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
/*=========================================
    caption media query
 ==========================================
 */
/* // Small devices (landscape phones, 576px and up) */
@media  (min-width:300px){  
    .carousel-caption h5{
        font-size: 1rem !important;
        margin-bottom: 5% !important;
    }
    .carousel-caption p{
        font-size: .2rem !important;
        line-height: 0.9rem;
        color: #dfd9d9;
    }
    .carousel-caption .grp{
        margin-top: 0 !important;
        gap: 2% !important;
    }
    .carousel-caption button{
        font-size: .3rem;
      
    }
    
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 600px){ 
    .carousel-caption h5{
        font-size: 1.7rem !important;
        margin-bottom: 5% !important;
    }
    .carousel-caption p{
        font-size: .7rem !important;
        line-height: 1rem;
    }
    .carousel-caption .grp{
        margin-top: 10% !important;
        gap: 2% !important;
    }
    .carousel-caption button{
        font-size: 1rem;
      
    }
 }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .carousel-caption h5{
        font-size: 1.9rem !important;
        margin-bottom: 8% !important;
    }
    .carousel-caption p{
        font-size: 1.2rem !important;
        line-height: 1.4rem !important;
    }
    .carousel-caption .grp{
        margin-top: 15% !important;
        gap: 2% !important;
    }
    .carousel-caption button{
        font-size: 1.3rem;
      
    }
 }
 

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px){  
    .carousel-caption h5{
        font-size: 4rem !important;
        margin-bottom: 8% !important;
    }
    .carousel-caption p{
        font-size: 1.1rem !important;
        line-height: 1.6rem !important;
    }
    .carousel-caption .grp{
        margin-top: 10% !important;
        gap: 2% !important;
    }
    .carousel-caption button{
        font-size: 1.7rem;
     padding: 10px !important; 
    }
}


