strong { font-weight: bold; }


/* ----- Header ----- */
.header .navbar {
    margin-bottom: 0;
}

.header .navbar-inner {
    border: none;
    background: #fff;
    box-shadow: none;
    margin: 0;
    padding:0;
}

.header h1 {
    float: left;
    margin: 12px 0px 0px 0px;
    text-align: center;
}

/*

    border: solid 1px #ccc;
    	
.header a.brand {
    display: inline-block;
    text-indent: -9999px;
    width: 250px;
    height: 50px;
    padding: 15px 0;
    background: url(../img/logo.png) 0px center no-repeat;
}
*/

.logo {
    float: left;
    position: relative;
    margin: 0;
    padding:10px 0px 0px 0px;
}

.sholder{
   position: absolute;
   top:5px;
   left: 0px;
    text-align:left;
	font-weight: normal;
	font-size: 13px;
	color: #333;
	white-space: nowrap;
}



.header ul.nav {
    font-size: 15px;
    font-weight: normal;
    text-shadow: none;
}

.header ul.nav li  {
	margin:20px 10px 0px 0px;
}

.header ul.nav li a {
    font-weight: normal;
    text-shadow: none;
    padding: 10px 15px;
    color: #fff;
    background-color: rgba(6,188,73,1); 
    transition: background 0.5s;

	-moz-border-radius:10px; 
	-webkit-border-radius:10px; 
	-khtml-border-radius:10px; 
	border-radius:10px; 
		    
/*
	border: solid 1px #a5a5a5;
	-moz-border-radius:10px; 
	-webkit-border-radius:10px; 
	-khtml-border-radius:10px; 
	border-radius:10px; 
*/

}

.header ul.nav li a:hover {
	background: #dddddd;
    color: #06bc49;
}

.header ul.nav li.current-page a {
	background: #dddddd;
    color: #06bc49;
    padding: 10px 15px;
}

.header ul.nav li.last a {
    border-right:none; 
    /* border-right:solid 1px #7e7e7e;  */
}





/*
.header ul.nav li a {
    padding: 35px 20px 35px 20px;
    color: #5d5d5d;
    text-shadow: none;
}

.header ul.nav li.current-page a {
    padding-top: 30px;
    border-top: 5px solid #9d426b;
    background: #f8f8f8;
}

.header ul.nav li a:hover {
    background: #9d426b;
    color: #fff;
}

.header ul.nav li a i {
    line-height: 35px;
    color: #aaa;
}

.header ul.nav li a:hover i { color: #fff; }
*/


#main {
  min-height: 100%;
  padding: 0px 0px 200px 0px;
}


/* ----- Presentation ----- */

.presentation {
    margin-top: 0px;
}

.presentation p {
    font-size: 18px;
}


/* ----- What we do ----- */

.what-we-do {
    margin-top: 0px;
    margin-bottom: 10px;
}




/* ----- Footer ----- */


footer {
    margin: 0 auto;
    background: #dbdbdb;
}

footer .widget {
    margin-top: 20px;
    text-align: left;
}

footer .widget h4 {
    margin-top: 20px;
    font-family: 'Droid Sans', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #5d5d5d;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255,255,255,.7);
}

footer .widget p {
    line-height: 24px;
}

footer .widget i {
    padding-right: 7px;
}



footer .footer-border {
    margin-top: 30px;
    border-top: 1px dashed #ddd;
}

footer .copyright {
	text-align: center;
	font-size: 13px;
	padding: 10px;
	color: #7e7e7e;
}



#footer2 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 105px;
  background: #ebebeb;
}




/* レスポンシブマーキー */

.marquee {
	margin-top: -5px;
	width:96.3%;
	height: 26px;
	overflow:hidden;
	background-color:#fff;
	border: solid 1px #a9a9a9;
	padding-bottom:  10px;
	font-size: 15px;
	line-height: 1.0em;
	color: #333;			
	-moz-border-radius:5px; /* Firefox */
	-webkit-border-radius:5px; /* Safari and chrome */
	-khtml-border-radius:5px; /* Linux browsers */ 
	border-radius:5px; /* CSS3 */		
	position:relative;
}

.marquee p:after {
	content:"";
	white-space:nowrap;
	padding-right:50px;
}

.marquee p {
	margin:0;
	padding-left:100%;
	display:inline-block;
	white-space:nowrap;
	-webkit-animation-name:marquee;
	-webkit-animation-timing-function:linear;
	-webkit-animation-duration:10s;
	-webkit-animation-iteration-count:infinite;
	-moz-animation-name:marquee;
	-moz-animation-timing-function:linear;
	-moz-animation-duration:10s;
	-moz-animation-iteration-count:infinite;
	-ms-animation-name:marquee;
	-ms-animation-timing-function:linear;
	-ms-animation-duration:10s;
	-ms-animation-iteration-count:infinite;
	-o-animation-name:marquee;
	-o-animation-timing-function:linear;
	-o-animation-duration:10s;
	-o-animation-iteration-count:infinite;
	animation-name:marquee;
	animation-timing-function:linear;
	animation-duration:10s;
	animation-iteration-count:infinite;
}

	
	@-webkit-keyframes marquee {
	from { -webkit-transform: translate(0%);}
	99%,to { -webkit-transform: translate(-100%);}
	}
	@-moz-keyframes marquee {
	from { -moz-transform: translate(0%);}
	99%,to { -moz-transform: translate(-100%);}
	}
	@-ms-keyframes marquee {
	from { -ms-transform: translate(0%);}
	99%,to { -ms-transform: translate(-100%);}
	}
	@-o-keyframes marquee {
	from { -o-transform: translate(0%);}
	99%,to { -o-transform: translate(-100%);}
	}
	@keyframes marquee {
	from { transform: translate(0%);}
	99%,to { transform: translate(-100%);}
	}














/* ----- Media queries ----- */

@media (min-width: 980px) and (max-width: 1200px) {

		#sample00 figcaption {
			position: absolute;
			bottom: 0px;
			left: 0;
			z-index: 2;
			width: 100%;
			background: rgba(0,0,0,.6);
			-webkit-transition: .3s;
			transition: .3s;
		}


    .flex-caption {
        max-width: 700px;
    }

    .what-we-do .service p, .portfolio .work p {
        padding-left: 10px;
        padding-right: 10px;
    }


	.marquee {
		width:95.5%;
		height: 26px;
		overflow:hidden;
		background-color:#fff;
		border: solid 1px #a9a9a9;
		padding-bottom:  10px;
		font-size: 15px;
		line-height: 1.0em;
		color: #333;			
		-moz-border-radius:5px; /* Firefox */
		-webkit-border-radius:5px; /* Safari and chrome */
		-khtml-border-radius:5px; /* Linux browsers */ 
		border-radius:5px; /* CSS3 */		
		position:relative;
	}


}




@media (min-width: 768px) and (max-width: 979px) {

	.header ul.nav {
	    font-size: 16px;
	    font-weight: normal;
	    margin:20px 0px 10px 0px;
	}
	
	.header ul.nav li  {
		margin:8px 0px 0px 0px;
	}
	
	.header ul.nav li a {
	    font-weight: normal;
	    text-shadow: none;
	    padding: 10px 15px;
	    color: #fff;
	    background-color: rgba(6,188,73,1); 
	    transition: background 0.5s;
	
		-moz-border-radius:10px; 
		-webkit-border-radius:10px; 
		-khtml-border-radius:10px; 
		border-radius:10px; 
	
	}
	
	.header ul.nav li a:hover {
		background: #dddddd;
	    color: #06bc49;
	}
	
	.header ul.nav li.current-page a {
		background: #dddddd;
	    color: #06bc49;
	    padding: 10px 15px;
	}
    .header ul.nav li a i, .header ul.nav li a br {
        display: none;
    }

	.header ul.nav li.last a {
	     border-right:solid 1px #777;
	}

	.logo {
		width: 200px;		
	    float: left;
	    position: relative;
	    margin: 0px 0px 0px 0px;
	    padding:15px 0px 0px 0px;
	}
	
	.sholder{
	   position: absolute;
	   top:5px;
	   left: 0px;
	    text-align:left;
		font-weight: normal;
		font-size: 12px;
		color: #333;
		white-space: nowrap;
	}


    .what-we-do .service p, .portfolio .work p {
        padding-left: 10px;
        padding-right: 10px;
    }


	.marquee {
		width:94%;
		height: 26px;
		overflow:hidden;
		background-color:#fff;
		border: solid 1px #a9a9a9;
		padding-bottom:  10px;
		font-size: 15px;
		line-height: 1.0em;
		color: #333;			
		-moz-border-radius:5px; /* Firefox */
		-webkit-border-radius:5px; /* Safari and chrome */
		-khtml-border-radius:5px; /* Linux browsers */ 
		border-radius:5px; /* CSS3 */		
		position:relative;
	}

}




@media (max-width: 767px) {

    body {
        padding-left: 0;
        padding-right: 0;
    }

    .what-we-do, .portfolio {
        padding: 0 20px;
    }
    .slider {
        padding: 0;
    }


	.header .navbar-inner {
	    border: none;
	    background: #fff;
	    box-shadow: none;
	    margin: 0;
	    padding:0px 20px 0px 20px;
	}

	.header ul.nav {
	    font-size: 14px;
	    font-weight: normal;
	    margin:20px 0px 10px 0px;
	}
	
	.header ul.nav li  {
		margin:8px 0px 0px 0px;
	}
	
	.header ul.nav li a {
	    font-weight: normal;
	    text-shadow: none;
	    padding: 5px 15px;
	    color: #fff;
	    background-color: rgba(6,188,73,1); 
	    transition: background 0.5s;
	
		-moz-border-radius:10px; 
		-webkit-border-radius:10px; 
		-khtml-border-radius:10px; 
		border-radius:10px; 
	
	}
	
	.header ul.nav li a:hover {
		background: #dddddd;
	    color: #06bc49;
	}
	
	.header ul.nav li.current-page a {
		background: #dddddd;
	    color: #06bc49;
	    padding: 5px 15px;
	}
    .header ul.nav li a i, .header ul.nav li a br {
        display: none;
    }

	.header ul.nav li.last a {
	     border-right:solid 1px #777;
	}

	.logo {
		width: 200px;		
	    float: left;
	    position: relative;
	    margin: 0px 0px 0px 0px;
	    padding:15px 0px 0px 0px;
	}
	
	.sholder{
	   position: absolute;
	   top:5px;
	   left: 0px;
	    text-align:left;
		font-weight: normal;
		font-size: 12px;
		color: #333;
		white-space: nowrap;
	}


    .what-we-do .service p, .portfolio .work p {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    
    .presentation, footer, .testimonials {
        padding-left: 20px;
        padding-right: 20px;
    }

    .presentation p {
        line-height: 1.5em;
    }

    .what-we-do .service p, .portfolio .work p {
        padding-left: 10px;
        padding-right: 10px;
    }

    .what-we-do .service .icon-awesome {
        padding-top: 10px;
    }

	.marquee {
		width:91%;
		height: 26px;
		overflow:hidden;
		background-color:#fff;
		border: solid 1px #a9a9a9;
		padding-bottom:  10px;
		font-size: 15px;
		line-height: 1.0em;
		color: #333;			
		-moz-border-radius:5px; /* Firefox */
		-webkit-border-radius:5px; /* Safari and chrome */
		-khtml-border-radius:5px; /* Linux browsers */ 
		border-radius:5px; /* CSS3 */		
		position:relative;
	}
	
	
}





@media (max-width: 480px) {

	.header .navbar-inner {
	    border: none;
	    background: #fff;
	    box-shadow: none;
	    margin: 0;
	    padding:0px 20px 0px 20px;
	}

	.header ul.nav {
	    font-size: 14px;
	    font-weight: normal;
	    margin:20px 0px 10px 0px;
	}
	
	.header ul.nav li  {
		margin:8px 0px 0px 0px;
	}
	
	.header ul.nav li a {
	    font-weight: normal;
	    text-shadow: none;
	    padding: 5px 15px;
	    color: #fff;
	    background-color: rgba(6,188,73,1); 
	    transition: background 0.5s;
	
		-moz-border-radius:10px; 
		-webkit-border-radius:10px; 
		-khtml-border-radius:10px; 
		border-radius:10px; 
	
	}
	
	.header ul.nav li a:hover {
		background: #dddddd;
	    color: #06bc49;
	}
	
	.header ul.nav li.current-page a {
		background: #dddddd;
	    color: #06bc49;
	    padding: 5px 15px;
	}
    .header ul.nav li a i, .header ul.nav li a br {
        display: none;
    }

	.header ul.nav li.last a {
	     border-right:solid 1px #777;
	}

	.logo {
		width: 200px;		
	    float: left;
	    position: relative;
	    margin: 0px 0px 0px 0px;
	    padding:15px 0px 0px 0px;
	}
	
	.sholder{
	   position: absolute;
	   top:5px;
	   left: 0px;
	    text-align:left;
		font-weight: normal;
		font-size: 12px;
		color: #333;
		white-space: nowrap;
	}

	.marquee {
		width:85%;
		height: 26px;
		overflow:hidden;
		background-color:#fff;
		border: solid 1px #a9a9a9;
		padding-bottom:  10px;
		font-size: 15px;
		line-height: 1.0em;
		color: #333;			
		-moz-border-radius:5px; /* Firefox */
		-webkit-border-radius:5px; /* Safari and chrome */
		-khtml-border-radius:5px; /* Linux browsers */ 
		border-radius:5px; /* CSS3 */		
		position:relative;
	}

}


