:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}
/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #ffcc2a;
  --color-secondary: #52565e;
}
/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: #ffc732;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #f5f6f7;
}
.section-header {
  text-align: center;
  padding-bottom: 30px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
  margin-bottom: 15px;
}
.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}
.section-header h2:before {
  margin: 0 15px 10px 0;
}
.section-header h2:after {
  margin: 0 0 10px 15px;
}
.section-header p {
  margin: 0 auto 0 auto;
}
@media (min-width: 1199px) {
  .section-header p {
    max-width: 90%;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}
.breadcrumbs h2 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.breadcrumbs ol li+li {
  padding-left: 10px;
}
.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #000;
}
.scroll-top i {
  font-size: 24px;
  line-height: 0;
}
.scroll-top:hover {
  background: #f15856;
color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: absolute;
  padding: 30px 0;
  top: 0;
  left: 0;
  right: 0;
}
.header .logo img {
  max-height: 90px;
  margin-right: 15px;
}
.header .logo p {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
  display: flex;
  flex-direction: column;
}
.header .logo p span{
  font-size: 24px;
}
.head{
  margin-top: 10px;
}
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }
}
@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }
  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }
  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 20px;
  background: #fff;
  height: 100%;
}
.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 30px;
}
.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}
.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px 0 50px 0;
  z-index: 1;
  top: 3px;
  right: -15px;
  transition: 0.3s;
}
.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 2px 0;
  padding-bottom: 8px;
  font-size: 18px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}
.services .service-item:hover .icon:before {
  background: var(--color-primary);
}
.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}
.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: #f15856;
}
.projects .portfolio-flters li:first-child {
  margin-left: 0;
}
.projects .portfolio-flters li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}
.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}
.projects .portfolio-content img {
  transition: 0.3s;
}
.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}
.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 50px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 20px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}
.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-primary);
}
.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}
.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}
.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}
.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}
.alt-services .icon-box {
  margin-top: 50px;
}
.alt-services .icon-box img{
    width: 55px;
    height: 55px;
    padding: 8px;
    background: var(--color-primary);
    margin-right: 20px;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border-radius: 10px
}
.alt-services .icon-box:hover .icon-img{
  background: #fff;
  border: 1px solid #bab5b5;
}
.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}
.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}
.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.alt-services .icon-box h4 a {
  color: #f15856;
  transition: 0.3s;
}
.alt-services .icon-box h4 a:hover {
  color: #000;
}
.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}
@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}
.about .our-story {
  padding: 40px;
  background-color: var(--color-primary);
}
@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}
.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}
.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}
.about .our-story p:last-child {
  margin-bottom: 0;
}
.list ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.list ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.list ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}
.about .about-img {
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}
.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}
.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}
.contact .php-email-form .form-group {
  padding-bottom: 20px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}
.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #000;
  transition: 0.4s;
  border-radius: 5px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #f15856;
  color: #FFF;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# aspen Section
--------------------------------------------------------------*/
.aspen {
  overflow-x: hidden;
  padding: 0;
}
.aspen .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}
.aspen .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}
.aspen .carousel-item::before {
  content: "";
  background-color: rgb(24 22 22 / 70%);
  position: absolute;
  inset: 0;
}
.aspen .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .aspen .info {
    padding: 0 50px;
  }
}
.aspen .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  position: relative;
}
.aspen .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .aspen .info h2 {
    font-size: 36px;
  }
}
.aspen .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}
.aspen .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}
.aspen .info .btn-get-started:hover {
  background: #f15856;
  border: 2px solid #f15856;
}
.aspen .carousel-control-prev {
  justify-content: start;
}
@media (min-width: 640px) {
  .aspen .carousel-control-prev {
    padding-left: 15px;
  }
}
.aspen .carousel-control-next {
  justify-content: end;
}
@media (min-width: 640px) {
  .aspen .carousel-control-next {
    padding-right: 15px;
  }
}
.aspen .carousel-control-next-icon,
.aspen .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aspen .carousel-control-prev,
.aspen .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}
.aspen .carousel-control-prev:focus,
.aspen .carousel-control-next:focus {
  opacity: 0.5;
}
.aspen .carousel-control-prev:hover,
.aspen .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.webp") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 30px 0 10px 0;
  position: relative;
}
.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}
.footer .footer-content .footer-info {
  margin-bottom: 10px;
}
.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}
.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}
.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 5px;
}
.footer .footer-content .footer-links {
  margin-bottom: 10px;
}
.footer .footer-legal .copyright {
  padding-top: 10px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.export-box{
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  padding: 20px 0 30px 0;
  border: none;
}
.export-box h4{
font-weight: 700;
font-size: 18px;
transition: 0.3s;
color: #000;
margin-bottom: 15px;
  }
.export-box:hover h4{
color: #f15856;
  }
h4{
  font-size: 18px;
}
.purecounter:after {
    content: '\002B';
}
.read-more-btn {
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 28px;
    border-radius: 3px;
    letter-spacing: 1px;
    display: inline-block;
    cursor: pointer;
    transition: 0.4s;
    text-transform: uppercase;
    background: #ffc732;
    margin: 10px;
}
.read-more-btn:hover {
 background: #f15856;
    color: #FFF;
}
.projects .portfolio-content .gallery{
    height: 250px;
    object-fit: cover;
    width: 100%;
}
.unit .card{
    height: 200px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    border: none;
    margin-bottom:10px;
}
.acres-counts .card{
    height: 130px;
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    border: none;
}
.acres-count {
    display: block;
    border-radius: 4px;
    text-align: center;
    background: #fff;
    padding: 20px;
    position: relative;
    margin-bottom:30px;
}
.acres-count:before {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.acres-count:after {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    top: -2px;
    left: -2px;
    border-top: 2px solid var(--color-primary);
    border-left: 2px solid var(--color-primary);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.acres-count p {
  margin-bottom: 0;
  color: #757575;
}
.acres-count:hover {
    opacity: 1;
    border-color: var(--color-primary);
}
.acres-count:hover:before, .acres-count:hover:after {
    width: 95%;
    height: 90%;
}
.incentives .card{
/*    height: 315px;*/
    text-align: center;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    border: none;
    transition: 0.5s;
    margin-bottom:15px;
}
.incentive:hover{
  background: var(--color-primary);
}
.contact .info-item a{
color: #6c757d;
}
.contact .info-item a:hover{
  color: #ef4955;
}
.footer a{
  color: #fff;
}
.footer a:hover{
  color: var(--color-primary);
}
.features .tab-content img{
  width: 636px;
  height: 426px;
}

.post-item{
  height: 350px;
}
.post-title{
    text-align: center;
}
a{
   color: #6c757d;
}
a:hover{
  color: #ef4955;
}
@media(max-width:400px){
  .incentives .card {
    height: 365px
  }
}
.services .service-item .icon img{
  transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
    width: 48px;
    line-height: 1.8;
}
@media(max-width:450px){
  .aspen .info h2{
    margin-top:150px;
  }
  .breadcrumbs h2 {
    margin-top: 40px;
  }
  }
.map .master-img{
    margin-left: auto;
    display: block;
    margin-right: auto;
  }
 .alt-services .edge{
    margin-top: 15px !important;
  }
 .unit .card img {
    height: 115px;
    margin-top: 1rem;
  }
.our-story p, .alt-services p{
    text-align: justify;
}
.section-header .content p {
  text-align: justify;
}
