/* common */
* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
body {
	background-color: #fff;
    color: #000;
    font-family: Montserrat, sans-serif;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1.75em;
    text-transform: none;
}
img {
	border:0px;
	display:block;
	max-width: 100%;
}
a,input {
	outline:none;
	text-decoration: none;
	transition: all 0.3s;
}
ul,ol{
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4,h5,h6{
	font-style: normal;
}
h1{
	font-size: 60px;
    font-weight: 500;
    color: #ffffff;
}
h2{
	font-size: 35px;
	font-weight: 700;
    letter-spacing: .025em;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
h2 span{
	color: #b8860b;
}
h3{
	font-size: 28px;
	font-weight: 700;
    letter-spacing: .025em;
    line-height: 1.2em;
    margin-bottom: 20px;
}
h4{
	color: #000000;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: .025em !important;
    line-height: 1.5em !important;
    text-transform: uppercase !important;
    margin-bottom: 20px;
}
h5{
	font-size: 18px;
	line-height: 23px;
	color: #000000;
	font-weight: 700;
}
h6{
	font-size: 16px;
	line-height: 20px;
	color: #000000;
	margin-top: 20px;
}
p{

}
strong{
	font-weight: 700;
}
.container{
	max-width: 1232px;
	padding-left: 15px;
	padding-right: 15px;
}

.btn{
	display: inline-flex;
	align-items: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	border-radius: 0px;
	padding: 18px 70px;
	background: #b8860b;
	line-height: 1em;
    letter-spacing: .25em;
	border: 1px solid #b8860b;
}
.btn:hover{
	background: #fff;
	color: #b8860b;
	border: 1px solid #b8860b;
}

/* section */
#section {
	position:relative;
	display:block;
	width:100%;
	min-height: 100%;
}
/* page wrap */
#page-wrap {
	margin:0 auto;
	width: 100%;
}
/* header */
#header-wrap {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 9999;
	box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.header-bottom{
	background: #ffffff;
	padding: 10px 0px;
}

.header-top {
    padding: 27px 0;
}


.logo {
}
.demo-btn .btn{
	padding: 12px 18px;
	font-size: 12px;
	letter-spacing: .1em;
}
.book-appointment{
	display: none;
}
@media(min-width:992px){
	/* nav block */

	.nav-block {
	}
	.nav-block>ul{
		list-style: none;
		display: flex;
		align-items: center;
		gap: 30px;
		justify-content: end;
	}
	.nav-block>ul>li{
		position: relative;
	}
	.nav-block ul li a{
		font-family: "Montserrat", serif;
	    font-size: 12px;
	    font-weight: 600;
	    color: #000000;
	    white-space: nowrap;
	    display: inline-flex;
	    text-transform: uppercase;
	    position: relative;
	    padding: 18px 2px 17px;
	}
	.nav-block ul>li>a>.item_text{
		position: relative;
	}
	.nav-block ul>li>a>.item_text:before {
	    background-color: currentColor;
	    bottom: 0;
	    content: "";
	    height: 1px;
	    left: 0;
	    position: absolute;
	    width: 100%;
	    bottom: 4px;
	}
	.nav-block ul>li>a>.item_text:before {
	    -webkit-transform-origin: left;
	    -ms-transform-origin: left;
	    transform-origin: left;
	    -webkit-transform: scale(0, 1);
	    -ms-transform: scale(0, 1);
	    transform: scale(0, 1);
	    -webkit-transition: -webkit-transform .1s ease-out 0s;
	    transition: -webkit-transform .1s ease-out 0s;
	    -o-transition: transform .1s ease-out 0s;
	    transition: transform .1s ease-out 0s;
	    transition: transform .1s ease-out 0s, -webkit-transform .1s ease-out 0s;
	}
	.nav-block ul>li:hover>a>.item_text:before {
	    -webkit-transform: scale(1, 1);
	    -ms-transform: scale(1, 1);
	    transform: scale(1, 1);
	    -webkit-transition: -webkit-transform .2s ease-out .1s;
	    transition: -webkit-transform .2s ease-out .1s;
	    -o-transition: transform .2s ease-out .1s;
	    transition: transform .2s ease-out .1s;
	    transition: transform .2s ease-out .1s, -webkit-transform .2s ease-out .1s;
	}
	.nav-block ul>li>ul{
		display: none;
	    left: -33px;
	    /*opacity: 0;
	    overflow: hidden;
	    visibility: hidden;*/
	    position: absolute;
	    top: 100%;
	    z-index: 10;
	    -webkit-transition: top .15s ease-out;
	    -o-transition: top .15s ease-out;
	    transition: top .15s ease-out;
	    margin: 0;
	    padding: 0;
	    z-index: 997;
	    padding: 36px 0;
	    vertical-align: middle;
	    background-color: #ffffff;
	}
	.nav-block ul>li:hover>ul{
		display: block;
		/*opacity: 1;
	    overflow: visible;
	    visibility: visible;*/
	}
	.nav-block ul>li>ul>li{
		margin: 0;
	    padding: 0;
	    position: relative;
	    display: block;
	    float: none;
	    height: auto;
	}
	.nav-block ul>li>ul>li>a{
		font-size: 11px;
	    font-weight: 500;
	    letter-spacing: normal;
	    line-height: 24px;
	    text-transform: normal;
	    display: block;
	    float: none;
	    margin: 0;
	    padding: 6px 50px;
	    -webkit-transition: color .2sease-out;
	    -o-transition: color .2s ease-out;
	    transition: color .2sease-out;
	}
	.nav-block ul>li>ul>li>a>span{
		display: inline-block;
		color: #000000;
	}
	.nav-block ul>li>ul>li>ul{
		display: none;
		position: absolute;
		left: 100%;
		top: -36px;
	}
	.nav-block ul>li>ul>li:hover>ul{
		display: block;
	}
	.nav-block ul>li>ul>li.sub-menu>a:after{
		content: '\f105';
		position: absolute;
		font-weight: 900;
		font-family: "Font Awesome 6 Free";
		right: 20px;
		color: #000000;
	}
	.nav-block ul>li>ul>li>ul>li>a>span{
		color: #b8860b;
	}
	.sub-submenu-toggle,
	.submenu-toggle,
	.hamburger{display: none;}
}

	/* content */
#content-wrap {
	overflow:hidden;
	width: 100%;
	padding-top: 83px;
}

.sub-title{
	color: #b8860b;
    display: block;
    font-family: 'Quentin';
    font-size: 66px;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 0;
    line-height: 1em;
    display: none;
}

/* banner-block */
.banner-block{
	position: relative;
}
.banner-block:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
}
.banner-content{
	height: 480px;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 30px;
	position: relative;
}

/* service-block */
.service-block{
	margin: 80px 0px;
}
.service-block h2{
	color: #b8860b;
}
.service-block h1{
	font-size: 35px;
	font-weight: 700;
    letter-spacing: .025em;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
	color: #b8860b;
}
.service-block .service-content{
	margin-left: 70px;
}
.service-block .flex-row-reverse .service-content{
	margin-right: 78px;
	margin-left: 0px;
}
.service-block ul{
	margin: 0px;
	padding: 0px;
	margin-bottom: 20px;
	padding-left: 20px;
}
.service-block ul strong{
	font-weight: 700;
}
.service-block ul li{
}
.service-block ul li i{
	margin-right: 5px;
	color: #b8860b;
}
.sign{
	position: relative;
}
.sign:before{
	content: '';
	position: absolute;
	color: #b8860b;
	font-family: 'Quentin';
    opacity: 0.2;
    white-space: nowrap;
    z-index: 0;
    -webkit-transition: opacity .3sease-out .2s;
    -o-transition: opacity .3s ease-out .2s;
    transition: opacity .3sease-out .2s;
    font-size: 225px;
    left: -11px;
    top: 64px;
    z-index: -1;
}
.service-block img{
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.service-block img:hover{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
}

/* full-width-block */
.full-width-block{}
.full-width-block ol,
.full-width-block ul{
	margin-bottom: 18px;
	padding-left: 20px;
}
.full-width-block h2,
.full-width-block h3,
.full-width-block h4,
.full-width-block h5{
	color: #b8860b;
}

/* review-block */
.review-block{
	margin: 80px 0px;
}
.review-top{
	display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    padding: 18px 24px 24px;
    background-color: rgba(17, 17, 17, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
}
.google-panel{	
	display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
}
.google-image{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    width: 24px;
    height: 24px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    position: relative;
    left: 0px;
    z-index: 3;
    box-sizing: content-box !important;
}
.google-text{font-weight: 600;}
.review-panel{
	display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.rating{font-weight: 700;}
.star-rating i{color: rgb(252, 191, 2) !important;}
.rating-bottom{line-height: 1.17; text-align: center; font-size: 12px; text-decoration: underline;}
.review-top-btn{
	border-radius: 4px;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    background-color: #4285f4;
    display: inline-block;
    padding: 8px 20px;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-weight: 500;
}

.g-review-item {
    display: block;
    position: relative;
    padding: 24px;
    transition: background-color 0.1sease 0s;
    border-radius: 34px;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    flex-grow: 1;
    background-color: rgba(17, 17, 17, 0.05);
}
.g-review-head {
    display: block;
    min-height: 44px;
    position: relative;
    padding-left: 60px;
    margin-bottom: 5px;
}
.g-review-profile {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}
.g-review-head h5 {
    font-size: 14px;
    font-weight: 700;
}
.g-review-body {
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}
.g-review-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.g-review-body.open p {
    -webkit-line-clamp: inherit;
}
.g-review-body a.g-review-more {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.g-review-body a.g-review-more span {
    font-size: 14px;
    color: #000000;
    text-decoration: underline;
}
.g-review-body a.g-review-more .more {
    display: block;    
}
.g-review-body a.g-review-more .hide {
    display: none;
}
.g-review-body.open a.g-review-more .more {
    display: none;
}
.g-review-body.open a.g-review-more .hide {
    display: block;
}
.g-review-body.open p {
    -webkit-line-clamp: inherit;
}
.g-review-by {
    display: block;
}
.g-review-by h6 {
    font-weight: 400;
    font-size: 12px;
    color: #000000;
}
.g-review-by a {
    width: 100px;
    display: block;
    color: #018aff;
}
.g-review-by a svg path {
    fill: #4285f4;
}
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    width: 32px;
    height: 32px;
    background-color: rgba(17, 17, 17, 0.5) !important;
    box-shadow: rgb(0 0 0 / 30%) 0px 4px 12px 0px;
    color: #ffffff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

/* faq-block */
.faq-block{
	margin: 80px 0px;
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #b8860b;
}
.accordion-item {
    border: 1px solid #b8860b;
}
.accordion-button {
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    background-color: var(--bs-accordion-btn-bg);
}
.accordion-item ul{
	padding-left: 20px;
}

/* featured-services */
.featured-services{
	margin: 80px 0px;
	padding: 60px 0px;
	background-color: rgba(17, 17, 17, 0.05);
}
.featured-services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    width: 100%;
}
.featured-services .icon-box::before {
    content: "";
    position: absolute;
    background: #d9f1f2;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;
}
.featured-services .icon-box:hover::before {
    background: darkgoldenrod;
    top: 0;
    border-radius: 0px;
}
.featured-services .icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
.featured-services .icon img {
    width: 100px;
    height: 100px;
}
.featured-services .icon-box .icon img {
    filter: invert(0.4) sepia(1) saturate(5) hue-rotate(10deg);
}
.featured-services .icon-box:hover .icon img {
    filter: invert(1) sepia(0) saturate(1) hue-rotate(0deg);
}
.featured-services h4{
    font-weight: 700 !important;
    margin-bottom: 15px;
    font-size: 14px !important;
    text-transform: none !important;
}
.featured-services .icon-box:hover h4,
.featured-services .icon-box:hover .description {
    color: #fff;
}

/* our-expertise */
.our-expertise{
	margin: 80px 0px;
}
.our-expertise .tabs-nav{
	display: flex;
	justify-content: end;
}
.nav-link{
	border: 1px solid #b8860b;
	color: #b8860b;
	width: 136px;
	height: 44px;
	border-radius: 22px !important;
	margin: 0px 5px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #b8860b;
}
.nav-link:focus, .nav-link:hover {
    color: #b8860b;
}

/* featured-in */
.featured-in{
	margin: 80px 0px;
	padding: 60px 0px 80px;
	background-color: rgba(17, 17, 17, 0.05);
}
.featued-content{border: 1px solid #b8860b; border-radius: 22px; height: 169px; position: relative; overflow: hidden; width: 99%; left: 0.5%;}
.featued-content .feature-logo {display: flex; justify-content: center; align-items: center; height: 100%}
.featued-content .feature-logo img{height: 107px; width: auto;}
.featued-content .feature-inner{position: absolute; top: 169px; left: 0px; width: 100%; height: 100%; background: #b8860b; padding: 12px; color: #ffffff; display: flex; flex-direction: column;
	justify-content: space-between; transition-property: all; transition-timing-function: cubic-bezier(.4,0,.2,1); transition-duration: .3s;}
.featued-content:hover .feature-inner{
	top: 0px;
}
.featued-content .read-more{text-align: right;}
.featued-content .read-more a{color: #ffffff;}

/* contact-block */
.contact-block{margin: 80px 0px 0px; padding: 80px 0px; background-color: rgba(17, 17, 17, 0.05);}
.contact-block .white{color: #f6f6f6;}
.contact-block .left-img,
.contact-block #map-iframe{
	border: 10px solid #b8860b;
}

/* footer */
footer {
    background: #b8860b;
}
.new-footer .footer-grid {
    padding: 20px 40px 20px !important;
}
.new-footer .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}
.footer-logo {
    margin-bottom: 25px;
}
.new-footer .footer-1 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
}
.new-footer .footer-2 {
    width: 30%;
    padding-left: 15px;
    padding-right: 15px;
}
.new-footer .footer-3 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
}
.new-footer .footer-logo {
    text-align: center;
}
.footer-text {
    font-size: 15px;
    color: #000000;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 600;
}
.grid-item .item-heading {
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
}
footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.new-footer .grid-item .list-item:not(:last-child) {
    margin-bottom: 6px;
}
.grid-item .list-item a {
    display: inline-block;
    color: #000000;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.new-footer .phone a, .new-footer .email a {
    color: #000000;
    margin: 20px 0px;
    display: block;
}
.new-footer .social-link {
    padding-bottom: 20px;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
.social-link a {
    background: hsla(0, 0%, 100%, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.25s ease;
}
.new-footer .social-link a .fa-brands {
    color: #fff !important;
    font-size: 25px;
}
.new-footer .social-link a .fa-brands.fa-facebook {
    color: #1877F2 !important;
}
.new-footer .social-link a .fa-brands.fa-instagram {
    color: #E1306C !important;
}
.new-footer .social-link a .fa-brands.fa-x-twitter {
    color: #000000 !important;
}
.new-footer .social-link a .fa-brands.fa-youtube {
    color: #FF0000 !important;
}
.new-footer .social-link a .fa-brands.fa-linkedin {
    color: #0077B5 !important;
}
.new-footer .social-link a .fa-brands.fa-pinterest {
    color: #E60023 !important;
}
.new-footer .address,
.new-footer .phone{
	font-weight: 600;
}
.copyright {
    background: #000;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    padding: 15px;
    line-height: 1.7;
    border-top: 1px solid #fff;
    font-weight: 600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin: 0px;
}
.copyright a {
    display: inline-block;
    color: #b8860b;
    transition: all 0.25s ease;
}
.scrollToTop {
    display: flex;
    position: fixed;
    right: 30px;
    bottom: 66px;
    text-align: center;
    color: #ffffff;
    border-radius: 26px;
    z-index: 9999;
    font-size: 15px;
    align-items: center;
    background: #1ba14a;
    padding: 6px 13px 6px 7px;
}
.scrollToTop img {
    width: 35px;
}
.nav-2{display: none;}

.no-image {
    display: block;
    background: darkgoldenrod !important;
    height: 44px;
    width: 44px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
	.sub-title {
	    font-size: 54px;
	    line-height: 1em;
	}
	/*h1 {
	    font-size: 54px;
	}*/
	.service-block h1,
	h2 {
	    font-size: 33px;
	    line-height: 1.2em;
	}

	.sign:before {
	    font-size: 190px;
	    left: -11px;
	    top: 64px;
	}
	.service-block .service-content {
	    margin-left: 0px;
	}
	.service-block .flex-row-reverse .service-content {
	    margin-right: 0px;
	    margin-left: 0px;
	}

    .new-footer .footer-1,
    .new-footer .footer-2,
    .new-footer .footer-3 {
        width: 50%;
        padding-bottom: 30px;
    }
}
@media (max-width: 992px) {
	.demo-btn{
		display: none !important;
	}
	.book-appointment{
		display: block;
	}
	.nav-block ul li ul{
		display: none;
        position: relative;
        /*display: block;
        max-height: 0;
        opacity: 0;
        visibility: hidden;*/
        transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
	}
	.nav-block ul li ul.open{
        /*max-height: 500px;*/
        opacity: 1;
        visibility: visible;
	}
    .nav-block ul li a {
	    font-size: 14px;
	    padding: 12px 2px;
	    display: inline-block;
	    color: #b8860b;
	    font-weight: 600;
	}
    .nav-block ul.sub-menu>li>a,
    .nav-block ul>li>a {
	    color: #000000;
	}
    .nav-block ul.sub-submenu>li>a{
	    color: #b8860b;
	}
	.sub-submenu-toggle,
	.submenu-toggle {
        position: absolute;
        right: 10px;
        top: 12px;
        cursor: pointer;
        color: #000000;
        font-size: 50px;
        width: 94%;
        justify-content: end;
        display: flex;
    }
	.sub-submenu-toggle {
        top: 6px;
        font-size: 40px;
    }
	.nav-block .menu {
        /*display: none;*/
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        transition: max-height 1s ease-out;
        gap: 0px;
        max-height: 0;  /* Start with zero height */
	    overflow: hidden;
	    /*transform: translateY(-20px);*/ /* Moves slightly up */
	    transition: max-height 0.5s ease-in-out, opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    }
    .nav-block .menu li{
    	width: 100%;
    	padding-left: 20px;
    	border-bottom: 1px solid #b8860b;
    	position: relative;
    }
    .nav-block .menu li:first-child{
    	border-top: 1px solid #b8860b;
    }
    .nav-block .menu li>ul{
    	list-style: none;
    }
    .nav-block .menu li>ul>li{
    	padding-left: 15px;
    }
    .nav-block .menu li>ul>li>a{
    	padding: 6px 2px;
    	font-size: 12px;
    }
    /*.nav-block .menu.active {
        display: flex;
    }*/
    /*.menu.active {
        max-height: 500px;
    }*/
	.menu.active {
		max-height:100vh;
	    /*max-height: 300px;*/
	    opacity: 1;
	    visibility: visible;
	    transform: translateY(0);
	    overflow: auto;
	}
    .hamburger {
        display: block;
        font-size: 26px;
        color: #000000;
        cursor: pointer;
    }
    .faq-block,
    .review-block,
	.service-block{
		margin: 60px 0px;
	}
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
    .contact-block .left-img{margin-bottom: 40px;}
    .contact-block .white{display: none;}
}
@media (max-width: 767px) {
	.sub-title {
        font-size: 44px;
        line-height: 1em;
    }
    .service-block h1,
    h2 {
        font-size: 28px;
        line-height: 1.2em;
    }
    #content-wrap {
    	padding-top: 78px;
	}
	.banner-content{padding-top: 0px;}
    .btn {
	    font-size: 14px;
	    padding: 18px;
	    letter-spacing: normal;
	}
    .service-block .service-content {
        margin-left: 0px;
        margin-top: 50px;
    }
    .sign:before {
        font-size: 170px;
        left: -11px;
        top: 54px;
    }

    .new-footer .footer-2, .new-footer .footer-3 {
        padding-bottom: 30px;
    }
    .new-footer .footer-1,
    .new-footer .footer-2,
    .new-footer .footer-3 {
        width: 100%;
    }
    .new-footer .grid-item .item-heading {
        margin-bottom: 10px;
    }
    .new-footer .grid-item .list-item:not(:last-child) {
	    line-height: 1.4em;
	}
    .copyright {
        font-size: 12px;
        padding: 13px;
        margin-bottom: 48px !important;
    }
    .new-footer .footer-grid {
	    padding: 40px 10px !important;
	}
	.scrollToTop {
	    bottom: 118px;
	}
    .nav-2 {
        box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px, rgb(0 0 0 / 20%) 0px -3px 0px inset;
        background-color: #b8860b;
        bottom: 0;
        position: fixed;
        overflow: hidden;
        width: 100vw;
        z-index: 2;
        display: block;
    }
    .nav-bottom {
        display: flex;
        justify-content: space-between;
        margin: auto;
        width: 100%;
    }
    .ic {
        box-shadow: rgb(0 0 0 / 18%) 0px 2px 4px;
        padding: 10px 0;
        font-size: 19px;
        color: #f0f2f5;
        width: 25%;
        text-align: center;
    }
    .nav-link {
	    width: 100px;
	    height: 40px;
	    font-size: 12px !important;
    	padding: 5px !important;
	}	
	.our-expertise .tabs-nav{
		justify-content: start;
	}
}
@media (max-width: 560px) {
	.review-top{
		flex-direction: column;
	}
	.google-panel{
		margin-bottom: 20px;
	}
}