/*
Theme Name: Mark Inspections
Author : Niyati technologies
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	background: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
	text-decoration: none;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0;
}

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

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

.col-centered{margin: 0 auto;text-align: center;float: none;}
/*svg:not(:root) {
	overflow: hidden;
}*/

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
:focus{
	outline: none;
}
input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
	-webkit-appearance: none !important; margin:0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #333;
	font-size: 14px;
	line-height: 1.42857;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 0;

}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 2px solid ;
    border-color: transparent;
    border-radius: 3px;
    background: #666;
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    padding: 10px 15px;
    margin: 0px 3px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: transparent;
    background: #20b14c;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: transparent;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	line-height: 35px;
    color: #000;
    border: none;
    font-size: 16px;
    border-radius: 0px;
    border-bottom: 2px solid #c7c7c7;
    padding: 5px 0px 10px 0px;
    transition: 0.2s ease;
    background-color: transparent;
    width: 100%;
    border-radius: 0;
    margin: 0 0 20px;
    transition: .2s linear;
}

div.wpcf7 .ajax-loader { /* float: left; */ }

::-webkit-input-placeholder  { /* Chrome/Opera/Safari */
  color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000;
}


/*.name1::-webkit-input-placeholder, .email1::-webkit-input-placeholder ,.phone1::-webkit-input-placeholder,.companyname1::-webkit-input-placeholder ,.message1::-webkit-input-placeholder , .post::-webkit-input-placeholder{ 
  color: #333;
}

.name1::-moz-placeholder , .email1::-moz-placeholder , .phone1::-moz-placeholder , .message1::-moz-placeholder, .companyname1::-moz-placeholder ,.post::-moz-placeholder{  Firefox 19+ 
  color: #333;
}

.name1:-ms-input-placeholder , .email1:-ms-input-placeholder  ,.phone1:-ms-input-placeholder  ,.message1:-ms-input-placeholder,.companyname1:-ms-input-placeholder ,.post:-ms-input-placeholder  {
  color: #333;
}

.name1:-moz-placeholder ,.email1:-moz-placeholder , .phone1:-moz-placeholder ,.message1:-moz-placeholder ,.companyname1:-moz-placeholder ,.post:-moz-placeholder {
  color: #333;
}*/

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

select {
	line-height: 35px;
    color: #000;
    border: none;
    font-size: 16px;
    border-radius: 0px;
    border-bottom: 2px solid #c7c7c7;
    padding: 5px 0px 10px 15px;
    transition: 0.2s ease;
    background-color: transparent;
    width: 100%;
    border-radius: 0;
    margin: 0 0 20px;
    height: 52px;
    transition: .2s linear;
    -moz-appearance: none;
	-webkit-appearance: none;
	background:url(images/select-arrow.png) no-repeat 98% 17px / 12px
}
select:focus {
	background:url(images/select-arrow-active.png) no-repeat 98% 17px / 12px
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border-bottom: 2px solid #b90101 !important;
	transition: .2s linear;
	
}

textarea {
	width: 100%;
	padding: 5px 0px 5px 0px;
}

/*.name1 input{background:url(images/name.png)no-repeat 15px 15px;}
.name1 input:focus{background:url(images/name-active.png)no-repeat 15px 15px;}
.phone input{background:url(images/phone.png)no-repeat 15px 12px;}
.phone input:focus{background:url(images/phone-active.png)no-repeat 15px 12px;}
.email input{background:url(images/email.png)no-repeat 15px 15px;}
.email input:focus{background:url(images/email-active.png)no-repeat 15px 15px;}
.city input{background:url(images/city.png)no-repeat 15px 12px;}
.city input:focus{background:url(images/city-active.png)no-repeat 15px 12px;}
input.wpcf7-form-control.wpcf7-submit {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    padding: 12px 133px;
    border-radius: 0;
    margin: 25px 0;
    transition: .2s linear;
    text-transform: uppercase;
    letter-spacing: 1px;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #22c1f2;
    transition: .2s linear;

}*/
.half-box.name,.half-box.email,.half-box.we-are{padding-right: 30px}
.half-box.phone,.half-box.city,.half-box.we-want{padding-left: 30px}
a#scrolldown{width: 25px;height: 50px;display: block;}
div.wpcf7-response-output {overflow: auto;}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
header#masthead {
    box-shadow: 0 0 2px -1px #333;
	margin-bottom: 0;
}
.navbar-brand > a {
	color: #563d7c;
	font-weight: bold;
}
.navbar-brand > a:visited, .navbar-brand > a:hover {
	color: #563d7c;
	text-decoration: none;
}
div#page-sub-header {
	position: relative;
	padding: 30px 0;
	color: #cdbfe3;
	text-align: center;
	text-shadow: 0 1px 0 rgba(0,0,0,.1);
	background-color: #6f5499;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#563d7c),to(#6f5499));
	background-image: -webkit-linear-gradient(top,#563d7c 0,#6f5499 100%);
	background-image: -o-linear-gradient(top,#563d7c 0,#6f5499 100%);
	background-image: linear-gradient(to bottom,#563d7c 0,#6f5499 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0);
	background-repeat: repeat-x;
	margin-bottom: 40px;
	font-size: 20px;
}
div#page-sub-header h1{
	margin-top: 0;
	color: #fff;
	margin-bottom: 10px;
}
div#page-sub-header p{
	margin-bottom: 0;
	font-weight: 300;
	line-height: 1.4;
}



@media screen and (min-width: 768px) {
	div#page-sub-header h1{
		font-size: 60px;
		line-height: 1;
	}
	div#page-sub-header {
		padding-top: 60px;
		padding-bottom: 60px;
		text-align: left;
		font-size: 24px;
	}
}
@media screen and (min-width: 992px) {
	div#page-sub-header p{
		max-width: 640px;
	}
}



/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/







/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}
.navbar-brand {
	height: auto;	 
}
.navbar-toggle .icon-bar {
	background: #000 none repeat scroll 0 0;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

@media (max-width: 767px) {

  
  .dropdown-menu {
      padding-left: 10px;
  }
  .dropdown-menu .dropdown-menu {
      padding-left: 20px;
   }
   .dropdown-menu .dropdown-menu .dropdown-menu {
      padding-left: 30px;
   }
   li.dropdown.open {
    border: 0px solid red;
   }

}
 
@media (min-width: 768px) {
  ul.nav li:hover > ul.dropdown-menu {
    display: block;top: 90%;border-radius: 0;background: #fff;
  }
  .caret{display: inline-block;}
  #navbar {
    text-align: center;
  }
}  

.dropdown-menu {position: absolute;top: 100%;left: 0;min-width: 250px;padding:  0;margin: 2px 0 0;-webkit-animation-name: slideIn;animation-name: slideIn; animation-duration: 0.8s;-webkit-animation-duration: 0.8s;animation-fill-mode: both;-webkit-animation-fill-mode: both;}
.page-template-page-service .dropdown-menu {position: absolute;top: 90% !important;left: 0;min-width: 250px;padding:  0;margin: 2px 0 0;}
.dropdown-menu>li>a { padding: 10px 20px;color: #1c3a71;position: relative;transition: .2s linear;font-size: 11px;font-weight: 700;text-transform: uppercase;letter-spacing: 0px; }
.dropdown-menu>li>a:focus, .dropdown-menu>li >a:hover {color: #b90101 !important;text-decoration: none;background-color: transparent;}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {color: #b90101;text-decoration: none;background-color: transparent;outline: 0;}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

@media screen and (min-width: 769px) {
	.dropdown-menu li > .dropdown-menu {
		right: -158px;
		top: 22px;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #b90101;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin-bottom: 0em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}
.widget_search .search-form input[type="submit"] {
	display: none;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	background: #f5f5f5 none repeat scroll 0 0;
	border-radius: 3px;
	box-shadow: 0 0 2px 1px #ccc;
	padding: 2rem;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}




/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}


/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
	border:none;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
footer#colophon {
	background: #262626 none repeat scroll 0 0;
	margin: 0px 0 0;
	padding: 20px 0;
	text-align: center;
}
.copyright {
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
}



@media screen and (max-width: 767px) {
	#masthead .navbar-nav > li > a {
		padding-bottom: 15px;
		padding-top: 15px;
	}
}
/*************custom styles**************/


/* Custom Styles */

main { background: #fff;margin-top: 108px;}
a { transition: all 0.3s ease 0s }
.no_padding { padding: 0px }
.no_margin { margin: 0px }
.col-centered{float: none;margin: 0 auto}
img { max-width: 100%; height: auto }
a:focus { outline: none }
#success_msg { position: absolute; width: 75%; left: 0; right: 0; margin: 0px auto;  font-size: 15px; border: 1px solid #d6e9c6; padding: 8px; bottom: 15px }
.nav>li>a:focus, .nav>li>a:hover {text-decoration: none;background-color: transparent;}
/* The side navigation menu */
.sidenav {height: 100%;width: 100%; position: fixed; z-index:9999; top: 0; right: -100%;background-color: #111;overflow-x: hidden; padding-top: 60px; transition: 0.5s;}
.sidenav a {padding: 8px 8px 8px 32px;text-decoration: none;font-size: 25px;color: #818181;display: block;transition: 0.3s;}
.sidenav a:hover {background-color: transparent !important;color: #22c1f2;}
.sidenav .closebtn {position: absolute;top: 0;right: 25px;font-size: 36px;margin-left: 50px;}
.sidenav .nav>li>a {padding: 20px 15px !important;}
.sidenav .nav>li.active>a {color: #22c1f2;}
.sidenav .logo.menu-item{display: none;}
#content {transition: margin-left .5s;}
.sidenav .navbar-nav .open .dropdown-menu {background-color: #333;border-radius: 0;position: relative;margin: 0 0 30px;}
.sidenav .dropdown-menu>li>a {padding: 10px 20px;font-size: 25px;color: #818181;font-weight: 400;display: block;line-height: 30px !important;text-align: left;white-space: unset;text-transform: capitalize;}

/*404*/
body.error404 header.navbar-static-top {background: rgba(0,0,0,.5);width: 100%;position: absolute;transition: 0.2s linear;}
section.error-404.not-found {padding: 250px 0px;text-align: center;margin: 200px 0 0;}
/*404*/

/*sitemap*/
section.sitemap{padding: 50px 0px;}
section.sitemap ul {column-count: 2;column-gap: 20px;}
section.sitemap ul li a {color: #000;transition: .2s linear;font-weight: 700;font-size: 16px;line-height: 24px;text-transform: uppercase;margin: 10px 0;display: block;}
section.sitemap ul li a:hover {color: #b90101;transition: .2s linear;}
section.sitemap ul ul {column-count: 2;column-gap: 20px;}
/*sitemap*/

/*full width template*/
section.Fullwidth-sec {padding: 50px 0px;}
section.Fullwidth-sec p{font-size: 15px;line-height: 28px;color: #666;margin-bottom: 15px;}
section.Fullwidth-sec ul li{font-size: 15px;line-height: 28px;color: #666;margin-bottom: 10px;}
section.Fullwidth-sec ul {margin:15px 0;}
/*full width template*/

/* Header Section */

header.navbar-static-top { background: #fff; width: 100%; position: fixed;transition: 0.2s linear;border-bottom: 1px solid rgba(0,0,0,.1) }
header .logo a { display: block; width: 100%; height: 100%; text-indent: -300em  }
header .navbar-nav {  font-size: 14px; text-transform: capitalize; float: none; width: 100%; text-align: center;transition: .2s linear;margin:10px 0; }
header .navbar-nav > li > a {color: #1c3a71;position: relative;transition: .2s linear;font-size: 13px;font-weight: 600;text-transform: uppercase;line-height: 14px;padding: 10px 10px;}
header .navbar-nav > li.current_page_parent > a ,header .navbar-nav > li.active > a,header .navbar-nav > li > a:hover { color: #b90101;}
.navbar-header{width: 218px;padding: 25px 0px;transition: 0.2s linear;}
.header-menu{width: calc(100% - 218px);float: right;padding: 16px 0;transition: 0.2s linear;position: relative;}
nav.collapse.navbar-collapse{float: right;}
header .navbar-toggle { background: transparent; margin-right: 0px}
header .navbar-toggle .icon-bar { background: #fff } 
.navbar-toggle .icon-bar { width: 30px; margin-bottom: 6px }
header.navbar-static-top.fixed {background-color:#fff ;transition: 0.2s linear;padding: 0 15px;box-shadow: 0 2px 2px 2px rgba(0,0,0,.2)}
header.navbar-static-top.fixed .navbar-nav > li {transition: .2s linear;}
header.navbar-static-top.fixed .navbar-nav > li > a {transition: .2s linear;}
header.navbar-static-top.fixed .navbar-nav > li {transition: .2s linear;}
.navbar-nav > li {float: none; display: inline-block; vertical-align: top;}
header.navbar-static-top {padding: 0px 0px;}
.caret {display: none;}
.mobile-display {display: none;}
header .navbar-nav > li.header-search  > a{border: 1px solid #d3d3d3;border-radius: 50%;background: #fff;padding: 8px;line-height: 0px;margin: 12px 0;font-size: 15px;color: #4dc6e1;transition: 0.2s linear;}
header .navbar-nav > li.header-search:hover  > a{border: 1px solid #4dc6e1;background: #4dc6e1;border-radius: 50%;padding: 8px;line-height: 0px;margin: 12px 0;font-size: 15px;color: #fff;transition: 0.2s linear;cursor: pointer;}
header.navbar-static-top.fixed .navbar-header {width: 135px;padding: 10px 0px;transition: 0.2s linear;}
header.navbar-static-top.fixed .header-menu {padding: 0px 0;transition: 0.2s linear;}
header.navbar-static-top.fixed .call-row {display: none;}
.call-row {display: block;text-align: right;}
.call-row a{display: inline-block;padding: 0 0 0 20px;background:url(images/call.png) no-repeat 0 4px;font-size: 15px;color: #1c3a71;text-transform: uppercase;font-weight: 600;}
header .navbar-nav > li.request-btn a {font-size: 13px;color: #b90101;border: 1px solid #b90101;padding: 10px 10px;font-weight: 700;line-height: 12px;transition: .3s linear;}
header .navbar-nav > li.request-btn:hover a {font-size: 13px;color: #fff;background-color: #b90101;	transition: .3s linear;}
@keyframes slideIn {0% {transform: translateY(1rem);opacity: 0;}100% {transform:translateY(0rem);opacity: 1;}0% {transform: translateY(1rem);opacity: 0;}}
@-webkit-keyframes slideIn {0% {-webkit-transform: transform;-webkit-opacity: 0;}100% {-webkit-transform: translateY(0);-webkit-opacity: 1;}0% {-webkit-transform: translateY(1rem);-webkit-opacity: 0;}}
/* End */

/* Footer Section */
/*.site_footer:after{content: '';position: absolute;top: -40px;left: 0;width: 100%;height: 90px;display: block;z-index: 10;background: url(images/footer-bg-mask.png) no-repeat 0 0 / cover ;}*/
footer{background-color: #000;padding: 30px 15px 50px;position: relative;}
.social {float: right;clear: both;}
.social ul{list-style: none;margin: 0px 0 0;padding: 0;overflow: auto;width:85px;display: inline-block;}
.social ul li a i{float: left;display:block;width: 28px;height: 28px;background: #b90101	;border-radius: 50px;color:#000;margin: 0 7px;font-size: 17px;transition: .2s linear;text-align: center;line-height:28px;}
.social ul li a:hover i,.footer-right ul li:hover a i{background: #b90101	;color:#fff;transition: .2s linear;}
.footer-left{width: 740px;float: left;margin: 15px 0 0;}
.footer-bottom .menu-footer-container ul{list-style: none;margin: 0 0 10px;padding: 0;overflow: auto;}
.footer-bottom .menu-footer-container ul li a{float: left;display: inline-block;text-transform: uppercase;color:#fff;font-size: 12px;font-weight: 700;line-height: 25px;transition: .2s linear;text-align: center;padding: 0px 10px;}
.footer-bottom .menu-footer-container ul li a span{font-size: 14px;color: #999999;}
.footer-bottom .menu-footer-container ul li:first-child a{padding: 0px 10px 0 0;}
.footer-bottom .menu-footer-container ul li:last-child a{padding: 0px 0px 0 10px;}
.footer-bottom .menu-footer-container ul li a:hover{color:#b90101;transition: .2s linear;}
.menu-footer-container{display: block;overflow: auto;clear: both;}
.footer-bottom .copyrights{clear: both;display: block;font-weight: 400;color: #999;font-size: 12px;line-height: 25px;}
.top-left {width: 300px;float: left;font-size: 16px;line-height: 24px;color: #ccc;border-right: 3px solid #666;}
.top-left .phone{font-size: 16px;line-height: 24px;color: #ccc;background:url(images/phone-footer.png) no-repeat 0 10px;padding: 5px 0 5px 25px;}
.top-left .mail{font-size: 16px;line-height: 24px;color: #ccc;background:url(images/email-footer.png) no-repeat 0 10px;padding: 5px 0 5px 25px;}
.top-left h5 {font-size: 16px;font-weight: 700;margin: 0 0 5px;}
.top-right {width: calc(100% - 300px);float: right;}
ul#menu-footer-top {margin: 0;padding: 0 0 0 20px;list-style: none;}
#menu-footer-top li {padding: 0 0 0 20px;font-size: 16px;line-height: 24px;color: #ccc;;background: url(images/menu-arrow.png)no-repeat 0 4px;transition: .2s linear}
/*.menu-footer-top-container li a:hover{color: #b90101;background: url(images/menu-hover-arrow.png)no-repeat 0 4px;transition: .2s linear}*/
.footer-top {margin-bottom: 0px;overflow: auto;}
.footer-right{width:calc(100% - 740px);margin: 15px 0 0 ;float: right;display: block;border-left: 3px solid #666;padding: 0 0 0 30px}
.footer-right h6{font-size: 16px;line-height: 20px;color: #fff;font-weight: 700;text-transform: uppercase;margin: 0 0 15px}
.footer-right p{font-size: 16px;line-height: 24px;color: #fff;font-weight: 500;margin: 0 0 15px}
.footer-right a{font-size: 13px;color: #fff;background:#b90101;padding: 10px 30px;font-weight: 700;line-height: 12px;transition: .3s linear;display: inline-block;}
.footer-right a:hover{font-size: 13px;color: #000;background:#b90101;transition: .3s linear;}
.footer-bottom {margin: 50px 0 0;}
.socialright {float: right;}
/* End */

/* Banner Section */
.loading {min-height: 531px; background:#fff url('images/loader.gif') no-repeat center center;}
section.banner_section .bannerfill { width: 100%;height: 531px; position: relative; }
section.banner_section .flex-direction-nav {display: none;}
section.banner_section .parent { position: relative ;height: 100%}
section.banner_section .content {width: 440px;position: relative;padding: 0;z-index: 99;top: 150px;opacity: 1;/*animation-delay: 1s;*/background: 0;}
section.banner_section  .content.noanimate {bottom: 100px;opacity: 1;}
section.banner_section  .content.animate {opacity: 1;transition: 1.5s linear;/*animation-delay: 1s;*/}
section.banner_section .content h2 {  font-size: 48px;line-height: 51px; font-weight: 700;text-align: left;color: #fff; margin: 0px 0 15px;}
section.banner_section .content h6 { color: #fff;display: block;font-size: 23px;line-height: 31px;margin:0 0 35px; }
section.banner_section .content  a{font-size: 14px;color: #fff;background-color: #b90101;text-transform: uppercase;padding: 14px 21px;font-weight: 700;line-height: 12px;transition: .3s linear;}
section.banner_section .content a:hover {color: #fff;opacity: .8;transition: .3s linear;}

/*services*/
section.services {padding: 70px 0;}
.title-row {text-align: center;}
.title-row h1{font-size: 18px;line-height: 41px;color: #1c3a71;font-weight: 700;text-transform: uppercase;margin: 0 0 25px}
.home-concern .title-row p{font-size: 26px;line-height: 39px;color: #1c3a71;font-weight: 600;margin: 0 0 10px}
.service-box .box-image{overflow: hidden;position: relative;max-height: 158px}
.service-box .box-image:after{content: '';position: absolute;left: 0;right: 0;top: 0;height: 100%;display: block;background-color: rgba(0,0,0,.2);}
.service-box .box-image img{transition: 0.3s linear;}
.box-title {font-size: 18px;color: #000;line-height: 25px;font-weight: 700;padding: 15px 0;transition: 0.3s linear;}
.service-box {margin: 25px 0 0;}
img.box-arrow {padding-left: 10px;}
.service-box:hover .box-title {color: #b90101;transition: 0.3s linear;}
.service-box:hover .box-image img{transform: scale(1.05);transition: 0.3s linear;}
/*services*/

/*about*/
section.about {background: #f9f4ee;padding: 100px 0;}
.about-img {text-align: right;float: right;}
.about-text h3{font-size: 36px;line-height: 46px;color: #1c3a71;margin: 0 0 25px;font-weight: 700}
.about-text p{font-size: 16px;line-height: 24px;color: #000;margin: 0 0 20px;font-weight: 400}
.about-text a{font-size: 13px;line-height: 24px;color: #b90101;margin: 0 0 20px;font-weight: 400;transition: .2s linear}
.about-text a:hover{text-decoration: underline;transition: .2s linear}
/*about*/

/*service request*/
section.service-request{padding: 70px 0px;background-color: #f9f4ee;}
.request-text h2{font-size: 20px;line-height: 41px;color: #1c3a71;margin: 0 0 10px;font-weight: 700;text-transform: uppercase;}
.request-text p{font-size: 18px;line-height: 29px;color: #000;margin: 0 0 20px;font-weight: 400;}
.request-text a{font-size: 16px;color: #fff;background-color: #b90101;display: inline-block;padding: 14px 40px;font-weight: 700;line-height: 12px;transition: .3s linear;}
.request-text a:hover {color: #fff;opacity: .8;transition: .3s linear;}
/*service request*/

/*testimonials*/
section.testimonails {padding: 80px 0;}
section.testimonails h1{font-size: 18px;line-height: 41px;color: #1c3a71;margin: 0 0 20px;font-weight: 700;text-transform: uppercase;}
.testimonials.flexslider .flex-direction-nav {display: none;}
.testimonials.flexslider .flex-control-nav {bottom: 0px;padding-left: 60px;text-align: left;position: relative;margin-bottom: 30px}
.testimonials.flexslider .flex-control-paging li a.flex-active {background: #ababab;cursor: default;}
.testimonials.flexslider .flex-control-paging li a{border:1px solid #ababab;}
.slider-content {padding-left: 65px;padding-right: 20px;background: url(images/testimonials-icon.png) no-repeat 0 0;}
.slider-content p{font-size: 22px;line-height:34px;color: #000;margin: 0 0 20px;font-weight: 400;}
.slider-content .author{font-size: 16px;line-height:44px;color: #000;margin: 0 0 10px;font-weight: 400;}
a.more-btn{font-size: 13px;line-height: 24px;color: #b90101;margin: 0 0 20px;font-weight: 400;transition: .2s linear}
a.more-btn:hover{text-decoration: underline;transition: .2s linear}
.testi-slider a.more-btn{padding-left: 65px;}
.video-wrapper-box{margin-bottom: 30px;overflow: auto;}
/*testimonials*/

/*services*/
section.innerbanner {height: 350px;}
.banneroverlay {display: flex;height: 100%;align-items: center;}
.banner_text {font-size: 46px;color: #fff;font-weight: 700;line-height: 51px;}
.wrapper-content{padding: 75px 0;}
.sidebar-menu {background-color: #f9f4ee;padding: 30px 30px}
.sidebar-menu h5{font-size: 15px;color: #000;line-height: 25px;font-weight: 700;text-transform: uppercase;margin: 0 0 20px}
.sidebar-menu ul{list-style: none;margin: 0;padding: 0;}
.sidebar-menu ul li a{display: block;padding: 0 0 0 20px;font-size: 14px;line-height: 38px;font-weight: 500;color: #000;border-top:1px solid #ded9d4;background: url(images/menu-arrow.png)no-repeat 0 13px;transition: .2s linear}
.sidebar-menu ul li.current-menu-item a,.sidebar-menu ul li a:hover{color: #000;background: url(images/menu-hover-arrow.png)no-repeat 0 13px;transition: .2s linear;font-weight: 700}

.content-wrapper {padding-left: 50px;}
.content-block h3{font-weight: 500;font-size: 26px;line-height: 39px;color: #1c3a71;margin: 0 0 30px}
.content-block h5{font-weight: 700;font-size: 16px;line-height: 26px;color: #000;margin: 0 0 20px}
.content-block p{font-weight: 400;font-size: 16px;line-height: 29px;color: #000;margin: 0 0 30px}
.content-block ul{list-style: none;margin: 0 0 20px;padding: 0;}
.content-block ul li{padding: 0 0 0 20px;font-size: 16px;line-height: 28px;font-weight: 400;color: #000;background: url(images/list-icon.png)no-repeat 0 9px;margin-bottom: 5px}
.content-block a{display: inline-block;font-size: 14px;color: #fff;background-color: #b90101;text-transform: uppercase;padding: 14px 21px;font-weight: 700;line-height: 12px;margin:20px 0 0;transition: .3s linear;}
.content-block a:hover {color: #fff;opacity: .8;transition: .3s linear;}
.photo-block{margin: 50px 0 0;}
.photo-box:first-child,.video-box-inner:first-child{padding: 0 15px 0 0;}
.photo-box:last-child,.video-box-inner:last-child{padding: 0 0px 0 15px;}
.testimonials-inner {background: #f9f4ee;padding: 45px 45px;text-align: center;}
.testimonials-inner img{width: 27px;margin: 0 0 15px;}
.testimonials-inner h4{font-weight: 700;font-size: 18px;line-height: 28px;color: #1c3a71;margin: 0 0 20px;text-transform: uppercase;}
.testimonials-inner h6{font-weight: 600;font-size: 13px;line-height: 28px;color: #000;margin: 10px 0 20px;}
.testimonials-inner p{font-weight: 400;font-size: 18px;line-height: 26px;color: #000;margin: 0 0 0px;padding: 0 30px}
/*services*/

/*faq homepage*/
.faq-section{background:#e9e9e9;padding:60px 0px ;}
.faq-section .title-sec h1{text-align: center;margin: 0 0;padding: 0 0 25px;font-size: 30px;color: #000;line-height: 57px;font-weight: 300;position: relative;}
.faq-section .title-sec h1:after {content: '';position: absolute;width: 185px;height: 4px;background: #1173c1;bottom: 0;left: 0;right: 0;text-align: center;margin: 0 auto;}
.faq-sec{margin: 50px 0 30px;}
.panel-group {text-align: left;}
.panel-title > a:before {float: left !important;width:25px;height: 25px;background:url(images/minus.png) no-repeat 0 8px;content:'';position: absolute;left: 0;}
.panel-title > a.collapsed:before {float: left !important;content:'';background:url(images/plus.png) no-repeat 0 8px;}
.panel-title > a:hover,.panel-title > a:active,.panel-title > a:focus  {    text-decoration:none;}
.panel-title>a{display: block;font-size: 22px;font-weight: 600;color: #000;line-height: 30px;}
.panel-title  a.collapsed{font-weight: 400;}
.panel-group .panel+.panel {margin-top: 0px;}
.panel-group .panel {border-radius: 0px;border: none;border-bottom: 1px solid #afafaf;box-shadow: none;background: transparent;}
.panel-default>.panel-heading {color: #333;background-color: transparent;border-color: transparent;padding: 15px 15px 15px 45px;position: relative;}
.panel-default>.panel-heading+.panel-collapse>.panel-body {line-height: 30px;font-weight: 400;border-top-color: #ddd;border: none;font-size: 17px;padding: 10px 15px 15px 45px;}
.panel-default>.panel-heading+.panel-collapse>.panel-body p{margin: 0 0 10px 0px;}
.button-row {display: block;text-align: center;margin: 0 0 20px;}
.button-row a{font-size: 16px;font-weight: 400;line-height: 30px;color: #1173c1;transition: 0.2s linear;border-bottom: 1px solid transparent;}
.button-row a:hover{color: #1173c1;transition: 0.2s linear;border-bottom: 1px solid #1173c1;}
/*faq homepage*/


/* contact page start */
.contactpg { text-decoration:none; }
.contactpg .content-block a { color:#b90101; background:none !important; margin:0 !important; padding:0 !important; text-transform:none; }
.contactpg .fa { color:#666; font-size:14px !important; width:25px; margin-bottom:5px; }
.contactpg .fa:hover { color:#b90101; }
.contactpg .fa-mobile { font-size:22px !important; padding-left:2px; }
.contactpg input[type="submit"] { border: 1px solid ; border-color: transparent; border-radius: 3px; background: #b90101; font-weight:700; color: #fff; font-size: 14px; line-height: 25px; padding: 7px 15px; margin: 0px 3px; display:inline-block; }
.contactpg input[type="submit"]:hover { color:#000; transition: .3s linear }
.contactpg input[type="text"],.contactpg input[type="email"],.contactpg input[type="number"],.contactpg input[type="tel"],.contactpg select,.contactpg textarea { font-size:15px !important; padding-left:10px;  -moz-appearance: none; -webkit-appearance: none;    appearance: none; }
.contactpg textarea { padding-left:0px; }
.contactpg div.wpcf7 .ajax-loader { float:none !important; }
.contactpg label { font-weight: 600; margin:10px 0 0 0;}
textarea { resize:none; height:130px; line-height:25px }
span.wpcf7-not-valid-tip { font-size:13px; margin-top:-10px; }
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none; margin: 0; }
input[type=number] {-moz-appearance:textfield; /* Firefox */}
/* contact page end  */

option:checked { background: #ccc linear-gradient(0deg, #ccc 0%, #ccc 100%) !important; }
option:hover { background: #ccc linear-gradient(0deg, #ccc 0%, #ccc 100%) !important; }
select option:hover { background: #ccc linear-gradient(0deg, #ccc 0%, #ccc 100%) !important; }

wpcf7-select { }
select.wpcf7-select option:hover { box-shadow: 0 0 10px 100px #ccc inset; background: #ccc !important; }

select option:checked,
select option:hover {
  box-shadow: 0 0 10px 100px #ccc inset;
  background: #ccc !important;
  background: #ccc linear-gradient(0deg, #ccc 0%, #ccc 100%) !important; 
}

select:focus>option:checked {
  background: #ccc !important;
background: #ccc linear-gradient(0deg, #ccc 0%, #ccc 100%) !important; 
}
option:hover{background-color:#ccc !important;}

/* select:focus option:checked { background: #ccc linear-gradient(0deg, #ccc 0%, #ccc 100%); } */



/* concerns sub pages */
.concernspgs { }
.concernspgs .content-block ul li { background: url(images/list-icon-bullet.png)no-repeat 0 9px !important; margin-bottom:25px; }
p.click-more a {color: #e80202;background: transparent;padding: 0;margin: 0;display: inline;text-transform: none;font-size: 16px;font-weight: 400;}
p.click-more a:hover {text-decoration: underline;color: #e80202}
div.wpcf7-mail-sent-ok {border: 2px solid #45c110 !important;}
.sl-overlay {background: #555 !important;}

section.Fullwidth-sec p.testimonial-page{font-size: 22px;line-height:34px;color: #000;margin: 0 0 20px;font-weight: 400;}
section.Fullwidth-sec p.testimonial-page strong{font-size: 16px;line-height:44px;color: #000;margin: 0 0 10px;font-weight: 400;}



/* Custom Media Queries */

@media screen and (max-width: 1600px){
	section.innerbanner {height: 340px;}
	
}

@media screen and (max-width: 1440px){
	section.innerbanner {height: 300px;}
	
}

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

}

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

}
@media screen and (min-width: 1200px){
	
}
@media screen and (max-width: 1199px){
	header .navbar-nav > li > a {font-size: 11.5px;}
	.nav>li>a {padding: 10px 5px;}
	
}
@media screen and (min-width: 992px) and (max-width: 1199px){
	
}

@media screen and (max-width: 991px){
.navbar-collapse.collapse {display: none !important;}
header.navbar-static-top {padding: 3px 15px;}
main {margin-top: 105px;}
.navbar-static-top.fixed button#responsive-menu-button {top: 15px !important;transition: .2s linear;}
button#responsive-menu-button {transition: .2s linear;}
section.banner_section .content {width: 500px;padding: 0 15px;}
.wrapper-content {padding: 75px 15px;}
div#responsive-menu-wrapper {padding: 50px 0 0;}

}

@media screen and (min-width: 801px) and (max-width: 992px){

}

@media screen and (max-width: 800px){
	
	.footer-left{width:100%;float:left;margin:15px 0 0}
	.footer-bottom .menu-footer-container ul{display:table;margin:0 auto;text-align:center}
	.footer-bottom .menu-footer-container ul li{display:inline-block}
	.footer-bottom .menu-footer-container ul li a{display:inline-block;float:none!important}
	.footer-bottom .copyrights{text-align:center}
	.footer-right{float:none;display:flex;clear:both;justify-content:center}
	.sidebar-menu ul li a {display: block;padding: 10px 0 10px 20px;font-size: 14px;line-height: 17px;}
	.social {margin: 0 0 20px;clear: both;overflow: auto;width: 100%}
	.social ul {margin: 0px auto;display: table;}
	.footer-right{display: none;}
	.socialright{float: none;}
	footer {padding: 30px 15px 30px;}
	.footer-top {overflow: hidden;}

	
}

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



}

@media screen and (max-width: 767px){
	
	.navbar-toggle {margin-top: 0;margin-bottom: 0;}
	.header-menu {width: 100%;float: none;display: none;}
	nav.collapse.navbar-collapse {float: none;width: 100%;}
	.navbar-nav > li {display: block;}
	header .navbar-nav {padding: 15px 0px;}
	header .navbar-nav > li > a {padding: 10px 0;}
	

}

@media screen and (max-width: 663px){
	.header-menu {width: 100%;float: none;display: none;}
	section.banner_section .bannerfill {width: 100%;height: 350px;position: relative;}
	section.banner_section .content {width: 100%;bottom: unset !important;top: unset !important;padding: 130px 15px 30px;}
	section.banner_section .content p{line-height:40px;margin:0 auto;font-size:23px;color:#fff;}
	section.banner_section .content p strong{line-height:45px;font-size:25px}
	header .navbar-toggle{background:transparent;margin-right:0;display:none}
	.about-img {text-align: center;float: none;}
	section.services {padding: 30px 0;}
	.service-box {margin: 0 0 0;}
	section.about {background: #f9f4ee;padding: 50px 0;}
	section.banner_section .content h2 {font-size: 26px;line-height: 32px;}
	section.banner_section .content h6 {color: #fff;display: block;font-size: 18px;line-height: 23px;margin: 0 0 25px;}
	section.banner_section .content a {font-size: 12px;padding: 10px 21px;}
	.navbar-header {width: 170px;padding: 20px 0px;}
	button#responsive-menu-button {top: 35px !important;}
	main {margin-top: 90px;}
	.about-text h3 {font-size: 24px;line-height: 34px;}
	section.testimonails {padding: 40px 0;}
	.slider-content p {font-size: 18px;line-height: 28px;margin-bottom: 10px;}
	.slider-content .author {font-size: 16px;line-height: 30px;}
	.testi-slider {margin-bottom: 30px;}
	.video-box {padding: 0;}
	section.service-request {padding: 40px 15px;}
	.service-box .box-image img {transition: 0.3s linear;width: 100%;}
	.content-wrapper {padding: 0;}
	.photo-box:first-child, .video-box-inner:first-child {padding: 0;margin-bottom: 20px;}
	.photo-box:last-child, .video-box-inner:last-child {padding: 0;}
	.testimonials-inner p {padding: 0;}
	

}


@media screen and (max-width: 480px){
	.service-box {margin: 0 0 0;width: 100%;}
	.top-left {width: 100%;}
	.top-right {width: 100%;float: right;margin: 25px 0 0;}
	section.innerbanner {height: 250px;}
	.banner_text {font-size: 26px;}
	.wrapper-content {padding: 40px 15px;}
	.content-block h3 {font-weight: 500;font-size: 22px;line-height: 32px;}
	.testimonials-inner {background: #f9f4ee;padding: 45px 20px;}
	.panel-title>a {font-size: 18px;line-height: 28px;}
	.panel-default>.panel-heading+.panel-collapse>.panel-body {line-height: 26px;font-size: 16px;}
	.top-left{border-right: none;border-bottom: 3px solid #666;padding-bottom: 25px}
	ul#menu-footer-top {padding: 0 0 0 0px;}
}

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

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

section.banner_section .content {padding: 110px 15px 30px;}
	
	
	
}

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

@media screen and (min-height: 850px){
	
}


@supports (-webkit-overflow-scrolling: touch) {

  section.banner_section .bannerfill {background-attachment: scroll !important;}
  section.about-wildwarrior,section.blog-post-row {background-attachment: scroll !important;}


}
/* End */
