/*
 * A Design by GraphBerry
 * Author: GraphBerry
 * Author URL: http://graphberry.com
 * License: http://graphberry.com/pages/license
 */
 
body{
	font-family: 'Lato', sans-serif;
	font-size: 15px;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x:hidden;
    width:100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

p, input, textarea{
	font-family: 'Lora', serif;
}

/****************
SECTION
*****************/
.zone {
	width: 100%;
}

section{
	background-color: #fff;
	padding: 80px 0;
}

section.darker{
	background-color: #fbfbfb;
}

section header{
	text-align: center;
	margin-bottom: 80px;
}

p{
	color: #808080;
}

address{
	margin-bottom: 50px;
}

address span{
	margin-top:0;
	margin-bottom: 25px;
	font-size: 20px;
	display: block;
}

.navbar {
	border-bottom: none;
}

#navbar {
	font-family: "Lato", sans-serif;
  	background-color: #0D2C4C;
  		font-weight: 300;

  	height: 68px;
}

#navbar-home {
	font-family: "Lato", sans-serif;
	font-weight: 400;
  	background-color: transparent;
  	height: 68px;
  	top: 10px;
}

.navbar-brand {
	padding: 16px 20px;
}

.menu-toggle{
	position: absolute;
	right: 15px;
	top: 7px;
	font-size: 30px;
	color: #fff;
}

.close {
	float: left;
	font-size: 34px;
	margin-left: 10px;
	color: #fff;
}

.homepage-top-navigation {
	position: relative;
	height: 43px;
	letter-spacing: 1px;
}

#sell-1 {
	margin: 0;
	margin-right: 20px;
	padding: 9px 19px;
	border: 2px solid white;
	border-radius: 4px;
	width: 138px;
}

#sell-1:hover {
	background-color: #fff;
	color: rgb(13, 44, 76);
}

.homepage-top-navigation a {
	font-size: 14px;
	font-weight: 700;
	padding-right: 30px;
	color: #fff;
	text-decoration: none;
	background-color: transparent;
}

.menu{
	width: 300px;
	display: block;
	background: #333;
	height: 100%;
	top: 0;
	left: -300px;
	position: fixed;
	z-index: 100;
	text-align: center;
	transition: left 0.4s;
}

#nav-expander {
	display: none;
	top: 14px;

}

#chat-expander {
	display: none;
}

.menu.nav-expanded{
	left: 0;
	z-index: 2000000;
}

.menu .close{
	color: #fff;
	margin-right: 10px;
	margin-top:10px;
}

.menu h3{
	margin-top:50px;
	text-transform: uppercase;
}

.menu .nav{
	padding: 0;
}

.menu .nav > li > a{
	color: #fff;
}

.menu .nav > li > a:hover,
.menu .nav > li > a:focus{
	background: transparent;
	color: #fa694e;
}

.menu .social-icons{
	margin-top: 50px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

.menu .social-icons li{
	margin-left: 5px;
	margin-right: 5px;
	float: none;
	display: inline-block;
}

.menu .social-icons li:last-child{
	margin-right: 0;
}

.menu .social-icons > li > a{
	width: 30px;
	height: 30px;
	line-height: 30px;
}

#home {
	padding-top: 0;
}

.jumbotron{
	text-align: center;
	position: relative;
	background: url('../img/background.jpg');
	background-size: cover;
	color: #fff;
	margin-bottom: 0;
	background-color: #fff;
}

.jumbotron .mask{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #333;
	opacity: 0.4;
}

.jumbotron .catch{
	color: #fff;
	font-size: 19px;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	margin-bottom: 30px;
	text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}

.jumbotron .container{
	margin-top: 0;
}

.jumbotron h1{
	font-family: "Brandon", sans-serif;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-size: 34px;
	letter-spacing: 6px;
	color: #ffffff;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.23);
}

.header-info{
	position: relative;
	margin-top: 32%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header-btn {
	position: relative;
	margin-top: 11%;
}

#sell-2 {
	background-color: #5ad2f0;
}

.header-btn a {
	color: #fff;
	text-decoration: none;
}

.header-btn a:hover {
	text-decoration: none;
	color: #fff;
}

.arrow-click {
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 35px;
	height: 60px;
	background: transparent;
}

.arrow {
 position: absolute;
 bottom: 50px;
 left: 50%;
 transform: translateX(-50%);
}


.arrow:before,
.arrow:after{
 content: '';
 position: absolute;
 top: 0;
 right: -15px;
 width: 20px;
 height: 3px;
 border-radius: 100px;
 display: block;
 background: #fff;
 transform:rotate(-45deg);
 -webkit-transform:rotate(-45deg); 
}
.arrow:after{
 right: inherit;
 left: -18px;
 transform:rotate(45deg);
 -webkit-transform:rotate(45deg); 
}

.animated{
 -webkit-animation: bounce 2s infinite;
 animation: bounce 2s both infinite;
}


@-webkit-keyframes bounce {
    0% {-webkit-transform: translateY(0); opacity: 0;}
 60% { opacity: 0.7;}
 100% {-webkit-transform: translateY(25px); opacity: 0}
}

@-moz-keyframes bounce {
    0% {-webkit-transform: translateY(0); opacity: 0;}
 60% { opacity: 1;}
 100% {-webkit-transform: translateY(30px); opacity: 0}
}

@-o-keyframes bounce {
    0% {-webkit-transform: translateY(0); opacity: 0;}
 60% { opacity: 1;}
 100% {-webkit-transform: translateY(-60px); opacity: 0}
}
@keyframes bounce {
    0% {-webkit-transform: translateY(0); opacity: 0;}
 60% { opacity: 0.9;}
 100% {-webkit-transform: translateY(25px); opacity: 0}
}



/***
SERVICES
****/
.method {
	background-color: #ffffff;
	padding-bottom: 105px; 
}

.method .container {
	margin-left: auto;
	margin-right: auto;
	width: 82%;
}

.method .row {
	margin: 0;
	width: 100%;
}

.method .contacter {
	margin-bottom: 0;
}

#how-title {
	font-family: "Lato", sans-serif;
	font-weight: bold;
	text-align: center;
	margin-bottom: 64px;
}

.service-item{
	text-align: center;
}

.service-item .icon{
	border: 1px transparent solid;
	margin: 0 auto;
	border-radius: 100%;
	width: 	132px;
	height: 132px;
	display: block;
	margin-bottom: 40px;
}

.service-item .icon i{
	line-height: 110px;
	font-size: 45px;	
	color: #fa694e;
}

.method .nb{
	margin-left: auto;
	margin-right: auto;
	height: 31px;
	width: 31px;
	color: #373737;
	font-size: 14px;
	line-height: 25px;
	font-weight: 700;
	border-radius: 100%;
	border: 2px solid #404040;
}

.method .title {
	height: 19px;
	margin: 28px auto 10px auto;
	font-weight: bold;
	font-size: 16px;
	color: #373737;
}

.method .desc {
	height: 36px;
	font-weight: 400;
	font-size: 15px;
	line-height: 18px;
	color: #6d6d6d;
}

.service-item p{
	color: #0D2C4C;
	font-size: 18px;
	font-family: "Lato", sans-serif;
}

.service-item .icon .icon-pen{
	background: url('http://hellozack.fr/css/img/icon/pen.png');
}

.icon-pc {
	display: block;
}

.icon-mob {
	display: none;
}


/****
TEAM
*****/
.team {
	color: #0D2C4C;
}

.team header {
	margin-bottom: 0px;
}

/****
CONTACT
*****/
#contact {
	display: block;
	text-align: center;
	background-color: #f6f6f6;
	position: relative;
	padding: 0;
}

#contact .container {
	padding: 100px 10px;
	position: relative;
}

.contact-container {
	font-family: "Lato", sans-serif;
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	color: #373737;
	line-height: 30px;
	text-align: center;
	display: block;
	margin-bottom: 45px;
}

.question {
	font-weight: 700;
	font-size: 20px;
}

.contacter {
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 45px;
}

.contact-btns {
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: relative;
	width: 100%;
	height: 50px;
}

#contact a {
	font-family: "Lato", sans-serif;
	color: #ffffff;
	font-size: 15px;
	width: 170px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
	text-decoration: none;
}

#contact a:hover {
	text-decoration: none;
	background-color: transparent;
	border: 1px solid #373737;
	color: #373737;
}

.btn-z {
	border-radius: 7px;
	font-size: 15px;
	line-height: 15px;
	border: 1px solid transparent;
	text-decoration: none;
	color: #fff;
}

.btn-chat {
	display: block;
	width: 170px;
	height: 44px;
	background-color: #41dc86;
	padding: 14px 50px;
}

#btn-chat:hover {
	background-color: #35CD79;
	text-decoration: none;
	color: #fff;
}

.btn-facebook {
	display: block;
	width: 170px;
	background-color: #3d5a98;
	margin: 0;
	padding: 14px 44px;
}

#btn-facebook:hover {
	background-color: #2F4B87;
	text-decoration: none;
	color: #fff;
}




/****
SELL
*****/
#sell {
	display: block;
	position: relative;
	padding: 0;
	margin: 0;
	height: 400px;
}

#sell .container {
	margin: 0;
	padding: 0;
	width: 100%;
}

#sell .row {
	margin: 0;
}

#sell .col-md-4 {
	padding: 100px 10px;
	height: 400px;
}

#sell #img-ipad {
	position: absolute;
	left: 0;
	bottom: 0;
}

#sell #img-phone {
	position: absolute;
	top: 0;
	right: 0;
}

.btn-sel {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-family: "Lato", sans-serif;
	font-weight: 400;
	width: 210px;
	max-width: 210px;
	padding: 16px 36px;
	background-color: transparent;
	border: 1px solid #5ad2f0;
	color: #5ad2f0;
}


#sell a:hover {
	text-decoration: none;
	color: #fff;
	background-color: #5ad2f0;
}

.btn{
	padding: 15px 30px;
	border-radius: 0;
	-webkit-transition: border-color 0.4s, color 0.4s;
	transition: border-color 0.4s, color 0.4s;
}

#sell-3 {
	text-decoration: none;
	color: #5ad2f0;
}

#sell-3:hover {
	background-color: #5ad2f0;
	text-decoration: none;
	color: #fff; 
}


/****
PRESS
*****/
#press {
	box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.08);
	background-color: #e8e8e8;
}

.press {
	padding: 22px 0;
}

/*.citron {
	padding-top: 7px;
}


*/

.echos {
	padding-left: 29px;
}


ul.social-icons, ul.links{
	list-style: none;
	padding: 0;
}

ul.social-icons {
	position: absolute;
	top: 40px;
	right: 0px;
}

ul.social-icons > li{
	float: left;
	margin-right: 25px;
}

ul.social-icons > li > a{
	color: #333;
	width: 58px;
	height: 58px;
	line-height: 58px;
	border-radius: 100%;
	background: transparent;
	display: block;
	text-align: center;
}

ul.links {
	position: absolute;
	padding-left: 183px;
/*	padding-left: 135px;
*/	padding-right: 183px;
	height: 30px;
	width: 100%;
	margin-top: 58px;
}

ul.links > li {
	font-size: 14px;
	padding: 10px 25px;
	float: left;
}

ul.links > li:after {
	content: "";
	display: inline-block;
	position: relative;
	height: 14px;
	min-height: 14px;
	min-width: 1px;
	width: 1px;
	background-color: #ffffff;
	top: 3px;
	left: 26px;
}

ul.links > li:last-child:after {
	background-color: transparent;
}







/* RESPONSIVE MEDIA QUERIES */
/*@media screen and (min-width: 768px){

	.jumbotron h1, 
	.jumbotron .h1 {
		font-size: 50px;
	}
}*/

/* iPad in portrait & landscape */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px)  { 

/* STYLES GO HERE */

}

@media only screen and (min-device-width : 320px) and (max-device-width : 667px) { 

	.jumbotron .container {
		padding: 0;
	}

	.navbar {
		z-index: 20000;
	}

	#nav-link {
		display: none;
	}

	#nav-expander {
		display: block;
		top: 8px;
	}

	#chat-expander {
		position: absolute;
		display: block;
		top: 0;
		right: 0;
		padding: 22px 15px;: 
	}

	#navbar-home {
		top: 0;
		height: 58px;
	}

	.navbar-brand {
		padding: 0;
		margin: 0;
		width: 108px;
		min-width: 108px;
		max-width: 108px;
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		margin-top: 14px;
	}

	.navbar-brand img {
		margin-left: auto;
		margin-right: auto;
		height: 31px;
	}

	.menu-toggle{
		position: absolute;
		left: 15px;
		right: auto;
		top: 7px;
		font-size: 30px;
		color: #fff;
	}

	.menu .nav {
		margin-top: 35px;
	}

	.menu .nav a:active {
		text-decoration: none;
	}

	ul.social-icons {
		position: relative;
	}

	.menu .social-icons {
		display: block; 
		position: relative;
		height: 50px;
		margin-top: 150px;
	}

	.menu .social-icons > li > a {
		width: 70px;
		height: 70px;
		margin-left: 5px;
		margin-right: 5px;
	}

	.menu .social-icons > li > a:active {
		text-decoration: none;
	}

	#sell-1 {
		position: relative;
		display: block;
		margin-top: 40px;
		color: #fff;
		width: 70%;
		height: 60px;
		margin-left: auto;
		margin-right: auto;
		line-height: 36px;
		font-size: 20px;
	}

	#sell-1:active {
		background-color: #fff;
		color: #000;
		text-decoration: none;
	}

	#sell-1:hover {
		background-color: #fff;
		color: #000;
		text-decoration: none;
	}

	.header-info {
		margin-top: 20px;
		height: auto;
	}

	.jumbotron h1 {
		display: block;
		position: absolute;
		margin-left: auto;
		margin-right: auto;
		font-size: 25px;
		line-height: 1.2;
		width: 100%;
		max-width: 100%;
		top: 200px;
	}

	.jumbotron h1:after {
		position: relative;
		content: "";
		background-color: #fff;
		height: 2px;
		min-height: 2px;
		width: 44px;
		min-width: 44px;
		top: 20px;
		left: 50%;
		transform: translateX(-50%);
		margin-bottom: 72px;
		display: block;
	}

	.jumbotron .catch {
		display: block;
		text-align: center;
		position: absolute;
		font-size: 16px;
		padding: 10px 60px;
		top: 392px;
	}

	.jumbotron .header-btn {
		margin: 0;
		position: fixed;
		width: 100%;
		min-width: 100%;
		bottom: 0;
		z-index: 10000;
	}

	.btn-sel {
		width: 100%;
		min-width: 100%;
		border-radius: 0px;
		height: 58px;
		font-weight: 700;
		border: none;
		line-height: 28px;
	}

	.method {
		padding: 0px;
	}

	.method .container {
		margin: 0;
		width: 100%;
		padding: 48px 18px;
	}

	.method #how-title {
		margin-top: 10px;
		margin-bottom: 30px;
	}

	.service-item {
		border-radius: 7px;
		background-color: #ffffff;
		box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.16);
		margin-bottom: 50px;
		padding-top: 38px;	
		padding-bottom: 38px;
	}

	.service-item .icon {
		margin-bottom: 30px;
	}

	.service-item .title {
		margin-top: 19px;
		margin-bottom: 11px;
	}

	.icon-pc {
		display: none;
	}

	.icon-mob {
		display: block;
	}

	.btn-chat {
		margin-bottom: 30px;
	}

	.btn-chat:active {
		background-color: #35CD79;
	}

	.btn-chat:hover {
		background-color: #35CD79;
	}

	/*.crisp-client-container[data-full-view=true] .crisp-client-excerpt .crisp-client-excerpt-minimized .crisp-client-excerpt-minimized-pane {
		display: none!important;
	}*/

	#intercom-container .intercom-launcher-enabled {
		display: none!important;
	}

}