@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Open+Sans:wght@400;700&family=Poppins:wght@400;500;700;900&display=swap');

:root {
  --color-green-dark: #044122;
  --color-green-light: #66b325;
  --color-green-alt: #1d7249;
  --color-yellow: #eedb33;
  --color-orange: orange;
  --section-max-width-lg: 81.25rem;
}

body {
  background: #f9f7f5;
  margin-top: 5rem;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6, .title, .subtitle {
  font-family: 'Poppins', sans-serif;
}
.flex-1 {
  flex: 1;
}
.text-underline {
  text-decoration: underline;
}
.overflow-hidden {
  overflow: hidden;
}
.x-toggle {
  cursor: pointer;
}
.bg-gray {
  background-color: #f9faf6;
}

.text-grass {
	font-size: 1.8rem;
	font-style: italic;
	font-weight: 700;
	display: block;
	color: var(--color-green-light);
}
.text-grass {
	font-family: "Satisfy",sans-serif;
	-webkit-text-fill-color: transparent;
	background: -webkit-linear-gradient(transparent, transparent), url(../img/gallery/text-pattern.jpg) center 0 no-repeat;
	background-size: cover;
	background: -o-linear-gradient(transparent, transparent);
	-webkit-background-clip: text;
}
.subtitle-orange {
  font-size: 1.25rem;
  color: orange;
  margin-bottom: 0;
}

.lg-object.lg-image {
	border: solid 4px #fff !important;
	border-radius: 5px !important;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
	-webkit-transform: scale3d(0.85,0.85,0.85) !important;
	transform: scale3d(0.85,0.85,0.85) !important;
}

.swal2-title {
  font-weight: 500 !important;
}

nav.navbar {
  flex-wrap: unset;
  height: 5rem;
  z-index: 5;
  font-family: 'Montserrat', sans-serif;
}
.navbar-tree {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-green-light);
  transition: all .4s ease;
}
.navbar-tree img {
  height: 3rem; /*CHECK*/
}
.navbar-logo-text {
  height: 2.25rem;
  margin-left: 1.25rem;
}
.navbar-logo-full {
  display: none;
}
.navbar-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.25rem;
  text-transform: uppercase;
  font-size: 1.1rem;
  
}
.navbar-navigation a {
  height: 100%;
  display: inline-block;
  padding-top: 1.8rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--color-green-dark);
  border-bottom: solid 0px transparent;
  transition: all .4s ease;
}
.navbar-navigation a:hover {
  color: var(--color-green-light);
  border-bottom: solid 3px var(--color-green-light);
}
.navbar-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green-light);
  text-transform: uppercase;
  padding: 0;
  border-right: solid 1px #fff;
  transition: all .4s ease;
}
.navbar-phone small {
  color: var(--color-green-dark);
  transition: all .4s ease;
}
.navbar-phone a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.875rem;
  display: block;
}
.navbar-phone i {
  font-size: 1.6rem;
}
.navbar-phone span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.navbar-phone:hover small {
  color: #fff;
}
.navbar-toggl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-green-light);
  transition: all .4s ease;
}
.navbar-tree:hover,
.navbar-toggl:hover,
.navbar-phone:hover {
  background-color: var(--color-green-dark);
}

.menu-overlay .navbar-toggl,
.menu-overlay .navbar-tree {
  background-color: var(--color-green-dark);
}

.button_container {
  position: absolute;
  height: 1.75rem;
  width: 2.25rem;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  transform: translateY(0.6875rem) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
  transform: translateY(-0.6875rem) translateX(0) rotate(-45deg);
  background: #FFF;
	width: 100%;
}
.button_container span {
  background: #fff;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 0.6875rem;
}
.button_container span:nth-of-type(3) {
  top: 1.375rem;
	width: 60%;
}

.menu-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-overlay {
  position: fixed;
  background:url("../img/popup-background.jpg") no-repeat 50% 50%;
  background-size:cover;
  background-color: var(--color-green-light);
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: auto;
}
.menu-overlay .container-fluid {
  width: 90%;
  max-width: 100rem;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
	z-index: 100;
}
.menu-overlay.open li {
  animation: fadeInRight .4s ease forwards;
  animation-delay: .05s;
}
.menu-overlay nav {
  margin-top: 0px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Helvetica', sans-serif;
  font-weight: 400;
}
.menu-overlay nav label {
  color: var(--color-green-dark);
  display: block;
  font-weight: 900;
  font-size: 1.5rem;
}
.menu-overlay ul {
  list-style: none;
  padding: 0;
  margin: 1.56rem auto;
  display: inline-block;
  position: relative;
}
.menu-overlay ul li {
  display: block;
  min-height: 2.75rem;
  position: relative;
  opacity: 0;
}
.menu-overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
  background: url('../img/arrow-right-dark-green.svg') no-repeat 0 50%;
  background-size: 0 0;
  transition: all .4s ease;
}
.menu-overlay ul li a:hover {
    padding-left: 1.56rem;
    background-size: 0.75rem 0.75rem;
    color: #000;
}
.menu-footer .nav {
  display: flex;
  justify-content: flex-end;
  padding-right: 1.56rem;
}
.menu-footer .nav a {
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  border-bottom: solid 2px transparent;
  transition: all .4s ease;
}
.menu-footer .nav a:hover {
  text-decoration: none;
  border-bottom: solid 2px var(--color-green-light);
}
.menu-footer .estimate-text {
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 1.56rem;
  line-height: 1.1;
  display: flex;
  align-items: center;
}
.menu-footer .estimate-text span {
  font-size: 1.4rem;
}
.menu-footer .estimate-text span:last-child {
  font-size: 1.8rem;
}
.menu-footer .estimate-text img {
  width: 5rem;
  margin-right: 1rem;
}

.menu-footer {
	color: #fff;
	flex: 0 0 auto;
	margin-top: 1.875rem;
	background: #357d24;
	display: flex;
  position: relative;
}
.menu-footer::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 50%;
  background: #044122;
}
.menu-footer-nav {
  position: relative;
	-webkit-box-flex: 1;
	flex: 1 1 66%;
	padding: 2.2rem 1.25rem 3.125rem 0;
	background: #044122;
}
.menu-footer-nav img {
  height: 6.25rem;
  position: absolute;
}
.menu-footer-social {
	-webkit-box-flex: 1;
	flex: 1 1 33%;
}

.btn-view-all {
  border-radius: 1.25rem;
  background-color: rgba(255,255,255,.2);
  padding: 0.5rem 1.56rem;
  font-weight: 600;
  color: #fff;
  transition: background-color .4s ease;
}
.btn-view-all:hover {
  background-color: rgba(0,0,0,.2);
}


@keyframes fadeInRight {
  0% {
    opacity: 0;
    top: 20%;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

.radioshow input[type=checkbox] {
  display: none;
}

.radioshow label {
	line-height: 0.85; /*k*/
}
.radioshow label span {
	font-size: 1.25em; /*k*/
}

footer {
	background-color: var(--color-green-dark);
	color: #fff;
  font-family: 'Montserrat', sans-serif;
}
footer hr {
  border-top: solid 1px rgba(255,255,255,.2);
}
footer h5 {
  color: #66b325;
  text-transform: uppercase;
}
footer p {
  margin-bottom: 1.25rem;
}
.footer-logo {
  width: 100%;
  max-width: 25rem;
}
.footer-social img {
  height: 1.5rem;
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}
footer .call-text {
  font-size: 1.4rem;
  text-transform: uppercase;
}
footer i {
  font-size: 2rem;
  margin-right: 1rem;
  color: #66b325;
}
footer .icon-estimate {
  display: inline-block;
  height: 44px;
  width: 48px;
  margin-right: 1rem;
  background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  background-image: url(../img/estimate_green.svg);
}
footer .btn-highlight:hover .icon-estimate {
  background-image: url(../img/estimate_green2.svg);
}

.btn-highlight {
	background-color: transparent !important;
	border-radius: 5px;
	color: #fff;
	display: flex;
	padding: 0.75rem;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-decoration: none !important;
	box-shadow: 0 0 0 transparent;
	transform: scale(1);
	transition: all .4s ease;	
}
.btn-highlight:hover {
  color: #b4dc39;
  text-shadow: 1px 1px 5px #00000094;
  transform: scale(1.08);
}
.btn-highlight:hover i {
  color: #b4dc39
}
.menu-footer-social .btn-highlight {
	width: calc(100% - 60px);
	margin: 0 auto;
}

@media (max-width: 991px) {
  .radioshow {
    background-color: transparent;  
    margin-bottom: 1.25rem;
  }
  .radioshow input[type=checkbox]:not(:checked) ~ label ~ .content { 
    opacity: 0;
    height: 0;
    display: none;
  }
  .radioshow .content {
    display: block;
    clear: both;
  }
  .radioshow label {
    position: relative;
    cursor: pointer;
  }
  
  .radioshow label::before {
    font-size: 1.5rem;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    color: var(--color-green-dark);
    position: absolute;
    right: 0;
    top: 0;
  }
  .radioshow input[type=checkbox]:checked ~ label::before {
    content: "\f106";
  }

  .menu-overlay ul {
    margin: 1rem auto;
  }
  .menu-overlay nav label {
    padding-right: 1rem;
  }
	.menu-footer {
		display: block;
	}
	.menu-footer-nav {
		padding-right: 0;
    padding: 2.2rem 0;
	}
  .menu-footer-nav a {
    margin-left: 1rem;
  }
	.menu-footer-social {
		padding: 2.2rem 0;
	}
  .menu-footer .nav {
    padding: 0;
    justify-content: center;
  }
  .menu-footer .container-fluid {
    width: 100%;
    padding: 0;
  }
  .menu-footer::before {
    display: none;
  }
  .menu-footer .estimate-text {
    border: none;
    justify-content: center;
    padding-left: 0;
  }

}
@media (max-width: 768px) {
  .menu-footer .nav > div {
    width: 33%;
    text-align: center;
    margin: 0.5rem 0;
  }
  .menu-footer-nav a {
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  body {
    margin-top: 3.75rem;
  }
  nav.navbar,
  .navbar-phone,
  .navbar-toggl,
  .navbar-tree {
    height: 3.75rem;
  }
  .navbar-phone,
  .navbar-toggl,
  .navbar-tree {
    width: 3.75rem;
    min-width: 3.75rem;
  }
  .navbar-tree img {
    height: 2.25rem;
  }
  .navbar-navigation  {
    padding: 0;
  }
  .navbar-logo {
    width: calc(100% - 7.5rem);
    text-align: center;
  }
  .navbar-logo-full {
    height: 3rem;
    display: inline-block;
  }
  .navbar-logo-text {
    display: none;
  }
  .footer-logo {
    width: 90%;
  }
  footer .call-text {
    font-size: 1em;
  }
  .menu-footer .nav > div {
    width: 50%;
  }
  .menu-footer .estimate-text img {
    width: 3.75rem;
  }
}

@media (min-width: 992px) {
  .menu-footer .container-fluid {
    width: 98%;
    padding: 0;
  }
  .menu-footer-nav {
    flex: 1 1 62%;
  }
  .menu-footer-social {
    padding: 2.2rem 0 2.2rem 0;
    flex: 1 1 38%
  }
  .menu-footer .estimate-text span:last-child {
    font-size: 1.8em;
  } 
  .menu-footer .estimate-text img {
    width: 4em;
  }
  .menu-footer-nav img {
    height: 4.5rem;
  }
  .menu-footer .nav a {
    font-size: 1rem; 
    margin-left: 1rem;
  }
}

@media (min-width: 1200px) {
  .menu-overlay .container-fluid {
    width: 98%;
  }
  .menu-footer .nav a {
    font-size: 1.1em; 
    margin-left: 1.4em;
  }
}

@media (min-width: 1400px) {
  .menu-overlay .container-fluid {
    width: 90%;
    max-width: 1800px;
  }
  .menu-footer .nav a {
    font-size: 1.15em; 
    margin-left: 1.8em;
  }
}

@media (max-width: 400px) {
  .footer-social img {
    height: 1.2rem;
    margin-right: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hideOverflowOnMobile {
  overflow: hidden;
  }
}

.menu-overlay ul {
  margin: 1.56rem auto .5rem 0 !important;
}

.footer-links a {
	color: #FFFFFF;
	text-decoration: none;
}