@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500');
@import url('https://fonts.googleapis.com/css?family=PT+Sans:400,700');


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

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

body {
	background-color: #111;
	color: #111;
	font-weight: 100;
	font-family: 'Raleway', sans-serif;
	overflow-y: scroll;
	overflow-x: hidden;
}

a{
	text-decoration: none;
}

.sectionWrapper{
	width: 100%;
}

.sectionWrapper.headerWrapper{
	background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #000;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}


.sectionWrapper .sectionContainer{
	max-width: 1300px;
	margin-left:auto;
	margin-right: auto;
}


.sectionWrapper.headerWrapper{
	position: fixed;
	z-index: 1000;
}

.sectionWrapper.headerWrapper .sectionContainer{
	height: 70px;
	padding: 10px;
	box-sizing: border-box;
}

#.sectionWrapper.headerWrapper .sectionContainer .logo{
	width: 80px;
	background-image: url('../img/logo.svg');
	background-size: contain;
	background-position: center;
	height: 50px;
	background-repeat: no-repeat;
	float: left;
}





.sectionWrapper.headerWrapper .sectionContainer #toggleMenu {
  width: 36px;
  height: 34px;
  float: right;
  margin-top: 14px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.sectionWrapper.headerWrapper .sectionContainer #currentlySelectedMenu {
	height: 50px;
    line-height: 53px;
    color: #FFF;
    min-width: 140px;
    float: right;
    font-size: 1.1em;
    padding-right: 1em;
    margin-right: 1em;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}


.sectionWrapper.headerWrapper .sectionContainer #currentlySelectedMenu .menuItem{
	position: absolute;
	right: 0;
	top: 0;
	white-space: nowrap;
	transform : translateY(50px);
	transition: all .3s ease;
	opacity: 0;
}

.sectionWrapper.headerWrapper .sectionContainer #currentlySelectedMenu .menuItem.visible{
	transform : translateY(0px);
	opacity: 1;
}

.sectionWrapper.headerWrapper .sectionContainer #toggleMenu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #FFF;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}


.sectionWrapper.headerWrapper .sectionContainer #toggleMenu span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.sectionWrapper.headerWrapper .sectionContainer #toggleMenu span:nth-child(2) {
  top: 12px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.sectionWrapper.headerWrapper .sectionContainer #toggleMenu span:nth-child(3) {
  top: 24px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.sectionWrapper.headerWrapper .sectionContainer #toggleMenu.opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 3px;
}

.sectionWrapper.headerWrapper .sectionContainer #toggleMenu.opened span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.sectionWrapper.headerWrapper .sectionContainer #toggleMenu.opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 26px;
  left: 3px;
}







.sectionWrapper.headerWrapper .sectionContainer .logo{
    background-image: url("../img/logo.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 65px auto;
    cursor: pointer;
    float: left;
    height: 50px;
    width: 80px;
}

.sectionWrapper.headerWrapper .sectionContainer .lotusConseil{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    cursor: pointer;
    float: left;
    height: 50px;
    line-height: 50px;
    width: 120px;
    color: #FFF;
    background-image: url(../img/logoText.svg);
    margin-left: 10px;
}






.sectionWrapper.footerWrapper{
	background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid #FFF;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: -75px;
    z-index: 10;
    transition: all .3s ease;
}

.sectionWrapper.footerWrapper.visible{
	bottom: 0;
}

.sectionWrapper.footerWrapper .sectionContainer{
	height: 70px;
	padding: 10px;
	box-sizing: border-box;
}


.sectionWrapper.footerWrapper .sectionContainer .LBLogo{
	height: 100%;
	width: 200px;
	float: right;
	background-image: url('../img/LB.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 160px auto;
}

.sectionWrapper.footerWrapper .sectionContainer .PublicisLogo{
	height: 100%;
	width: 200px;
	float: right;
	background-image: url('../img/Publicis.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 160px auto;
}


.sectionWrapper.footerWrapper .sectionContainer .rights{
	float: left;
    font-size: 0.8em;
    line-height: 54px;
}

.sectionWrapper.footerWrapper .sectionContainer .partnerWith{
	float: right;
    font-size: 0.8em;
    font-weight: 400;
    line-height: 54px;
}




#mainSliderContainer{
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

/* OWL MAIN SLIDER*/
#mainSlider {
  position: relative;
  height: 100%;
}
#mainSlider .owl-nav{
	display: none;
}

#mainSlider div:not(.owl-controls) {
  height: inherit;
}
#mainSlider .owl-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


#mainSlider div.owl--text {
	position: absolute;
    bottom: 20%;
    right: 0;
    min-width: 30%;
    font-weight: 100;
    font-size: 1.2em;
    min-height: 24px;
    border-radius: 1px;
    height: auto;
    padding: 2em;
    color: #FFF;
    font-size: 2.5em;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
    line-height: 0.8em;
    text-align: right;
}

#mainSlider div.owl--text span{
	font-weight: 400;
    line-height: 2em;
    font-size: 1.3em;
    text-transform: uppercase;
    font-weight: 700;
}

#mainSlider .owl-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
#mainSlider .owl-controls .owl-buttons div {
  position: absolute;
  top: 0;
  bottom: 0;
  display: inline-block;
  zoom: 1;
  margin: 0;
  width: 50px;
  height: 50px;
  line-height: 25px;
  text-align: center;
  font-size: .9em;
  border-radius: 3px;
  color: #FFF;
  text-transform: capitalize;
}
#mainSlider .owl-controls .owl-buttons .owl-prev {
  left: 5px;
}
#mainSlider .owl-controls .owl-buttons .owl-next {
  right: 5px;
}


.sectionTitle{
	width: 100%;
	padding: 2em;
	
}

#workGrid{
	height: 100%;
	padding-top: 70px;
	box-sizing: border-box;
}


#workGrid .workGridItem{
	float: left;
	width: 33.33%;
	height: 33.33%;
	position: relative;
	box-shadow:  0 0 0 1px rgba(0,0,0,0.8) inset, 0 0 0 200px rgba(0,0,0,0) inset;
	transition: all 0.7s ease;
	overflow: hidden;
	cursor: pointer;
}

#workGrid .workGridItem .image{
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-size: cover;
	background-position: center;
	transition: all 0.7s ease;
}

#workGrid .workGridItem:hover{
	box-shadow:  0 0 50px 0px rgba(0,0,0,0.5) inset, 0 0 0 500px rgba(0,0,0,0.7) inset;
}

#workGrid .workGridItem:hover .image{
	transform: scale(2) rotate(10deg);
	filter: blur(4px) grayscale(100%);
}


#workGrid .workGridItem .textWrapper{
	display: table;
	height: 100%;
	width: 100%;
	position: absolute;
}

#workGrid .workGridItem .textWrapper .textContainer{
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	padding: 1em;
	width: 100%;
	text-align: center;
	color: #FFF;
}

#workGrid .workGridItem .textWrapper .textContainer .client{
	font-size: 2em;
	filter: blur(20px);
	transform: translate(0px, -100px);
	transition: all .5s ease;
	opacity: 0;
}

#workGrid .workGridItem:hover .textWrapper .textContainer .client{
	opacity: 1;
	filter: blur(0px);
	transform: translate(0px, 0px);
}


#workGrid .workGridItem .textWrapper .textContainer .campaign{
	padding-top: 0.5em;
	font-size: 1.2em;
	filter: blur(20px);
	transition: all .5s ease;
	transform: translate(0px, 100px);
	opacity: 0;
}

#workGrid .workGridItem:hover .textWrapper .textContainer .campaign{
	opacity: 1;
	filter: blur(0px);
	transform: translate(0px, 0px);
}




#clientsGrid{

	padding-top: 70px;
	box-sizing: border-box;
	perspective: 1000px;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}


#clientsGrid .clientsGridItem{
	#float: left;
	#width: 25%;
	padding-bottom: 100%;
	#position: relative;
	box-shadow:  0 0 0 1px rgba(0,0,0,0.8) inset, 0 0 0 200px rgba(0,0,0,0) inset;
	transition: all 0.7s ease;
	overflow: hidden;
	transform: scale(0.9);
	box-shadow: 0 0 0 0px rgba(0,0,0,0.5);
	cursor: pointer;
}

#clientsGrid .clientsGridItem .image{
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-size: cover;
	background-position: center;
	transition: all 0.7s ease;
}


#clientsGrid .clientsGridItem:hover{
	z-index: 2;
	transform: scale(1.1) ;
	box-shadow: 0 0 0 50px rgba(0,0,0,0.5);
}


#clientsGrid.owl-theme .owl-nav{
	display: none;
	
}

#clientsGrid.owl-theme .owl-dots{
	position: relative;
	margin-top : 20px;
	
}






#agencyGrid{
	height: 100%;
	padding-top: 70px;
	box-sizing: border-box;
}


#agencyGrid .agency360{
	float: left;
	width: 50%;
	height: 100%;
	position: relative;
	box-shadow:  0 0 0 1px rgba(0,0,0,0.8) inset, 0 0 0 200px rgba(0,0,0,0) inset;
	transition: all 0.7s ease;
	overflow: hidden;
	
	display: table;
}

#agencyGrid .agency360 .image{
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -2;
	transition: all 0.7s ease;
	background-image: url('../img/360.jpg');
	background-size: cover;
	background-position: center;
}


#agencyGrid .agency360:hover .image{
	transform:  scale(2);
	filter: blur(5px);
}

#agencyGrid .agency360 .textContainer:before{
	content : "";
	height : 100%;
	width : 100%;
	position : absolute;
	top:0;
	left:0;
	z-index: -1;
	background-color : rgba(0,0,0,0.6);
}

#agencyGrid .agency360 .textContainer{
	display: table-cell;
	vertical-align: middle;
	font-size: 5em;
	color: #FFF;
	padding-left: 1em;
	padding-right: 1em;
	position : relative;
	z-index : 1;
	text-shadow: 0 0 2px rgba(0,0,0,0.5);
	transition: all .3s ease;
}

#agencyGrid .agency360 .textContainer .illustrationContainer {
    height: 0%;
    padding-top: 0%;
    overflow: hidden;
    transition: all .3s ease;
    font-size: 0.25em;
}

#agencyGrid .agency360:hover .textContainer .illustrationContainer{
	padding-bottom: 30%;
	padding-top: 10%;
}


#agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem{
	width: 30%;
	padding-bottom: 30%;
	background-color: rgba(0,0,0,0.1);
	float: left;
	display: inline-block;
	margin-left: 1%;
	margin-right: 1%;
	opacity: 0;
	transform: scale(0.8);
	transition: all .3s ease 0;
	position: relative;
	background-size: auto 40%;
	background-position: center 40%;
	background-repeat: no-repeat;
	cursor: pointer;
}

#agencyGrid .agency360:hover .textContainer .illustrationContainer .illustrationItem:nth-child(1){
	transition: all .3s ease 0.3s;
}

#agencyGrid .agency360:hover .textContainer .illustrationContainer .illustrationItem:nth-child(2){
	transition: all .3s ease 0.5s;
}

#agencyGrid .agency360:hover .textContainer .illustrationContainer .illustrationItem:nth-child(3){
	transition: all .3s ease 0.7s;
}

#agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem.vision{
	
	background-image: url('../img/ourVision.svg');
}
#agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem.awards{
	background-image: url('../img/reward.svg');
}
#agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem.visit360{
	background-image: url('../img/360view.svg');
	background-size: auto 30%;
}



#agencyGrid .agency360:hover .textContainer .illustrationContainer .illustrationItem{
	opacity: 1;
	transform: scale(1);
	transition: all .3s ease;
}

#agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem:before{
	background-color: rgba(0,0,0,0.0);
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;
	transition: all .3s ease;
	box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
}
	
	
#agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem:hover:before{
	background-color: rgba(0,0,0,0.2);
	box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
}


#agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem .illustrationText{
	color: #FFF;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0.5em;
    text-align: center;
}


#agencyGrid .artAtWork{
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	box-shadow:  0 0 0 1px rgba(0,0,0,0.8) inset, 0 0 0 200px rgba(0,0,0,0) inset;
	transition: all 0.7s ease;
	overflow: hidden;
	
	display: table;
	cursor: pointer;
	
}


#agencyGrid .artAtWork .image{
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	filter: blur(5px);
	background-image: url('../images/main/artAtWorkCover.jpg');
	background-size: cover;
	background-position: top;
	transition: all 1s ease-in-out;
	transform: translate3d(0,0,0);
	
}

#agencyGrid .artAtWork:before{
	content : "";
	height : 100%;
	width : 100%;
	position : absolute;
	top:0;
	left:0;
	background-color : rgba(0,0,0,0.6);
	transition: all .3s ease;
}


#agencyGrid .artAtWork .textContainer{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 4em;
	color: #FFF;
	position : relative;
	z-index : 1;
	text-shadow: 0 0 2px rgba(0,0,0,0.5);
	transition: all .3s ease;
}



#agencyGrid .artAtWork:hover .image{
	background-position: bottom;
	filter: blur(0);
}

#agencyGrid .artAtWork:hover .textContainer, #agencyGrid .artAtWork:hover:before{
	#opacity: 0;
}


#agencyGrid .teamLotus{
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	box-shadow:  0 0 0 1px rgba(0,0,0,0.8) inset, 0 0 0 200px rgba(0,0,0,0) inset;
	transition: all 0.7s ease;
	overflow: hidden;
	
	display: table;
	cursor: pointer;
}


#agencyGrid .teamLotus .image{
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	
	background-image: url('../images/team/teamImage.php');
	background-size: cover;
	background-position: left;
	transition: all 1s ease-in-out;
	transform: translate3d(0,0,0);
	
}

#agencyGrid .teamLotus:before{
	content : "";
	height : 100%;
	width : 100%;
	position : absolute;
	top:0;
	left:0;
	background-color : rgba(0,0,0,0.6);
	transition: all .3s ease;
}


#agencyGrid .teamLotus .textContainer{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 4em;
	color: #FFF;
	position : relative;
	z-index : 1;
	text-shadow: 0 0 2px rgba(0,0,0,0.5);
	transition: all .3s ease;
}



#agencyGrid .teamLotus:hover .image{
	background-position: right;
}
/*
#agencyGrid .teamLotus:hover .textContainer, #agencyGrid .teamLotus:hover:before{
	opacity: 0;
}*/






#joinTheTeam{
	height: 100%;
	padding-top: 70px;
	box-sizing: border-box;
}



#joinTheTeam .image{
	position: absolute;
	height: calc(100% - 70px);
	width: 100%;
	left: 0;
	top: 70px;
	z-index: -1;
	transition: all 0.7s ease;
	background-image: url('../images/joinTheTeam.jpg');
	background-size: cover;
	background-position: center;
}

#joinTheTeam .image:after{
	content : "";
	height : 100%;
	width : 100%;
	position: absolute;
	top:0;
	left:0;
	background-color: rgba(0,0,0,0.2);
}


#joinTheTeam .joinTheTeamText{
	float: left;
	width: 50%;
	height: 100%;
	position: relative;
	transition: all 0.7s ease;
	overflow: hidden;
	background-color: rgba(0,0,0,0.8);
	display: table;
}

#joinTheTeam .joinTheTeamText .textWrapper{
	display: table-cell;
	vertical-align: middle;
	color: #FFF;
	text-shadow: 0 0 3px rgba(0,0,0,0.8);
	font-size: 1.3em;
}

#joinTheTeam .joinTheTeamText .textWrapper .title{
	font-size: 1.2em;
    padding-top: 1.5em;
    font-weight: 400;
    margin-left: 10%;
    margin-right: 10%;
    text-transform: uppercase;
}

#joinTheTeam .joinTheTeamText .textWrapper .text{
	padding-left: 0em;
	font-size: 0.9em;
	padding-right: 4em;
	margin-left: 10%;
	margin-right: 10%;
}


#joinTheTeam .jobsList{
	float: left;
	width: 50%;
	height: 100%;
	position: relative;
	transition: all 0.7s ease;
	overflow: hidden;
	display: table;
	table-layout: fixed;
}


#joinTheTeam .jobsList .jobsListContainer{
	height: 100%;
	width: 100%;
	padding: 5%;
	overflow-y: auto;
	display: table-cell;
	vertical-align: middle;
}

#joinTheTeam #jobOffersContainer .owl-nav{
	display: none;
}

#joinTheTeam #jobOffersContainer .owl-stage-outer{
	overflow: hidden;
}


#joinTheTeam #jobOffersContainer.owl-theme .owl-dots{
	position: absolute;
    margin-top: -60px;
}

#joinTheTeam #jobOffersContainer.owl-theme .owl-dots .owl-dot span{
	box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

#joinTheTeam #jobOffersContainer.owl-theme .owl-dots .owl-dot.active span, #joinTheTeam #jobOffersContainer.owl-theme .owl-dots .owl-dot:hover span{
	background: #000;
}






#joinTheTeam .jobsList .jobsListContainer .jobListItem{
	background-color: rgba(255,255,255,0.9);
	width: 100%;
	box-shadow: 0 0 3px 0px rgba(0,0,0,0.3);
	margin-bottom: 3%;
	padding: 1em 1.5em;
	padding-bottom: 2em;
	min-height: 400px;
}


#joinTheTeam .jobsList .jobsListContainer .jobListItem .jobTitle{
	font-size: 1.3em;
	font-weight: bold;
	color: #333;
	padding: 0.5em 0;
}

#joinTheTeam .jobsList .jobsListContainer .jobListItem .jobDescription{
	padding-top: 0.5em;
	color: #666;
}



#joinTheTeam .jobsList .jobsListContainer .jobListItem .applyButton{
	padding: 1em 2em;
    font-size: 1em;
    box-shadow: 0 0 0 1px;
    font-weight: 400;
    display: block;
    cursor: pointer;
    margin-top: 2em;
    max-width: 200px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}







#contactUS{
	height: 100%;
	padding-top: 70px;
	box-sizing: border-box;
}

#contactUS .mapContainer{
	float: left;
	width: 60%;
	height: 100%;
	position: relative;
	transition: all 0.7s ease;
	overflow: hidden;
	background-color: rgba(0,0,0,0.8);
	background-color: #FFF;
}

#contactUSMap{
	height: 100%;
	width: 100%;
}
#contactUS .contactCredentials{
	float: right;
	width: 40%;
	height: 100%;
	position: relative;
	transition: all 0.7s ease;
	overflow: hidden;
	display: table;
	background-color: #FFF;
	padding: 3%;
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
}



#contactUS .contactCredentials .contactUsText{
	font-size: 2em;
    text-align: center;
    font-weight: bold;
}


#contactUS .contactCredentials .contactInfoContainer {
	margin-top: 10%;
}


#contactUS .contactCredentials .contactInfoContainer .contactInfo{
	width: 100%;
    padding-left: 60px;
    min-height: 60px;
    padding-bottom: 20px;
    padding-top: 20px;
    background-repeat: no-repeat;
    background-size: auto 20px;
    background-position: 10px center;
}


#contactUS .contactCredentials .contactInfoContainer .contactInfo.location{
	background-image: url(../img/marker.svg);
	background-size: auto 36px;
}

#contactUS .contactCredentials .contactInfoContainer .contactInfo.phone{
	background-image: url(../img/phone.svg);
	background-size: auto 29px;
}

#contactUS .contactCredentials .contactInfoContainer .contactInfo.fax{
	background-image: url(../img/fax.svg);
	background-size: auto 31px;
}

#contactUS .contactCredentials .contactInfoContainer .contactInfo.email{
	background-image: url(../img/email.svg);
	background-size: auto 19px;
}

#contactUS .contactCredentials .contactInfoContainer .contactInfo.hours{
	background-image: url(../img/hours.svg);
	background-size: auto 29px;
}


#contactUS .contactCredentials .sendMessageButton{
	padding: 1em 2em;
	font-size: 1em;
	box-shadow: 0 0 0 1px;
	font-weight: 400;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	cursor: pointer;
	margin-top: 2em;
	position: relative;
}

.verticalAlignMe{
	display: table-cell;
	vertical-align: middle;
}


.openPageContainer{
	height: 100%;
	width: 100%;
}


.btnEffect span{
	position: relative;
	z-index: 1;
}
.btnEffect{
	transition: all .3s ease;
}
.btnEffect:after{
	content: "";
	height: 100%;
	width: 0%;
	position: absolute;
	left: 50%;
	top: 0;
	background-color: #000;
	transition: all .3s ease;
}
.btnEffect:hover{
	color: #FFF;
}
.btnEffect:hover:after{
	width: 100%;
	left: 0%;
}

@media screen and (max-width: 46.0625em) {

	.codrops-header {
		margin-bottom: 0;
		padding-bottom: 1em;
	}

	.column {
		width: 100%;
		min-width: auto;
		min-height: 0;
		padding: 2em; 
		text-align: center;
	}

	.column p {
		font-size: 1.3em;
	}

	.column:nth-child(2) {
		text-align: center;
		box-shadow: 0 -1px 0 rgba(0,0,0,0.1);
	}
}

@media screen and (max-width: 25em) {

	.codrops-header {
		font-size: 80%;
	}

	.codrops-top {
		font-size: 120%;
	}

	.codrops-icon span {
		display: none;
	}

}





/*SOCIAL MEDIA BUTTON*/
@-webkit-keyframes 
badbounce {  0%, 100% {
 -webkit-transform: translateY(0px);
}
 10% {
 -webkit-transform: translateY(6px);
}
 30% {
 -webkit-transform: translateY(-4px);
}
 70% {
 -webkit-transform: translateY(3px);
}
 90% {
 -webkit-transform: translateY(-2px);
}
}
@-moz-keyframes 
badbounce {  0%, 100% {
 -moz-transform: translateY(0px);
}
 10% {
 -moz-transform: translateY(6px);
}
 30% {
 -moz-transform: translateY(-4px);
}
 70% {
 -moz-transform: translateY(3px);
}
 90% {
 -moz-transform: translateY(-2px);
}
}
@keyframes 
badbounce {  0%, 100% {
 -webkit-transform: translateY(0px);
 -moz-transform: translateY(0px);
 -ms-transform: translateY(0px);
 -o-transform: translateY(0px);
 transform: translateY(0px);
}
 10% {
 -webkit-transform: translateY(6px);
 -moz-transform: translateY(6px);
 -ms-transform: translateY(6px);
 -o-transform: translateY(6px);
 transform: translateY(6px);
}
 30% {
 -webkit-transform: translateY(-4px);
 -moz-transform: translateY(-4px);
 -ms-transform: translateY(-4px);
 -o-transform: translateY(-4px);
 transform: translateY(-4px);
}
 70% {
 -webkit-transform: translateY(3px);
 -moz-transform: translateY(3px);
 -ms-transform: translateY(3px);
 -o-transform: translateY(3px);
 transform: translateY(3px);
}
 90% {
 -webkit-transform: translateY(-2px);
 -moz-transform: translateY(-2px);
 -ms-transform: translateY(-2px);
 -o-transform: translateY(-2px);
 transform: translateY(-2px);
}
}

.ss_animate {
  -webkit-animation: badbounce 1s linear;
  -moz-animation: badbounce 1s linear;
  animation: badbounce 1s linear;
}

#ss_menu_overlay{
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	z-index: 10;
	
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.5s linear;
}

#ss_menu_overlay.open{
	visibility: visible;
	opacity: 1;
}

#ss_menu {
  bottom: 100px;
  width: 60px;
  height: 60px;
  color: #fff;
  position: fixed;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  right: 30px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  z-index: 11;
}

#ss_menu > .menu {
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
  color: #fff;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

#ss_menu > .menu .share {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

#ss_menu > .menu .share .circle {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  top: 50%;
  margin-top: -6px;
  left: 12px;
  opacity: 1;
}

#ss_menu > .menu .share .circle:after, #ss_menu > .menu .share .circle:before {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  content: '';
  opacity: 1;
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
}

#ss_menu > .menu .share .circle:after {
  left: 20.78461px;
  top: 12.0px;
}

#ss_menu > .menu .share .circle:before {
  left: 20.78461px;
  top: -12.0px;
}

#ss_menu > .menu .share .bar {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  width: 24px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  left: 18px;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

#ss_menu > .menu .share:hover .bar{
	background-color: #FFF;
}

#ss_menu > .menu .share .bar:before {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  content: '';
  width: 24px;
  height: 3px;
  background: #000;
  position: absolute;
  left: 0px;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: rotate(-60deg);
  -moz-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

#ss_menu > .menu .share:hover .bar:before{
	background-color: #FFF;
}


#ss_menu > .menu .share.close .circle { opacity: 0; background-color: #FFF; }
#ss_menu > .menu .share.close .circle:before{
	background-color: #FFF;
}
#ss_menu > .menu .share.close .circle:after{
	background-color: #FFF;
}


#ss_menu > .menu .share:hover .circle {background-color: #FFF; }
#ss_menu > .menu .share:hover .circle:before{
	background-color: #FFF;
}
#ss_menu > .menu .share:hover .circle:after{
	background-color: #FFF;
}


#ss_menu > .menu .share.close .bar {
  top: 50%;
  margin-top: -1.5px;
  left: 50%;
  margin-left: -12px;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(405deg);
  -moz-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  transform: rotate(405deg);
  background-color: #FFF;
}

#ss_menu > .menu .share.close .bar:before {
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-450deg);
  -moz-transform: rotate(-450deg);
  -ms-transform: rotate(-450deg);
  -o-transform: rotate(-450deg);
  transform: rotate(-450deg);
  background-color: #FFF;
}

#ss_menu > .menu.ss_active {
  background: #000;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
}

#ss_menu > div, #ss_menu > a > div{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  background: #FFF;
  border-radius: 50%;
  display: table;
}

#ss_menu > a > div i {
  display: table-cell;
  vertical-align: middle;
  color: #000;
  transition: all .3s ease;
}

#ss_menu > a > div i:hover{
	color: #FFF;
}

#ss_menu .iconContainer{
	transition: all .3s ease;
	box-shadow: 0 0 0 3px rgba(0,0,0,0.3);
}

#ss_menu .iconContainer:hover{
	transform: scale(1.1);
}



#ss_menu > div:hover, #ss_menu > a > div:hover{
  background: #000;
  cursor: pointer;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

#ss_menu a:nth-child(1) div {
  top: 0px;
  left: -300px;
}

#ss_menu a:nth-child(2) div{
  top: -77.65px;
  left: -289.78px;
}

#ss_menu a:nth-child(3) div{
  top: -150px;
  left: -259.81px;
}

#ss_menu a:nth-child(4) div{
  top: -212.13px;
  left: -212.13px;
}

#ss_menu a:nth-child(5) div{
  left: -150px;
  top: -259.81px;
}

#ss_menu a:nth-child(6) div{
  left: -77.65px;
  top: -289.78px;
}

#ss_menu a:nth-child(7) div{
  top: -300px;
  left: 0.0px;
}




.lighBoxWrapper{
	position: absolute;
	height: calc(100% - 70px);
	width: 100%;
	top: 70px;
	left: 0;
	background-color: rgba(0,0,0,0.9);
	z-index: 1001;
	transform: scaleX(0.01) translate3d(0,0,0);
	transition: all 0.5s ease;
	opacity: 0;
}

.lighBoxWrapper .lightBoxHeaderContainer{
	height: 70px;
	position: fixed;
	width: 100%;
	background-color: #FFF;
	z-index: 1;
	box-shadow: 0 0 3px rgba(0,0,0,0.4);
	opacity: 0;
	transition: all .3s ease;
	top: -70px;
}

.lighBoxWrapper .lightBoxHeaderContainer .lightBoxHeader{
	height: 70px;
    padding: 10px;
    box-sizing: border-box;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}


.lighBoxWrapper .lightBoxHeaderContainer .lightBoxHeader .logo{
    background-image: url("../img/logoBlack.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 65px auto;
    cursor: pointer;
    float: left;
    height: 50px;
    width: 80px;
}

.lighBoxWrapper .lightBoxHeaderContainer .lightBoxHeader .lotusConseil{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    cursor: pointer;
    float: left;
    height: 50px;
    line-height: 50px;
    width: 120px;
    color: #FFF;
    background-image: url(../img/logoTextBlack.svg);
    margin-left: 10px;
}


.lighBoxWrapper .lightBoxHeaderContainer .lightBoxHeader .closeLightBoxButton{
	height: 50px;
	width: 50px;
	background-image: url('../img/closeLighbox.svg');
	background-size: 30px;
	background-position: center;
	background-repeat: no-repeat;
	float: right;
	transition: all .3s ease;
	transform: scale(0.8) rotate(0deg);
	cursor: pointer;
}

.lighBoxWrapper .lightBoxHeaderContainer .lightBoxHeader .closeLightBoxButton:hover{
	transform: scale(1) rotate(90deg);
}


.lighBoxWrapper.visible{
	transform: scaleX(1) translate3d(0,0,0);
	opacity: 1;
}


.lighBoxWrapper.showbar .lightBoxHeaderContainer{
	opacity: 1;
}
	
.lighBoxWrapper .scrollableContainer{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.lighBoxWrapper .lighBoxContainer{
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	display: table;
	table-layout: fixed;
}

.lighBoxWrapper .lighBoxContainer .lighBoxContent{
	display: table-cell;
    vertical-align: middle;
}


.displayTable{
	display: table;
	width: 100%;
	table-layout: fixed;
}

.verticalCenter{
	display: table-cell;
	vertical-align: middle;
	background-color: rgba(255,255,255,1);
	color: #000;
}


/* Campaign page */

#campaignDetails{
	height: auto;
	width: 100%;
	overflow: hidden;
}

#campaignDetails .campaignDescription{
	width: 40%;
	padding: 2em;
	box-sizing: border-box;
	vertical-align: middle;
	display: inline-block;
	font-size: 1.3em;
	color: #333;
	float: left;
}


#campaignDetails .campaignDescription .client{
	font-size: 1.8em;
	color: #000;
	text-transform: uppercase;
}

#campaignDetails .campaignDescription .campaignName{
	font-size: 1.2em;
	color: #666;
	padding-bottom: 1em;
	padding-top: 0.2em;
	text-transform: uppercase;
}


#campaignDetails .campaignMainVisualContainer{
	width: 60%;
	vertical-align: middle;
	display: inline-block;
	position: relative;
	cursor: pointer;
	float: right;
}

#campaignDetails .campaignMainVisualContainer.video:before{
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-color: rgba(0,0,0,0);
	transition: all .3s ease;
}

#campaignDetails .campaignMainVisualContainer.video:hover:before{
	background-color: rgba(0,0,0,0.3);
}

#campaignDetails .campaignMainVisualContainer.video:after{
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	transform: scale(0.7);
	opacity: 0.5;
	transition: all .3s ease;
	background-image: url('../img/play.svg');
	background-size: 100px;
	background-position: center;
	background-repeat: no-repeat;
}

#campaignDetails .campaignMainVisualContainer.video:hover:after{
    transform: scale(1);
    opacity: 0.8;
}


#campaignDetails .campaignMainVisualContainer img {
	width: 100%;
	display: block;
}



#campaignDetailsMediaContainer{
	max-width: 100%;
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

#campaignDetailsMediaContainer .mediaPreviewContainer{
	display: inline-block;
	margin: 10px;
	position: relative;
	cursor: pointer;
	vertical-align: middle;
}

#campaignDetailsMediaContainer .mediaPreviewContainer img{
	max-height: 120px;
	width: auto;
	max-width: 180px;
	height: auto;
}


#campaignDetailsMediaContainer .mediaPreviewContainer.image:after{
	position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
    left: 0;
    background-image: url(../img/view.svg);
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all .3s ease;
    background-color: rgba(0,0,0,0.4);
}

#campaignDetailsMediaContainer .mediaPreviewContainer.image:hover:after{
    opacity: 0.6;
}


#campaignDetailsMediaContainer .mediaPreviewContainer.video:after{
	position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
    left: 0;
	background-image: url(../img/play.svg);
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: all .3s ease;
    background-color: rgba(0,0,0,0);
    transform: scale(0.7);
}

#campaignDetailsMediaContainer .mediaPreviewContainer.video:hover:after{
    opacity: 0.8;
    transform: scale(1);
}

#campaignDetailsMediaContainer .mediaPreviewContainer.audio{
	height: 100px;
	width: 100px;
	background-image: url('../img/sound.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px;
	opacity: 0.5;
	background-color: rgba(255,255,255,0.3);
	margin-bottom: 0;
	margin-top: 0;
	border-radius: 50%;
	transition: all .3s ease;
}

#campaignDetailsMediaContainer .mediaPreviewContainer.audio:hover{
	opacity: 1;
	background-color: rgba(255,255,255,0.1);
}


#clientDetails{
	height: auto;
	width: 100%;
	overflow: hidden;
}

#clientDetails .clientDescription{
	width: 40%;
	padding: 2em;
	box-sizing: border-box;
	vertical-align: middle;
	display: inline-block;
	font-size: 1.3em;
	color: #333;
	float: left;
}


#clientDetails .clientDescription .client{
	font-size: 1.8em;
	color: #000;
	text-transform: uppercase;
	padding-bottom: 1em;
}



#clientDetails .clientMainVisualContainer{
	width: 60%;
	vertical-align: middle;
	display: inline-block;
	position: relative;
	cursor: pointer;
	float: right;
}

#clientDetails .clientMainVisualContainer img {
	max-width: 100%;
	display: block;
	float: right;
}


#clientDetails .workGridItem{
	float: left;
	width: 33.33%;
	padding-bottom: 20%;
	position: relative;
	box-shadow:  0 0 0 1px rgba(0,0,0,0.8) inset, 0 0 0 200px rgba(0,0,0,0) inset;
	transition: all 0.7s ease;
	overflow: hidden;
	cursor: pointer;
}

#clientDetails .workGridItem .image{
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-size: cover;
	background-position: center;
	transition: all 0.7s ease;
}

#clientDetails .workGridItem:hover{
	box-shadow:  0 0 50px 0px rgba(0,0,0,0.5) inset, 0 0 0 200px rgba(0,0,0,0.7) inset;
}

#clientDetails .workGridItem:hover .image{
	transform: scale(2) rotate(10deg);
	filter: blur(4px) grayscale(100%);
}


#clientDetails .workGridItem .textWrapper{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#clientDetails .workGridItem .textWrapper .textContainer{
	display: table;
	vertical-align: middle;
	height: 100%;
	padding: 1em;
	width: 100%;
	text-align: center;
	color: #FFF;
}

#clientDetails .workGridItem .textWrapper .textContainer .campaign{
	padding-top: 0.5em;
	font-size: 1.2em;
	filter: blur(20px);
	transition: all .5s ease;
	transform: translate(0px, 100px);
	opacity: 0;
	display: table-cell;
	vertical-align: middle;
}

#clientDetails .workGridItem:hover .textWrapper .textContainer .campaign{
	opacity: 1;
	filter: blur(0px);
	transform: translate(0px, 0px);
}

#ourVision{
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

#ourVision .visionItemsContainer{
	
}

#ourVision .visionItemsContainer .visionItem{
	float: left;
	width: 33.33333%;
	transition: all .3s ease;
	cursor: pointer;
	padding-top: 1%;
}

#ourVision .visionItemsContainer .visionItem:hover{
	color: #000;
	background-color: #EEE;
}


#ourVision .visionItemsContainer .visionItem.active{
	color: #000;
	background-color: #FFF !important;
	
}







	
	

#ourVision .visionItemsContainer .visionItem .visionItemIcon{
	padding-bottom: 20%;
	position: relative;
}

#ourVision .visionItemsContainer .visionItem .visionItemIcon:before, #ourVision .visionItemsContainer .visionItem .visionItemIcon:after{
	position: absolute;
	height: 100%;
	width: 100%;
	content: "";
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: all .3s ease;
}

#ourVision .visionItemsContainer .visionItem .visionItemIcon.humanCentered:before{
	background-image: url('../img/humanCenteredWhite.svg');
	background-size: auto 80%;
}

#ourVision .visionItemsContainer .visionItem .visionItemIcon.hardWorkers:before{
	background-image: url('../img/hardWorkersWhite.svg');
	background-size: auto 60%;
}

#ourVision .visionItemsContainer .visionItem .visionItemIcon.beUnique:before{
	background-image: url('../img/beUniqueWhite.svg');
	background-size: auto 80%;
}

#ourVision .visionItemsContainer .visionItem .visionItemIcon.humanCentered:after{
	background-image: url('../img/humanCentered.svg');
	background-size: auto 80%;
}

#ourVision .visionItemsContainer .visionItem .visionItemIcon.hardWorkers:after{
	background-image: url('../img/hardWorkers.svg');
	background-size: auto 60%;
}

#ourVision .visionItemsContainer .visionItem .visionItemIcon.beUnique:after{
	background-image: url('../img/beUnique.svg');
	background-size: auto 80%;
}

#ourVision .visionItemsContainer .visionItem .visionItemIcon:after{
	opacity: 0;
}

#ourVision .visionItemsContainer .visionItem:hover .visionItemIcon:before, #ourVision .visionItemsContainer .visionItem.active .visionItemIcon:before{
	opacity: 0;
}

#ourVision .visionItemsContainer .visionItem:hover .visionItemIcon:after, #ourVision .visionItemsContainer .visionItem.active .visionItemIcon:after{
	opacity: 1;
}


#ourVision .visionItemsContainer .visionItem .visionItemText{
	text-align: center;
	padding: 0.5em;
	font-size: 1.5em;
}



#ourVision .visionTextsContainer{
	background-color: #FFF;
}


#ourVision .visionTextItem{
	min-height: 200px;
	background-color: #FFF;
	display: none;
}

#ourVision .visionTextItem.visible{
	display: block;
	padding: 2em;
	padding-top: 3em;
	color: #000;
	font-size: 1.2em;
}



#awardsListing{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2%;
}

#awardsListing .awardsItem{
	margin-bottom: 2%;
}

#awardsListing .awardsItem img{
	width: 100%;
}



#artAtWorkListing{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2%;
}

#artAtWorkListing .description{
	max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
    font-size: 1.2em;
    padding-top: 5em;
    padding-bottom: 5em;
}


#artAtWorkListing .artAtWorkItem{
	margin-bottom: 2%;
	position: relative;
	cursor: pointer;
}

#artAtWorkListing .artAtWorkItem:after{
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	transition: all .3s ease;
	
}

#artAtWorkListing .artAtWorkItem:hover:after{
	background-color: rgba(0,0,0,0);
}

#artAtWorkListing .artAtWorkItem img{
	width: 100%;
}



#teamLotus{
	
}

#teamLotus .teamLotusContainer{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

#teamLotus .teamLotusContainer .teamLotusBlock{
	float: left;
	width: 16.666666%;
	padding-bottom: 16.666666%;
	background-color: #FFF;
	position: relative;
	background-position: center;
	background-size: cover;
}

#teamLotus .teamLotusContainer .teamLotusBlock.departement{
	transition: transform .3s ease;
	cursor: pointer;
	box-shadow : 0 0 0 0px rgba(0,0,0,0.3);
	z-index: 1;
}

#teamLotus .teamLotusContainer .teamLotusBlock.departement:hover{
	transform: scale(1.5);
	z-index: 2;
	box-shadow : 0 0 0 3px rgba(0,0,0,0.3);
}


#teamLotus .teamLotusContainer .teamLotusBlock.teamMember{
	transition: all .3s ease;
	filter: blur(3px);
}

#teamLotus .teamLotusContainer .teamLotusBlock.teamMember:hover{
	//filter: blur(0);
}





#teamLotus .teamLotusContainer .teamLotusBlock .textWrapper{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


#teamLotus .teamLotusContainer .teamLotusBlock .textWrapper.green{
	background-color: #64b347;
}
#teamLotus .teamLotusContainer .teamLotusBlock .textWrapper.blue{
	background-color: #284a94;
}
#teamLotus .teamLotusContainer .teamLotusBlock .textWrapper.pink{
	background-color: #eb1953;
}


#teamLotus .teamLotusContainer .teamLotusBlock .textWrapper .textContainer{
	display: table;
	height: 100%;
	width: 100%;
}


#teamLotus .teamLotusContainer .teamLotusBlock .textWrapper .textContainer .text{
	display: table-cell;
	vertical-align: middle;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	font-size: 2em;
	font-weight: 400;
	padding: 0.5em;
	color: #FFF;
}






#teamList{
	
}

#teamList .teamListContainer{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#teamList .teamListContainer .teamMemberContainer{
	width: 240px;
	padding-bottom: 240px;
	background-color: #FFF;
	position: relative;
	background-position: center;
	background-size: cover;
	transform: scale(0.95);
	box-shadow: 0 0 0 0px rgba(0,0,0,0.3);
	transition: all .3s ease;
	display: inline-block;
}

#teamList .teamListContainer .teamMemberContainer .teamMemberIdea{
	width: 80px;
    height: 60px;
    position: absolute;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: scale(0.95);
    transition: all .3s ease;
    display: inline-block;
    right: 10px;
    top: 10px;
    background-image: url(../img/think.svg);
    z-index: 3;
    display: none;
    cursor: pointer;
}

#teamList .teamListContainer .teamMemberContainer .teamMemberSentence{
	width: 240px;
	height: 160px;
	position: absolute;
	transition: all .3s ease;
	left: 0px;
	top: 0px;
	z-index: 2;
	background-color: rgba(0,0,0,0.95);
	opacity: 0;
	pointer-events: none;
	line-height: 160px;
	padding-top: 80px;
	box-sizing: content-box;
}

#teamList .teamListContainer .teamMemberContainer .teamMemberSentence span{
	line-height: 1.1em;
	display: inline-block;
	padding: 2em;
}


#teamList .teamListContainer .teamMemberContainer .teamMemberSentence.shown{
	opacity: 1;
	pointer-events: all;
}


#teamList .teamListContainer .teamMemberContainer:hover .teamMemberIdea{
	display: block;
	animation-name: shakeEffect;
	animation-duration: 0.8s;
	transform-origin:50% 50%;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	
}

@keyframes shakeEffect {
	0% { -webkit-transform: translate(2px, 1px) rotate(0deg); }
	10% { -webkit-transform: translate(-1px, -2px) rotate(-1deg); }
	20% { -webkit-transform: translate(-3px, 0px) rotate(1deg); }
	30% { -webkit-transform: translate(0px, 2px) rotate(0deg); }
	40% { -webkit-transform: translate(1px, -1px) rotate(1deg); }
	50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
	60% { -webkit-transform: translate(-3px, 1px) rotate(0deg); }
	70% { -webkit-transform: translate(2px, 1px) rotate(-1deg); }
	80% { -webkit-transform: translate(-1px, -1px) rotate(1deg); }
	90% { -webkit-transform: translate(2px, 2px) rotate(0deg); }
	100% { -webkit-transform: translate(1px, -2px) rotate(-1deg); }
}


#teamList .teamListContainer .teamMemberContainer:hover{
	#transform: scale(1.1);
	#box-shadow: 0 0 0 20px rgba(0,0,0,0.3);
	z-index: 1;
}

#teamList .teamListContainer .teamMemberContainer:after{
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.1);
	transition: all .3s ease;
}

#teamList .teamListContainer .teamMemberContainer:hover:after{
	background-color: rgba(0,0,0,0.6);
}

#teamList .teamListContainer .teamMemberContainer .textWrapper{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#teamList .teamListContainer .teamMemberContainer .textWrapper .textContainer{
height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}


#teamList .teamListContainer .teamMemberContainer .textWrapper .textContainer .text{
	
    color: #FFF;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
    text-align: center;
    text-transform: uppercase;
    font-size: 1.3em;
    font-weight: 400;
    right: 0;
    padding: 0.5em;
    left: 0;
    position: absolute;
    bottom: 0;
    transition: all .3s ease;
}

#teamList .teamListContainer .teamMemberContainer .textWrapper .textContainer .details{
	
    color: #FFF;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 400;
    right: 0;
    padding: 0.5em;
    left: 0;
    position: absolute;
    bottom: -100%;
    transition: all .3s ease;
}


#teamList .teamListContainer .teamMemberContainer:hover .textWrapper .textContainer .text{
    bottom: 100%;
}

#teamList .teamListContainer .teamMemberContainer:hover .textWrapper .textContainer .details{
    bottom: 0;
}


@-moz-document url-prefix() {
   #workGrid .workGridItem:hover .image{
		filter: blur(0) grayscale(100%);
	}
	
	#workGrid .workGridItem .textWrapper .textContainer .client{
		filter: blur(0);
	}
	
	#workGrid .workGridItem .textWrapper .textContainer .campaign{
		filter: blur(0);
	}
	
	#agencyGrid .agency360:hover .image{
		filter: blur(0);
	}
	
	#agencyGrid .artAtWork .image{
		filter: blur(0);
	}
	
	#clientDetails .workGridItem:hover .image{
		filter: blur(0) grayscale(100%);
	}
	
	#clientDetails .workGridItem .textWrapper .textContainer .campaign{
		filter: blur(0);
	}

} 





.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    font-size: 0.9em;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
    text-align: center;
    width: 100%;
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: 0px;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
    float: left;
}


/* style 1 */

.inputfile-1 + label {
    color: #FFFFFF;
    background-color: #c0392b;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
    background-color: #e74c3c;
}



/**** MEDIA QUERIES ****/



/* mobile device media query */

@media screen and (max-width: 640px) {
 
 html, body, .perspective{
	overflow-x: hidden;	 
 }
 
 #mainSlider div.owl--text{
	 padding: 1em;
	 font-size: 1em;
	 bottom: 15%;
 }
 
 .owl-theme .owl-dots, .owl-theme .owl-nav{
	 margin-top: -30px !important;
 }
 
 .sectionWrapper.headerWrapper{
	 height: 70px;
 }
 
 #mainSliderContainer{
	 margin-top: 70px;
 }
 
 .sectionWrapper.headerWrapper .sectionContainer .lotusConseil{
	/* display: none; */
 }
 
 #workGrid .workGridItem{
	 height: auto;
	 width: 100%;
 }
 
 #workGrid .workGridItem .textWrapper{
	 position: relative;
    padding-top: 3em;
    padding-bottom: 3em;
    box-shadow: 0 0 0 100px rgba(0,0,0,0.5) inset;
 }
 
 #workGrid .workGridItem .image{
	 z-index: 0;
 }
 
 #workGrid .workGridItem .textWrapper .textContainer .client, #workGrid .workGridItem .textWrapper .textContainer .campaign{
	 transform:none;
	 filter:none;
	 opacity: 1;
	 
 }
 
 #workGrid .workGridItem{
	 float: none;
 }
 
 #joinTheTeam .image{
	 height: auto;
 }
 
 #agencyGrid .agency360{
	 width: 100%;
 }
 
 #agencyGrid .agency360 .textContainer{
 	font-size: 4em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
 }
 
 #agencyGrid .agency360 .textContainer .illustrationContainer{
	 height: auto;
 }
 
 #agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem{
 	opacity: 1;
	 transform: scale(1);
 }
 
 
 #agencyGrid .agency360 .textContainer .illustrationContainer .illustrationItem .illustrationText{
	 font-size: 0.8em;
 }
 
 #agencyGrid .artAtWork{
	 width: 100%;
 }
 
 #agencyGrid .artAtWork .textContainer{
	 font-size: 3em;
	 padding-top: 1em;
	 padding-bottom: 1em;
 }
 
 #agencyGrid .artAtWork .image{
	 background-position: bottom;
    filter: blur(0);
 }


#agencyGrid .teamLotus .textContainer{
	 font-size: 3em;
	 padding-top: 1em;
	 padding-bottom: 1em;
 }
 
 #agencyGrid .teamLotus{
	 width: 100%;
 }
 
 #joinTheTeam .joinTheTeamText{
	 width: 100%;
 }
 
 #joinTheTeam .joinTheTeamText .textWrapper .text{
	padding-right: 0;
	padding-top: 2em; 
 }
 
 #joinTheTeam .joinTheTeamText .textWrapper .title{
	 text-align: center;
	 padding-bottom: 1em;
 }
 
 #joinTheTeam .jobsList{
	 width: 100%;
 }
 
 
 #contactUS .contactCredentials{
	 width: 100%;
 }
 
 #contactUS .mapContainer{
	 width : 100%;
	 padding-bottom: 100%;
	 margin-bottom: 70px;
 }
 
 #contactUSMap{
	 position: absolute !important;
 }
 
 #contactUS .contactCredentials .sendMessageButton{
	 margin-bottom: 1em;
 }
 
 .sectionWrapper.footerWrapper{
	 bottom: 0;
    height: 70px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.98);
 }
 
 .sectionWrapper.footerWrapper .sectionContainer .LBLogo {
    height: 100%;
    width: 120px;
    float: right;
    background-image: url(../img/LB.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120px auto;
	}


	.sectionWrapper.footerWrapper .sectionContainer .PublicisLogo {
	    height: 100%;
	    width: 140px;
	    float: right;
	    background-image: url(../img/Publicis.svg);
	    background-position: center;
	    background-repeat: no-repeat;
	    background-size: 120px auto;
	}

	.sectionWrapper.footerWrapper .sectionContainer .partnerWith {
	    float: left;
	    font-size: 0.8em;
	    font-weight: 400;
	    line-height: 54px;
	}

	#campaignDetails .campaignMainVisualContainer{
		width: 100%;
	}
	
	#campaignDetails .campaignDescription{
		width: 100%;
		font-size: 0.9em;
	}
	
	#campaignDetailsMediaContainer .mediaPreviewContainer{
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	
	#clientDetails .clientMainVisualContainer{
		width: 100%;
	}
	
	#clientDetails .clientDescription{
		width: 100%;
		font-size: 0.9em;
	}
	
	#clientDetails .workGridItem{
		width: 100%;
		padding-bottom: 50%;
		box-shadow: 0 0 50px 0px rgba(0,0,0,0.5) inset, 0 0 0 200px rgba(0,0,0,0.5) inset;
	}
	
	#clientDetails .workGridItem .textWrapper .textContainer .campaign{
		transform: none;
		opacity : 1;
		filter: none;
	}
	
	#ourVision .visionItemsContainer .visionItem .visionItemIcon{
		padding-bottom: 40%;
	}
	
	#ourVision .visionItemsContainer .visionItem .visionItemText{
		font-size: 0.8em;
		word-spacing: 999px;
	}
	
	#ourVision .visionTextItem.visible{
		display: block;
	    padding: 2em;
	    padding-top: 2em;
	    color: #000;
	    font-size: 1em;
	}
	
	#artAtWorkListing .description{
		font-size: 1em;
		padding-top: 3em;
    	padding-bottom: 3em;
	}
	
	#contactUS .contactCredentials .contactUsText{
		padding-top: 1em;
	}
	
	#teamLotus .teamLotusContainer .teamLotusBlock{
		width: 50%;
		padding-bottom: 50%;
	}
	
	#teamLotus .teamLotusContainer .teamLotusBlock .textWrapper .textContainer .text{
		font-size: 1.7em;
	}
	
	.sectionWrapper.footerWrapper .sectionContainer .rights{
		display: none;
	}
	
	*:hover{
		transform: none !important;
	}
}

/* tablet device media query */

@media screen and (min-width: 641px) and (max-width: 1023px) {

}

/* screen screen media query */

@media screen and (min-width: 1024px) {
 
}
