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

        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 Max Width 1300, Min Width 720
   04. Media Query Max Width 719
   
*/

/* ------------------------------- 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; }

body { line-height: 1; }

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:#959ca1;
    width:100%;
    max-width: 1000px;
    /* height: auto!important; */
    margin: 42px auto 0;
}

#fwslider .slider_container {
}

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

#fwslider .slide img {
    width:100%;
}

#fwslider .slidePrev {
    background:#485560;
    width:50px;
    height:50px;
    position: absolute;
    bottom: 50px;
    right: 50px;
    opacity:0.7;
    z-index: 10;
    /*display: none;*/
}

#fwslider .slidePrev span {
    background-image:url("/wp-content/themes/inspire/slider/left_arrow.webp");
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

#fwslider .slideNext {
    background:#485560;
    width:50px;
    height:50px;
    position: absolute;
    bottom: 50px;
    right:-50px;
    opacity:0.7;
    z-index: 10;
    /*display: none;*/
}

#fwslider .slideNext span {
    background-image:url("/wp-content/themes/inspire/slider/right_arrow.webp");
    width:50px;
    height:50px;
    float:left;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
}

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

#fwslider .timer {
    height:10px;
    width:30px;
    background-color: #fff;
    float:left;
    margin-right: 10px;
    border: 1px solid #ccc;
}

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

#fwslider .slide_content {
    top: 20px;
    left:0;
    position: absolute;
    width:100%;
    height:100%;
}

#fwslider .slide_content_wrap { /* Slider Text Content Container Style */
    max-width:1000px;
    margin: 0% auto;
}

#fwslider .title {  /* Slider Title Style */
    opacity: 0;
    color:#fff;     
    font-size:30px;
    background-color: #959ca1;
    background:rgba(149, 156, 161, 0.8);
    padding:10px;
    float:left;
    font-family: 'Telex', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    margin:-15px 0 1px 8px;
}

#fwslider p {
    margin:0;
}

#fwslider .description { /* Slider Description Style */
    opacity: 0;
    color:#fff;
    font-size:16px;
    background-color: #959ca1;
    background:rgba(149, 156, 161, 0.8);
    padding:10px;
    clear:both;
    float:left;
    line-height:24px;
    font-family: 'Telex', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    margin:0 0 0 8px;
}

#fwslider .readmore { /* Slider Read More button Style */
    opacity: 0;
    clear:both;
    float:left;
    text-transform:uppercase;
    font-size:10px;
    color:#fff;
    background:#e73e97;
    padding:14px 12px;
    text-decoration: none;
    margin:1px 0 0 8px;
    font-family: 'Telex', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
}

#fwslider .readmore:hover {
    background:#cb287e;
}

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

.footer p {
    font-family: 'Telex', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size:12px;
    color:#585858;
    margin-top:20px;
}

/* ------------------------------- 3. Media Query Max Width 1300, Min Width 820 ------------------------------- */



@media only screen and (min-width:820px) and (max-width: 1300px) {

    /* #fwslider .slide_content_wrap { margin-left:100px; margin-top:17%; max-width:720px;}
    #fwslider .title { font-size:26px; }
    #fwslider .description {  font-size:12px;} */
    #fwslider .timer { display:none; }

}

/* ------------------------------- 4. Media Query Max Width 819 ------------------------------- */

@media only screen and (max-width:819px) {

    #fwslider .slide_content_wrap { display:none; }
    #fwslider .timers { display:none; }
    #fwslider .slide_content {cursor: pointer;}

}
/*
     FILE ARCHIVED ON 14:27:37 Feb 02, 2019 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 12:24:44 May 14, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.498
  exclusion.robots: 0.061
  exclusion.robots.policy: 0.05
  esindex: 0.009
  cdx.remote: 7.264
  LoadShardBlock: 242.562 (3)
  PetaboxLoader3.datanode: 235.443 (7)
  PetaboxLoader3.resolve: 177.047 (4)
  load_resource: 179.564 (2)
*/