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

        Name: Full Width Slider 2.0
        Design and Develpment: eightyclouds
        Author URI: http://www.eightyclouds.com
        Version: 1.0
        Customised by: George DW - OneSixty Mobile Ltd.

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

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

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

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0;  padding: 0; border: 0;  outline: 0;  font-size: 100%;  vertical-align: baseline;  background: transparent; }



article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display: block; }

nav ul {list-style: none;}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }

a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

input, select { vertical-align: middle; }

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

#fwslider {
    position: relative;
    background: #444 url('../img/ajax-loader.gif') no-repeat center center;
    width:100%;
    z-index: 1;
    
}

#fwslider .slider_container {
    width: 100%!important;
    position: relative;
    overflow: hidden;
    height: 450px;
}

#fwslider .slide {
    display: none;
    position: absolute;
    
    z-index: 0;
    width:100%;
    display: block;
    height: 100%;
}



#fwslider .slidePrev {
    background:#000;
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
    left:-50px;
    opacity:0.5;
    z-index: 10;
}

#fwslider .slidePrev span {
    background-image:url("../img/left_arrow.png");
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#fwslider .slideNext {
    background:#000;
    width:50px;
    height:50px;
    position: absolute;
    top:50%;
    right:-50px;
    opacity:0.5;
    z-index: 10;
}

#fwslider .slideNext span {
    background-image:url("../img/right_arrow.png");
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#fwslider .timers {
    height:4px;
    position: absolute;
    bottom:15px;
    right:0;
    z-index: 3;
}

#fwslider .timer {
    height:4px;
    width:40px;
    background-color: #000;
    float:left;
    margin-right: 10px;
}

#fwslider .progress {
    height:4px;
    width:0%;
    background-color: #FC3;
    float:left;
}

#fwslider .slide_content {
    
}

#fwslider .container {
  max-width: 1170px;
  padding-top: 0px;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}

#fwslider .container .fw-titles {
  padding-top: 100px;
}

.fw-extra-image {
  max-width: 431px;
}

.fw-extra-image-container {
  display: table;
  margin: 0 auto;
}

@-webkit-keyframes moveleft {
  0%   { margin-left: -100px; opacity: 0; }
  50%  { margin-left: -100px; opacity: 0; }
  90%  { margin-left: 5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}
@-moz-keyframes moveleft {
  0%   { margin-left: -100px; opacity: 0; }
  50%  { margin-left: -100px; opacity: 0; }
  90%  { margin-left: 5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}
@-ms-keyframes moveleft {
  0%   { margin-left: -100px; opacity: 0; }
  50%  { margin-left: -100px; opacity: 0; }
  90%  { margin-left: 5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}
@-o-keyframes moveleft {
  0%   { margin-left: -100px; opacity: 0; }
  50%  { margin-left: -100px; opacity: 0; }
  90%  { margin-left: 5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}
@keyframes moveleft {
  0%   { margin-left: -100px; opacity: 0; }
  50%  { margin-left: -100px; opacity: 0; }
  90%  { margin-left: 5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}

.fwFadeInLeft {
  -webkit-animation: moveleft 1s;
  -moz-animation: moveleft 1s;
  -ms-animation: moveleft 1s;
  -o-animation: moveleft 1s;
  animation: moveleft 1s;
}

@-webkit-keyframes moveright {
  0%   { margin-left: 100px; opacity: 0; }
  50%  { margin-left: 100px; opacity: 0; }
  90%  { margin-left: -5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}
@-moz-keyframes moveright {
  0%   { margin-left: 100px; opacity: 0; }
  50%  { margin-left: 100px; opacity: 0; }
  90%  { margin-left: -5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}
@-ms-keyframes moveright {
  0%   { margin-left: 100px; opacity: 0; }
  50%  { margin-left: 100px; opacity: 0; }
  90%  { margin-left: -5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}
@-o-keyframes moveright {
  0%   { margin-left: 100px; opacity: 0; }
  50%  { margin-left: 100px; opacity: 0; }
  90%  { margin-left: -5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}
@keyframes moveright {
  0%   { margin-left: 100px; opacity: 0; }
  50%  { margin-left: 100px; opacity: 0; }
  90%  { margin-left: -5px; opacity: 1; }
  100% { margin-left: 0px; opacity: 1; }
}

.fwFadeInRight {
  -webkit-animation: moveright 1s;
  -moz-animation: moveright 1s;
  -ms-animation: moveright 1s;
  -o-animation: moveright 1s;
  animation: moveright 1s;
}



#fwslider .title {  /* Slider Title Style */
    opacity: 0;
    color:#fff!important;     
    font-size:36px;
    background: rgba(0,0,0,0.7);
    padding:15px;
    float:left;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0px;
}

#fwslider .description { /* Slider Description Style */
    opacity: 0;
    color:#FFF;
    font-size:18px;
    background: rgba(0,0,0,0.7);
    padding:10px;
    clear:both;
    float:left;
    margin-top:2px;
    line-height:24px;
    font-style: normal;
    font-weight: 400;
}

#fwslider .readmore { /* Slider Read More button Style */
    opacity: 0;
    clear:both;
    float:left;
    border: 2px solid #444;
    font-size:12px!important;
    color:#919191;
    background:#000;
    padding:10px;
    text-decoration: none;
    margin-top:2px;
    font-style: normal;
    font-weight: 400;
}

#fwslider .readmore:hover {
    color:#fff;
    border: 2px solid #ccc;
    opacity: 0.5;
    -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.footer {
    width:100%;
    float:left;
    text-align:center;
}

.footer p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size:12px;
    color:#585858;
    margin-top:20px;
}

.fw-article {
  height: 500px; 
  margin-top: -20px; 
  background-size: cover; 
  position: fixed; 
  background-position: center; 
  background-repeat: no-repeat; 
  width: 100%;
}

/* ------------------------------- 3. Media Query fixes ------------------------------- */
@media (min-width: 1200px) {
  .fw-extra-image { max-width: 541px; }
}

@media (max-width: 979px) {
  .fw-article {
    position: static!important;
    top: 0px!important;
    height: 420px!important;
  }
  #fwslider { height: 400px!important; }
  #fwslider .slider_container { height: 400px!important; }
  #fwslider .title { font-size:26px!important; padding: 10px; }
  #fwslider .description {  font-size:12px!important; padding: 7px;}
  .fw-extra-image { max-width: 323px; }
}
@media (max-width: 767px) {
  #fwslider { height: 240px!important; }
  .fw-article { height: 260px!important; }
  #fwslider .slider_container { height: 240px!important; }
  #fwslider .fw-titles .title { font-size: 24px!important; }
  #fwslider .fw-titles .description { font-size: 14px!important; }
  #fwslider .container .fw-titles { padding-top: 40px; }
  .slidePrev, .slideNext { display: none; }
  #fwslider .timers { display:none; }
  #fwslider .slide_content {cursor: pointer;}
 
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1025px) and (orientation:landscape) {
  .fw-article {
    position: static!important;
    top: 0px!important;
    
  }
  
}