/*****************************/
/* Mouse and wheel           */
/*****************************/
.mouse {
    opacity: .5;
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    bottom: 35px;
    width: 30px;
    margin-left: -15px;
    height: 48px;
    border-radius: 15px;
    border: 2px solid #000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.mouse-wheel {
    position: absolute;
    left: 50%;
    top: 8px;
    margin-left: -2px;
    width: 4px;
    height: 9px;
    background: #000;
    border-radius: 2px;
    -webkit-animation: animated-mouse-wheel 1.25s infinite linear;
    animation: animated-mouse-wheel 1.25s infinite linear;
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}
/*****************************/
/* Banner front              */
/*****************************/
#banner_front {
	position:relative;
	width: 100%;
	padding: 0;
	margin: 0;
	background-size: cover;
    background-position: center center;
}
/* Startpage */
#startpage #banner_front {
	height: 450px;
}
#startpage #banner_front #particle-slider {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 2;
}
/* About */
.inside-page #banner_front {
    height: 450px;
    color:#f4f4f4;
}
.inside-page #banner_front #particle-slider {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 450px;
    text-align: center;
    margin: 0 auto;
    z-index: 2;
}

#banner_front #particle-slider div {
	display: none;
}

#banner_front .txt-center {
	position: absolute;
	width: 80%;
	height: 100%;
	bottom: 0;
	left: 10%;
	display: table;
	text-align: center;
	overflow: auto;
  	z-index: 1;
    letter-spacing: -0.05em;
  	/*pointer-events:none;*/
}

#banner_front .txt-center.txt-down {
    height: 50%;
    top:150px;
}

#banner_front .txt-center h4, #banner_front .txt-center div {
	display: table-cell; 
  	vertical-align: top; 
  	text-align: center;
  	/*font-family:'LCAvantGardeBold'; 
  	font-size: 100px;*/
  	line-height: 1.1em;
}
#banner_front .txt-center div h1 {
    line-height: 1.25em;
}

#banner_front .draw {
    height:100%;
    margin:0 auto;
}




/*****************************/
/* Square                    */
/*****************************/
.lc-square {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.lc-square.height {
    width: auto;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.lc-square.no-height {
    height: auto;
    padding-bottom: 0;
}

/* Image background */
.lc-square .imgBg {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.lc-square a:hover .imgBg, .lc-explore:hover .imgBg {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1)
}
/* Overlay */
.lc-square .overlay, .overlay {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:100;
}
/* Overlay background */
.lc-square .overlayBg, .overlayBg {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: #dee20c;
    z-index:1;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.lc-explore .overlayBg {
    background-color: #181818;
}
.lc-square a:hover .overlayBg, .lc-explore:hover .overlayBg {
    opacity: .9;
}
/* Overlay caption */
.lc-square .overlayTxt {
    position:absolute;
    display: table;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}
.lc-square .overlayTxt div {
    position: relative;
    width:100%;
    height:100%;
    display: table-cell; 
    vertical-align: middle; 
    text-align: center; 
}
.lc-square a:hover .overlayTxt, .lc-explore:hover .overlayTxt {
    opacity: 1;
    -webkit-transform: scale(.9, .9);
    -moz-transform: scale(.9, .9);
    -ms-transform: scale(.9, .9);
    -o-transform: scale(.9, .9);
    transform: scale(.9, .9) 
}



/*****************************/
/* Square Explore            */
/*****************************/
.lc-square.lc-explore {
    width: 100%;
    height: auto;
    padding-bottom: 125%;
    /*border: 1px solid #efefef;*/
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
#explore .lc-explore {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#explore .lc-explore:hover, .lc-all-explore .col-md-4:hover {
    background-color: #dee20c;
}
.lc-explore .lc-square-header b, .lc-explore .lc-square-header b {
    color:#dee20c;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.lc-explore:hover .lc-square-header b {
    color:#fff;
}
.lc-all-explore .row{
    display: table;
    width: 100%;
}
.lc-all-explore .col-md-4 {
    float: none;
    display: table-cell;
    vertical-align: top;
    border: 1px solid #efefef;
    background-color:#fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/*****************************/
/*  Services                 */
/*****************************/
ul.services-list {
    display:block;
    height:200px;
    padding:10px;
    font-family:'LCAvantGardeBold'; 
    font-size: .8em;
    line-height: 1.2em;
    letter-spacing: 0em;
}
ul.services-list li {
    margin-top:10px;
}

/*****************************/
/*  Case                     */
/*****************************/
#case .lc-content h2 {
    margin:20px 0;
}
#case .lc-content h3 {
    margin:20px 0 10px 0;
}
#case ul.case-list {
    display:block;
    padding:10px 0 0 0;
    font-size: .9em;
    line-height: 1.4em;
    letter-spacing: 0em;
}
#case ul.cases-list li {
    margin-top:10px;
}
#case .lc-close-btn {
    top:40px;
    right:40px;
    padding-left: 10px;
}

/*****************************/
/*  Article                     */
/*****************************/
#article .lc-content h3 {
    margin:20px 0;
}
#article .lc-content h4 {
    margin:20px 0 10px 0;
}

#article .lc-close-btn {
    top:40px;
    right:40px;
    padding-left: 10px;
}

#article .lc-content img {
    padding:20px 0;
}


/*
.txt-square,
.txt-rect {
    display:block;
    cursor: pointer;
    overflow: hidden;
}*/
/* image background 
.imgBg {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.txt-rect .imgBg {
    padding-bottom: 50%;
}*/



