
    /* CUSTOMIZE THE CAROUSEL
    -------------------------------------------------- */

    /* Carousel base class */
    .carousel {
      margin-bottom: 10px;
    }
	
    .carousel .container {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .carousel-control {
      background-color: transparent;
      border: 0;
      font-size: 120px;
      margin-top: 0;
      text-shadow: 0 1px 1px rgba(0,0,0,.4);
    }

    .carousel .item {
      height: 500px;
    }
    .carousel img {
      min-width: 100%;
      height: 500px;
    }

    .carousel-caption {
      background-color: transparent;
      position: static;
      max-width: 550px;
      padding: 0 20px;
      margin-bottom: 100px;
    }
    .carousel-caption h1,
    .carousel-caption .lead {
      margin: 0;
      line-height: 1.25;
      color: #fff;
      text-shadow: 0 1px 1px rgba(0,0,0,.4);
    }
    .carousel-caption .btn {
      margin-top: 10px;
    }


    /* RESPONSIVE CSS
    -------------------------------------------------- */

    @media (max-width: 979px) {

      
	.carousel {
        margin-top: -20px;
	   margin-left: -20px;
        margin-right: -20px;
      }
      .carousel .item {
        height: 500px;
      }
      .carousel img {
       /*  height: 500px; */
	  width:100% !important;
    		overflow: hidden !important;
      }

    }


     @media (max-width: 767px) {

      
      .carousel {
	 margin-top:-20px;
        margin-left: -20px;
        margin-right: -20px;
      }
      
      .carousel .item {
        height: 160px;
      }
      .carousel img {
        height: 100%;
      }
      .carousel-caption {
        width: 65%;
        padding: 0 70px;
        margin-bottom: 40px;
      }
      .carousel-caption h1 {
        font-size: 14px;
      }
      .carousel-caption .lead {
	 	display:none;
	 }
      .carousel-caption .btn {
        font-size: 11px;
      }

      

    }