/*------------------------------------------------------------------------

    Name: Full Width Slider 2.0
    Design and Develpment: Eightyclouds
    Author URI: http://www.eightyclouds.com
    Version: 1.0

--------------------------------------------------------------------------

   01. CSS Reset
   02. Slider Styles
   03. Media Query
   04. Custom
   
*/

/* ------------------------------- 1. Resets -------------------------------------- */

body .fws2 * {
    margin:0;
    padding:0;
    line-height: 1;
}

/* ------------------------------- 2. Slider Styles ------------------------------- */

/* in main css */


/* ------------------------------- 3. Media Query ------------------------------- */



@media only screen and (min-width:1000px) and (max-width: 1150px) {

    .fws2 .slide_content_wrap { 
        width: 100%;

    }
    .fws2 .title { font-size:26px; }
    .fws2 .description { font-size:14px;}
}


@media only screen and (min-width:700px) and (max-width: 999px) {
    .fws2 .slide_content_wrap { 
        width: 100%;

    }
    .fws2 .title { font-size:26px; }
    .fws2 .description {  font-size:14px;}
}



@media only screen and (max-width: 700px) {
    .slider{
        display: none;
    }
/* ------------------------------- 4. Custom -------------------------------------- */