body{
    font-family: 'Open Sans';
    font-weight: 300;
    line-height: 1.8;
    position: relative;
    color: #666;
    font-size: 13px;
    letter-spacing: 0.5px;
}

a,img{
    
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

a{
    color: #303434;
}

    a:hover,
    a:focus,
    button:hover,
    button:focus{
	text-decoration: none;
	outline: none;
    }
    a:hover{
	color: #978765;
    }
    
    a:focus,
    button:focus{
	color: #303434;
    }
 


.line-separator{
    background: #eee;
    height: 1px;
    width: 100%;
    margin-bottom: 75px;
    margin-top: 75px;
}


.lead{
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-size: 18px;
}

    .border-full{
	padding: 30px;
	border: 1px solid #eee;
	display: inline-block;
    }
    
    .border-white{
	border-color: #fff;
    }
    .border-color{
	border-color: #978765;
    }
    
    .border-black{
	border-color: #303434;
    }
    
.section-header-margin-bottom{
    margin-bottom: 75px;
}
    
.form-group{
    margin-bottom: 0
}
    .form-group input,
    .form-group textarea{
	margin-bottom: 18px;
    }

    .form-control{
	border-radius: 0;
	-webkit-border-radius: 0;
	border: none;
	border-bottom: 1px solid #eee;
	padding: 20px 0;
	-webkit-box-shadow: none;
	    box-shadow: none;
    }
	.form-control:focus,
	.form-control:hover{
	    border-color: #978765;
	    -webkit-box-shadow: none;
	    box-shadow: none;
	}
/*
.lead-title{
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #303434;
    line-height: 35px;
    font-family: "Droid Serif";
    margin-bottom: 30px;
    margin-top: 0;
    display: inline-block;
}
*/

.bullets{
    list-style: none;
    margin-bottom: 20px;
    margin-top: 20px;
}

   .bullets li { 
	padding: 0;
	margin-bottom: 10px;
	font-weight: 300;
	letter-spacing: 1px;
    }
    
    /* tick bullets */
    
    .bullets li:before {
	font-family: "Linearicons-Free";
	content: "\e87a";
	position: absolute;
	font-size: 16px;
	margin-left: -40px;
	color: #aaa;
    }
    
    .bullets.circle li:before {
	content: "";
	position: absolute;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	width: 5px;
	height: 5px;
	margin-top: 8px;
	margin-left: -40px;
	background: transparent;
	border: 1px solid #ccc
    }
	.bullets.circle li:hover:before{
	    background: #ccc;
	}


h1, h2, h3, h4, h5, h6{
    color: #303434;
    font-family: "Droid Serif";
    margin-top: 0;
}
h1{
    font-size: 120px;
}

h2{
    font-size: 60px;
}

h3{
    font-size: 40px;
}

h4{
    font-size: 24px;
}

h5{
    font-size: 18px;
}

h6{

}

@media(max-width: 991px){
    h1{
	font-size: 100px;
    }
}
@media(max-width: 767px){
    h1{
	font-size: 60px;
    }
    h2{
	font-size: 40px;
    }
    h3{
	font-size: 30px;
    }
    
    .lead{
	font-size: 14px;
    }
}

@media(max-width: 480px){
    h1{
	font-size: 40px;
    }
}

.grayscale{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}



.btn-link{
    padding: 7px 20px;
    border: none;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 10px;
    margin-top: 30px;
    display: inline-block;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

    .btn-link:hover,
    .btn-link:focus{
	text-decoration: none;
    }
    
    .btn-link:after{
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	width: 70%;
	height: 1px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
    }
    
    .btn-link:before{
	position: absolute;
	content: "";
	left: -1px;
	top: 100%;
	width: 70%;
	height: 1px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
    }
    
		.btn-link:hover:before,
		.btn-link:hover:after{
		    width: 120%;
		}

	.btn-link-transparent{
	    border-color: #fff;
	    color: #fff;
	    position: relative;
	}
	    .btn-link-transparent:hover,
	    .btn-link-transparent:focus{
		border-color: #fff;
		color: #fff;
	    }
	    .btn-link-transparent:before,
	    .btn-link-transparent:after{
		background: #fff;
	    }
		
		
	    /* dark btn */
	    
	.btn-link-dark{
	    border-color: #303434;
	    color: #303434;
	    position: relative;
	}
	    .btn-link-dark:hover{
		border-color: #303434;
		color: #303434;
	    }
	    .btn-link-dark:before,
	    .btn-link-dark:after{
		background: #303434;
	    }
	    
	    
	    /* color btn */
	    
	.btn-link-color{
	    border-color: #978765;
	    color: #978765;
	    position: relative;
	}
	    .btn-link-color:hover{
		border-color: #978765;
		color: #978765;
	    }
	    .btn-link-color:before,
	    .btn-link-color:after{
		background: #978765;
	    }
		
	
		
		
		
    /* if the button has a white bg */
    
    .bg-white{
	border-color: #303434;
	color: #303434;
	position: relative;
    }
	.bg-white:hover{
	    border-color: #303434;
	    color: #303434;
	}
	.bg-white:after,
	.bg-white:before{
	    background: #fff; 
	}	
    
    /* if the button has a light bg */
    
    .bg-light{
	border-color: #303434;
	color: #303434;
	position: relative;
    }
	.bg-light:hover{
	    border-color: #303434;
	    color: #978765;
	}
	.bg-light:after,
	.bg-light:before{
	    background: #f7f7f7; 
	}
	
    /* if the button has a dark bg */
    
    .bg-dark{
	border-color: #fff;
	color: #fff;
	position: relative;
    }
	.bg-dark:hover{
	    border-color: #fff;
	    color: #978765;
	}
	.bg-dark:after,
	.bg-dark:before{
	    background: #303434; 
	}
	
    /* if the button has a colored bg */
    
    .bg-color{
	border-color: #fff;
	color: #fff;
	position: relative;
    }
	.bg-color:hover{
	    border-color: #fff;
	    color: #303434;
	}
	.bg-color:after,
	.bg-color:before{
	    background: #978765; 
	}
	    
    


.banner-full{
    height: 100vh;
}

.banner-sm{
    padding-top: 200px;
    padding-bottom: 200px;
}

.banner-xs{
    padding-top: 100px;
    padding-bottom: 100px;
}

.banner-half{
    height: 50vh;
}
.banner-75{
    height: 75vh;
}

.banner-600{
    height: 600px;
}
.banner-400{
    height: 400px;
}

.banner-200{
    height: 200px;
}

    

.no-padding{
    padding: 0;
}
.padding-100{
    padding: 100px;
}

.padding-100-50{
    padding: 100px 50px;
}

.main-section-margins{
    margin-top: 150px;
    margin-bottom: 150px;
}

.main-section-margin-bottom{
  margin-bottom: 150px;
}

.main-section-margin-top{
  margin-top: 150px;
}

.main-section-paddings{
    padding-top: 150px;
    padding-bottom: 150px;
}

.main-section-padding-top{
    padding-top: 150px;
}

.main-section-padding-bottom{
    padding-bottom: 150px;
}

    @media(max-width: 767px){
	.main-section-margins{
	    margin-top: 100px;
	    margin-bottom: 100px;
	}
	
	.main-section-margin-bottom{
	  margin-bottom: 100px;
	}
	
	.main-section-margin-top{
	  margin-top: 100px;
	}
	
	.main-section-paddings{
	    padding-top: 100px;
	    padding-bottom: 100px;
	}
	
	.main-section-padding-top{
	    padding-top: 100px;
	}
	
	.main-section-padding-bottom{
	    padding-bottom: 100px;
	}
    }

.full-width{
    padding-left: 0;
    padding-right: 0;
}

.white-bg{
    background: #fff;
}

.transparent-white-bg{
    background: rgba(255,255,255, 0.8);
}

.light-bg{
    background: #f7f7f7;
}
.dark-bg{
    background: #303434;
}
.color-bg{
    background: #978765;
}
.gray-bg{
    background: #222;
}

.thin{
  font-weight: 300;
}
.thick{
  font-weight: 400;
}
.vthick{
  font-weight: 700;
}
.white{
  color: #fff;
}
.white-transparent{
  color: rgba(255,255,255,0.5);
}

.black{
  color: #303434;
}
.light{
  color: #f7f7f7;
}

.color-text{
    color: #978765;
}
.gray-text{
    color: #222;
}

.text-shadow{
    text-shadow: 1px 1px #303434;
}

.border-bottom{
    border-bottom: 1px solid #eee;
}

.opacity-1{
    opacity: 1;
}
.opacity-09{
    opacity: 0.9;
}
.opacity-08{
    opacity: 0.8;
}

.opacity-07{
    opacity: 0.7;
}

.opacity-05{
    opacity: 0.5;
}

.opacity-03{
    opacity: 0.3;
}
.opacity-01{
    opacity: 0.1;
}

.vc-text{
   position: absolute;
    margin: 0;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    padding: 100px;
    z-index: 1;
}
    @media(max-width: 991px){
	.vc-text{
	    padding: 50px;
	}
    }

.margin-top{
    margin-top: 150px;
}
.margin-top-50{
    margin-top: 50px;
}
.margin-bottom{
    margin-bottom: 150px;
}

.margin-bottom-50{
    margin-bottom: 50px;
}

/* firefox fix */ 
.img-responsive{
    width: 100%;
}

.transition{
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}


/*
 * ============================================
 *              H E A D E R + L O G O
 * ============================================
 */

/* page loader */

#loader{
    background: #fff url('../images/logo-sign.png') no-repeat center;
    padding-top: 50%;
    padding-left: 50%;
    position: fixed;
    z-index: 2002;
    width: 100%;
    height: 100%;
}

.navbar-fixed-top.auto-right{
    right: auto;
}
    

/* LOGO */

.navbar-header{
    height: 70px;
    width: 400px;
    z-index: 2303434;
    position: fixed;
}


.navbar-brand{
    background: #f7f7f7;
    height: 70px;
    width: 100px;
   
}

    .navbar-header:hover .navbar-brand,
    .navbar-brand.show{
	width: 300px;
	background: #fff;
    }
	
    .logo-sign{
	margin-right: 0;
	margin-top: -70px;
	height: 70px;
	width: 70px;
	float: right;
    }
    
    .logo-name{
	height: 70px;
	margin-top: -15px;
	margin-left: -350%
    }
    
    .navbar-header:hover .logo-name,
    .logo-name.show{
	margin-left: 60px;
    }
    .navbar-header:hover .logo-sign,
    .logo-sign.hide{
	margin-right: -90px;
    }

.menu-icon{
    height: 72px;
    display: inline;
    border: none;
    background: transparent;
    outline: none;
    margin-left: -6px;
    margin-top: -2px;
}
    .menu-icon span{
	font-size: 30px;
	display: inline-block;
	padding: 20px;
	background: #303434;
	color: #fff;
    }
    .menu-icon:hover{
	cursor: pointer;
	
    }



/* =================================
 *
        M E N U
 */
    

/* SIDEBAR MENU */

.sidebar-menu ul{
    width: 300px;
    height: 100vh;
    padding-top: 170px;
    padding-left: 0;
    background: #f7f7f7;
    margin-left: -300px;
    list-style: none;
    opacity: 0.97;
    -webkit-transition: margin 0.8s;
    -moz-transition: margin 0.8s;
    -ms-transition: margin 0.8s;
    -o-transition: margin 0.8s;
    transition: margin 0.8s; 
}

    .navbar-header:hover + .sidebar-menu ul,
    .sidebar-menu ul:hover{
	margin-left: 0;
    }
	.navbar-header:hover + .sidebar-menu ul.dropdown,
	.sidebar-menu ul.dropdown:hover,
	.navbar-header + .sidebar-menu ul.dropdown,
	.sidebar-menu ul.dropdown{
	    margin-left: 300px;
	}
    
    .sidebar-menu li{
	text-align: right;
    }
	.sidebar-menu >ul> li{
	    height: 45px;
	}
	.sidebar-menu li:hover{
	    background: #fff;
	}
	    .sidebar-menu li.menu-social-icons:hover{
		background: #f7f7f7;
	    }
	
	.sidebar-menu li span{
	    display: block;
	    -webkit-transition: all 0.2s;
	    -moz-transition: all 0.2s;
	    -ms-transition: all 0.2s;
	    -o-transition: all 0.2s;
	    transition: all 0.2s;
	}
	
	.sidebar-menu li span:first-child{
	    text-transform: uppercase;
	    letter-spacing: 10px;
	}
	
	.sidebar-menu li span:last-child{
	    margin-right: 7px;
	    text-transform: lowercase;
	    letter-spacing: 3px;
	}
	
	    .sidebar-menu li:hover span:first-child,
	    .sidebar-menu li span:last-child{
		opacity: 0;
	    }
	    .sidebar-menu li:hover span:last-child{
		opacity: 1;
		margin-top: -25px;
	    }
	    
	    .menu-item-icon{
		font-size: 24px;
	    }
		.sidebar-menu li:hover span.menu-item-icon{
		    margin-top: -28px;
		}
		
		.sidebar-menu li.no-child{
		    padding-right: 40px;
		    padding-top: 15px;
		}
		

.menu-social-icons{
    
    margin-top: 100px;
    border-top: 3px solid #303434;
}
.menu-social-icons a{
    font-size: 18px;
    padding: 10px 10px 10px 20px;
    float: right; 
}
    .menu-social-icons:hover{
	background: #f7f7f7;
    }
    
    
/* dropdown menu */

.has-children > a{
    position: relative;
}

.has-children .dropdown li{
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 10px 40px 10px 20px;
    text-transform: lowercase;
    text-align: left;
}

.has-children > .dropdown{
    position: absolute;

    height: auto;
    opacity: 0;
    visibility: hidden;
    left: 0;
    /*margin-left: 300px;*/
    margin-left: auto;
    margin-top: -35px;
    padding-top: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

    .has-children a:hover + ul,
    .has-children:hover > ul,
    .has-children ul:hover{
	opacity: 1;
	margin-left: 300px;
	visibility: visible;
    }
    
    
    @media(max-width: 991px){
	.has-children{
	    padding-right: 0;
	    padding-left: 0
	}
	
	    .has-children > a{
		display: block;
		background: #fff;
		padding: 15px 40px 15px 15px
	    }

    }
    
.dropdown{
    list-style: none;
}
    .dropdown a{
	font-size: 12px;
    }
    
.navbar-nav>li>.dropdown-menu{
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}
    .dropdown-menu li a{
	    padding-top: 0px;
	    padding-bottom: 5px;
	   
	    font-weight: 300;
	    padding-left: 0;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
	position: relative;
	z-index: 1;
    }
	.dropdown-menu li:hover a{
	    background: transparent;
	    color: #978765;
	}
	
	.sidebar-menu .dropdown-menu{
	    margin-left: 0
	}

	@media(max-width: 767px){
	    .dropdown-menu li a:hover:before{
		border-color: transparent;
	    }
	    .dropdown-menu li a{
		color: #aaa;
	    }
		.dropdown-menu li a:hover{
		    color: #333;
		}
	}
    
/* dropdown submenu */

.dropdown-submenu {
    position: relative;
}

    @media(max-width: 991px){
	.has-children .dropdown .dropdown-submenu {
	    display: inline-block;
	    padding-bottom: 0;
	}
    }

.dropdown-submenu>.dropdown-menu{
    top: 0;
    left: 100%;
    height: auto;
    border: none;
    margin-top: 0px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(255,255,255, 0.9);
    display: block;
    padding-bottom: 0;
    padding-top: 0;
}

    .dropdown-submenu:hover>.dropdown-menu,
    .dropdown-submenu> a:hover + .dropdown-menu,
    .dropdown-submenu .dropdown-menu:hover{
	opacity: 1;
	visibility: visible;
	top: 0;
	left: 100%;
    }
    
    .sidebar-menu .dropdown-submenu:hover>.dropdown-menu,
    .sidebar-menu .dropdown-submenu> a:hover + .dropdown-menu,
    .sidebar-menu .dropdown-submenu .dropdown-menu:hover{
       left: 0;
    }

.dropdown-submenu>a{
    display: block;
}
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}


    @media(max-width: 767px){
	.navbar-nav .dropdown-submenu .dropdown-menu{
	    /*position: absolute;*/
	    position: static;
	    padding-left: 20px;
	    opacity: 1;
	    visibility: visible;
	    top: 0;
	}

    }


 
/* TOPBAR MENU */

.topbar-menu li.no-child{
    padding-top: 15px;
    padding-right: 20px;
}
    @media(max-width: 991px){
	.topbar-menu li.no-child{
	    padding-top: 15px;
	    padding-right: 40px;
	}
    }
    
@media(min-width: 992px){
    .sidebar-menu li{
	padding: 15px 40px 15px 20px; /* not used in the small device */
    }
    
    .has-children > .dropdown{
	width: 230px;
    }
    
    .topbar-menu > ul{
	height: 70px;
	width: 100%;
	background: rgba(255,255,255, 0.9);
	margin-left: -100%;
	list-style: none;
	padding-top: 10px;
	opacity: 0.97;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;  
    }
    
	.topbar-menu > ul > li{
	    display: inline-block;
	    padding: 0 20px 30px 0;
	}
	
	    .navbar-header:hover + .topbar-menu ul,
	    .topbar-menu ul:hover{
		margin-left: 370px;
	    }
	    
	    .topbar-menu li span{
		text-transform: uppercase;
		letter-spacing: 5px;
		font-size: 10px;
	    }
	    
	    .topbar-menu li span:last-child{
		display: none;
	    }
	    
    
    .topbar-menu .has-children > a{
	position: relative;
    }
    .topbar-menu .has-children > .dropdown{
	position: absolute;
	margin-left: auto;
	left: auto;
	width: 230px;
	height: auto;
	padding-left: 0px;
	padding-right: 0;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
    }
	.topbar-menu .has-children > .dropdown li:hover{
	    background: #fff;
	}
	    .topbar-menu .has-children > .dropdown,
	    .navbar-header:hover + .topbar-menu .has-children > .dropdown{
		margin-top: 21px;
		background: rgba(255,255,255, 0.9);
	    }
	    
	    .topbar-menu .has-children a:hover + ul,
	    .topbar-menu .has-children:hover > ul,
	    .topbar-menu .has-children a + ul:hover{
		opacity: 1;
		margin-left: auto;
		visibility: visible;
	    }
		
		
}


/* VISIBLE TOPBAR MENU */

.menu{
    -webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}

.is-visible .navbar-header{
    width: 300px;
}
.is-visible .navbar-header .logo-name{
    margin-left: 0
}
    .is-visible .navbar-brand{
	width: auto;
    }
    
    @media(min-width: 992px){
	.is-visible .navbar-header:hover .navbar-brand{
	    width: auto;
	}
	
	.is-visible .navbar-header:hover + .topbar-menu > ul,
	.is-visible .navbar-header + .topbar-menu > ul,
	.is-visible .topbar-menu > ul:hover{
	    margin-left: 280px;
	    width: 100vw;
	}
	.is-visible .topbar-menu > ul{
	    background: transparent;
	}
	
	.is-visible .menu-items > li > a{
	    color: #fff;
	}
	
	    .is-visible .menu-items.changeColor > li > a{
		color: #303434;
	    }
		.is-visible .menu-items > li a:hover span{
		    color: #978765
		}
		
	.is-visible .menu:hover{
	    background: rgba(255,255,255,0.9);
	}
	    .is-visible .menu:hover > ul > li > a{
		color: #303434;
	    }

    }
    
    @media(max-width: 991px){
	
	.menu{
	    position: fixed;
	}
	    
	.is-visible .topbar-menu .navbar-brand{
	    width: 230px
	}
	.is-visible .navbar-header{
	    width: 350px;
	}
	
	.is-visible .navbar-header:hover + .menu ul,
	.is-visible .menu ul:hover{
	    margin-left: 0px;
	}
	
	.is-visible .menu ul{
	    margin-left: -450px;
	}

    }
    
    @media(max-width: 767px){
	.is-visible .navbar-header:hover + .menu ul,
	.is-visible .menu ul:hover{
	    margin-left: -15px;
	}
    }
    

    @media(max-width: 991px){
	
	.menu ul{
		width: 300px;
		height: 100vh;
		padding-top: 170px;
		padding-left: 0;
		background: #f7f7f7;
		margin-left: -350px;
		list-style: none;
		opacity: 0.97;
		-webkit-transition: all 0.8s;
		-moz-transition: all 0.8s;
		-ms-transition: all 0.8s;
		-o-transition: all 0.8s;
		transition: all 0.8s;  
	    }
	    
		.navbar-header:hover + .menu ul,
		.menu ul:hover{
		    margin-left: 0;
		}
		
		.menu li{
		    /*padding: 15px 40px 15px 20px;*/
		    text-align: right;
		}
		    .menu >ul> li{
			height: 50px;
		    }
		    .menu li:hover{
			background: #fff;
		    }
			.menu li.menu-social-icons:hover{
			    background: #f7f7f7;
			}
		    
		    .menu li span{
			display: block;
			-webkit-transition: all 0.2s;
			-moz-transition: all 0.2s;
			-ms-transition: all 0.2s;
			-o-transition: all 0.2s;
			transition: all 0.2s;
		    }
		    
		    .menu li span:first-child{
			text-transform: uppercase;
			letter-spacing: 10px;
		    }
		    
		    .menu li span:last-child{
			margin-right: 7px;
			text-transform: lowercase;
			letter-spacing: 3px;
		    }
		    
			.topbar-menu li:hover span:first-child,
			.sidebar-menu li span:last-child{
			    opacity: 0;
			}
			.menu li:hover span:last-child{
			    opacity: 1;
			    margin-top: -25px;
			}
			
			
	
	.menu >ul> li.has-children{
	    height: auto;
	    overflow-y: scroll;
	}
	
	.menu ul{
	    overflow-y: scroll;
	    padding-top: 70px;
	}
	
	.menu > ul > li,
	.menu > ul:hover > li{
	    padding-bottom: 0;
	    
	}
	
	.menu .has-children > ul.dropdown,
	.menu .has-children a:hover + ul,
	.menu .has-children:hover > ul,
	.menu .has-children a + ul:hover,
	.navbar-header:hover + .menu .has-children > ul{
	    position: static;
	    opacity: 1;
	    visibility: visible;
	    margin-left: 0;
	    display: block;
	}
	
	.menu .has-children > ul.dropdown,
	.menu .has-children a:hover ul.dropdown,
	.navbar-header:hover + .menu .has-children > ul{
	    margin-top: 0;
	    margin-right: 0;
	}
	
	.menu li:hover span:last-child,
	.menu li span:last-child{
	   display: none;
	}
	
	.menu li:hover span:first-child{
	    opacity: 1;
	}
	
	   .menu .has-children > ul.dropdown li{
		text-align: right;
		padding-right: 50px;
		width: 100%;
	    }
	    .menu .has-children > ul.dropdown li a{
		font-size: 11px;
	    }

	    .menu .dropdown-menu{
		position: static;
		visibility: visible;
		opacity: 1;
		margin-left: 0;
		box-shadow: none;
		background: #f7f7f7;
		margin-top: 15px;
	    }
		.menu .dropdown-menu a:hover,
		.menu .dropdown-submenu .dropdown-menu{
		    margin-left: 0;
		    
		}
		.menu .has-children > ul.dropdown li{
		    padding-left:0;
		}
		
		.dropdown-menu li a{
		    padding-right: 0
		}
		
	}

	
/* SEARCH FORM */

.search-overlay{
    position: fixed;
    width: 0;
    height: 100%;
    right: -10%;
    top: 0;
    z-index: -1;
    opacity: 0.9;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}

    .search-overlay.open{
	z-index: 2001;
	right: 0;
	width: 100%;
	overflow: hidden;
    }
    
    .search-overlay .container{
	display: inline-block;
	opacity: 0;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-ms-transition: all 1s;
	transition: all 1s;
    }
	.search-overlay.open .container{
	    opacity: 1
	}
    
#closeSearch{
    margin-bottom: 50px;
}
    
    #closeSearch span{
	font-size: 100px;
	color: #ddd;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-ms-transition: all 1s;
	transition: all 1s;
    }
	#closeSearch span:hover{
	    color: #303434;
	    cursor: pointer;
	}
	
	
/* NAVBAR SEARCH ICON */


.topbar-menu .no-child.navbar-icon span{
    color: #303434;
    margin-top: 5px;
    font-size: 12px;
   
}
    .is-visible .topbar-menu .no-child.navbar-icon span{
	color: #fff;
    }
	.is-visible .topbar-menu:hover .no-child.navbar-icon span,
	.is-visible .topbar-menu .menu-items.changeColor .no-child.navbar-icon span{
	    color: #303434;
	}
	
    .topbar-menu .no-child.navbar-icon:hover span,
    .is-visible .topbar-menu .no-child.navbar-icon:hover span,
    .is-visible .topbar-menu .menu-items.changeColor .no-child.navbar-icon:hover span{
	color: #978765;
	cursor: pointer;
    }
    
    @media(min-width: 992px){
	
	.topbar-menu .no-child.navbar-icon{
	    padding-right: 10px;
	}
	.topbar-menu .no-child.navbar-icon span{
	    margin-top: 12px;
	}
	
    }

.navbar-form{
    margin-top: 0vh;
    display: inline-block;
}
    .navbar-form .form-group{
	padding: 0;
	margin-right: 20px;
	display: block;
    }
	.navbar-form .form-group input{
	    width: 500px;
	    height: 40px;
	    border: none;
	    font-size: 18px;
	    border-bottom: 1px solid #eee;
	    padding-bottom: 0px;
	    padding-left: 15px;
	}

	
@media(max-width: 767px){
    .navbar-form .form-group input{
	width: 400px;
	display: inline;
    }
    .navbar-form .form-group{
	margin-top: -5px;
	display: block
    }

}

@media(max-width: 500px){
    .navbar-form .form-group input{
	width: 300px;
    }
    
    #sidebar-menu #openSearch{
	display: none;
    }
 
}

#openMenuMobile.menu-icon{
    right: 0;
    padding-top: 5px;
}
    #openMenuMobile.menu-icon span{
	color: #303434;
    }



	
/*
 * ============================================
 *                  B A N N E R
 * ============================================
 */

.banner{
    padding-top: 300px;
    position: relative
}

    .banner.overlap.banner-600{
	padding-top: 480px;
	margin-bottom: 150px;
    }
    
	@media(max-width: 767px){
	    .banner.overlap.banner-600{
		padding-top: 520px;
	    }
	}
    
    .banner.overlap.banner-400{
	padding-top: 270px;
	margin-bottom: 150px;
    }

	.overlap div{
	    padding-top: 50px;
	    padding-bottom: 20px;
	    border: 1px solid #eee; 
	}
	    .overlap div h2,
	    .overlap div h3{
		padding: 20px 20px 0 20px;
	    }

    .banner-fixed{
	position: fixed;
	width: 80%;
	margin-left: 10%;
    }
    
    .banner.overlap:after{
	position: absolute;
	content: "";
	margin-bottom: -205px;
	left: 0;
	margin-left: 50%;
	height: 100px;
	width: 3px;
	background: #303434;
    }
    
    @media(max-width: 767px){
	.banner.overlap:after{
	    margin-bottom: -180px;
	}
	    .banner.overlap.banner-600:after{
		margin-bottom: -140px;
	    }
    }

.banner-subtitle{
    letter-spacing: 10px;
    text-transform: uppercase;
}

    @media(max-width: 480px){
	.banner .lead{
	    font-size: 14px;
	    letter-spacing: 5px;
	}
    }

.title-style{
    position: relative;
}
    .title-style:after{
	position: absolute;
	content: "";
	top: -200px;
	left: 50%;
	background: #303434;
	width: 3px;
	height: 150px;
    }
   
    .title-style-white:after{
	background: #fff;
    }
    .title-style-black:after{
	background: #303434;
    }
    .title-style-color:after{
	background: #978765;
    }
    

/* form banner */

.banner.banner-form{
    padding-top: 30vh;
}
.banner-form .form-horizontal{
    margin-top: 50px;
}

.banner-form input{
    background: transparent;
    border: 1px solid rgba(255,255,255, 1);
    padding-left: 10px;
    display: inline;
    /*width: 30%;*/
    color: #fff;
}
    .banner-form input:focus{
	background: transparent;
    }
    
.input-2 {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 1em;
	max-width: 30%;
	width: calc(100% - 2em);
	vertical-align: top;
}

.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	font-weight: 400;
	/*font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
	-webkit-appearance: none; /* for box shadows to show on iOS */
	
	width: 100%;
	background-color: #d0d1d0;
	text-align: center;
	border: 2px solid transparent;
	-webkit-transition: background-color 0.25s, border-color 0.25s;
	transition: background-color 0.25s, border-color 0.25s;
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	width: 100%;
	/*text-align: left;*/
	position: absolute;
	bottom: 100%;
	pointer-events: none;
	overflow: hidden;
	padding: 0 1.25em;
	-webkit-transform: translate3d(0, 3em, 0);
	transform: translate3d(0, 3em, 0);
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s ;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

.input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
	font-weight: 400;
	color: rgba(255,255,255, 1);
	padding: 0.25em 0;
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

.graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
}

.icon {
	color: #ddd;
	font-size: 150%;
}

.input__label-content::after {
	content: attr(data-content);
	position: absolute;
	font-weight: 800;
	bottom: 100%;
	left: 0;
	height: 100%;
	width: 100%;
	color: #303434;
	padding: 0.25em 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85em;
}

.input__field:focus + .input__label,
.input--filled .input__label {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.input__field:focus + .input__label .input__label-content,
.input--filled .input__label-content {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.input__field:focus + .input__field,
.input--filled .input__field {
	background-color: transparent;
	border-color: #303434;
}

@media(max-width: 991px){
    .input-2 {
	margin: 0 0 5px 0;
	/*max-width: 100%;*/
    }
    .input__label{
	padding: 0;
    }
}

@media(max-width: 767px){
    .input-2 {
	margin: 0 0 5px 0;
	max-width: 100%;
    }
    .input__label{
	padding: 0;
    }
    
    .input__label-content::after{
	color: transparent;
    }
}



    
/* breadcrumb */

.bread-crumb{
    margin-left: -20px;
}
    .text-left .bread-crumb{
	margin-left: -40px;
    }
    .bread-crumb li{
	display: inline-block;
	list-style: none;
	opacity: 0.7;
	margin-right: 40px;
	font-size: 10px;
	letter-spacing: 3px;
    }
    
	.bread-crumb.white li,
	.bread-crumb.white li a{
	    color: #fff;
	}
	.bread-crumb.black li,
	.bread-crumb.black li a{
	    color: #303434;
	    opacity: 1;
	}
    
	.bread-crumb li:after{
	    content: "/";
	    position: absolute;
	    margin-left: 20px;
	    margin-right: 20px;
	    opacity: 0.7;
	    
	}
	    .bread-crumb li:last-child:after{
		content: "";
	    }



.small-text{
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: 700;
    margin-top: 100px;
    position: relative;
}
    .small-text:before{
	position: absolute;
	content: "";
	height: 50px;
	width: 3px;
	background: #fff;
	top: -85px;
	left: 50%;
	opacity: 0.7;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
    }
	.small-text.dark:before{
	    background: #303434;
	}
	.small-text:hover:before{
	    height: 70px;
	    opacity: 1;
	}
	
    @media(max-width: 991px){
	.small-text{
	    display: block;
	    margin-top: 30px;
	    margin-bottom: 30px;
	}
	
	.small-text:before{
	    display: none;
	}
	
    }
    
    @media(max-width: 600px){
	.logo-banner > div{
	    width: 100%;
	}
	.logo-banner > div:first-child{
	    height: 40vh;
	}
	
	.logo-banner > div:last-child{
	    height: 60vh;
	}
	
	.small-text{
	    margin-top: 20px;
	    margin-bottom: 20px;
	    letter-spacing: 3px;
	}
    }


/* intro section */


.intro-title a{
    border-top: 3px solid #978765;
    display: block;
    padding-top: 10px;
    margin-top: 15px;
    text-align: right;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 10px;
    margin-bottom: 30px;
}

    .intro-title h3{
	margin-bottom: 30px;
    }


/* section separators */

.section-separator{
    height: 200px;
    overflow: hidden;
    padding: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}
    .section-separator:hover{
	cursor: pointer;
    }

.section-separator.more-height{
    height: 400px;
}

#separator-1{
    background: url('../images/is1.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#separator-2{
    background: url('../images/is2.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#separator-3{
    background: url('../images/is3.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#separator-4{
    background: url('../images/is4.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#separator-5{
    background: url('../images/is5.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#separator-6{
    background: url('../images/is6.jpg') no-repeat 50% fixed;
    background-size: cover;
}

/* backgrounds */

#home-banner{
    background: url('../images/timeline1.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#home-banner-gradient{
    background: linear-gradient(
      rgba(0,0,0, 0.3), 
      rgba(0,0,0, 0.3)
    ),url('../images/slide2.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#home-banner-form{
    background: url('../images/slide3.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#about-banner{
    background: url('../images/team.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#about2-banner{
    background: url('../images/about2.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#feature-banner{
    background: url('../images/feature-banner.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#services-banner{
    background: url('../images/services.jpg') no-repeat 50% fixed;
    background-size: cover;
}
#services2-banner{
    background: url('../images/services-ba.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#portfolio-banner{
    background: url('../images/portfolio-banner.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#portfolio-single-banner{
    background: url('../images/services1.jpg') no-repeat 50% fixed;
    background-size: cover;
}

#contact-banner{
    background: url('../images/is2.jpg') no-repeat 50% fixed;
    background-size: cover;
}


#home-banner-slider{
    background-size: cover;
    -webkit-transition: all 3s;
	-moz-transition: all 3s;
	-ms-transition: all 3s;
	-o-transition: all 3s;
	transition: all 3s;
}



/*
 * ============================================
 *              S L I D E R S 
 * ============================================
 */

/* FULLPAGE SLIDER */



#home-slide-2{
    background: linear-gradient(
      rgba(0,0,0, 0.7), 
      rgba(0,0,0, 0.7)
    ), url('../images/slide2.jpg') no-repeat 50%;
    background-size: cover;
}

#home-slide-4{
    background: linear-gradient(
      rgba(68,90,216, 0.9), 
      rgba(68,90,216, 0.9)
    ), url('../images/slide1.jpg') no-repeat 50%;
    background-size: cover;
}

#home-slide-3{
    background: linear-gradient(
      rgba(255,255,255, 0.9), 
      rgba(255,255,255, 0.9)
    ), url('../images/slide4.jpg') no-repeat 50%;
    background-size: cover;
}


.slide h2,
.slide h1,
.slide a{
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}


.slide.active h2,
.slide.active h1{
    -o-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    opacity: 1;
}
.slide a{
    margin-bottom: -100px;
}
    .slide a.has-margin-right{
	margin-right: 40px;
    }
.slide.active a{
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    -moz-transition-delay: 1.5s;
    opacity: 1;
    margin-bottom: 0;
}

.slide .lead{
    opacity: 0;
    margin-top: -100px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}

.slide.active .lead{
    -o-transition-delay: 1s;
    transition-delay: 1s;
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    opacity: 1;
    margin-top: 0
}

@media(max-width: 767px){
    .slide .container{
	padding-left: 50px;
	padding-right: 50px;
    }

}

@media(max-width: 480px){
    .slide a.has-margin-right{
	margin-right: 0px;
    }
    .slide a,
    .slide a.has-margin-right{
	display: block;
	margin-right: 15%;
	margin-left: 15%;
    }
    .slide .text-left a{
	margin-right: 15%;
	margin-left: 0;
    }
    
    .slide a{
	margin-top: 15px;
    }
    
    .slide h1,
    .slide h2{
	font-size: 32px;
    }
    
    .slide .banner-subtitle{
	letter-spacing: 5px;
	font-size: 12px;
    }
    
    .slide .container{
	padding-left: 40px;
	padding-right: 40px;
    }
}



/*
 * ============================================
 *              A B O U T
 * ============================================
 */


.blocks .team-name{
    position: absolute;
    bottom: 80px;
    left: -15px;
    padding: 10px;

}

.team-title{
    position: absolute;
    bottom: 57px;
    left: -15px;
    color: #303434;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px;
        -webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}


.blocks .each-block:hover .team-name,
.blocks .each-block:hover .team-title,
.blocks .each-block.active .team-title,
.blocks .each-block.active .team-name{
    background: #fff;
}
    .blocks .each-block:hover .team-title{
	color: #999;
    }
    .blocks .each-block.active:hover .team-title{
	margin-left: 50px;
    }


/* PROGRESS BARS */

.custom-progress{
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 1px;
    margin-bottom: 50px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
}
.progress{
    background: #eee;
    margin-top: 10px;
}
    .custom-progress .progress-bar{
        background: #303434;
        text-align: left;
        padding-left: 20px;
        padding-top: 5px;
    }
    
	.custom-progress .progress-bar-alt{
	    background: #303434
	}

        .custom-progress span{
	    margin-left: -20px;
	    display: inline;
	    position: absolute;
	    letter-spacing: 3px;
	    color: #303434;
	    font-size: 10px;
	    font-weight: 700
        }
        

        @media (min-width: 480px) and (max-width: 767px){
            .progress-bars{
                padding-right: 10%;
                padding-left: 10%;
            }
        }

        @media (max-width: 991px){
            .progress{
		margin-top: 50px;
	    }
        }
	
	
/* TIMELINE */


.item-container a{
    float: right;
    margin-top: 15px;
}
.item-more-info{
    padding: 100px 30px;
}
    .item-more-info h2 span{
	font-size: 20px;
    }
    
    .item-more-info h4{
	margin-top: 50px;
    }
    
    .item-container:hover .item-more-info{
	background: #978765;
    }
    
    .item-more-info p{
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
    }
	.item-container:hover .item-more-info p{
	    color: #fff;
	}
	
    @media(max-width: 991px){
	.item-more-info{
	    margin-top: 15px;
	}
    }
    
    @media(max-width: 480px){
	.item-container{
	    padding: 0;
	}

    }
    
    
/* OWL CAROUSEL */
    
/* customization for the owl-carousel */
.owl-controls{
    margin-top: -10px;
    text-align: center;
    height: 100px;
}

    .owl-controls .owl-dot{
	display: inline-block;
	width: 3px;
	height: 30px;
	margin: 10px;
	margin-top: 0;
	border: 1px #303434 solid;
	background: #303434;
	opacity: 1;
	color: transparent;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
    }
	.owl-controls .owl-dot.active{
	    background: #303434;
	    height: 70px;
	}
	

@media(min-width: 992px){
    .dots-h .owl-controls{
	margin-top: -350px;
	text-align: left;
	margin-left: -70px;
	height: 100px;
    }
	.dots-h .owl-controls .owl-dot{
	    display: block;
	    width: 30px;
	    height: 3px;
	}
	    .dots-h .owl-controls .owl-dot.active{
		width: 70px;
	    }
	    
    .portfolio-carousel.dots-h{
	margin-bottom: 250px;
    }
	
}


/* FUN COUNTERS */

.counters-list{

}
    .counters-list.cl-v{
	margin-top: 0;
    }
    .counters-list p{
	font-size: 10px;
	letter-spacing: 3px;
	opacity: 0.7;
    }
    
    .has-anim h2{
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
    }
    .has-anim p{
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	
    }
    
    .has-anim:hover h2{
	font-size: 30px;
    }
    .has-anim:hover p{
	font-size: 16px;
	color: #303434;
    }
    
    /* list horizontal */
    
    #bg-img-right-2{
	background: url('../images/blog-banner.jpg') no-repeat center 50% fixed;
	background-size: cover;
    }
    #bg-img-left{
	background: url('../images/blog-banner.jpg') no-repeat center 50% fixed;
	background-size: cover;
    }
    
    .counters-list.list-h{
	margin-top: 50px;
    }
	.counters-list.list-h li{
	    margin-bottom: 30px;
	}
	
    .counters-list.list-h p:first-child{
	
	opacity: 1;
	text-transform: uppercase;
    }
    
    @media(max-width: 767px){
	.counters-list > div{
	    margin-top: 25px;
	    margin-bottom: 25px;
	}
    }


.list-2 img{
    margin-bottom: 20px;
    margin-top: 20px;
}

    .style-up,
    .style-down{
	position: relative;
    }

    .style-up{
	margin-top: 70px;
    }
    
    .style-down{
	margin-bottom: 70px;
    }
    .list-2 .style-up:after{
	position: absolute;
	content: "";
	height: 30px;
	width: 2px;
	background: #303434;
	left: 0;
	top: -47px;
    }
    .list-2 .style-down:after{
	position: absolute;
	content: "";
	height: 30px;
	width: 2px;
	background: #303434;
	left: 0;
	bottom: -47px;
    }
    
    @media(max-width: 991px){
	.list-2 > div{
	    /*padding: 0;*/
	    padding-bottom: 30px;
	    margin-bottom: 30px;
	    border-bottom: 1px solid #eee;
	}

    }
    @media(max-width: 767px){
	.list-2 > div:last-child{
	    border: none;
	    padding-bottom: 0;
	    margin-bottom: 0;
	}
	
	.list-2 > div{
	    padding: 0;
	    
	}
    }
	





/*
 * ============================================
 *              P O R T F O L I O
 * ============================================
 */


.grid-filter{
    padding: 30px 0;
    height: auto;
    display: block;
    list-style: none;
}
    .grid-filter li{
	display: block;
    }

	.grid-filter a{
	    padding: 10px;
	    padding-right: 0;
	    color: #303434;
	    border: none;
	    text-transform: uppercase;
	    letter-spacing: 3px;
	    font-weight: 700;
	    margin-top: 0;
	}
	    
	    .grid-filter a.selected,
	    .grid-filter a.selected:hover,
	    .grid-filter a:hover{
		color: #978765;
	    }
	    
	    .grid-filter.grid-filter-h li{
		display: inline-block;
	    }
	    .grid-filter.grid-filter-h a{
		padding: 0;
		padding-right: 20px;
	    }
        
    @media(max-width: 991px){
	.grid-filter{
	    height: auto;
	    /*padding-bottom: 0;*/
	}
	    .grid-filter li{
		display: inline-block;
		margin-right: 10px;
		height: 30px;
	    } 
    }
    
    @media(max-width: 767px){
	.grid-filter-h{
	    text-align: left;
	}
	    .grid-filter-h li{
		margin-right: 0;
	    }
    }
    
/* the grid layout for the portfolio items */

.grid-layout {
    list-style: none;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

    @media(max-width: 991px){
		    
	.grid-layout{
	    margin-bottom: 0;
	}
    }

    .grid-layout div.info {
        height: 70px;
        width: 100%;
        text-align: left;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
        -moz-transition: -moz-transform 0.3s, opacity 0.3s;
        -ms-transition: -ms-transform 0.3s, opacity 0.3s;
        -o-transition: -o-transform 0.3s, opacity 0.3s;
        transition: transform 0.3s, opacity 0.3s;
        position: absolute;
        margin: 0;
	bottom: 0;
	left: 0;
        z-index: 100;
        padding: 12px 10px 10px 20px;
    }
    
    .grid-layout div.color-bg{
	background: #978765;
	opacity: 0.7;
    }
    
    .grid-layout div.dark-bg{
	background: #303434;
	opacity: 0.7;
    }
    .grid-layout div.light-bg{
	background: #fff;
	opacity: 0.7;
    }
    
        .grid-layout div.info span{
            display: block;
	    font-weight: 700;
	    text-transform: uppercase;
	    letter-spacing: 3px;
	    font-size: 10px;
	    opacity: 0;
	    -webkit-transition: all 0.2s;
	    -moz-transition: all 0.2s;
	    -ms-transition: all 0.2s;
	    -o-transition: all 0.2s;
	    transition: all 0.2s;
        }
	
	.grid-layout div h5{
	    margin-top: -4px;
	    -webkit-transition: all 0.2s;
	    -moz-transition: all 0.2s;
	    -ms-transition: all 0.2s;
	    -o-transition: all 0.2s;
	    transition: all 0.2s;
	}
	
	    .grid-layout figure:hover .info span{
		opacity: 1;
	    }
	    
	    .grid-layout figure:hover h5{
		margin-top: 5px;
	    }
	
	    .grid-layout div.dark-bg h5,
	    .grid-layout div.color-bg h5{
		color: #fff;
	    }
	    
	    .grid-layout div.color-bg span{
		color: #303434;
	    }
	    
	    .grid-layout div.dark-bg span,
	    .grid-layout div.light-bg span{
		color: #978765;
	    }
	    
    .grid-layout figure{
        position: relative;
    }
  
.hover-effect{
    padding: 0;
    margin-top: 0;
}

    .hover-effect li{     
       padding: 0px;
    }
    
	.more-padding li{
	    padding: 20px;
	}
	
    .grid-layout .links{
	position: absolute;
	bottom: 10px;
	z-index: 101;
	margin-right: 0;
	right: -20px;
	opacity: 0;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	-ms-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
	transition-delay: 0.5s;
    }
	.grid-layout figure:hover .links{
	    opacity: 1;
	    right: 20px;
	}

    .grid-layout .links a{
        text-decoration: none;
	margin-top: 0;
	color: #fff;
	font-size: 22px;
    }
    
    .grid-layout .light-bg + .links a{
	color: #303434;
    }
	.grid-layout .light-bg + .links a:hover{
	    color: #303434;
	}
        .grid-layout i:hover,
        .grid-layout i:focus{
            background: transparent;
            letter-spacing: 0.5px;
        }


.hover-effect figure:hover div{
    opacity: 1; 
}

.swapped-img{
    position: absolute;
    top: 0;
    left: 0;
}

.swapped-img,
.hover-effect figure:hover .current-img{
    opacity: 0;
}

.hover-effect figure:hover .swapped-img{
    opacity: 1
}

    @media (max-width: 767px){
      
        .grid-layout{
            margin-bottom: 0;
            padding-bottom: 0;
        }
	
        .grid-layout li{
            margin-bottom: 20px;
        }
	
	.grid-layout div.info span{
	    opacity: 1;
        }
	
	.grid-layout div h5{
	    margin-top: 0px;
	}
	
	.grid-layout figure .links{
	    opacity: 1;
	    right: 20px;
	}
    }
    
    @media(max-width: 600px){
	.grid-layout li{
	    width: 100%;
	}
    }


/* full screen portfolio - owl carousel */

.portfolio-carousel .owl-item{
    height: auto;
    max-height: 600px;
}

.portfolio-carousel + div{
    opacity: 0;
    margin-top: -30%;
    z-index: 1;
}

    .portfolio-carousel:hover + div,
    .portfolio-carousel + div:hover{
	opacity: 1;
    }
    .portfolio-carousel + div a{
	background: #303434;
	color: #fff;
	border: 1px solid transparent;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
	font-size: 10px;
    }
	.portfolio-carousel + div a:hover{
	    background: transparent;
	    color: #303434;
	    border-color: #303434;
	}
    
    @media(min-width: 768px){
	.portfolio-carousel + div a{
	    padding: 40px 50px; 
	}
    }
    
    @media(max-width: 767px){
	.portfolio-carousel + div{
	    opacity: 1;
	    margin-top: -50%;
	}
	
	.portfolio-carousel + div a{
	    padding: 20px 30px; 
	}
    }

.item-details{
    position: absolute;
    bottom: 0;
    max-height: 170px;
    left: 100px;
    right: 100px;
    overflow: hidden;
    padding: 50px;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
    transition: all 3s;
}
	.owl-item:hover .item-details{
	    max-height: 600px;
	    background: rgba(255,255,255, 0.9);
	}
	
	.item-details .animated-line-link{
	    position: relative;
	    margin-top: 20px;
	    width: 100%;
	    color: #303434;
	}
	    .item-details .animated-line-link:hover{
		color: #978765;
	    }
	
	.item-details p{
	    color: #303434;
	    padding: 2px 0;
	}

    .item-details > span{
	display: block;
	color: #fff;
	padding: 0;
	height: 30px;
    }
    
    .item-details .date{
	margin-bottom: 20px;
	font-size: 40px;
	margin-top: -60px;
	font-family: "Droid Serif";
    }
    .item-details .category{
	text-transform: uppercase;
	letter-spacing: 10px;
	margin-bottom: 30px;
	font-size: 12px;
	font-weight: 700;
    }
    
    .owl-item:hover .category,
    .owl-item:hover .date{
	color: #303434;
    }
    
    @media(min-width: 1500px){
	.item-details{
	    left: 20%;
	    right: 20%;
	}
    }
    
    @media(max-width: 991px){
	.item-details{
	    left: 0;
	    right: 0;
	}
    }
    
    @media(max-width: 767px){
	
	.portfolio-carousel .owl-item{
	    max-height: 1303434px;
	}
	.item-details{
	    max-height: 1303434px;
	    background: rgba(255,255,255, 0.5);
	    bottom: 0;
	    position: relative;
	}
	
	.item-details .date{
	    font-size: 16px;
	    margin-top: -100px;
	}
	
	
	.item-details .date,
	.item-details .category{
	    color: #303434;
	}
    }
    
    @media(max-width: 600px){
	.item-details .date{
	    display: none;
	}
	.item-details .category{
	    width: 100%;
	}
	
	.container .item-details{
	    padding: 50px 0;
	}
	
    }
	

/*
 * ============================================
 *              B L O G
 * ============================================
 */

#blog-banner{
    background: url(../images/blog-banner.jpg) center 50% fixed;
    background-size: cover;
}

#blogpost-banner{
    background: url(../images/blogpost.jpg) center 50% fixed;
    background-size: cover;
}

.article-bg{
    background: url(../images/blogpost.jpg) center 50% fixed;
    background-size: cover;
    margin-top: 50px;
}

.post-article{
    padding: 100px 50px;
    background: #fff;
}
    .post-article .quote{
	padding: 50px;
	border: 1px solid #eee;
    }

.blog-spacing{
    margin-top: 50px;
    margin-bottom: 50px;
}

mark{
    background-color: #978765;
    color: #fff;
}

.dropcap{
    float: left;
    font-size: 75px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    font-family: "Droid Serif";
}

#call-to-action-bar{
    background: url(../images/services.jpg) center 50% fixed;
    background-size: cover;
}

#call-to-action-bar-bg{
    background: linear-gradient(
      rgba(0,0,0, 0.3), 
      rgba(0,0,0, 0.3)
    ), url(../images/servicesbg.jpg) center 50% fixed;
    background-size: cover;
}

@media(max-width: 767px){
    #call-to-action-bar .banner-sm{
	padding-top: 150px;
	padding-bottom: 150px;
    }
}


/* blog list */

.info-details{
    padding: 50px 20px 100px 20px;
    background: #f7f7f7;
}

.grid-layout .info.blog-info span{
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: lowercase;
    
}
    .grid-layout li:hover .info.blog-info span{
	opacity: 0.7;
    }
    .grid-layout div.info.blog-info h5{
	margin-top: -2px;
    }
    
	.grid-layout li:hover .info.blog-info h5{
	    margin-top: 5px;
	}
    
    .info-details h4{
	text-transform: capitalize;
    }
    
.grid-layout li:hover{
    -moz-box-shadow: 2px 2px 5px #eee;
    -webkit-box-shadow: 2px 2px 5px #eee;
    box-shadow: 2px 2px 5px #eee;
}


 
/* BLOG SINGLE */

#post-comments{
    border-top: 3px solid #f7f7f7;
    padding-top: 60px;
    margin-top: 60px;
}

    #comments-list h4,
    #post-comments h4{
	margin-bottom: 30px;
    }
    
    #post-comments .form-horizontal{
	padding-left: 0;
    }
	#post-comments textarea{
	    margin-left: 18px;
	}
	
	    @media(max-width: 767px){
		#post-comments textarea{
		    margin-left: 0;
		}
		#post-comments .btn-link{
		    float: left;
		    margin-left: 15px;
		}
	    }
	
	#post-comments .btn-link{
	    margin-top: 0;
	}

    .media-list div.media:hover > a > img,
    .media-list li.media:hover img{
	border-radius: 0;
	-webkit-border-radius: 0;
    }
    
    .media-list li{
	padding-bottom: 30px;
	border-bottom: 1px solid #f7f7f7;
	margin-bottom: 30px;
    }
	.media-list li:last-child{
	    border: none;
	    margin-bottom: 0;
	    padding-bottom: 0;
	}
    
    	.media-list li .nested-media{
	    margin-top: 30px;
	    border-top: 1px solid #f7f7f7;
	    padding-top: 30px;
	}
	
.media-heading{
    margin-bottom: 10px;
}
    
    .media-heading a{
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
	font-size: 10px;
	font-family: "Open Sans";
	margin-right: 15px;
    }
    .media-heading small{
	color: #aaa;
	margin-right: 15px;
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 3px;
	font-family: "Open Sans";
    }
    
    .media-heading span:last-child{
	float: right;
    }

.media-left, .media>.pull-left{
    padding-right: 30px;
}

    @media(max-width: 480px){
	.media-left, .media>.pull-left{
	    padding-right: 10px;
	}
	.media-heading a{
	    letter-spacing: normal;
	    margin-right: 5px;
	}
    }
    
.blog-post-author{
    padding-top: 60px;
    margin-bottom: 70px;
    margin-top: 60px;
    border: 3px solid #978765;
}

.blog-post-author .member-info{
    margin-top: 0px;
    padding: 30px;
    padding-bottom: 0;
}

	.blog-post-author .position-2{
	    text-transform: uppercase;
	    letter-spacing: 10px;
	    display: block;
	    margin-bottom: 30px;
	    font-size: 12px;
	    font-weight: 700;
	    color: #303434;
	}
	    
	
	.blog-post-author > div.each-team{
	    min-height: 100px;
	    padding: 0;
	    margin-bottom: 60px
	}


/*
 * ============================================
 *              S E R V I C E S
 * ============================================
 */

.blocks .each-block{
    padding: 20px 40px;
}
    @media(max-width: 600px){
	.blocks .each-block{
	    width: 100%;
	}
    }

.each-block:hover h4,
.each-block:hover h5{
    color: #978765;
}

    .color-bg .each-block:hover h4{
	color: #fff;
    }
    
.blocks .num{
    position: absolute;
    top: 5px;
    left: -20px;
    color: #eee;
    font-weight: 700;
    font-family: "Droid Serif";
    font-size: 40px;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
}

.blocks span.lnr{
    font-size: 70px;
    margin-left: -40px;
    margin-bottom: -50px;
    display: inherit;
    color: #eee;
}

.services{
    list-style: none;
    padding-left: 0;
}

    .service-img{
	background: #303434;
	padding: 0;
    }
	.service-img img{
	    position: relative;
	}
	    .services li:hover img{
		opacity: 0.3;
	    }
	    
    .animated-line-link{
	position: absolute;
	border-top: 3px solid #303434;
	display: block;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 10px;
	color: #fff;
	width: 400px;
	text-align: right;
    }
	
    .services li:nth-child(odd) .service-img a{
	margin-top: -150px;
	margin-left: -100px;
	text-align: right;
    }
    
    .services li:nth-child(even) .service-img a{
	margin-top: -150px;
	margin-left: 380px;
	text-align: left;
    }
	.services li:nth-child(even):hover .service-img a{
	    margin-left: 280px;
	}
    
	.services li:hover .service-img a{
	    border-color: #978765;
	    width: 500px;
	}
	
	@media(max-width: 1199px){
	    .services li:nth-child(even) .service-img a{
		margin-left: 250px;
	    }
	    
		.services li:nth-child(even):hover .service-img a{
		    margin-left: 150px;
		}
	}
	
	@media(max-width: 991px){
	    .services li:nth-child(odd) .service-img a{
		margin-left: -60px;
	    }
	    
	    .services li:nth-child(even) .service-img a{
		margin-left: 260px;
	    }
	    
		.services li:nth-child(even):hover .service-img a{
		    margin-left: 160px;
		}
	    
	    .service-img{
		width: 80%;
		margin-left: 10%;
		margin-top: 30px;
		margin-bottom: 30px;
	    }
	}
	
	
	@media(max-width: 767px){
	    .services li:nth-child(odd) .service-img a,
	    .services li:nth-child(odd):hover .service-img a{
		margin-left: 0;
		width: 350px;
		margin-top: -100px;
	    }
	
	    .services li:nth-child(even) .service-img a,
	    .services li:nth-child(even):hover .service-img a{
		margin-left: 0;
		text-align: right;
		width: 350px;
		margin-top: -100px;
	    }
	    
	    .service-img{
		width: 100%;
		margin-left: 0;
	    }
	   
	}
	
	@media(max-width: 480px){
	    .services li:nth-child(odd) .service-img a,
	    .services li:nth-child(odd):hover .service-img a{
		
		width: 280px;
		margin-top: -60px;
	    }
	
	    .services li:nth-child(even) .service-img a,
	    .services li:nth-child(even):hover .service-img a{
		
		width: 280px;
		margin-top: -60px;
		
	    }
	}
	
	
	
/* WORK PROCESS */


.process > div{
    padding-left: 0;
    padding-right: 0;
}
.process .details{
    position: absolute;
    opacity: 0;
    background: rgba(255,255,255, 0.9);

    width: 100%;
    height: auto;
    top: -50px;
    padding: 20px 0;
    left: 0;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

    .process .details:before{
	position: absolute;
	content: "";
	background: #978765;
	height: 30px;
	width: 2px;
	top: -30px;
    }
    
    .process .details:after{
	position: absolute;
	content: "";
	background: #978765;
	height: 30px;
	width: 2px;
	bottom: -30px;
    }
    
    .process > div:hover .details{
	opacity: 1;
	top: -20px;
    }

    .process > div:hover > p{
	font-size: 16px;
	color: #303434;
	font-weight: 700;
	letter-spacing: 7px;
    }
    
    .details p{
	color: #303434
    }
    
    @media(max-width: 991px){
	.process > div{
	    margin-top: 50px;
	}

    }
    
    @media(max-width: 767px){
		
	.process .details{
	    padding: 30px 0px;
	}
	
	.process > div:hover .details{
	    top: -10px;
	}
	.process .details:before{
	    top: -20px;
	}
	
	.process .details:after{
	    bottom: -10px;
	}
    }

    @media(max-width: 600px){
		
	.process .details{
	    padding: 20px 0;
	}
	
	.process > div:hover .details{
	    /*top: 10px;*/
	}
    }
    



/* PRICE TABLE */

.price .price-item > div{
    padding: 40px 0;
}

    @media(max-width: 991px){
	.price .price-item{
	    margin-bottom: 30px;
	}
    }
    
    @media(max-width: 600px){
	.price .price-item{
	    width: 100%;
	    margin-left: 0;
	}
    }

.light-border{
    border: 1px solid #eee
}

.color-border{
    border: 3px solid #978765
}

.price-title{
    display: block;
    margin-bottom: 20px;
}

.price-price{
    font-size: 60px;
    font-weight: 700;
    padding-top: 25px;
    padding-bottom: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    
    background: #f7f7f7;
    font-family: "Droid Serif";
    position: relative;
}

    .price-item.featured .price-price{
	background: #978765;
    }
    
	.price-item.featured .price-currency,
	.price-item.featured .price-period{
	    color: #fff;
	}
    
.price-currency{
    font-weight: 300;
    font-size: 26px;
    color: #aaa;
}
.price-period{
    font-size: 16px;
    color: #aaa;
    font-weight: 300;
}

.price-item ul{
    list-style: none;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    
}
    .price-item li{
	margin-top: 15px;
    }
    
    .price-item.featured ul{
	border-bottom: 3px solid #978765;
    }

    
.price-action{
    padding: 18px 10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #303434;
    margin-top: 15px;
    float: right;
    border: 3px solid #fff;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

    .price-action:hover{
	background: #fff;
	border-color: #303434;
    }

    .price-action span{
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	display: inline-block;
	margin-top: -5px;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
    }
	.price-action:hover span{
	    color: #303434;
	}

.dark-bg .price-action{
    background: #D4AF37;
    border-color: #fff;
}

    .dark-bg .price-action span{
	color: #fff;
	
    }
	.dark-bg .price-action:hover span{
	    color: #303434;
	}
    
.dark-bg .price-price{
    color: #D4AF37;
    border-color: #333
}


.dark-bg .price-price:before,
.dark-bg .price-price:after{
    background: #fff;
}

.dark-bg .price-feature,
.dark-bg p{
    color: #aaa;
}

.dark-bg .price-feature:before{
    color: #666;
}
    


/* COMPARISON TABLE */


.price-table sup,
.price-table small{
    font-size: 16px;
    color: #303434;
}
  
table td{
    border-left: 1px solid #f7f7f7;
    border-right: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;   
}

.table>tbody>tr>td,
.table>tbody>tr>th{
    padding: 12px;
    border-color: #f7f7f7;
}

    .table>tbody>tr>td{
	padding-top: 14px;
    }

.table>thead:first-child>tr:first-child>th{
    border: none;
    padding: 30px;
}

tbody th{
    border-bottom: 1px solid #f7f7f7;
    font-family: "Droid Serif";
    text-align: right;
    font-size: 16px;
    font-weight: 300;
    color: #303434
}
        
    th p{
	color: #303434;
	letter-spacing: 10px;
    }

.table-hover tbody tr td,
.table-hover tbody tr th{
     -webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th{
  background-color: #f7f7f7;
}

thead th:nth-child(2){
    background: #f7f7f7;
}

thead th:nth-child(3){
    background: #eee;
}

thead th:nth-child(4){
    background: #978765;;
}




/*
 * ============================================
 *          T E S T I M O N I A L
 * ============================================
 */

#testimonial-bg{
    background: linear-gradient(
      rgba(0,0,0, 0.3), 
      rgba(0,0,0, 0.3)
    ), url(../images/services-ng.jpg) center 50% fixed;
    background-size: cover;
}

.testi-carousel .owl-item p{
    text-transform: uppercase;
    letter-spacing: 7px;
}
.testi-carousel h3{
    margin-bottom: 20px;
}
.testi-carousel h4{
    font-style: italic;
    line-height: 34px;
}

.testi-carousel .owl-controls{
    margin-top: 20px;
}

.testi-carousel .owl-item img{
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
}

    #testimonial-bg .owl-item img{
	border-color: rgba(255,255,255,0.3)
    }

    @media(max-width: 991px){
	.testi-carousel{
	    
	}
    }


.client-logo figure{
    margin-bottom: 30px;
}
    .client-logo img{
	opacity: 0.5;
    }
	.client-logo img:hover{
	    opacity: 1;
	}

.block-2 > div{
  padding: 10px;
}

.block-2 div.bg{
    padding: 50px 30px;
    margin: 0px;
    background: #fff;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

    .block-2 div.bg h4 span{
	font-weight: 700;
    }
	.block-2 div.bg:hover h4 span{
	    color: #978765;
	}
    
.block-2 h3,
.block-2 h2{
    font-family: Raleway;
    margin-top: 10px;
    color: #222;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.block-2 p{
    color: rgba(0,0,0, 0.9);
    margin-top: 30px;
}

    
/* dark block */

.block-2.block-2-dark div.bg{
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    margin-top: 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
}
    .block-2.block-2-dark .block-content{
	position: relative;
	z-index: 2;
	padding: 50px 20px;
    }
	
	.block-2.block-2-dark .block-content:hover + .bg{
	    margin-top: 0;
	    opacity: 1;
	    visibility: visible;
	    background: rgba(0,0,0,0.7);
	}
	.block-2.block-2-dark .block-content:hover h2{
	    font-size: 24px;
	}
	.block-2.block-2-dark .block-content:hover span{
	    font-size: 36px;
	}
    
    .block-2.block-2-dark h4 span,
    .block-2.block-2-dark p,
    .block-2.block-2-dark h2{
	color: rgba(255,255,255, 1);
    }
    
    .block-2.block-2-dark h2{
	margin-top: 0;
	font-weight: 700;
    }
	
	.block-2.block-2-dark div.bg:hover h2,
	.block-2.block-2-dark div.bg:hover p{
	    color: #fff;
	}



/*
 * ============================================
 *              C O N T A C T S
 * ============================================
 */

#contact button{
    margin-top: 20px;
}

input[type="email"], input[type="password"], input[type="text"] 
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 42px; 
    padding: 0; 
}

.cont-info{
    margin-bottom: 30px;
}
    .cont-info span{
	font-weight: 400;
	color: #303434;
    }
	
	
	
	
/* GOOGLE MAP */	
	
#map{
    width: 100%;
    height: 400px;
    border: none;
}

.map-container{
    height: 100px;
    margin-bottom: 150px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
        -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0.3;
}
    .map-container.enlarge-map{
	height: 400px;
	opacity: 1;
    }
    
#enlarge-map-btn,
#close-map-btn{
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 1;
}
    #enlarge-map-btn span,
    #close-map-btn span{
	font-size: 100px;
	margin-left: -22px;
    }
    
	#enlarge-map-btn:hover,
	#close-map-btn:hover{
	    cursor: pointer;
	}
	
.form-horizontal.contact-form .form-group{
    margin-left: 0;
    margin-right: 0;
    padding-right: 15px;
}

.form-control{
    border-radius:0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 41px;
}
.form-group select{
    -webkit-appearance: none;
    color: #999;
    font-size: 14px;
}

    .form-control:focus {
        -webkit-box-shadow: none;
        -o-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        box-shadow: none;
        background: #fff;
    }
    
    .contact-form input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill{
	background-color: #fff; !important;
    }
    
    .form-control:hover,
    .form-control:focus{
    }
    
#success, #error {
    display: none
}
    #success span.layer-size-1,
    #error span.layer-size-1{
        top: 0px;
	left: 0;
        padding-top: 30%;
        padding-bottom: 70px;
        width: 100%;
        height: 600px;
	display: inline-block;
	position: absolute;
	background-color: rgba(255,255,255,0.8);
    }
    
	#success span.layer-size-1 i,
	#error span.layer-size-1 i{
	    letter-spacing: 1px;
	    font-weight: 300;
	}


/*
 * ============================================
 *              F O O T E R
 * ============================================
 */

#section-footer{
   background: #303434;
   padding: 0;
}
    
    #section-footer .container > section,
    #section-footer > section{
	
	display: inline-block;
	padding: 100px 30px;
    }


#section-footer img{
    margin-top: 100px;
}

    #section-footer .footer-logo-detailed img{
	margin-top: 0;
    }
    #section-footer .footer-logo-detailed span{
	letter-spacing: 5px;
    }
    
	@media(max-width: 767px){
	    #section-footer .footer-logo-detailed span{
		text-align: left;
	    }
	}
	
#section-footer.light-bg{
    background: #f7f7f7;
}

    #section-footer.light-bg h5,
    #section-footer.light-bg a,
    #section-footer.light-bg li,
    #section-footer.light-bg p{
	color: #303434
    }

.footer-social-icons a{
    letter-spacing: 5px;
    color: rgba(255,255,255, 0.7);
    padding: 50px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255, 0.1);
    margin-left: -4px;
}
    .footer-social-icons a:last-child{
	border: none;
    }
    
	.footer-social-icons a:hover{
	    border-top: 1px solid rgba(255,255,255, 0.1);
	    border-bottom: 1px solid rgba(255,255,255, 0.1);
	    text-decoration: none;
	}
	


.footer-gallery ul{
    margin-top: 150px;
    
}
.footer-gallery li{
    padding: 0px;
    
    margin-bottom: 0px;
    list-style: none;
    position: relative;
    height: auto;
}


    .footer-gallery img{
	position: static;
	margin-bottom: -50px;
	
    }
	.footer-gallery img:hover{
	    margin-top: -30px
	}
 

    
    @media(min-width: 1200px){
	
    }
    
    @media(max-width: 991px){

	#section-footer .container > section,
	#section-footer > section{
	    padding: 30px
	}
	#section-footer .container{
	    padding: 50px 0;
	}
    }
    
    
    @media(max-width: 500px){
	
	#section-footer .container > section,
	#section-footer > section{
	    width: 100%;
	}
	#section-footer img{
	    margin-top: 0px;
	}
	
    }


.footer-widget a,
.footer-widget li,
.footer-widget p{
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255,255,255, 0.7);
}
    
.footer-widget h5{
    
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-family: "Open Sans";
    font-size: 12px;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    display: inline-block
    
}


.footer-widget ul{
    padding-left: 0
}

    .footer-widget li{
	list-style: none;
	margin-bottom: 20px;
    }
    
	.footer-widget a:hover{
	    color: #fff;
	}
	
    .footer-widget .phone-number{
	font-family: "Droid Serif";
	font-size: 20px;
	letter-spacing: 3px;
	font-weight: 700
    }
    



/* social widgets */

.widget-social a{
    border: none;
}

    #section-footer .has-bg{
	background: linear-gradient(
		rgba(0,0,0, 0.3), 
		rgba(0,0,0, 0.3)
	      ),url('../images/footer.jpg') no-repeat 50% fixed;
	background-size: cover;
    }
    #section-footer .has-bg-gradient{
	background: linear-gradient(
		rgba(0,0,0, 0.7), 
		rgba(0,0,0, 0.7)
	      ),url('../images/footer.jpg') no-repeat 50% fixed;
	background-size: cover;
    }
    .widget-social li{
	display: inline-block;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0;
	text-transform: uppercase;
    }
	
	.widget-social li i{
	    font-size: 28px;
	    padding: 40px;
	    
	    border: 1px solid transparent;
	    -webkit-transition: all 0.2s;
	    -moz-transition: all 0.2s;
	    -ms-transition: all 0.2s;
	    -o-transition: all 0.2s;
	    transition: all 0.2s;
	}
	
	.widget-social li a{
	    position: relative; 
	}
	    .widget-social li:hover i{
		border-color: #fff;
	    }
	    
		.widget-social li a:before{
		    position: absolute;
		    content: "";
		    height: 30px;
		    width: 1px;
		    background: rgba(255,255,255, 0.5);
		    top: -64px;
		    left: 50%;
		    -webkit-transition: all 0.2s;
		    -moz-transition: all 0.2s;
		    -ms-transition: all 0.2s;
		    -o-transition: all 0.2s;
		    transition: all 0.2s;
		}
		
		.widget-social li a:after{
		    position: absolute;
		    content: "";
		    height: 30px;
		    width: 1px;
		    background: rgba(255,255,255, 0.5);
		    top: 40px;
		    left: 50%;
		    -webkit-transition: all 0.2s;
		    -moz-transition: all 0.2s;
		    -ms-transition: all 0.2s;
		    -o-transition: all 0.2s;
		    transition: all 0.2s;
		}
		
		    .widget-social li a:hover:before{
			left: 40%;
			background: #fff;
		    }
		    .widget-social li a:hover:after{
			left: 60%;
			background: #fff;
		    }
		    
/* copyright */

#section-footer .copyright{
    padding: 40px 0;
    letter-spacing: 7px;
    font-size: 10px;
    text-transform: uppercase;
}

    @media(max-width: 991px){
	.widget-social li{
	    display: inline-block;
	    margin-right: 50px;
	   
	}
	
	.widget-social ul{
	    text-align: center;
	}
	
	#section-footer .copyright{
	    text-align: center;
	    padding-bottom: 0;
	}

    }
    
    @media(max-width: 767px){
	.widget-social li{
	    margin-bottom: 50px;
	    margin-right: 0;
	}
	    
	.widget-social.widget-social-h{
	    text-align: left;
	}
	    .widget-social.widget-social-h li{
		margin-top: 15px;
		margin-bottom: 70px;
	    }
	
    }


/* footer subscribe form */

.footer-subscribe{
    
}
    .input-group input,
    .input-group button{
	height: 40px;
	border-radius: 0;
	-webkit-border-radius: 0;
	margin-top: 30px;
	border: none;
    }
    
    .input-group button{
	background: #978765;
	
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	color: #fff;
	
    }
	.input-group button:hover{
	    color: #303434;
	    background: #978765;
	}
	.input-group button span{
	    font-size: 20px;
	}
	
	    .input-group input:focus,
	    .input-group button:focus{
		box-shadow: none;
		outline: none;
		border-color: transparent;
	    }
	    
	    .input-group input{
		font-size: 12px;
		padding: 20px;
	    }
		.light-bg .input-group input{
		    border: 1px solid #eee;
		}
	    
	    .input-group-btn:last-child>.btn{
		padding-right: 20px;
		padding-left: 20px;
	    }
	    
	@media(max-width: 991px){
	    #section-footer .input-group{
		/*min-height: 200px;*/
	    }
	}

/*
 * ============================================
 *              P L U G I N S
 * ============================================
 */




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

    Pointy Slider

-------------------------------- */
.cd-slider{
    margin-bottom: 0;
}
.cd-slider-wrapper {
  position: relative;
  height: 100vh;
  padding: 10px;
}
@media only screen and (min-width: 900px) {
  .cd-slider-wrapper {
    padding: 30px;
  }
}

.home-slider .cd-slider-wrapper{
    padding: 0;
}

@media(min-width: 900px){
    .home-slider .cd-slider-navigation{
	bottom: -10px
    }
	.home-slider .cd-slider-navigation li{
	    display: block;
	}
	
	.home-slider .cd-slider-navigation li a{
	    transform: rotate(0deg);
	    -webkit-transform: rotate(0deg);
	    -moz-transform: rotate(0deg);
	    -o-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	}
}


/* show after slide load */

.portfolio-grid{
    position: absolute;
    padding: 0;    
}

    .portfolio-grid figure{
	padding: 0;
	opacity: 0;
	right: -100%;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
    }

    .cd-slider li.is-visible .portfolio-grid figure:first-child{
	 -webkit-transition-delay: 0.4s; /* Safari */
	transition-delay: 0.4s;
	opacity: 1;
	right: 0;
    }
    
    .cd-slider li.is-visible .portfolio-grid figure:nth-child(2){
	 -webkit-transition-delay: 0.8s; /* Safari */
	transition-delay: 0.8s;
	opacity: 1;
	right: 0;
    }
    .cd-slider li.is-visible .portfolio-grid figure:nth-child(3){
	 -webkit-transition-delay: 1.2s; /* Safari */
	transition-delay: 1.2s;
	opacity: 1;
	right: 0;
    }
    
    .cd-slider li.is-visible.covered .portfolio-grid figure{
	opacity: 0;
	-webkit-transition-delay: 0s; /* Safari */
	transition-delay: 0s;
	right: -100%;
    }


/* show after slide load - logo */

.cd-slider .slider-logo{
    position: absolute;
    display: table;
    height: 100vh;
}
    .cd-slider .slider-logo > div{
	display: table-cell;
	vertical-align: middle;
    }

    .cd-slider li.is-visible .slider-logo img{
	-webkit-transition-delay: 0.8s; /* Safari */
	transition-delay: 0.8s;
	opacity: 0.7;
	margin-top: 0;
    }
    
    .cd-slider li .slider-logo img{
	margin-top: -100px;
    }

    .cd-slider li.is-visible.covered .slider-logo img{
	opacity: 0;
	margin-top: -100px;
	-webkit-transition-delay: 0s; /* Safari */
	transition-delay: 0s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s
    }


/* show after slide load - services */

.cd-slider .services-list{
    position: absolute;
    padding: 50px 90px;
    display: table;
    height: 100vh;
}
    .cd-slider .services-list > div{
	display: table-cell;
	vertical-align: middle;
    }
     .cd-slider .services-list a{
	padding: 0;
	opacity: 0;
	
	text-transform: uppercase;
	letter-spacing: 10px;
	display: block;
	margin-top: -50px;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 700;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
    }

	.cd-slider .services-list a span{
	    color: #303434;
	    -webkit-transition: all 0.8s;
	    -moz-transition: all 0.8s;
	    -ms-transition: all 0.8s;
	    -o-transition: all 0.8s;
	    transition: all 0.8s;
	}
	    .cd-slider .services-list a:hover span{
	       color: #978765;
	    }
	    
    .cd-slider li.is-visible .services-list a{
	margin-top: 0;
    }

    .cd-slider li.is-visible .services-list a:first-child{
	 -webkit-transition-delay: 0.6s; /* Safari */
	transition-delay: 0.6s;
	opacity: 1;
    }
    
    .cd-slider li.is-visible .services-list a:nth-child(2){
	 -webkit-transition-delay: 1s; /* Safari */
	transition-delay: 1s;
	opacity: 1;
	right: 0;
    }
    .cd-slider li.is-visible .services-list a:nth-child(3){
	 -webkit-transition-delay: 1.4s; /* Safari */
	transition-delay: 1.4s;
	opacity: 1;
    }
    .cd-slider li.is-visible .services-list a:nth-child(4){
	 -webkit-transition-delay: 1.8s; /* Safari */
	transition-delay: 1.8s;
	opacity: 1;
    }

    .cd-slider li.is-visible.covered .services-list a{
	opacity: 0;
	margin-top: -50px;
	-webkit-transition-delay: 0s; /* Safari */
	transition-delay: 0s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
    }
    

    
    
.cd-slider {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  list-style: none;
}
.cd-slider li {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s;
  -moz-transition: -moz-transform 0.6s;
  transition: transform 0.6s;
}
.cd-slider li.is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.cd-slider .cd-half-block {
  height: 50%;
  background-position: center center;
  background-repeat: no-repeat;
}


    @media(max-width: 767px){
	.cd-slider .cd-half-block.content{
	    /*padding: 30px;*/
	}
    }
.cd-slider li:first-of-type .image {
  background-image: url(../images/team-slider-1.jpg);
}
.cd-slider li:nth-of-type(2) .image {
  background-image: url(../images/team-slider-2.jpg);
}
.cd-slider li:nth-of-type(3) .image {
  background-image: url(../images/team-slider-3.jpg);
}
.cd-slider li:nth-of-type(4) .image {
  background-image: url(../images/team-slider-4.jpg);
}


/* index02.html background images */
.home-slider .cd-slider li:first-of-type .image {
  background-image: url(../images/timeline1.jpg);
}
.home-slider .cd-slider li:nth-of-type(2) .image {
  background-image: url(../images/timeline2.jpg);
}
.home-slider .cd-slider li:nth-of-type(3) .image {
  background-image: url(../images/team-slider-4.jpg);
}
.home-slider .cd-slider li:nth-of-type(4) .image {
  background-image: url(../images/map.jpg);
}
.cd-slider .image {
  background-size: cover;
}
.cd-slider .content {
  padding: 30px;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

    .cd-slider .content.light-bg{
	color: #303434;
    }
	.cd-slider .content.dark-bg,
	.cd-slider .content.dark-bg .team-social-icons span,
	.cd-slider .content.color-bg,
	.cd-slider .content.color-bg h3,
	.cd-slider .content.color-bg .team-social-icons span{
	    color: #fff;
	}
	
    .cd-slider .content > div > span{
	text-transform: uppercase;
	letter-spacing: 10px;
	display: block;
	margin-bottom: 30px;
	font-size: 12px;
	font-weight: 700
    }
    
    .cd-slider .content .address td{
	padding: 10px 30px 10px 0;
	border: none;
	border-bottom: 1px solid rgba(255,255,255, 0.1);
	vertical-align: top;
	font-size: 14px;
    }
    .address td i{
	color: #978765;
	font-size: 16px;
    }
	
	.cd-slider .content .address a{
	    color: #fff;
	}
	    .cd-slider .content .address a:hover,
	    .cd-slider .content .address a:hover span{
		color: #978765
	    }
	
.slider-map-container{
    position: absolute;
    height: 100vh;
    padding: 0;
    opacity: 0;
    right: -100%;
        -webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
}
    .slider-map-container #map{
	height: 100vh;
    }

    .cd-slider li.is-visible .slider-map-container{
	 -webkit-transition-delay: 0.4s; /* Safari */
	transition-delay: 0.4s;
	opacity: 0.7;
	right: 0;
    }
	.cd-slider li.is-visible .slider-map-container:hover{
	    opacity: 1;
	}
	
    .cd-slider li.is-visible.covered .slider-map-container{
	opacity: 0;
	-webkit-transition-delay: 0s; /* Safari */
	transition-delay: 0s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	right: -100%;
    }
    
    @media(max-width: 899px){
	.cd-slider .services-list,
	.cd-slider .portfolio-grid,
	.cd-slider .slider-logo,
	.cd-slider .slider-map-container{
	    display: none;
	}
    }
    
    @media(max-width: 991px){
	.cd-slider .services-list{
	    padding: 50px;
	}
    }
    
    @media(max-width: 767px){
	.cd-slider .content{
	    /*padding: 70px 30px;*/
	}
    }
 
.team-social-icons{
   margin-top: 30px;
}
    .team-social-icons span{
	margin-right: 20px;
	font-size: 16px;
    }
    
    @media(max-width: 500px){
	.cd-slider .content > div > span{
	    letter-spacing: 5px;
	    margin-bottom: 10px;
	}
	.cd-slider .content h3{
	    font-size: 28px;
	}
	
    }
.cd-slider .btn {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  padding: 1em 1.6em;
  margin-top: 1em;
  font-size: 1.3rem;
  color: #ffffff;
  border-radius: 50em;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.no-touch .cd-slider .btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.cd-slider h2 {
  /*font-size: 2.2rem;*/
  margin-bottom: .4em;
}
.cd-slider p {
  /*font-size: 1.4rem;*/
}
.cd-slider h2, .cd-slider p {
  /*line-height: 1.4;*/
}
@media only screen and (min-width: 900px) {
  .cd-slider li {
    pointer-events: none;
    z-index: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: z-index 0s 0.6s;
    -moz-transition: z-index 0s 0.6s;
    transition: z-index 0s 0.6s;
  }
  .cd-slider li.is-visible {
    pointer-events: auto;
    z-index: 3;
    -webkit-transition: z-index 0s 0s;
    -moz-transition: z-index 0s 0s;
    transition: z-index 0s 0s;
  }
  .cd-slider li.is-visible.covered {
    /* list item still there, but covered by the list item entering the viewport (.is-visible) */
    z-index: 2;
  }
  .cd-slider .cd-half-block {
    height: 100%;
    width: 50%;
    float: right;
  }
  .cd-slider .cd-half-block.content {
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
    transform: translateX(200%);
    -webkit-transition: -webkit-transform 0.6s 0s ease-in-out;
    -moz-transition: -moz-transform 0.6s 0s ease-in-out;
    transition: transform 0.6s 0s ease-in-out;
  }
  .cd-slider .cd-half-block.image {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0s 0.3s;
    -moz-transition: -moz-transform 0s 0.3s;
    transition: transform 0s 0.3s;
  }
  .cd-slider li.is-visible .cd-half-block.content,
  .cd-slider li.is-visible .cd-half-block.image {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  .cd-slider li.is-visible .cd-half-block.content {
    -webkit-transition: -webkit-transform 0.6s 0s ease-in-out;
    -moz-transition: -moz-transform 0.6s 0s ease-in-out;
    transition: transform 0.6s 0s ease-in-out;
  }
  .cd-slider .content {
    /* vertically align its content */
    display: table;
    padding: 0 40px;
  }
  .cd-slider .content > div {
    /* vertically align <div> inside div.content */
    display: table-cell;
    vertical-align: middle;
  }
  .cd-slider .btn {
    padding: 1.4em 2em;
    font-size: 1.4rem;
  }
  .cd-slider p {
    /*font-size: 1.6rem;*/
  }
  .cd-slider h2 {
    /*font-size: 3.5rem;*/
    margin-bottom: 0;
  }
  .cd-slider h2, .cd-slider p {
    /*line-height: 2;*/
  }
}
@media only screen and (min-width: 1170px) {
  .cd-slider .content {
    padding: 0 90px;
  }
  .cd-slider h2 {
    /*font-weight: 300;*/
  }
}

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

Slider Navigation

-------------------------------- */
.cd-slider-navigation {
  /* you won't see this element in the html but it will be created using jQuery */
  position: absolute;
  z-index: 3;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
    font-family: "Droid Serif";
}
.cd-slider-navigation li {
  display: inline-block;
  margin: 0 .25em;
}
.cd-slider-navigation li.selected a {
  background-color: #fff;
}
.cd-slider-navigation a {
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  color: transparent;
  /* image replacement */
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  border: 1px solid #fff;
}


@media only screen and (min-width: 900px) {
  .cd-slider-navigation {
    padding: 0.5em 1em;
    background-color: rgba(0, 0, 0, 0.8);
    /* fixes a bug on Firefox with ul.cd-slider-navigation z-index */
    -webkit-transform: translateZ(2px) translateX(-50%);
    -moz-transform: translateZ(2px) translateX(-50%);
    -ms-transform: translateZ(2px) translateX(-50%);
    -o-transform: translateZ(2px) translateX(-50%);
    transform: translateZ(2px) translateX(-50%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-slider-navigation.slider-animating {
    /* fixes a bug on Firefox with ul.cd-slider-navigation z-index */
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  .cd-slider-navigation a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    /* reset style */
    text-indent: 0;
    border: none;
    border-radius: 0;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
  }
  .cd-slider-navigation li.selected a {
    background-color: transparent;
    color: #978765;
    font-size: 34px;
    font-weight: 700;
    
  }
}

@media(max-width: 899px){
    
    .cd-slider-navigation li{
	margin: 10px;
    }
	.cd-slider-navigation li a{
	    border-radius: 0;
	    height: 30px;
	    width: 3px;
	    background: #303434;
	    border-color: #303434
	}
	    
	    .cd-slider-navigation li.selected a{
		height: 70px;
		background: #303434;
	    }
	    
	.light-nav .cd-slider-navigation li a,
	.light-nav .cd-slider-navigation li.selected a{
	    background: #fff;
	    border-color: #fff;
	}
	
}

@media(max-width: 899px){
    .cd-slider-navigation{
	bottom: 50%;
	margin-left: -15px;
    }
}

@media(max-width: 767px){
    .cd-slider p{
	font-size: 12px;
	line-height: 1.4;
	margin-bottom: 0;
    }
}

@media(max-width: 480px){
    .cd-slider p{
	display: none;
    }
}





/**
 * fullPage 2.6.4
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow:hidden;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#superContainer {
    height: 100%;
    position: relative;

    /* Touch detection for Windows 8 */
    -ms-touch-action: none;

    /* IE 11 on Windows Phone 8.1*/
    touch-action: none;
}
.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}

.fp-auto-height.fp-section, .fp-auto-height .fp-slide, .fp-auto-height .fp-tableCell{
        height: auto !important;
}

.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #303434 transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #303434;
}

    .no-arrows .fp-controlArrow{
	display: none;
    }
    
.nav-colored .fp-controlArrow.fp-prev{
    border-color: transparent #FF634E transparent transparent;
}

.nav-colored .fp-controlArrow.fp-next{
    border-color: transparent transparent transparent #FF634E;
}

.nav-transparent .fp-controlArrow.fp-prev{
    border-color: transparent rgba(255,255,255, 0.3) transparent transparent;
}
.nav-transparent .fp-controlArrow.fp-next{
    border-color: transparent transparent transparent rgba(255,255,255, 0.3);
}

.no-dots .fp-slidesNav{
   display: none;
}

@media(max-width: 767px){
    .fp-controlArrow.fp-prev{
	left: 0;
    }
    .fp-controlArrow.fp-next {
	right: 0;
    
    }
}



.fp-scrollable {
    overflow: scroll;
}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav.right {
    right: 17px;
}
#fp-nav.left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.fp-slidesNav.bottom {

    bottom: 50px
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span{
    /*height: 12px;*/
    /*width: 12px;*/
    background: #303434;
	    height: 70px;
	    
    margin: -42px 0 0 -2px
    /*border-radius: 100%;*/
 }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    /*border-radius: 50%;*/
    position: absolute;
    z-index: 1;
    /*height: 4px;*/
    /*width: 4px;*/
    border: 0;
    /*background: #333;*/
    border: 1px #303434 solid;
	background: #303434;
	width: 3px;
	height: 30px;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span{
    /*width: 10px;*/
    /*height: 10px;*/
/*    background: #303434;*/
/*	    height: 70px;*/
    /*margin: -5px 0px 0px -5px;*/
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -3px;
    color: #444;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip,
#fp-nav a.active + .fp-tooltip{
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}



/* JCAROUSEL Plugin */

.jcarousel-wrapper {
    position: relative;
    margin-top: 30px;
}

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: inline-block;
}
    .jcarousel ul {
        width: 23034340em;
        position: relative;
        list-style: none;
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .jcarousel li {
        float: left;
        padding: 5px;
    }
    
    .jcarousel figure img {
        display: block;
        height: auto !important;
    }

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 0;
    margin-top: 0px;
    width: 65px;
    height: 60px;
    text-align: center;
    background: #fff;
    text-decoration: none;
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    z-index: 100;
    color: #303434;
    padding-top: 20px;
}

    .jcarousel-control-prev:hover,
    .jcarousel-control-prev:focus,
    .jcarousel-control-next:hover,
    .jcarousel-control-next:focus{
        background: #fff;
        color: #303434;
        text-decoration: none;
	letter-spacing: 3px;
    }
    
        .jcarousel-control-prev i,
        .jcarousel-control-next i{
            padding-top: 8px;
            color: #303434;
        }
        
            .jcarousel-control-prev:hover i,
            .jcarousel-control-next:hover i{
                color: #fff;
            }

.jcarousel-control-prev {
    left: 54%;
} 

.jcarousel-control-next {
    left: 59%;
}



@media(max-width: 991px){
    .jcarousel-control-prev {
	left: 80%;
    }
    .jcarousel-control-next {
	left: 89%;
    }
    .item-container figure{
	padding: 0;
    }
}

@media(max-width: 767px){
    .jcarousel-control-prev {
	left: 79%;
    }
    .jcarousel-control-next {
	left: 88%;
    }
}
@media(max-width: 500px){
    .jcarousel-control-prev {
	left: 67%;
    }
    .jcarousel-control-next {
	left: 81%;
    }
    
    .jcarousel-wrapper{
	padding: 0;
    }
}


/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    display: inline-block;
    top: 100px;
    right: 10%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}

.jcarousel-pagination a {
    display: block;
    padding: 10px;
    margin-bottom: 5px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    color: transparent;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-decoration: none;
}

    .jcarousel-pagination a.active{
        padding: 10px 20px;
        color: rgba(0,0,0,0.9);
        background: rgba(255,255,255,0.4);
        font-size: 90px;
    }
    
    .jcarousel-pagination a:hover,
    .jcarousel-pagination a:focus{
   
    }
    
    @media(max-width: 1200px){
        .jcarousel-pagination{
          right: 3%;
        }
    }
    @media(max-width: 991px){
        .jcarousel-pagination{
          right: 2%;
        }
        .jcarousel-pagination a{
          padding: 5px;
        }
        .jcarousel-pagination a.active{
          font-size: 50px;
        }
    }
    
    @media(max-width: 767px){
        .jcarousel-pagination{
            right: 3%;
            top: 70px;
        }
    }
    @media(max-width: 700px){
      
      .jcarousel-pagination{
          right: 3%;
	  top: 25%;
      }
      .jcarousel-pagination a{
        padding: 3px;
        
      }
      .jcarousel-pagination a.active{
          font-size: 20px;
      }
    }
    
    @media(max-width: 480px){
        .jcarousel-pagination{
          right: 2%;
         }
        .jcarousel-pagination a{
          padding: 5px;
        }
        .jcarousel-pagination a.active{
          font-size: 0;
          padding: 5px;
          color: transparent;
        }
    }

/* END OF JCAROUSEL */


/* 
 *  Owl Carousel - Animate Plugin
 */


.owl-carousel .animated {
  -webkit-animation-duration: 1303434ms;
  animation-duration: 1303434ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  /*width: 100%;*/
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  /*overflow-y: hidden;*/ /*inner scrolling*/
  overflow: hidden;
  height: auto;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
    
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-item.active{
    /*border: 1px solid #eee;*/
   
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #303434;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
} 
  

/* ISOTOPE PLUGIN */

.isotope-item {
    z-index: 2;
}
  
.isotope-hidden.isotope-item {
    z-index: 1;
}
  
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
     -ms-transition-duration: 0.8s;
     -o-transition-duration: 0.8s;
        transition-duration: 0.8s;
  }
  
.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
     -ms-transition-property: height, width;
     -o-transition-property: height, width;
          transition-property: height, width;
}
  
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
     -ms-transition-property:    -ms-transform, opacity;
     -o-transition-property:    -o-transform, opacity;
          transition-property:         transform, opacity;
}



/* -- LIGHTBOX --
 * =====================================================================
 */


.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #303434;
  opacity: 0.9;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 13034340;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  width: 250px;
  height: 250px;
  margin: 0 auto;

}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container {
  padding: 4px;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/img/prev.png) left 48% no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-prev:focus{
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/img/next.png) right 48% no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover,
.lb-nav a.lb-next:focus{
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
  margin-top: 30px;
}

.lb-data .lb-caption {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #fff;
  margin-top: 30px;
}

.lb-data .lb-close {
  display: block;
  float: right;
  margin-top: 30px;
  width: 30px;
  height: 30px;
  background: url(../images/img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover,
.lb-data .lb-close:focus{
  cursor: pointer;
  opacity: 1;
}

/* TEXT ROTATOR */

.rotating {
  display: inline-block;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
  -moz-transform: rotateX(0) rotateY(0) rotateZ(0);
  -ms-transform: rotateX(0) rotateY(0) rotateZ(0);
  -o-transform: rotateX(0) rotateY(0) rotateZ(0);
  transform: rotateX(0) rotateY(0) rotateZ(0);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin-x: 50%;
}

.rotating.flip {
  position: relative;
}

.rotating .front, .rotating .back {
  left: 0;
  top: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.rotating .front {
  position: absolute;
  display: inline-block;
  -webkit-transform: translate3d(0,0,1px);
  -moz-transform: translate3d(0,0,1px);
  -ms-transform: translate3d(0,0,1px);
  -o-transform: translate3d(0,0,1px);
  transform: translate3d(0,0,1px);
}

.rotating.flip .front {
  z-index: 1;
}

.rotating .back {
  display: block;
  opacity: 0;
}

.rotating.spin {
  -webkit-transform: rotate(360deg) scale(0);
  -moz-transform: rotate(360deg) scale(0);
  -ms-transform: rotate(360deg) scale(0);
  -o-transform: rotate(360deg) scale(0);
  transform: rotate(360deg) scale(0);
}



.rotating.flip .back {
  z-index: 2;
  display: block;
  opacity: 1;
  
  -webkit-transform: rotateY(180deg) translate3d(0,0,0);
  -moz-transform: rotateY(180deg) translate3d(0,0,0);
  -ms-transform: rotateY(180deg) translate3d(0,0,0);
  -o-transform: rotateY(180deg) translate3d(0,0,0);
  transform: rotateY(180deg) translate3d(0,0,0);
}

.rotating.flip.up .back {
  -webkit-transform: rotateX(180deg) translate3d(0,0,0);
  -moz-transform: rotateX(180deg) translate3d(0,0,0);
  -ms-transform: rotateX(180deg) translate3d(0,0,0);
  -o-transform: rotateX(180deg) translate3d(0,0,0);
  transform: rotateX(180deg) translate3d(0,0,0);
}

.rotating.flip.cube .front {
  -webkit-transform: translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: translate3d(0,0,100px) scale(0.85,0.85);
  transform: translate3d(0,0,100px) scale(0.85,0.85);
}

.rotating.flip.cube .back {
  -webkit-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
}

.rotating.flip.cube.up .back {
  -webkit-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
}



/* LINEARICONS */


@font-face {
	font-family: 'Linearicons-Free';
	src:url('../fonts/Linearicons-Free.eot?w118d');
	src:url('../fonts/Linearicons-Free.eot?#iefixw118d') format('embedded-opentype'),
		url('../fonts/Linearicons-Free.woff2?w118d') format('woff2'),
		url('../fonts/Linearicons-Free.woff?w118d') format('woff'),
		url('../fonts/Linearicons-Free.ttf?w118d') format('truetype'),
		url('../fonts/Linearicons-Free.svg?w118d#Linearicons-Free') format('svg');
	font-weight: normal;
	font-style: normal;
}

.lnr {
	font-family: 'Linearicons-Free';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.lnr-home:before {
	content: "\e800";
}
.lnr-apartment:before {
	content: "\e801";
}
.lnr-pencil:before {
	content: "\e802";
}
.lnr-magic-wand:before {
	content: "\e803";
}
.lnr-drop:before {
	content: "\e804";
}
.lnr-lighter:before {
	content: "\e805";
}
.lnr-poop:before {
	content: "\e806";
}
.lnr-sun:before {
	content: "\e807";
}
.lnr-moon:before {
	content: "\e808";
}
.lnr-cloud:before {
	content: "\e809";
}
.lnr-cloud-upload:before {
	content: "\e80a";
}
.lnr-cloud-download:before {
	content: "\e80b";
}
.lnr-cloud-sync:before {
	content: "\e80c";
}
.lnr-cloud-check:before {
	content: "\e80d";
}
.lnr-database:before {
	content: "\e80e";
}
.lnr-lock:before {
	content: "\e80f";
}
.lnr-cog:before {
	content: "\e810";
}
.lnr-trash:before {
	content: "\e811";
}
.lnr-dice:before {
	content: "\e812";
}
.lnr-heart:before {
	content: "\e813";
}
.lnr-star:before {
	content: "\e814";
}
.lnr-star-half:before {
	content: "\e815";
}
.lnr-star-empty:before {
	content: "\e816";
}
.lnr-flag:before {
	content: "\e817";
}
.lnr-envelope:before {
	content: "\e818";
}
.lnr-paperclip:before {
	content: "\e819";
}
.lnr-inbox:before {
	content: "\e81a";
}
.lnr-eye:before {
	content: "\e81b";
}
.lnr-printer:before {
	content: "\e81c";
}
.lnr-file-empty:before {
	content: "\e81d";
}
.lnr-file-add:before {
	content: "\e81e";
}
.lnr-enter:before {
	content: "\e81f";
}
.lnr-exit:before {
	content: "\e820";
}
.lnr-graduation-hat:before {
	content: "\e821";
}
.lnr-license:before {
	content: "\e822";
}
.lnr-music-note:before {
	content: "\e823";
}
.lnr-film-play:before {
	content: "\e824";
}
.lnr-camera-video:before {
	content: "\e825";
}
.lnr-camera:before {
	content: "\e826";
}
.lnr-picture:before {
	content: "\e827";
}
.lnr-book:before {
	content: "\e828";
}
.lnr-bookmark:before {
	content: "\e829";
}
.lnr-user:before {
	content: "\e82a";
}
.lnr-users:before {
	content: "\e82b";
}
.lnr-shirt:before {
	content: "\e82c";
}
.lnr-store:before {
	content: "\e82d";
}
.lnr-cart:before {
	content: "\e82e";
}
.lnr-tag:before {
	content: "\e82f";
}
.lnr-phone-handset:before {
	content: "\e830";
}
.lnr-phone:before {
	content: "\e831";
}
.lnr-pushpin:before {
	content: "\e832";
}
.lnr-map-marker:before {
	content: "\e833";
}
.lnr-map:before {
	content: "\e834";
}
.lnr-location:before {
	content: "\e835";
}
.lnr-calendar-full:before {
	content: "\e836";
}
.lnr-keyboard:before {
	content: "\e837";
}
.lnr-spell-check:before {
	content: "\e838";
}
.lnr-screen:before {
	content: "\e839";
}
.lnr-smartphone:before {
	content: "\e83a";
}
.lnr-tablet:before {
	content: "\e83b";
}
.lnr-laptop:before {
	content: "\e83c";
}
.lnr-laptop-phone:before {
	content: "\e83d";
}
.lnr-power-switch:before {
	content: "\e83e";
}
.lnr-bubble:before {
	content: "\e83f";
}
.lnr-heart-pulse:before {
	content: "\e840";
}
.lnr-construction:before {
	content: "\e841";
}
.lnr-pie-chart:before {
	content: "\e842";
}
.lnr-chart-bars:before {
	content: "\e843";
}
.lnr-gift:before {
	content: "\e844";
}
.lnr-diamond:before {
	content: "\e845";
}
.lnr-linearicons:before {
	content: "\e846";
}
.lnr-dinner:before {
	content: "\e847";
}
.lnr-coffee-cup:before {
	content: "\e848";
}
.lnr-leaf:before {
	content: "\e849";
}
.lnr-paw:before {
	content: "\e84a";
}
.lnr-rocket:before {
	content: "\e84b";
}
.lnr-briefcase:before {
	content: "\e84c";
}
.lnr-bus:before {
	content: "\e84d";
}
.lnr-car:before {
	content: "\e84e";
}
.lnr-train:before {
	content: "\e84f";
}
.lnr-bicycle:before {
	content: "\e850";
}
.lnr-wheelchair:before {
	content: "\e851";
}
.lnr-select:before {
	content: "\e852";
}
.lnr-earth:before {
	content: "\e853";
}
.lnr-smile:before {
	content: "\e854";
}
.lnr-sad:before {
	content: "\e855";
}
.lnr-neutral:before {
	content: "\e856";
}
.lnr-mustache:before {
	content: "\e857";
}
.lnr-alarm:before {
	content: "\e858";
}
.lnr-bullhorn:before {
	content: "\e859";
}
.lnr-volume-high:before {
	content: "\e85a";
}
.lnr-volume-medium:before {
	content: "\e85b";
}
.lnr-volume-low:before {
	content: "\e85c";
}
.lnr-volume:before {
	content: "\e85d";
}
.lnr-mic:before {
	content: "\e85e";
}
.lnr-hourglass:before {
	content: "\e85f";
}
.lnr-undo:before {
	content: "\e860";
}
.lnr-redo:before {
	content: "\e861";
}
.lnr-sync:before {
	content: "\e862";
}
.lnr-history:before {
	content: "\e863";
}
.lnr-clock:before {
	content: "\e864";
}
.lnr-download:before {
	content: "\e865";
}
.lnr-upload:before {
	content: "\e866";
}
.lnr-enter-down:before {
	content: "\e867";
}
.lnr-exit-up:before {
	content: "\e868";
}
.lnr-bug:before {
	content: "\e869";
}
.lnr-code:before {
	content: "\e86a";
}
.lnr-link:before {
	content: "\e86b";
}
.lnr-unlink:before {
	content: "\e86c";
}
.lnr-thumbs-up:before {
	content: "\e86d";
}
.lnr-thumbs-down:before {
	content: "\e86e";
}
.lnr-magnifier:before {
	content: "\e86f";
}
.lnr-cross:before {
	content: "\e870";
}
.lnr-menu:before {
	content: "\e871";
}
.lnr-list:before {
	content: "\e872";
}
.lnr-chevron-up:before {
	content: "\e873";
}
.lnr-chevron-down:before {
	content: "\e874";
}
.lnr-chevron-left:before {
	content: "\e875";
}
.lnr-chevron-right:before {
	content: "\e876";
}
.lnr-arrow-up:before {
	content: "\e877";
}
.lnr-arrow-down:before {
	content: "\e878";
}
.lnr-arrow-left:before {
	content: "\e879";
}
.lnr-arrow-right:before {
	content: "\e87a";
}
.lnr-move:before {
	content: "\e87b";
}
.lnr-warning:before {
	content: "\e87c";
}
.lnr-question-circle:before {
	content: "\e87d";
}
.lnr-menu-circle:before {
	content: "\e87e";
}
.lnr-checkmark-circle:before {
	content: "\e87f";
}
.lnr-cross-circle:before {
	content: "\e880";
}
.lnr-plus-circle:before {
	content: "\e881";
}
.lnr-circle-minus:before {
	content: "\e882";
}
.lnr-arrow-up-circle:before {
	content: "\e883";
}
.lnr-arrow-down-circle:before {
	content: "\e884";
}
.lnr-arrow-left-circle:before {
	content: "\e885";
}
.lnr-arrow-right-circle:before {
	content: "\e886";
}
.lnr-chevron-up-circle:before {
	content: "\e887";
}
.lnr-chevron-down-circle:before {
	content: "\e888";
}
.lnr-chevron-left-circle:before {
	content: "\e889";
}
.lnr-chevron-right-circle:before {
	content: "\e88a";
}
.lnr-crop:before {
	content: "\e88b";
}
.lnr-frame-expand:before {
	content: "\e88c";
}
.lnr-frame-contract:before {
	content: "\e88d";
}
.lnr-layers:before {
	content: "\e88e";
}
.lnr-funnel:before {
	content: "\e88f";
}
.lnr-text-format:before {
	content: "\e890";
}
.lnr-text-format-remove:before {
	content: "\e891";
}
.lnr-text-size:before {
	content: "\e892";
}
.lnr-bold:before {
	content: "\e893";
}
.lnr-italic:before {
	content: "\e894";
}
.lnr-underline:before {
	content: "\e895";
}
.lnr-strikethrough:before {
	content: "\e896";
}
.lnr-highlight:before {
	content: "\e897";
}
.lnr-text-align-left:before {
	content: "\e898";
}
.lnr-text-align-center:before {
	content: "\e899";
}
.lnr-text-align-right:before {
	content: "\e89a";
}
.lnr-text-align-justify:before {
	content: "\e89b";
}
.lnr-line-spacing:before {
	content: "\e89c";
}
.lnr-indent-increase:before {
	content: "\e89d";
}
.lnr-indent-decrease:before {
	content: "\e89e";
}
.lnr-pilcrow:before {
	content: "\e89f";
}
.lnr-direction-ltr:before {
	content: "\e8a0";
}
.lnr-direction-rtl:before {
	content: "\e8a1";
}
.lnr-page-break:before {
	content: "\e8a2";
}
.lnr-sort-alpha-asc:before {
	content: "\e8a3";
}
.lnr-sort-amount-asc:before {
	content: "\e8a4";
}
.lnr-hand:before {
	content: "\e8a5";
}
.lnr-pointer-up:before {
	content: "\e8a6";
}
.lnr-pointer-right:before {
	content: "\e8a7";
}
.lnr-pointer-down:before {
	content: "\e8a8";
}
.lnr-pointer-left:before {
	content: "\e8a9";
}


/* FONT AWESOME START */


/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.6.3');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f303434";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}


/* FONT AWESOME END */



/* DEMO STYLES */

.demo-header{
    position: relative;
    padding-top: 30%;
    padding-bottom: 30%;
    background: url('../images/hero-default.png') no-repeat fixed 50%;
    background-size: cover;
    background-position: center;
    /* background: #978765; */
    color: #fff;
    text-align: center;
}
    .demo-header p{
	letter-spacing: 10px;
	font-size: 20px;
	text-transform: uppercase;
    }
      

#demo div{
    padding: 10px;
}

#demo img{
  border: 10px solid #303434;
  margin-bottom: 30px;
   -webkit-transition: opacity 0.4s;
        -ms-transition: opacity 0.4s;
        -moz-transition:  opacity 0.4s;
        -o-transition:  opacity 0.4s;
        transition:  opacity 0.4s;
}
  #demo img:hover{
    opacity: 0.8;
  }

#demo h4{
  color: #333;
  padding: 5px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 0;
  
}
  
#demo span{
    letter-spacing: 3px;
}
  
.demo-intro h4{
    color: #999;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 0px;
    font-size: 12px;
}
    .demo-intro h4 strong{
	color: #303434;
    }
    
#demo .container{
}
   



