/*!
Theme Name: WA HVAC
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wa-hvac
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

WA HVAC is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

*,
::after,
::before,
article,
aside,
body,
div,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
img,
input,
label,
li,
p,
section,
select,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a,
a:focus,
a:hover {
  text-decoration: none;
}
button,
button:active,
button:focus,
input,
input:active,
input:focus,
select,
select:active,
select:focus,
textarea,
textarea:active,
textarea:focus {
  outline: 0;
}
ul {
  list-style: none;
}
form {
  width: 100%;
  display: block;
}
p {
  padding-bottom: 1em;
}
:root {
  --accent-color: #295a9a;
  --secondary-color: #16e8ca;
}
/* Fonts */
@font-face {
  font-family: opensans-bold;
  src: url(fonts/OpenSans-Bold.woff);
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: opensans-regular;
  src: url(fonts/OpenSans-Regular.woff);
  font-style: normal;
	font-display: swap
}
/* Custom Styling */
html{
    scroll-behavior: smooth;
}
body {
  font-family: opensans-regular, "sans-serif";
  z-index: -10;
  position: relative;
  padding-top: 100px;
}
#wholepage {
  overflow-x: hidden;
  /*overflow-y: auto;*/
  width: 100%;
  position: relative;
  z-index: -10;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .services .icon-text-container {
    	height: unset !important;
  }
  .services::after{
  	transform: scale(-1) rotate(19deg) !important;
  }
/*   section.sectors:before{
  	transform: scale(-1) rotate(18deg) !important;
  } */
}
.wa_hvac-primary-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  border: 3px solid var(--secondary-color);
  color: var(--accent-color);
  font-family: opensans-bold, "sans-serif";
  font-size: 18px;
}
.wa_hvac-secondary-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  border: 3px solid #fff;
  color: var(--accent-color);
  font-family: opensans-bold, "sans-serif";
  font-size: 18px;
  background-color: #fff;
}
/* Header Styling */
header.main-header {
  padding: 10px 0;
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* .main-header .container .logo-image {
  max-width: 185px;
  width: 100%;
} */
.main-header .container .logo-image img {
    width: 260px;
    height: auto;
    object-fit: cover;
}
.main-header .container .navmenu {
  width: 55%;
}
.main-header .container .navmenu ul#primary-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .container .navmenu ul#primary-menu li a {
  text-transform: capitalize;
  font-family: opensans-regular, "sans-serif";
  color: var(--accent-color);
}
.main-header
  .container
  .navmenu
  ul#primary-menu
  li#menu-item-219
  a {
	  display: inline-block;
	  padding: 0.7rem 2rem;
	  color: var(--accent-color);
	  font-family: opensans-bold, "sans-serif";
	  font-size: 18px;
	  border: 2px solid var(--accent-color);
}
#close-menu,
.mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  header.main-header {
    position: relative;
  }
  #close-menu {
    display: block;
  }
  .mobile-menu {
    display: block;
    width: 40px;
  }
  .mobile-menu svg {
    width: 100%;
    fill: var(--accent-color);
  }
  .navmenu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0%;
    right: -500px;
    height: 100vh;
    background-color: var(--accent-color);
    z-index: 9999;
    transition: 0.5s all ease-in-out;
  }
  .navmenu.active {
    right: 0px;
  }
  .main-header .container .navmenu ul#primary-menu {
    flex-direction: column;
    justify-content: unset;
    width: 100%;
  }
  .main-header .container .navmenu ul#primary-menu li {
    width: 100%;
  }
  .main-header .container .navmenu ul#primary-menu li a {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 32px;
    line-height: 50px;
    text-align: center;
  }
  #close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
  }
  #close-menu svg {
    width: 50px;
    height: 50px;
    fill: #fff;
  }
  .main-header
    .container
    .navmenu
    ul#primary-menu
    li#menu-item-219
    .wa_hvac-primary-btn {
    border-color: #fff;
  }
  .main-header .container .navmenu ul#primary-menu li#menu-item-219 {
    padding: 0 80px;
    margin-top: 80px;
  }
   .main-header .container .navmenu ul#primary-menu li#menu-item-219 a {
   border-color: #fff;
    color: #fff;
    font-size: 32px;
    line-height: 50px;
  }
  .main-header .container .navmenu ul#primary-menu li > ul.sub-menu{
      position: relative;
      top: 20px;
    width: 100%;
    padding: 10px 0;
    display: none;
  }
    .main-header .container .navmenu ul#primary-menu li > ul.sub-menu.active{
        display: block;
    }
  .main-header .container .navmenu ul#primary-menu li > ul.sub-menu > li{
      display: flex;
      align-items: center;
      padding: 10px 5px;
  }
.main-header .container .navmenu ul#primary-menu li > ul.sub-menu > li a{
      color: var(--accent-color);
  }
  .menu-main-header-container ul#primary-menu > li.menu-item-has-children:after{
      content: "+" !important;
      color: #fff;
    font-size: 40px;
    line-height: 40px;
    right: 50px !important;
  }
 .navmenu .menu-main-header-container{
      width: 100%;
  }
}
@media (max-width: 520px) {
  .main-header .container .navmenu ul#primary-menu li a {
    font-size: 22px;
  }
  .main-header .container .navmenu {
    width: 70%;
  }
  .main-header .container .navmenu ul#primary-menu li#menu-item-219 {
    padding: 0 50px;
  }
  .home #service-icons p.text_italic 
  {
    margin-top: 0px;
  } 
  section.objective-list:after
  {
    top: -110px;
  }
}
/* Banner Styling */
section.banner {
  position: relative;
  background-image: url(../images/henry-co-3coKbdfnAFg-unsplash.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 110vh;
  z-index: 9;
  clip-path: polygon(0 0, 100% 0, 100% 32%, 0 100%);
}
section.banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    var(--accent-color) 5%,
    rgba(254, 254, 254, 0) 40%
  );
  z-index: -1;
}
section.banner .banner-text-container {
  max-width: 60%;
  height: calc(85vh - 100px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section.banner .banner-text-container .banner-text h1 {
  font-family: opensans-bold, "sans-serif";
  font-size: 51px;
  line-height: 60px;
  color: #fff;
}
section.banner .banner-text-container .scroll-down {
  position: absolute;
}
section.banner .banner-text-container .scroll-down p {
  font-family: opensans-bold, "sans-serif";
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}
section.banner .banner-text-container .scroll-down > img {
  width: 50px;
	height: 10px;
  object-fit: contain;
}
/* Who we are Section */
.page-id-125 section.who-we-are {
  position: relative;
  padding: 55px 0;
  z-index: 10;
  margin-top: -120px;
}

section.who-we-are > .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
section.who-we-are > .container > div.wwa-text-container {
  flex: 0 0 35%;
}
section.who-we-are > .container > div.wwa-image-container {
  flex: 0 0 51%;
  aspect-ratio: 1;
  height: 520px;
}
section.who-we-are > .container > div.wwa-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.designed-and-installed > .container > div.dai-text-container h2,
section.who-we-are > .container > div.wwa-text-container h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: var(--accent-color);
  padding-bottom: 30px;
}
.designed-and-installed > .container > div.dai-text-container p,
.designed-and-installed > .container > div.dai-text-container h2 {
  color: #fff;
  margin-bottom: 30px;
}
.designed-and-installed > .container > div.dai-text-container p,
section.who-we-are > .container > div.wwa-text-container p {
  font-size: 17px;
  font-family: opensans-regular, "sans-serif";
  line-height: 19px;
  padding-bottom: 30px;
}
/* Designed and Installed */

.designed-and-installed {
  position: relative;
  /* height: 1025px; */
  padding: 400px 0;
  z-index: 2;
}
.designed-and-installed:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: linear-gradient(155deg, #fff -5%, var(--accent-color) 25%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  z-index: -1;
}
.designed-and-installed:before {
  content: "";
  position: absolute;
  top: -58px;
  left: -5%;
  right: -5%;
  background-image: url(../../../wp-content/uploads/2022/04/pattline.png),linear-gradient( -40deg, var(--accent-color) -130%, #fff 30% );
  transform: rotate(-14.3deg);
  /* width: 100vw; */
  background-size: cover;
  height: 180px;
  z-index: 0;
}
@media (min-width: 1439px){
    .designed-and-installed:before{
        top: -25px;
        left: -15%;
        right: -15%;
        transform: rotate(-20.3deg);
    }
}
.designed-and-installed > .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.designed-and-installed > .container::before {
content: "";
    position: absolute;
    top: -146%;
    bottom: 50%;
    right: 0;
    left: 0;
    background-image: linear-gradient( -40deg, var(--accent-color) -130%, #fff 63% );
    width: 100vw;
    z-index: -3;
    clip-path: polygon(100% 0, -557% 318%, 100% 100%);
}
@media (min-width:1919px){
    .designed-and-installed > .container::before{
        top: -165%;
    }
}
@media (min-width:2550px){
    .designed-and-installed > .container::before{
        top: -206%;
        transform: rotateY(45deg);
    }
}
.designed-and-installed .dai-text-container {
  max-width: 500px;
}
.dai-text-container .wa_hvac-primary-btn {
  color: #fff;
}
/* Our Services */
.divider-image {
  position: relative;
  height: 730px;
}@media (min-width: 2200px) {
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(11deg);
  }
}
.divider-image:before {
  content: "";
  position: absolute;
  top: -730px;
  right: 0;
  bottom: 0;
  left: 0px;
  background-image: url(../../../wp-content/uploads/2022/04/guilherme-cunha-4zwozQxDbD4-unsplash.jpg);
  background-repeat-x: repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100vw;
  z-index: -1;
}
.services {
  position: relative;
  /* margin-top: -730px; */
  margin-top: -800px;
  /* min-height: 1200px; */
  padding: 400px 0;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: linear-gradient( 155deg, #ffffff -52%, var(--accent-color) 15% );
  clip-path: polygon(0 0, 100% 30%, 100% 70%, 0% 100%);
  /* width: 180vw;*/
}
.services::after {
  content: "";
  position: absolute;
  top: 50px;
  left: -5%;
  right: -5%;
  background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
  transform: scaleX(-1) rotate(-19.3deg);
  /* width: 100vw; */
  background-size: cover;
  height: 180px;
  z-index: -1;
}

.services > .container {
  /*transform: translateY(30%);*/
  position: relative;
}
.services > .container h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: #fff;
  padding-bottom: 50px;
  text-align: center;
}

/* Service */
.sectors-container,
.services-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.sectors-container > div.icon-text-container,
.services-container > div.icon-text-container {
  flex: 0 0 33.33%;
  cursor: pointer;
}
.service-icon > img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.service-icon-content {
  display: none;
}
.services-container .icon-text-container:nth-child(1),.services-container .icon-text-container:nth-child(3){
	justify-content:flex-end !important;
}
.icon-text-container > .service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.icon-text-container > .service-icon h3 {
  font-size: 22px;
  font-family: opensans-bold, "sans-serif";
  line-height: 26px;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
.sectors-container .icon-text-container > .service-icon h3 {
  color: var(--accent-color);
}
.service-icon-content p {
  font-size: 17px;
  font-family: opensans-regular, "sans-serif";
  line-height: 21px;
  color: #fff;
  padding-bottom: 30px;
  text-align: center;
}
.sectors-container .service-icon-content p {
  color: #000;
}
.service-icon-content .wa_hvac-primary-btn {
  display: block;
  color: #fff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
.sectors-container .service-icon-content .wa_hvac-primary-btn {
  color: var(--accent-color);
}
/* Sectors */
section.sectors {
  padding-top: 150px;
  /* height: 800px; */
  position: relative;
  padding: 250px 0;
  margin-top: -260px;
}
/*@media (min-width: 1025px){*/
/*  section.sectors {*/
/*    padding: 200px 0;*/
/*  }*/
/*}*/
section.sectors:before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  right: -5%;
  background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
 transform: scaleX(-1) rotate(18deg);
  /* width: 100vw; */
  background-size: cover;
  height: 180px;
  z-index: -1;
}

@media (min-width: 1570px) {
  section.sectors:before {
 transform: scaleX(-1) rotate(16.2deg);
  }
}
@media (min-width: 1900px) {
  section.sectors:before {
 transform: scaleX(-1) rotate(13.5deg);
  }
}
@media (min-width: 2400px) {
  section.sectors:before {
 transform: scaleX(-1) rotate(10.1deg);
  }
}

section.sectors .container > h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: var(--accent-color);
  padding-bottom: 50px;
  text-align: center;
}

/* Video Section */
section.video-section {
  position: relative;
  z-index: 1;
}

.video-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  right: -5%;
  background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
  transform: scaleX(-1) rotate(-14.3deg);
  /* width: 100vw; */
  background-size: cover;
  height: 180px;
  z-index: -1;
}

section.video-section .video-text-container h3 {
  font-family: opensans-regular, "sans-serif";
  font-size: 24px;
  color: var(--accent-color);
}
section.video-section .video-text-container h2 {
  font-family: opensans-bold, "sans-serif";
  font-size: 50px;
  line-height: 60px;
  color: var(--accent-color);
  padding-right: 30%;
}
section.video-section .video-text-container p {
  font-family: opensans-regular, "sans-serif";
  font-size: 17px;
  color: #000;
}
section.video-section .video-section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-text-container {
  flex: 0 0 40%;
}
.video-image-container {
  position: relative;
  flex: 0 0 51%;
  aspect-ratio: 1;
  height: 520px;
}
.video-image-container img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.video-image-container:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(../../../wp-content/uploads/2022/04/play-button.png);
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.icon-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 350px;
}
section.services .services-container .icon-text-container:last-child {
  margin-top: -70px;
}

/* Talk to us Now */
.talk-to-us {
  position: relative;
  padding: 400px 0;
  margin-top: -350px;
}
.talk-to-us .ttu-text-container {
  max-width: 410px;
  margin: 0 auto;
}
.talk-to-us:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(-130deg, #679a76 40%, #295a9abf 65%);
  /* width: 100vw; */
  z-index: -3;
  clip-path: polygon(100% 0, 100% 87%, 83% 100%, 0 100%, 0 50%);
}
.talk-to-us:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: linear-gradient(110deg, transparent 55%, #87bd66 80%);
  /* width: 100vw; */
  z-index: -4;
  clip-path: polygon(0 25%, 100% 55%, 100% 100%, 82% 100%, 0 78%);
}
section.talk-to-us > .container{
  transform: translateY(50%);
}
.talk-to-us .ttu-text-container h2 {
  font-family: opensans-bold, "sans-serif";
  font-size: 50px;
  color: rgb(255, 255, 255);
  text-align: center;
  padding-bottom: 30px;
}
.talk-to-us .ttu-text-container p {
  font-family: opensans-regular, "sans-serif";
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  padding-bottom: 30px;
  color: #fff;
}
.ttu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ttu-button .wa_hvac-primary-btn {
  color: #fff;
}
/* Footer */
footer {
  padding: 40px 0;
}
footer .footer-container {
  display: flex;
}
footer .footer-container .footer-logo-container {
  flex: 0 0 40%;
}
footer .footer-container .footer-logo-container .footer-logo {
  max-width: 200px;
}
footer .footer-container .footer-logo-container .footer-logo img {
    width: 260px;
    height: auto;
    object-fit: cover;
}
footer .footer-container .footer-logo-container .footer-address p {
  font-family: opensans-bold, "sans-serif";
  font-size: 15px;
  line-height: 18px;
  padding-bottom: 5px;
  color: var(--accent-color);
}
footer .footer-container .column {
  flex: 0 0 calc(calc(100% - 40%) / 3);
}
footer .footer-container .column h3 {
  font-family: opensans-bold, "sans-serif";
  font-size: 17px;
  line-height: 20px;
  padding-bottom: 30px;
  color: var(--accent-color);
}
footer .footer-container .column a {
  display: block;
  font-family: opensans-regular, "sans-serif";
  font-size: 15px;
  line-height: 18px;
  padding-bottom: 5px;
  color: var(--accent-color);
}
/* Who We Are Page Styling */
section.wwa-banner {
  z-index: -2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 32%);
}
section.wwa-banner:before {
  transform: scaleX(-1);
}
section.wwa-banner .banner-text-container {
  margin-left: auto;
}
section.about-wa_hvac > .container {
  flex-direction: row-reverse;
}
section.wwa-banner:after {
  bottom: -2px;
}
/* Leadership Section */
section.leadership {
  position: relative;
  /* height: 1600px; */
  margin-top: -300px;
  z-index: -1;
  padding: 400px 0;
}
section.leadership .container {
  /*transform: translateY(100%);*/
}
section.leadership .leadership-wrapper {
  /*height: 100%;*/
  display: grid;
  place-content: center;
}
section.leadership:after {
  content: "";
  position: absolute;
  top: 28px;
  left: -5%;
  right: -5%;
  background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
  transform: rotate(17.1deg);
  /* width: 100vw; */
  background-size: cover;
  height: 180px;
  z-index: -2;
}
/*@media (min-width: 1390px) and (max-width: 1430px) {*/
/*  section.leadership:after {*/
/*  transform: rotate(16.2deg);*/
/*  }*/
/*}*/
@media (min-width: 1440px) {
  section.leadership:after {
  top: 30px;
  transform: rotate(16.2deg);
  }
}
@media (min-width: 1450px) and (max-width: 1698px) {
  section.leadership:after {
  transform: rotate(15.4deg);
  }
}
@media (min-width: 1700px) {
  section.leadership:after {
  transform: rotate(16.2deg);
  }
}
@media (min-width: 1750px) and (max-width: 1898px) {
  section.leadership:after {
  transform: rotate(16.2deg);
  }
}
@media (min-width: 1900px) {
  section.leadership:after {
  transform: rotate(12.2deg);
  }
}
@media (min-width: 2400px) {
  section.leadership:after {
  transform: rotate(9.2deg);
  }
}
section.leadership:before {
content: "";
    position: absolute;
    top: 0;
    bottom: -5%;
    right: 0;
    left: 0;
    background-color: var(--accent-color);
    z-index: -1;
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
}
.leadership .leadership-wrapper > h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: #fff;
  padding-bottom: 30px;
  text-align: center;
}
.leadership-members {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.leadership-members > .leader-member {
  flex: 0 0 calc(25% - 20px);
  padding: 20px;
  color: #fff;
}
.leadership-members > .leader-member .leader-image{
    max-width: 200px;
    margin: 0 auto;
}
.leadership-members > .leader-member .leader-image img {
  display: block;
  width: 100%;
  height: 100%;
}
.leadership-members > .leader-member .leader-detail h3 {
  font-size: 22px;
  font-family: opensans-bold, "sans-serif";
  line-height: 26px;
  padding: 15px 0;
  text-align: center;
}
.leadership-members > .leader-member .leader-detail p {
  font-size: 17px;
  font-family: opensans-regular, "sans-serif";
  line-height: 21px;
  text-align: center;
}
/* Our Objective Section */
section.our-objectives {
  /*margin-top: -532px;*/
}
section.our-objectives .our-objectives-wrapper {
  max-width: 50%;
  transform: translateY(-60%);
}
section.our-objectives .our-objectives-wrapper h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: var(--accent-color);
  padding-bottom: 30px;
}
section.our-objectives .our-objectives-wrapper p {
  font-size: 17px;
  font-family: opensans-regular, "sans-serif";
  line-height: 21px;
  color: #000;
}
/* Objective List Section */
section.objective-list {
  position: relative;
  display: grid;
  place-content: center;
  /* height: 1200px; */
  z-index: -3;
  margin-top: -300px;
  padding: 400px 0;
}
section.objective-list:after {
  content: "";
  position: absolute;
  top: -150px;
  left: -5%;
  right: -5%;
  background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
  transform: rotate(16.21deg) scaleX(-1);
  background-size: cover;
  /* width: 110%; */
  height: 180px;
  z-index: -1;
}

@media (min-width: 1390px) and (max-width: 1430px) {
  section.objective-list:after {
  transform: rotate(16.21deg) scaleX(-1);
  }
}
@media (min-width: 1440px) {
  section.objective-list:after {
  transform: rotate(16.21deg) scaleX(-1);
  }
}

@media (min-width: 1450px) and (max-width: 1698px) {
  section.objective-list:after {
  transform: rotate(16.21deg) scaleX(-1);
  }
}

@media (min-width: 1700px) {
  section.objective-list:after {
  transform: rotate(13.21deg) scaleX(-1);
  }
}
@media (min-width: 1900px) {
  section.objective-list:after {
  transform: rotate(12.21deg) scaleX(-1);
  }
}
@media (min-width: 2400px) {
  section.objective-list:after {
  transform: rotate(9.61deg) scaleX(-1);
  }
}

section.objective-list:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: linear-gradient( 270deg, #679a76 35%, var(--accent-color) 85% );
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
  z-index: -2;
}
section.objective-list .objective-items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.objective-list .objective-items .objective-item {
  flex: 0 0 calc(33.33% - 20px);
  padding: 20px;
  color: #fff;
}
section.objective-list .objective-items .objective-item .objective-image {
  max-width: 80px;
  height: 80px;
  margin: 0 auto;
}
section.objective-list .objective-items .objective-item .objective-image img {
  width: 100%;
  height: 100%;
  display: block;
}

section.objective-list .objective-items .objective-item .objective-detail h3 {
  font-size: 22px;
  font-family: opensans-bold, "sans-serif";
  line-height: 26px;
  padding: 15px 0;
  text-align: center;
}
section.objective-list .objective-items .objective-item .objective-detail p {
  font-size: 17px;
  font-family: opensans-regular, "sans-serif";
  line-height: 21px;
  text-align: center;
}
/* Accreddication Section */
section.accreddication {
  position: relative;
  /* margin-top: -200px; */
  z-index: 3;
  padding: 50px 0;
  transform: translateY(-80%);
}

section.accreddication h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: var(--accent-color);
  padding-bottom: 30px;
  width: min-content;
}

/* Accreddication Item */
section.accreddication-items {
  position: relative;
  /* height: 800px; */
  display: grid;
  place-content: center;
  margin-top: -500px;
  padding: 600px 0 150px;
  z-index: -4;
}
section.accreddication-items:after {
  content: "";
  position: absolute;
  top: -25px;
  left: -5%;
  right: -5%;
  background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
  transform: rotate(14.1deg);
  background-size: cover;
  /* width: 110%; */
  height: 180px;
  z-index: 1;
}



section.accreddication-items:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: linear-gradient( 270deg, #679a76 35%, var(--accent-color) 85% );
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  z-index: -2;
}
section.accreddication-items .accreddication-list {
  display: flex;
    flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
section.accreddication-items .accreddication-list .accreddication-item {
  flex: 0 0 calc(33.33% - 20px);
  padding: 20px 60px;
  color: #fff;
}
section.accreddication-items
  .accreddication-list
  .accreddication-item
  .accreddication-detail
  h4 {
  font-size: 20px;
  font-family: opensans-regular, "sans-serif";
  line-height: 26px;
  padding: 15px 0;
  text-align: center;
}
section.accreddication-items
  .accreddication-list
  .accreddication-item
  .accreddication-image {
  max-width: 80px;
  height: 80px;
  margin: 0 auto;
}
section.accreddication-items
  .accreddication-list
  .accreddication-item
  .accreddication-image
  img {
  width: 100%;
  height: 100%;
  display: block;
}
/* Project Page Styling */
section.projects-tab {
  position: relative;
  margin-top: -100px;
}
section.projects-tab:before {
content: "";
    position: absolute;
    bottom: 330px;
    right: -15%;
    left: -15%;
    background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
    transform: rotate(-9.7deg);
    /* width: 100vw; */
    background-size: cover;
    height: 180px;
    z-index: -2;
}
section.projects-tab:after {
content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 450px;
    background-image: linear-gradient( 270deg, #ffffff -130%, var(--accent-color) 85% );
    clip-path: polygon(0 230px, 100% 0, 100% 100%, 0 100%);
    z-index: -2;
}
section.projects-tab .project-wrapper h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: var(--accent-color);
  padding-bottom: 15px;
  text-align: center;
}
section.projects-tab .project-wrapper p {
  font-size: 17px;
  font-family: opensans-bold, "sans-serif";
  line-height: 21px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
section.projects-tab .project-tab-items {
  border-bottom: 1px solid rgb(159, 159, 159);
  padding: 30px 0;
}
section.projects-tab .project-tab-items ul.tab-items {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.projects-tab .project-tab-items ul.tab-items li.tab-item {
  font-size: 17px;
  font-family: opensans-bold, "sans-serif";
  line-height: 21px;
  text-align: center;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
}
section.projects-tab .project-tab-items ul.tab-items li.tab-item.active {
  color: #fff;
  background-color: var(--accent-color);
}
.project-tab-content {
  display: flex;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
  padding: 40px 0;
}
.project-item {
  flex: 0 0 33.33%;
  padding: 20px;
  color: #fff;
}
.project-item .project-tab-image {
  max-width: 100%;
  aspect-ratio: 16 / 10;
}
.project-item .project-tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-item .project-category {
  padding: 20px 0;
}
.project-item .project-category span {
  font-size: 14px;
  font-family: opensans-bold, "sans-serif";
  line-height: 21px;
  color: #000;
  background-color: var(--secondary-color);
  padding: 0.5rem 1.5rem;
	margin-right: 10px;
}
.project-item .project-location {
  font-size: 12px;
  font-family: opensans-bold, "sans-serif";
  line-height: 21px;
  color: var(--accent-color);
  text-transform: uppercase;
}
.project-item > h3 {
  font-size: 22px;
  font-family: opensans-bold, "sans-serif";
  line-height: 21px;
  color: var(--accent-color);
  text-transform: uppercase;
  padding: 15px 0;
	color:#000 !important;
}
.project-item .view-project-button {
  padding: 10px 0;
}
.project-item .view-project-button a {
  font-size: 14px;
  font-family: opensans-bold, "sans-serif";
  line-height: 21px;
  color: #fff;
  background-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
}
.project-item .view-project-button a span {
  display: inline-block;
}
.project-item .view-project-button a span svg {
  fill: #fff;
  width: 25px;
  vertical-align: middle;
}
.project-item:nth-last-child(-n + 3) > .project-location,
.project-item:nth-last-child(-n + 3) > h3 {
  color: #000 !important;
}
footer {
  background-color: #fff;
}
/* single-page styling */

section.single-page-banner .banner-text-container {
  max-width: 580px;
}
.single-page-banner .banner-text h1 {
  text-align: right;
}
.project-content {
  margin-top: -100px;
}
section.project-content .project-content-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
section.project-content
  .project-content-container
  .project-description-wrapper {
  flex: 0 0 65%;
}
section.project-content .project-content-container .project-meta-detail {
  flex: 0 0 30%;
}
.project-description {
  padding-bottom: 50px;
}
.project-description h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: var(--accent-color);
  padding-bottom: 40px;
}
.project-other-details p,
.project-description p {
  font-size: 14px;
  font-family: opensans-regular, "sans-serif";
  line-height: 21px;
}
.project-other-details h3 {
  font-size: 22px;
  font-family: opensans-bold, "sans-serif";
  line-height: 28px;
  color: var(--accent-color);
  padding-bottom: 15px;
}
.project-meta-detail {
  background-color: #e7e7e7;
  margin-top: 100px;
  padding: 40px 20px;
}
.project-detail-container h3 {
  font-size: 22px;
  font-family: opensans-bold, "sans-serif";
  line-height: 28px;
  color: var(--accent-color);
  padding-bottom: 15px;
}
.project-detail-items .project-detail-list {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.project-detail-items .project-detail-list > div {
  flex: 0 0 50%;
}
.project-detail-items .project-detail-list p {
  padding: unset;
}
.project-detail-items .project-detail-list .project-detail-title {
  padding-right: 20px;
}
.project-detail-items .project-detail-list .project-detail-title h4 {
  font-size: 14px;
  font-family: opensans-bold, "sans-serif";
  line-height: 28px;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
}
.project-detail-items .project-detail-list .project-detail-subtitle p {
  font-size: 14px;
  line-height: 21px;
  font-family: opensans-bold, "sans-serif";
  color: var(--accent-color);
}
.project-gallery-container {
  transform: translateY(65%);
}

section.project-gallery {
  position: relative;
  height: 1200px;
}
section.project-gallery:after {
  content: "";
  position: absolute;
  top: 58px;
  left: -15%;
  right: -15%;
  background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
  transform: rotate(-14.4deg);
  background-size: cover;
  height: 180px;
  z-index: -2;
}
@media (min-width: 1900px){
    section.project-gallery:after {
          transform: rotate(-10.4deg);
    }
}
@media (min-width: 2400px){
    section.project-gallery:after {
          transform: rotate(-8.4deg);
    }
}
section.project-gallery:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--accent-color);
  z-index: -1;
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%);
  transform: scaleX(-1);
}
ul.photo-gallery-items {
  position: relative;
}
ul.photo-gallery-items svg.slick-arrow {
  width: 15px;
  fill: var(--secondary-color);
}
ul.photo-gallery-items svg.slick-arrow.prev {
  position: absolute;
  top: 38%;
  left: 15%;
  z-index: 9;
}
ul.photo-gallery-items svg.slick-arrow.next {
  position: absolute;
  top: 38%;
  right: 15%;
  z-index: 9;
}
.photo-gallery-item img {
  max-width: 750px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  aspect-ratio:16 / 9;
  object-fit: cover;
}
.photo-gallery-items .slick-dots {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.photo-gallery-items .slick-dots > li button {
  display: none;
}
.photo-gallery-items .slick-dots > li {
  position: relative;
  padding: 10px;
}
.photo-gallery-items .slick-dots > li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.photo-gallery-items .slick-dots > li.slick-active:before {
  background-color: var(--secondary-color);
}
.project-gallery-container h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: #fff;
  padding-bottom: 40px;
  text-align: center;
}
/* Testimonial Section */
section.testimonials {
  margin-top: -50px;
}
.testimonial-wrapper h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: var(--accent-color);
  padding-bottom: 40px;
  text-align: center;
}
.testimonial-video {
  position: relative;
}
.testimonial-video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url(../images/play-button.png);
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}

.testimonial-video > * {
  display: block;
  margin: 0 auto;
  aspect-ratio: 1;
  width: 520px;
  object-fit: cover;
}
/* Talk to us section */
.single-talk-to-us {
  position: relative;
  height: 800px;
  display: grid;
  place-content: center;
}
.single-talk-to-us:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--accent-color);
  clip-path: polygon(0 66%, 100% 0, 100% 100%, 0 100%);
  z-index: -2;
}
.single-talk-to-us:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: linear-gradient(90deg, #679a76 30%, #295a9a7d 100%);
  clip-path: polygon(0 66%, 100% 0, 100% 100%, 0 100%);
  transform: scaleX(-1);
  z-index: -2;
}
.single-talk-to-us > .container {
  transform: translateY(50%);
}
.single-ttu-text-container h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: #fff;
  padding-bottom: 20px;
  text-align: center;
}
.single-ttu-text-container {
  max-width: 600px;
}
.single-ttu-text-container p {
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}
.single-ttu-button {
  display: grid;
  place-content: center;
}
/* Contact Page Styling */
section.get-in-touch {
  margin-top: -200px;
}
section.get-in-touch .git-container {
  max-width: 400px;
}
section.get-in-touch .git-container h2 {
  font-size: 38px;
  font-family: opensans-bold, "sans-serif";
  line-height: 40px;
  color: var(--accent-color);
  padding-bottom: 20px;
}
section.get-in-touch .git-container p {
  font-size: 14px;
  font-family: opensans-bold, "sans-serif";
  line-height: 21px;
}
/* get in touch form */
section.git-form {
    position: relative;
    /* height: 600px; */
    padding-top: 30px;
    margin-top: 150px;
    z-index: 3;
    padding: 100px 0 120px;
}
section.git-form:after {
    content: "";
    position: absolute;
    top: -200px;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: linear-gradient(20deg, var(--accent-color) 78%, #fff0 150%);
    clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 85%);
    z-index: -2;
}
section.git-form:before {
    content: "";
    position: absolute;
    top: 0;
    left: -25%;
    right: -5%;
    background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
    transform: rotate(-23.4deg);
    /* width: 100vw; */
    background-size: cover;
    height: 180px;
    z-index: -2;
}

@media (min-width: 1439px) {
  section.git-form:before {
   transform: rotate(-22deg);
  }
}
@media (min-width: 1900px) {
  section.git-form:before {
   transform: rotate(-17deg);
  }
}
@media (min-width: 2400px) {
  section.git-form:before {
   transform: rotate(-13deg);
  }
}

.git-form-container {
  display: flex;
  justify-content: space-between;
  margin-top: -70px;
  transform: translateY(-23%);
}
.git-form-main {
  max-width: 600px;
}
.git-form-main form{
    position: relative;
}
.git-form-main form .wpcf7-response-output{
position: absolute;
    color: #fff;
    bottom: -60px;
    left: -10px;
}
.git-form-main form > p {
  display: flex;
  flex-wrap: wrap;
}
.git-form-main form > p > span:not(.wpcf7-spinner){
    width: 100%;
}
.git-form-main form label {
  flex: 0 0 calc(100% - 20px);
  margin: 10px;
  margin-left: unset;
  margin-bottom: 20px;
}
.git-form-main form textarea {
  flex: 0 0 calc(100% - 20px);
  border: 1px solid var(--accent-color);
  padding: 20px;
  color: var(--accent-color);
  margin-bottom: 30px;
  width: calc(100% - 20px);
}
.git-form-main form label input {
  height: 50px;
  width: 100%;
  border: 1px solid var(--accent-color);
  padding: 20px;
  border-radius: 3px;
  color: var(--accent-color);
}
.git-form-main form textarea::placeholder,
.git-form-main form label input::placeholder {
  font-size: 12px;
  font-family: opensans-bold, "sans-serif";
  color: var(--accent-color);
}
.git-form-main form label[for="lname"],
.git-form-main form label[for="fname"] {
  flex: 0 0 calc(50% - 20px);
}
.git-form-main form label[for="fname"] {
  margin-right: 20px;
}
.git-form-main form label[for="lname"] {
  margin-right: unset;
}
.git-form-main form button.wa_hvac-secondary-btn {
  padding: 0.5rem 2.8rem;
}
.wa-hvac-address {
  margin: 0 auto;
  padding-left: 60px;
}
.wa-hvac-address .address-container{
    padding-top: 40px;
}
.wa-hvac-address h3 {
  font-size: 38px;
  font-family: opensans-bold, "sans-serif";
  line-height: 40px;
  padding-bottom: 50px;
}
.address-container .address-field {
  display: flex;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
}
.address-container .address-icon {
  margin-right: 20px;
}
.address-container .address-icon svg {
  width: 30px;
  height: 30px;
  fill: rgb(255, 255, 255);
}
.address-container .address-content h4 {
  font-size: 22px;
  font-family: opensans-bold, "sans-serif";
  line-height: 24px;
  padding-bottom: 20px;
}
.address-container .address-content a,
.address-container .address-content p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding-bottom: 0;
}
/* Map styling */
section.contact-map {
  position: relative;
  z-index: 2;
  margin-top: -235px;
}
.map-container iframe {
  width: 100%;
  height: 550px;
}
.our_projects_sec:before {
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%);
  transform: scaleX(-1);
}
/*.our_projects_sec {*/
/*  height: 1400px;*/
/*}*/
.sector-listitems {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sector-listitems .sector-item {
  flex: 0 0 calc(25% - 30px);
  border: 1px solid var(--secondary-color);
  padding: 10px;
}
.sector-listitems .sector-list-icon {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.sector-listitems .sector-list-icon img{
    width: 100%;
    height: 100%;
}
.sector-listitems .sector-list-content > a{
    all: unset;
    cursor: pointer;
}
.sector-listitems .sector-list-content {
  text-align: center;
  color: #fff;
}
.sector-listitems .sector-list-content h3 {
  font-family: opensans-bold, "sans-serif";
  font-size: 22px;
  padding-bottom: 10px;
}
.sector-listitems .sector-list-content p {
  font-size: 14px;
}

/* Start 2022-April-4 */
section.maintenance-dec {
  margin-top: -255px;
}
section.maintenance-dec > .container {
  flex-direction: row;
}
.maintenance_icon {
  height: 150px;
  width: 150px;
}
.maintenance_icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
section.maintenance-dec > .container > div.wwa-text-container {
  flex: 0 0 80%;
}
section.maintenance-dec > .container > div.wwa-text-container h2 {
  padding-top: 30px;
  color: #000;
}
.maintenance_service h2 {
  text-transform: capitalize;
  max-width: 350px;
}
section.maintenance-dec > .container > div.wwa-image-container {
  flex: 0 0 20%;
  height: 612px;
}
section.maintenance-list:after {
    background-image: url(../../../wp-content/uploads/2022/04/pattline.png);
    transform: rotate(25.4deg) scaleX(1);
    left: -20%;
    right: -10%;
    top: -130px;
    /* width: 100%; */
    background-color: #7590b73b;
    background-blend-mode: screen;
}


section.maintenance-list:before {
  background-image: linear-gradient(
    241deg,
    #7a99c0 1%,
    var(--accent-color) 85%
  );
}
.row-items,
.project_row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row-items .col-item {
  flex: 0 0 50%;
  padding: 0 15px;
}
.row-items .col-item li {
  position: relative;
  display: flex;
  column-gap: 20px;
  color: #fff;
  font-family: opensans-regular, "sans-serif";
  font-size: 18px;
}
.row-items .col-item li:before {
  content: "";
  background-image: url(../../../wp-content/uploads/2022/04/pointer.png);
  max-width: 50px;
  width: 100%;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.row-items .col-item ul {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
section.maintenance-acc-items:after {
    top: 333px;
    transform: rotate(19.2deg);
    left: -15%;
    right: -15%;
}

section.maintenance-acc-items:before {
  clip-path: polygon(20% 50%, 100% 100%, 100% 0);
  background-image: url(../../../wp-content/uploads/2022/04/guilherme-cunha-4zwozQxDbD4-unsplash.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
section.maintenance-acc-items {
  z-index: -3;
  margin-top: -416px;
}
section.maintenance-list:before {
    transform: scaleX(-1);
    clip-path: polygon(-65% 49%, 100% -12.2%, 100% 100%, 0% 100%);
    background-image: linear-gradient(45deg, #679a76 13%, transparent 40%);
    clip-path: unset;
    top: 10%;
}
.main_obj_wrapper_sec {
  position: relative;
  z-index: 9;
}
.main_obj_wrapper_sec:before {
  content: "";
  z-index: -4;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(    204deg,    #7590b7 8%,    var(--accent-color) 24%  );
  clip-path: polygon(0 12%, 100% 0, 100% 86%, 0 100%);
}
.why_choose_sec {
  margin-top: -1px;
  clip-path: polygon(0 100%, 200% 0, 100% 0%, 0 0%);
  padding-bottom: 400px;
}
.why_choose_sec_wrap h2 {
  font-size: 50px;
  font-family: opensans-bold, "sans-serif";
  line-height: 60px;
  color: #fff;
  padding-bottom: 50px;
  text-align: center;
}
section.testimonials_sec {
    margin-top: -170px;
}
section.testimonials_sec > .container{
    transform: translateY(20%);
}
section.testimonials_sec:before{
    transform: scaleX(-1) rotate(15.4deg);
    top: -50px;
}
@media (min-width: 1900px){
    section.testimonials_sec:before{
        transform: scaleX(-1) rotate(9.4deg);
    }
}
@media (min-width: 2400px){
    section.testimonials_sec:before{
        transform: scaleX(-1) rotate(7.1deg);
    }
}
.testimonials_sec_slider .slick-list {
  margin: 0 -30px;
}
.each_slider {
  position: relative;
  padding: 0 30px;
}
.each_slider > figure {
  height: 400px;
  width: 100%;
}
.play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  height: 100px;
  width: 100px;
}
.play_btn img,
.each_slider > figure img,
.project_featured_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.each_slider > figure img {
  object-position: top;
}
.testimonials_sec_slider svg.slick-arrow {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 9;
}
.testimonials_sec_slider svg.slick-arrow path {
  stroke: var(--secondary-color);
}
.testimonials_sec_slider svg.slick-arrow.next {
  right: -8%;
}
.testimonials_sec_slider svg.slick-arrow.prev {
  left: -8%;
}
.project_row .project_col {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding: 0 15px;
}
.our_projects_sec .single-ttu-text-container {
  max-width: 100%;
}
.our_projects_sec {
  /*height: 1400px;*/
  display: grid;
  place-content: center;
  padding: 700px 0;
}
.each_project {
  position: relative;
  height: 100%;
}
a.project_title {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(142, 193, 111, 0.7);
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;
}
.our_projects_sec:after {
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
  background-image: linear-gradient(90deg, #679a765e 30%, transparent 100%);
  z-index: -4;
}
.our_projects_sec:before {
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%);
  transform: scaleX(-1);
  z-index: -4;
}
.testimonials_talk_us {
  margin-top: -580px;
/*   z-index: -4; */
}
.footer_slash {
  position: relative;
}
.footer_slash:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: unset;
  background-image: url(../images/blue.png);
  background-size: cover;
  height: 180px;
  transform: scaleX(1) rotate(15deg) translate(-191px, -400px);
  width: 120%;
}
.our_projects_sec > .container {
  position: relative;
  z-index: 9;
  transform: translateY(0%);
}
.testimonials_talk_us:before {
  background-image: linear-gradient(90deg, #fff -20%, #84a1cd 62%, #679a76 82%);
/*   z-index: -5; */
  background-color: transparent;
}
.testimonials_talk_us:after {
  display: none;
  z-index: unset;
  background-image: url(../images/blue.png);
  background-size: cover;
  height: 180px;
  clip-path: none;
  transform: scaleX(1) rotate(15deg) translate(-140px, 130px);
  width: 120%;
}
.testimonials_talk_us > .container {
  transform: translateY(67%);
}
/* Slick Slider Css */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slick Slider Css */
/* 2022-April-4 End */
body.single-sector section.testimonials_sec:before{
    transform: scaleX(-1) rotate(12deg);
}
.single-project .project-gallery-container{
    transform: translateY(55%);
}
/* Responsive Design */

@media (max-width: 768px) {
/* 	.sectors-container .service-icon-content{
  display: block !important;
} */
  section.banner {
    height: calc(100vh - 100px);
  }
  section.banner:before {
    background: linear-gradient(
      90deg,
      var(--accent-color) 5%,
      rgba(254, 254, 254, 0) 60%
    );
  }
  section.banner .banner-text-container{
      max-width: 80%;
  }
  section.banner .banner-text-container .scroll-down {
    bottom: 20%;
  }
  section.who-we-are {
    margin-top: 0;
  }
  section.who-we-are > .container > div.wwa-text-container {
    flex-basis: 100%;
    max-width: 600px;
    margin-bottom: 50px;
  }
  section.who-we-are > .container > div.wwa-image-container{
      flex: 0 0 100%;
      max-width: 520px;
  }
  .designed-and-installed {
    margin-top: -350px;
  }
  .designed-and-installed:before {
    width: 150vw;
  }
  .designed-and-installed:after {
    right: -570px;
  }
  .designed-and-installed .dai-text-container {
    padding-top: 100px;
  }
  .services {
    margin-top: -500px;
  }
  .services::after {
    width: 150vw;
    transform: scaleX(-1) rotate(-24.3deg) translateX(148px);
    top: 70px;
  }
  .services-container{
      gap: 50px;
  }
  .services-container > div.icon-text-container {
    flex: 0 0 100%;
    max-width: 500px;
  }
  /* .sectors-container > div.icon-text-container .service-icon-content, */
/*   .services-container > div.icon-text-container .service-icon-content {
    display: block !important;
  } */
  section.services .services-container .icon-text-container:last-child {
    margin-top: 0;
  }
  .services::before {
    clip-path: polygon(0 0, 100% 15%, 100% 85%, 0% 100%);
  }
  section.sectors{
      padding-bottom: 90px;
  }
  section.sectors:before {
left: -15%;
    right: -15%;
    transform: scaleX(-1) rotate(26deg);
    top: 10px;
  }
  section.video-section {
    margin-top: 50px;
  }
  .sectors-container > div.icon-text-container {
    flex-basis: 50%;
  }
  .video-section:before {
top: -140px;
  }
  .video-section-container {
    flex-wrap: wrap;
  }
  .video-section-container > * {
    flex: 0 0 100%;
  }
  .video-text-container {
    max-width: 500px;
  }
  section.video-section .video-text-container p,
  section.video-section .video-text-container h2,
  section.video-section .video-text-container h3 {
    padding-bottom: 30px;
  }
  .video-image-container {
    max-width: 520px;
    margin-top: 50px;
  }
  section.talk-to-us > .container {
    transform: translateY(90%);
}
  .talk-to-us:after {
    top: -2407px;
    clip-path: polygon(0 48.6%, 100% 55%, 100% 100%, 82% 100%, 0 100%);
    background-image: linear-gradient(110deg, transparent 45%, #87bd66 140%);
  }
  .talk-to-us:before {
    background-image: linear-gradient(-130deg, #b6cdf7 40%, #295a9a 65%);
    clip-path: polygon(100% 34%, 100% 100%, 83% 100%, 0 100%, 0 62%);
  }
  section.about-wa_hvac > .container {
    justify-content: flex-end;
  }
    section.leadership{
        padding: 300px 0;
    }
    section.leadership .container {
    transform: translateY(10%);
}
  section.leadership:after {
    left: -15%;
    right: -15%;
    top: -50px;
  }
  .leadership-members > .leader-member {
    flex: 0 0 calc(50% - 20px);
  }
  section.leadership:before {
clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
  }
  section.our-objectives {
    margin-top: 300px;
  }
  section.objective-list:after {
      top: -560px;
    right: -15%;
    left: -15%;
  }
  section.our-objectives .our-objectives-wrapper{
      max-width: 80%;
  }
  section.objective-list .objective-items .objective-item {
    flex: 0 0 calc(50% - 20px);
    padding-left: 0;
    padding-right: 0;
  }
  section.objective-list .objective-items {
    justify-content: center;
  }
  section.objective-list{
      margin-top: -85px;
      padding: 200px 0;
  }
  section.objective-list:before {
    bottom: -15%;
    top: -15%;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
  }
  section.accreddication {
    margin-top: 385px;
  }
  section.accreddication-items:after {
    top: -100px;
  }
  section.accreddication-items .accreddication-list .accreddication-item {
    padding-left: 0;
    padding-right: 0;
  }
  body.single-sector .maintenance_service .our-objectives-wrapper,
 body.single-service .maintenance_service .our-objectives-wrapper{
          transform: translateY(30%);
  }
  .main_obj_wrapper_sec:before{
      clip-path: polygon(0 10%, 100% 0, 100% 88%, 0 100%);
  }
  body.single-service section.maintenance-list:before{
      bottom: 4%;
          clip-path: polygon(-39% 24%, 154% -18.5%, 100% 108%, 0% 91%);
  }
  body.single-sector section.maintenance-acc-items:after,
  body.single-service section.maintenance-acc-items:after{
      top: 320px;
    transform: rotate(31.3deg);
    width: unset;
    left: -25%;
    right: -25%;
  }
  .row-items .col-item{
      display: contents;
  }
  section.maintenance-dec > .container {
    justify-content: unset;
  }
  section.maintenance-list {
    height: unset;
    padding: 400px 0;
  }
  section.maintenance-list:after {
    transform: rotate(25.2deg) scaleX(-1) translateX(0px);
    width: 150vw;
    top: -182px;
  }
  section.maintenance-list:before {
    clip-path: polygon(-39% 24%, 154% -18.5%, 100% 108%, 0% 68%);
    background-image: linear-gradient(60deg, #679a76 1%, transparent 30%);
  }
  section.maintenance-acc-items:after {
    transform: rotate(33.1deg) translateX(-95px);
    top: 467px;
    z-index: -2;
    width: 150vw;
  }
    body.single-sector section.sectors:before,
    body.single-service section.sectors:before{
     left: -15%;
    right: -15%;
    transform: scaleX(-1) rotate(28.2deg);
    top: -230px;
    }
    body.single-sector section.testimonials_sec:before{
        transform: scaleX(-1) rotate(24deg);
    }
  section.testimonials_sec {
    margin-top: 0;
    padding-top: 0;
  }
  .each_slider > figure {
    padding: 20px;
  }
  .our_projects_sec .single-ttu-text-container {
    padding: 100px 0;
  }
  .project_row{
      row-gap: 30px;
  }
  .project_row .project_col {
    flex: 0 0 50%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .sector-listitems .sector-item {
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 30px;
  }
  .why_choose_sec {
    clip-path: polygon(0 125%, 200% 0, 100% 0%, 0 0%);
  }
  section.projects-tab {
    margin-top: 0;
  }
  section.projects-tab .project-tab-items ul.tab-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  section.projects-tab .project-tab-items ul.tab-items li.tab-item {
    margin: 10px 0;
  }
  .project-item {
    flex: 0 0 50%;
  }

  section.projects-tab:before {
    transform: rotate(-16.7deg);
  }
  .single-project .project-content {
    margin-top: 0;
  }
  section.project-content .project-content-container {
    flex-wrap: wrap;
  }
  section.project-content
    .project-content-container
    .project-description-wrapper {
    flex: 0 0 100%;
    max-width: 600px;
  }
  section.project-content .project-content-container .project-meta-detail {
    flex: 0 0 60%;
  }
  section.project-gallery:after {
      transform: rotate(-25.4deg);
  }
  ul.photo-gallery-items svg.slick-arrow.next{
      right: -2%;
  }
    ul.photo-gallery-items svg.slick-arrow.prev{
      left: -2%;
  }
  .photo-gallery-item img{
      max-width: 650px;
  }
  .single-project .project-gallery-container{
          transform: translateY(65%);
  }
  section.get-in-touch{
      margin-top: 0;
  }
  .git-form-container {
    flex-direction: column;
    transform: translateY(-15%);
  }
  section.git-form {
    height: unset;
    padding-bottom: 200px;
  }
  section.git-form:after {
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 85%);
  }
  section.git-form:before {
      top: -40px;
    right: -25%;
    transform: rotate(-37.5deg);
  }
  .wa-hvac-address {
    padding-left: 0;
    padding-top: 30px;
    margin: 0;
  }
  .wa-hvac-address h3 {
    font-size: 40px;
    padding-bottom: 20px;
  }
  .maintenance-dec .container > .wwa-image-container{
    display: none;
  }
    section.banner .banner-text-container .banner-text h1{
      text-align: right;
  }
     body.home section.banner .banner-text-container .banner-text h1{
      text-align: left;
  }
}
.wa_hvac-homepage section.banner .container {
  height: 100%;
position: relative;
}
section.banner .banner-text-container .scroll-down{
  	left: 0;
	bottom: 0;
}
@media (max-width: 520px){
  section.banner {
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}
section.banner .banner-text-container{
    max-width: 100%;
}
section.banner .banner-text-container .banner-text{
    padding-bottom: 100px;
}
section.banner .banner-text-container .banner-text h1{
  font-size: 36px;
  line-height: 42px;
}
.designed-and-installed{
    margin-top: -230px;
    padding: 200px 0;
}
.designed-and-installed:before{
    width: unset;
    left: -15%;
    right: -15%;
}
section.video-section .video-image-container,
section.who-we-are > .container > div.wwa-image-container{
  height: 290px;
}
section > .container h2{
  font-size: 32px !important;
  line-height: 36px !important;
  padding-bottom: 5px !important;
}
.services{
    padding: 200px 0;
}
.services::after{
left: -25%;
    right: -25%;
    width: unset;
    transform: scale(-1) rotate(25.7deg);
    top: 0;
}
.services::before {
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0% 100%);
}
section.sectors{
    margin-top: -180px;
}
section.sectors:before{
        left: -25%;
    right: -25%;
        transform: scaleX(-1) rotate(25deg);
}
.sectors-container,
.services-container{
  margin-top: 50px;
}
.services-container > div.icon-text-container{
  margin-bottom: 50px;
}
.sectors-container{
    flex-direction: column;
  align-items: center;
  gap: 50px;
}
/* .sectors-container .service-icon-content{
  display: block !important;
} */
.sectors-container > div.icon-text-container{
  height: 200px;
  flex-basis: 100%;
}
section.video-section{
  margin-top: 500px;
}
.page-template-homepage section.video-section > .container{
        transform: translateY(-35%);
}
.video-section:before{
    top: -490px;
    left: -25%;
    right: -25%;
    transform: scaleX(-1) rotate(-21.3deg);
}
.talk-to-us{
  padding: 0px 0 500px;
  margin-top: -400px;
}
section.talk-to-us > .container{
      transform: translateY(120%);  
}
.ttu-button{
    flex-direction: column;
}
.ttu-button > a{
    width: 70%;
    text-align: center;
}
.main-header .container .navmenu ul#primary-menu li#menu-item-219 a{
    font-size: 22px;
}
.menu-main-header-container ul#primary-menu > li.menu-item-has-children:after{
    font-size: 30px;
    right: 40px !important;
}
.talk-to-us:before{
    top: -40%;
  clip-path: polygon(100% 44%, 100% 100%, 83% 100%, 0 100%, 0 62%);
}
.talk-to-us:after{
  clip-path: polygon(0 52.6%, 100% 59%, 100% 100%, 82% 100%, 0 78%);
clip-path: unset;
    top: -800px;
}
.mobile-menu svg{
  width: 30px;
}
/* Footer */
footer .footer-container{
  flex-wrap: wrap;
}
footer .footer-container .footer-logo-container{
  flex: 0 0 100%;
  margin-bottom: 30px;
}
footer .footer-container .column{
  flex: 0 0 33.33%;
}
footer .footer-container .column h3{
  font-size: 14px;
  padding-bottom: 20px;
}
footer .footer-container .column a{
  font-size: 13px;
}
section.leadership{
    padding: 100px 0;
    margin-top: 0;
}
section.leadership .container{
        transform: unset;
}
section.leadership:after{
    top: -150px;
    transform: rotate(23deg);
}
.leadership-members > .leader-member{
  flex: 0 0 50%;
  padding: 20px 15px;
}
section.objective-list .objective-items .objective-item .objective-detail h3,
.leadership-members > .leader-member .leader-detail h3{
  font-size: 16px;
  line-height: 18px;
}
section.objective-list .objective-items .objective-item .objective-detail p,
.leadership-members > .leader-member .leader-detail p{
  font-size: 14px;
  line-height: 18px;
}
section.leadership:before {
    top: -5%;
    bottom: -5%;
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
}

section.our-objectives .our-objectives-wrapper{
  max-width: 80%;
}
section.objective-list{
    margin-top: -185px;
    padding: 100px 0;
}
section.objective-list:after{
transform: rotate(23deg);

}
section.objective-list:before{
clip-path:polygon(0 19%, 100% 0, 100% 100%, 0 83%);
}
section.objective-list .objective-items{
    flex-direction: column;
}
section.accreddication-items{
  padding: 200px 0 0;
  margin-top: -180px;
}

section.accreddication{
  margin-top: 230px;
}
section.accreddication > .container{
    transform: translateY(50%);
}
section.accreddication-items:after{
    left: -25%;
    right: -25%;
    top: -273px;
    transform: rotate(31deg);
}
section.our-objectives .our-objectives-wrapper h2,
section.accreddication h2{
  position: relative;
  padding-top: 20px;
  z-index: 10;
}
section.accreddication-items:before{
  clip-path: polygon(0 27%, 100% 0, 100% 100%, 0 100%);
}
section.accreddication-items .accreddication-list{
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
section.accreddication-items .accreddication-list .accreddication-item{
  flex-basis: 50%;
}
.row-items .col-item{
  display: contents;
}
body.single-sector .maintenance_service .our-objectives-wrapper, body.single-service .maintenance_service .our-objectives-wrapper {
    transform: translateY(-100%);
}
body.single-service section.maintenance-list:before {
    bottom: -5%;
    clip-path: polygon(-39% 24%, 154% -18.5%, 100% 108%, 0% 100%);
}
.row-items .col-item li:before{
    max-width: 40px;
}
/*section.our-objectives{*/
/*  margin-top: 100px;*/
/*}*/
/*section.objective-list:after{*/
/*  transform: rotate(29.5deg) scaleX(-1) translateX(97px);*/
/*  width: 200vw;*/
/*  top: -340px;*/
/*}*/
section.maintenance-list{
  padding: 200px 0;
}
.single-service section.maintenance-acc-items{
    margin-top: -60px;
}
body.single-sector section.maintenance-acc-items:after, body.single-service section.maintenance-acc-items:after{
    display: none;
}
.single-sector section.testimonials_sec,
.single-service section.testimonials_sec{
    margin-top:0;
}

body.single-sector section.sectors:before, body.single-service section.sectors:before {
    left: -25%;
    right: -25%;
    transform: scaleX(-1) rotate(34.2deg);
    top: -230px;
}
body.single-sector section.sectors:before{
    transform: scaleX(-1) rotate(28.2deg);
    top: -204px;
}
.main_obj_wrapper_sec:before {
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
}
section.maintenance-acc-items{
  padding-bottom: 200px;
}
section.maintenance-acc-items:before {
  clip-path: polygon(0% 44%, 100% 0%, 100% 100%, 0 45%);
}
section.maintenance-acc-items:after {
  transform: rotate(29.6deg) translateX(-15px);
  top: 181px;
  z-index: -2;
}
section.maintenance-list:before {
  clip-path: polygon(0 19%, 100% 0, 100% 100%, 0 91%);
}
section.why_choose_sec .why_choose_sec_wrap,
section.maintenance-list .row-items{
  transform: translateY(10%);
}
section.why_choose_sec{
  padding-bottom: 300px;
}
section.why_choose_sec .why_choose_sec_wrap h2{
  padding-bottom: 30px !important;
}
.each_slider > figure{
  aspect-ratio: 1;
  height: 300px;
}
.play_btn{
  height: 80px;
width: 80px;
}
.testimonials_sec_slider svg.slick-arrow{
  width: 50px;
  height: 50px;
}
.our_projects_sec{
  height: unset;
  padding: 150px 0;
}
.footer_slash{
  display: none;
}
.testimonials_talk_us{
  height: unset;
  padding: 100px 0 300px;
  margin-top: -340px;
}
.testimonials_talk_us:before{
  clip-path: polygon(0 47%, 100% 0, 100% 100%, 0 100%);
}
.testimonials_talk_us > .container{
  transform: translateY(90%);
}
.project_row .project_col{
  padding: 0 10px;
}
section.our_projects_sec .single-ttu-text-container > h2{
  padding-bottom: 30px !important;
}
.our_projects_sec > .container{
  transform: translateY(10%);
}
a.project_title{
  font-size: 14px;
}
.single-sector .sector-listitems .sector-item{
  flex-basis: 100%;
}
.sector-listitems .sector-list-icon svg{
  width: 80px;
  height: 80px;
}
.sector-listitems .sector-list-content h3{
  font-size: 18px;
}
.sector-listitems .sector-list-content p{
  font-size: 12px;
}
.why_choose_sec {
  clip-path: polygon(0 146%, 200% 0, 100% 0%, 0 0%);
}
.project-item{
  padding: 10px;
  flex-basis: 100%;
}
.project-item .project-category{
  padding: 10px 0;
}
.project-item .project-category span{
  font-size: 12px;
}
.project-item .project-location{
  font-size: 10px;
}
.project-item > h3{
  font-size: 18px;
  padding: 5px 0;
}
.project-item .view-project-button a{
  font-size: 12px;
}
.project-item .view-project-button a span svg{
  width: 20px;
  margin-left: 3px;
}
section.projects-tab:before{
transform: rotate(-31.2deg);
    left: -25%;
    right: -25%;
}
section.project-content .project-content-container .project-meta-detail{
  flex-basis: 100%;
}
section.project-gallery{
  height: unset;
  padding: 200px 0;
}
.project-gallery-container{
  transform: unset;
}
section.project-gallery:after{
  transform: rotate(-34.5deg) translateX(-305px);
  width: 200vw;
  top: -140px;
}
.testimonial-video {
  height: 290px;
}
.testimonial-video img{
  width: 100%;
  height: 100%;
}
section.testimonials .testimonial-wrapper h2{
  padding-bottom: 30px !important;
}
.testimonial-video:before{
  width: 80px;
  height: 80px;
}
.wa_hvac-single-page .single-talk-to-us{
height: unset;
padding: 150px 0;
}
.wa_hvac-single-page .single-talk-to-us > .container{
  transform: translateY(30%);
}
section.get-in-touch{
  margin-top: 0;
}
section.git-form:before {
    right: -85%;
    transform: rotate(-56deg);
    left: -85%;
}
.wa-hvac-address h3{
  font-size: 38px !important;
  line-height: 40px !important;
}
.address-container .address-icon svg{
  width: 25px;
  height: 25px;
}
.address-container .address-content h4{
  font-size: 18px;
  padding-bottom: 10px;
}
.address-container .address-content a, .address-container .address-content p{
  font-size: 14px;
}
.our_projects_sec:before {
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
}
.project_row{
    flex-direction: column;
}
.leadership-members > .leader-member{
  flex: 0 0 100%;
}
.designed-and-installed .dai-text-container{
    padding-top: 50px;
}
}

@media (min-width: 1900px) {
  section.accreddication-items:after {
    transform: rotate(11.4deg);
  }
}
@media (min-width: 2400px) {
  section.accreddication-items:after {
    transform: rotate(9.3deg);
  }
}
@media (min-width: 1570px) {
  .services::after {
  transform: scaleX(-1) rotate(-15.5deg);
  }
}
@media (min-width: 1750px) {
  .services::after {
  transform: scaleX(-1) rotate(-14.5deg);
  }
}
@media (min-width: 1900px) {
  .services::after {
  transform: scaleX(-1) rotate(-13.5deg);
  }
}
@media (min-width: 2400px) {
  .services::after {
    transform: scaleX(-1) rotate(-10.3deg);
  }
}
@media (min-width: 1439px) {
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(17.6deg);
  }
}
@media (min-width: 1519px) {
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(17deg);
  }
}
@media (min-width:1679px){
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(15.4deg);
  }
}
@media (min-width:1779px){
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(14.4deg);
  }
}
@media (min-width: 1900px) {
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(13.7deg);
  }
}
@media (min-width: 1980px) {
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(12.7deg);
  }
}
@media (min-width: 2200px) {
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(11deg);
  }
}
@media (min-width: 2120px) {
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(12deg);
  }
}
@media (min-width: 2400px) {
 .single-sector section.maintenance-acc-items:after,
 .single-service section.maintenance-acc-items:after {
    transform: rotate(10.4deg);
  }
}

@media (min-width: 1439px){
  section.projects-tab:before {
    transform: rotate(-9deg);
  }
}
@media (min-width: 1900px) {
  section.projects-tab:before {
transform: rotate(-7.4deg);
  }
}
@media (min-width: 2400px) {
  section.projects-tab:before {
transform: rotate(-5.2deg);
  }
}


@media (min-width: 1390px) and (max-width: 1430px) {
  .wa_hvac-sector section.accreddication-items:after {
    transform: rotate(17.2deg);
  }
}
@media (min-width: 1440px) {
 .wa_hvac-sector section.accreddication-items:after {
  transform: rotate(19.6deg);
  top: 413px;
  }
}
@media (min-width: 1700px) {
 .wa_hvac-sector section.accreddication-items:after {
    transform: rotate(15.4deg);
    bottom: 256px;
  }
}
@media (min-width: 1900px) {
 .wa_hvac-sector section.accreddication-items:after {
    transform: rotate(14.6deg);
    top: 420px;
  }
}
@media (min-width: 2400px) {
 .wa_hvac-sector section.accreddication-items:after {
  transform: rotate(11deg);
  top: 425px;
  }
}
@media (min-width: 2561px) {
 .wa_hvac-sector section.accreddication-items:after {
  transform: rotate(6.4deg);
  top: 439px;
  }
}

.wa_hvac-who-we-are section.objective-list .objective-items{
  justify-content: space-between;
}
header.main-header{
  position: fixed;
  top: 0;
  left:0;
  right:0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}
body.admin-bar header.main-header{
	top: 32px;
}
body.page-template-homepage section.banner > .container{
	position: relative;
}
body.page-template-contact section.contact-banner:before{
    opacity: 0.8;
}
.menu-main-header-container ul#primary-menu > li{
    padding: 20px 0;
}
.menu-main-header-container ul#primary-menu li ul.sub-menu {
    position: absolute;
    width: max-content;
    background: #fff;
    padding: 30px 60px 10px 10px;
    top: 60px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s opacity ease-in-out
}
.menu-main-header-container ul#primary-menu li ul.sub-menu > li{
    padding: 5px;
}
.menu-main-header-container ul#primary-menu > li.menu-item-has-children:hover > ul.sub-menu{
    opacity: 1;
    visibility: visible;
}

.single-project section.project-gallery:before{
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
}
.menu-main-header-container ul#primary-menu > li.menu-item-has-children{
    position: relative;
}
.menu-main-header-container ul#primary-menu > li.menu-item-has-children:after{
    content: " ";
    position: absolute;
    top: 26px;
    right: -25px;
    background-image: url(../../../wp-content/uploads/2022/04/angle-down-solid.svg);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    fill: var(--accent-color);
    cursor: pointer;
}
/*p:empty{*/
/*    display: none;*/
/*}*/

@media (min-width: 1920px){
    body.single-sector section.testimonials_sec:before{
        transform: scaleX(-1) rotate(9.5deg);
    }
}
@media (min-width: 2400px){
    body.single-sector section.testimonials_sec:before{
        transform: scaleX(-1) rotate(7.2deg);
    }
}
@media (width: 320px){
    .services::after{
        transform: scale(-1) rotate(30.7deg);
    }
    section.sectors:before{
        transform: scaleX(-1) rotate(30deg);
}
section.talk-to-us > .container{
      transform: translateY(100%);  
}
section.our-objectives .our-objectives-wrapper{
    max-width: 100%;
        transform: translateY(-70%);
}
  section.objective-list:after{
    transform: rotate(27deg);
    left: -25%;
    right: -25%;
    top: -550px;
  }
  section > .container h2{
      font-size: 28px !important;
      line-height: 32px !important;
  }
    section > .container p{
      font-size: 15px !important;
      line-height: 20px !important;
  }
  .maintenance_icon,
  section.accreddication-items .accreddication-list .accreddication-item .accreddication-image,
  section.objective-list .objective-items .objective-item .objective-image{
    max-width: 100px;
    height: 100px;
  }
  body.single-sector .maintenance_service .our-objectives-wrapper, body.single-service .maintenance_service .our-objectives-wrapper{
          transform: translateY(50%);
  }
  section.accreddication-items:after{
      left: -55%;
    right: -55%;
    transform: rotate(36deg);
  }
  section.maintenance-list{
      margin-top: 35px;
  }
  section.maintenance_service{
      margin-top: 200px;
  }
  section.maintenance-list:after{
      top: -292px;
  }
  body.single-sector section.sectors:before, body.single-service section.sectors:before{
          left: -45%;
    right: -45%;
    transform: scaleX(-1) rotate(39.2deg);
  }
  .testimonials_talk_us > .container {
    transform: translateY(75%);
}
  .row-items, .project_row{
    margin: 0;
  }
 body.single-sector section.maintenance-list:before {
    clip-path: polygon(0 19%, 100% 0, 100% 100%, 0 91%);
    bottom: -1%;
}
  section.maintenance-acc-items:after{
    display: none;
  }
  section.why_choose_sec .why_choose_sec_wrap, section.maintenance-list .row-items {
    transform: translateY(0%);
}
body.single-sector section.testimonials_sec:before{
        transform: scaleX(-1) rotate(36.2deg);
}
  .project-item{
    flex-basis: 100%;
  }
  section.projects-tab:before {
transform: rotate(-34.2deg);
    left: -35%;
    right: -35%;
}
section.git-form:before {
    right: -100%;
    transform: rotate(-60.8deg);
    left: -100%;
}
.main-header .container .logo-image{
    max-width: 150px;
}
.service-icon-content .wa_hvac-primary-btn{
  width: 80%;
}
.services-container > div.icon-text-container {
  margin-bottom: 70px;
}
.main-header .container .navmenu ul#primary-menu li a{
    font-size: 18px;
    line-height: 20px;
}
.menu-main-header-container ul#primary-menu > li.menu-item-has-children:after{
    font-size: 22px;
    right: 30px !important;
    line-height: 13px;
}
.main-header .container .navmenu ul#primary-menu li#menu-item-219 {
    padding: 0 25px;
    margin-top: 40px;
}
.main-header .container .navmenu ul#primary-menu li#menu-item-219 a {
    font-size: 18px;
    line-height: 20px;
}
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }
.mfp-align-top .mfp-container:before {
  display: none; }
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }
.mfp-ajax-cur {
  cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
  cursor: auto; }
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }
.mfp-loading.mfp-figure {
  display: none; }
.mfp-hide {
  display: none !important; }
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }
.mfp-s-ready .mfp-preloader {
  display: none; }
.mfp-s-error .mfp-content {
  display: none; }
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }
.mfp-close-btn-in .mfp-close {
  color: #333; }
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }
.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }
.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }
/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }
.mfp-image-holder .mfp-content {
  max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.animated 
{
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
   
}

/*..........2022/5/02/...............*/
#service-icons .icon-text-container .service-icon:hover img,
#service-icons .tab-active .service-icon img
{
  filter: brightness(50);
}
#sectors_icons .icon-text-container .service-icon:hover img,
#sectors_icons .tab-active .service-icon img
{
  filter: brightness(0.5);
}
.services-container .service-icon,
.sectors-container .service-icon
{
  transition: all 0.3s;
}
.services-container .service-icon:hover,
.sectors-container .service-icon:hover
{
  transform: scale(1.1);
  transition: all 0.3s;
}


.wa_hvac-primary-btn,.wa_hvac-secondary-btn{
	transition:0.5s !important;
}
.wa_hvac-primary-btn:hover,.wa_hvac-secondary-btn:hover{
	background: #16e8ca !important;
    transform: scale(1.1) !important;
    color: #fff !important;
}
.wa_hvac-secondary-btn:hover{
	border-color: #16e8ca !important;
}
.navmenu .menu-main-header-container ul li a:last-child{
	transition:0.5s !important;
}
.navmenu .menu-main-header-container ul li a:last-child:hover{
		background: #295a9a !important;
    transform: scale(1.1) !important;
    color: #fff !important;
}
.services .icon-text-container:last-child {
	position: relative;
	z-index: 1;
}
.services .icon-text-container:nth-child(2) {
	position: relative;
	z-index: 2;
}
.why_choose_sec .sector-item{
	transition: 0.3s ease-in-out;
}
.why_choose_sec .sector-item:hover{
	transform: scale(1.1);
    border: 1px solid #fff;
}
.why_choose_sec .sector-item:hover a .sector-list-icon img{
	filter: brightness(50);
}
.our_projects_sec .each_project:hover,.project-tab-image:hover{
	 transform: scale(1.1) !important;
}
.our_projects_sec .each_project,.our_projects_sec .each_project a.project_title,.project-tab-image{
	transition: 0.3s ease-in-out;
}
.our_projects_sec .each_project:hover a.project_title{
	background: #16e8ca !important;
    color: #fff !important;
}
p.text_italic{
	text-align: center;
    font-style: italic;
    color: #fff;
    margin-top: -40px;
	cursor:pointer;
	position:relative;
	z-index:3;
	font-size: 14px;
}
p.text_italic:hover{
	 color: #d7d0d0 !important;
}
p.text_italic1{
	text-align: center;
    font-style: italic;
    color: #295a9a;
    margin-top: -40px;
	cursor:pointer;
	position:relative;
	z-index:3;
	font-size: 14px;
}
p.text_italic1:hover{
	 color: #7a8a9b !important;
}
.video-image-container:after,.play_btn{
	transition:0.3s;
}
.video-image-container:hover::after,.each_slider:hover .play_btn{
	transform: scale(1.1) translate(-50%, -50%);
    transform-origin: center;
}
.objective-image img,.accreddication-image img{
	filter: saturate(2) !important;
}

/*2022/05/12*/
.wwa-image-container
{
  z-index: 9;
}
.video-image-container:hover:after
{
  background-image: url('http://wahvacstaging.dingodigital.com.au/wp-content/uploads/2022/05/Filledplay-button.png');
}
.slider-icon
{
	position: relative;
}
.slider-icon:after {
    transition: 0.3s;
}
.slider-icon:after
{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url(../../../wp-content/uploads/2022/04/play-button.png);
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.slider-icon:hover:after {
    background-image: url(http://wahvacstaging.dingodigital.com.au/wp-content/uploads/2022/05/Filledplay-button.png);
}
.slider-icon a.pop-up
{
   width:100px;
   height:100px;
   display:block;
}
@media(max-width: 520px)
{
	.single-sector p.text_italic
	{
		margin-top: -25px;
	}
	p.text_italic1{
		margin-top:0px;
	}
}
.single-project .testimonials{
	display:none;
}
.single-project section.project-gallery:before{
	clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
}
.single-project .single-talk-to-us{
	margin-top: -310px;
	z-index: 1;
}
.single-project .single-talk-to-us:before{
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media (min-width: 768px){
	.row-items, .project_row{
		width: 700px;
	}
}
@media (min-width: 980px){
	.row-items, .project_row{
		width: 900px;
	}
}
@media (min-width: 1023px){
	.row-items, .project_row{
		width: 1000px;
	}
}
@media (max-width: 767px){
	.row-items, .project_row{
		width: 100%;
	}
	.project_row .project_col{
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (max-width: 520px){
	.single-service section.maintenance-acc-items:before{
		display: none;
	}
	.single-service section.maintenance-acc-items{
		clip-path: polygon(0% 44%, 100% 0%, 100% 100%, 0 45%);
	}
}
@media (min-width: 521px){
	.single-service section.maintenance-acc-items:before{
		display: block;
	}
	.single-service section.maintenance-acc-items{
		clip-path: unset;
		background-image: unset;
	}
}

.footer_copyright{
	 padding: 50px 0px 0px;
}
.footer_copyright p{
	text-align: center;
    color: #295a9a;
    font-weight: 300;
	font-size:15px;
}
.footer_copyright p a{
	color: #000;
}