/*!
Theme Name: northkilworthwharf
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: northkilworthwharf
Tags: custom-background, custom-logo, custom-menu, featured-images, 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.

northkilworthwharf is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> 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
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
/*------------ Default css ------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #fff;
	font-family: 'Arial', sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	color: #000;
	font-weight: 400;
}

a, .btn{
	text-decoration: none;
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
}
a:hover{
	 text-decoration: none;
}
/*------------ Font Include ------------*/

/*------------ Bootstrap Default css changes start ------------*/
.navbar-brand {
    height: auto;
	padding: 0 15px;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    color: #000;
    background-color: transparent;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
    color: #000;
    background-color: transparent;
}
.dropdown-menu {
	min-width: 230px;
}

/*------------ Button Section ---------------------*/
.btn-common {
    border-radius: 4px;
	font-size: 16px;
	padding: 10px 20px;
	background: #7a0016;
	color: #fff;
	font-weight: 400;
	border: 1px solid transparent;
}
.btn-common:hover {
	color: #fff;
	background: #ba0122;
	border: 1px solid #3a000a;
}


/*------------ Header css -------------*/
.header-top {
    background: #7a0016;
	padding: 6px 0px;
}
.header-right {
    float: right;
	margin: 5px -8px;
}
.header-bottom .nav > li > a {
    color: #91a5a5;
	font-size: 16px;
	font-weight: 600; 
	position: relative;
	letter-spacing: 0.5px;
}
.main-header {
    border-radius: 0;
    border: 0;
    background: #fff;
	margin-bottom: 0;
	padding: 25px 0;
}
.header-contact ul {
    margin-bottom: 0;
}
.header-right li {
    padding: 0;
}
.header-contact {
    padding: 5px 0px;
    float: left;
    width: 100%;
}
.header-contact li a:hover {
    color: #db0e0e;
}
.header-contact li a {
    color: #fff;
}
.header-contact li i { 
	color: #fff;
}
.header-contact li a {
    margin-left: 5px;
}
.navbar-nav > li .menu-arrow.dropdown-toggle {
	color: #91a5a5;
}

/*------------------- Banner Slider Style ---------------------*/
.banner-section {
	position: relative;
}
.banner-section::after {
	position: absolute;
	content: "";
	background: url("../images/banner_curve_img.png") no-repeat scroll;
	width: 100%;
	padding-top: 8%;
	background-size: 100%;
	background-position: bottom center;
	left: 0;
	right: 0;
	bottom: -1px;
}
.banner-img img {
    width: 100%;
}
.banner-caption {
	position: absolute;
	top: 20%;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: translateY(-20%);
	-webkit-transform: translateY(-20%);
	-ms-transform: translateY(-20%);
	-moz-transform: translateY(-20%);
    color: #fff;
}
.banner-caption img {
    width: 100%;
}
.banner-caption-details h2 {
    text-transform: uppercase;
    margin: 0;
	font-size: 35px;
	padding: 12px 0;
	font-family: 'Alfa Slab One', cursive;
	letter-spacing: 2px;
	line-height: 50px;
	text-shadow: 0 0 30px #000;
}

/*------------------- Content Style ---------------------------*/
.skip-link {
    display: none;
}
.services-img .box-common-head span {
    line-height: 45px;
}
.services-img {
    position: relative;
	margin-bottom: 30px;
}
.services-img::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.2);
	border-radius: 10px;
}
.services-img:hover:after {
	opacity: 0;
}
.services-img::after,.services-img:hover:after,.services-caption,.services-caption:hover {
	transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
}
.services-caption {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 999;
	border-radius: 10px;
	padding: 25px;
}
.services-caption .btn-common {
	opacity: 0;
}
.services-img:hover .services-caption .btn-common {
	opacity: 1;
}
.services-caption .btn-common {
    position: absolute;
    bottom: 75px;
	background: #fff;
	color: #455560;
}
.services-caption .btn-common:hover,.services-caption .btn-common:focus {
	background: #b30121;
	border: 1px solid #b30121;
	color: #fff;
}
.services-img:hover .services-caption{
	background: rgba(122,0,22,0.6);
}
.services-section {
    padding: 20px 0 80px;
}
.services-img img {
    border-radius: 10px;
	width: 100%;
}
.box-common-head {
    margin: 0;
    text-transform: uppercase;
	font-family: 'Alfa Slab One', cursive;
    color: #fff;
}
.common-head {
	position: relative;
	font-size: 25px;
	font-family: 'Alfa Slab One', cursive;
	color: #000;
	margin-bottom: 25px;
	text-transform: uppercase;
	margin-top: 0;
	line-height: 35px;
}
.common-head span {
    display: inline-block;
	background: #fff;
	padding: 5px 25px;
}
.common-head span::before,.common-head span::after {
	position: absolute;
	content: "";
	right: 0;
	background: #eceeef;
	height: 6px;
	top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: -1;
}
.common-head span::before {
	width:50%;
	left: -125px;
}
.common-head span::after {
	width: 100%;
	right: -125px;
}
.welcome-section .common-head span::before,.welcome-section .common-head span::after {
	background: #dee2e3;
}
.welcome-form .form-control {
    box-shadow: none;
    border-color: #c5c5c5;
    resize: none;
    min-height: 45px;
}
.header-contact span a:hover {
	color: #c4e764;
}
.welcome-section {
	background: #eff2f2;
	position: relative;
	padding: 5% 0;
}
.welcome-content, .welcome-form{    
	position: relative;
	z-index: 999;
}
.welcome-section::after,
.welcome-section::before {
	position: absolute;
	content: "";
	width: 100%;
	left: 0;
	right: 0;
	background-size: 100% !important;
	padding-top: 4%;
}
.welcome-section::before {
	background: url("../images/content_curve_image_gray.png") no-repeat scroll;
	top: 0;
	background-position: top !important;
}
.welcome-section::after {
	background: url("../images/content_curve_image_white.png") no-repeat scroll;
	bottom: 0;
	background-position: bottom !important;
}
.welcome-section .common-head span {
	background: #eff2f2;
}
.welcome-section .welcome-content .common-head span::before {
	display: none;
}
.welcome-form .common-head span {
}
.welcome-form .common-head span::after {
	right: 0;
}
.welcome-content .common-head span {
    padding-left: 0;
}
.welcome-content a {
	color: #7a0016;
}
.welcome-content a:hover {
	color: #ca0125;
}
.welcome-form .wpcf7-form-control-wrap.terms .wpcf7-list-item {
    margin-left: 0;
}
.owl-carousel.owl-carousel-gallery {
	position: relative;
}
.testimonial-section {
    padding: 45px 0;
}
.testimonial-content {
	position: relative;
    background: #7a0016;
	color: #fff;
	padding: 35px;
	border-radius: 10px;
	height: 250px;
	display: table-cell;
	vertical-align: middle;
}
.testimonial-content::before,.testimonial-content::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	margin: 0 auto;
}
.testimonial-content::before {
	background: url('../images/quotes_icon.png');
	width: 37px;
	height: 33px;
	top: 20px;
}
.testimonial-content::after {
	background: url('../images/testimonial_curve_img.png');
	width: 76px;
	height: 49px;
	bottom:-48px;
}
.testimonial-author {
    padding: 15px 0px;
    position: relative;
    margin-top: 50px;
}
.testimonial-author span {
    font-family: 'Alfa Slab One', cursive;
    font-size: 20px;
}
.testimonial-wrap .owl-nav {
    position: absolute;
    top: 35%;
    margin: 0 auto !important;
	text-align: center;
    left: 0;
    right: 0;
	height: 35px;
    transform: translateY(-35%);
    -moz-transform: translateY(-35%);
    -ms-transform: translateY(-35%);
    -webkit-transform: translateY(-35%);
}
.testimonial-wrap .owl-nav [class*="owl-"] {
	position: absolute;
	width: 35px;
	height: 50px;
}
.testimonial-wrap .owl-nav [class*="owl-"]:hover {
	background: #7a0016;
	color: #fff;
}
.testimonial-wrap .owl-nav .owl-prev { 
	left: 0;
}
.testimonial-wrap .owl-nav .owl-next { 
	right: 0;
}
.testimonial-container {
    padding: 0px 40px;
}
.testimonial-wrap .owl-nav [class*="owl-"] i {
    font-size: 50px;
}
.address-map-section {
    padding: 25px 0 0;
}
.map-details {
    line-height: 0;
}
footer {
    margin-top: -3%;
}
.footer-top {
	position: relative;
    background: #91a5a5;
    color: #fff;
	padding: 5% 0 2%;
}
.footer-curve-section {
	position: relative;
	padding: 3% 0;
}
.footer-curve-section::before {
	position: absolute;
	background: url('../images/footer_curve_img.png') no-repeat scroll;
	content: "";
	content: "";
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 7%;
	background-position: bottom !important;
	background-size: 100% !important;
	bottom: -1px;
	z-index: 999;
}
.footer-menu li a {
    color: #fff;
}
.footer-bottom {
    background: #4b575f;
    color: #fff;
	padding: 8px 0;
}
.footer-bottom p {
	margin-bottom: 0;
}
.footer-logo figure {
    display: inline-block;
}
.footer-menu ul {
    list-style: none;
}
.footer-head {
	font-family: 'Alfa Slab One', cursive;
    text-transform: uppercase;
	margin: 12px 0;
	font-size: 18px;
}
.footer-bottom .copyrights-section p a {
    color: #fff;
}
.footer-address {
    border-bottom: 6px solid #455560;
    margin: 0 0 45px;
    padding-bottom: 35px;
	float: left;
	width: 100%;
}
.footer-address ul {
    list-style: none;
}
.footer-address ul li {
    margin: 10px 0;
}
.address-details .common-head span::after {
	right: 0;
}
.address-details li a:hover {
    color: #7a0016;
}

/*------------------- Inner page css start --------------------*/
.hbspt-form .hs-input {
	box-sizing: border-box !important;
	max-width: 100% !important;
	width: 100% !important;
	border-radius: 0;
	box-shadow: none;
	min-height: 35px;
	padding: 2px 8px;
	resize: none;
}
.hs-error-msgs label {
    color: #f12 !important;
}
input.hs-input.error {
	border-color: #f12 !important;
}
.hs_submit .hs-button {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: #F16A21 !important;
    text-shadow: none !important;
	text-transform: uppercase;
	font-size: 18px !important; 
	min-height: 25px;
	font-weight: 400 !important;
	font-family: 'Source Sans Pro', sans-serif !important;
}
.hs_submit .hs-button:hover {
	box-shadow: none;
	opacity: 0.6;
}

.dropdown-menu .dropdown-menu {
    left: 100%;
    margin: 0;
    right: auto;
    top: -1px;
}
.dropdown-menu > li > a {
    white-space: unset;
}
.dropdown, .dropdown-submenu { position: relative; }

.dropdown .fa-angle-down {
    position: absolute;    
    padding: 12px 5px;
    cursor: pointer;
}
.dropdown .fa-angle-down {
    top: 4px;
    right: 0;
}
.dropdown-submenu .fa-angle-down {
    top: -3px;
    right: 0;
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    background-color: #7a0016;
}
.inner-pages .welcome-section {
	background: #fff;
}
.inner-pages .welcome-section::after,
.inner-pages .welcome-section::before {
	display: none;
}
.inner-pages .contact-details-list .common-head span {
    background: #fff;
}
.inner-pages .common-head span, .inner-pages .common-head span {
	background: #fff;
}
.address-details address {
    position: relative;
    padding-left: 20px;
}
.address-details address i {
	position: absolute;
	left: 0;
	top: 2px;
}
.address-details ul {
    list-style: none;
    margin: 0;
}
.address-details li a {
    color: #000;
}
.address-details li a:hover {	
	color: #7a0016;
}
.footer-menu.footer-quick-link li a:hover,.footer-bottom .copyrights-section p a:hover {
    color: #7a0016;
}
.footer-menu.footer-quick-link li {
    margin-bottom: 8px;
}
.footer-menu.footer-contact address {
    line-height: 30px;
}
.footer-social-media li a {
    color: #fff;
    font-size: 40px;
}
.footer-social-media li a:hover {
	color: #7a0016;
}
.footer-social-media {
    margin: 20px 0;
}
.inner-pages .welcome-form .common-head span::before {
    left: 0;
}
.welcome-form .common-head span::after {
    right: 0;
}
.wpcf7-validation-errors {
    display: none !important;
}
.contact-details-list address {
    padding-left: 20px;
	position: relative;
}
.contact-details-list address i {
	position: absolute;
	left: 0;
	top: 2px;
}
.contact-details-list address .footer-head {
    margin-bottom: 10px;
}
.contact-details-list ul {
    list-style: none;
}
.contact-details-list li a {
    color: #000;
}
.contact-details-list li a:hover {
	color: #7a0016;
}
.contact-map-section {
    line-height: 0;
    margin-bottom: 25px;
}
.inner-pages.blog-page .welcome-form .widget-area {	
}
.inner-pages.blog-page .welcome-form .widget-area .widget-title {
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 15px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 15px;
}
.inner-pages.blog-page .welcome-form .widget-area ul {
	list-style: none;
}
.inner-pages.blog-page .welcome-form .widget-area .widget {
	background: #ececec;
}
.inner-pages.blog-page .welcome-form .widget-area .widget {
    background: #e9e9e9;
    padding: 15px;
    margin-bottom: 15px;
}
.inner-pages.blog-page .welcome-form .widget-area .widget li a {
	color: #000;
}
.inner-pages.blog-page .welcome-form .widget-area .widget li a:hover {
	color: #7a0016;
}
.inner-pages.blog-page .post-thumbnail-content {
	margin-bottom: 15px;
}
.inner-pages.blog-page .post-thumbnail-content .entry-header {
	margin-bottom: 20px;
}
.inner-pages.blog-page .post-thumbnail-content .entry-title {
	margin-bottom: 5px;
	margin-top: 0;
}
.inner-pages.blog-page .post-thumbnail-content .entry-title a {
    color: #000;
}
.inner-pages.blog-page .post-thumbnail-content .entry-title a:hover {
	color: #7a0016;
}
.inner-pages.blog-page .post-thumbnail-content .entry-meta, .inner-pages.blog-page .post-thumbnail-content .entry-meta span {
    color: #ccc;
    font-size: 14px;
}

/*------------------- Media Query -----------------------------*/
@media only screen and (min-width: 0px) and (max-width: 395px){
.common-head h2,.common-head span {
    font-size: 25px;
}
}

@media only screen and (min-width: 320px) and (max-width: 480px){
.custom-logo-link img {
    max-width: 265px;
    max-height: 65px;
}
.header-contact {
    text-align: center;
}
.header-right li a {
    margin-top: 5px;
}
.header-right {
    float: unset;
}
}

@media only screen and (max-width: 480px){
.testimonial-content {
	padding-top: 65px;
}
.banner-caption-details h2 {
    text-shadow: 0 0 5px #000;
}
}

@media only screen and (min-width: 481px) and (max-width: 639px){
.banner-caption-details h2 {
    text-shadow: 0 0 15px #000;
}
}

@media only screen and (min-width: 481px) and (max-width: 700px){
.header-contact {
    text-align: center;
}
.header-right li a {
    margin-top: 5px;
}
.header-right {
    float: unset;
}
}

@media only screen and (min-width: 640px) and (max-width: 767px){ 
.service-wrap .row > [class*="col-"] {
    width: 50%;
    float: left;
    margin: 0 auto;
}
.banner-caption-details h2 {
    text-shadow: 0 0 15px #000;
}
}

@media only screen and (min-width: 320px) and (max-width: 640px){
}

@media only screen and (max-width: 551px){
.banner-caption-details h2 {
    font-size: 14px;
    line-height: 16px;
	letter-spacing: 1px;
}
} 

@media only screen and (min-width: 552px) and (max-width: 767px){ 
.banner-caption-details h2 {
    font-size: 24px;
    line-height: 30px;
}
.footer-top-right .row > [class*="col-sm-6"] {
    width: 50%;
}
}

@media only screen and (min-width: 481px) and (max-width: 767px){
}

@media only screen and (max-width: 639px){
}

@media only screen and (max-width: 767px) {
.navbar-toggle {
    margin: 16px 0px;
}
.navbar-header {
    padding: 0 15px;
} 
.dropdown .fa-angle-down {
    right: 12px;
}
.dropdown-submenu .fa-angle-down {
    right: 12px;
}
.footer-logo {
    text-align: center;
}
.footer-top-right {
    margin-top: 35px;
}
.footer-head {
	margin-bottom: 15px;
	margin-top: 15px;
	display: inline-block;
	width: 100%;
}
.footer-menu.footer-quick-link {
    float: left;
    width: 100%;
}
.inner-pages .welcome-content .welcome-form {
    margin-top: 25px;
}
.address-map-section .map-details {
    margin-top: 25px;
}
.footer-curve-section {
    padding: 0%;
}
}

@media only screen and (min-width: 640px) and (max-width: 991px){
.navbar-toggle {
	margin-right: 0;
	top: 0;
}
}

@media only screen and (min-width: 768px) {
.inner-pages .banner-section {
    max-height: 300px;
    overflow: hidden;
}
.dropdown-toggle i {
    margin-left: 5px;
}
#bs-example-navbar-collapse-1 {
    padding: 0;
}
.navbar-nav > li {
    float: left;
    margin-left: 40px;
}
.header-bottom .nav > li > a {
    padding-left: 0;
	padding-right: 0;
}
.service-wrap > .btn-common {
    position: relative;
    left: 35px;
}
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
.dropdown .fa-angle-down {
    right: 0px;
}
.dropdown-submenu .fa-angle-down {
    right: 0px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
.hs_submit .hs-button {
    font-size: 12px !important;
}
.navbar-nav {
    top: 0;
}
.services-img .box-common-head {
    font-size: 20px;
}
.services-img .box-common-head span {
    line-height: 28px;
}
.banner-caption-details h2 {
    font-size: 26px;
    line-height: 35px;
}
.footer-logo {
    text-align: center;
}

/*-------- Responsive Menu ----------*/
	.navbar-nav .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-nav .open .dropdown-menu > li > a {
		line-height: 20px;
	}
	.dropdown-menu > li > a {
		display: block;
		padding: 3px 20px;
		clear: both;
		font-weight: normal;
		line-height: 1.42857143;
		color: #333;
		white-space: nowrap;
	}
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        /*margin: 7.5px -15px;*/
		margin: 15px 0px;
    }
    .navbar-nav>li {
		float: left;
		width: 100%;
		margin: 5px 0;
		border-bottom: medium none !important;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar-text {
        float: none;
        margin: 15px 0;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in { 
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
		
}

@media only screen and (max-width: 991px){
#bs-example-navbar-collapse-1 {
	margin-top: 15px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #7a0016;
}
.navbar-brand > img {
    max-height: 125px;
}
.dropdown-submenu.open .dropdown-menu {
    margin: 0 12px;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
	padding: 5px 15px 5px 25px;
}
.dropdown .fa-angle-down {
    top: 0px;
}
.common-head span::after {
    right: 0 !important;
}
.common-head span::before {
    left: 0 !important;
}
.common-head {
    font-size: 18px;
}
}

@media only screen and (min-width: 992px) and (max-width: 1024px) { 
.navbar-nav > li {
    margin-left: 18px !important;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
.testimonial-content {
    padding: 60px 30px 35px;
    height: 300px;
}
.nav.navbar-nav {
    top: 35px !important;
}
.navbar-brand > img {
    max-height: 115px;
}
.footer-top-right {
    margin-top: -80px;
}
}

@media only screen and (min-width: 992px){ 
.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}
.navbar-nav > li.dropdown > a {
    padding-right: 25px !important;
}
.header-contact li {
    margin: 0 30px;
}
.header-bottom .navbar-nav {
    float: right;
    position: relative;  
    top: 12px;
}
.welcome-form form {
    padding: 0 100px 0px 25px;
}
.inner-pages .welcome-form form {
    padding: 0;
}
.inner-pages .welcome-section::after, .inner-pages .welcome-section::before {
    display: none;
}
.inner-pages .welcome-section {
	background: #fff;
}
.inner-pages .welcome-section .common-head span {
    background: #fff;
}
.footer-top-right {
    position: relative;
    z-index: 9999;
}
.nav.navbar-nav {
    position: relative;
    top: 60px;
}
.footer-address-wrap {
    float: right;
}
}

@media only screen and (min-width: 1920px){
.footer-top-right {
    margin-top: -190px;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1919px){
.footer-top-right {
    margin-top: -135px;
}
}

@media only screen and (min-width: 1366px){
.home .banner-section {
    max-height: 800px;
    overflow: hidden;
}
}
@media only screen and (max-width: 1366px){
.common-head span::before {
	width:50%;
	left: -8%;
}
.common-head span::after {
	width: 100%;
	right: -8%;
}
}