  /* Media Query for Mobile Devices */
  @media (max-width: 480px) {

    .hero-style{
        height: 490px;
      }

      .hero-slider .swiper-container {
          height: 490px;
      }

      .hero-style .container {
          padding-top: 0px;
      }

      .hero-slider .slide-inner {
          height: 490px;
          background-size: cover;
      }

      .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
          bottom: 25px;
      }

      .hero-slider .swiper-button-prev,
      .hero-slider .swiper-button-next {
          display: none;
      }

      .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
  }

  /* Media Query for low resolution  Tablets, Ipads */
  @media (min-width: 481px) and (max-width: 767px) {
      body {
          background-color: yellow;
      }
  }

  /* Media Query for Tablets Ipads portrait mode */
  @media (min-width: 768px) and (max-width: 1024px) {
      body {
          background-color: blue;
      }
  }

  /* Media Query for Laptops and Desktops */
  @media (min-width: 1025px) and (max-width: 1280px) {
      body {
          background-color: green;
      }
  }

  /* Media Query for Large screens */
  @media (min-width: 1281px) {
      body {
          background-color: white;
      }
  }