/* =================================================================== 
 *
 *  Howdy v1.0 Main Stylesheet
 *  08-13-2016
 *  ------------------------------------------------------------------
 *
 *  TOC:
 *  01. webfonts and iconfonts
 *  02. base style overrides
 *  03. typography & general theme styles
 *  04. forms 
 *  05. buttons
 *  06. other components
 *  07. common and reusable styles
 *  08. header styles
 *  09. home
 *  10. about
 *  11. skills
 *  12. credentials
 *  13. portfolio
 *  14. stats
 *  15. contact
 *  16. footer
 *
 * =================================================================== */


/* ===================================================================
 *  01. webfonts and iconfonts - (_document-setup)
 *
 * ------------------------------------------------------------------- */
@import url("font-awesome/css/font-awesome.min.css");
@import url("windows10/windows10.css");

/* montserrat */
@font-face {
	font-family: "montserrat-regular";
	src: url("../fonts/montserrat/montserrat-regular-webfont.woff2") format("woff2"), 
	     url("../fonts/montserrat/montserrat-regular-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "montserrat-bold";
	src: url("../fonts/montserrat/montserrat-bold-webfont.woff2") format("woff2"), 
	     url("../fonts/montserrat/montserrat-bold-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
}

/* libre baskerville */
@font-face {
	font-family: "librebaskerville-regular";
	src: url("../fonts/librebaskerville/librebaskerville-regular-webfont.woff2") format("woff2"), 
	     url("../fonts/librebaskerville/librebaskerville-regular-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "librebaskerville-italic";
	src: url("../fonts/librebaskerville/librebaskerville-italic-webfont.woff2") format("woff2"), 
	     url("../fonts/librebaskerville/librebaskerville-italic-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "librebaskerville-bold";
	src: url("../fonts/librebaskerville/librebaskerville-bold-webfont.woff2") format("woff2"), 
	     url("../fonts/librebaskerville/librebaskerville-bold-webfont.woff") format("woff");
	font-style: normal;
	font-weight: normal;
}

/* ===================================================================
 *  02. base style overrides - (_document-setup)
 *
 * ------------------------------------------------------------------- */
html {
	font-size: 10px;
}
@media only screen and (max-width:1024px) {
	html {
		font-size: 9.375px;
	}
}
@media only screen and (max-width:768px) {
	html {
		font-size: 10px;
	}
}
@media only screen and (max-width:375px) {
	html {
		font-size: 9.375px;
	}
}

html,
body {
	height: 100%;
    max-width: 100%
}



body {
	background: #050505;
	font-family: "librebaskerville-regular", serif;
	font-size: 1.6rem;
	line-height: 3rem;
	color: #353535;
	margin: 0;
	padding: 0;
}


.wrap {
	overflow: hidden;
}

.padding_box{padding:0 10%}




.title{
	position: absolute;
    z-index: 2;
	left: 50px;
    top:40px;
}

.title img{
	width: 100%;

}



.js .animate-this,
.js .animate-intro {
	opacity: 0;
}

.oldie .animate-this,
.oldie .animate-intro
.no-cssanimations .animate-this,
.no-cssanimations .animate-intro {
	opacity: 1;
}



@media only screen and (max-width:1024px) {
    .title{
	position: absolute;
    z-index: 2;
	left:5%;
    top:40px;
}

.title img{
	width: 80%
}
}

@media only screen and (max-width:768px) {
    .title{
	position: absolute;
    z-index: 2;
	left:7%;
    top:40px;
}

.title img{float: left;
	width: 70%;
}
    
}

@media only screen and (max-width:600px) {}

@media only screen and (max-width:375px) { 
    .title{
	position: absolute;
    z-index: 999;
	left:7%;
    top:40px;
}

.title img{float: left;
	width: 70%;
    
}
}


/* ------------------------------------------------------------------- 
 * links - (_document-setup) 
 * ------------------------------------------------------------------- */
a,
a:visited {font-family:  sans-serif;
	color: #f0a359;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
	color: #000000;
}

/* ===================================================================
 *  03. typography & general theme styles - (_document-setup.scss) 
 *
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .h01, .h02, .h03, .h04, .h05, .h06 {
	font-family: "montserrat-bold", sans-serif;
	color: #000;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin-bottom: 2.1rem;
}

h3, .h03, h4, .h04 {
	margin-bottom: 1.8rem;
}

h5, .h05, h6, .h06 {
	margin-bottom: 1.2rem;
}

h1, .h01 {
	font-size: 3.1rem;
	line-height: 1.35;
	letter-spacing: -.1rem;
}



@media only screen and (max-width:600px) {
	h1, .h01 {
		font-size: 2.6rem;
		letter-spacing: -.07rem;
	}
}

h2, .h02 {
	font-size: 2.4rem;
	line-height: 1.25;
}
h3, .h03 {
	font-size: 2rem;
	line-height: 1.5;
}
h4, .h04 {
	font-size: 1.7rem;
	line-height: 1.76;
}
h5, .h05 {
	font-size: 1.4rem;
	line-height: 1.7;
	text-transform: uppercase;
	letter-spacing: .2rem;
}
h6, .h06 {
	font-size: 1.3rem;
	line-height: 1.85;
	text-transform: uppercase;
	letter-spacing: .2rem;
}

p img {
	margin: 0;
}

p{
	font-family: "montserrat-regular", sans-serif;
}


p.lead {
	font-family: "montserrat-regular", sans-serif;
	font-size: 2rem;
	line-height: 1.8;
	color: #4f4f4f;
	margin-bottom: 3.6rem;
}

@media only screen and (max-width:768px) {
	p.lead {
		font-size: 1.8rem;
	}

}

em, i, strong, b {
	font-size: 1.6rem;
	line-height: 3rem;
	font-style: normal;
	font-weight: normal;
}
em, i {
	font-family: "librebaskerville-italic", serif;
}
strong, b {
	font-family: "librebaskerville-bold", serif;
}

small {
	font-size: 1.1rem;
	line-height: inherit;
}

blockquote {
	margin: 3rem 0;
	padding-left: 5rem;
	position: relative;
}

blockquote:before {
	content: "\201C";
	font-size: 10rem;
	line-height: 0px;
	margin: 0;
	color: rgba(0, 0, 0, 0.3);
	font-family: arial, sans-serif;
	position: absolute;
	top: 3.6rem;
	left: 0;
}

blockquote p {
	font-family: "librebaskerville-italic", georgia, serif;
	font-style: italic;
	padding: 0;
	font-size: 1.9rem;
	line-height: 1.895;
}

blockquote cite {
	display: block;
	font-size: 1.3rem;
	font-style: normal;
	line-height: 1.615;
}

blockquote cite:before {
	content: "\2014 \0020";
}

blockquote cite a,
blockquote cite a:visited {
	color: #4f4f4f;
	border: none;
}

abbr {
	font-family: "librebaskerville-bold", serif;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: .05rem;
	color: #4f4f4f;
}

var, kbd, samp, code, pre {
	font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
	padding: 2.4rem 3rem 3rem;
	background: #F1F1F1;
}

code {
	font-size: 1.4rem;
	margin: 0 .2rem;
	padding: .3rem .6rem;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 3px;
}

pre > code {
	display: block;
	white-space: pre;
	line-height: 2;
	padding: 0;
	margin: 0;
}

pre.prettyprint > code {
	border: none;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

mark {
	background: #FFF49B;
	color: #000;
}

hr {
	border: solid #d2d2d2;
	border-width: 1px 0 0;
	clear: both;
	margin: 2.4rem 0 1.5rem;
	height: 0;
}

/* ------------------------------------------------------------------- 
 * Lists - (_document-setup.scss)  
 * ------------------------------------------------------------------- */
ol {
	list-style: decimal;
}
ul {
	list-style: disc;
}
li {
	display: list-item;
}
ol, ul {
	margin-left: 1.7rem;
}
ul li {
	padding-left: .4rem;
}
ul ul, ul ol, ol ol, ol ul {
	margin: .6rem 0 .6rem 1.7rem;
}

ul.disc li {
	display: list-item;
	list-style: none;
	padding: 0 0 0 .8rem;
	position: relative;
}

ul.disc li::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4C2405;
	position: absolute;
	left: -17px;
	top: 11px;
	vertical-align: middle;
}

dt {
	margin: 0;
	color: #4C2405;
}

dd {
	margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * Spacing - (_document-setup)  
 * ------------------------------------------------------------------- */
button,
.button {
	margin-bottom: 1.2;
}

fieldset {
	margin-bottom: 1.5rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.fluid-video-wrapper,
.ss-custom-select {
	margin-bottom: 3rem;
}

/* ------------------------------------------------------------------- 
 * floated image - (_document-setup)  
 * ------------------------------------------------------------------- */
img.pull-right {
	margin: 1.5rem 0 0 3rem;
}

img.pull-left {
	margin: 1.5rem 3rem 0 0;
}



/* ------------------------------------------------------------------- 
 * pace.js styles - minimal  - (_document-setup.scss)
 * ------------------------------------------------------------------- */
.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-progress {
	background: #FFFFFF;
	position: fixed;
	z-index: 900;
	top: 0;
	right: 100%;
	width: 100%;
	height: 6px;
}


/* ===================================================================
 *  04. preloader - (_preloader-1.scss)
 *
 * ------------------------------------------------------------------- */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #050505;
	z-index: 800;
	height: 100%;
	width: 100%;
}

.no-js #preloader,
.oldie #preloader {
	display: none;
}

#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	padding: 0;
}

#loader:before {
	content: "";
	border-top: 6px solid rgba(255, 255, 255, 0.1);
	border-right: 6px solid rgba(255, 255, 255, 0.1);
	border-bottom: 6px solid rgba(255, 255, 255, 0.1);
	border-left: 6px solid #FFFFFF;
	-webkit-animation: load 1.1s infinite linear;
	animation: load 1.1s infinite linear;
	display: block;
	border-radius: 50%;
	width: 60px;
	height: 60px;
}

@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}

@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}

}


/* ===================================================================
 *  04. forms - (_forms.scss)
 *
 * ------------------------------------------------------------------- */
fieldset {
	border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	display: block;
	height: 6rem;
	padding: 1.5rem 0;
	border: 0;
	outline: none;
	vertical-align: middle;
	color: #313131;
	font-family: "montserrat-regular", sans-serif;
	font-size: 1.5rem;
	line-height: 3rem;
	max-width: 100%;
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.ss-custom-select {
	position: relative;
	padding: 0;
}

.ss-custom-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	margin: 0;
	line-height: 3rem;
	vertical-align: middle;
}

.ss-custom-select select option {
	padding-left: 2rem;
	padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
	display: none;
}

.ss-custom-select::after {
	content: '\f0d7';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	right: 1.5rem;
	margin-top: -10px;
	bottom: auto;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 18px;
	text-align: center;
	pointer-events: none;
	color: #252525;
}

/* IE9 and below */
.oldie .ss-custom-select::after {
	display: none;
}

textarea {
	min-height: 25rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	color: #1c0d02;
	border-bottom: 1px solid #4C2405;
}

label,
legend {
	font-family: "montserrat-bold", sans-serif;
	font-size: 1.4rem;
	margin-bottom: .6rem;
	color: #020202;
	display: block;
}

input[type="checkbox"],
input[type="radio"] {
	display: inline;
}

label > .label-text {
	display: inline-block;
	margin-left: 1rem;
	font-family: "montserrat-regular", sans-serif;
	line-height: inherit;
}

label > input[type="checkbox"],
label > input[type="radio"] {
	margin: 0;
	position: relative;
	top: .15rem;
}

/* -----------------------------------------------------------
 * Style Placeholder Text  
 * ----------------------------------------------------------- */
::-webkit-input-placeholder {
	color: #828282;
}

:-moz-placeholder {
	color: #828282;  /* Firefox 18- */
}

::-moz-placeholder {
	color: #828282;  /* Firefox 19+ */
}

:-ms-input-placeholder {
	color: #828282;
}

.placeholder {
	color: #828282 !important;
}

/* -----------------------------------------------------------
 * Change Autocomplete styles in Chrome
 * ----------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	border: none;
	-webkit-text-fill-color: #7c3b08;
	transition: background-color 5000s ease-in-out 0s;
}



/* ===================================================================
 *  06. other components - (_others.scss)
 *
 * ------------------------------------------------------------------- */ 



/* ------------------------------------------------------------------- 
 * additional typo styles - (_additional-typo.scss)
 * ------------------------------------------------------------------- */


/* ------------------------------------------------------------------- 
 * responsive:
 * section-intro
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
	.section-intro h1 {
		font-size: 4.2rem;
	}

	.section-intro h3 {
		font-size: 1.8rem;
	}

}

@media only screen and (max-width:600px) {
	.section-intro h1 {
		font-size: 3.6rem;
	}

	.section-intro h3 {
		font-size: 1.7rem;
	}

}

@media only screen and (max-width:375px) {
	.section-intro h1 {
		font-size: 3.3rem;
	}

	.section-intro h3 {
		font-size: 1.6rem;
	}

}


.js .animate-this,
.js .animate-intro {
	opacity: 0;
}

.oldie .animate-this,
.oldie .animate-intro
.no-cssanimations .animate-this,
.no-cssanimations .animate-intro {
	opacity: 1;
}


/* ===================================================================
 *  08. header styles - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
header {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 700;
}

header .row {
	height: auto;
	max-width: 1300px;
	position: relative;
}

/* ------------------------------------------------------------------- 
 * header logo - (_layout.css) 
 * ------------------------------------------------------------------- */
sp{display: none}

header .header-logo {
	text-align:center;
    padding-right: 0px;
    padding-left: 0px;
	-moz-transition: all 2s ease-in-out;
	-o-transition: all 2s ease-in-out;
	-webkit-transition: all 2s ease-in-out;
	-ms-transition: all 2s ease-in-out;
	transition: all 2s ease-in-out;
}




header .header-logo h1 {
	display: block;
	margin: 0 auto;
	padding: 0;
	outline: 0;
	border: none;
    margin-top: 5%;
	max-width: 800px;
        background-size:contain;
	font: 0/0 a;
	text-shadow: none;
	text-shadow: none;
	color: transparent;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
    

}

.header-logo img{animation-name:fade-in1;
  animation-duration:5s; //アニメーション時間
  animation-timing-function: ease-out; //アニメーションさせるイージング
  animation-delay:3s; //アニメーション開始させる時間
  animation-iteration-count:1; //繰り返し回数
  animation-direction:normal; //往復処理をするかどうか
  animation-fill-mode: forwards; //アニメーション後のスタイルをどうするか}


// アニメーション
@keyframes fade-in1 {
  0% {opacity: 0}
  100% {opacity: 1}
}



/* ------------------------------------------------------------------- 
 * menu trigger - (_layout.css) 
 * ------------------------------------------------------------------- */
#header-menu-trigger {
	display: block;
	position: fixed;
	right: 26px;
	top: 30px;
	height: 42px;
	width: 42px;
	line-height: 42px;
	font-family: "montserrat-regular", sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .2rem;
    background: #000;
	color: rgba(255, 255, 255, 0.5);
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#header-menu-trigger.opaque {
	background-color: #000000;
}

#header-menu-trigger.opaque .header-menu-text {
	background-color: #000000;
}

#header-menu-trigger:hover,
#header-menu-trigger:focus {
	color: #000000;
}

#header-menu-trigger .header-menu-text {
	display: block;
	position: absolute;
	top: 0;
	left: -75px;
	width: 75px;
	text-align: center;
	background-color: transparent;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#header-menu-trigger .header-menu-icon {
	display: block;
	height: 2px;
	width: 24px;
	background-color: #FFFFFF;
	position: absolute;
	top: 50%;
	right: 9px;
	margin-top: -2px;
}

#header-menu-trigger .header-menu-icon::before,
#header-menu-trigger .header-menu-icon::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: inherit;
	position: absolute;
	left: 0;
}

#header-menu-trigger .header-menu-icon::before {
	top: -9px;
}

#header-menu-trigger .header-menu-icon::after {
	bottom: -9px;
}

/* ------------------------------------------------------------------- 
 * off-canvas menu - (_layout.scss) 
 * ------------------------------------------------------------------- */
#menu-nav-wrap {
	background: #111111;
	color: rgba(255, 255, 255, 0.25);
	font-family: "montserrat-regular", sans-serif;
	font-size: 1.5rem;
	line-height: 1.6;
	padding: 3.6rem 3rem;
	height: 100%;
	width: 240px;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	z-index: 800;
	overflow-y: auto;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

#menu-nav-wrap a,
#menu-nav-wrap a:visited {
	color: rgba(255, 255, 255, 0.5);
}

#menu-nav-wrap a:hover,
#menu-nav-wrap a:focus,
#menu-nav-wrap a:active {
	color: white;
}

#menu-nav-wrap h3 {
	color: white;
	font-family: "montserrat-regular", sans-serif;
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

#menu-nav-wrap .nav-list {
	margin: 3.6rem 0 1.5rem 0;
	padding: 0 0 1.8rem 0;
	list-style: none;
	line-height: 6rem;
}

#menu-nav-wrap .nav-list li {
	padding-left: 0;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.03);
	line-height: 6rem;
    text-align: center
}

#menu-nav-wrap .nav-list li:first-child {
	border-top: 1px dotted rgba(255, 255, 255, 0.03);
}

#menu-nav-wrap .nav-list li a {
	color: rgba(255, 255, 255, 0.45);
	display: block;
    text-decoration: none;
}

#menu-nav-wrap .nav-list li a:hover,
#menu-nav-wrap .nav-list li a:focus {
	color: white;
}

#menu-nav-wrap .header-social-list {
	list-style: none;
	display: inline-block;
	margin: 0;
	font-size: 2.1rem;
}

#menu-nav-wrap .header-social-list li {
	margin-right: 12px;
	padding-left: 0;
	display: inline-block;
}

#menu-nav-wrap .header-social-list li a {
	color: rgba(255, 255, 255, 0.15);
}

#menu-nav-wrap .header-social-list li a:hover,
#menu-nav-wrap .header-social-list li a:focus {
	color: white;
}

#menu-nav-wrap .header-social-list li:last-child {
	margin: 0;
}

#menu-nav-wrap .close-button {
	display: block;
	right: 26px;
	top: 30px;
	height: 42px;
	width: 42px;
	background-color: rgba(255, 255, 255, 0.2);
	position: absolute;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
}

#menu-nav-wrap .close-button span::before,
#menu-nav-wrap .close-button span::after {
	content: "";
	display: block;
	height: 2px;
	width: 15px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 13px;
	margin-top: -1px;
}

#menu-nav-wrap .close-button span::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#menu-nav-wrap .close-button span::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* menu is open */
.menu-is-open #menu-nav-wrap {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-overflow-scrolling: touch;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * header section 
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
    
    sp{display: none}
    
	header .header-logo {
		top: 27px;
	}


    
    header .header-logo h1 {
	display: block;
	margin: 0 auto;
	padding: 0;
	outline: 0;
	border: none;
	max-width: 450px;
        position: absolute;
        top:150px;
        left: 0;
        right:0;
        background-size:contain;
	font: 0/0 a;
	text-shadow: none;
	text-shadow: none;
	color: transparent;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
    
}

@media only screen and (max-width:375px) {
    
    sp{display:block}
    
    ps{display: none}
    
	#header-menu-trigger .header-menu-text {
		
	}
    
    header .header-logo {
		top: 27px;
	}


    
    header .header-logo h1 {
	display: block;
	margin: 0 auto;
	outline: 0;
        width: 330px;
        position: absolute;
        top:150px;
        left: 0;
        right:0;
	border: none;
        background-size:contain;
	font: 0/0 a;
	color: transparent;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
        min-height: 736px;

}

}

/* ===================================================================
 *  09. home - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#home {
	
	width: 100%;
	height: 900px;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-height: 804px;
	position: relative;
}



.home-content-table {
	width: 100%;
	height: 100%;
	display: table;
	position: relative;
}

.home-content-tablecell {
	display: table-cell;
	vertical-align: bottom;
	z-index: 500;
}

.home-content-tablecell .row {
	position: relative;
	padding-top: 4.2rem;
	padding-bottom: 15rem;
}

.home-content-tablecell h3 {
	font-family: "montserrat-bold", sans-serif;
	font-size: 2.2rem;
	color: rgba(255, 255, 255, 0.35);
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}

.home-content-tablecell h1 {
	font-family: "librebaskerville-bold", serif;
	font-size: 5.2rem;
	line-height: 1.5;
	color: #FFFFFF;
}



/* vertical animation */
@-webkit-keyframes vertical {
	0%,
	60%,
	80%,
	100% {
		-webkit-transform: translateY(0);
	}

	20% {
		-webkit-transform: translateY(-5px);
	}

	40% {
		-webkit-transform: translateY(20px);
	}

}

@keyframes vertical {
	0%,
	60%,
	80%,
	100% {
		-webkit-transform: translateY(0);
	}

	20% {
		-webkit-transform: translateY(-5px);
	}

	40% {
		-webkit-transform: translateY(20px);
	}

}

/* ------------------------------------------------------------------- 
 * responsive:
 * home section 
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1200px) {
    
    
    
    
	.home-content-tablecell h3 {
		font-size: 2.1rem;
	}

	.home-content-tablecell h1 {
		font-size: 5rem;
	}

}

@media only screen and (max-width:1024px) {
	.home-content-tablecell h3 {
		font-size: 2rem;
	}

	.home-content-tablecell h1 {
		font-size: 4.8rem;
	}

}

@media only screen and (max-width:768px) {
	.home-content-tablecell .row {
		padding-bottom: 11.4rem;
	}



	.home-content-tablecell h1 {
		font-size: 4rem;
	}

}

@media only screen and (max-width:600px) {
	#home {
		min-height: 702px;
	}

	.home-content-tablecell {
		vertical-align: middle;
	}

	.home-content-tablecell .row {
		padding-top: 9rem;
		padding-bottom: 3rem;
	}


}

@media only screen and (max-width:500px) {

	.home-content-tablecell h3 {
		font-size: 1.5rem;
	}

	.home-content-tablecell h1 {
		font-size: 3.4rem;
	}

}

@media only screen and (max-width:375px) {
	#home {
		height: 554px;
        width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	position: relative;
        
	}


	.home-content-tablecell h1 {
		font-size: 3.2rem;
	}

    
    
.home-content-table {
	width: 100%;
	height: 100%;
	display: table;
	position: relative;
}

.home-content-tablecell {
	display: table-cell;
	vertical-align: bottom;
	z-index: 500;
}

.home-content-tablecell .row {
	position: relative;
	padding-top: 4.2rem;
	padding-bottom: 15rem;
}





    
}

/* ===================================================================
 *  10. service - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

sp{display:none}

#service {
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 900px;
}


#service h3 {margin-top: 10px !important;
    font-family: "montserrat-bold", sans-serif;
	font-size: 1.8rem;
    font-weight: normal;
    line-height:3rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}



.service-profile-bg {margin-top: 50px;
	width: 100%;
	height: 100%;
    
    
}


.service-left{
    color: #000;
    width: 65%;
    float: left;
}

.service-left img{
    float: left;
    width: 100%;
}

.service-right{
    width: 30%;
    float: right;
}

.service-right h4{
margin-top: 30px;
    font-size: 20px;
}

.service-right p{margin-top: 10px;
    font-size: 18px;
    float: right;
}

.s-boxs{margin-top: -14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.s-box h5{margin-top: 40px;
    font-size: 18px;
    line-height: 25px;
    display: inline-block;
}

.s-box2 h5{margin-top: 25px;
    font-size: 18px;
    line-height: 25px;
    display: inline-block;
}

.s-box{width:30%;
text-align: center;

}

.s-box2{width:30%;
text-align: center;
}

.s-boxs > *{margin-top: 20px;
  font-size: 20px;
  text-align: center;
    border: solid 1px #000;
    border-radius: 10px;
    height: 100px;
}

.service-right a{
    font-size: 20px;
}




/* ------------------------------------------------------------------- 
 * responsive:
 * service
 * ------------------------------------------------------------------- */

@media only screen and (max-width:1450px) {
    
    
    
    
	.service-profile {
		padding-right: 5rem;
	}

	.service-services {
		padding-left: 5rem;
	}

    #service {
	position: relative;
	padding: 10.8rem 0 10.8rem;
}



#service h3 {
    font-family: "montserrat-bold", sans-serif;
	font-size: 1.8rem;
    font-weight: normal;
    line-height:3rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}



.service-profile-bg {padding-top: 10px;
    overflow: hidden;
	width: 100%;
	height: 100%;
    
}


.service-left{color: #000;width: 100%;height: auto;margin: 0 auto;
    display:inline-block;text-align: center;float: none;}

.service-left img{margin: 0 auto;
    width:700px;
    margin-bottom: 50px;
    text-align: center;
    float: none
}

.service-right{
    margin-top: 10px;
    width: 100%;
    float: none;
}

.service-right h4{
    font-size: 20px;
margin-top: -10px
}

.service-right p{margin-top: 10px;
    font-size: 18px;
    float: right;
}

.right_in_boxs{display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;}
    
.right_in_box1{width: 45%;
    text-align: justify;
text-justify: inter-ideograph;
}
    
 .right_in_box2{width: 50%;
    
}

    
.s-boxs{margin-top: -14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.s-box h5{margin-top: 40px;
    font-size: 18px;
    line-height: 25px;
    display: inline-block;
}

.s-box2 h5{margin-top: 27px;
    font-size: 18px;
    line-height: 25px;
    display: inline-block;
}

.s-box{width:31%;
text-align: center;
}

.s-box2{width:31%;
text-align: center;

}

.s-boxs > *{
  min-width: 8%;
  font-size: 20px;
  text-align: center;
    border: solid 1px #000;
    border-radius: 10px;
    max-height: 120px;
    margin-top: 20px;
}

.service-right a{
    font-size: 20px;
}



}


@media only screen and (max-width:1024px) {
	.service-profile {
		padding-right: 5rem;
	}

	.service-services {
		padding-left: 5rem;
	}

    #service {
	position: relative;
	padding: 10.8rem 0 10.8rem;
}



#service h3 {margin-top: 10px !important;
    font-family: "montserrat-bold", sans-serif;
	font-size: 1.8rem;
    font-weight: normal;
    line-height:2.7rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}



.service-profile-bg {padding-top: 10px;
    overflow: hidden;
	width: 100%;
	height: 100%;
    
}


.service-left{color: #000;width: 100%;height: auto;margin: 0 auto;
    display: block;text-align: center;float: none;}

.service-left img{margin: 0 auto;
    width: 80%;
    margin-bottom: 30px
}

.service-right{
    margin-top: 50px;
    width: 100%;
    float: none;

}

.service-right h4{
    font-size: 20px;
}

.service-right p{margin-top: 10px;
    font-size: 18px;
    float: right;
}

    
.right_in_box1{width: 40%;
    text-align: justify;
text-justify: inter-ideograph;
    
}
    
 .right_in_box2{width: 55%;
    
}

    
.s-boxs{margin-top: px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.s-box h5{margin-top: 38px;
    
    display: inline-block;
}

.s-box2 h5{margin-top: 28px;
 
    display: inline-block;
}

.s-box{width:31%;
text-align: center;
}

.s-box2{width:31%;
text-align: center;

}

.s-boxs > *{
  min-width: 8%;
  font-size: 20px;
  text-align: center;
    border: solid 1px #000;
    border-radius: 10px;
    height: 100px;

}

.service-right a{
    font-size: 20px;
}



}

@media only screen and (max-width:900px) {
	.service-profile {
		padding-right: 4rem;
	}

	.service-services {
		padding-left: 4rem;
	}
    
 
    #service {
	position: relative;
	padding: 10.8rem 0 10.8rem;
}



#service h3 {margin-top: 10px !important;
    font-family: "montserrat-bold", sans-serif;
	font-size: 1.8rem;
    font-weight: normal;
    line-height:2.7rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}



.service-profile-bg {padding-top: 10px;
    overflow: hidden;
	width: 100%;
	height: 100%;
    
}


.service-left{color: #000;width: 100%;height: auto;margin: 0 auto;
    display: block;text-align: center;float: none;}

.service-left img{margin: 0 auto;
    width: 80%;
    margin-bottom: 30px
}

.service-right{
    margin-top: 50px;
    width: 100%;
    float: none;

}

.service-right h4{

    font-size: 20px;
}

.service-right p{margin-top: 10px;
    font-size: 18px;
    float: right;
}

    
.right_in_box1{width: 40%;
    text-align: justify;
text-justify: inter-ideograph;
    
}
    
 .right_in_box2{width: 55%;
    
}

    
.s-boxs{margin-top: -14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.s-box h5{margin-top: 38px;
    
    display: inline-block;
}

.s-box2 h5{margin-top: 28px;
 
    display: inline-block;
}

.s-box{width:31%;
text-align: center;
}

.s-box2{width:31%;
text-align: center;

}

.s-boxs > *{
  min-width: 8%;
  font-size: 20px;
  text-align: center;
    border: solid 1px #000;
    border-radius: 10px;
    height: 100px;

}

.service-right a{
    font-size: 20px;
}



}

@media only screen and (max-width:768px) {
	#service {
		padding-top: 0;
       
	}

.service-profile {
		padding-right: 4rem;
	}

	.service-services {
		padding-left: 4rem;
	}
    
 
    #service {
	position: relative;
	padding: 10.8rem 0 10.8rem;
        
}



#service h3 {margin-top: 10px !important;
    font-family: "montserrat-bold", sans-serif;
	font-size: 1.8rem;
    font-weight: normal;
    line-height:2.7rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}



.service-profile-bg {padding-top: 10px;
    overflow: hidden;
	width: 100%;
	height: 100%;
    
}


.service-left{color: #000;width: 100%;height: auto;margin: 0 auto;
    display: block;text-align: center;float: none;}

.service-left img{margin: 0 auto;
    width: 80%;
    margin-bottom: 30px
}

.service-right{
    margin-top: 50px;
    width: 100%;
    float: none;

}

.service-right h4{

    font-size: 20px;
}

.service-right p{margin-top: 10px;
    font-size: 18px;
    float: right;
}

    
.right_in_box1{width: 40%;
    text-align: justify;
text-justify: inter-ideograph;
    
}
    
 .right_in_box2{width: 55%;
    
}

    
.s-boxs{margin-top: -14px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.s-box h5{margin-top: 40px;
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
}

.s-box2 h5{margin-top: 33px;
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
}

.s-box{width:31%;
text-align: center;
}

.s-box2{width:31%;
text-align: center;

}

.s-boxs > *{margin-top:10px;
  min-width: 8%;
  font-size: 20px;
  text-align: center;
    border: solid 1px #000;
    border-radius: 10px;
    height: 100px;

}



}

@media only screen and (max-width:600px) {
	
    

#service h3 {margin-top: 10px !important;
    font-family: "montserrat-bold", sans-serif;
	font-size: 1.8rem;
    font-weight: normal;
    line-height:2.7rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}



.service-profile-bg {padding-top: 10px;
    overflow: hidden;
	width: 100%;
	height: 100%;
    
}


.service-left{color: #000;width: 100%;height: auto;margin: 0 auto;
    display: block;text-align: center;float: none;}

.service-left img{margin: 0 auto;
    width: 100%;
    margin-bottom: 20px
}

.service-right{
    margin-top: 30px;
    width: 100%;
    float: none;
}

.service-right h4{

    font-size: 20px;
}

.service-right p{margin-top: 10px;
    font-size: 18px;
    float: right;
}

    
.right_in_box1{width: 100%;
    text-align: justify;
text-justify: inter-ideograph;
}
    
 .right_in_box2{margin-top: 50px; width: 100%;
    
}

    
.s-boxs{margin-top:0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.s-box h5{margin-top: 38px;
    
    display: inline-block;
}

.s-box2 h5{margin-top: 28px;
    display: inline-block;
}

.s-box{width:32%;
text-align: center;
}

.s-box2{width:32%;
text-align: center;

}

.s-boxs > *{
  min-width: 8%;
  font-size: 20px;
  text-align: center;
    border: solid 1px #000;
    border-radius: 10px;
    height: 100px;

}

.service-right a{
    font-size: 20px;
}

    
    
}

@media only screen and (max-width:375px) {

    pc{display: none}
    sp{display: block}

#service h3 {margin-top: 10px !important;
    font-family: "montserrat-bold", sans-serif;
	font-size: 1.6rem;
    font-weight: normal;
    line-height:2.3rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}



.service-profile-bg {
margin-top: 0px;
	width: 100%;
	height: 100%;
    
}


.service-left{color: #000;width: 100%;height: auto;margin: 0 auto;
    display: block;text-align: center;float: none;}

.service-left img{margin: 0 auto;
    width: 100%;
}

.service-right{
    margin-top: 30px;
    width: 100%;
    float: none;
}
    


.service-right h4{
    font-size: 18px;
}

.service-right p{margin-top: 10px;
    font-size: 18px;
    float: right;
}

    
.right_in_box1{width: 100%;
    text-align: justify;
text-justify: inter-ideograph;
}
    
 .right_in_box2{margin-top: 50px; width: 100%;
    
}

    
.s-boxs{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
    font-size: 14px;
}

.s-box h5{margin-top: 33px;
    display: inline-block;
    font-size: 13px;
    line-height: 18px
}

.s-box2 h5{margin-top: 25px;
    display: inline-block;
    font-size: 13px;
    line-height: 18px
}

.s-box{width:31%;
text-align: center;
    font-size: 13px;
}

.s-box2{width:31%;
text-align: center;
    margin-top:10px

}

.s-boxs > *{
  min-width: 8%;
  font-size: 15px;
  text-align: center;
    border: solid 1px #000;
    border-radius: 10px;
    height: 80px;

}

.service-right a{
    font-size: 20px;
}

    

}




    


/* ===================================================================
 *  10. about- (_layout.scss)
 *
 * ------------------------------------------------------------------- */



#about{
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 890px;
    
}





.about-profile-bg {margin-top: 50px;
	width: 100%;
	height: 100%;
}







.about-box{width: 50%;
    height: 170px;
float: left;
padding:0 0 20px 20px;
box-sizing: border-box}

.about-box .in-box{width: 100%;
    height: 140px;
float: left;
padding:20px;
box-sizing: border-box;
border: solid 1px #000;
border-radius: 10px;
}





.about-box img{display: block;
margin-bottom: 10px;}

.about-box p{margin-top: 20px;
    font-size: 16px;
float: left;
text-align: justify;
text-justify: inter-ideograph;}


.about-box a{
    font-size: 20px;
    line-height: 140% !important;
    color: #000;
    text-align: justify;
text-justify: inter-ideograph;
    
}




.about-left{
    color: #000;
    width: 45%;
    float: left;
}

.about-left img{
padding-left: 100px;
    width: 100%;
}

.about-right{
    width: 45%;
    float: right;
}



.about-right h4{
margin-top: 40px;
    font-size: 20px;
}

.about-right p{margin-top: 10px;
    font-size: 18px;
    float: right;
}




/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */

@media only screen and (max-width:1450px) {
    
    
#about{
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 890px;
    
}



.about-profile-bg {margin-top: 50px;
	width: 100%;
	height: 100%;
}



.about-left{
    color: #000;
    width: 40%;
    float: left;
}

.about-left img{
padding-left:5%;
    width: 100%;
}

.about-right{
    width: 55%;
    float: right;
}



.about-box{width: 50%;
    height: 130px;
float: left;
padding:0 0 20px 20px;
box-sizing: border-box}

.about-box .in-box{width: 100%;
    height: 150px;
float: left;
padding:20px;
box-sizing: border-box;
border: solid 1px #000;
border-radius: 10px;
}





.about-box img{display: block;
margin-bottom: 10px;}



.about-box a{
    font-size: 18px;
    line-height: 135% !important;
    color: #000;
    text-align: justify;
text-justify: inter-ideograph;
    
}





	}
    
@media only screen and (max-width:1024px) {
   
#about{
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 1050px;
    
}

.about-profile-bg {margin-top: 50px;
	width: 100%;
	height: 100%;
}



.about-left{
    color: #000;
    width: 35%;
    float:none;
}

.about-left img{
    width:50%;
    position: absolute;
    top:30px;
    right:-50px;
    opacity: .1
}

.about-right{
    width: 100%;
    float: none;
    text-align: center
}



.about-box{width: 100%;
    height: 120px;
float: left;
padding:0 20px 20px 20px;
box-sizing: border-box}
    
    
.about-box img{max-height: 50%;
    margin: 0 auto;
    display: block;
margin-bottom: 10px;}


.about-box .in-box{margin-top: 20px; width: 100%;
    height: 65px;
float: left;
padding:20px;
box-sizing: border-box;
border: solid 1px #000;
border-radius: 10px;
}




.about-box a{
    font-size: 16px;
    line-height: 150% !important;
    color: #000;
    text-align: justify;
text-justify: inter-ideograph;
    
}

    
	}

@media only screen and (max-width:768px) {
    #about{
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 850px;
    
}

.about-profile-bg {margin-top: 30px;
	width: 100%;
	height: 100%;
}



.about-left{
    color: #000;
    width: 35%;
    float:none;
}

.about-left img{
    width:50%;
    position: absolute;
    top:30px;
    right:-50px;
    opacity: .1
}

.about-right{
    width: 100%;
    float: none;
    text-align: center
}



.about-box{width: 100%;
    height: 80px;
float: left;
padding:0 20px 20px 20px;
box-sizing: border-box}
    
    
.about-box img{max-height: 35%;
    margin: 0 auto;
    display: block;
margin-bottom: 10px;}


.about-box .in-box{margin-top: 30px;
    width: 100%;
    height: 107px;
float: left;
border-radius: 10px;
    text-align: left;
    padding:20px;
box-sizing: border-box;
border: solid 1px #000;
}


    


.about-box a{
    font-size: 16px;
    line-height: 150% !important;
    color: #000;
    text-align: justify;
text-justify: inter-ideograph;
    
}


	}

@media only screen and (max-width:375px) {

 #about{
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 790px;
    
}


.about-left img{
    width:50%;
    position: absolute;
    top:30px;
    right:-50px;
    opacity: .1
}

.about-right{
    width: 100%;
    float: none;
    text-align: center
}



.about-box{width: 100%;
    height: 75px;
float: left;
padding:0 20px 20px 20px;
box-sizing: border-box}
    
    
.about-box img{max-height: 35%;
    margin: 0 auto;
    display: block;
margin-bottom: 10px;}


.about-box .in-box{margin-top: 30px;
    width: 100%;
    height: 90px;
float: left;
border-radius: 6px;
    text-align: left;
    padding:20px;
box-sizing: border-box;
border: solid 1px #000;
}


    


.about-box a{
    font-size: 14px;
    line-height: 135% !important;
    color: #000;
    text-align: justify;
text-justify: inter-ideograph;
    
}

	}




/* ===================================================================
 *  10. PRIVACY- (_layout.scss)
 *
 * ------------------------------------------------------------------- */
#privacy_policy {
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 890px;
}



.privacy_policy-profile-bg {margin-top: 50px;
	width: 100%;
	height: 100%;
display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}


.privacy-text{width: 75%;
float: left}

.privacy-text p{font-size: 18px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;}

.privacy-img{width:25%;
float: right}

.privacy-img img{position: absolute;
    top:3%;
    right: 7%;
    float: right;
    width: 12%
}


.policy_boxs{width: 100%;
    margin-top: 100px;
    display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.policy_box{width: 47%;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
    margin-bottom: 40px

}

.policy_box:nth-child(even){width: 47%;
margin-left: 2%;
    float: right;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}

.policy_box h5{font-size: 2rem;
font-weight: bold}

.policy_box p{font-size: 15px !important;
    line-height: 25px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}


@media only screen and (max-width:1450px) {
    
    #privacy_policy {
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 890px;
}



#privacy_policy h3 {margin-top: 10px !important;
    font-family: "montserrat-bold", sans-serif;
	font-size: 1.8rem;
    font-weight: normal;
    line-height:3rem;
	color: #000;
	text-transform: uppercase;
	letter-spacing: .15rem;
	margin: 0 0 0 .3rem;
}

#privacy_policy h1 {
	font-family: "librebaskerville-bold", serif;
	font-size: 3.3rem;
	line-height: 1.455;
}

.privacy_policy-profile-bg {margin-top: 50px;
	width: 100%;
	height: 100%;
display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}


.privacy-text{width: 75%;
float: left}

.privacy-text p{font-size: 18px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;}

.privacy-img{width:25%;
float: right}

.privacy-img img{position: absolute;
    top:3%;
    right: 7%;
    float: right;
    width: 20%;
    opacity: .1
}


.policy_boxs{width: 100%;
    margin-top: 100px;
    display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.policy_box{width: 47%;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
    margin-bottom: 40px

}

.policy_box:nth-child(even){width: 47%;
margin-left: 2%;
    float: right;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}

.policy_box h5{font-size: 2rem}

.policy_box p{font-size: 15px !important;
    line-height: 25px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}

    
}

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

@media only screen and (max-width:768px) {
    
     #privacy_policy {
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height: 990px;
}




.privacy_policy-profile-bg {margin-top:30px;
	width: 100%;
	height: 100%;
display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
    float: left;
}


.privacy-text{width:100%;
float: left}

.privacy-text p{font-size: 15px;
    line-height: 22px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;}

.privacy-img{width:100%;
float: right}

.privacy-img img{position: absolute;
    top:0%;
    right: -9%;
    float: right;
    width: 35%;
    opacity: .1
}


.policy_boxs{width: 100%;
    margin-top:40px;
    display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.policy_box{
    width: 100%;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
    margin-bottom: 20px
}

.policy_box:nth-child(even){width: 100%;
margin-left: 0%;
    float:left;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}

.policy_box h5{font-size: 1.8rem}

.policy_box p{font-size: 15px;
    line-height: 22px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}

    
    
}

@media only screen and (max-width:375px) {
    #privacy_policy {
	position: relative;
	padding: 10.8rem 0 10.8rem;
	min-height:990px;
}




.privacy_policy-profile-bg {margin-top: 0px;
	width: 100%;
	height: 100%;
display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}


.privacy-text{width:100%;
float: left}

.privacy-text p{font-size: 15px;
    line-height: 22px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;}

.privacy-img{width:100%;
float: right}

.privacy-img img{position: absolute;
    top:0%;
    right: -9%;
    float: right;
    width: 35%;
    opacity: .1
}


.policy_boxs{width: 100%;
    margin-top: 50px;
    display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.policy_box{width: 100%;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
    margin-bottom: 20px

}

.policy_box:nth-child(even){width: 100%;
    float: left;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}

.policy_box h5{font-size: 1.8rem}

.policy_box p{font-size: 15px;
    line-height: 22px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}

}




/* ===================================================================
 *  15. contact - (_layout.scss)
 *
 * ------------------------------------------------------------------- */

#contact{
    position: relative;
    width: 100%;
	padding: 10.8rem 0 10.8rem;
	min-height: 890px;
}

.title2{position: absolute;
top:0;
left: 10px;}


.contact-profile-bg{margin-top:50px;
display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;}

.contact_text{float:left;
    width: 45%;

}


.contact_text img{float:left;
    margin-top: 50px
}

.contact_text p{
    font-size: 18px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}


.contact_box{float: right;
    width: 45%;

}

	.form_box{width: 100%;
	margin: 0 auto;
	}

@media only screen and (max-width:1450px) {
  
}

@media only screen and (max-width:1024px) {
     #contact {
    width: 100%;
    height:1150px;
	margin-top: 0px;
    text-align: center;
    margin: 0 auto;}


    .title{float: left;
    }

.contact-profile-bg{margin-top:30px;
	height: 100%;
display: flex;
    float: left;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;}

.contact_text{float:left;
    width: 100%;

}
    
    


.contact_text img{position: absolute;
    top:-100px;
    right: -50px;
    opacity: .1;
    width: 50%;
}




.contact_box{margin-top: 50px; 
    float:left;
    width: 100%;

}
  
}


@media only screen and (max-width:768px) {
    #contact {
    width: 100%;
    height: 1100px;
	margin-top: 0px;
    text-align: center;
    margin: 0 auto;}


    .title{float: left;
    }

.contact-profile-bg{margin-top:30px;
	height: 100%;
display: flex;
    float: left;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;}

.contact_text{float:left;
    width: 100%;

}
    
    


.contact_text img{position: absolute;
    top:-100px;
    right: -50px;
    opacity: .1;
    width: 60%;
}

.contact_text p{
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}


.contact_box{margin-top: 50px; 
    float:left;
    width: 100%;

}



  
}

@media only screen and (max-width:600px) {.contact_text img{position: absolute;
    top:-60px;
    right: -50px;
    opacity: .1;
    width: 60%;
}
}

@media only screen and (max-width:375px) {
    
    
#contact {
    width: 100%;
    height:1100px;
	margin-top: 0px;
    text-align: center;
    margin: 0 auto;}



.contact-profile-bg{margin-top:30px;
	height: 100%;
display: flex;
    float: left;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;}

.contact_text{float:left;
    width: 100%;

}
    
    


.contact_text img{position: absolute;
    top:-30px;
    right: -15px;
    opacity: .1;
    width: 60%;
}

.contact_text p{
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    text-align: justify;
text-justify: inter-ideograph;
}


.contact_box{margin-top: 50px; float:left;
    width: 100%;

}


	.form_box{width: 100%;
	margin: 0 auto;
	}

    
}

/*-------------------------
  9.8 Contact us
---------------------------*/
.contact-block { }
.contact-block ul { }
.contact-block ul li { border: 1px solid #f1f2f4; padding-top: 30px; padding-bottom: 30px; }
.contact-block ul li i { color: #0457CC; float: left; padding: 0px; }
.contact-block .contact-text { }
.contact-info { background-color: #cda34d; color: #fff; }
.contact-info ul { padding-left: 0px; }
.contact-info li { position: relative; padding-left: 70px; margin-bottom: 30px; border-bottom: 1px solid #b69042; padding-bottom: 29px; }
.contact-info li:last-child { border-bottom: none; }
.contact-info li i { display: block; position: absolute; left: 0;    /* font-size: 50px; */    /* text-align: center; */
color: #fff;    /* bottom: 0px; */ }
.map { height: 400px; }
.contact-social { text-align: center; }
.contact-social { }
.contact-social a i { height: 32px; width: 32px; border-radius: 50px; background-color: #1fb4ff; text-align: center; padding: 7px; line-height: 1.2; font-size: 14px; color: #c12d17; }
.contact-social a i:hover { color: #1fb4ff; }
address { margin-bottom: 20px; font-style: normal; line-height: 1.42857143; }



/*-----------------------------------
    2. Form css 
-----------------------------------*/
label { }
.control-label { color: #474747; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.form-control { width: 100%; height: 50px; padding: 6px 12px; 
    font-size: 16px; line-height: 1.42857143; color: #333; background-color: #fff; border: 1px solid #dcd9d3; 
    background-image: none; border-radius: 10px; -webkit-box-shadow: inset 0 0px 0px rgba(255, 255, 255, .075); 
    box-shadow: inset 3px 3px 3px rgba(255, 255, 255, .075); margin-bottom: 15px; }
.form-control:focus { border-color: #bab6ae;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .075), 0 0 8px rgba(255, 255, 255, .6);
    box-shadow: inset 0 3px 3px rgba(255, 255, 255, .075), 0 0 8px rgba(235, 237, 238, .6);
    background-color: #fffefd; }
.textarea.form-control { background-color: #f6f8f9; height: auto; }
.required { }
.form-news-letter .form-control { float: left; width: 75%; margin-right: 10px; }
.form-group { margin-bottom: 10px; }
.get-in-touch { }
.get-in-touch .form-control { margin-bottom: 10px; }






/* --------------------------------------------------------------- 
 * loader animation - (_layout.scss)
 * --------------------------------------------------------------- */
.s-loader {
	margin: 1.2rem auto 3rem;
	width: 70px;
	text-align: center;
	-webkit-transform: translateX(0.45rem);
	-ms-transform: translateX(0.45rem);
	transform: translateX(0.45rem);
}

.s-loader > div {
	width: .6rem;
	height: .6rem;
	background-color: #FFFFFF;
	border-radius: 100%;
	display: inline-block;
	margin-right: .9rem;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.s-loader .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.s-loader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

}

@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

}

/* ===================================================================
 *  16. footer - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
footer {
	padding-top: 4.2rem;
	padding-bottom: 4.2rem;
	text-align: center;
	font-family: "montserrat-regular", sans-serif;
	font-size: 1.6rem;
	position: relative;
}

footer .footer-social {
	list-style: none;
	display: inline-block;
	margin-left: 0;
	margin-bottom: 9rem;
}

footer .footer-social li {
	display: inline-block;
	padding-left: 0;
	margin: 0 8px 1.5rem 8px;
	font-family: "montserrat-bold", sans-serif;
	font-size: 1.8rem;
}

footer .footer-social li a,
footer .footer-social li a:visited {
	color: rgba(255, 255, 255, 0.5);
}

footer .footer-social li a:hover,
footer .footer-social li a:focus {
	color: #FFFFFF;
}

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

#go-top {
	position: fixed;
	bottom: 42px;
	right: 30px;
	z-index: 700;
	display: none;
}

#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	height: 63px;
	width: 60px;
	line-height: 63px;
	text-align: center;
	background-color: #000000;
	color: #888;
	text-align: center;
	text-transform: uppercase;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#go-top a i {
	font-size: 21px;
	line-height: inherit;
}

#go-top a:visited {
	background: #000000;
	color: #888;
}

#go-top a:hover,
#go-top a:focus {
	background: #000000;
	color: #FFFFFF;
}





/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
	#go-top {
		bottom: 0;
		right: 0;
	}

}