/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	color: #4d4d4d;
	background: url("../../images/body-bg.jpg") no-repeat top center;
	background-size: cover;
}

a {
	color: #f15a24;
	text-decoration: none;
}

a:hover {
	color: #4d4d4d;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#page-wrapper{
	background: url("../../images/head-bg.png") no-repeat 0px -40px;
	background-size: 1700px auto;
}

#logo-wrapper{
	width: 80%;
	max-width: 670px;
	margin: 0 auto;
	padding: 260px 0 120px;
}

#logo-wrapper .logo img {
	padding: 0;
	margin: 0;
	max-height: 110px;
}

#logo-wrapper .cach{
	font-family: serif;
	font-size: 48px;
	color: #fff;
}

.scrolled-offset {
	margin-top: 70px;
}

@media (max-width: 1440px) {
	#page-wrapper{
		background-size: 110% auto;
	}
	#logo-wrapper{
		padding: 195px 0 90px;
	}
}

@media (max-width: 768px) {
	header{
		position: relative;
	}
	#logo-wrapper{
		padding: 80px 0 40px;
	}
	#logo-wrapper .cach{
		font-size: 28px;
	}
	#logo-wrapper .logo img {
		max-height: 80px;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
#nav-wrapper {
	height: 70px;
	transition: all 0.5s;
	z-index: 997;
	max-width: 100%;
	background: #fff;
}

.navbar {
	width: 100%;
	padding: 0;
	max-width: 1200px;
	margin: 0 auto;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
	text-align: center;
	font-size: 18px;
	padding: 0 24%;
}

.navbar a,
.navbar a:focus {
	font-family: serif;
	padding: 10px;
	color: #4d4d4d;
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #f15a24;
}

.navbar .getstarted,
.navbar .getstarted:focus {
	background: #f15a24;
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 4px;
	color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: #fff;
	background: #ec7f6d;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 24px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	color: #4d4d4d;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: #f15a24;
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 991px) {
	#nav-wrapper {
		position: absolute;
		top: 0;
		background: none;
	}
	.navbar {
		justify-content: end;
		margin: 0;
	}
	.navbar li {
		width: 100%;
	}
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(59, 59, 59, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 40px 20px;
	font-size: 18px;
	color: #4d4d4d;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: #f15a24;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
	color: #f15a24;
}

.navbar-mobile .dropdown>.dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 0 0 80px 0;
}

.section-inner {
	background: #fff;
	padding: 80px;
}

.section-bg {
	background-color: white;
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h1 {
	font-size: 24px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	font-family: serif;
}

.section-title h1::after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: #f15a24;
	bottom: 0;
	left: calc(50% - 25px);
}

.section-title p {
	margin-bottom: 0;
}

@media (min-width: 1400px) {
	section .container{
		/*max-width: 1200px;*/
		max-width: 1000px;
	}
}

@media (max-width: 768px) {
	.section-inner{
		padding: 40px;
	}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 20px 0 20px 0;
	background: #f7f7f7;
	border-bottom: 1px solid #ededed;
	margin-bottom: 40px;
}

.breadcrumbs h2 {
	font-size: 28px;
	font-weight: 700;
	color: #4d4d4d;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 5px 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #6e6e6e;
	content: "/";
}

ol.breadcrumb{
	width: 100%;
	/*max-width: 1200px;*/
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before{
	color: #4d4d4d;
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
	position: relative;
	z-index: 2;
}

.featured .icon-box {
	padding: 40px 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	background: #fff;
	transition: all ease-in-out 0.3s;
	height: 100%;
}

.featured .icon-box i {
	color: #f15a24;
	font-size: 42px;
	margin-bottom: 15px;
	display: block;
	line-height: 0;
}

.featured .icon-box h3 {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
}

.featured .icon-box h3 a {
	color: #4d4d4d;
	transition: 0.3s;
}

.featured .icon-box p {
	color: #4d4d4d;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.featured .icon-box:hover {
	background: #f15a24;
}

.featured .icon-box:hover i,
.featured .icon-box:hover h3 a,
.featured .icon-box:hover p {
	color: #fff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
	padding-top: 80px;
}

.services .icon-box {
	width: 100%;
	text-align: center;
	padding: 80px 20px 20px;
	transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
	margin: 0 auto;
	width: 200px;
	height: 200px;
	background: rgba(241, 90, 36, .5);
	border-radius: 100px;
	transition: all 0.3s ease-out 0s;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transform-style: preserve-3d;
	position: relative;
	z-index: 2;
}

.services .icon-box h2 {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 24px;
}

.services .icon-box h2::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	padding-right: .5em;
}

.services .icon-box h2 a {
	color: #4d4d4d;
}

.services .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.services .icon-box img{
	width: 100px;
	height: auto;
}

.services .icon-box:hover .icon {
	background: rgba(241, 90, 36, .25);
}

@media (max-width: 1440px) {
	.services{
		padding-top: 40px;
	}
}

@media (max-width: 991px) {
	.services{
		padding-top: 0;
	}
	.services .icon-box{
		display: flex;
		align-items: center;
		padding: 0 20px;
	}
	.services .icon-box h2{
		width: 60%;
		padding-left: 20px;
		text-align: left;
	}
}

@media (max-width: 768px) {
	.services .icon-box .icon{
		width: 120px;
		height: 120px;
	}
	.services .icon-box img{
		width: 50px;
	}
	.services .icon-box h2{
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Information
--------------------------------------------------------------*/
.information-box{
	background: #fff;
	padding: 80px;
	margin-bottom: 80px;
}

.information-box h2{
	text-align: center;
	margin-bottom: 40px;
}

.information-box ul li{
	list-style: none;
}

.information .contact-btn{
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	background: #f15a24;
	
}
.information .contact-btn a{
	display: block;
	font-family: serif;
	text-align: center;
	padding: 20px 10px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}
.information .contact-btn a::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	padding-right: .5em;
}

@media (max-width: 768px){
	.information-box{
		padding: 40px;
	}
	.information .contact-btn a{
		font-size: 18px;
	}
}

/*--------------------------------------------------------------
# Company & Privacy policy
--------------------------------------------------------------*/

.company dl,
.privacy-policy dl{
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.company dl dt{
	margin-bottom: .5em;
}

.company dl dd{
	margin-bottom: 1em;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact #mail_form ul{
	list-style: none;
}

.contact #mail_form {
	padding: 40px 80px;
}

.contact #mail_form span.required{
	background: #f15a24;
	color: #fff;
	padding: 4px 8px;
	margin-right: .5em;
	font-size: .8em;
	font-style: normal;
}

.contact #mail_form .error_blank {
	display: none;
	color: #f15a24;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact #mail_form input,
.contact #mail_form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact #mail_form input:focus,
.contact #mail_form textarea:focus {
	border-color: #f15a24;
}

.contact #mail_form input {
	padding: 10px 15px;
}

.contact #mail_form textarea {
	padding: 12px 15px;
}

.contact #mail_form input[name=name_1]{
	margin: 0 10px;
}

.contact #mail_form input[type=button] {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	background: #f15a24;
	border: none;
	font-family: serif;
	text-align: center;
	padding: 20px 10px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}

@media (max-width:768px){
	.contact #mail_form {
		padding: 0;
	}
	.contact #mail_form .form-control{
		margin-top: 10px;
	}
	.contact #mail_form input[name=name_1],
	.contact #mail_form input[name=name_2]{
		width: 100%;
		margin: 10px;
	}
	.contact #mail_form input[type=button] {
		padding: 10px;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer{
	background: #fff url("../../images/foot-bg.png") no-repeat right 80px;
	background-size: 1700px auto;
	font-family: serif;
	padding: 0 0 30px 0;
}

#footer .logo img {
	padding: 0;
	margin: 0;
	max-height: 80px;
}

#footer .footer-top {
	padding: 30px 0;
}

#footer .footer-top .footer-contact{
	margin-top: 80px;
}

#footer .footer-top h2{
	margin-bottom: 30px;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
}

#footer .footer-top .logo{
	margin-bottom: 30px;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
	text-align: center;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #f15a24;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #fff;
	color: #f15a24;
	text-decoration: none;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	text-align: center;
}

#footer .footer-top .footer-links ul a {
	color: #4d4d4d;
	font-size: 18px;
	transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
	color: #f15a24;
}

#footer .footer-top .footer-contact {
	text-align: center;
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 120px;
}

@media (max-width: 1440px){
	#footer{
		background-size: 110% auto;
	}
}
	
@media (max-width: 768px){
	#footer{
		background-position: bottom;
	}
	
	#footer .copyright{
		padding-bottom: 40px;
	}
}