/**
 * =================================================================== 
 *  Squaare Stylesheet
 *  01-12-2018
 * =================================================================== 
 */


/** 
 * ===================================================================
 * 01. Base style overrides (Reset)
 *
 * ------------------------------------------------------------------- 
 */
 
*, *:before, *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html, body, div, object, iframe, blockquote, ol, ul, li, form, fieldset, legend, label, table, header, footer, nav, section { 
	margin: 0; 
	padding: 0;
	border: 0;
} 
ol, ul { 
	list-style: none; 
}
header, footer, nav, section, article, hgroup, figure {
	display: block;	
}
legend {
	display: none;
}
:focus {
    outline: none;
}
.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 0;
}
.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
}
.btn.active.focus, 
.btn.active:focus, 
.btn.focus, 
.btn:active.focus, 
.btn:active:focus, 
.btn:focus {
    outline: none;
    outline-offset: -2px;
}
.btn.active, .btn:active {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #333;
}

/**
 * Links
 * -------------------------------------------------------------------
 */
 
a:visited,a:hover, a:focus, a:active {
	outline: 0;
	text-decoration: none;
}
a:visited,a:focus, a:active, .btn:focus {
    color: #333;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.animated, .appear-animation {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
.appear-animation-visible {
    opacity: 1;
}
.fixed-menu {
	display: none;
}

/** 
 * ===================================================================
 * 02. Typography & general theme styles
 *
 * ------------------------------------------------------------------- 
 */
 
html {
    font-size: 15.5px;
    line-height: 26px;
}
p{
	color: #333333;
}
 body { 
	font-family: 'Lato', sans-serif;
	color: #333333;
	background: #FFF;
	overflow-x: hidden;
	font-weight: 400;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	outline: 0;
}
.flex {
	display: flex;
	flex-wrap: wrap;
} 
.active a {
    color: #EB7A20 !important;
}
.p-0 {
    padding: 0!important;
}
.ptb-10{
	padding: 10px 0;
}
.ptb-20{
	padding: 20px 0;
}
.ptb-30{
	padding: 30px 0;
}
.ptb-40{
	padding: 40px 0;
}
.ptb-50{
	padding: 50px 0;
}
.ptb-60{
	padding: 60px 0;
}
.ptb-70{
	padding: 70px 0;
}
.ptb-90{
	padding: 90px 0;
}
.ptb-100{
	padding: 100px 0;
}
.ptb-120{
	padding: 120px 0;
}
.pb-10{
	padding-bottom: 10px;
}
.pb-20{
	padding-bottom: 20px;
}
.pb-30{
	padding-bottom: 30px;
}
.pb-50{
	padding-bottom: 50px;
}
.pb-60{
	padding-bottom: 60px;
}
.pb-70{
	padding-bottom: 70px;
}
.pb-80{
	padding-bottom: 80px;
}
.pb-90{
	padding-bottom: 90px;
}
.pb-100{
	padding-bottom: 100px;
}
.pt-60{
	padding-top: 60px;
}
.pt-100{
	padding-top: 100px;
}
.ptb-70 {
    padding: 70px 0;
}
.mtb-20{
	margin: 20px 0;
}
.mtb-30{
	margin: 30px 0;
}
.mtb-40{
	margin: 40px 0;
}
.mtb-50{
	margin: 50px 0;
}
.mtb-60{
	margin: 60px 0;
}
.mtb-70{
	margin: 70px 0;
}
.mtb-80{
	margin: 80px 0;
}
.mtb-90{
	margin: 90px 0;
}
.mtb-100{
	margin: 100px 0;
}
.mt-10{
	margin-top: 10px;
}
.mt-20{
	margin-top: 20px;
}
.mt-30{
	margin-top: 30px;
}
.mt-35{
	margin-top: 35px;
}
.mt-40{
	margin-top: 40px;
}
.mt-50{
	margin-top: 50px;
}
.mt-60{
	margin-top: 60px;
}
.mt-70{
	margin-top: 70px;
}
.mt-80{
	margin-top: 80px;
}
.mt-90{
	margin-top: 90px;
}
.mt-100{
	margin-top: 100px;
}
.mt-150{
	margin-top: 150px;
}
.mb-20{
	margin-bottom: 20px;
}
.mb-30{
	margin-bottom: 30px;
}
.mb-40{
	margin-bottom: 40px;
}
.mb-50{
	margin-bottom: 50px;
}
.mb-60{
	margin-bottom: 60px;
}
.mb-80{
	margin-bottom: 80px;
}
.mb-90{
	margin-bottom: 90px;
}
.mb-100{
	margin-bottom: 100px;
}
.black {
	color: #333333;
}
.white {
	color: #fff;
}
.center {
    text-align: center;
}
.gray-bk {
	background-color: #F5F5F5;
}
.btn.focus, .btn:focus, .btn:hover {
    color: #333;
    text-decoration: none;
}
.vertical-align {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/** 
 * ===================================================================
 * 03. Menu
 *
 * ------------------------------------------------------------------- 
 */
 
header {
    z-index: 1;
    position: fixed;
    top: 0;
    width: 100%;
    transition: all .5s ease-in-out;
    background: #fff;
}
.header.stickyHeader {
    z-index: 99;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 33px -4px rgb(181, 181, 181);
}
.navbar {
    border-radius: 4px;
    margin-top: 0;
    min-height: 39px;
    margin-bottom: 10px;
    border: none;
}
.navbar-toggle .icon-bar {
    background: #EB7A20;
}
.navbar-toggle {
    margin-top: 13px;
}
.nav>li>a {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    padding: 25px 0 20px;
}
.nav>li.active>a {
    color: #EB7A20;
    font-weight: 600;
    border-top: 4px solid #EB7A20;
}
.nav>li.current_page_item>a {
    color: #EB7A20;
    font-weight: 600;
    border-top: 4px solid #EB7A20;
}

.nav>li.active.open>a {
    border-top: 4px solid #EB7A20;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    color: #EB7A20;
    background-color: #fff;
}
.nav i {
	font-size: 19px;
    padding-right: 5px;
}
.navbar-nav {
    float: left;
    margin: 0;
    text-align: right;
    width: 67%;
    margin-top: 0;
}
.navbar-nav>li {
    float: none;
    display: inline-block;
    padding: 0 28px;
}
.navbar-brand {
    height: auto;
    padding: 0;
    font-size: 18px;
    margin-top: 10px;
}
.top-contact {
    width: 14%;
    float: right;
    margin-top: 29px;
    font-family: 'Roboto', sans-serif;
}
.top-contact a {
    font-size: 12px;
    font-weight: 600;
    color: #EB7A20;
    text-align: right;
    text-transform: uppercase;
    border: 2px solid #EB7A20;
    border-radius: 3px;
    padding: 10px 18px;
}
.navbar-collapse {
    padding-right: 0;
    padding-left: 0;
}
.nav>li>a:focus, .nav>li>a:hover {
    background-color: transparent;
}
.nav>li>a:hover {
    color: #EB7A20;
}
.top-contact a:hover {
    color: #fff;
    text-decoration: none;
    background: #EB7A20;
}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: transparent;
    border-color: transparent;
}
.dropdown-menu {
    top: 115%;
    padding: 0;
}
.dropdown-menu>li>a {
    padding: 8px 20px;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: #EB7A20;
    text-decoration: none;
    background-color: transparent;
}
.navbar-header {
    padding-top: 5px;
}
.navbar-nav>li>.dropdown-menu {
    padding: 8px 0;
}


/** 
 * ===================================================================
 * 04. Header
 * ------------------------------------------------------------------- 
 */
 
.home-header {
	background-image: url(../images/background/home-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    margin-top: 78px;
}
.main-topsection {
    position: absolute;
    left: 0;
    top: 128px;
}
.bannersection .main-title {
    margin-bottom: 30px;
}
.main-title {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 48px;
    line-height: 56px;
    font-weight: 600;
}
.main-title span {
    color: #EB7A20;
}
.main-subtitle {
    color: #fff;
    font-size: 55px;
    line-height: 63px;
    margin-bottom: 20px;
    font-weight: 100;
}
.home-header .main-subtitle {
    line-height: 59px;
}
.quick-search .form-group {
    margin-bottom: 22px;
}
.quick-search ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #999999 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
}
.quick-search :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999999 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
}
.quick-search ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999999 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
}
.quick-search :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999999 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
}
.quick-search ::-ms-input-placeholder { /* Microsoft Edge */
    color: #999999 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
}
.quick-search ::placeholder { /* Most modern browsers support this now. */
    color: #999999 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
}
.quick-search .form-control {
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: 100%;
    padding: 6px 18px;
    color: #333;
    width: 80%;
}
.quick-search  .form-inline .form-group {
    width: 28%;
    border-left: 1px solid #cccccc;
    border-radius: 4px;
}	
.btn {
    background: #000;
    color: #fff;
    padding: 14px 20px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.1rem;
    border-radius: 0;
    transition: all 0.3s ease 0s;
    font-family: 'Poppins', sans-serif;
}
.btn-angle {

    display: inline-block;

    border: 0;

    background-color: #EB7A20;

    font-weight: 500;

    line-height: 22.24px;

    letter-spacing: 1px;

    position: relative;

}
.wpforms-submit.btn.btn-angle {
    display: inline-block;
    border: 0;
    background-color: #EB7A20!important;
    font-weight: 500;
    line-height: 22.24px;
    letter-spacing: 1px;
    position: relative;
}
.btn-angle:hover {
	background: rgba(235, 122, 32, 0.83);
	color: #fff;
}
.right-popup .btn-angle:before {
    background-image: url(../images/extra/arrow-nav-white.png);
    background-size: 19px 7px;
    display: inline-block;
    width: 19px;
    height: 7px;
    content: "";
    top: 20px;
    right: 22px;
    position: absolute;
}
.right-popup .submit-button .btn {
    padding: 12px 50px 12px 35px;
}

/** 
 * ===================================================================
 * 05. Our Services
 * ------------------------------------------------------------------- 
 */
 
.small-title {
    color: #EB7A20;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
}
.big-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
}
.service-block {
    text-align: center;
}
.services-listing {
    margin-top: 12px;
}
.service-block h6 {
    font-size: 16px;
    line-height: 25px;
    color: #333;
    padding-top: 18px;
}
.know-more a {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 59px;
    color: #1d9bdc;
    position: relative;
    font-weight: 600;
}
.know-more a:hover {
    color:  #EB7A20;
}
.know-more a:after {
    background-image: url(../images/extra/arrow.png);
    background-size: 19px 7px;
    display: inline-block;
    width: 19px;
    height: 7px;
    content: "";
    top: 7px;
    right: -32px;
    position: absolute;
}


/** 
 * ===================================================================
 * 06. Our Work
 * ------------------------------------------------------------------- 
 */


.nav-pills>li.active>a:after {
    border-bottom: 3px solid #EB7A20;
    width: 100%;
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
}
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
    background-color: transparent;
    /*border-bottom: 3px solid #EB7A20;*/
    border-radius: 0;
    color: #EB7A20 !important;
    border-top: 0;
}
/* bootstrap hack: fix content width inside hidden tabs */
.tab-content > .tab-pane,
.pill-content > .pill-pane {
    display: block;     /* undo display:none          */
    height: 0;          /* height:0 is also invisible */ 
    overflow: hidden; /* no-overflow                */
}
.tab-content > .active,
.pill-content > .active {
    height: auto;       /* let the content decide it  */
} /* bootstrap hack end */
.nav-pills {
    width: 61%;
    border-bottom: 1px solid #ccc;
}
.nav-pills a img {
    display: block;
    margin: 0 auto 10px;
}
.nav-pills>li {
    margin: 0 70px;
}
.pills-icon {
    background: url(../images/extra/squaare-icons-sprite.png) no-repeat;
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto 6px;
}
.pills-icon.residence {
    background-position: 3px 4px;
}
.nav-pills>li.active>a .pills-icon.residence {
    background-position: 3px -34px;
}
.pills-icon.office {
    background-position: -32px 4px;
}
.nav-pills>li.active>a .pills-icon.office {
    background-position: -32px -34px;
}
.pills-icon.others {
    background-position: -72px 4px;
}
.nav-pills>li.active>a .pills-icon.others {
    background-position: -72px -34px;
}
.nav-pills>li+li {
    margin-left: 80px;
}
.nav.nav-pills>li>a {
    padding: 10px 4px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    position: relative;
}
.tab-content {
    margin-top: 50px;
}
.tab-content .slick-slide {
    margin: 0 16px;
}
.work-detail {
    background-color: #fff;
    margin-top: -24px;
    z-index: 99999;
    position: relative;
    margin: -24px 16% 20px;
    text-align: center;
    box-shadow: 0 0 33px -4px rgb(181, 181, 181);
     -webkit-box-shadow: 0 0 33px -4px rgb(181, 181, 181);
    padding: 10px 5px;
    border-radius: 2px;
}
.work-detail h5 {
    font-size: 16px;
    line-height: 26.22px;
}
.work-detail a {
    font-size: 14px;
    color: #3399ff !important;;
    line-height: 26.22px;
}
.tab-section {
    text-align: -webkit-center;
}
.nav-blank {
    display: inline-block;
    border: 0;
    background-color: transparent;
    transition: all 0.3s ease 0s;
    font-weight: 600;
    line-height: 22.24px;
    letter-spacing: 1px;
    border: 2px solid #333;
    position: relative;
    color: #333;
    padding-right: 60px;
}
.nav-blank:hover {
	color: #EB7A20;
}
.nav-blank:before {
    background-image: url(../images/extra/arrow-nav.png);
    background-size: 19px 7px;
    display: inline-block;
    width: 19px;
    height: 7px;
    content: "";
    top: 22px;
    right: 30px;
    position: absolute;
}
.quick-link {
    margin-top: 40px;
}
.work-slider .slick-slide img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 196px;
}



/** 
 * ===================================================================
 * 07. How It Works
 * ------------------------------------------------------------------- 
 */

.how-it-works .row {
    background-image: url(../images/background/design-process.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-color: #fff;
}
.process-block {
    text-align: center;
    clear: both;
    margin-bottom: 34px;
    height: 90px;
}
.process-block:last-child {
    margin-bottom: 0;
}
.process-block img {
    float: left;
    margin-left: -55px;
    margin-right: 40px;
}
.process-block h5 {
    font-size: 22px;
    float: left;
    line-height: 42px;
    margin-top: 22px;
}
.left-container {
    padding: 87px 0 50px;
}
.left-container p {
    font-size: 60px;
    color: #fff;
    font-weight: 300;
    line-height: 65px;
    margin-top: 95px;
}
.left-container p span {
    font-weight: 600;
}
.right-container {
    padding: 70px 0px;
}
/*.right-image img {
    margin-top: -50px;
    margin-left: -15px;
}*/
.right-image img {
 /* margin-top: -50px; */
    margin-left: -15px;
    width: 70%;
}
.creative-left {
    padding: 87px 30px 0 0;
}
.creative-left h3 {
    font-size: 22px;
    line-height: 26.22px;
    margin-bottom: 20px;
    color: #666;
}
.creative-left h3 span {
    color: #EB7A20;
    text-transform: uppercase;
}
.creative-left p {
    color: #666;
    line-height: 26.22px;
    font-size: 14px;
}
.creative-left .quick-link {
    margin-top: 25px;
}



/** 
 * ===================================================================
 * 08. Testimonial
 * ------------------------------------------------------------------- 
 */
.testimonial {
	background-color: #f6f6f6;
}
.testimonial .big-title {
    margin-bottom: 10px;
}
.testimonial h3 {
    text-align: center;
    font-size: 20px;
}
.testimonial h3 span {
    color: #EB7A20;
    font-weight: 600;
    font-size: 22px;
}
.testimonial-slider {
    margin-top: 45px;
}
.testimonial-slider .slick-slide img {
    display: inline-block;
}
.testi-content {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    width: 770px;
    margin: -14% auto 20px;
    background-color: #fff;
    box-shadow: 0 0 33px -4px rgb(181, 181, 181);
    -webkit-box-shadow: 0 0 33px -4px rgb(181, 181, 181);
    padding: 10px 60px 25px;
    border-radius: 2px;
    position: relative;
}
.testi-content p {
    font-size: 13.99px;
    line-height: 26.2px;
    color: #666666;
}
.testi-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 18px;
    line-height: 26.2px;
}
.testi-content h5 {
    font-size: 14px;
    color: #666;
    line-height: 26.2px;
    margin-bottom: 10px;
}
.testi-content img {
    margin-top: -95px;
}
.slick-prev,
.slick-next {
    font-size: 0;
    position: absolute;
    bottom: 20px;
    color: #d5122f;
    border: 0;
    background: none;
    z-index: 1;
}
.slick-prev {
    left: 20px;
}
.slick-prev:after {
	content: "\f104";
    font: 50px/1 'FontAwesome';
    color: #999;
}
.slick-next {
    right: 20px;
    text-align: right;
}

.slick-next:after {
	content: "\f105";
    font: 50px/1 'FontAwesome';
    color: #999;
}
.slick-prev:hover:after,
.slick-next:hover:after {
    color: #7e7e7e;
}
.slick-next:before,
.slick-prev:before {
    content: none !important;
}
.slick-prev, .slick-next {
    top: 42%!important;
}
.slick-dots li button {
    background: url(../images/extra/bullet.png) !important;
    text-indent: -9999px;
    overflow: hidden;
    background-repeat: no-repeat;
    width: auto !important;
    height: auto !important;
}
.slick-dots li.slick-active button:before {
    background: url(../images/extra/bullet-active.png) !important;
    background-repeat: no-repeat;
    width: 10px !important;
    height: 10px !important;
}

/** 
 * ===================================================================
 * 9. CTA
 * ------------------------------------------------------------------- 
 */
.counters {
    position: relative;
    height: 400px;
}
.counter {
	background-image: url(../images/extra/rectangle-box.png);
    background-size: auto;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    padding: 30px 20px; 
}
.counter.one {
    top: 0;
}
.counter.two {
    top: 140px;
}
.counter.three {
    bottom: 0;
}
.counter img {
    float: left;
}
.counter-data {
    float: left;
    margin-left: 22px;
    margin-top: -6px;
}
.counter-data h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 38px;
    color: #EB7A20;
}
.counter-data h6 {
    font-size: 14px;
    line-height: 26.2px;
    color: #666;
}
.cta-details {
    padding: 20% 10px 20% 30px;
}
.cta-details h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 50.3px;
}
.cta-details h4 {
	font-size: 22px;
	line-height: 22.24px;
	margin-bottom: 20px;
}
.emergency-no a {
	font-size: 30px;
	line-height: 59px;
	color: #EB7A20;
	font-weight: 600;
}
.emergency-no span {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	line-height: 59px;
	color: #333;
}
.emergency-no i {
    font-weight: 900;
    margin-right: 8px;
}

/** 
 * ===================================================================
 * 10. Footer
 * ------------------------------------------------------------------- 
 */
 
footer {
	background-color: #F5F5F5;
}
.footer-address,
.footer-email,
.footer-number {
	position: relative;
    padding-left: 48px;
    margin-bottom: 25px;
}
.footer-address:before {
    background-image: url(../images/extra/location.png);
    background-size: 20px 25px;
    display: inline-block;
    width: 20px;
    height: 25px;
    content: "";
    top: 12px;
    left: 0;
    position: absolute;
}
.footer-address h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 35px;
}
.footer-address p {
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    color: #666;
}
.footer-email:before {
    background-image: url(../images/extra/email.png);
    background-size: 26px 18px;
    display: inline-block;
    width: 26px;
    height: 18px;
    content: "";
    top: 5px;
    left: 0;
    position: absolute;
}
.footer-email p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 28px;
}
.footer-number:before {
    background-image: url(../images/extra/call.png);
    background-size: 23px 23px;
    display: inline-block;
    width: 23px;
    height: 23px;
    content: "";
    top: 2px;
    left: 0;
    position: absolute;
}
.footer-number p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 28px;
}
.quick-links ul {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
}
.quick-links a,
.footer-email a,
.footer-number a {
    color: #333333;
}
.quick-links a {
    font-weight: 400;
}
.quick-links a:hover,
.footer-email a:hover,
.footer-number a:hover {
    color: #EB7A20;
}
.extra-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 43px;
}
.extra-info p span {
	font-weight: 700;
}
.copyright {
	position: relative;
}
.copyright p {
    padding-left: 35px;
    font-size: 14px;
    line-height: 38px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0; 
    color: #333;
}
.copyright p:before {
    background-image: url(../images/extra/copyright.png);
    background-size: 22px 22px;
    display: inline-block;
    width: 22px;
    height: 22px;
    content: "";
    top: 8px;
    left: 0;
    position: absolute;
}
.copyright-section {
	padding-top: 40px;
}
.custom-icon {
   cursor: pointer;
   display: flex;
   width: 34px;
   height: 34px;
   color: #666666;
   font-size: 16px;
   border-radius: 25vw;
   overflow: hidden;
   background-size: cover;
   border: 2px solid #666666;
   opacity: 0.8;
   font-weight: 600;
   transition: background 0.5s, color 0.5s, opacity 0.5s, border 0.5s;
}
.custom-icon::before {
   width: 100%;
   display: flex;
   flex-flow: row wrap;
   justify-content: center;
   align-items: center;
}
.custom-icon:hover {
   opacity: 1;
   color: #EB7A20;
   border-color: #EB7A20;
}
.icon-wrapper {
   display: flex;
   flex-flow: row wrap;
   justify-content: center;
   align-items: center;
   padding-right: 20px;
}
.icon-wrapper a{
        transform: translateY(-2px);
    -moz-transition: ease-in-out 0.25s;
    -webkit-transition: ease-in-out 0.25s;
    -ms-transition: ease-in-out 0.25s;
    -o-transition: ease-in-out 0.25s;
    transition: ease-in-out 0.25s;
}
.icon-wrapper a img:hover{
        transform: translateY(-2px);
    -moz-transition: ease-in-out 0.25s;
    -webkit-transition: ease-in-out 0.25s;
    -ms-transition: ease-in-out 0.25s;
    -o-transition: ease-in-out 0.25s;
    transition: ease-in-out 0.25s;
}
.btn-blank {
    background-color: transparent;
    transition: all 0.3s ease 0s;
    line-height: 22.24px;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 600;
    color: #EB7A20 !important;
    text-transform: uppercase;
    border: 2px solid #EB7A20;
    border-radius: 3px;
    padding: 7px 30px;
}
.btn-blank:hover {
	background-color: #EB7A20;
    color: #fff;
}    
.btn.btn-blank.focus, 
.btn.btn-blank:focus {
    color: #EB7A20;
}
.social-icons {
    background: url(../images/extra/squaare-icons-sprite.png) no-repeat;
    display: inline-block;
    width: 38px;
    height: 38px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.social-icons.house {
    background-position: 2px -76px;
}
.icon-wrapper a:hover .social-icons.house {
    background-position: 2px -120px;
}
.social-icons.home {
    background-position: -42px -76px;
}
.icon-wrapper a:hover .social-icons.home {
    background-position: -42px -120px;
}
.social-icons.facebook {
    background-position: -86px -76px;
}
.icon-wrapper a:hover .social-icons.facebook {
    background-position: -86px -120px;
}
.social-icons.facebook {
    background-position: -86px -76px;
}
.icon-wrapper a:hover .social-icons.facebook {
    background-position: -86px -120px;
}
.social-icons.gplus {
    background-position: -129px -76px;
}
.icon-wrapper a:hover .social-icons.gplus {
    background-position: -129px -120px;
}
.social-icons.twitter {
    background-position: -172px -76px;
}
.icon-wrapper a:hover .social-icons.twitter {
    background-position: -172px -120px;
}
.social-icons.linkedin {
    background-position: -215px -76px;
}
.icon-wrapper a:hover .social-icons.linkedin {
    background-position: -215px -120px;
}

/** 
 * ===================================================================
 * 11. Popup
 * ------------------------------------------------------------------- 
 */
.popup-small {
    width: 800px;
    border-radius: 6px;
} 
.small-popup {
	background: url(../images/popup/header-popup.jpg);
    height: 400px;
}
.left-popup {
    padding: 0 !important;
}
.right-popup {
    padding: 112px 50px 20px;
}
.right-popup p {
    font-size: 16px;
    color: #666666;
}
.fancybox-slide>* {
    padding: 0 !important;
}
.pop-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 48px;
    line-height: 58px;
}
.pop-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #EB7A20;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: #fff;
    -webkit-animation: fill 0.5s infinite alternate;
}
@-webkit-keyframes fill {
	from { -webkit-text-fill-color: #EB7A20; }
	to { -webkit-text-fill-color: #EB7A20; }
}
.right-popup h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 35px;
    color: #333;
    margin-bottom: 18px;
    line-height: 40px;
}
.right-popup .form-control {
    height: 40px;
    padding-left: 18px;
}
.right-popup .form-group {
    padding-right: 20px !important;
    margin-bottom: 30px;
}
.right-popup form {
    margin: 40px 0;
}
.form-control:focus {
    border-color: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.submit-button {
    margin-top: 25px;
}
.submit-button .btn {
    padding: 10px 50px 10px 35px;
}
.fancybox-close-small:after {
    font-size: 45px !important;
    font-family: 'Lato', sans-serif !important;
    color: #333 !important;  
    font-weight: 500 !important;
}
.fancybox-close-small {
    top: 7px !important;
    right: 7px !important;
}
.fancybox-close-small:hover:after {
    color: #666 !important;
    background: transparent !important;
}
.fancybox-close-small:focus:after {
    outline: none !important;
}
.popup-big {
    width: 1200px;
}

/** 
 * ===================================================================
 * 12. About Us
 * ------------------------------------------------------------------- 
 */
 
.internal-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 50.3px;
    margin-bottom: 58px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}
.internal-title.btm-border:after {
    border-bottom: 4px solid #EB7A20;
    width: 20%;
    position: absolute;
    content: "";
    bottom: -30px;
    left: 2px;
}
.internal-title.btm-border.center:after {
    bottom: -19px;
    width: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
} 
.header-wrapper {
    position: relative;
}
.about-header {
    background-image: url(../images/banner/about-banner.jpg);
    height: 448px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 78px;
    background-position: bottom;
}
.about-list p {
    color: #666;
    line-height: 26.22px;
    margin-bottom: 25px;
}
.about-list p:last-child {
    margin-bottom: 0;
}
.internal-title span {
    font-size: 24px;
    font-weight: 400;
}
.about-image img {
    margin-top: -120px;
}
.bottom-bike {
    margin-top: 25%;
}
.about-right .service-list {
    margin-top: 52px;
}
.about-right {
    padding: 40px 15px 35px 60px;
}
.our-service .about-right {
    padding: 20px 15px 35px 60px;
}
.about-right .service-list li {
    line-height: 27px;
    padding: 5px 0 0 25px;
}
.about-right p {
    color: #666;
    line-height: 26.22px;
    margin-bottom: 25px;
}
.about-parts {
    padding: 80px 0 0;
}
.about-mobile-image {
	display: none;
}
.why-us .row {
    background-image: url(../images/fillers/gray-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 43% 100%;
    background-color: #fff;
    padding-bottom: 80px;
}
.our-service h3 {
    font-size: 28px;
    line-height: 35.22px;
    margin-bottom: 50px;
}

/** 
 * ===================================================================
 * 13. Background Abstract
 * ------------------------------------------------------------------- 
 */
.our-work,
.our-services,
.how-it-works,
.creative-brain {
    position: relative;
}
.our-work:before {
    content: "";
    background-image: url(../images/abstract/ourwork-abstract.jpg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: inline-block;
    height: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}
.our-services:before {
    content: "";
    background-image: url(../images/abstract/design-abstract.jpg);
    position: absolute;
    right: 0;
    top: 0;
    width: 299px;
    height: 578px;
    background-repeat: no-repeat;
    z-index: -1;
}
.how-it-works:before {
    content: "";
    background-image: url(../images/abstract/designprocess-abstract.jpg);
    position: absolute;
    right: 0;
    top: -35px;
    width: 177px;
    height: 461px;
    background-repeat: no-repeat;
}
.creative-brain:before {
    content: "";
    background-image: url(../images/abstract/brain-abstract.jpg);
    position: absolute;
    right: 0;
    bottom: 0;
    width: 325px;
    height: 237px;
    background-repeat: no-repeat;
}

/** 
 * ===================================================================
 * 14. Contact Us
 * ------------------------------------------------------------------- 
 */
 
.contact-header {
    background-image: url(../images/banner/contact-banner.jpg);
    height: 448px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 78px;
    background-position: bottom;
}
.contact-header .main-title {
    color: #fff;
}
.contact-header .main-topsection {
    top: 155px;
}
.social-connect {
    margin-top: 60px;
}
.contact-location {
    background-color: #fff;
    padding: 40px 35px 50px !important;
    margin-top: 23%;
}
.contact-location .internal-title {
    margin-bottom: 30px;
}
.contact-container {
	padding: 50px 0 0;
	position: relative;
}
.contact-container:before {
    content: url(../images/fillers/contact-us-right.jpg);
    position: absolute;
    right: 0;
    top: 0;
}
.contact-map {
    height: 470px;
    margin-top: 0;
}
.contact-form {
    position: relative;
}
.form-section {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    width: 700px;
    position: absolute;
    top: -90px;
    left: 50%;
    margin-right: -50%;
    transform: translateX(-50%);
}
.form-section .internal-title {
    margin-bottom: 30px;
}
.form-section .form-control {
    height: 45px;
    padding-left: 16px;
}
.form-section textarea.form-control {
    height: auto;
}
.address-details .footer-address:before {
    background-image: url(../images/extra/contact-location.png);
}
.address-details .footer-email:before {
    background-image: url(../images/extra/contact-email.png);
}
.address-details .footer-number:before {
    background-image: url(../images/extra/contact-call.png);
}
.form-section .submit-button .btn {
    padding: 10px 40px 10px 25px;
}



/** 
 * ===================================================================
 * 15. Services
 * ------------------------------------------------------------------- 
 */

.service-header {
	background-image: url(../images/banner/service-banner.jpg);
    height: 635px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.border-btm {
    border-bottom: 4px solid #EB7A20;
    width: 25%;
}
.why-us.service .row {
    padding-bottom: 0px;
}
.service-type {
    background-image: url(../images/banner/service-type-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 90px 0 40px;
}
.type-section {
	text-align: center;
	min-height: 220px;
}
.type-section h6 {
    color: #fff;
    font-size: 16px;
    margin-top: 16px;
}
.type-section img {
	margin: 0 auto;
	display: block;
}
.type-slider {
    display: none !important;
}


/** 
 * ===================================================================
 * 16. Project
 * ------------------------------------------------------------------- 
 */
 
.project-header {
    height: 550px;
    position: relative;
    margin-top: 78px;
}
.project-header img {
    height: 550px;
    position: relative;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 550px;
}
.about-header .container,
.faq-header .container,
.contact-header .container {
    position: relative;
    height: -webkit-fill-available;
}
.photos-link {
    position: absolute;
    bottom: 8%;
}
.photos-link .nav-blank {
    color: #EB7A20;
    border-color: #EB7A20;
    background-color: #fff;
    padding-right: 30px;
    padding-left: 60px;
}
.photos-link .nav-blank:before {
    background-image: url(../images/extra/gallery-icon.png);
    background-size: 22px 22px;
    display: inline-block;
    width: 22px;
    height: 22px;
    content: "";
    top: 13px;
    left: 26px;
    position: absolute;
}
.project-details h6 {
    display: inline-block;
    margin-right: 32px;
    font-size: 14px;
    line-height: 26.22px;
    position: relative;
    color: #666;
    padding-left: 25px;
}
.project-location:before {
    background: transparent url(../images/extra/project-location.png) scroll 0 0 no-repeat;
    content: "";
    width: 29px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    background-position: 1px 4px;
}
.project-area:before {
    background: transparent url(../images/extra/project-area.png) scroll 0 0 no-repeat;
    content: "";
    width: 29px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    background-position: 1px 4px;
}
.project-content p {
    color: #666;
    line-height: 26.22px;
    margin-bottom: 25px;
}
.project-content p:last-child {
    margin-bottom: 0;
}
.project-details {
    margin-bottom: 20px;
}
.project-contact .internal-title {
    margin-bottom: 30px;
    font-size: 30px;
}
.project-contact {
    background-color: #f5f5f5;
    padding: 40px 15px;
    border: 1px solid #ccc;
}
.project-contact .form-control {
    height: 45px;
    padding-left: 16px;
    font-size: 15px;
}
.project-contact .form-group {
    margin-bottom: 25px;
}
.project-contact .submit-button {
    margin-top: 18px;
}
.project-contact .submit-button .btn {
    padding: 14px 20px;
}
.our-project .big-title {
    margin-bottom: 20px;
}
.gallery-popup .small-title {
    font-size: 14px;
    text-transform: uppercase;
}
.gallery-popup .big-title {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 0px;
    color: #fff;
}
.gallery-popup {
    background-color: transparent !important;
}
.gallery-popup .fancybox-close-small:after {
    color: #fff !important;
}
.slider-for.slick-initialized.slick-slider {
    margin-top: 30px;
}
.modal-open {
    overflow: auto !important;
}
body.modal-open {
    padding-right: 0 !important;
}
.modal-dialog {
    width: 95% !important;
    margin: 30px auto;
    height: 100%;
}
.modal-open .modal {
    overflow-y: hidden !important;
}
.modal-content {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
    background-color: transparent !important;
    height: 100%;
    margin: 0 auto;
    width: 800px !important;
}
.close-icon.pointer {
    color: #fff;
    font-size: 60px;
    float: right;
    line-height: 30px;
    cursor: pointer;
}
.modal-content .slick-next:after,
.modal-content .slick-prev:after {
    font: 90px/1 'FontAwesome';
    color: #fff;
}
.modal-content .slick-next {
    right: -25%;
}
.modal-content .slick-prev {
    left: -25%;
}
.middle-content {
    margin: 12px 0 20px;
}
.slider-count {
    float: left;
    color: #fff;
    margin-top: 20px;
}
.slider-contact {
    float: right;
}
.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .8 !important;
}
.slider-for .slick-slide img {
    margin:0 auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 518px;
}
.slider-nav .slick-slide img {
    object-fit: cover;
    object-position: center;
    width: 100px;
    height: 67px;
}
.slider-contact a {
    color: #fff;
}


/** 
 * ===================================================================
 * 17. FAQ Listing
 * ------------------------------------------------------------------- 
 */

.faq-header {
	background-image: url(../images/banner/faq-listing-banner.jpg);
    height: 448px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 78px;
} 
.faq-header .main-topsection {
    top: 155px;
}
.panel-heading.accordion-toggle:after {
	font-family: FontAwesome;
    content: "\f077";
    vertical-align: middle;
    position: absolute;
    color: #666;
    right: 22px;
    top: 25px;
    font-size: 16px;
}
.panel-heading.accordion-toggle.collapsed:after {
	content: "\f078"; 
	color: #666; 
}
.panel-heading:hover {
    cursor: pointer;
}
.panel-heading:hover h4 {
    text-decoration: underline;
}
.faq-list {
    position: relative;  
}
.faq-list .panel-default {
    border-color: #fff;
     -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.19);
     -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.19);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.19);
    border-radius: 4px;
    margin-bottom: 20px;
}
.panel-group.faq-list .panel {
    border-radius: 0;
    border: none;
}
.faq-list .panel-default>.panel-heading {
    color: #333;
    background-color: #fff;
    border-color: transparent;   
    border-radius: 4px;
}
.faq-list .panel-title {
    font-size: 16px;
    color: #333;
    line-height: 12px;
    padding: 30px 0 30px 50px;
    margin: 0 25px;
    position: relative;
}
.faq-list .panel-title:before {
    background-image: url(../images/extra/faq-icon.png);
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    content: "";
    top: 21px;
    left: 0;
    position: absolute;
}
.faq-list .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd;
    background-color: #333;
}
.faq-list .panel-body h5 {
    color: #EB7A20;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 5px;
}
.faq-list .panel-body p {
    font-size: 14px;
    color: #666;
    line-height: 26.22px;
    margin-bottom: 0;
}
.faq-list .panel-heading {
    padding: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
}
.faq-list .panel-body {
    padding: 0 50px 25px 74px;
}
.panel-group.faq-list .panel-heading+.panel-collapse>.panel-body {
    border-top: 0;
}
.faq-body {
    display: block;
}
.faq-list .panel-heading:hover h4 {
    text-decoration: none;
}
.panel-group.faq-list .panel+.panel {
    margin-top: 0;
}
.panel-group.faq-list .panel {
    border-radius: 4px;
    border: none;
}
.faq-list .panel:last-child .panel-heading .panel-title {
    border-bottom: 1px solid transparent;
}
.faq-listing {
    padding-top: 45px;
    position: relative;
}
.faq-listing:before {
    content: "";
    background-image: url(../images/abstract/design-abstract.jpg);
    position: absolute;
    right: 0;
    top: 0;
    width: 299px;
    height: 578px;
    background-repeat: no-repeat;
    z-index: -1;
}
.faq-listing:after {
    content: "";
    background-image: url(../images/abstract/faq-bottom.jpg);
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 325px;
    height: 237px;
    background-repeat: no-repeat;
    z-index: -1;
}

/*}*/





/*===================================================================================*/

/*.wpforms-container .wpforms-field {*/
/*    margin-bottom: 15px !important;*/
/*    width: 440px !important;*/
/*}*/
/*.wpforms-container .wpforms-submit-container {*/
    /*margin-top: 50px !important;*/
/*    margin: 32px 0 0 12px !important;*/

/*}*/


.wpforms-container .wpforms-field {
    margin-bottom: 15px !important;
    width: 440px !important;
}

.wpforms-container .wpforms-submit-container {
    margin: 32px 0 0 12px !important;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .wpforms-container .wpforms-field {
        width: 100% !important;
    }

    .wpforms-container .wpforms-submit-container {
        margin: 32px 0 0 0 !important;
    }
}

@media (max-width: 480px) {
    .wpforms-container .wpforms-field {
        width: 100% !important;
    }

    .wpforms-container .wpforms-submit-container {
        margin: 24px 0 0 0 !important;
    }
}






/* Wrap the two fields in a flex container */
#wpforms-306 .wpforms-field-container {
    display: flex;
    flex-wrap: wrap;
    /*gap: 20px;*/
}

/* Target specific fields to align them side by side */
#wpforms-306-field_1-container,
#wpforms-306-field_4-container {
    flex: 1 1 48%;
    min-width: 250px;
}

/* Optional: make full name and message fields full width */
#wpforms-306-field_3-container,
#wpforms-306-field_2-container {
    flex: 1 1 100%;
}

.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field {
    padding: 6px 12px !important;
}



.icon-section {
  display: flex;
  gap: 40px;
}

.icon-box {
  text-align: center;
}

.pills-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
}

/* Icon positions - adjust based on actual layout */
span.pills-icon.Hospitality {
  background-position: 0 0 !important;
}

span.pills-icon.Offices {
  background-position: -34px 0 !important;
}

span.pills-icon.Residence {
  background-position: -75px 0 !important;
}

