@import url(modal.css);
@import url(/com/user/css/modal.css);
@import url(buttons.css);
@import url(images.css);
@import url(forms.css);
@import url(breadcrum.css);
@import url(addsense.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}

body {
	background: #fff;
	margin: 0;
	padding: 0;
	border: 0;
	font: normal 85% 'Open Sans',sans-serif;
	vertical-align: baseline;	
}

main {
	display: block;
}

.container {
	margin: 0 auto;
	width: 94%;
	max-width: 1100px;
	font-family: helvetica, sans-serif;
}

.content {
	padding-top: 80px;
}

.content p {
	margin-bottom: 10px;
}

#header {
	width: 100%;
	height: 60px;
	line-height: 60px;
	background: #222;
	z-index: 8000;
	opacity: 0.9;
}

#header .fire {
	width: 220px;
	cursor: pointer;
}

.fixed {
    position: fixed;
    top:0;
	left:0;
    width: 100%; 
}

/**
 *	Nav Menu
 *
 */

nav {
	padding: 0 10px 0 0;
	position: absolute;
	right: 0;
	top: -15px;
	height: 60px;
}

nav ul li {
	float: left;
	list-style: none;
}

nav ul li a {
	display: block;
	font: bold 1.2em Arial, Helvetica, sans-serif;
	color: white;
	text-decoration: none;
	text-shadow: none;
	margin: 6px 0 0 10px;
	padding: 10px 15px 10px 15px;
} 

nav ul li.current a, nav ul li:hover a{
	color: #FFF;
	background: #02C7FC;
	background: -moz-linear-gradient(#02C7FC, #00708C);
	background: -o-linear-gradient(#02C7FC, #00708C);
	background: -webkit-linear-gradient(#02C7FC, #00708C);
	border-radius: 7px 7px 7px 7px;
	-moz-border-radius: 7px 7px 7px 7px;
	-webkit-border: 7px 7px 7px 7px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;  
}

nav ul li.menu-image {
	float: left;
	margin-top: -10px;
}

nav ul li.button {
	display: none;
}

/**
 *	Logo
 *
 */

.fire {
	top: 0;
	margin: 0;	
	padding: 0 0 0 60px;
	display: block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	float: none;
	z-index: auto;
	width: auto;
	height: auto;
	position: static;
	cursor: default;
	opacity: 1;
	overflow: visible;
	border: none;
	-webkit-border-radius: 0;
	border-radius: 0;
	font: normal 50px/normal "Anton", Helvetica, sans-serif;
	color: rgb(255, 255, 255);
	-o-text-overflow: clip;
	text-overflow: clip;
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-shadow: 0 0 20px rgb(254,252,201) , 10px -10px 30px rgb(254,236,133) , -20px -20px 40px rgb(255,174,52) , 20px -40px 50px rgb(236,118,12) , -20px -60px 60px rgb(205,70,6) , 0 -80px 70px rgb(151,55,22) , 10px -90px 80px rgb(69,27,14) ;
	-webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
	-moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
	-o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
	transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1) 10ms;
	-webkit-transform: none;
	transform: none;
	-webkit-transform-origin: 50% 50% 0;
	transform-origin: 50% 50% 0;
	-webkit-touch-callout: none; 
	-webkit-user-select: none;   
	-khtml-user-select: none;    
	-moz-user-select: none;      
	-ms-user-select: none;     
	user-select: none;   	
} 
 
#logo img {
	float: left;
	width: 100%;
	height: auto;
} 


/**
 *	Search Form
 *
 */

.search-box input[type=text] {
    margin: 5px 40px 0 10px;
	width: 175px;
    box-sizing: border-box;
    border: 2px solid #fff;
    border-radius: 4px;
    font-size: 14px;
    background-color: #333;
	color: #fff;
    background-image: url(/images/icons/search-icon.png);
    background-size: 20px;
	background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 14px 20px 8px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

#languages {
	position: absolute;
	top: 30px;
	right: 0;
	margin: 0 5px 0 5px;
}

#languages img {
	position: absolute;
	width: 24px;
	top: -5px;
	right: 5px;
	opacity: 0.7;
}

/**
 *	Aside
 *
 */
 
aside { 
	clear: both;
	float: right;
	width: 300px;
	min-width: 300px; 
	padding-left: 15px;
	margin-left: 15px;
	background: #557881;
	border: 0;
	font: normal 14px Arial, Helvetica, sans-serif;
	border-radius: 8px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px; 
}

.sidebar {
  float: left;
  width: 100%;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

.sidebar_item{ 
  font: normal 100% Arial, Helvetica, sans-serif;
  width: 90%;
}

.sidebar h2{ 
  font: normal 140% Arial, Helvetica, sans-serif;
  color: #FFF;
  text-shadow: 0px 1px 0px #00708C;}  
 
.sidebar h3{ 
  color: #fab40c;
  text-shadow: 0px 1px 0px black;
}  

.sidebar p{ 
	color: #FFF;
}

/**
 *	Main Wrapper
 *
 */

#main {
	clear: both;
	width: 90%;
	margin: auto;
}

/**
 *	Links
 *
 */

a {
  color: #77a6ee;
  font-weight: bold;
  background: transparent;
  outline: none;
  text-decoration: none;
 
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
  outline: 0 none !important;	
}

a:hover{ 
  color: #3279e5;
  text-decoration: none;
}

a.alternative {
  color: #772233;
  text-decoration: underline;
}

a.alternative:hover {
  color: #112233;
}

/**
 *	Section
 *
 */

section {
	clear: both;
}

/**
 *	Footer
 *
 */
 
 
footer {
	margin-top: 80px;
	clear: both;
	background: #282828;
	background: #333;
	width: 100%;
	background: url(/images/backgrounds/footer-background.png);
	font-family: 'Open Sans';
}

footer h2{
	margin: 25px 0 10px 0;
	color: #fff;
	text-shadow: none;
	letter-spacing: 0;
    letter-spacing: 0px;
    font: bold 165% Arial;
}
 
#footer-stats {
	float: right;
	margin: -36px 0 0 10px;
	width: 400px;
	height: 36px;
	background:#222;
	color:	white;
	font: 15px/16px 'Arial Black';
	border-radius: 36px 0 0 0;
	padding:5px 0 0 25px;
	opacity: 0.8;
	
}

#footer-stats div {
	display: inline;
	height: 32px;
}


#footer-news h2 {
	text-align: center;
	padding-top: 5px;
	font-size: 20px;
}

ul#footer-last-mountains {
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}

ul#footer-last-mountains li { 
   display: inline-block;
   margin: 0 20px 0 0;
   padding: 0;
   width:  250px;
   height: 188px;	
   overflow: hidden;
   position: relative;   
}

ul#footer-last-mountains img { 
	width: 250px;
    height: 188px;
	border: 1px dashed rgba(220,220,220,0.5);
	padding: 3px;
}

ul#footer-last-mountains img:hover { 
	opacity: 0.3;
	transition: 2s;
}

.last-mountain-data { 
   position: absolute;
   background-color: rgba(61,61,61,0.5);
   top: 150px; 
   left: 0; 
   width: 100%;	
}

#footer-container div.footer-column {
	float: left;
	color: white;
	width: 22%;
	margin-left: 3%;
	font-size: 12px;

}

.footer-column div {
	line-height: 24px;
}

footer p {
	color: #aaa;
}

#carbon-footprint {
	clear: both;
	padding: 10px;
	color: white;
	font-size: 12px;
	text-align: center;
	background-color: rgba( 0, 0, 0, .3);
	width: 100%;
}

#footer-bottom {
	clear: both;
	margin: 10px 0 0 0;
	color: white;
	font-size: 12px;
	text-align: center;
	width: 100%;
	height: 250px;
}

#footer-bottom div {
	height: 24px;
}

#footer-acreditations {
	margin-top: 10px;
	text-align: center;
	opacity: 0.3;
}

#footer-acreditations:hover {
	opacity: 0.9;
}

#form-paypal .btn {
	font-size: 16px;
	margin: 0 10px 10px 0;
}

/**
 *	Social
 *
 */
 
@font-face {
    font-family: 'si';
    src: url(/fonts/socicon/socicon.eot);
    src: url(/fonts/socicon/socicon.eot?#iefix) format('embedded-opentype'),
         url(/fonts/socicon/socicon.woff) format('woff'),
         url(/fonts/socicon/socicon.ttf) format('truetype'),
         url(/fonts/socicon/socicon.svg#icomoonregular) format('svg');
    font-weight: normal;
    font-style: normal;

}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family:si;
        src: url(/images/buttons/social/socicon.svg) format(svg);
    }
}
.app-download:hover {
	opacity: 0.7;
}

.soc {
    overflow:hidden;
    margin: 0 0 10px 0;
	padding:0;
    list-style:none;
}

.soc li {
    display:inline-block;
    *display:inline;
}

.soc li a {
    font-family:si!important;
    font-style:normal;
    font-weight:400;
	opacity: 0.75;
    box-sizing:border-box;
    overflow:hidden;
    text-decoration:none;
    text-align:center;
    display:block;
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    border-radius: 10px;
    margin-right: 10px;
    color: #ffffff;
    background-color: none;
}

.soc li a:hover{
	opacity: 1;
}

.soc-icon-last{
    margin:0 !important;
}

.soc-twitter {
    background-color: #4da7de;
}
.soc-twitter:before {
    content:'\e08d';
}
.soc-facebook {
    background-color: #3e5b98;
}
.soc-facebook:before {
    content:'\e028';
}
.soc-googleplus {
    background-color: #dd4b39;
}
.soc-googleplus:before {
    content:'\e038';
}
.soc-pinterest {
    background-color: #c92619;
}
.soc-pinterest:before {
    content:'\e063';
}
.soc-linkedin {
    background-color: #3371b7;
}
.soc-linkedin:before {
    content:'\e04c';
}

.soc-whatsapp {
    background-color: #20B038;	
}

.soc-whatsapp:before {
	content:'\e099';
}

.soc-telegram {
    background-color: #0088cc;	
}

.soc-telegram:before {
	content:'\e087';
}

.soc-rss {
    background-color: #f26109;
}
.soc-rss:before {
    content:'\e071';
}

 
/**
 *	Images
 *
 *	
 *
 */

img.absmiddle {
	vertical-align: middle; 
	margin-right: 5px;
}

/**
 *	Texts and alignment
 *  
 *	
 *
 */

p {
	padding: 0 0 10px 0;
	line-height: 1.7em;
	font-size: 100% 
}
 
 
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}

.top10 {
	margin-top: 10px;
}

.hidden {
	display: none;
}


.title {
    width: 100%;
    height: 100px;
    border-radius: 0 0 24px 24px;
    font: bold 250% arial;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0),  rgba(100, 100, 100, .25));
    position: relative;
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 100px;
    color: #699dcd;
}


h1, h2, h3, h4, h5, h6 {
  font: normal 175% Arial, Helvetica, sans-serif;
  color: #00708C;
  text-shadow: 1px 1px #FFF;
  letter-spacing: -1px;
  margin: 0;
}

h2{ 
  font: normal 165% Arial, Helvetica, sans-serif;
}

h3{ 
  font: normal 130% Arial, Helvetica, sans-serif;
}

h4, h5, h6{ 
  margin: 0;
  padding: 0 0 0px 0;
  font: normal 150% Arial, Helvetica, sans-serif;
  line-height: 1.5em;
}

h5, h6{ 
  font: normal 95% Arial, Helvetica, sans-serif;
  color: #888;
  padding-bottom: 15px;
}

.special-block {
	width: 100%;
	margin: 10px 0 10px 0;
    min-height: 4.2em;
    padding: .6em 1.2em .8em;
    border: 1px solid #d9d733;
    color: #74730a;
    background: #ffffd8;
    text-indent: 0px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: inset 0 0 8em #e3e161;
    -webkit-box-shadow: inset 0 0 8em #e3e161;
    box-shadow: inset 0px 0px 8em #e3e161;
}

.special-block-warning {
	width: 100%;
	margin: 10px 0 10px 0;
    min-height: 4.2em;
    padding: .6em 1.2em .8em;
    border: 1px solid #f9a08f;
    color: #c6361a;
    background: #ffebe7;
    text-indent: 0px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: inset 0 0 8em #f8a797;
    -webkit-box-shadow: inset 0 0 8em #f8a797;
    box-shadow: inset 0px 0px 8em #f8a797;
}


/**
 *	Return to top arrow
 *
 */
 
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
	width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	z-index: 30000;
}

#return-to-top:hover {
	opacity: 0.5;
}

/**
 *	Cookie Bar
 *
 */
#cookie-bar {
	font-size: 16px;
	opacity: 0.8;
}

[data-email] {
	unicode-bidi:bidi-override;
	direction:rtl;	
}

/**
 *	Media queries
 *
 *	
 *
 */
 
@media (max-width: 1000px) {
  
	#header {
		width: 100%;
	}

	/**
	 *	Hide no-responsive menu
	 *	Show menu button
	 *
	 */

	nav ul li:not(:last-child) {
		display: none;
	}	
	
	nav ul li.button {
		margin-top: 4px;
		display: inline-block;
		float: right;
	}
	
	/**
	 *	Nav responsive menu
	 *
	 */
	
	nav.responsive {
		width: 100%;
		top: 0;
		display: block;
		position: relative;
		margin-bottom: 75px;
		z-index: 10000;
	}
	
	nav.responsive ul {
		position: relative;
		background: rgba( 0,0,0,0.90);
		width: 100%;
		margin: 0;
		padding: 0;
	}


	nav.responsive ul li {
		float: none;
		display: block;
	}
			
	nav.responsive ul li:not(.button) a {
		padding: 10px;
		border-top: 1px solid #333;
		margin-top: 0;
	}

	nav.responsive ul li.current:not(.button) a, nav.responsive ul li:not(.button):hover a {
		color: #02C7FC;
		background: #222;
		border-radius: 0;
		box-shadow: none;
	}
	
	nav.responsive ul li.button {
		position: absolute;
		margin: 0;
		padding: 10px;
		top: -65px;
		right: -10px;
	}
	
	.title {
		zoom: 90%;
	}
	
	/**
	 *	Language
	 *
	 */		
	#languages {
		position: absolute;
		top: 25px;
		right: 65px;
		margin: 0 5px 0 5px;
	}
	
	nav.responsive #languages {
		display: none;
	}	

	/**
	 *	Footer responsive
	 *
	 */	
	
	#footer-container div.footer-column {
		width: 47%;
		margin-left: 3%;
	}	
	
		
}

@media (max-width: 600px) {
	
	
	#header h1 {
		padding: 0 0 0 20px;
	}	
		
	nav ul li.search-box {
		display: none;
	}
	
	nav.responsive ul li.search-box {
		display: inline-block;
	}
	
	.title {
		font-size: 150%;
		height: auto;
		line-height: 50px;
	}

	#footer-stats {
		width: 100%;
		border-radius: 0 36px 0 0;
	}

	#footer-container div.footer-column {
			float: none;
			width: 95%;
			padding: 5px;
			display: block;
	}

}