/* Theme Name: Weaver Group PH 
Description: This is the website for Weaver Group PH 
Author: Click - MAB 
Author URI: https://weavergroup.ph 
Version: 1.1.0 
Tags: full 
License: Proprietary License URI: https://weavergroup.ph */

/* TABLE OF CONTENTS 
1. Variables 
2. Custom CSS 
*/

/******************************************************* 
* 
* 1. Variables 
* 
*******************************************************/

:root {
	/** Font default */
	--font-family-default: 'Mulish', sans-serif;
	--font-family-title: 'Source Serif 4', serif;
	--font-size-default: 14px;
	--font-size-title: 18px;
	--font-color-default: #000000;
	--font-color-title: #6c757d;
	/** Use for input, button, and any other element */
	--primary: #ffc156;
	--secondary: #555d50;
  --accent-gold: #856017;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #fffff0;
	--dark: #070F12;
  
  --default-transition: all 0.3s ease;
}


/* Global */
html * {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-default) !important;
  font-size: var(--font-size-default);
  background: #fff;
  color: var(--font-color-default);
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

body.overflow {
  overflow: hidden;
}

.site-canvas {
  display: block;
  width: 100%;
}

.custom-container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

a,
a:focus,
a:hover,
a:focus-within {
  text-decoration: none;
}

input,
textarea,
button {
	outline: none;
}

.home video {
  cursor: pointer;
}

.rel {
  position: relative;
}

.blk {
  display: block !important;
}

.no-padding {
  padding-right: 0 !important;
}

.disable {
  pointer-events: none;
}

.img-object {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-bg {
  background: #fff;
}

.img-wrapper {
  position: relative;
}

.img-wrapper canvas {
  display: block;
  width: 100%;
} 

.img-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.bg-canvas-rel {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.ios-true .bg-canvas,
.safari .bg-canvas,
.ios-true .bg-fixed,
.safari .bg-fixed {
  background-attachment: scroll !important;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-canvas-g {
  filter: grayscale(1);
}

.bg-fixed {
  background-attachment: scroll !important;
}

.bw {
  filter: grayscale(1);
}

.ease {
  transition: var(--default-transition);
  -webkit-transition: var(--default-transition);
  -moz-transition: var(--default-transition);
  -o-transition: var(--default-transition);
}

.ease-1 {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

#main-wrapper {
  overflow: hidden;
}

.show-mb {
  display: none !important;
}

.txt-up {
  text-transform: uppercase;
}

.zi-100 {
  z-index: 100;
}

.rel-z {
  position: relative;
  z-index: 100;
  background: #fff;
}

.hidden {
  display: none !important;
}

.no-margin {
  margin: 0 !important;
}

.n-app {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  outline: none;
  background: transparent;
  border: 0;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

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

input,
textarea,
button {
  border-radius: 0 !important;
}

/* Flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.custom-flex {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.ai-c {
  align-items: center;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.fd-c{
  flex-direction: column;
}

.fd-rr {
  flex-direction: row-reverse;
}

/* Global Button */
.global-btn {
  height: 50px;
  max-width: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--light);
	transition: var(--default-transition)
}

.global-btn.white {
  background: #fff;
  color: var(--secondary);
}

.global-btn.plain {
  width: auto;
  max-width: none;
  color: #fff;
  background: transparent;
}

.global-btn.plain.colored {
  color: var(--secondary);
}

.global-btn i {
  margin: 0 10px 0 0;
  font-size: 20px;
}

.global-btn.lg {
  max-width: 400px;
}

.global-btn:hover {
	background: var(--secondary) !important;
	color: #fff !important;
}

.global-btn.plain:hover {
	background: transparent !important;
	color: var(--primary) !important;
}

/* Global Title */
.global-title {
  position: relative;
  padding: 0 0 20px;
  margin: 0 0 50px;
}

.global-title::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: 0;
}

.global-title.centered::after {
  right: 0;
  margin: auto;
}

.global-title span {
  display: block;
  font-size: 20px;
  font-family: var(--font-family-default);
  font-weight: 300;
  letter-spacing: 0.2px;
  color: var(--dark);
}

.global-title h2 {
  font-family: var(--font-family-title);
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 400 !important;
  margin: 0;
  /* color: var(--accent-gold); */
}

.global-title.white,
.global-title.white span  {
  color: #fff;
}

.global-title.white::after {
  background: #fff;
}

/* Header */
.header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  padding: 15px 15px;
  transition: var(--default-transition);
}

.header-logo {
  max-width: 100px;
}

/* Header Navigation */
#nav {
  list-style: none !important;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

#nav > li {
  padding: 0 clamp(5px,0.781vw,15px);
}

#nav > li:last-of-type {
  padding-right: 0;
  margin-left: 20px;
}

#nav .contact-header-btn a {
  padding: 15px 25px;
  background: var(--primary);
  font-weight: 400;
	transition: var(--default-transition);
}

#nav .contact-header-btn a:hover {
	background: var(--secondary);
	color: #fff;
}

#nav > li > a {
  font-size: clamp(14px,0.833vw,16px);
  letter-spacing: 0.05em;
  color: var(--dark);
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  display: inline-block;
	transition: var(--default-transition);
}

#nav > li:hover > a {
	color: var(--primary);
}

#nav > li .sub-menu {
  display: none;
  position: absolute;
  list-style: none;
  padding: 35px 0 0;
  margin: 0;
}

#nav > li:hover .sub-menu {
  display: block;
}

#nav > li .sub-menu a {
  color: #fff;
  display: block;
  padding: 15px 15px;
  background: var(--secondary);
  font-size: 15px;
  transition: all 0.3s ease;
}

#nav > li .sub-menu a:hover {
  background: var(--primary);
}

.fh #nav > li .sub-menu {
  padding: 25px 0 0;
}



/* Fixed Header */
.header.fh {
  padding: 5px 15px;
  box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
}

/* Slider */
.hero-slider {
	width: 100%;
	height: 700px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 0;
}

.swiper-slide-img::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/* background: rgb(255, 193, 86);
	background: linear-gradient(0deg, rgba(255, 193, 86, 1) 0%, rgba(85, 93, 80, 1) 100%); */
  background: var(--secondary);
  /* background: linear-gradient(0deg, rgba(85,93,80,1) 0%, rgba(85,93,80,0.4374124649859944) 100%); */
	z-index: 2;
	opacity: 0.8;
}

.hero-slider .swiper-slide {
	overflow: hidden;
	color: #fff;
}

.hero-slider .swiper-container {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
}

.hero-slider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
  filter: grayscale(1);
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
	background: transparent;
	width: 55px;
	height: 55px;
	line-height: 53px;
	margin-top: -30px;
	text-align: center;
	border: 2px solid #d4d3d3;
	border-radius: 55px;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}


.hero-slider .swiper-button-prev {
	left: 25px;
	transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
	font-family: "Font Awesome 5 Free";
	content: "\f060";
	font-size: 15px;
	color: #d4d3d3;
	font-style: normal;
	display: inline-block;
	vertical-align: middle;
	font-weight: 900;
}

.hero-slider .swiper-button-next {
	right: 25px;
	transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-size: 15px;
	color: #d4d3d3;
	font-style: normal;
	display: inline-block;
	vertical-align: middle;
	font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	text-align: left;
	line-height: 12px;
	font-size: 12px;
	color: #000;
	opacity: 0.3;
	background: #fff;
	transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
	bottom: 55px;
}

.swiper-slide-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.swiper-slide-content {
	position: relative;
	z-index: 10;
	height: 100%;
  padding: 0 100px;
	display: flex;
	align-items: center;
}

.hero-style {
	height: 850px;
	transition: var(--default-transition);
}

.hero-style .slide-title h2 {
	font-size: clamp(55px,3.542vw,68px);
	font-weight: 600;
	line-height: 1;
	color: #ffffff;
	margin: 96px 0 40px;
	text-transform: capitalize;
	transition: var(--default-transition);
	font-family: var(--font-family-title);
}

.hero-style .slide-title h2 span {
  color: var(--primary);
}

.hero-style .slide-text p {
	font-size: clamp(20px,1.563vw,30px);
	font-weight: 200;
	line-height: 1.25;
	color: #ffffff;
	margin: 0 0 40px;
	transition: var(--default-transition);
}

.slide-btns > a:first-child {
  margin: 0 30px 0 0;
}

/* Welcome */
.wc-wrap {
  padding: 150px 15px;
}

.wc-col.wc-title {
  width: 73%;
}

.wc-col.wc-btn {
  width: 27%;
}

.wc-wrap {
  padding: 150px 15px;
}

.wc-txt {
  font-size: 22px;
  line-height: 1.7;
}

.wc-txt p {
  margin-bottom: 0;
}

.wc-img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  /* background: rgb(255, 193, 86); */
  /* background: linear-gradient(270deg, rgba(255, 193, 86, 1) 0%, rgba(85, 93, 80, 1) 100%); */
  z-index: 2;
  opacity: 0.8;
}

.wc-img-main {
  max-width: 300px;
  width: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}

.img-animate {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}

.img-animate-inner {
  background: #fff;
  width: 100% !important;
  height: 100%;
  opacity: 1 !important;
}

.img-animate-inner.aos-init {
  transform: none !important;
}

.img-animate-inner.aos-init.aos-animate {
  transform: translateX(100%) !important;
}


.wc-subs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  z-index: 15;
}

.wc-subs-form {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: auto;

}

.newsletter-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.newsletter-wrap {
  padding: 0 15px 100px;
}

.wc-subs-form .wpcf7 form .wpcf7-response-output {
  color: #fff;
  position: absolute;
}

.wc-subs-form .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  left: auto;
  right: 0;
  width: auto;
  top: 0;
}

.ncf-field:nth-child(odd) {
  padding-right: 7px;
  width: calc(100% - 220px);
}

.ncf-field:nth-child(even) {
  padding-left: 7px;
  width: 220px;
}

.newsletter-form input {
  width: 100%;
  height: 60px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0;
  font-family: var(--font-family-default);
  border-radius: 0;
}

.newsletter-form textarea {
  height: 130px;
  padding: 10px;
  resize: none;
  border-radius: 0;
}

.newsletter-form input::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.newsletter-form input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #fff;
}

.newsletter-form .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  right: 5px;
  left: auto;
  width: auto;
  font-size: 11px;
  top: 0;
}

.newsletter-form .wpcf7 form .wpcf7-response-output {
  margin: 0;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  bottom: -40px;
}

.newsletter-form .ajax-loader,
.newsletter-form .wpcf7-spinner {
  position: absolute;
  margin: 0;
}

.newsletter-form p {
  margin: 0;
}

.newsletter-form .ncf-field-submit input {
  height: 60px;
  max-width: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  border: 0;
  margin: 0 0 0 auto;
  cursor: pointer;
  border-radius: 0;
	transition: var(--default-transition);
}

.newsletter-form .ncf-field-submit input:hover {
	background: var(--secondary);
	color: #fff;
}

/* Featured Buildings */
.fb-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: 60%;
}

.fb-left {
  /* text-align: center; */
  width: 40%;
  padding: 0 0 0 30px;
}

.fb-wrap {
  padding: 150px 15px;
  background: var(--secondary);
  color: #fff;
}

.fb-wrap .global-title span {
  color: #fff;
}

.fb-wrap .building-item {
  width: 50%;
}

.fb-wrap .building-item-details {
  position: absolute;
}

.fb-wrap .building-item a {
  position: relative;
  display: block;
}

.fb-wrap .building-item-details {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  background: rgba(85, 93, 80, 0.7);
  color: #fff;
  padding: 15px;
}

.fb-wrap .building-item-details h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
}

.fb-wrap .building-item-details-address {
  display: flex;
  align-items: flex-start;
}

.fb-wrap .building-item-details-address i {
  width: 23px;
  font-size: 15px;
}

.fb-wrap .building-item-details-address span {
  width: calc(100% - 23px);
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
}

.fb-btn {
  margin: 50px 0 0;
}

/* About */
.about-wrap {
  padding: 150px 15px 150px;
}

.about-content ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.about-content ul li a {
  font-size: 30px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.2;
}

.about-content ul li.active a {
  opacity: 1;
  color: var(--primary);
  text-transform: uppercase;
}

.about-content ul li a i {
  font-size: 20px;
}

.about-content ul li {
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.about-col.about-content {
  width: 40%;
  padding: 0 30px 0 0;
}

.about-col.about-imgs {
  width: 60%;
}

.about-col.about-content .about-col-inner {
  max-width: 500px;
  width: 100%;
}

.about-col.about-imgs .about-col-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 0 0 auto;
}

.about-imgs-item-inner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  /* background: rgb(255, 193, 86);
  background: linear-gradient(270deg, rgba(255, 193, 86, 1) 0%, rgba(85, 93, 80, 1) 100%); */
}

.about-imgs .bg-canvas {
  opacity: 0.2;
  filter: grayscale(1);
}

.about-imgs-content {
  position: relative;
  z-index: 10;
}

.about-imgs-content-inner {
  width: calc(100% - 30px);
  max-width: 600px;
  margin: auto;
  font-size: 22px;
  line-height: 1.7;
  color: #fff;
  font-weight: 300;
}

.about-imgs-item {
  display: none;
}

.about-imgs-item.active {
  display: block;
}

/* Services */
.services-wrap {

}

.services-holder-wrap {
  min-height: 700px;
}

.services-holder {
  padding: 50px 0 0;
}

.services-item {
  width: calc(100% / 5);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-item h3 {
  font-family: var(--font-family-title);
  color: #fff;
  font-weight: 400;
  font-size: clamp(25px,1.82vw,35px);
  line-height: 1;
  margin: 0;
  position: relative;
}

.services-item h3::before,
.services-item h3::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 20px);
  width: 1px;
  height: 70px;
  background: var(--primary);
  margin: auto;
  transition: var(--default-transition);
  pointer-events: none;
}

.services-item h3::after {
  top: auto;
  bottom: calc(100% + 20px);
}

.services-holder-bg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  /* background: rgb(255, 193, 86);
  background: linear-gradient(270deg, rgba(255, 193, 86, 1) 0%, rgba(85, 93, 80, 1) 100%); */
  z-index: 20;
  opacity: 0.8;
}

.services-item-bg {
  opacity: 0;
  transition: var(--default-transition);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.services-item-bg.default {
  opacity: 1;
}

.services-item-bg:nth-child(1) {
  z-index: 1;
}

.services-item-bg:nth-child(2) {
  z-index: 2;
}

.services-item-bg:nth-child(3) {
  z-index: 3;
}

.services-item-bg:nth-child(4) {
  z-index: 4;
}

.services-item-bg:nth-child(5) {
  z-index: 5;
}

.services-item-bg:nth-child(6) {
  z-index: 6;
}

.services-item-bg:nth-child(7) {
  z-index: 7;
}

.services-item-bg:nth-child(8) {
  z-index: 8;
}

.services-item-bg.active {
  opacity: 1;
}

.services-item a {
  position: relative;
}

.services-item .global-btn {
  position: relative;
  margin: 0 auto 0;
  transition: var(--default-transition);
  opacity: 0;
}

.services-item p {
  color: #fff;
  font-size: clamp(14px,0.83vw,16px);
  line-height: 1.5;
  min-height: 72px;
  opacity: 0;
  visibility: hidden;
  transition: var(--default-transition);
}

.services-item a:hover h3::before,
.services-item a:hover h3::after {
  opacity: 0;
}

.services-item a:hover .global-btn {
  opacity: 1;
  margin-top: 50px;
}

.services-item a:hover p {
  opacity: 1;
  visibility: visible;
}



/* News */
.news-wrap {
  padding: 150px 15px;
}

.news-item {
  padding: 35px 0;
}

.news-item:nth-child(even) .news-item-inner {
  flex-direction: row-reverse;
}

.news-col.news-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-item:nth-child(odd) .news-col.news-content {
  padding: 0 15px 0 0;
}

.news-item:nth-child(even) .news-col.news-content {
  padding: 0 0 0 15px;
}

.news-item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.news-col {
  width: 50%;
}

.news-content .news-col-inner {
  max-width: 500px;
  width: 100%;
}

.news-content h3 {
  font-size: 24px;
  font-family: var(--font-family-title);
  margin: 0 0 30px;
}

.news-content h3 a {
	color: #000;
	transition: var(--default-transition);
}

.news-content h3 a:hover {
	color: var(--primary);
}

.news-date {
  font-size: 18px;
}

.news-desc {
  font-size: 18px;
  line-height: 1.5;
  margin: 24px 0 54px;
}

.news-btn {
  margin: 50px 0 0;
}

/* Contact */
.contact-wrap {
  min-height: 750px;
  padding: 150px 15px;
  overflow: hidden;
}

.contact-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  /* background: rgb(255, 193, 86);
  background: linear-gradient(180deg, rgba(255, 193, 86, 1) 0%, rgba(85, 93, 80, 1) 100%); */
  z-index: 2;
  opacity: 0.8;
}

.contact-col {
  width: 50%;
}

.contact-col.contact-content {
  padding: 0 0 0 15px;
}

.contact-txt {
  font-size: 22px;
  color: #fff;
  line-height: 1.7;
  max-width: 383px;
  width: 100%;
}

.contact-form-main {
  position: relative;
}

.cf-row.cf-field-4 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.cf-row.cf-field-4 .cf-field {
  width: 50%;
  margin: 0 0 14px;
}

.cf-row.cf-field-4 .cf-field:nth-child(odd) {
  padding-right: 7px;
}

.cf-row.cf-field-4 .cf-field:nth-child(even) {
  padding-left: 7px;
}


.contact-form-main input,
.contact-form-main textarea {
  width: 100%;
  height: 60px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 10px;
  font-family: var(--font-family-default);
  border-radius: 0;
}

.contact-form-main textarea {
  height: 130px;
  padding: 10px;
  resize: none;
}

.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.contact-form-main input::-ms-input-placeholder,
.contact-form-main textarea::-ms-input-placeholder { /* Edge 12 -18 */
  color: #fff;
}

.contact-form-main .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  right: 5px;
  left: auto;
  width: auto;
  font-size: 11px;
  top: 0;
}

.contact-form-main .wpcf7 form .wpcf7-response-output {
  margin: 0;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 13px;
  bottom: -40px;
}

.contact-form-main .ajax-loader,
.contact-form-main .wpcf7-spinner {
  position: absolute;
  margin: 0;
}

.contact-form-main p {
  margin: 0;
}

.contact-form-main .cf-field-submit input {
  height: 50px;
  max-width: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--light);
  border: 0;
  margin: 30px 0 0 auto;
  cursor: pointer;
  border-radius: 0;
	transition: var(--default-transition);
}

.contact-form-main .cf-field-submit input:hover {
	background: var(--secondary);
	color: #fff;
}

/* Footer */
.footer {
  padding: 100px 15px 50px;
}

/* Footer Contact */
.fc-field {
  padding: 15px 25px;
}

.fc-field.address a {
  pointer-events: none;
}

.fc-field a {
  font-size: 17px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
	transition: var(--default-transition);
}

.fc-field a i {
  margin: 0 10px 0 0;
  color: var(--secondary);
	transition: var(--default-transition);
}

.fc-field a:hover,
.fc-field a:hover i {
	color: var(--secondary)
}

.footer-contact {
  margin: 40px 0 20px;
}

.footer-smi h3 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0;
  margin: 50px 0 20px;
}


.footer-smi a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  margin: 0 15px;
  font-size: 15px;
	transition: var(--default-transition);
}

.footer-smi a:hover {
	background: var(--primary);
}

.footer-nav {
  margin: 30px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid #efefef;
}

#footernav {
  list-style: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

#footernav li {
  padding: 0 clamp(15px,1.302vw,25px);
}


#footernav li > a {
  font-size: clamp(14px,0.833vw,16px);
  letter-spacing: 0.05em;
  color: var(--dark);
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  display: inline-block;
	transition: var(--default-transition);
}

#footernav li > a:hover {
	color: var(--primary);
}

.footer-copyright {
  font-size: 16px;
  margin: 50px 0 0;
  font-weight: 300;
}

.footer-copyright a {
  color: #000;
}

.footer-disclaimer {
    margin: 30px 0 0;
    font-size: 12px;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.footer-disclaimer p {
	margin-bottom: 0;
}

/* Banner */
.ip-banner-main {
  position: relative;
}

.ip-banner-main canvas {
  display: block;
  width: 100%;
  height: auto;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ip-banner-main::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 3;
}

/* Breadcrumbs */
#breadcrumbs {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--primary);
}

#breadcrumbs a {
  color: #000;
}

/* Page Title */
.entry-title {
  font-family: var(--font-family-title);
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 400 !important;
}


#content .entry {
  min-height: 500px;
    padding-bottom: 30px;
}

#inner-page-wrapper {
  overflow: hidden;
}

body #hubspot-messages-iframe-container iframe {
  bottom: 70px !important;
}

body #hubspot-messages-iframe-container .hs-shadow-container.active + iframe {
  bottom: 0 !important;
}

.grecaptcha-badge {
  z-index: 1000 !important;
}

/* Careers Page */
.sjb-page .sjb-detail .list-data .v1 ul li::before, .sjb-page .sjb-detail .list-data .v2 ul li::before {
  color: var(--primary) !important;
}

.sjb-page .sjb-archive-page h3 .job-title {
  display: none !important;
}

.sjb-page .list-data .v2 .job-info h4 a {
  font-size: 22px !important;
  font-weight: 700;
  text-transform: uppercase;

}

.sjb-page .list-data .v2 .job-info h4 a span {
  color: var(--primary) !important;
}

#container {
  padding: 0;
  max-width: 100%;
  width: 100%;
}

.ip-careers-top {
  margin: 33px 0 0;
}

.ip-careers-top-col {
  width: 50%;
}

.ip-careers-top-col.left {
  padding: 0 30px 0 0;
}

.ip-careers-top-desc {
  font-size: 20px;
  line-height: 1.7;
}

.ip-careers-top-btns a {
  margin: 10px 10px 0 0;
}

.post-type-archive-jobpost #inner-page-wrapper > .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.ip-careers-container {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.ip-careers-mid {
  padding: 100px 0;
  background: var(--primary);
  margin: 80px 0;
}

.ip-careers-mid-col {
  width: 50%;
}

.ip-careers-mid-col.right {
  padding: 15px 30px;
}

.ip-careers-mid *,
.ip-careers-mid .global-title span {
  color: #fff;
}

.ip-careers-mid .global-title::after {
  background: #fff;
}

.ip-careers-mid ul {
  font-size: 20px;
  line-height: 1.7;
}

.ip-careers-mid ul b {
  font-weight: 700;
  text-decoration: underline;
}

/* Tagline */
.ip-careers-bot {
  text-align: center;
  padding: 100px 15px;
  background: var(--secondary);
  margin: 50px 0 0;
}

.ip-careers-bot h5 {
  font-family: var(--font-family-title);
  font-size: clamp(30px, 2.604vw, 50px);
  font-weight: 400 !important;
  color: #fff;
  max-width: 1140px;
  width: 100%;
  margin: auto;
}

.ip-careers-bot h5 a {
  color: var(--primary);
}

/* Innerpage FAQS */
.accordion-question {
  cursor: pointer;
  padding: 10px;
  background: #f2f2f2;
  margin: 5px 0;
  border-left: 4px solid var(--primary);
  font-weight: bold;
}

.accordion-answer {
  display: none;
  padding: 10px;
  background: #ffffff;
  border-left: 4px solid var(--secondary);
  margin-bottom: 10px;
  display: none;
}


/*media query*/
@media only screen and (max-width: 1366px) {}

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

@media only screen and (max-width: 991px) {
  /* Start of Global and Homepage */
  .show-mb {
    display: block !important;
  }

  .hidden-mb {
    display: none !important;
  }

  /* Mobile */
	.mobile-menu {
		background: var(--dark);
		position: fixed;
		top: -100%;
		left: 0;
		width: 100vw;
		height: 100vh;
		z-index: 90;
		opacity: 0;
		pointer-events: none;
	}

	.mobile-menu.active {
		top: 0;
		opacity: 1;
		pointer-events: all;
	}

	.header-menu-icon.close::after {
		top: 50%;
		left: 50%;
		bottom: auto;
		transform: translateX(-50%) translateY(-50%) rotate(135deg);
	}

	.header-menu-icon.close::before {
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%) rotate(45deg);
	}

	.header-menu-icon.close i {
		width: 0;
	}

	#mb-nav {
		padding: 118px 25px 0;
    list-style: none;
	}

	#mb-nav > li {
		padding: 10px 0;
	}

	#mb-nav > li > a {
		font-size: 20px;
		font-weight: 500;
		color: #fff;
		text-decoration: none;
		text-transform: uppercase;
		transition: all 0.3s ease;
		outline: none;
	}

	#mb-nav > li > a:hover {
		color: #9dbda5;
	}

  #mb-nav .sub-menu {
    padding: 15px;
    list-style: none;
    color: #fff;
    display: none;
  }

  #mb-nav .sub-menu a {
    color: #fff !important;
    font-size: 15px;
  }

  #mb-nav .sub-menu a:hover {
    color: var(--primary);
  }

  #mb-nav .sub-menu li {
      padding: 5px;
  }

  .header-menu-icon {
		width: 32px;
		height: 25px;
		position: relative;
	}

	.header-menu-icon::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 2px;
		border-radius: 5px;
		background: var(--secondary);
		transition: all 0.3s ease;
	}

	.header-menu-icon::after {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 2px;
		border-radius: 5px;
		background: var(--secondary);
		transition: all 0.3s ease;
	}

	.header-menu-icon i {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		margin: auto;
		width: 100%;
		height: 2px;
		border-radius: 5px;
		background: var(--secondary);
	}

  .header-menu {
    background: transparent !important;
  }

  .open-mb-menu .header-menu-icon::before,
  .open-mb-menu .header-menu-icon::after {
    background: var(--primary);
  }

  .hero-slider .swiper-container {
    position: relative;
  }

  .hero-style {
    height: auto;
  }

  .swiper-slide-content {
    padding: 70px 0 100px;
    text-align: center;
    /* min-height: 951px; */
  }

  .hero-slider .swiper-button-prev, .hero-slider .swiper-button-next {
    display: none !important;
  }

  .slide-btns {
    justify-content: center;
  }

  .slide-btns > a {
    margin: 0 15px !important;
  }

  .fb-col.fb-left {
      width: 100%;
      text-align: center;
      padding: 0 0 40px;
  }

  .fb-col.fb-right {
      width: 100%;
  }

  .fb-btn a {
    margin: auto;
  }

  .fb-main {
      flex-direction: column-reverse;
  }

  .wc-col {
    width: 100% !important;
    text-align: center;
  }

  .wc-col.wc-btn {
    justify-content: center;
    margin: 40px 0 0;
  }

  .wc-wrap {
    padding: 50px 15px;
  }

  .global-title::after {
    right: 0;
    margin: auto;
  }

  .wc-img {
    margin: 50px 0 0;
  }

  .wc-img .bg-canvas-rel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .wc-subs {
    position: relative;
    padding: 80px 0;
  }

  .ncf-field:nth-child(odd) {
    padding-right: 0;
    width: 100%;
  }

  .ncf-field:nth-child(even) {
    padding-left: 0;
    width: 100%;
    padding-top: 10px;
  }

  .newsletter-form .ncf-field-submit input {
    margin: 0 auto;
  }
  
  .about-wrap {
    padding: 70px 15px;
  }

  .about-col.about-imgs {
    width: 100%;
  }

  .about-imgs-item-inner {
    min-height: auto;
  }

  .about-imgs-content {
    padding: 30px 0;
  }

  .about-imgs-content h3 {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
}

  .about-col.about-imgs .about-col-inner {
    margin: auto;
  }

  .about-main .global-title {
    text-align: center;
  }

  .about-imgs-item {
    display: block;
    margin: 15px 0;
  }

  .services-item {
    width: 100%;
    padding: 50px 15px;
  }

  .services-item h3::before, .services-item h3::after {
    display: none;
  }

  .services-holder-wrap {
    min-height: auto;
    padding: 20px 0;
  }

  .bg-fixed {
    background-attachment: scroll;
  }

  .news-col {
    width: 100%;
  }

  .news-item .news-item-inner {
    flex-direction: column-reverse !important;
  }

  .news-col.news-img .news-col-inner {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 30px;
  }

  .news-item .news-col.news-content {
    padding: 0 !important;
  }

  .contact-main {
    flex-direction: column-reverse;
  }

  .contact-col {
    width: 100%;
  }

  .contact-txt {
    max-width: 100%;
  }

  .contact-content {
    text-align: center;
  }

  .cf-row.cf-field-4 .cf-field {
    width: 100%;
    padding: 0 !important;
  }
  
  .contact-form-main {
    max-width: 530px;
    width: 100%;
    margin: auto;
  }

  .contact-col.contact-content {
    padding: 0;
  }

  .contact-form-main .cf-field-submit input {
    margin: 30px auto 0;
  }

  .contact-form-main .wpcf7 form .wpcf7-response-output {
    bottom: -65px;
  }

  .footer-contact {
    flex-direction: column;
  }

  .fc-field {
    padding: 15px 10px;
  }

  #footernav {
    flex-direction: column;
  }

  #footernav li {
    padding: 11px 25px;
  }

  .global-title h2 {
    font-size: 35px;
  }

  .footer {
    padding: 100px 15px;
  }

  .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    display: none !important;
  }

  .entry-title {
    font-size: 35px;
    text-align: center;
  }

  .ip-breadcrumbs {
    text-align: center;
  } 
  /* End of Global and Homepage */

  /* Careers */
  .ip-careers-top-col {
    width: 100%;
  }

  .ip-careers-top-col.left {
    padding: 0 0 30px;
  }

  .ip-careers-mid-col {
    width: 100%;
  }

  .ip-careers-mid-col.right {
    padding: 30px 15px 0 0;
  }

  .ip-careers-top-details {
    text-align: center;
  }

  .ip-careers-top-btns {
    justify-content: center;
  }

  .ip-careers-mid-col.right .global-title {
    text-align: center;
  }

}

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

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

  .fb-wrap .building-item {
    width: 100%;
  }
}