/*!
Theme Name: greenseen
Author: nabtron
Author URI: https://nabtron.com
Description: Description
Version: 1.0.1
Tested up to: 5.4
Requires PHP: 5.6
Text Domain: greenseen
*/

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

a {
  color: #449343;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.hover-underline-none:hover {
  text-decoration: none;
}

/* a:hover .fa::before {
  text-decoration: none;
} */

.fa, .fa:before {
	display: inline-block;
	text-decoration: none;
}

input,
textarea {
  max-width: 100%;
}

a.toggle-nav {
  display: none;
}

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

main {
  display: flex;
  flex-direction: column;
}

.entry-title,
.heading {
  font-size: 68rem;
  line-height: 75rem;
  margin: 5rem 0rem;
}

.sub_heading {
  font-size: 38rem;
  line-height: 45rem;
  margin: 0;
  color: #4C5259;
}

.background-image {
  background-size: cover;
  background-position: center;
  transition: 0.5s;
}

.background-image.background-image-dark {
  background-color: grey;
  background-blend-mode: multiply;
}

.background-image:hover {
  /* zoom: 10%; */
}

img.alignnone,
img.full-width {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
}

a.button,
.button {
  text-decoration: none;
  padding: 10rem 20rem;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 20rem;
  /* font-family: Montserrat; */
  transition: 0.5s;
}

.button-white {
  background-color: #ffffff;
  border: 2rem solid #ffffff;
  border-radius: 50rem;
  color: #449343;
}

.button-white:hover {
  color: #ffffff;
  background-color: #449343;
}

.button-green {
  background-color: #449343;
  border: 2rem solid #449343;
  border-radius: 50rem;
  color: #ffffff;
}

.button-green:hover {
  background-color: #ffffff;
  color: #449343;
}

section,
.section,
.section-padding {
  padding: 100rem 120rem;
}

.section-full {
  padding: 0;
}

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

.site-header {
  display: flex;

  position: sticky;
  left: 0;
  right: 0;
  background-color: #ffffff;
  top: 0;

  transition: 0.5s;

  z-index: 1;
}

.site-header-scroll {
  box-shadow: 0px 2px 7px 0px rgba(3, 3, 3, 0.3);
}

.site-branding {
  flex-basis: 300rem;
  flex-shrink: 0;
  /* margin: 10rem 0rem 10rem 50rem; */
  margin: 10rem 0rem 10rem 0rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.site-nav-wrap {
  flex-grow: 1;
  text-align: right;
}

.site-navigation {
}

ul#primary-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

#primary-menu li {
  position: relative;
}

#primary-menu li ul {
  display: none;
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0px -2px 7px 0px rgba(3, 3, 3, 0.3);
  right: 0;
  top: 80rem;
  transition: 0.5s;
}

.site-header-scroll #primary-menu li ul {
  top: 52rem;
}

#primary-menu li:hover ul {
  display: block;
}

#primary-menu li ul li a {
  padding: 20rem 40rem;
  display: block;
  text-decoration: none;
  color: #449343;
  min-width: max-content;
  text-transform: uppercase;
}

#primary-menu li ul li a:hover {
  color: #ffffff;
  background-color: #449343;
}

.menu-toggle {
  display: none;
}

#primary-menu > li {
  padding: 20rem 30rem;
  transition: 0.5s;
}

.site-header-scroll #primary-menu > li {
  padding: 5rem 30rem;
}

#primary-menu > li > a {
  text-decoration: none;
  color: #449343;
  padding: 10rem 0rem;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  min-width: max-content;
  position: relative;
}

#primary-menu > li > a::after {
  content: "";
  border-bottom: 3rem solid #449343;
  position: absolute;
  width: 100%;
  left: 0rem;
  bottom: 0;
  display: none;
}

#primary-menu > li > a:hover::after {
  display: block;
}

#primary-menu > li:last-child {
  background: #449343;
}

#primary-menu > li:last-child a {
  color: #ffffff;
}

#primary-menu > li:last-child:hover {
  background: unset;
}

#primary-menu > li:last-child:hover a {
  color: #449343;
}

#primary-menu > li.menu-item-has-children {
  position: relative;
  margin-right: 20rem;
  display: flex;
}

#primary-menu > li.menu-item-has-children::after {
  content: "v";
  transform: scale(1, 0.5); /* W3C */
  color: #449343;
  /* top: 34%; */
  right: 0rem;
  position: absolute;
  font-size: 30rem;
  align-self: center;
  margin-bottom: 2rem;
}

/* Footer */

.site-footer {
  display: flex;
  align-items: center;
  padding: 30rem 0rem;
}

.footer-logo {
  width: 71rem;
  height: 88rem;
  margin-left: 50rem;
  background-repeat: no-repeat;
  background-size: contain;
}

footer .site-info {
  flex-grow: 1;
  text-align: center;
}

.footer-menu-wrap {
  flex-basis: 300rem;
}

ul#footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul#footer-menu li a {
  color: initial;
  text-decoration: none;
}

/* section-green */

.section-green {
  background-color: #449343;
  color: #ffffff;
  padding: 70rem 0rem;
}

.request-a-bid-wrap {
  /* padding: 80rem 0rem; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20rem;
}

.rab-1 {
  /* font-size: 68rem; */
}

.rab-2-a {
  font-size: 32rem;
}

.rab-2-a-icon {
  color: #449343;
}

.button:hover .rab-2-a-icon {
  color: #ffffff;
}

.fp-1 {
  min-height: 770rem;
  background-color: #449343;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.fp-1-arrow-wrap {
  padding: 60rem;
}

.fp-1-arrow {
  font-size: 100rem;
  color: #ffffff;
  transition: 0.5s;
  margin-bottom: 30rem;
  display: block;
  cursor: pointer;
}

.fp-1-arrow:hover {
  font-size: 130rem;
  margin-bottom: 10rem;
}

.fp-2 {
  /* display: flex; */
  /* justify-content: space-between; */
  /* flex-direction: column; */
  /* gap: 80rem; */
  /* justify-content: center; */
}

.fp-2-1 {
  /* flex-basis: 1140rem; */
  /* flex-shrink: 0; */
  /* flex-grow: 0; */
  text-align: center;
  margin-bottom: 80rem;
}

.fp-2-1-one {
  /* font-size: 42rem;
	line-height: 42rem; */
}

.fp-2-1-two {
  color: #6b5779;
  /* font-size: 75rem;
	line-height: 75rem; */
}

.fp-2-2 {
  flex-basis: 430rem;
}

.fp-2-2-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20rem;
  justify-content: space-around;
}

.fp-2-2-item {
  display: flex;
  width: 625rem;
  max-width: 100%;
  margin-bottom: 50rem;
}

a.fp-2-2-item {
  cursor: pointer;
  text-decoration: none;
}

.fp-2-2-image {
  width: 200rem;
  height: 200rem;
  border-radius: 50%;
  background-color: #449343;
  flex-shrink: 0;
  flex-grow: 0;
  margin: 5rem;
}

.fp-2-2-item-title {
  font-size: 40rem;
  line-height: 44rem;
  font-weight: bold;
  padding: 20rem;
  color: #4C5259;
}

a.fp-2-2-item:hover .fp-2-2-item-title {
  color: #449343;
}

a.fp-2-2-item:hover .fp-2-2-image {
  margin: 0rem;
  width: 210rem;
  height: 210rem;
}

.fp-3 {
  display: flex;
  align-items: stretch;
}

.fp-3 > div {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 100%;
}

.fp-3-item {
  /* background-color: #449343; */
  color: #ffffff;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.fp-3-item.justify-center {
  justify-content: center;
}

.fp-3-item-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.fp-3-item-link {
  display: flex;
  align-items: center;
  gap: 30rem;
}

a:hover .fp-3-item-background {
  transform: scale(110%);
}

.fp-3-item-content {
  /* position: absolute; */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fp-3-item-title {
  font-weight: normal;
  font-size: 24rem;
  line-height: 28rem;
  margin-bottom: 0rem;
  /* width: 300rem; */
}

.fp-3-item-detail {
  padding: 30rem 0rem;
}

.fp-3-item a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  gap: 20rem;
  align-items: center;
}

.fp-3-item .fa {
  font-size: 34rem;
  transition: 0.5s;
}

.fp-3-item-link {
  text-decoration: none;
}

.fp-3-item-link:hover .fa {
  margin-left: 10rem;
}

.fp-3-item-one-title {
  font-size: 48rem;
  line-height: 56rem;
}

.fp-3-item-four-title {
  font-size: 96rem;
  line-height: 112rem;
}

.fp-3-2 .fp-3-item-link {
  font-size: 48rem;
  align-items: flex-start;
}

.fp-3-2-a {
  flex-basis: 50%;
}

.fp-3-2-a .fp-3-item {
  background-color: rgba(107, 87, 121, 0.73);
}

.fp-3-2-b {
  flex-basis: 50%;
}

.fp-3-2-b .fp-3-item {
  background-color: rgba(68, 147, 67, 0.73);
}

.fp-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fp-4-one {
  width: 600rem;
  max-width: 100%;
}

.fp-4-one .heading {
  color: #449343;
  margin-bottom: 30rem;
}

.fp-4-two {
  width: 800rem;
  max-width: 100%;
}

.fp-4-two .splide__slide {
  height: 620rem;
}

.fp-4-two .splide__arrow svg {
  fill: #444;
}

.fp-partners-slide-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.fp-partners-slide-item {
  width: 300rem;
  height: 300rem;
  background-size: cover;
  background-position: center;
}

/* template-style.php */

.ts-1 {
  background-color: #449343;
}

.ts-1-title {
  /* font-size: 44rem; */
  color: #ffffff;
}

.ts-post-1 {
  display: flex;
  gap: 35rem;
}

.ts-post-1.reverse {
  flex-direction: row-reverse;
}

.ts-post-1-one {
}

.ts-post-1-heading {
  /* font-size: 68rem;
	line-height: 75rem; */
  /* margin: 5rem 0rem 5rem; */
  color: #994422;
}

.ts-post-1-subheading {
  /* font-size: 38rem;
	line-height: 45rem; */
  margin: 0rem;
}

.ts-post-1-two {
  background-color: #449343;
  flex-basis: 750rem;
  flex-shrink: 0;
}

.ts-post-2 {
  display: flex;
}

.ts-post-2.reverse {
  flex-direction: row-reverse;
}

.ts-post-2-one {
  flex-basis: 50%;
  flex-shrink: 0;
  padding: 100rem 50rem;
  background-color: #444;
  color: #ffffff;
}

.ts-post-2-two {
  flex-basis: 50%;
  flex-shrink: 0;
  background-color: #449343;
}

.team-1-heading {
  margin-bottom: 50rem;
  color: #6b5779;
}

.ts-teams-one-two-wrap {
  display: flex;
  gap: 30rem;
}

.ts-team-item {
  display: flex;
  gap: 40rem;
  margin-bottom: 40rem;
}

.ts-team-item-one {
}

.ts-member-picture {
  width: 400rem;
  height: 400rem;
  background-color: #449343;
  border-radius: 50%;
  background-size: cover;
}

.ts-member-name {
  font-weight: bold;
}

.ts-member-appointment {
  color: #449343;
  font-weight: bold;
}

.ts_splide .splide__list {
  padding-bottom: 60rem !important;
}

.ts_splide .splide__slide {
  height: 1000rem;
}

.ts_splide .splide__arrow {
  font-size: 80rem;
}

.ts_splide .ts_splide_item_caption {
  position: absolute;
  /* bottom: 20rem; */
  bottom: -50rem;
  text-align: center;
  right: 0;
  left: 0;
  /* font-size: 32rem; */
  /* font-weight: bold; */
  font-size: 0.675em;
}

.ts_splide button.splide__pagination__page {
  width: 4rem;
  height: 4rem;
}

.ts-content-block-1 {
  display: flex;
  gap: 30rem;
}

.ts-content-block-1-heading {
  color: #6B5779;
}

.ts-content-block-1-one {
  clear: both;
  display: inline-block;
  max-width: 100%;
}

.cta_item_blocks_wrap {
  display: flex;
  flex-direction: column;
  gap: 50rem;
}

.cta_item_link {
  display: flex;
  align-items: center;
  gap: 20rem;
}

.cta_item_link span {
  max-width: 85%;
}

.cta_item_link .fa {
  transition: 0.3s;
}

.cta_item_link:hover .fa {
  margin-left: 10rem;
}

.ts-content-block-1-two {
}

.ts-content-block-primary-image {
  height: 486rem;
  width: 523rem;
  max-width: 100%;
  float: right;
  margin-left: 20rem;
}

.cta_item_block {
  width: 372rem;
  max-width: 100%;
  padding: 40rem;
}

.cta_item_block h3 {
  font-size: 32rem;
  line-height: 38rem;
  margin-top: 0rem;
}

.cta_item_block a {
  text-decoration: none;
}

.main-inner-page {
  border-bottom: 1px solid #444;
}

.portfolio_categories_wrap {
  width: 1200rem;
  max-width: 100%;
  flex-wrap: wrap;
  margin: 0rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40rem;
  justify-content: center;
}

.portfolio_category_item {
  width: 500rem;
  max-width: 100%;
  height: 500rem;
  background-color: #444;
  background-size: cover;
  background-repeat: no-repeat;
}

.portfolio_category_item_a {
  text-decoration: none;
  color: #ffffff;
  font-size: 48rem;
  opacity: 0;
  transition: 0.2s;
}

.portfolio_category_item:hover .portfolio_category_item_a {
  opacity: 1;
}

.portfolio_category_item_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #000000aa;
}

.portfolio_category_heading {
  color: #449343;
}

.portfolio_items_wrap {
  width: 1500rem;
  max-width: 100%;
  margin: 0rem auto;
  margin-top: 100rem;
  color: #4C5259;
}

.portfolio_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50rem auto;
}

.portfolio_item_one {
  flex-basis: 45%;
}

.portfolio_item_two {
  flex-basis: 50%;
}

.portfolio_item_title {
  font-size: 40rem;
  font-weight: bold;
}

.portfolio_item_info_label {
  font-size: 22rem;
  font-weight: bold;
}

.tp-pagination-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 150rem;
}

.tp-pagination-item a {
  text-decoration: none;
  color: initial;
  font-size: 44rem;
  line-height: 54rem;
  display: flex;
  align-items: center;
  gap: 30rem;
  color: #6B5779;
}

.tp-pagination-item a i {
  font-size: 120rem;
}

/* Template Contact */

.tc-1-title {
  /* font-size: 44rem; */
  color: #ffffff;
  padding: 100rem 0rem;
}

.tc-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 50rem;
}

.tc-2-one {
  flex-basis: 801rem;
  max-width: 100%;
  flex-shrink: 0;
}

.tc-2-one-heading {
  color: #4C5259;
  margin-bottom: 45rem;
}

.tc-2-map {
  background-color: #449343;
}

.tc-2-two {
  /* flex-basis: 50%; */
  /* flex-shrink: 0; */
  width: 810rem;
  max-width: 100%;
  padding: 100rem 100rem 0rem;
  margin-top: -270rem;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.33);
}

.tc-2-two-form {
  margin-top: 40rem;
}

.tc-3 {
  display: flex;
}

.tc-3-one {
  flex-basis: 50%;
}

.tc-3-two {
  flex-basis: 50%;
}

.form_item {
  margin-bottom: 27rem;
  width: 100%;
}

.contact-details-wrap {
  padding-top: 50rem;
}

.contact-details-wrap a {
  /* text-decoration: none; */
  /* color: initial; */
}

.contact-details-item {
  display: flex;
  padding: 20rem;
}

.contact-details-icon {
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 30rem;
}

.contact-details-icon-address {
  width: 30rem;
  height: 30rem;
  background-image: url("images/icons/icon_map.png");
}

.contact-details-icon-email {
  width: 30rem;
  height: 30rem;
  background-image: url("images/icons/icon_envelope.png");
}

.contact-details-icon-phone {
  width: 30rem;
  height: 30rem;
  background-image: url("images/icons/icon_phone.png");
}

.tc-2-two-title {
  color: #449343;
  font-size: 48rem;
  line-height: 56rem;
  font-weight: 700;
}

.tc-2-two .wpcf7-text,
.tc-2-two .wpcf7-textarea {
  width: 100%;
  padding: 10rem;
  border: 1rem solid #449343;
  background-color: rgba(76, 82, 89, 0.12);
  font-size: 14rem;
  line-height: 16.41rem;
  letter-spacing: -1.5%;
  font-family: 'Roboto';
}

.tc-2-two .wpcf7-textarea {
  height: 86rem;
}

.tc-2-two-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.tc-2-two .wpcf7-submit {
  background-color: #449343;
  color: #ffffff;
  border-radius: 13rem;
  border: none;
  padding: 5rem 30rem;
  display: block;
  cursor: pointer;
}
