/*
Theme Name: Melbourne Occupational Therapy Services
Theme URI: https://wordpress.org/themes/twentyseventeen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Version: 1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyseventeen
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/

@font-face {
	font-family: 'Conv_KrinkesDecorPERSONAL';
	src: url('../fonts/KrinkesDecorPERSONAL.eot');
	src: local('☺'), url('../fonts/KrinkesDecorPERSONAL.woff') format('woff'), url('../fonts/KrinkesDecorPERSONAL.ttf') format('truetype'), url('fonts/KrinkesDecorPERSONAL.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
/*
inspired from https://codepen.io/Rowno/pen/Afykb 
*/
.carousel-fade .carousel-inner .item {
	opacity: 0;
	transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
	opacity: 1;
}
.carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}
.carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}
.carousel-fade .carousel-control {
	z-index: 12;
	top: 40%;
}
.clint-logo-box:hover {
	opacity: 0.7;
}
.carousel-caption {
	left: 0;
	padding-bottom: 30px;
	right: 0;
	top: 29%;
	font-family: 'Conv_KrinkesDecorPERSONAL', Sans-Serif;
}
/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-fade .carousel-inner > .item.next,  .carousel-fade .carousel-inner > .item.active.right {
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.prev,  .carousel-fade .carousel-inner > .item.active.left {
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.next.left,  .carousel-fade .carousel-inner > .item.prev.right,  .carousel-fade .carousel-inner > .item.active {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
}
.block {
	height: 5em;
	line-height: 5em;
	width: 10em;
	background: #464646;
	color: #fdfdfd;
	text-align: center;
	margin: 1em auto;
	text-shadow: 0 0 1px #333; /* so one can see fadeBgColor properly */
}
.animatable {
	/* initially hide animatable objects */
	visibility: hidden;
	/* initially pause animatable objects their animations */
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-ms-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
}
.row.team-row {
	margin-bottom: 39px;
	margin-top: 50px;
}
.dropdown .dropdown-content {
	background: rgba(255, 255, 255, 0.84) none repeat scroll 0 0;
}
/* show objects being animated */
.animated {
	visibility: visible;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-ms-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-ms-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
 0% {
 opacity: 0;
 -webkit-transform: translateY(-20px);
}
100% {
 opacity: 1;
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes fadeInDown {
 0% {
 opacity: 0;
 -moz-transform: translateY(-20px);
}
 100% {
 opacity: 1;
 -moz-transform: translateY(0);
}
}
 @-o-keyframes fadeInDown {
 0% {
 opacity: 0;
 -o-transform: translateY(-20px);
}
 100% {
 opacity: 1;
 -o-transform: translateY(0);
}
}
 @keyframes fadeInDown {
 0% {
 opacity: 0;
 transform: translateY(-20px);
}
 100% {
 opacity: 1;
 transform: translateY(0);
}
}
 @-webkit-keyframes fadeIn {
 0% {
 opacity: 0;
}
 20% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
 @-moz-keyframes fadeIn {
 0% {
 opacity: 0;
}
 20% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
 @-o-keyframes fadeIn {
 0% {
 opacity: 0;
}
 20% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
 @keyframes fadeIn {
 0% {
 opacity: 0;
}
 60% {
 opacity: 0;
}
 20% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
@-webkit-keyframes bounceInLeft {
 0% {
 opacity: 0;
 -webkit-transform: translateX(-100px);
}
 60% {
 -webkit-transform: translateX(20px);
}
 80% {
 -webkit-transform: translateX(-5px);
}
 100% {
 opacity: 1;
 -webkit-transform: translateX(0);
}
}
 @-moz-keyframes bounceInLeft {
 0% {
 opacity: 0;
 -moz-transform: translateX(-100px);
}
 60% {
 -moz-transform: translateX(20px);
}
 80% {
 -moz-transform: translateX(-5px);
}
 100% {
 opacity: 1;
 -moz-transform: translateX(0);
}
}
 @-o-keyframes bounceInLeft {
 0% {
 opacity: 0;
 -o-transform: translateX(-100px);
}
 60% {
 opacity: 1;
 -o-transform: translateX(20px);
}
 80% {
 -o-transform: translateX(-5px);
}
 100% {
 opacity: 1;
 -o-transform: translateX(0);
}
}
 @keyframes bounceInLeft {
 0% {
 opacity: 0;
 transform: translateX(-100px);
}
 60% {
 transform: translateX(20px);
}
 80% {
 transform: translateX(-5px);
}
 100% {
 opacity: 1;
 transform: translateX(0);
}
}
@-webkit-keyframes bounceInRight {
 0% {
 opacity: 0;
 -webkit-transform: translateX(100px);
}
 60% {
 -webkit-transform: translateX(-20px);
}
 80% {
 -webkit-transform: translateX(5px);
}
 100% {
 opacity: 1;
 -webkit-transform: translateX(0);
}
}
 @-moz-keyframes bounceInRight {
 0% {
 opacity: 0;
 -moz-transform: translateX(100px);
}
 60% {
 -moz-transform: translateX(-20px);
}
 80% {
 -moz-transform: translateX(5px);
}
 100% {
 opacity: 1;
 -moz-transform: translateX(0);
}
}
 @-o-keyframes bounceInRight {
 0% {
 opacity: 0;
 -o-transform: translateX(2000px);
}
 60% {
 -o-transform: translateX(-20px);
}
 80% {
 -o-transform: translateX(5px);
}
 100% {
 opacity: 1;
 -o-transform: translateX(0);
}
}
 @keyframes bounceInRight {
 0% {
 opacity: 0;
 transform: translateX(100px);
}
 60% {
 transform: translateX(-20px);
}
 80% {
 transform: translateX(5px);
}
 100% {
 opacity: 1;
 transform: translateX(0);
}
}
@-webkit-keyframes fadeInUp {
 0% {
 opacity: 0;
 -webkit-transform: translateY(20px);
}
100% {
 opacity: 1;
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes fadeInUp {
 0% {
 opacity: 0;
 -moz-transform: translateY(20px);
}
 100% {
 opacity: 1;
 -moz-transform: translateY(0);
}
}
 @-o-keyframes fadeInUp {
 0% {
 opacity: 0;
 -o-transform: translateY(20px);
}
 100% {
 opacity: 1;
 -o-transform: translateY(0);
}
}
 @keyframes fadeInUp {
 0% {
 opacity: 0;
 transform: translateY(20px);
}
 100% {
 opacity: 1;
 transform: translateY(0);
}
}
@-webkit-keyframes bounceIn {
 0% {
 opacity: 0;
 -webkit-transform: scale(.3);
}
 50% {
 -webkit-transform: scale(1.05);
}
 70% {
 -webkit-transform: scale(.9);
}
 100% {
 opacity: 1;
 -webkit-transform: scale(1);
}
}
 @-moz-keyframes bounceIn {
 0% {
 opacity: 0;
 -moz-transform: scale(.3);
}
 50% {
 -moz-transform: scale(1.05);
}
 70% {
 -moz-transform: scale(.9);
}
 100% {
 opacity: 1;
 -moz-transform: scale(1);
}
}
 @-o-keyframes bounceIn {
 0% {
 opacity: 0;
 -o-transform: scale(.3);
}
 50% {
 -o-transform: scale(1.05);
}
 70% {
 -o-transform: scale(.9);
}
 100% {
 opacity: 1;
 -o-transform: scale(1);
}
}
 @keyframes bounceIn {
 0% {
 opacity: 0;
 transform: scale(.3);
}
 50% {
 transform: scale(1.05);
}
 70% {
 transform: scale(.9);
}
 100% {
 opacity: 1;
 transform: scale(1);
}
}
@-webkit-keyframes moveUp {
 0% {
 opacity: 1;
 -webkit-transform: translateY(40px);
}
100% {
 opacity: 1;
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes moveUp {
 0% {
 opacity: 1;
 -moz-transform: translateY(40px);
}
 100% {
 opacity: 1;
 -moz-transform: translateY(0);
}
}
 @-o-keyframes moveUp {
 0% {
 opacity: 1;
 -o-transform: translateY(40px);
}
 100% {
 opacity: 1;
 -o-transform: translateY(0);
}
}
 @keyframes moveUp {
 0% {
 opacity: 1;
 transform: translateY(40px);
}
 100% {
 opacity: 1;
 transform: translateY(0);
}
}
 @-webkit-keyframes fadeBgColor {
 0% {
 background:none;
}
 70% {
 background:none;
}
 100% {
 background:#464646;
}
}
@-o-keyframes fadeBgColor {
 0% {
 background:none;
}
 70% {
 background:none;
}
 100% {
 background:#464646;
}
}
@keyframes fadeBgColor {
 0% {
 background:none;
}
 70% {
 background:none;
}
 100% {
 background:#464646;
}
}
.animated.animationDelay {
	animation-delay: .4s;
	-webkit-animation-delay: .4s;
}
.animated.animationDelayMed {
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}
.animated.animationDelayLong {
	animation-delay: 1.6s;
	-webkit-animation-delay: 1.6s;
}
.animated.fadeBgColor {
	-webkit-animation-name: fadeBgColor;
	-moz-animation-name: fadeBgColor;
	-o-animation-name: fadeBgColor;
	animation-name: fadeBgColor;
}
.animated.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
.animated.bounceInRight {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	-o-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
.animated.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animated.moveUp {
	-webkit-animation-name: moveUp;
	-moz-animation-name: moveUp;
	-o-animation-name: moveUp;
	animation-name: moveUp;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/*default*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	/*font-family:'Conv_KrinkesDecorPERSONAL',Sans-Serif;*/
	font-family: 'Montserrat', sans-serif;
	color: #263238;
}
a:hover {
	text-decoration: none
}
a {
	transition: all 0.3s ease 0s;
}
button {
	transition: all 0.3s ease 0s;
}
input {
	transition: all 0.3s ease 0s;
}
p {
	/*font-family: 'Poppins', sans-serif;*/
	font-family: "Montserrat", sans-serif;
	font-weight:500;
}
.brand-name {
	float: left;
}
.phone-detail {
	color: #1e68a5;
	float: right;
	font-size: 18px;
}
.phone-detail > img {
	float: left;
}
.email-span {
	color: #767d8c;
	font-size: 13px;
}
.num {
	float: left;
	line-height: 17px;
	margin: 4px 0 0 10px;
}
.phone-detail {
	color: #1e68a5;
	float: right;
	font-size: 18px;
	margin: 24px 0 0;
}
.brand-section {
	margin: 20px 0 30px;
}
/*default*/



/*custom*/

/*navigaton*/
.pk-top-bar {
	float: right;
	margin: 6px 15px 5px 0;
	text-align: right;
}
.pk-top-bar > li {
	display: inline;
}
.phone-btn > a {
	color: #75d06b;
	font-size: 18px;
	font-weight: 500;
}
.pk-top-bar .phone-btn > a i {
	color: #717d8c;
	margin: 0 7px 0 18px;
	font-size: 19px;
}
.footer {
	background: #2e2e2e none repeat scroll 0 0;
	padding: 45px 0;
}
.footer-widgts > ul {
	float: left;
	margin: 0 42px 0 0;
}
.footer-widgts ul li {
	margin: 0 0 13px;
}
.footer-widgts ul li a {
	color: #fff;
	font-family: "Montserrat", sans-serif;
}
.footer-widgts ul li a i {
	margin-right: 19px;
}
.footer-widgts > h2 {
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 26px;
	text-transform: uppercase;
}
.footer-widgts > p {
	color: #fff;
	font-size: 16px;
	margin: 0 0 18px;
}
.footer-widgts ul.detail-contact li a i {
	border: 1px solid #444;
	border-radius: 3px;
	font-size: 14px;
	height: 27px;
	margin-right: 19px;
	padding: 6px 0 0;
	text-align: center;
	width: 27px;
}
.copy-right {
	padding: 26px 0;
	text-align: center;
	color: #555;
	font-family: "Montserrat", sans-serif;
	font-weight:500;
}
.phone-btn > a img {
	margin: 0 7px 0 0;
}
.nav.navbar-nav.navbar-right.pk-right-navr {
	float: right;
	margin: 0;
	text-align: right;
	margin-top: 12px;
    margin-bottom: 5px;
}
.nav.navbar-nav.navbar-right.pk-right-navr li a {
	color: #717d8c;
	font-family: "Montserrat", sans-serif;
	font-size: 16.6px;
	font-weight: 500;
	padding: 21px 15px;
	text-transform: uppercase;
}
.nav.navbar-nav.navbar-right.pk-right-navr li.active a {
	color: #75d06b;
}
.nav.navbar-nav.navbar-right.pk-right-navr li a:hover {
	background: inherit;
	color: #75d06b;
}
.carousel-inner.custom-slier img {
	width: 100%;
}
.main-heading h2 {
	text-transform: uppercase;
	color: #75d06b;
	font-size: 40px;
}
.main-heading {
	margin: 40px 0 50px;
	text-align: center;
}
/*navigaton*/
.services-box h3 {
	color: #75d06b;
	font-size: 24px;
	font-weight: 500;
	margin: 18px 0 12px;
}
.services-box p {
	color: #717d8c;
	font-size: 16px;
	font-weight: 500;
}
.services-box a {
	color: #75d06b;
}
.our-services-section {
	margin: 0 0 50px;
}
.ourview-detail > span {
	color: #75d06b;
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
}
.ourview-detail h2 {
	color: #828282;
	font-size: 36px;
	font-weight: 300;
	margin: 14px 0 21px;
}
.ourview-detail p {
	color: #717d8c;
	font-size: 17px;
	margin: 0 0 23px;
	font-weight: 500;
}
.ourview-detail a {
	background: #75d06b none repeat scroll 0 0;
	border:1px solid #75d06b;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-size: 15px;
	padding: 14px 21px;
	text-transform: uppercase;
	font-weight:bold;
}
.ourview-detail a:hover {
	background: #fff none repeat scroll 0 0;
	border:1px solid #75d06b;
	border-radius: 3px;
	color: #75d06b;
	display: inline-block;
	font-size: 15px;
	padding: 14px 21px;
	text-transform: uppercase;
	font-weight:bold;
}
.ourview-detail img {
	width: 100%;
}
.ourview-section.float-section {
	background-color: #f9f9f9;
	position: relative;
	padding-bottom: 81px;
}
.water-mark {
	bottom: 0;
	position: absolute;
	right: 0;
}
.we-are-section {
	text-align: center;
	background-image: url(images/we-are-banner.jpg);
	background-size: cover;
}
.we-are-detail-heading > h2 {
	color: #fff;
	font-size: 47px;
	text-transform: uppercase;
}
.we-are-detail-heading > h2 span {
	display: block;
	color: #19653d;
}
.main-heading.white-had > h2 {
	color: #fff;
}
.we-are-detail-heading > p {
	color: #fff;
	font-size: 17px;
	margin: 25px 0 77px;
	padding: 0 205px;
	font-weight: 500;
}
.pk-navbar {
	margin: 20px 0 0px;
}
.services-detail-box h4 {
	color: #75d06b;
	font-size: 24px;
    font-weight: 500;
    margin: 18px 0 7px;
}
.services-detail-box span {
	color: #333333;
	margin: 0 20px 0 0;
	display: block;
	font-family: "Montserrat", sans-serif;
	margin: 17px 0 0;
    font-size: 20px;
}
.row.services-row {
	margin-bottom: 30px;
}
.services-detail-pre > p {
	color: #717d8c;
	margin: 0 0 16px;
	text-align:center;
	font-size:17px;
}
.services-detail-pre > p.hesding-pre {
	font-weight: 600;
	margin: 0 0 29px;
}
.services-detail-box p {
	color: #717d8c;
	font-size: 15px;
    font-weight: 500;
}
.services-detail-box img {
	width: 100%;
}
.navbar-toggle {
	background: #75d06b none repeat scroll 0 0;
	border: 1px solid transparent;
	border-radius: 4px;
	float: right;
	margin-bottom: 8px;
	margin-right: 15px;
	margin-top: 8px;
	padding: 9px 10px;
	position: absolute;
	right: 15px;
}
.navbar-toggle .icon-bar {
	background: #fff none repeat scroll 0 0;
	border-radius: 1px;
	display: block;
	height: 2px;
	width: 22px;
}
/*-------------------------------*/
/*    Carousel Fade Transition   */
/*-------------------------------*/

#fade-quote-carousel.carousel {
	padding-bottom: 60px;
}
#fade-quote-carousel.carousel .carousel-inner .item {
	opacity: 0;
	-webkit-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-inner .active {
	opacity: 1;
	-webkit-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-indicators {
	bottom: 10px;
}
#fade-quote-carousel.carousel .carousel-indicators > li {
	background-color: #d8d8d8;
	border: none;
}
#fade-quote-carousel blockquote {
	text-align: center;
	border: none;
	width:90%;
	margin:0 auto;
}
#fade-quote-carousel .profile-circle {
	border-radius: 100px;
	height: 130px;
	margin: 0 auto 29px;
	width: 130px;
}
.item.item-testimonail p {
	color: #717d8c;
	margin: 0 0 9px;
	font-weight: 500;
	font-size: 17px;
}
.item.item-testimonail span {
	color: #75d06b;
	font-weight:500;
}
.slick-prev.slick-arrow {
	background: inherit;
	border: 0 none;
	left: -30px;
	position: absolute;
	top: 37%;
	z-index: 12;
}
.slick-next.slick-arrow {
	background: inherit;
	border: 0 none;
	position: absolute;
	right: -30px;
	top: 37%;
	z-index: 12;
}
.brands-bottom {
}
.brands.slider.slick-initialized.slick-slider {
	margin-top: 47px;
	margin-bottom: 60px;
}
.brands-bottom .slick-prev.slick-arrow {
	background: inherit;
	border: 0 none;
	left: -30px;
	position: absolute;
	top: 37%;
	z-index: 12;
	display: none !important;
}
.brands-bottom .slick-next.slick-arrow {
	background: inherit;
	border: 0 none;
	position: absolute;
	right: -30px;
	display: none !important;
	top: 37%;
	z-index: 12;
}
.slide-project {
	text-align: center;
}



/*custom*/

@media only screen and (max-width:768px) {
.navbar-header {
	text-align: center;
}
.brand-logo > img {
	margin: 0 0 13px;
	width: 307px;
}
.pk-top-bar > li {
	display: block;
}
.pk-top-bar > li a i {
	display: none;
}
.phone-btn > a {
	color: #75d06b;
	font-size: 15px;
	font-weight: normal;
}
.pk-top-bar {
	float: right;
	margin: 0;
	text-align: center;
	width: 100%;
}
.nav.navbar-nav.navbar-right.pk-right-navr {
	background: #efefef none repeat scroll 0 0;
	float: right;
	left: 0;
	margin: 0;
	text-align: center;
	top: 52px;
	width: 100%;
	z-index: 12222;
}
.main-heading {
	margin: 25px 0 15px;
	text-align: center;
}
.our-services-section {
	margin: 0;
}
.ourview-detail a {
	background: #75d06b none repeat scroll 0 0;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	margin: 0 0 36px;
	padding: 11px 15px;
	text-transform: uppercase;
}
.we-are-detail-heading > h2 {
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
}
.we-are-detail-heading > h2 {
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
}
.main-heading h2 {
	color: #75d06b;
	font-size: 21px;
	text-transform: uppercase;
}
p {
	font-size: 14px !important
}
.services-detail-box p {
	color: #717d8c;
	font-size: 14px;
	margin: 0 0 23px;
}
.slick-next.slick-arrow {
	background: inherit;
	border: 0 none;
	position: absolute;
	right: 0;
	top: 37%;
	z-index: 12;
}
.slick-prev.slick-arrow {
	background: inherit;
	border: 0 none;
	left: 0;
	position: absolute;
	top: 37%;
	z-index: 12;
}
.brands.slider.slick-initialized.slick-slider {
	margin-bottom: 50px;
	margin-top: 0;
}
.brands-bottom .slick-prev.slick-arrow {
	background: inherit;
	border: 0 none;
	display: block !important;
	left: 0;
	position: absolute;
	top: 37%;
	z-index: 2147483647;
}
.brands-bottom .slick-next.slick-arrow {
	background: inherit;
	border: 0 none;
	display: block !important;
	right: 0;
	position: absolute;
	top: 37%;
	z-index: 2147483647;
}
.brands-bottom img {
	width: 100%
}
.footer-widgts > ul {
	float: left;
	margin: 0;
	width: 100%;
}
.footer-widgts ul li a {
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
}
.footer-widgts ul li a i {
	margin-right: 8px;
}
.footer-widgts > h2 {
	color: #fff;
	float: left;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 26px;
	text-transform: uppercase;
	width: 100%;
}
.footer-widgts > p {
	float: left;
	font-size: 13px;
	width: 100%;
}
.copy-right {
	color: #828282;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	padding: 18px 29px;
	text-align: center;
}
.ourview-detail h2 {
	color: #828282;
	font-size: 20px;
	font-weight: 300;
	margin: 14px 0 21px;
}
.ourview-detail img {
	margin: 0 0 33px;
	width: 100%;
}
.footer {
	background: #2e2e2e none repeat scroll 0 0;
	padding: 41px 0;
}
.services-box a {
	color: #75d06b;
	display: block;
	margin: 0 0 26px;
}
.we-are-section {
	background-image: url("images/we-are-banner.jpg");
	background-size: cover;
	padding: 0;
	text-align: center;
}
.we-are-detail-heading > p {
	color: #fff;
	font-size: 13px;
	margin: 17px 0 20px;
	padding: 0 10px;
}
#access a {
    color: #717d8c;
    display: block;
    line-height: 2.333em;
    padding: 0 .5em;
    text-decoration: none;
    border-bottom: 1px solid #ccc !important;
}
#navbar {
    background: #f1f1f1;
}
.nav.navbar-nav.navbar-right.pk-right-navr li {
    float: left !important;
	width: 100%;
}
}
 @media only screen and (max-width:490px) {
.navbar-header {
	text-align: left;
}
.brand-logo > img {
	margin: 7px 0 13px 24px;
	/*width: 200px;*/
}
}

i.fa.fa-quote-left {
    margin-right: 10px;
}
i.fa.fa-quote-right {
    margin-left: 10px;
}
header.entry-header {
    display: none;
}
.entry-content p {
    color: #717d8c;
    font-size: 17px;
    margin: 0 0 23px;
    font-weight: 500;
}
.nav.navbar-nav.navbar-right.pk-right-navr li {
    float: left;
}
.contact_address {
    color: #717d8c;
    font-size: 17px;
    margin: 0 0 23px;
    font-weight: 500;
}
.contact_address a{
    color: #717d8c;
    font-size: 17px;
    margin: 0 0 23px;
    font-weight: 500;
}
#FSContact1 input, textarea {
    max-width: 100% !important;
}
#fscf_captcha_code1 {
    width: 169px !important;
}
.wpcf7-form-control.wpcf7-submit {
    background: #75d06b none repeat scroll 0 0;
    border: 1px solid #75d06b;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: 14px 21px;
    text-transform: uppercase;
    font-weight: bold;
	width: 167px;
}
.wpcf7-form-control.wpcf7-submit:hover {
	background: #fff none repeat scroll 0 0;
	border:1px solid #75d06b;
	border-radius: 3px;
	color: #75d06b;
	display: inline-block;
	font-size: 15px;
	padding: 14px 21px;
	text-transform: uppercase;
	font-weight:bold;
}
.col-md-4.col-sm-4.services-detail-box {
    min-height: 405px;
}
span.edit-link {
    display: none;
}
.nav-subtitle {
    display:none;
}
span.nav-title-icon-wrapper {
    display: none;
}
.screen-reader-text {
    margin-right: 50px;
}
svg.icon.icon-arrow-left {
    float: left;
    width: 30px;
}
svg.icon.icon-arrow-right {
    float: right;
    width: 30px;
}
.services-detail-box p
{
	font-size:16px;
}
.services_more a
{
	color: #75d06b;
}
.servics_btn {
    text-align: center;
	float: left;
    width: 100%;
}
.servics_btn a{
    background: #75d06b none repeat scroll 0 0;
    border: 1px solid #75d06b;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    padding: 14px 21px;
    text-transform: uppercase;
    font-weight: bold;
}
.servics_btn a:hover {
	background: #fff none repeat scroll 0 0;
	border:1px solid #75d06b;
	border-radius: 3px;
	color: #75d06b;
	display: inline-block;
	font-size: 15px;
	padding: 14px 21px;
	text-transform: uppercase;
	font-weight:bold;
}
.size-twentyseventeen-featured-image.wp-post-image {
    float: left;
    margin-right: 20px;
}
.logos {
    border: 1px solid #ccc;
}
.services-box {
    min-height: 322px;
}
.wpcf7-form input {
    width: 100%;
}
.wpcf7-form textarea {
    height: 90px;
	width:441px;
}
iframe
{
	width:100%;
}
img.sliding_img {
    width: 225px !important;
    height: 221px !important;
}
h4 {
    color: #717d8c;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}
nav.navigation.post-navigation {
    display: none;
}
.mybullets {
    color: #717d8c;
    font-size: 17px;
    margin: 0 0 23px;
    font-weight: 500;
}
.mybullets li::before {
    content: "•";
    color: #75d06b;
    padding-right: 10px;
    font-size: 38px;
	line-height:22px;
	position:relative;
	top:3px;
}
.alignnone.size-full.wp-image-136 {
    float: left;
    margin-right: 20px;
}
.col-md-4.ourview-detail {
    position: relative;
    z-index: 99999;
}
.contact_heading {
    color: #75d06b;
}