﻿/* 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: 3%;
        overflow: hidden; /* Add overflow to hide overflowing content */
    }
   
}
@media only screen and (max-width:480px) {
    .slider {
        width: 100%; /* Set slider to full width */
        margin-top: 3%;
        overflow: hidden; /* Add overflow to hide overflowing content */
    }
}
@media only screen and (max-width:600px) {
        .slider {
            width: 100%; /* Set slider to full width */
            margin: 1% auto;
            overflow: hidden; /* Add overflow to hide overflowing content */
        } /* Optional styling for slider captions */
   
    }
@media only screen and (min-width:801px) {
        .slider {
            width: 100%; /* Set slider to full width */
        
            overflow: hidden; /* Add overflow to hide overflowing content */
        }
         /* Optional styling for slider captions */
  
    }
@media only screen and (min-width:1990px) 
{
        .slider {
            width: 100%; /* Set slider to full width */
         
            overflow: hidden; /* Add overflow to hide overflowing content */
        }
         /* Optional styling for slider captions */
 
    }

    /* 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 */
    }
   


