@charset "utf-8";
/*------------------------------------------------------------------
[Main Stylesheet]

Project:    Subliminal
Version:    1.0
Main use:   MultiPurpose Template  
-------------------------------------------------------------------*/

@font-face {
	src: url('../fonts/OpenSans-Light.ttf');
	font-family: 'Light';
}

@font-face {
	src: url('../fonts/OpenSans-Regular.ttf');
	font-family: 'Medium';
}

@font-face {
	src: url('../fonts/OpenSans-Semibold.ttf');
	font-family: 'Bold';
}

/*------------------------------------------------------------------
[Table of contents]

1. Common styles
2. Page loader
3. Buttons
4. Homepage Headers
5. Navigation
	5.1 Single page Navigation
	5.2 Multi page Navigation
6. Parallax-a
7. Owl-slider
8. Progress bars
9. Recent-projects
10. Subscribe
11. View More
12. Promo
13. Video-Section
14. Split-section
15. Clients
16. Our MIssion
17. Pricing
18. Blog
	18.1 Blog-slider
	18.2 Blog Single Pages
19. Shop
	19.1 Cart
	19.2 Shop Single
20. Parallax-b
21. Home Sliders
	21.1 Fullscreen Slider
	21.2 Fullwidth Slider
	21.3 Background Slider
22. Particles Homepage
23. Single Pages
24. Log In / Register
25. 404 Page
26. Portfolio
	-Portfolio Single
27. Alerts
28. Modals
29. Multimedia
30. Contact
31. Footer
31. Demo Page

-----------------------------------------------------------------*/

/*Common Styles*/
.container-fluid {
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	font-weight: 300;
	height: 100%;
	letter-spacing: 0.02em;
	line-height: 1.4;
	position: relative;
	overflow-x: hidden;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-size: 16px;
}

h2 {    
    font-weight: 300;    
    font-family:'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

h3 {	
	font-weight: 300;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.color-white {
	color: white;
}

.color-black {
	color: black;
}

a:focus,
a:active,
a:hover {
	outline: none;
	text-decoration: none;
	color: black;
	opacity: 0.6;
}

a:hover img {		
	color: black;
	opacity: 0.6;
}

.data-picture {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	-webkit-background-size:cover; 
    -moz-background-size:cover; 
    -o-background-size:cover; 
    background-size:cover; 
}

.data-picture-scroll {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size:cover; 
    -moz-background-size:cover; 
    -o-background-size:cover; 
    background-size:cover; 
}

/*Page loader*/
.page-loader{
 	display:block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fefefe;
	z-index: 100000;	
}

.loader{
	border: 1px solid rgba(0, 0, 0, 0.75);
	border-radius: 30px;
	height: 50px;
 	 margin: -20px 0 0 -20px;
	opacity: 0;
	width: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 10px;
    z-index: 999999;

   -webkit-animation: pulsate 700ms infinite linear;
   -moz-animation: pulsate 700ms infinite linear;
   -ms-animation: pulsate 700ms infinite linear;
   -o-animation: pulsate 700ms infinite linear;
   animation: pulsate 700ms infinite linear;
}

@-webkit-keyframes pulsate {
    0% {
    -webkit-transform: scale(.1);
    -moz-transform: scale(.1);
    -ms-transform: scale(.1);
    -o-transform: scale(.1);
    transform: scale(.1);
      opacity: 0.0;
    }

    50% {
      opacity: 1;
    }
    100% {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
      opacity: 0;
    }
}

@-moz-keyframes  pulsate {
    0% {
    -webkit-transform: scale(.1);
    -moz-transform: scale(.1);
    -ms-transform: scale(.1);
    -o-transform: scale(.1);
    transform: scale(.1);
      opacity: 0.0;
    }

    50% {
      opacity: 1;
    }
    100% {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
      opacity: 0;
    }
}

@-o-keyframes pulsate {
    0% {
    -webkit-transform: scale(.1);
    -moz-transform: scale(.1);
    -ms-transform: scale(.1);
    -o-transform: scale(.1);
    transform: scale(.1);
      opacity: 0.0;
    }

    50% {
      opacity: 1;
    }
    100% {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
      opacity: 0;
    }
}

@keyframes pulsate {
    0% {
    -webkit-transform: scale(.1);
    -moz-transform: scale(.1);
    -ms-transform: scale(.1);
    -o-transform: scale(.1);
    transform: scale(.1);
      opacity: 0.0;
    }

    50% {
      opacity: 1;
    }
    100% {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
      opacity: 0;
    }
}


/*Buttons*/
.btn,
.btn-regular {
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 5px;
	padding: 1.5em 4em;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn-circle {
	width: 80px;
	height: 80px;
	line-height: 80px;
	-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
     text-align: center;
     margin: 0 auto;
	-webkit-transition: all 0.3s linear;
	   -moz-transition: all 0.3s linear;
	     -o-transition: all 0.3s linear;
	    -ms-transition: all 0.3s linear;
	        transition: all 0.3s linear;
}

.btn-circle .fa-icon {
	font-size: 20px;
	position: relative;
	left: 2px;
}

.btn-circle-black {
	color: black;
	border: 1px solid black;
}

.btn-circle-white {
	color: white;
	border: 1px solid white;
}

.btn-circle:hover {
	-webkit-transition: all 0.3s linear;
	   -moz-transition: all 0.3s linear;
	     -o-transition: all 0.3s linear;
	    -ms-transition: all 0.3s linear;
	        transition: all 0.3s linear;
	-webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
         -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform:scale(1.2);
}

.btn-small {
	padding: 1.3em 4em;
	font-size: 8px;
}

.btn-middle {
	padding: 1.4em 4.2em;
	font-size: 12px;
}


.btn-big {
	padding: 1.5em 4.6em;
	font-size: 14px;
}

.no-radius {
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.btn-white {
	border: 1px solid white;
	background: none;
	color: white;
}

.btn-black {
	border: 1px solid black;
	background: none;
	color: black;
}

.btn-gray-fill {
	background-color: rgba(34, 34, 34, 0.9);
	color: white;
}

.btn-gray-fill:hover {
	color: white;
}


.btn-light-gray-fill {
	background-color: #DCDCDC;
}

.btn-light-gray-fill {
	color: black;
}

.btn-gray-fill {
	color: white;
}

.btn-white-fill {
	background: white;
	color: black;
}

.btn-black-fill,
a.btn-black-fill,
a.btn-regular.btn-black-fill {
	background: black;
	color: white;
}

.btn-regular.btn-black-fill {
	border: 1px solid black;
}

.btn-regular.btn-white-fill {
	border: 1px solid white;
}

.btn-black:hover {
	color: black;
}

.btn-white:hover {
	color: white;
}

.btn-container {
	cursor: pointer;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
	width: 100%;
    text-align: center;
}

.btn-part-container {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 2px;
	margin: 0 auto;
}

.btn.front {
	-webkit-transform: rotateX(0deg) translateZ(22px);
       -moz-transform: rotateX(0deg) translateZ(22px);
         -o-transform: rotateX(0deg) translateZ(22px);
        -ms-transform: rotateX(0deg) translateZ(22px);
            transform: rotateX(0deg) translateZ(22px);
}

.btn.top {
	opacity: 1;
	-webkit-transform: rotateX(90deg) translateZ(22px);
       -moz-transform: rotateX(90deg) translateZ(22px);
         -o-transform: rotateX(90deg) translateZ(22px);
        -ms-transform: rotateX(90deg) translateZ(22px);
            transform: rotateX(90deg) translateZ(22px);
}

.btn-container:hover .top {
	transform: rotateX(0deg);
}

.btn-container:hover  .btn.front {
	-webkit-transform: rotateX(-90deg) translateZ(24px);
       -moz-transform: rotateX(-90deg) translateZ(24px);
         -o-transform: rotateX(-90deg) translateZ(24px);
        -ms-transform: rotateX(-90deg) translateZ(24px);
            transform: rotateX(-90deg) translateZ(24px); 
}

/*Homepage headers*/
.home-title {	
    font-size: 35px;    
    margin-bottom: 50px;
    text-transform: uppercase;
    padding-left: 30px;
    line-height: 1.4;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    opacity: 0.9;
	letter-spacing: 0.3em;
}



.home-subtitle {
	letter-spacing: 0.3em;
    margin-bottom: 40px;
    opacity: .7;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.2;
}

.home-subtitle-s {
	font-size: 17px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 50px;
    opacity: .7;
    letter-spacing: 0.1em;
}

.home-title-m {
    font-size: 33px;
    letter-spacing: 0.3em;
    font-weight: 300;
    line-height: 1.4;
    font-family: 'Light';
}

.home-title-l {
	letter-spacing: 45px;
	padding-left: 45px;
	font-size: 45px;
	font-family: 'Light';
}

.home-title-s {
	font-size: 30px;
	letter-spacing: 45px;
	font-family: 'Light';
	opacity: .9;
	font-weight: 400;
	padding-left: 45px;
}

.home-title-xs {
	font-size: 30px;
	letter-spacing: 30px;
	font-family: 'Light';
	opacity: .9;
	font-weight: 400;
	padding-left: 30px;
}

.home-title-xxs {
	font-size: 25px;
	letter-spacing: 20px;
	font-family: 'Light';
	opacity: .9;
	font-weight: 400;
	padding-left: 20px;
	margin-bottom: 20px;
}


.home-title-sl {
	font-family: 'Light';
	font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.7em;
    line-height: 1.4;
}

.home-title-xl {
	font-family: 'Bold';
	font-size: 60px;
	letter-spacing: 45px;
}


.home-subtitle-xs {
	font-size: 12px;
}


/*Title line*/
.title-line {
	border-bottom: 1px solid black;
	width: 40px;
	margin: 15px auto;
}

/*Page*/
.page {
	padding: 120px 0;
}

.page_top {
	padding: 30px 0;
}

.page_info {
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
}

.space {
	padding: 60px 0;
}


/*Homepage Content*/
.home-content {
	padding-top: 120px;
}

.homepage-fullscreen {
	height: 100vh;
}

.homepage-fullwidth {
	height: 75vh;
}

/*Home navigation */
.home-navigation {
	padding: 10px 0;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.nav-inner {
	margin: 0 auto;
}

.navbar-brand {
	color: white;
	font-size: 20px;
	margin-left: 30px;
	font-family: 'light';
	height: 100%;
	letter-spacing: 0.3em;
	padding-top: 5px;
	padding-right: 13px;
	padding-bottom: 5px;
	padding-left: 13px;
	margin-right: 15px;
}

.navbar-fixed-top {
	z-index: 100;
}

.navbar-brand:hover,
.navbar-brand:active {
	color: white;
}

.home-navigation .fa-bars{
	color: white;
	font-size: 40px;
	margin-right: 10px;
	margin-top: 10px;
}

.navbar-toggle {
	padding: 0;
	font-size: 18px;
}

.navbar-collapse {
	padding-left: 0;
	padding-right: 0;
	margin-right: 10px;
}

.nav > li {
	text-align: center;
}

.nav a {
	color: white;
	font-size: 13px;
	opacity: 1;
	letter-spacing: -0.5px;
	-webkit-transition: opacity 0.3s ease-in;
	-moz-transition: opacity 0.3s ease-in;
	-ms-transition: opacity 0.3s ease-in;
	-o-transition: opacity 0.3s ease-in;
	transition: opacity 0.3s ease-in;
	margin-top: 10px;
}

.nav .head_inq {
	margin-top: -20px;
}




.nav > li > a:hover,
.nav > li > a:focus,
.dropdown-menu  li  a:hover {
	background: none;
	opacity: .7;
}

.scroll-navigation {
	background: white;
	padding: 0;
	border-bottom: 1px solid #f5f5f5;
}

.scroll-navigation a, 
.scroll-navigation .fa-bars {
	color: black;
}

.scroll-navigation .navbar-brand {
	color: black;
}


/*Black nav*/
.nav-black .home-navigation {
	opacity: .9;
	background-color: #1d2b76;
}

.nav-black a,
.nav-black .navbar-brand {
	color: white;
}

/*Scroll black*/
.scroll-black .scroll-navigation {
	background: #161616;
	border-bottom: none;
	opacity: 1;
}

.scroll-black .scroll-navigation .navbar-brand, 
.scroll-black .scroll-navigation a,
.scroll-black .scroll-navigation .fa-bars {
    color: white;
}

/*Scroll white*/
.scroll-white .scroll-navigation {
	background: #1d2b76;
	border-bottom: 1px solid #f5f5f5;
	opacity: 1;
}

.scroll-white .scroll-navigation .navbar-brand, 
.scroll-white .scroll-navigation a,
.scroll-white .scroll-navigation .fa-bars {
    color: white;
}


/*Multipage Navbar*/
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
	background-color: transparent;
}

.dropdown-menu,
.sub-dropdown-menu {
	background-color: rgba(25, 25, 25, 0.97);
	border: none;
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
	box-shadow: none;
	padding: 15px;
}

.nav-black .home-navigation.multi-nav {
	opacity: 1;
}

.dropdown-menu  li  a,
.scroll-navigation .dropdown-menu  li  a,
.menu-column-title,
.sub-dropdown-menu li a  {
	color: #b0b0b0;
	font-size: 13px;
	letter-spacing: 0;
	padding: 11px 15px;
	line-height: 1.3;
	clear: both;
	display: block;
	position: relative;
    -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
       -moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
         -o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
            transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-column-title {
	font-family: 'Medium';
	cursor: default;
}

.dropdown-menu i.fa-angle-right {
	float: right;
	margin: 0;
}


.menu-multicolumn {
	white-space: nowrap;
	width: auto !important;
}

.menu-column {
	display: inline-block;
	float: none;
	overflow: hidden;
	vertical-align: top;
	white-space: normal;
	min-width: 190px;
}

 .dropdown-menu.menu-singlecolumn {
	padding: 5px;
}

.dropdown-menu  li  a:hover,
.search-dropdown .search-wrap:hover {
    -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
       -moz-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
         -o-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
            transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
	background-color: rgba(255, 255, 255, 0.09);
	color: #f5f5f5;
}

.dropdown-sign {
	color: white;
	text-transform: uppercase;
	font-size: 8px;
	padding: 3px 6px;
	vertical-align: middle;
	position: absolute;
	right: 5%;	
}

.dropdown-sign-red {
	background: red;
}

.dropdown-sign-white {
	 background: white;
	 color: black;
}

.dropdown-menu i {
	font-size: 15px;
	margin-right: 15px;
	font-weight: 500;
}

.sub-dropdown-menu li a i {

}

.nav-blank-space {
	height: 40px;
}

.search-wrap {
	padding: 5px 10px;
}

.search-field,
.search-button {
	border: none;
	background: transparent;
	font-size: 10px;
	display: inline-block;
	color: white;
	letter-spacing: 1px;
}

.search-field {
	width: 75%;
}

.search-field:active,
.search-field:focus {
	display: block;
}

.dropdown-menu li a.cart-info {
	font-size: 8px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/*Main*/
.text-center {
	text-align: center;
}

.main-title {
	font-size: 24px;
    font-weight: 100;
    letter-spacing: 0.6em;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    
}

.main-text {
	color: rgba(119, 119, 119, 0.7);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 auto;
}

.et-icon {
	color: #444;
    font-size: 40px;
    margin-bottom: 20px;
}

.awesome-icon {
	font-size: 25px;
	margin-bottom: 10px;
	color: black;
}

.column-box {
	padding-top: 15px;
	padding-bottom: 20px;
}

.column-box h3, 
.blog-box h3 {
	letter-spacing: 0.3em;
	text-transform: uppercase;
	line-height: 1.4;
	color: black;
	margin: 20px 0;
}


.column-box p {
	color: rgba(51,51,51,0.7);
	font-size: 13px;
	font-weight: 300;
	line-height: 1.7;
	margin: 0 auto;
}

.blog-form input.no-border-field,
.blog-form textarea.no-border-field  {
	width: 100%;
}

/*Parallax-a*/
#parallax-a,
#parallax-a-normal {
	color: white;
	padding: 30px 0;
	position: relative;
}

#parallax-a-normal {
	background-attachment: scroll;
}

.parallax-section .main-title,
.parallax-section p, 
.parallax-section span {
	text-align: left;
	margin: 20px 0 0;
}

.parallax-section p {
	font-weight: 100;
    height: 100%;
    letter-spacing: 0.05em;
    line-height: 18px;
	font-family: 'Light';
	opacity: .9;
}

.section-left-content {
	margin-top: 100px;
}

/*Owl slider*/
.owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.home-slider-fullscreen {
	position: relative;
	width: 100%;
	height: 100vh;
}

.home-slider_fullwidth {
	position: relative;
	width: 100%;
	height: 60vh;
}

.owl-controls .owl-dots {
	position: absolute;
	bottom: 3%;
	width: 100%;
	margin: 0 auto;
	color: white;
	z-index: 5;
}

.slide .et-icon {
	color: white;
	margin-bottom: 30px;
	font-size: 35px;
}

.slide {
	cursor: move; 
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.slide h3 {
	color: white;
}

.slide .main-text {
	color: #aaa;
	opacity: .6;
	font-family: 'Light';
	font-weight: 100;
	font-size: 15px;
	letter-spacing: 0;
	margin: 50px auto 80px;
}


.owl-dot {
    display: inline-block;
    padding: 6px 4px;  
}

.owl-dot span {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    display: block;
    height: 6px;
    width: 6px;
    -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
       -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1); 
         -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1); 
            transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.owl-dot.active span {
    background: none repeat scroll 0 0 transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
	-webkit-transform: scale(1.4);
       -moz-transform: scale(1.4);
         -o-transform: scale(1.4);
        -ms-transform: scale(1.4);
            transform: scale(1.4);    
}

.owl-controls {
    left: 0;
    text-align: center;
}

 .owl-next, .owl-prev {
    height: 100%;
    text-indent: 100%;
    top: 0;
    width: 30%;
}

.owl-prev {
    cursor: url("../img/slider/prev.png") 8 8, move !important;
    left: 0;
    position: absolute;
}

.owl-next {
    cursor: url("../img/slider/next.png") 8 8, move !important;
    position: absolute;
    right: 0;
}


.section-line {
	margin: 40px auto;
}


/* Header */
.large-header {
	position: relative;
	width: 100%;
	background: #34495e;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	z-index: 1;
}

/*progress bar*/
.progress {
	height: 1px;
	background: none;
	box-shadow: none;
}

.progress-hard {
	height: 4px;
}

.progress-bar {
	background: black;
}

.progress-bar-blue {background: blue;}
.progress-bar-green {background: green;}
.progress-bar-red {background: red;}

.progress-element {
	text-align: left;
}

.separator {
	display: inline-block;
	vertical-align: middle;
	margin: 30px auto; 
}

.separator .et-icon {
	font-size: 12px;
	display: inline-block;
	margin: 0;
	color: black;
	vertical-align: middle;
} 

.separator .section-line {
	display: inline-block;
	margin: 0 5px;
	vertical-align: middle;
	width: 40px;
}


/*recent-projects*/

#recent-projects.page {
	padding-bottom: 10px;
}

#recent-projects .main-text {
	color: #777;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7;
}

.counter {
	font-family: "Light";
    font-size: 30px;
    font-weight: 100;
    margin: 0;
    color: #777;
}

.counter-box {
	border-right: 1px solid  rgba(136, 136, 137, .4);
	border-left: 1px solid  rgba(136, 136, 137, .4);
	position: relative;
	overflow: hidden;
}

.counter-hover {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: white;
	height: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.3, 0.1, 0.58, 1);
       -moz-transition: all 0.5s cubic-bezier(0.3, 0.1, 0.58, 1); 
         -o-transition: all 0.5s cubic-bezier(0.3, 0.1, 0.58, 1); 
            transition: all 0.5s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.counter-box h4 {
	margin: 30px 0; 
}

.counter-hover > .counter-hover-content {
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
       -moz-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1); 
         -o-transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1); 
            transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
	top: -140px;
	position: absolute;
	width: 100%;
}

.counter-box:hover .counter-hover {
    -webkit-transition: all 0.35s cubic-bezier(0.3, 0.1, 0.58, 1);
       -moz-transition: all 0.35s cubic-bezier(0.3, 0.1, 0.58, 1); 
         -o-transition: all 0.35s cubic-bezier(0.3, 0.1, 0.58, 1); 
            transition: all 0.35s cubic-bezier(0.3, 0.1, 0.58, 1);
	height: 100%;
}

.counter-box:hover .counter-hover .counter-hover-content {
    -webkit-transition: all 0.5s cubic-bezier(0.3, 0.1, 0.58, 1);
       -moz-transition: all 0.5s cubic-bezier(0.3, 0.1, 0.58, 1); 
         -o-transition: all 0.5s cubic-bezier(0.3, 0.1, 0.58, 1); 
            transition: all 0.5s cubic-bezier(0.3, 0.1, 0.58, 1);
	top: 5px;
}

.counter-box .title-line {
	margin: 5px auto;
}

/*Subscribe*/
#subscribe {
	background: #F8F8F8;
}

#subscribe.page {
	padding: 50px 0;
}

.subscribe {
	margin: 25px 0;
	font-size: 12px;
    padding: 0.7em 2em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #777;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    min-width: 260px;
    height: 45px;
}

#subscribe .subscribe,
#subscribe .btn-container {
	display: inline-block;
	vertical-align: middle;
}

#subscribe-2 {
	background-color: #666;
	padding-top: 30px;
	padding-right: 0;
	padding-bottom: 30px;
	padding-left: 0;
}

#subscribe-2 h3 {
	margin-bottom: 30px;
}

.title-row {
	margin-bottom: 70px;
}

.service-link,
.blog-box a,
.blog-post-title {
    color: #5d5d5d;
    font-family: "Medium";
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter-hover-content p {
	font-size: 12px;
}

.small {
	margin: 15px auto;
}

/*view-more*/
#view-more {
	background: #111111;
	padding: 35px 0 50px;
}

.fade-img {
	margin: -60px 0 0;
}

/*Promo*/
#promo .column-box p {
	line-height: 1.9;
	font-size: 14px;
	color: rgba(102,102,102,0.9);
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
}

#promo.page {
	padding: 60px 0;
}

#promo h4 {
	text-align: left;
}

.padding-section {
	padding: 60px 0;
}

.part {
	padding: 60px 0;
}

#slider-section {
	padding: 120px 0 50px;
}

#slider-section .slide .main-text {
	opacity: .8;
}

span.client-name {
	font-size: 10px;
	opacity: .7;
	color: white;
	display: block;
	margin-top: 20px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/*Video section*/
video {
	width: 100%;
	height: 100%;
   -webkit-background-size:cover; 
   -moz-background-size:cover; 
   -o-background-size:cover; 
   background-size:cover; 
}

.video-wrap-slider {
	position: relative;
}

.video-slider-overlay {
	z-index: 2;
}

.video-slider-content {
	z-index: 3;
}

/* Split section */
.split-section {
    overflow: hidden;
    padding-bottom: 33%;
    position: relative;
}

.split-section-container {
	height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.split-section img {
	backface-visibility: hidden;
    left: 0;
    position: absolute;
    top: 0;
	-webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
         -o-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);

    -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
       -moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
         -o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
            transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    z-index: 1;
}

.middle-split-section {
	background: #161616;
}

.split-section:hover img {
	-webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.split-section-inner-wrapper {
	background-color: rgba(0, 0, 0, 0.65);
	height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
       -moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
         -o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
            transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.split-section:hover .split-section-inner-wrapper {
	background-color: rgba(0, 0, 0, 0);
    -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
       -moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
         -o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1); 
            transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.split-section-inner-content {
	top: 45%;
	color: white;
	margin-left: 40px;
    margin-right: 40px;
    position: absolute;
    z-index: 4;
    -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
       -moz-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
         -o-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
            transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.split-content-right {
	right: 0;
}

.small-section-title {
	font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Light';
    margin-top: 30px;
    display: block;
    opacity: .7;
}

i.gold-subtitle {
	color: #bc8420;
    font-family: "Acaslon","Times New Roman",Times,serif;
    font-size: 12px;
    display: block;
}

.split-section:hover .split-content-left {
	-webkit-transform: translateX(-250px); 
	   -moz-transform: translateX(-250px); 
	    -ms-transform: translateX(-250px); 
	     -o-transform: translateX(-250px); 
	        transform: translateX(-250px);
	-webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
       -moz-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
         -o-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); 
            transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.split-section:hover .split-content-right {
	-webkit-transform: translateX(250px); 
	   -moz-transform: translateX(250px); 
	    -ms-transform: translateX(250px); 
	     -o-transform: translateX(250px); 
	        transform: translateX(250px);
	-webkit-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1); 
       -moz-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1); 
         -o-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1); 
            transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.split-innner-section-content {
	padding: 0 50px ;
	margin-top: 25%;
}

.split-middle {
	margin: 20% auto 0;
	max-width: 500px;
}

.split-innner-section-content h3,
.split-innner-section-content p {
		color: white;
		opacity: .5;
}

.split-innner-section-content span {
	font-family: 'Bold';
	font-size: 13px;
	border-bottom: 1px solid white;
	padding-bottom: 2px;
}

.split-innner-section-content p {
	margin: 10px 0;
}

.split-innner-section-content .title-line {
	border-bottom: white 1px solid;
}

/*Split-section-two*/
.split-section-two {
	padding: 0 30px;
}

.split-section-two .split-section-inner-wrapper {
	background-color: rgba(0, 0, 0, 0.8);
}

/*Split-section-video*/
#section-video-wrap {
	width: 100%;
}

.split-section-video {
	padding: 0 30px;
}

/*Clients*/
.clients .item img.clients-main-picture {
	width: 240px;
	margin: 10px auto 0;
	opacity: .9;
	overflow: hidden;
	-webkit-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

#clients .owl-carousel .owl-item {
	-webkit-backface-visibility: inherit;
}

.clients-part {
	height: 200px;
}

#clients-carousel {
	height: 100%;
    position: relative;
    top: 19%;
    width: 100%;
}

#clients-carousel .owl-controls {
	display: none;
}

.clients-item {
	position: relative;
}

.clients-item:hover > img.clients-main-picture {
	-webkit-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: translateY(-15px);
       -moz-transform: translateY(-15px);	        
        -ms-transform: translateY(-15px); 
         -o-transform: translateY(-15px);
            transform: translateY(-15px);
}

.owl-carousel .owl-item img.clients-shadow {
	margin: 0 auto;
	width: auto;
	opacity: 0;
	-webkit-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.clients-item:hover > img.clients-shadow {
	opacity: .9;
	 -webkit-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	    -moz-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
		  -o-transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
	 		 transition:  all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

#clients .page {
	padding: 60px 0;
}


/*Our-mission*/
#our-mission {
	padding-bottom: 170px;
}
#our-mission .title-line {
	margin-left: 0;
}

#our-mission .column-box {
	padding: 0 25px;
}



/*Blog*/
.blog-post-info {
	color: #aaa;
	font-size: 10px;
	letter-spacing: 0.15em;
	opacity: .6;
	margin-top: 15px;
}

.blog-post-info .author a,
.blog-post-info .date {
	color: black;
	opacity: .9;
	font-family: 'Medium';
}

.blog-content p {
	color: #777;
	font-size: 12px;
    line-height: 1.9;
    margin: 30px 0;
    opacity: .6;
    margin: 10px auto;
}

.blog i {
	color: #333;
	opacity: 1;
	font-size: 12px;
	margin: 0 3px;
	opacity: .8;
	font-weight: 100;
}

.blog .item {
	padding: 0 15px ;
}

/*---- blog slider -------*/
#blog-carousel .owl-controls .owl-dots {
	color: black;
	position: relative;
}

#blog-carousel .owl-dot span {
    background: none repeat scroll 0 0 black;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    display: block;
    height: 6px;
    width: 6px;
    -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1); 
   	   -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1); 
         -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1); 
            transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

#blog-carousel .owl-dot.active span {
    background: none repeat scroll 0 0 transparent;
    border: 1px solid black;
	-webkit-transform: scale(1.4); 
	   -moz-transform: scale(1.4); 
	    -ms-transform: scale(1.4); 
	     -o-transform: scale(1.4); 
	        transform: scale(1.4);   
}

.blog-img {
	position: relative;
	overflow: hidden;
}

.blog-img img {
	min-width: 100%;
}

.blog-img-hover {
	position: absolute;
	bottom: -40px;
	background:black;
	left: 0;
	right: 0;
	width: 100%;
	padding: 0 15px;
	opacity: .8;
	-webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-img:hover .blog-img-hover {
	bottom: 0;
	-webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-img-hover h3 {
	color: white;
	font-family: 'Light';
	font-size: 10px;
	margin: 12px 0;
}

/*Blog single pages*/
.blog-page .blog-search {
	margin: 0;
}

.widget {
	margin-bottom: 60px;
}

.widget-title {
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	padding-bottom: 5px;
}

.tags a {
	border: 1px solid #e9e9e9;
    color: #777;
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 2px 5px 0;
    padding: 5px 7px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.tags a:hover {
	border: 1px solid black;
	  -webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-number {
	font-size: 9px;
	opacity: 0.6;
	margin-left: 5px;
}

.widget-list li a {
	-webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-list li:hover > a {
	margin-left: 10px;
  	-webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.last-posts-list li,
.archive-list li,
.comments-list li  {
	padding: 7px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	line-height: 1.7;
}

.last-posts-list .last-post-img,
.comments-post-img {
	float: left;
	margin-right: 10px;
	-webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);	
}

a.last-post-img {
	z-index: 5;
}

.last-posts-list li:hover {
	opacity: 0.8;
	-webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.last-post-text {
    overflow: hidden;
}

.widget .blog-post-info {
	margin-top: -5px;
}

.widget .blog-post-info p {
	margin-bottom: 0;
}

.about-widget a {
	float: left;
	padding-right: 15px;
}

.blog-item {
    margin-bottom: 80px;
    position: relative;
}

.blog-item-info {
	margin-top: 0;
}

.blog-item-title h2 {
	margin-bottom: 5px;
}

.blog-item-content {
	padding: 15px 0;
}

.pagination a {
	border: 1px solid #eaeaea;
    color: rgba(153, 153, 153, 0.9);
    display: inline-block;
    font-size: 13px;
    min-width: 30px;
    padding: 6px 13px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.pagination a:hover,
.pagination a.active {
	border-color: #bbb;
    color: #444;
    -webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.fullwidth-info {
    color: #999;
    font-size: 12px;
    left: -120px;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 10px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 100px;
}

.single-blog-title {
	font-size: 32px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

 p.single-blog-text {
	margin: 45px 0;
}

.blog-separator {
	margin: 30px 0;
}

.blog-home {
	margin-bottom: 0;
}

.blog-home .blog-item-content {
	padding: 0;
}

.comments-posts-list li  {
	padding: 25px 0;
	border-bottom: 1px solid #e9e9e9;
}

.comments-post-img {
	width: 50px;
	height: 50px;
}

.reply-post {
	margin-left: 60px;
}

.remove-product  {
	font-size: 10px;
	float: none;
	color: rgba(0, 0, 0, 0.7);
	opacity: 1;
	font-family: 'Medium';
	text-transform: uppercase;
	font-weight: 300;
}

/*Shop*/
.product {
	margin-bottom: 60px;
}

.product-title h3 {
	font-size: 14px;
	letter-spacing: 0.15em;
}

.product-price p {
	font-size: 16px;
	font-family: 'Medium';
}

.product .product-img  {
	overflow: hidden;
}

.product .product-img a img {
	-webkit-transition: -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:    -moz-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:      -o-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:         transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.product .product-img  a:hover > img {
	-webkit-transition: -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:    -moz-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:      -o-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:         transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transform: scale(1.05);
	   -moz-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	     -o-transform: scale(1.05);
	        transform: scale(1.05);
}

.stars {
	font-size: 10px;
	color: black;
}

.price-search-btn {
	padding: 1em 3em;
}

/*Cart*/

.cart-table > tbody > tr > th,
.cart-table > tbody > tr > td {
	vertical-align: middle;
}

.cart-table td {
	color: #5d5d5d;
    font-family: "Medium";
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#quantity {
	width: 70px;
	margin: 0;
}

.cart-title {
	font-family: "Medium";
	font-size: 10px;
	letter-spacing: 0.15em;
	color: black;
	font-weight: 300;
}

.cart-table > thead > tr > th {
	border: none;
}

.cart input[type="text"] {
	margin: 0 auto;
}

.cart-calc p {
	display: inline-block;
	margin: 0;
}

.cart-calc .single-price {
	margin-right: 0;
}

.cart-calc span{
	display: inline-block;
	width: 80px;
}

/*Shop single*/
.single-product-title h3{
	font-family: "Medium";
	font-size: 18px;
}

.product-subtitle {
	font-size: 12px;
	font-family: "Light";
	color: #777;
}

.single-price {
	font-size: 18px;
	color: black;
	font-family: "Bold";
	margin-right: 10px;
	margin-bottom: 0;
}

.single-product-price del, 
.single-product-price .single-price {
	display: inline-block;
}

.shipping {
	font-family: 'Medium';
	font-size: 10px;
}

.rating span {
  display: inline-block;
  position: relative;
  width: 1.15em;
  font-size: 12px;
  color: black;
}

.product-part {
	margin-bottom: 50px;
}

.product-part-inline {
	display: inline-block;
	vertical-align: middle;
}

.product-size {
	display: inline-block;
	margin-right: 10px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border: 1px solid #e9e9e9;
    color: #777;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    -webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-size:hover,
.product-sizes li.active{
	border: 1px solid black;
	cursor:pointer ;
    -webkit-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	   -moz-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	     -o-transition:all 1s cubic-bezier(0.23, 1, 0.32, 1); 
	        transition:all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

#product-carousel img {
    display: block;
    margin: 0 auto;
    width: auto;
}

.tab-pane {
	padding-top: 20px;
}

.product-list li {
	padding: 15px 0;
}

.product-list p,
.product-list .blog-post-info {
	margin: 0;
}

.list-group-item {
	padding: 5px 15px;
}

/*Parallax-b*/
#parallax-b {
	color: white;
	padding-bottom: 140px;
	position: relative;
	background-position: center;
}

#parallax-b .home-title {
	margin-bottom: 25px;
	padding-left: 51px;
}

.parallax-seciton-content {
	position: relative;
	z-index: 1;
}

#parallax-b p {
	font-size: 11px;
}

/*Home_slider_fullscreen*/
.homepage_slider {
	position: relative;
}

.homepage_slider .container-fluid {
	padding: 0;
}

.homepage_slider .item {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size:cover; 
    -moz-background-size:cover; 
    -o-background-size:cover; 
    background-size:cover; 
}

.home-slider-fullscreen {
	height: 100vh;
}

.home-slider-fullscreen .slide {
	width: 100%;
	height: 100vh;
	position: relative;
	max-height: 100vh;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, .home-slider-fullscreen .slide {
        height: 680px;
  }
}

.home-slider-fullscreen .slide-content,
.slider-home-content {
	position: absolute;
	top: 35%;
	width: 100%;
	margin: 0 auto;
	z-index: 4;
}

/*Home_slider_fullwidth*/
.homepage-slider-fullwidth {
	height: 600px;
}

.home-slider-fullwidth .slide {
	width: 100%;
	height: 75vh;
	position: relative;
	max-height: 100vh;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, .home-slider-fullwidth .slide {
        height: 580px;
  }
}

.home-slider-fullwidth .slide-content {
	position: absolute;
	top: 35%;
	width: 100%;
	margin: 0 auto;
	z-index: 4;
}

/*Home_slider_background*/
.homepage_slider .home-content {
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

/*HR*/
hr {
    background-color: rgba(255, 255, 255, 0.08);
}

hr {
	border: 1px solid #eee;
    margin-bottom: 20px;
    margin-top: 20px;
}

.overlay,
.slide-overlay {
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.hard-overlay {
	background-color: rgba(0, 0, 0, 0.85);
}

.medium-overlay {
	background-color: rgba(0, 0, 0, 0.75);
}

.light-overlay {
	background-color: rgba(0, 0, 0, 0.4);
}

.black-overlay-video {
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 2;
}

.white-overlay {
	background-color: rgba(255, 255, 255, 0.25);
}

#home_text_typer {
	height: 60px;
	margin: 35px auto;
}

#home_text_typer h2 {
	margin: 0 auto;
}

/*particles homepage*/
#particles-js,
#particles-js-white {
	height: 100vh;
	z-index: -1;
}

.particles-content {
	margin:  0;
	position: absolute;
	width: 100%;
	top: 0;
}

/*Single Page*/
.single_page_nav.nav-black .home-navigation {
	opacity: 1;
	padding: 0; 
}

.homepage-single-page .home-content {
	margin: 200px 0 160px ;
}

.homepage-single-page-s .home-content {
	margin: 160px 0 100px;
}

.homepage-single-page-xs .home-content {
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 60px;
	margin-left: 0;	
}

.main-title-single-page {
	font-size: 25px;
	letter-spacing: 0.3em;
	color: #fff;
	padding-left: 10px;	
}

.main-title-single-page2 {
	font-size: 25px;
	letter-spacing: 0.3em;
	color: #630;
}


.main-title-single-page.text-left {
	text-align: left;
}

.vcenter {
     display: flex;
     align-items: center;
}

.title_right {
	float: right;
}

.homepage-single-page {
	position: relative;
}

.single-page-overlay {
	background-color: rgba(0, 0, 0, 0.3);
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#faq .main-text {
	width: 100%;
	text-align: left;
	opacity: .8;
	letter-spacing: 1px;
	padding: 15px;
	color: #000;
}

.question {
	margin: 10px 0;
}

.panel {
	-webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

.faq .panel h4 {
	margin: 0;
}

.accordion-title {
	color: #000;
	opacity: .9;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.2em;	
	margin: 0;
	text-align: left;
	border: 1px solid #e5e5e5;
	padding: 15px;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}


.accordion-dark {
	border: 1px solid rgba(0, 0, 0, 0.8);
	color: #777;
}

.gallery-item {
	margin: 7.5px auto;	
}

.gallery-1 .gallery-item {
	margin: 20px auto;	
}

.gallery-item a img {
	width: 100%;
}

/*Log In*/
/*Register */
.register .login-register-content {
	margin-top: 25%;
}

.login-form input {
	width: 60%;
}

#login .navbar-brand,
#login .navbar-brand:hover,
#login .navbar-brand:active ,
#login .nav li a ,
#login .navbar-toggle .et-icon {
	color: black;
}

input.border-field,
textarea.border-field,
select.border-field  {
	width: 85%; 
	display: block;
	margin: 0 auto 15px;
	background: #F5F5F5;
	border:none;
	font-family: 'Light';
	padding: 5px 15px;
	font-size: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

input.border-field[type="color"] {
	border: 1px solid rgba(0, 0, 0, 0.4);
	padding: 1px;
	background: none;
	width: 85%;
	height: 40px;
}

select.border-field option {
	padding: 5px 15px;
}

input.border-field:hover,
textarea.border-field:hover  {
	border: 1px solid rgba(0, 0, 0, 0.4);
}

input.border-field:focus,
textarea.border-field:focus  {
	border: 1px solid rgba(0, 0, 0, 0.7);
	outline: none;
}

.field-small {
	padding: 2px 15px !important;
}

.field-big {
	padding: 10px 15px !important;
}

/*404 Page*/
.page-404,
.login-register {
	height: 100vh;
}

.cover {
	background-size: cover;
}

.page-content {
	display: table;
    height: 100%;
    text-align: center;
    width: 100%;
}

.page-404 .content-inner,
.login-register .content-inner {
	display: table-cell;
    height: 100%;
    vertical-align: middle;
}

.content-wrap,
.login-register-content {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 650px;
    padding: 50px 25px;
    position: relative;
    text-align: center;
    opacity: .8;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.box-shadow-white {
	-webkit-box-shadow: 1px 10px 18px 6px rgba(255,255,255,0.41);
       -moz-box-shadow: 1px 10px 18px 6px rgba(255,255,255,0.41);
            box-shadow: 1px 10px 18px 6px rgba(255,255,255,0.41);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.box-shadow-black {
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 1px 10px 18px 6px rgba(0,0,0,0.41);
       -moz-box-shadow: 1px 10px 18px 6px rgba(0,0,0,0.41);
            box-shadow: 1px 10px 18px 6px rgba(0,0,0,0.41);
}

.page-404 .main-title,
.login-register .main-title {
	letter-spacing: 0.15em;
	font-size: 16px;
	margin-bottom: 40px;
}

.big-title {
	font-size: 70px;
	font-family: 'Bold';
}

.big-title-s {
	font-size: 80px;
	font-family: 'Bold';
}

/*Portfolio*/
.filters {
	margin-bottom: 25px;
	margin-top: 25px;
}

.filters li {
	display: inline-block;
	text-align: center;
	overflow: hidden;
	background-color: #930000;
	padding: 10px;
	margin-top: 10px;
}

.filters a {
	color: #fff;
	font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-size: 16px;
	letter-spacing: 0.15em;
	line-height: 1.4;
	padding: 0 10px;
	text-transform: uppercase;
	opacity: .8;
	-webkit-transition: all0.52s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	
}

.filters a::after {
    background-color: #fff;
    bottom: -5px;
    content: "";
    display: block;
    height: 1px;
    left: 0;
  	 padding: 0;
    position: absolute;
    -webkit-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);	
    width: 0;
}

.filters a:hover::after {
    width: 100%;
    padding: 0 10px;
}

.filters a:hover {
	opacity: 1;
    -webkit-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:  all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.no-gutter .portfolio-item,
.no-gutter .gallery-item {
	padding: 0;
	margin: 0;
	vertical-align: top;
}

.portfolio-item-img {
	position: relative;
	overflow: hidden;
}

.portfolio-item {
	overflow: hidden;
	vertical-align: top;
}

div.portfolio-hover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	background: white;
	display: block;
	color: black;
	bottom: 0;
	opacity: 0;
    -webkit-transition:  opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:  opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:  opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:  opacity 2s cubic-bezier(0.23, 1, 0.32, 1);	
}

.portfolio-hover-content {
	top: 40%;
	position: relative;
	left: 10%;
	-webkit-transform:  translateX(-400px);
	   -moz-transform:  translateX(-400px);
	    -ms-transform:  translateX(-400px);
	     -o-transform:  translateX(-400px);
	        transform:  translateX(-400px);
    -webkit-transition:  -webkit-transform 0.6s cubic-bezier(0.835, 0, 0.19, 1);
	   -moz-transition:     -moz-transform 0.6s cubic-bezier(0.835, 0, 0.19, 1);
	     -o-transition:       -o-transform 0.6s cubic-bezier(0.835, 0, 0.19, 1);
	        transition:          transform 0.6s cubic-bezier(0.835, 0, 0.19, 1);
}

.portfolio-line {
	width: 15px;
	border-bottom: 1px solid black;
	margin: 10px 0;
}

.portfolio-hover-title {
	font-size: 18px;
}

.portfolio-item-img img {
	-webkit-transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	        transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
			width: 100%;
}

.portfolio-item-img:hover  img {
	-webkit-transition: -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition:    -moz-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition:      -o-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	        transition:         transform 2s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transform: scale(1.05);
	   -moz-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	     -o-transform: scale(1.05);
	        transform: scale(1.05);
}

.portfolio-item-img:hover .portfolio-hover-content {
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
	    -ms-transform: translateX(0px);
	     -o-transform: translateX(0px);
	        transform: translateX(0px);
}

.portfolio-item-img:hover .portfolio-hover {
	-webkit-transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
	        transition: opacity 2s cubic-bezier(0.23, 1, 0.32, 1);
	opacity: .85;
}

.portfolio-item-text {
	padding: 5px 0 0;
}

.col-sm-4 .portfolio-line ,
.col-md-3 .portfolio-line ,
.col-lg-2 .portfolio-line {
	margin: 5px 0;
}

.col-lg-2 .portfolio-hover-title {
	font-size: 14px;
}

.col-md-3 .portfolio-hover-content {
	top: 35%;
}



h3.portfolio-title {
	font-size: 16px;
	letter-spacing: 0.15em;
	margin: 10px 0 5px;
}

p.portfolio-subtitle {
	font-size: 12px;
	color: #5F5F5F;
	font-weight: 300;
	line-height: 1.86;
	margin: 0 auto;
	opacity: .9;
	letter-spacing: 0.1em;
}

.wide-portfolio .container-fluid {
	padding: 0;
}

/*Portfolio Single*/
.project-details li {
	padding: 6px;
	text-transform: uppercase;
}

.project-details li p {
	opacity: .9;
	font-size: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	letter-spacing: 0.2em;
}

.project-details h3 {
	margin: 0 0 15px;
}

.project-details li p span {
	width: 120px;
	display: inline-block;
	font-weight: bold;
}

.buttons-page .btn-container {
	display: block;
	margin: 10px auto;
}

.buttons-page .btn-regular-container {
	margin: 25px auto;
	display: block;
}

/*Icons*/
span.icon-promo {
	padding: 20px;
}


span.icon-promo span {
	font-size: 33px;
	margin-right: 10px;
	min-width: 65px;
	min-height: 65px;
	line-height: 65px;
}

.fa-examples .column-box,
.et-icons-promo .column-box {
	padding: 5px;
	border: 1px solid rgba(0,0,0,0.1);
	-webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	        transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.fa-examples .column-box:hover,
.et-icons-promo .column-box:hover {
	border: 1px solid rgba(0,0,0,0.4);
	-webkit-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
	        transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.fa-examples {
	font-size: 12px;
}

.fa-examples .awesome {
	opacity: .6;
	margin-left: 5px;
}

.awesome-icons-promo i {
	font-size: 18px;
	margin-right: 10px;
}

.icons-promo p {
	font-size: 12px;
	color: black;
	font-family: "Medium";
	opacity: .7;
	margin: 5px 0;
}

.icons-promo span {
	font-size: 33px;
	color: black;
	opacity: 1;
}

/*Alerts*/
.alert {
	background: none;
	padding: 13px 20px;
}

.alert p {
	text-transform: uppercase;
	font-size: 10px;
	font-family: "Medium";
	letter-spacing: 1px;
	line-height: 1.5em;
}

.alert-dismissable .close, 
.alert-dismissible .close {
	right: 0;
	top: 50%;
	opacity: .8;
}

/*Modal*/

.modal-content {
	padding: 50px;
}

.modal button.close {
	position: absolute;
	top: 20px;
	right: 30px;
}

.close-white,
.close-white:hover {
	color: white;
	opacity: 0.9;
}

.login-1-modal h2 {
	margin-bottom: 5px;
}

.promo-modal .btn-regular-container {
	margin-top: 20px;
}

.background-modal .modal-content {
	background: url("../img/portfolio-1.jpg");
	background-position: center;
	background-size: cover;
}

.promo-modal-2 .modal-content {
	background: url("../img/full-width-images/bg-14.jpg");
	background-position: center;
	background-size: cover;
}

.modal-content .home-title small {
	color: #777;
}

.background-modal  p.main-text {
	color: white;	
}

.promo-modal-2 h2 {
	font-size: 20px;
}

.background-modal .btn-regular-container,
.text-modal .btn-regular-container {
	display: inline;
	width: 50%;
}

.modal .space {
	padding: 20px 0;
}

/*Multimedia*/
.media {
	margin: 15px 0;
}

.multimedia-modal-content {
	padding: 0;
	margin: 0;
}

.music-modal .media,
.video-modal .media {
	margin: 0;
}

.music-modal button.close,
.video-modal button.close {
	top: -30px;
	right: 0;
}

/*Contact*/
.contact button {
	border: none;
	background: none;
}

input.no-border-field,
textarea.no-border-field,
select.no-border-field  {
	width: 90%;
	display: block;
	margin: 0 auto 25px;
	background: none;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	color: #4a4a4a;
	font-family: 'Light';
	padding: 7px 15px;
	font-size: 11px;
	 -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
       -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1); 
         -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1); 
            transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

input.no-border-field[type="color"] {
	height: 38px;
}

select.no-border-field option {
	padding: 5px 15px;
}

input.no-border-field:hover,
textarea.no-border-field:hover  {
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

input.no-border-field:focus,
textarea.no-border-field:focus  {
	border-bottom: 1px solid rgba(0, 0, 0, 0.7);
	outline: none;
}


.contact .submit p {
	color: #aaa;
	font-size: 10px;
}

.contact-content {
	padding: 50px 0 0;
}

.contact h3 {
	margin: 4px 0;
}

.contact-part {
	margin: 20px 0;
}

.contact-part p {
	color: #828484;
	letter-spacing: 0.15em;
	line-height: 1.2em;
	text-transform: uppercase;
	font-size: 11px;
}

.contact img {
	margin: 0 auto;
}

.contact-info {
	text-align: left;
}

.contact-part .et-icon {
	font-size: 16px;
	display: inline-block;
	margin: 0;
	margin-right: 10px;
	color: black;
	width: 20px;
	text-align: center;
	opacity: 1;
}

.contact-part p {
	display: inline-block;
}

.social-icons a {
	color: white;
	font-size: 18px;
	display: inline-block;
	margin: 0 5px;
	opacity: .5;
    -webkit-transition:  all 0.3s ease-in;
       -moz-transition:  all 0.3s ease-in; 
         -o-transition:  all 0.3s ease-in; 
            transition:  all 0.3s ease-in;
}

.social-icons a:hover {
	opacity: 1;
    -webkit-transition:  all 0.3s ease-in;
       -moz-transition:  all 0.3s ease-in; 
         -o-transition:  all 0.3s ease-in; 
            transition:  all 0.3s ease-in;
}

.social-icons-opacity a {
	color: black;
	opacity: .3;
}

/*Footer-section*/
.footer-section {
	padding-bottom: 15px;
	padding-top: 30px;
}

.footer-section-gray {
	background-color: #F7F7F7;
}

.footer-section-emerald {
	background-color: #009e96;
}

.footer-section-red {
	background-color: #990000;
}

.footer-section-green {
	background-color: #00a63c;
}

.footer-section-white {
	background-color: white;
}
.footer {
	padding: 10px 0;
	background-color: #00a73b;
}

.footer .copyright {
  margin: 0;
}
.foot_address {
	font-size: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0px;
	font-weight: bold;
	color: #FFF;
}
.foot_menkyo {
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	color: #FFF;
}
.foot_tel {
	font-size: 26px;
	padding: 0px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #FFFF00;
}
.foot_read {
	font-size: 16px;
	margin: 0px;
}
.link_list {
	margin-top: 5px;
	margin-bottom: 10px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

.link_list li {
	font-size: 14px;
	display: inline;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 10px;
}

.link_list li a {
	color: #FFF;
}

.foot_bg {
	background-image: url(../img/full-width-images/kon_bg.jpg);
	background-repeat: repeat;
}

/*Demo*/
.demo-item {
	padding: 20px 0;
}

.demo-title {
	font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #777;
    font-family: "Medium";
}

.demo-item a {
	-webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
	        transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-item a:hover {
	opacity: .8;
	-webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
	   -moz-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
	     -o-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
	        transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-white-bg .home-title small {
	color: black;
}

.home-title small {
	color: white;
}


/*サイド*/

.side_kentiku{
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	font-size: 15px;
	color: #FFF;
	background-color: #C63;
	font-weight: 600;
}

.side_space{
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}

.side_title{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	font-size: 21px;
	margin-top: 0px;
	margin-bottom: 10px;
	border-bottom-color: #B3A882;
	color: #630;
	padding-bottom: 5px;
	font-weight: 600;
}

.side_estate{
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	font-size: 15px;
	margin-top: 15px;
	margin-bottom: 5px;
	border-bottom-color: #B3A882;
}

/* ヘッダータイトル
---------------------------------*/
.head_ttl {
	font-size: 30px;
	margin-top: 0px;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 30px;
	padding: 5px;
}
.head_ttl2 {
	font-size: 18px;
	margin-top: 10px;
	color: #F90;
	text-align: left;
	font-weight: normal;
}

/* マージン
---------------------------------*/
.mt5 {
	margin-top: 5px;	
}

.mt10 {
	margin-top: 10px;	
}
.mt13 {
	margin-top: 13px;	
}
.mt20 {
	margin-top: 20px;	
}
.mt30 {
	margin-top: 30px;	
}
.mt40 {
	margin-top: 40px;	
}
.mt50 {
	margin-top: 50px;	
}
.mt60 {
	margin-top: 60px;	
}
.mt70 {
	margin-top: 70px;	
}
.mt80 {
	margin-top: 80px;	
}
.mt90 {
	margin-top: 90px;	
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb60 {
	margin-bottom: 60px;
}
.mp00 {
	margin: 0px;
	padding: 0px;
}
.mp10 {
	margin: 1px;
	padding: 0px;
}
.mp01 {
	margin: 0px;
	padding: 1px;
}
.ml10 {
	margin-left: 10px;
}

/* グーグルマップ
---------------------------------*/
#map {
	width: 100%;
	height: 400px;
	margin-right: 0;
	margin-left: 0;
}

/* ぱんくず
---------------------------------*/
.pan_ttl {
	font-size: 22px;
	color: #000;
	text-align: left;
}
.pan_sub {
	font-size: 14px;
	color: #666;
	text-align: left;
}
.pan_list {
	font-size: 12px;
	color: #666;
	text-align: right;
}

/* カーサクラシオン
---------------------------------*/
.casa_ttl{
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000;
	border-bottom-color: #000;
	margin-top: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	
}
.casa_rogo{
	text-align: right;	
}

/* 画像隠し
---------------------------------*/
.sp-hidden{
	display: block !important;
}

.pc-hidden{
	display: none !important;
}

img.sp-hidden{
	display: inline !important;
}

img.pc-hidden{
	display: none !important;
}

/* リンクボックス
---------------------------------*/
.more_box {
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
	margin-right: auto;
	margin-left: auto;	
	margin-top: 50px;
	letter-spacing: 0.1em;
}
.more_box2 {
	font-size: 16px;
	line-height: 1.8;
	text-align: center;
	margin-right: auto;
	margin-left: auto;	
	margin-top: 10px;
	letter-spacing: 0.1em;
}
.button {
	background: none repeat scroll 0 0 #727171;
	border: 2px solid #333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 20px;
	text-decoration: none;
	padding-top: 8px;
	padding-right: 48px;
	padding-bottom: 8px;
	padding-left: 48px;
}

.foot_link_box {
	text-align: center;
	margin-top: 5px;
	margin-bottom: 10px;
	padding: 3px;
}
.foot_button {
	background: none repeat scroll 0 0 #fff;
	border: 2px solid #333;
	border-radius: 3px;
	color: #333;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 10px;
	text-decoration: none;
	font-size: 16px;
	padding-top: 8px;
	padding-right: 25px;
	padding-bottom: 8px;
	padding-left: 25px;
}

/* 上部タイトル */

.top_ttl {
	font-size: 48px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 0px;
	text-align: center;
	color: #000;
	padding-top: 10px;
	font-family: "Sawarabi Mincho";	
}

.top_ttl_sub {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 50px;
	color: #000;
	text-align: center;	
	font-weight: bold;	
}

.top_ttl_w {
	font-size: 48px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 0px;
	text-align: center;
	color: #fff;
	padding-top: 10px;
	font-family: "Sawarabi Mincho";	
	text-shadow: -1px -2px 3px #808080;
}

.top_ttl_sub_w {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 50px;
	color: #fff;
	text-align: center;	
	font-weight: bold;	
	text-shadow: -1px -2px 3px #808080;
}

.top_read {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 50px;
	color: #000;
	padding: 10px;
	margin-top: 10px;
}

.request_bn{
	padding-right: 20px;
	padding-left: 20px;	
}
.footer_space{
	margin-top: 20px;	
}
.h1_space{
	margin-top: 0px;
}