body {
	font-family: 'Source Sans Pro', Arial;
	color: #666;
}

a {
	text-decoration: none;
}

h2 {
	text-transform: uppercase;
	color: #1D315F;
	font-size: 38px;
	font-weight: 300;
	margin-bottom: 40px;
}

h2 span {
	color: #6A91C7;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}

p {
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
	margin-bottom: 25px;
}

strong {
	font-weight: 400;
}

/* Header */

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10;
}

.top-bar {
	background-color: #1b2b54;
	color: #fff;
}

.top-bar a {
	color: #fff;
}

.top-bar a.phone {
	background-color: #80B539;
	padding: 9px 15px;
	display: inline-block;
}

.top-bar a span {
	display: inline-block;
	font-size: 16px;
	margin-right: 7px;
}

.top-bar .social {
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.top-bar .social a {
	font-size: 16px;
	margin-left: 22px;
	line-height: 18px;
}

/* Main Header */

.header-main {
	background-color: rgba(255,255,255,0.95);
	height: 100px;
	border-bottom: solid 1px #D8D8D8;
	overflow-x: hidden;
}

.header-main .center,
.header-main .row {
	height: 100%;
}

.logo {
	display: inline-block;
	width: 165px;
}

.logo img {
	width: 100%;
}

.header-main .menu {
	display: flex;
	justify-content: flex-end;
}

.header-main .menu li {
	margin-left: 40px;
}

.header-main .menu li a {
	color: #666;
	font-size: 15px;
	text-transform: uppercase;
	padding: 10px 0;
	display: block;
	position: relative;
	transition: all 0.3s ease;
}

.header-main .menu li:hover a,
.header-main .menu li.current-menu-item a {
	color: #1D315F;
}

.header-main .menu li a::after,
.header-main .menu li:hover a::after,
.header-main .menu li.current-menu-item a::after {
	content: '';
	height: 4px;
	width: 100%;
	bottom: -32px;
	left: 0;
	position: absolute;
	transition: all 0.3s ease;
}

.header-main .menu li:hover a::after,
.header-main .menu li.current-menu-item a::after {
	background-color: #1D315F;
}

.header-main .menu li.btn a {
	color: #fff;
	background-color: #80B539;
	padding: 10px 25px 8px;
}

.header-main .menu li.btn:hover a::after {
	background-color: transparent;
}

/* Schedule */

.schedule {
	background-color: rgba(255,255,255,0.95);
	width: 500px;
	position: fixed;
	top: 150px;
	right: 15px;
	height: 430px;
	padding: 40px 30px 30px;
	box-sizing: border-box;
	overflow: auto;
	border: solid 1px #d8d8d8;
	transform: translateX(600px);
	transition: all 0.4s ease;
}

.schedule.open {
	transform: translateX(0);
}

.schedule label {
	margin-bottom: 10px;
	font-size: 16px;
	display: block;
}

.schedule label span {
	font-size: 12px;
	color: #80B539;
	float: right;
}

.schedule .form-action {
	margin-bottom: 20px;
}

.schedule .form-action input,
.schedule .form-action textarea {
	border: solid 1px #d8d8d8;
	height: 35px;
	width: 100%;
	padding: 5px 10px 5px;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 300;
	font-family: 'Source Sans Pro';
}

.schedule .form-action textarea {
	resize: none;
	height: 70px;
}

.schedule .form-action.send {
	margin-bottom: 0;
}

.schedule .form-action.send input {
	border: none;
	background-color: #80B539;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	height: 40px;
}

.schedule a.close {
	position: absolute;
	right: 15px;
	top: 10px;
	font-size: 23px;
	color: #80b539;
}

/* Intro */

.intro {
	position: relative;
	max-height: 600px;
	display: flex;
	align-items: center;
	overflow: hidden; 
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding-top: 135px;
	background: linear-gradient(to right, rgba(46,84,169,0.56) 0%,rgba(255,255,255,0) 100%);
	display: flex;
	align-items: center;
}

.overlay .center {
	width: 1300px;
}

.overlay h1 {
	font-size: 82px;
	font-weight: 300;
	color: #fff;
	max-width: 500px;
}

.overlay h1 span {
	display: block;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 20px;
}

/* About */

.about {
	padding: 120px 0 95px;
	border-bottom: solid 1px #D8D8D8;
}

/* Service */

.services {
	padding: 120px 0 95px;
	border-bottom: solid 1px #D8D8D8;
}

.services img {
	width: 100%;
}

.services a.btn {
	background-color: #80B539;
	padding: 0 15px 0 25px;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	height: 52px;
	width: 205px;
	box-sizing: border-box;
	line-height: 52px;
	text-align: center;
	margin: 30px 0;
}

.services a.btn span {
	color: #fff;
	margin-left: 10px;
}

/* Plagues */

.plagues {
	padding: 100px 0 80px;
	background-color: #F7F7F7;
	position: relative;
	margin-top: -1px;
}

.plague {
	padding: 0 25px;
}

.plagues .btn {
	font-size: 18px;
	color: #1D315F;
	font-weight: 600;
	display: inline-block;
	margin-top: 20px;
}

.plagues .btn span {
	margin-left: 10px;
}

.owl-carousel .owl-item .plague .img {
	width: 130px;
	height: 130px;
	background-color: #80B539;
	border-radius: 50%;
	overflow: hidden;
	display: inline-block;
	margin-bottom: 30px;
}

.owl-carousel .owl-item .plague .img img {
	max-width: 130px;
}

.owl-carousel .owl-item .plague h3 {
	color: #1D315F;
	font-size: 20px;
	margin-bottom: 25px;
}

.owl-carousel .owl-item .plague p {
	font-size: 16px;
	font-weight: 300;
}

.sa_owl_theme .owl-nav .owl-prev {
	left: -60px;
}

.sa_owl_theme .owl-nav .owl-next {
	right: -60px;
}

.white .sa_owl_theme .owl-nav button.owl-prev {
	background: url(/wp-content/themes/killer/img/left.svg) no-repeat center left transparent !important;
}

.white .sa_owl_theme .owl-nav button.owl-next {
	background: url(/wp-content/themes/killer/img/right.svg) no-repeat center left transparent !important;
}

.white .sa_owl_theme .owl-nav button.owl-prev:hover,
.white .sa_owl_theme .owl-nav button.owl-next:hover {
	background-color: transparent !important;
}

/* Testimonials */

.textimonials {
	padding: 100px 0 90px;
}

.textimonials .sa_owl_theme .owl-dots {
	bottom: -42px !important;
}

.textimonials .sa_owl_theme .owl-dots .owl-dot span {
	width: 14px !important;
	height: 14px !important;
	background-color: #fff !important;
	box-shadow: inset 0 0 0 1px #616F8F;
}

.textimonials .sa_owl_theme .owl-dots .active span {
	background-color: #A2C1ED !important;
	box-shadow: inset 0 0 0 1px #A2C1ED;
}

/* Page Detail */

.post-thumbnail {
	width: 100%;
}

.post-thumbnail img {
	width: 100%;
}

.page .intro {
	margin-bottom: 100px;
}

.page footer {
	margin-top: 100px;
}

.text {
	margin-top: 120px;
	margin-bottom: 120px;
}

.text img {
	width: 100%;
}

.text a.btn {
	background-color: #80B539;
	padding: 0 15px 0 25px;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	height: 52px;
	width: 205px;
	box-sizing: border-box;
	line-height: 52px;
	text-align: center;
	margin: 30px 0;
}

.text a.btn span {
	color: #fff;
	margin-left: 10px;
}

/* Footer */

footer {
	border-top: solid 1px #D8D8D8;
	padding: 30px 0 0;
}

footer a.logo {
	margin-bottom: 20px;
}

footer p {
	font-size: 18px;
	line-height: 28px;
}

footer p a {
	color: #1D315F;
}

footer .social {
}

footer .social a {
	color: #1D315F;
	font-size: 20px;
	margin: 5px 0 15px 20px;
	display: inline-block;
}

footer .bottom-bar {
	background-color: #1D315F;
}

footer .bottom-bar p {
	margin: 0;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
}