﻿/* Optional styling for slider container for mobile and other sizes */








@media only screen and (max-width:320px) {
    .slider {
        width: 100%; /* Set slider to full width */
        margin-top: 30%;
        overflow: hidden; /* Add overflow to hide overflowing content */
    }
    /* Optional styling for slider captions */
    .caption {
        position: absolute;
        top: 50%;
        left: 50%; /* Adjust as needed */
        transform: translate(-50%, -50%);
        color: white;
        font-size: 16px;
        font-weight: bold;
        text-shadow: 2px 2px #000;
        padding: 10px;
        border-radius: 5px;
        background-color: rgba(0, 0, 0, 0.3);
         text-align:center;
    }
}
@media only screen and (max-width:480px) {
    .slider {
        width: 100%; /* Set slider to full width */
        margin-top: 25%;
        overflow: hidden; /* Add overflow to hide overflowing content */
    }
     /* Optional styling for slider captions */
   .caption {
  position: absolute;
  top: 50%;
  left: 50%; /* Adjust as needed */
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 2px 2px #000;
  padding: 10px;
  border-radius: 5px;
   background-color: rgba(0, 0, 0, 0.3);
    text-align:center;
}
    }
@media only screen and (max-width:600px) {
        .slider {
            width: 100%; /* Set slider to full width */
            margin: 25% auto;
            overflow: hidden; /* Add overflow to hide overflowing content */
        } /* Optional styling for slider captions */
   .caption {
  position: absolute;
  top: 50%;
  left: 50%; /* Adjust as needed */
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 2px 2px #000;
  padding: 10px;
  border-radius: 5px;
   background-color: rgba(0, 0, 0, 0.3);
    text-align:center;
}
    }
@media only screen and (min-width:801px) {
        .slider {
            width: 100%; /* Set slider to full width */
            margin-top: 7%;
            overflow: hidden; /* Add overflow to hide overflowing content */
        }
         /* Optional styling for slider captions */
   .caption {
  position: absolute;
  top: 50%;
  left: 50%; /* Adjust as needed */
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px #000;
  padding: 10px;
  border-radius: 5px;
   background-color: rgba(0, 0, 0, 0.3);
    text-align:center;
}
    }
@media only screen and (min-width:1990px) 
{
        .slider {
            width: 100%; /* Set slider to full width */
            margin-top: 7%;
            overflow: hidden; /* Add overflow to hide overflowing content */
        }
         /* Optional styling for slider captions */
  .caption {
  position: absolute;
  top: 50%;
  left: 50%; /* Adjust as needed */
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px #000;
  padding: 10px;
  border-radius: 5px;
   background-color: rgba(0, 0, 0, 0.4);
   text-align:center;
}
    }

    /* Set images to occupy full width of slider */
    .slider img {
      width: 100%;
      height: auto;
    }
    /* Optional styling for slider dots */
    .slick-dots {
      bottom: 20px;
    }
    .slick-dots li button:before {
      font-size: 12px;
      color: #fff; /* Change color of bullet */
    }
   


