/**
 * Table of Contents:
 *
 * General
 * 	- Typography
 * Header
 * 	- Main Navigation
 * Sections
 * 	- Home
 * 	- Petition
 * 	- Letter
 * 	- Updates
 * 	- Supporters
 * 	- Sign it
 * Footer
 *
 */
 
 
/**
 * General
 * -----------------------------------------------------------------------------
 */
 
html,
body{
	/*height: 100%;*/
	color: #565656;
	width: 100%;
    /*clear: both;*/
    overflow-x: hidden;
    /*display: inline-block;*/
}
body{
    position: relative
}
a{
	-webkit-transition: all 200ms ease-in;
	-moz-transition: all 200ms ease-in;
	-ms-transition: all 200ms ease-in;
	-o-transition: all 200ms ease-in;
	transition: all 200ms ease-in;
	outline: none;
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
img{
	max-width: 100%;
	height: auto;
}
h1,
h2,
h3,
h4,
h6{
	color: #565656;
}
h5{
	color: #565656;
}


/**
 * General > Typography
 * -----------------------------------------------------------------------------
 */


html{
	font-size: 62.5%;
	font-weight: 300;
}
body{
	font-size: 1.6rem;
	 font-family: "Roboto", sans-serif;
}
p, li, span, div{
	font-size: 1.4rem;
	line-height: 1.8;
}
.lead{
	font-size: 1.8rem;
	margin: 2.8rem 0;
}
h1{
	font-size: 3.6rem;
	line-height: 1.2;
	font-weight: bold;
}
h2{
	font-size: 3.0rem;
	line-height: 1.2;
	font-weight: bold;
}
h3{
	font-size: 2.4rem;
	line-height: 1.2;
	font-weight: bold;
}
h4{
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: bold;
}
h5{
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: bold;
}
h6{
	font-size: 1.4rem;
	line-height: 1.2;
	font-weight: bold;
}
p, h1, h2, h3, h4, h5, h6, blockquote, ul{
	margin: 2.8rem 0 1.4rem;
}
ul.list-unstyled li{
	margin-bottom: 1.4rem;
}
dl dt{
	margin-top: 1.4rem;
}
dl dt:first-of-type{
	margin-top: 0;
}
h1 small, 
h2 small,
h3 small{
	font-size: 50%;
	font-weight: normal;
}
h4 small{
	font-size: 65%;
}
h5 small,
h6 small{
	font-size: 75%;
}
h1,
h2,
h3,
h4,
h5,
h6{
	
	font-family: "Roboto", sans-serif;
	position: relative;
}
#content h1.text-center,
#content h2.text-center,
#content h3.text-center,
#content h4.text-center,
#content h5.text-center,
#content h6.text-center{
	margin-bottom: 6.2rem;
}
#content h1.text-center::after,
#content h2.text-center::after,
#content h3.text-center::after,
#content h4.text-center::after,
#content h5.text-center::after,
#content h6.text-center::after{
	content: '';
	display: block;
	position: absolute;
	width: 6rem;
	border-bottom: .3rem solid #BE3A31;
	margin-top: 1.2rem;
	margin-left: -3rem;
	left: 50%;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small{
	display: block;
	opacity: 0.8;
	line-height: 1.2;
}
h1 .center-block,
h2 .center-block,
h3 .center-block,
h4 .center-block,
h5 .center-block,
h6 .center-block{
	display: block;
	margin: 0 auto;
	line-height: 1.4;
}
#content p{
	line-height: 1.8;
}
@media (max-width:767px) {
	html{
		font-size: 75%;
	}
	h1{
		font-size: 3.6rem;
	}
	h2{
		font-size: 3.0rem;
	}
	h3{
		font-size: 2.4rem;
	}
	h4{
		font-size: 1.8rem;
	}
	h5{
		font-size: 1.6rem;
	}
	h6{
		font-size: 1.4rem;
	}
	blockquote{
		padding-left: 4.2rem;
	}
}


/**
 * Header
 * -----------------------------------------------------------------------------
 */

#header{
	color: #fff;
	position: fixed;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
 

 #main-nav{
	 background: rgba(255, 255, 255, .9);
	 border: none;
	 border-radius: 0;
	 position: relative;
	 z-index: 3;
	 width: 100%;
	 font-family: "Roboto", sans-serif;
 }
 #logo{
	 margin: 17px 0 18px;
	 line-height: 1;
	 float: left;
	 -webkit-transition: none;
	 -moz-transition: none;
	 -ms-transition: none;
	 -o-transition: none;
	 transition: none;
	 font-weight: bold;
	 color: #D44234;
	 font-size: 2rem;
	 letter-spacing: -1px;
 }
 #logo img{
	 -webkit-transition: none;
	 -moz-transition: none;
	 -ms-transition: none;
	 -o-transition: none;
	 transition: none;
 }
 .toggle-nav-label,
 .toggle-nav-input{
	 display: none;
	 padding: 0;
	 margin: 0;
 }
 .toggle-nav-label{
	 float: right;
	 color: #3b3b3b;
	 line-height: 100px;
 }
 
 #main-nav .menu{
	 list-style: none;
	 float: right;
	 margin: 0;
	 padding: 0;
 }
 #main-nav .menu > .menu-item{
	 display: block;
	 position: relative;
	 float: left;
	 margin-left: 30px;
 }
 #main-nav .menu > .menu-item:first-of-type{
	 margin-left: 0;
 }
 #main-nav .menu > .menu-item > a{
	 height: 100%;
	 height: 80px;
	 line-height: 80px;
	 display: block;
	 color: #3b3b3b;
	 text-decoration: none;
	 -webkit-transition: color 200ms ease-in;
	 -moz-transition: color 200ms ease-in;
	 -ms-transition: color 200ms ease-in;
	 -o-transition: color 200ms ease-in;
	 transition: color 200ms ease-in;
	 font-size: 1.4rem;
	 text-shadow: 1px 1px #fff;
	 font-weight: 500;
	 padding: 0;
	 font-weight: bold;
 }
 #main-nav .menu > .menu-item:hover > a{
	 color: #9c9c9c;
	 background: none;
 }
 #main-nav .menu > .active > a{
	 color: #D44234 !important;
	 border-bottom: 3px solid #D44234;
	 height: 60px;
 }
 
 .mobile-photo-site-nav{
 display: none ;
 width:100%;
 margin: 0 10px;
 }
 
 
 .photo-site-nav{
     display: block;
 width:100%;
 margin: 0 10px;
 }
 
 
/**
 * Content
 * -----------------------------------------------------------------------------
 */

#content{
	box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.15);
	position: relative;
}
#content img{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#content div > :first-child,
#content aside > :first-child{
	margin-top: 0;
}
#content div > :last-child,
#content aside > :last-child{
	margin-bottom: 0;
}
.content-padding{
	padding-bottom: 5.6rem;
	padding-top: 5.6rem;
}
.content-padding-none{
	padding-bottom: 0;
	padding-top: 0;
}
.content-padding-xs{
	padding-bottom: 3.2rem;
	padding-top: 3.2rem;
}
.content-padding-lg{
	padding-bottom: 9.8rem;
	padding-top: 9.8rem;
}
.content-padding-xl{
	padding-bottom: 14rem;
	padding-top: 14rem;
}
.content-padding-xxl{
	padding-bottom: 15.4rem;
	padding-top: 15.4rem;
}
.padding-bottom-none{
	padding-bottom: 0;
}
#gallery li{
	float: left;
	width: 25%;
	list-style: none;
	display: inline-block;
}
#gallery img{
	width: 100%;
	height: auto;
}
.size-25{
	width: 25%;
}
.size-50{
	width: 50%;
}
.size-75{
	width: 75%;
}
.animated{
	opacity: 0;
}
.form-control{
	font-family: "Roboto", sans-serif;
	box-shadow: none;
	-webkit-appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
cite{
	font-weight: bold;
	text-transform: uppercase;
	display: block;
}
.btn-primary{
	background-color: #d6412d;
	border-color: #d6412d;
	-webkit-border-radius: 300px;
	-moz-border-radius: 300px;
	border-radius: 300px;
	font-weight: bold;
	-webkit-box-shadow: 0px 3px 0px 0px rgba(182,52,36,1);
	-moz-box-shadow: 0px 3px 0px 0px rgba(182,52,36,1);
	box-shadow: 0px 3px 0px 0px rgba(182,52,36,1);
}
.btn-primary:hover{
	background-color: #b63424;
	border-color: #b63424;
}
.btn-lg{
	line-height: 1;
	padding: 1.5rem 4rem;
}
.section-title{
	font-weight: bold;
	text-align: center;
	display: inline-block;
	position: relative;
}
.section-title::before{
	content: '';
	width: 15rem;
	position: absolute;
	right: 100%;
	margin-right: 4.2rem;
	top: 50%;
	border-bottom: 3px solid;
	opacity: .2;
}
.section-title::after{
	content: '';
	width: 15rem;
	position: absolute;
	left: 100%;
	margin-left: 4.2rem;
	top: 50%;
	border-bottom: 3px solid;
	opacity: .2;
}
@media (max-width:767px) {
	[class*=size-]{
		width: 100%;
	}
	.content-padding,
	.content-padding-xs,
	.content-padding-lg,
	.content-padding-xl,
	.content-padding-xxl{
		padding-bottom: 3.2rem;
		padding-top: 3.2rem;
	}
	#content .row [class*="col-sm-"]{
		margin-bottom: 2.8rem;
	}
	
	.content-padding-mobile-none{
		padding-top: 0;
		padding-bottom: 0;
	}
	.section-title{
		display: block;
	}
	.section-title::before{
		display: none;
	}
	.section-title::after{
		display: none;
	}
}


 
 .tab-pane.active {
	 animation: fade 1s ease-in;
 }
 
 @keyframes fade{
	 0% { opacity: 0;  }
	 100% { opacity: 1; }
 }
 
 
 /**
  * Sections > Home
  * -----------------------------------------------------------------------------
  */
  
 .home-content{
	 display: flex;
	 width: 100%;
	 height: 100%;
	 text-align: center;
 }
 
 
 /* Home content */
 
 .home-content{
	 position: relative;
 }
 
 
 /* Sidebar- Home*/
 
 .sidebar-home {
 height: 100px;
 width: 100%;
 position: relative;
 bottom: 0;
 /*padding-top: 40px;*/
 background-color: #FAFAFA99;
 }
 
 
 
 .sidebar-elemnt { 
	 /*border : 2px solid Green ;*/
	 /*padding: 10px 5px;*/
	 font-size: 24px;
	 display: block;
	 height:120px;
	 bottom:0;
 }
 
 .sidebar-elemnt .count-number{
	 font-family: Montserrat, arial, sans-serif;
	 font-size: 24px;
	 font-weight: 700;
	 line-height: 1.3;
	 text-align: center;
	 color: #e41919;
 }
 
 .sidebar-elemnt .count-number::after{
	 content: "+ MW "" \f0e7";
	 font-family: FontAwesome, Montserrat, arial, sans-serif;
	 font-size: 22px;
	 font-weight: 700;
	 line-height: 1.3;
	 text-align: center;
	 color: #e41919;
 }
 
 .sidebar-elemnt .count-number:hover::after{
	 font-size: 30px;
	 font-weight: 700;
	 line-height: 1.5;
 }
 
 .sidebar-elemnt .count-number:hover{
	 font-size: 32px;
	 font-weight: 700;
	 line-height: 1.5;
 }
 
 
 .sidebar-elemnt .count-descr{
	 font-size: 18px;
	 color: #e41919;
	 text-align:center;
 }
 
 .sidebar-elemnt .count-title{
	 margin-top: -1px;
	 font-size: 18px;
	 color: #000;
	 font-family: Montserrat, arial, sans-serif;
	 
 }
 .sidebar-elemnt .count-separator{
	 height: 30px;
	 clear: both;
	 float: none;
	 overflow: hidden;
 }
 
 
 .center {
   display: block;
   margin-left: auto;
   margin-right: auto;
   width: 50%;
 }
	
 .align-center{ text-align:center !important; }
 .align-left{ text-align:left !important;}
 .align-right{ text-align:right !important; }
  .full-image{
	  display: block; 
  }
 
 .full-image img{
	 /*object-fit: contain;*/
	 /*margin-left:-20px;*/
	 height:99%;
	 width:99%;
	 border-radius:40px;
	 border: solid #FFF 10px;
	  box-shadow: 0px 10px 20px 0px #888888;
 }
 
 
 
 /*
  * Tabs minimal
  */
 
 .navbar-nav > li > .dropdown-menu {
     margin-top:10px;
    background-color: #FFFFFF !important;
    width: 94% !important;
    border-radius: 20px 20px 20px 20px;
    
 }
 
 .dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus {
    color: #E41B20;
    text-decoration: none;
    background-color: #FFF;
    outline: 0;
    border-bottom:1px solid #E41B20;
}
 
 .tpl-minimal-tabs{
	 display: inline-block;
	 font-size: 16px;
	 font-weight: 600;
	 text-transform: uppercase;
	 text-align: center;
	 letter-spacing: 1px;	
	 border: none;
 }
 .tpl-minimal-tabs > li{
	 /*padding: 0 20px;*/
	 background: none !important;
 }
 .tpl-minimal-tabs > li > a{
	 padding: 6px 20px 5px;
	 text-decoration: none;
	 color: #777;
	 background: #e9e9e9;
	 border: 1px solid #e9e9e9;
	 
	 /*-webkit-border-radius: 10px;*/
	 /*-moz-border-radius: 10px;*/
	 /*border-radius: 10px;*/
 }
 .tpl-minimal-tabs > li > a:hover{
	 background: #fff;
	 border-color: #e41919;
	 color: #e41919;
 }


.tpl-mob-minimal-tabs{
	display: block !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 20px 20px 20px 20px;
    background-color: white;
    opacity: 0.9;
     margin-bottom: 5px; 
    width: 94%;
 }
 .tpl-mob-minimal-tabs > li{
	 /*padding: 0 20px;*/
	 background: white !important;
 }
 .tpl-mob-minimal-tabs > li > a{
	 padding: 6px 20px 5px;
	 text-decoration: none;
	 color: #777;
	 background-color: #e9e9e9;
	 border: 1px solid #e9e9e9;
	 
	 /*-webkit-border-radius: 10px;*/
	 /*-moz-border-radius: 10px;*/
	 /*border-radius: 10px;*/
 }
 .tpl-mob-minimal-tabs > li > a:hover{
	 background: #fff;
	 border-color: #e41919;
	 color: #e41919;
 }


/**
 * Sections > Home
 * -----------------------------------------------------------------------------
 */

 #home{
	 min-height: 800px;
	 /*background-image: url('images/splash.jpg');*/
	 background-size: cover;
	 background-repeat: no-repeat;
	 background-position: top center;
	 position: relative;
 }
 #home::before{
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 bottom: 0;
	 right: 0;
	 background: rgba(0, 0, 0, .45);
	 z-index: 1;
 }
 #home:after{
	 background-size: 5px;
	 background-color: transparent;
	 opacity: .1;
 }
 #splash{
	 color: #fff;
	 max-width: 800px;
	 position: absolute;
	 z-index: 1;
	 text-align: center;
 }
 #splash h1{
	 color: #fff;
	 font-weight: bold;
	 line-height: 0.8;
	 font-size: 5.2rem;
	 letter-spacing: -1px;
	 margin-bottom: 5.4rem;
	 text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
 }
 #splash h1 small{
	 color: #fff;
	 font-size: 65%;
	 font-weight: normal;
	 /*text-decoration: underline;*/
	 display: inline-block;
	 margin: 0px;
 }
 #splash .btn{
	 font-size: 1.8rem;
 }
 #counter{
	 position: absolute;
	 z-index: 2;
	 bottom: -50px;
	 width: 450px;
	 background: #F7F7F7;
	 border-radius: 3px;
	 padding: 2.8rem;
	 font-family: "Roboto", sans-serif;
 }
 #counter > div{
	 font-size: 1.8rem;
 }
 #counter .progress{
	 background: rgba(86, 86, 86, .2);
	 -webkit-border-radius: 300px;
	 -moz-border-radius: 300px;
	 border-radius: 300px;
	 margin: 0.7rem 0;
	 -webkit-transition: all 200ms ease-in;
	 -moz-transition: all 200ms ease-in;
	 -ms-transition: all 200ms ease-in;
	 -o-transition: all 200ms ease-in;
	 transition: all 200ms ease-in;
 }
 #counter .progress-bar{
	 background: #D44234;
 }
	 
 
 /**
  * Sections > Petition
  * -----------------------------------------------------------------------------
  */
 
 #petitioned{
	 background: #f7f7f7;
	 font-family: "Roboto", sans-serif;
	 padding: 2.8rem 0;
 }
 #petitioned div{
	 font-size: 1.2rem;
 }
 #petitioned strong{
	 display: block;
 }
 #petition-to{
	 margin-bottom: 1.4rem !important;
	 display: block;
 }
 
 #petition-div .lead{
	 margin: 1.4rem 0;
 }
 
 #author{
	 font-family: 'Roboto', sans-serif;
	 font-size: 1.2rem;
	 line-height: 1.4;
	 padding-left: 80px;
	 padding-top: 5px;
	 position: relative;
 }
 #author img{
	 width: 60px;
	 height: 60px;
	 left: 0;
	 top: 0;
	 position: absolute;
 }
 
 /**
  * Team
  * -----------------------------------------------------------------------------
  */
 
 .team-grid{
	 margin: -20px 0 0 -1px;
	 text-align: center;
	 font-size: 0;
	 word-spacing: 0;
 }
 .team-item{
	 display: inline-block;
	 width: 300px;
	 margin: 20px 20px 20px 1px;
	 position: relative;
	 font-size: 14px;
	 word-spacing: normal;
	 text-align: center;
	 cursor: default;
 }
 .team-item-image{
	 position: relative;
	 overflow: hidden;
 }
 .team-item-image:after{
	 content: " ";
	 display: block;
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 top: 0;
	 left: 0;
	 background: transparent;
	 
	 z-index: 1;
	 
	 -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
	 -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
	 -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	 -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
	 transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
 }
 
 .team-item-detail{
	 opacity: 0;
	 width: 100%;
	 position: absolute;
	 top: 50%;
	 left: 0;
	 padding: 20px 23px 55px;
	 font-size: 13px;
	 text-align: center;
	 color: #aaa;
	 
	 z-index: 2;
	 
	 -webkit-transform: translateY(-50%);
	 -moz-transform: translateY(-50%);
	 transform: translateY(-50%);
	 
	 -webkit-background-size: cover;
	 -moz-background-size: cover;
	 -o-background-size: cover;
	 background-size: cover;
	 
	 -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
	 -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
	 -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	 -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
	 transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
 }
 
 .work-full-media{
	 margin-top: 30px;
 }
 
 .work-full-media img{
	 max-width: 100%;
	 height: auto;
	 border-radius:10px;
	 box-shadow:8px 8px 8px 2px #0000008f;
 }
 
 
 .team-item-descr{
	 position: relative;
	 margin: 0 23px;
	 padding: 17px 10px;
	 text-align: center;
	 background: rgba(255,255,255, .98);
	 
	 z-index: 3;
	 
	 -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
	 -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
	 -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	 -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
	 transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
 }
 
 .team-item-name{
	 margin-bottom: 2px;
	 font-size: 14px;
	 font-weight: 800;
	 text-transform: uppercase;
	 letter-spacing: 1px;
	 width:auto;
 }
 .team-item-role{
	 margin-bottom: 5px;
	 font-family: Montserrat, arial, sans-serif;
	 font-size: 13px;
	 
 }
 .team-social-links{
	 font-size: 14px;
	 cursor: pointer;
 }
 .team-social-links a{
	 display: inline-block;
	 padding: 3px 7px;
	 color: rgba(0,0,0, .25);
	 
	 -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
	 -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
	 -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
	 -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
	 transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
 }
 
 /* Dark Version */
 
 .team-item-descr.dark,
 .no-mobile .team-item:hover .team-item-descr.dark,
 .team-item.js-active .team-item-descr.dark{
	 background: rgba(37,37,37, .95);
	 color: #bbb;
 }
 .team-item-descr.dark .team-social-links a{
	 color: #999;
 }
 
 
 /* Hover state */
 .no-mobile .team-item:hover .team-item-image:after{
	 background: rgba(0,0,0, .85);
 }
 .no-mobile .team-item:hover .team-item-detail{
	 opacity: 1;
 }
 .no-mobile .team-item:hover .team-item-descr{	
	 background: #fff;
	 color: #999;
 }
 .no-mobile .team-social-links a:hover{
	 color: rgba(0,0,0, .75);
 }
 
 /* Mobile touch */
 .team-item.js-active .team-item-image:after{
	 background: rgba(0,0,0, .85);
 }
 .team-item.js-active .team-item-detail{
	 opacity: 1;
 }
 .team-item.js-active .team-item-descr{	
	 background: #fff;
	 color: #999;
 }
 
 /**
  * Sections > our-sites
  * -----------------------------------------------------------------------------
  */
 
 #our-sites-container{
	 background: url('images/linedpaper.png') top left;
	 font-family: "Roboto", sans-serif;
 }
 #our-sites-container p{
	 font-size: 1.8rem;
	 line-height: 1.8;
	 margin: 1.2rem ;
 }
 #our-sites .content-padding-xs{
	 padding: 2.4rem 0;
 }
 
 
 /**
  * Sections > News & Update
  * -----------------------------------------------------------------------------
  */
 
 .single-carousel,
 .small-item-carousel{
	 margin-bottom: 35px;
 }
 .single-carousel .owl-pagination,
 .small-item-carousel .owl-pagination{
	 position: relative;
	 left: 0;
	 top: 35px;
	 margin: 0;
 }
 .single-carousel.black .owl-page span,
 .small-item-carousel.black .owl-page span{
	 background: rgba(0,0,0, .15);
	 
	 -webkit-box-shadow: none;
	 -moz-box-shadow: none;
	 box-shadow: none;
 }
 .single-carousel.black .owl-page:hover span,
 .small-item-carousel.black .owl-page:hover span{
	 background: rgba(0,0,0, .4);
 }
 .single-carousel.black .owl-page.active span,
 .small-item-carousel.black .owl-page.active span{
	 background: rgba(0,0,0, .4);
 }
 
 .single-carousel.black .owl-prev,
 .single-carousel.black .owl-next,
 .small-item-carousel.black .owl-prev,
 .small-item-carousel.black .owl-next{
	 color: rgba(0,0,0, .2);
	 text-shadow: none;
	 
	 -webkit-box-shadow: none;
	 -moz-box-shadow: none;
	 box-shadow: none;
 }
 .single-carousel.black .owl-prev:hover,
 .single-carousel.black .owl-next:hover,
 .small-item-carousel.black .owl-prev:hover,
 .small-item-carousel.black .owl-next:hover{
	 color: rgba(0,0,0, .35);
 }
 .single-carousel .owl-prev,
 .small-item-carousel .owl-prev{
	 left: -125px;
 }
 .single-carousel .owl-next,
 .small-item-carousel .owl-next{
	 right: -125px;
 }
 section:hover .single-carousel .owl-prev,
 section:hover .small-item-carousel .owl-prev{
	 opacity: 1;
	 left: -80px;
 }
 section:hover .single-carousel .owl-next,
 section:hover .small-item-carousel .owl-next{
	 opacity: 1;
	 right: -80px;
 }
 
 
 .logo-item{
	 height: 100%;
	 width: 99%;
	 /*text-align: center;*/
	 opacity: .8;
	 
	 -webkit-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);  
	 -moz-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
	 -o-transition: all 0.01s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	 -ms-transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
	 transition: all 0.4s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	 
	 border: solid red;
	 border-width: 0px 0px 0px 2px;
 }
 .logo-item:hover{
	 opacity: 1;
 }
 
 
 .owl-carousel .item {
	 height: 10rem;
	 background: #4DC7A0;
	 padding: 1rem
 }
  .owl-carousel .item h4 {
	 color: #FFF;
	 font-weight: 400;
	 margin-top: 0rem
 }
 
 .logo-item img:after{
	 position: relative;
	 top: 50%;
	 object-fit: contain;
 
	 filter: contrast(1);
   
	 -webkit-transform: translateY(-50%);
	 -moz-transform: translateY(-50%);
	 -o-transform: translateY(-50%);
	 -ms-transform: translateY(-50%);
	 transform: translateY(-50%);
 }
 
 
 #timeline{
	 position: relative;
	 padding: 4.2rem 0;
	 margin-bottom: 9.8rem !important;
 }
 #timeline::before{
	 content: ' ';
	 position: absolute;
	 left: 50%;
	 border-left: 1px dashed;
	 opacity: .2;
	 height: 100%;
	 top: 0;
 }
 #timeline .entry{
	 width: 100%;
	 margin: 4.2rem 0;
	 position: relative;
 }
 #timeline .entry::before{
	 content: '\f0da';
	 font-family: 'FontAwesome';
	 font-size: 4.2rem;
	 line-height: 1;
	 color: #f7f7f7;
	 position: absolute;
	 display: block;
	 top: 3px;
 }
 #timeline time{
	 position: absolute;
	 top: 1.8rem;
	 font-size: 1.4rem;
	 top: 1.4rem;
 }
 #timeline time span{
	 font-size: 1.2rem;
	 opacity: .5;
	 display: none;
	 line-height: 1;
 }
 #timeline time::before{
	 content: '';
	 display: block;
	 height: 15px;
	 width: 15px;
	 background: #D44234;
	 -webkit-border-radius: 300px;
	 -moz-border-radius: 300px;
	 border-radius: 300px;
	 position: absolute;
	 top: 5px;
 }
 #timeline .entry > div{
	 -webkit-border-radius: 3px;
	 -moz-border-radius: 3px;
	 border-radius: 3px;
	 background: #f7f7f7;
	 width: 100%;
	 padding: 1.4rem 2.8rem;
	 text-align: center;
 }
 #timeline .entry.sticky > div{
	 background: #FAD1D1;
 }
 #timeline .entry.sticky:before{
	 color: #FAD1D1;
 }
 #timeline .entry.sticky h5,
 #timeline .entry.sticky p{
	 color: #D2433A;
 }
 #timeline .entry > div > p{
	 margin-top: 1.4rem;
 }
 #timeline .entry:nth-child(odd){
	 padding-right: 53%;
 }
 
 #timeline .entry:nth-child(odd)::before{
	 right: 53%;
	 margin-right: -1.3rem;
 }
 #timeline .entry:nth-child(odd) > time{
	 left: 52%;
 }
 #timeline .entry:nth-child(odd) > time::before{
	 left: -29px;
 }
 #timeline .entry:nth-child(even){
	 padding-left: 53%;
 }
 #timeline .entry:nth-child(even)::before{
	 content: '\f0d9';
	 left: 53%;
	 margin-left: -1.3rem;
 }
 #timeline .entry:nth-child(even) > time{
	 right: 52%;
	 text-align: right;
 }
 #timeline .entry:nth-child(even) > time::before{
	 right: -29px;
 }
 
 /**
  * Sections > clients
  * -----------------------------------------------------------------------------
  */
 
 #clients-container{
	 position: relative;
 }
 #clients-container::before{
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 bottom: 0;
	 right: 0;
	 background: rgba(122, 122, 122, .7);
	 z-index: 1;
 }
 #clients-container:after{
	 background-size: 5px;
	 background-color: transparent;
	 opacity: .2;
 }
 #clients-container .supporter{
	 border: 5px solid rgba(255, 255, 255, .25);
	 -webkit-border-radius: 300px;
	 -moz-border-radius: 300px;
	 border-radius: 300px;
	 position: relative;
	 z-index: 1;
	 -webkit-transition: all 200ms ease-in;
	 -moz-transition: all 200ms ease-in;
	 -ms-transition: all 200ms ease-in;
	 -o-transition: all 200ms ease-in;
	 transition: all 200ms ease-in;
	 max-height: 130px;
	 max-width: 130px;
	 
 }
 #clients-container .supporter:hover{
	 border: 5px solid #D44234;
	 opacity: 1;
 }
 #clients-container .block-grid-6:hover li:not(:hover) .supporter  {
	 opacity: .25;
 }
 #clients-container ul{
	 margin: 0rem 0 0rem;
 }
 #clients-container li{
	 position: relative;
 }
 #clients-container .container{
	 position: relative;
	 z-index: 1;
 }
 #clients-container .section-title,
 #clients-container h3{
	 color: #fff;
	 text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
 }
 #clients-container h3 > small{
	 font-size: 100%;
	 color: #fff;
	 border-bottom: 1px solid #fff;
	 display: inline-block;
 }
 .popover-content{
	 line-height: 1.4;
	 text-align: center;
 }
 
 
 /**
  * Sections > Sign It
  * -----------------------------------------------------------------------------
  */
 #sign-it h2.section-title{
	 margin-bottom: 6rem;
 }
 #sign-row{
	 position: relative;
 }
 #sign-list{
	 list-style: none;
	 margin: 0;
	 padding: 0;
 }
 #sign-list li{
	 margin-bottom: 1.3rem;
	 text-align: left;
 }
 #sign-list li:last-of-type{
	 margin-bottom: 0;
 }
 #sign-list .btn{
	 text-align: left;
	 padding-left: 60px;
	 position: relative;
 }
 #sign-list .fa{
	 display: block;
	 position: absolute;
	 left: 0;
	 top: 0;
	 width: 40px;
	 height: 100%;
	 line-height: 34px;
	 text-align: center;
	 background: rgba(255, 255, 255, .15);
 }
 #sign-it .btn{
	 box-shadow: none;
	 -webkit-border-radius: 3px;
	 -moz-border-radius: 3px;
	 border-radius: 3px;
 }
 #sign-list .btn.facebook{
	 background-color: #3F5F95;
	 border-color: #3F5F95;
 }
 #sign-list .btn.twitter{
	 background-color: #4CAFE8;
	 border-color: #4CAFE8;
 }
 #sign-list .btn.google{
	 background-color: #DB4E37;
	 border-color: #DB4E37;
 }
 #sign-list .btn.linkedin{
	 background-color: #296996;
	 border-color: #296996;
 }
 #sign-list .btn.yahoo{
	 background-color: #863587;
	 border-color: #863587;
 }
 .contact-item{
	 padding-right: 67px;
	 position: relative;
	 color: rgba(214,65,45, .7);
	 text-align: right;
	 overflow: hidden;
	 
	 -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);  
	 -moz-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
	 -o-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
	 -ms-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
	 transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
 }
 .contact-item a{
	 color: rgba(214,65,45 ,.7);
	 text-decoration: none;    
 }
 .contact-item:hover,
 .contact-item:hover a{
	 color: rgba(214,65,45 ,.9);
 }
 .contact-item a:hover{
	 color: rgba(214,65,45 ,.9);
	 text-decoration: none;
 }
 
 .ci-icon{
	 width: 45px;
	 height: 125px;
	 position: absolute;
	 top: 4px;
	 right: 7px;
	 font-size: 14px;
	 text-align: center;
	 line-height: 40px;
	 border-left: 1px solid rgba(224,39,1, .7);
 }
 .ci-title{
	 margin-bottom: 5px;
	 font-size: 11px;
	 font-weight: 700;
	 text-transform: uppercase;
	 letter-spacing: 1px;
 }
 .ci-phone{
	 font-size: 24px;
	 font-family: Montserrat, arial, sans-serif;
	 font-weight: 400;
	 line-height: 1.2;
 }
 .ci-text{
	 color: rgba(224,39,1, .7);
 }
 /**
  * Footer
  * -----------------------------------------------------------------------------
  */
 
 #footer{
	 background: #565656;
	 color: #fff;
	 font-family: "Roboto", sans-serif;
	 padding: 1.4rem 0;
 }
 #footer p{
	 font-size: 1.2rem;
	 margin: 1.4rem 0;
 }
 #footer a{
	 color: #fff;
 }
 #go-top{
	 margin: 1.4rem 0;
	 display: inline-block;
	 font-size: 1.2rem;
 }
 #footer .fa-boxed{
	 display: inline-block;
	 text-align: center;
	 border-radius: 300px;
	 margin: 0 1px;
	 width: 24px;
	 line-height: 24px;
	 height: 24px;
	 background: rgba(255, 255, 255, .15);
 }
 
 
 
 /**
  * Block Grid
  * -----------------------------------------------------------------------------
  */
 
 ul[class*="block-grid-"]{
	 list-style: none;
	 padding: 0;
	 margin-right: -15px;
	 margin-left: -15px;
	 overflow: auto;
	 clear: both;
 }
 ul[class*="block-grid-"] li{
	 list-style: none;
	 padding: 0 15px;
	 margin: 2.8rem 0 0 0;
	 float: left;
	 height: auto;
	 display: block;
 }
 .block-grid-2 li{
	 width: 50%;
 }
 .block-grid-3 li{
	 width: 33.3333333%;
 }
 .block-grid-4 li{
	 width: 25%;
 }
 .block-grid-5 li{
	 width: 20%;
 }
 .block-grid-6 li{
	 width: 16.66666666666667%;
 }
 .block-grid-7 li{
	 width: 14.285714286%;
 }
 .block-grid-2 li:nth-child(1),
 .block-grid-2 li:nth-child(2),
 .block-grid-3 li:nth-child(1),
 .block-grid-3 li:nth-child(2),
 .block-grid-3 li:nth-child(3),
 .block-grid-4 li:nth-child(1),
 .block-grid-4 li:nth-child(2),
 .block-grid-4 li:nth-child(3),
 .block-grid-4 li:nth-child(4),
 .block-grid-5 li:nth-child(1),
 .block-grid-5 li:nth-child(2),
 .block-grid-5 li:nth-child(3),
 .block-grid-5 li:nth-child(4),
 .block-grid-5 li:nth-child(5),
 .block-grid-6 li:nth-child(1),
 .block-grid-6 li:nth-child(2),
 .block-grid-6 li:nth-child(3),
 .block-grid-6 li:nth-child(4),
 .block-grid-6 li:nth-child(5),
 .block-grid-6 li:nth-child(6){
	 margin-top: 0;
 }
 ul[class*="block-grid-"] .link-image{
	 position: relative;
	 display: block;
	 overflow: hidden;
 }
 .link-image{
	 position: relative;
 }
 .link-image:after{
	 content: '\e623';
	 font-family: 'Pe-icon-7-stroke';
	 font-size: 4.8rem;
	 display: block;
	 width: 6rem;
	 height: 6rem;
	 line-height: 6rem;
	 text-align: center;
	 left: 50%;
	 margin-left: -3rem;
	 top: 50%;
	 margin-top: -3rem;
	 color: #fff;
	 position: absolute;
	 -webkit-border-radius: 300px;
	 -moz-border-radius: 300px;
	 border-radius: 300px;
	 background: rgba(0, 0, 0, .25);
	 opacity: 0;
	 -webkit-transition: all 200ms ease-in;
	 -moz-transition: all 200ms ease-in;
	 -ms-transition: all 200ms ease-in;
	 -o-transition: all 200ms ease-in;
	 transition: all 200ms ease-in;
 }
 .link-image:hover:after{
	 opacity: 1;
 }
 
 /**
  * Multi-Page Specific
  * -----------------------------------------------------------------------------
  */
 
 /*html,*/
 /*body {*/
	/* height: 100%;*/
 /*}*/
 /*#wrap {*/
	/* min-height: 100%;*/
	/* height: auto !important;*/
	/* height: 100%;*/
 /*}*/
 /*body:not(.one-page) #header{*/
	/* position: static;*/
 /*}*/
 /*body:not(.one-page) section{*/
	 
 /*}*/
 /*body:not(.one-page) #content{*/
	/* box-shadow: none;*/
	/* position: relative;*/
 /*}*/