/* Theme Name: Window Replacement Center
Version: 1.0
Author: SeoLeo (www.seoleo.agency) 
*/

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/plus-jakarta-sans-v12-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/plus-jakarta-sans-v12-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/plus-jakarta-sans-v12-latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/plus-jakarta-sans-v12-latin-700.woff2") format("woff2");
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: #080808;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden;
}

h1,
.h1 {
  font-size: 56px;
  color: #000;
  font-weight: 400;
}

h2,
.h2 {
  font-size: 50px;
  color: #000;
  font-weight: 400;
}

h2 a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

h2 a:hover,
h2 a:focus,
h2 a:active {
  color: #7cae4f;
}

@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
}

.rounded-20 {
  border-radius: 20px !important;
}

.rounded-30 {
  border-radius: 30px !important;
}

a {
	color: #7CAE4F;
	text-decoration: none;
	transition: all 0.3s ease-out;
}

a:hover, a:active, a:focus {
	color: #2f4a41;
	text-decoration: none;
}

/* ----- Buttons ----- */

.btn-primary,
.btn-primary:focus,
.is-style-outline .wp-element-button,
.is-style-outline .wp-element-button:focus {
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  border: 0;
  background: #7cae4f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:active,
.is-style-outline .wp-element-button:hover,
.is-style-outline .wp-element-button:active {
  background: #2f4a41 !important;
  border: 0;
  color: #fff !important;
}

.btn-secondary,
.btn-secondary:focus,
.is-style-fill .wp-element-button,
.is-style-fill .wp-element-button:focus {
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  border: 0;
  background: #2f4a41;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:active,
.is-style-fill .wp-element-button:hover,
.is-style-fill .wp-element-button:active {
  background: #7cae4f !important;
  border: 0;
  color: #fff !important;
}

.btn-info,
.btn-info:focus,
.is-style-btn-info .wp-element-button,
.is-style-btn-info .wp-element-button:focus {
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  color: #2F4A41;
  border: 1px solid #2F4A41;
  background: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-info:hover,
.btn-info:active,
.is-style-btn-info .wp-element-button:active,
.is-style-btn-info .wp-element-button:hover {
  background: #2f4a41 !important;
  border: 1px solid #2f4a41;
  color: #fff !important;
}

@media (max-width: 991px) {
  .btn-primary,
  .btn-primary:focus,
  .btn-primary:hover,
  .btn-primary:active,
  .btn-secondary,
  .btn-secondary:focus,
  .btn-secondary:hover,
  .btn-secondary:active,
  .is-style-btn-info .wp-element-button,
  .is-style-btn-info .wp-element-button:focus,
  .is-style-btn-info .wp-element-button:hover,
  .is-style-btn-info .wp-element-button:active,
  .is-style-fill .wp-element-button,
  .is-style-fill .wp-element-button:focus,
  .is-style-fill .wp-element-button:hover,
  .is-style-fill .wp-element-button:active,
  .is-style-outline .wp-element-button,
  .is-style-outline .wp-element-button:focus,
  .is-style-outline .wp-element-button:hover,
  .is-style-outline .wp-element-button:active {
    padding: 15px;
    font-size: 14px;
  }
}

/* ----- Hero Section ----- */

.hero-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 158px 0 140px;
  background: linear-gradient(
      90deg,
      rgba(12, 26, 47, 0.7) 0%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    var(--hero-bg) center/cover no-repeat;
}

@media (min-width: 992px) {
  .hero-wrapper {
    min-height: 700px;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 60px;
  transition: padding-top 0.3s ease, background 0.3s ease;
}

.header.is-sticky {
  position: fixed;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  animation: slideDown 0.35s ease;
}

.header.is-sticky .header__contact-btn {
  padding: 9px 50px;
  font-size: 15px;
}

.header.is-sticky .header-bg-mob {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.header-placeholder {
  display: none;
}
.header-placeholder.is-active {
  display: block;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header__logo {
  background: #fff;
  border-top-left-radius: 61px;
  border-bottom-left-radius: 61px;
  padding: 8px 6px 9px 20px;
}

.nav-menu {
  background: #fff;
  border-top-right-radius: 61px;
  border-bottom-right-radius: 61px;
  padding: 7px 16px;
  gap: 10px;
  list-style: none;
  margin: 0;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 15px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fff;
  border-radius: 187px;
  background-color: #2f4a41;
}

.booking-nav-link .nav-link, .booking-nav-link .mobile-menu__item {
  color: #fff;
  border-radius: 187px;
  background-color: #2f4a41;
}

.nav-menu .active {
  color: #7cae4f;
  font-weight: 600;
  background: none;
}

.nav-menu .dropdown-menu {
  border-radius: 0;
  min-width: 15rem;
  margin-top: 7px !important;
}

.header.is-sticky .nav-menu .dropdown-menu {
    margin-top: 17px !important;
}

.nav-menu .dropdown-item {
  font-size: 14px;
  color: #000;
  transition: all 0.3s ease-out;
}

.nav-menu .dropdown-item.active,
.nav-menu .dropdown-item:active,
.nav-menu .dropdown-item:focus {
  color: #7cae4f;
  background: none;
}

.nav-menu .no-link {
  cursor: pointer;
}

.header__contact-btn, .header__contact-btn:focus {
  background: #7cae4f;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 56px 14px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 61px;
  white-space: nowrap;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.header__contact-btn:hover {
  color: #fff;
  background-color: #2f4a41;
}

.hero-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-info__tags-title {
  color: #fff;
  font-weight: 500;
  opacity: 0.7;
}

.hero-info__tags {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.hero-info__tag {
  border-radius: 30px;
  padding: 6px 40px;
  background: #fff;
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
}

@media (max-width: 991px) {
  .hero-info__tags {
    flex-wrap: wrap; 
    justify-content: center; 
    margin-bottom: 35px; 
    row-gap: 12px; 
  }

  .hero-info__tag {
    padding: 6px 25px; 
  }
  
  .hero-info__tag img {
    max-height: 16px; 
    width: auto;
  }
}

.hero-info__title {
  font-size: clamp(2.2rem, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
}

.hero-info__text {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  margin: 20px 0 30px;
}

.hero-info__actions {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.hero-form {
  border-radius: 30px;
  background: #fff;
  padding: 30px 20px 0;
}

.hero-form .wpcf7-not-valid-tip {
  font-size: 13px;
}

.hero-form__title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #201e1e;
}

.form-control {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 13px;
  padding: 12px;
  box-shadow: none;
  color: #000;
  margin-top: 20px;
  font-size: 16px;
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 16px;
}

.hero-form__submit {
  color: #fff;
  padding: 11px 40px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  background: #7cae4f;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 36px;
  border: 0;
}

.hero-form__submit:hover {
  background: #2f4a41;
  color: #fff;
}

.hero-form .wpcf7-response-output {
  margin: -20px 0 0px !important;
  padding: 0 0 15px !important;
  border: 0 !important;
  font-size: 13px;
}

@media (max-width: 1399px) {
  .nav-menu {
    gap: 8px;
  }
  .nav-link {
    padding: 9px 6px;
  }
}

@media (max-width: 1199px) {
  .header-bg-mob {
    background: #fff;
    border-radius: 61px;
  }
  .header__contact-btn {
    padding: 8px 40px 11px;
    margin: 0;
  }
  .header.is-sticky .header__contact-btn {
    padding: 11px 50px;
  }
  .header__burger-btn {
    margin-right: 10px;
  }
  .hero-info__text {
    font-size: 15px;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .header {
    padding-top: 40px;
  }

  .hero-info__actions .btn {
    padding: 15px;
    font-size: 14px;
  }
  .hero-form {
    padding: 30px 20px 30px;
  }
  .hero-form__title {
    margin-bottom: 25px;
    font-size: 25px;
  }
  .hero-wrapper {
    padding: 140px 0 40px;
  }
}

@media (min-width: 992px) {
  .nav-item.dropdown > .dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 16px 16px !important;
    padding: 8px 0;
    min-width: 15rem;
  }

  .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-item.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
  }
  
  .header.is-sticky .nav-item.dropdown::after {
    height: 17px;
  }

  .nav-item.dropend {
    position: relative;
  }

  .nav-item.dropend > .dropdown-item::after {
    display: inline-block !important;
    content: "›";
    float: right;
    font-size: 18px;
    line-height: 1;
    color: #7cae4f;
    transition: transform 0.2s ease;
    margin-left: 8px;
  }

  .nav-item.dropend:hover > .dropdown-item::after {
    transform: translateX(3px);
  }

  .nav-item.dropend > .dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;

    top: -8px !important;
    left: 100% !important;
    margin: 0 !important;

    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 16px !important;
    padding: 8px 0;
    min-width: 14rem;
  }

  .nav-item.dropend:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-item.dropend::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 12px;
    height: 100%;
  }

  .nav-item.dropend:hover > .dropdown-item {
    color: #7cae4f;
    background: rgba(124, 174, 79, 0.06);
  }

  .nav-link.dropdown-toggle::after,
  .dropdown-item.dropdown-toggle::after {
    display: none;
  }

  .nav-menu .dropdown-item {
    padding: 6px 20px;
    border-radius: 8px;
    margin: 2px 6px;
    width: calc(100% - 12px);
  }

  .nav-menu .dropdown-item:hover {
    color: #7cae4f;
    background: rgba(124, 174, 79, 0.06);
  }
}

/* ----- Mobile Menu ----- */

.header__burger-btn {
  background-color: #2f4a41;
  border: 0;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.header__burger-btn:hover {
  background: #7cae4f;
}

.mobile-menu {
  background: #fff;
  width: 320px !important;
}

.mobile-menu__list,
.mobile-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-sub-menu {
  display: none;
  padding-left: 12px;
  margin-top: 4px;
  overflow: hidden;
}

.mobile-sub-menu.is-open {
  display: flex;
}

.mobile-menu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 187px;
  transition: background 0.25s ease, color 0.25s ease;
}

.mobile-menu__item.no-link {
  cursor: pointer;
}

.mobile-menu__item.no-link:hover,
.mobile-menu .current_page_item .mobile-menu__item {
  background: none;
  color: #7cae4f;
}

.mobile-menu__toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.mobile-menu__toggle.is-open {
  transform: rotate(180deg);
}

.mobile-sub-menu .mobile-menu__item {
  font-size: 14px;
  padding: 8px 14px;
}

.booking-nav-link .mobile-menu__item {
  justify-content: center;
}

/* ----- Features Section ----- */

.features__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px 12px;
  border: 1px solid #7cae4f;
  border-radius: 20px;
  text-align: center;
}

.features__text {
  font-size: 20px;
  font-weight: 500;
  color: #7cae4f;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .features__item {
    padding: 22px 12px;
  }
}

/* ----- Installations ----- */

.installations__card {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  height: 342px;
}

.installations__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: inset 0 -107px 30px 0 rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.installations__card:hover .installations__image {
  transform: scale(1.03);
}

.installations__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 13px 20px;
  backdrop-filter: blur(10.502440452575684px);
  background: rgba(255, 255, 255, 0.45);
  border-radius: 19px;
}

.installations__label {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
}

.installations__icon-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
}

@media (max-width: 1199px) {
  .installations__card {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .installations__label {
    font-size: 19px;
  }

  .installations__overlay {
    padding: 20px 34px;
  }
}

/* ----- Blue Glow background ----- */

.blue-glow-bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  max-width: 1600px;
  max-height: 1600px;
  background: url("assets/images/blue-blur.webp") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

.blue-glow-center {
  left: 50%;
  top: 0;
  opacity: 0.4;
  transform: translate(-50%, -30%);
}

.blue-glow-left {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}

.blue-glow-right {
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

/* ----- Benefits Section ----- */

.benefits-card {
  position: relative;
  padding: 30px;
  height: 100%;
  border-radius: 29px;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid #7cae4f;
}

.benefits-card__title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.benefits-section hr {
  opacity: 1;
  border-top: 1px solid #7cae4f;
}

.benefits-card__desc {
  font-size: 14px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.benefits-card__desc-inner {
  display: block;
  padding: 0 0 15px;
}

.benefits-img-container {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

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

.benefits-card__toggle, .benefits-card__toggle:active, .benefits-card__toggle:focus {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border: 0;
  background: #7cae4f;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefits-card__toggle:hover {
    background: #2f4a41;
    color: #fff;
}

.benefits-card__toggle-text-less { display: none; }
.benefits-card__toggle.collapsed .benefits-card__toggle-text-more { display: inline; }
.benefits-card__toggle.collapsed .benefits-card__toggle-text-less { display: none; }
.benefits-card__toggle:not(.collapsed) .benefits-card__toggle-text-more { display: none; }
.benefits-card__toggle:not(.collapsed) .benefits-card__toggle-text-less { display: inline; }

@media (max-width: 1199px) {
  .benefits-card__title {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .benefits-card__title {
    font-size: 18px;
  }
  .benefits-card__title br {
    display: none;
  }
  .benefits-card__line {
    margin-top: 25px;
  }
}

/* ----- Milgard Promo ----- */

.read-more-link {
  font-weight: 500;
  font-size: 18px;
  color: #080808;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s ease-in-out;
  padding-bottom: 8px;
}

.read-more-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #808080;
}

.read-more-link:hover {
  opacity: 0.6;
}

.milgard-promo__img {
  border-radius: 20px;
}

/* ----- Service Areas ----- */

.service-areas__cta p {
  font-weight: 500;
  font-size: 26px;
  color: #080808;
  line-height: 1.3;
}

.service-areas__tag {
  display: inline-block;
  padding: 8px 18px;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #000;
  font-weight: 500;
  border: 1px solid #7cae4f;
  border-radius: 32px;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.45);

  transition: all 0.3s ease;
  text-decoration: none;
}

.service-areas__tag:hover {
  background-color: #7cae4f;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .service-areas__tags {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .service-areas__tag {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* ----- Process Works ----- */

.process-works-card {
  position: relative;
  padding: 30px;
  height: 100%;
  border-radius: 29px;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid #7cae4f;
}

.process-works-card__number {
  font-weight: 600;
  font-size: 48px;
  color: #7cae4f;
}

.process-works-card__title {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.process-works-card__desc {
  font-size: 14px;
}

.benefits-section hr {
  opacity: 1;
  border-top: 1px solid #7cae4f;
}

@media (max-width: 1199px) {
  .process-works-card__title {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .process-works-card__number {
    font-size: 32px;
  }
  .process-works-card__title {
    font-size: 18px;
  }
  .process-works-card__title br {
    display: none;
  }
  .process-works-card__line {
    margin-top: 25px;
  }
}

/* ----- Recent Projects ----- */

.recent-projects__main-title {
  color: #1a1a1a;
}

.recent-projects__subtitle {
  font-size: 16px;
}

.recent-projects__img-wrapper {
  overflow: hidden;
  border-radius: 19px;
}

.recent-projects__img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recent-projects__card:hover .recent-projects__img {
  transform: scale(1.05);
}

.recent-projects__info {
  border-left: 1px solid #7cae4f;
  min-height: 97px;
  display: flex;
  align-items: center;
}

.recent-projects__card-title {
  font-weight: 600;
  font-size: 20px;
  color: #080808;
}

@media (max-width: 767.98px) {
  .recent-projects__img {
    height: 220px;
  }

  .recent-projects__card-title {
    font-size: 17px;
  }
}

/* ----- Reviews ----- */

.reviews__subtitle {
  font-size: 16px;
}

.reviews__card {
  border: 1px solid rgba(47, 74, 65, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.4);
}

.reviews__author-name {
  font-weight: 700;
  font-size: 20px;
  color: #2f4a41;
}

.reviews__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 147%;
  color: #080808;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 150px;
}

.reviews__divider {
  border-color: #e3e3e3;
  opacity: 1;
}

.reviews__link {
  font-weight: 700;
  font-size: 18px;
  color: #7cae4f;
  transition: all 0.3s ease-out;
}

.reviews__link:hover {
  color: #2f4a41;
}

.reviews__dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #7cae4f !important;
  border: none !important;
  margin: 0 3px !important;
  opacity: 0.3 !important;
}

.reviews__dot.active {
  background-color: #7cae4f !important;
  opacity: 1 !important;
}

.reviews__footer {
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 25px 0 40px;
}

.reviews__footer-text {
  font-weight: 600;
  font-size: 26px;
  color: #000;
}

@media (max-width: 767px) {
  .reviews__footer-text {
    font-size: 19px;
  }

  .reviews__footer .btn-primary {
    font-size: 11px;
  }

  .carousel-multi-2 .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-multi-2 .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

@media (min-width: 768px) {
  .carousel-multi-2 .carousel-inner .carousel-item.active,
  .carousel-multi-2 .carousel-inner .carousel-item-next,
  .carousel-multi-2 .carousel-inner .carousel-item-prev {
    display: flex;
  }

  .carousel-multi-2 .carousel-inner .carousel-item-end.active,
  .carousel-multi-2 .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }

  .carousel-multi-2 .carousel-inner .carousel-item-start.active,
  .carousel-multi-2 .carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }

  .carousel-multi-2 .carousel-inner .carousel-item-end,
  .carousel-multi-2 .carousel-inner .carousel-item-start {
    transform: translateX(0);
  }
}

/* ----- About Home ----- */

.about-home__img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.about-home__feature {
  font-weight: 700;
  font-size: 21px;
  color: #14183e;
}

@media (max-width: 991px) {
  .about-home__feature {
    font-size: 19px;
  }
}

/* ----- FAQ ----- */

.faq-section__item {
  background: none;
}

.faq-section__item.accordion-item {
  border: none;
  border-top: 1px solid rgba(124, 174, 79, 0.5) !important;
}

.faq-section__item.accordion-item:first-child {
  border: 0 !important;
}

.faq-section__item.accordion-item:last-child {
  border-top: 1px solid rgba(124, 174, 79, 0.5) !important;
}

.faq-section__button.accordion-button {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #080808;
  background-color: transparent !important;
  box-shadow: none !important;
}

.faq-section__button.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2384b058'%3E%3Cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-section__button.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-section__body.accordion-body {
  padding: 0 0 1.5rem 0;
  line-height: 1.6;
}

/* ----- Blog ----- */

.blog-section__image-container {
  overflow: hidden;
  border-radius: 13px;
}

.blog-section__img {
  width: 100%;
  height: 276px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-section__card:hover .blog-section__img {
  transform: scale(1.05);
}

.blog-section__post-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 133%;
  color: #080808;
  min-height: 40px;
}

.blog-section__excerpt {
  font-weight: 500;
  font-size: 12px;
  line-height: 171%;
  color: #080808;
}

.read-more-blog-link {
  font-weight: 500;
  font-size: 16px;
  color: #7cae4f;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s ease-in-out;
  padding-bottom: 8px;
}

.read-more-blog-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #7cae4f;
}

.read-more-blog-link:hover {
  opacity: 0.6;
}

.single-post .wp-block-image img {
  border-radius: 20px;
  margin: 35px 0;
}

/* ----- Footer ----- */

.footer {
  background-color: #262A22;
  padding: 70px 0 40px;
  color: #fff;
  font-weight: 400;
  font-size: 17px;
}

.footer__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 39px;
  height: 2px;
  background-color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  transition: all 0.3s ease-out;
}

.footer a:hover {
  opacity: 0.7;
  color: #fff;
}

.footer .list-unstyled li {
  margin-bottom: 18px;
}

#menu-footer-privacy li {
  display: inline-block;
}

#menu-footer-privacy li::before {
  content: "|";
  margin-right: 10px;
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__copy,
.footer__copy a {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .footer {
    padding: 30px 0;
  }
  .footer,
  .footer a {
    font-size: 15px;
  }
  .footer .list-unstyled li {
    margin-bottom: 8px;
  }
  .footer__copy,
  .footer__copy a {
    font-size: 14px;
  }
}

/* ------ MODAL ------ */

.custom-modal {
  border-radius: 30px !important;
  border: none !important;
}

.modal-title-custom {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #201e1e;
}

.custom-modal .wpcf7 form .wpcf7-response-output {
  margin: 0;
  border: 0;
}

.btn-close {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E") !important;
  opacity: 1;
}

.custom-modal .btn-close:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* ----- PRODUCT CATEGORY ----- */

.info-card {
  position: relative;
  padding: 30px;
  height: 100%;
  border-radius: 29px;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid #7cae4f;
}

.info-card__img-full {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.info-card__title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.info-card__title a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease-out;
}

.info-card__title a:hover {
  text-decoration: none;
  color: #7cae4f;
}

.info-card__title-50 {
  font-size: 50px;
}

.info-card hr {
  opacity: 1;
  border-top: 1px solid #7cae4f;
}

.info-card__desc {
  font-size: 14px;
}

@media (max-width: 1199px) {
  .info-card__title {
    font-size: 22px;
  }
  .info-card__title-50 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .info-card__title {
    font-size: 18px;
  }
  .info-card__title-50 {
    font-size: 23px;
  }
}

.compares-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #7cae4f;
  border-radius: 30px;
  margin: 40px 0;
}

.compares {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.compares a {
  color: #080808;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.compares a:hover,
.compares a:active,
.compares a:focus {
  color: #7cae4f;
  text-decoration: none;
}

.compares th,
.compares td {
  padding: 24px;
  text-align: center;
  border: 1px solid #7cae4f;
}

.compares__feature {
  text-align: left !important;
  font-weight: 500;
  font-size: 24px;
}

.compares thead th {
  font-size: 24px;
  font-weight: 500;
  color: #080808;
}

.compares tr:first-child th {
  border-top: 0;
}
.compares tr:last-child td {
  border-bottom: 0;
}
.compares tr th:first-child,
.compares tr td:first-child {
  border-left: 0;
}
.compares tr th:last-child,
.compares tr td:last-child {
  border-right: 0;
}

.compares__icon {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .compares thead th,
  .compares__feature {
    font-size: 16px;
  }
  .compares th,
  .compares td {
    padding: 10px;
  }
}

/* ----- PRODUCT SERIES PAGE ----- */

.window-config {
  border: 1px solid rgba(124, 174, 79, 0.6);
  border-radius: 30px;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.8);
}

.window-config__color-picker {
  display: flex;
  gap: 15px;
  border: none;
}

.window-config__color-option {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  outline: none;
}

.window-config__circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 8px;
  border: 1px solid #808080;
  padding: 7px;
  background-clip: content-box;
  transition: all 0.2s ease-in-out;
}

.window-config__color-option.active .window-config__circle {
  border-color: #7cae4f;
  box-shadow: 0 0 0 1px #7cae4f;
}

.window-config__label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  display: block;
}

.window-config__color-option.active .window-config__label {
  color: #080808;
}

.window-config__tabs-content img {
  max-width: 100%;
  height: auto;
  max-height: 550px;
}

@media (max-width: 768px) {
  .window-config {
    padding: 1.5rem;
  }
  .window-config__title {
    font-size: 2rem;
  }
}

/* ----- LOCATION / CITY PAGE ----- */

.page-template-single-location-city-page .hero-info__text {
  font-size: 16px;
  line-height: 1.5;
}

.local-proof__custom-marker {
  background: none !important;
  border: none !important;
}

.local-proof__map {
  border-radius: 30px;
}

.local-proof__gallery-title {
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #000;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .local-proof__map-wrapper {
    min-height: 500px;
    height: 100%;
  }
  .local-proof__gallery-scroll {
    max-height: 440px;
  }
}

@media (max-width: 991.98px) {
  .local-proof__map-wrapper {
    height: 350px;
  }
  .local-proof__gallery-scroll {
    max-height: 500px;
  }
  .local-proof__gallery-title {
    font-size: 22px;
  }
  .local-proof__gallery-title br {
    display: none;
  }
}

.local-proof__search-input {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #000;
  border: 1px solid #000;
}

.local-proof__search-input::placeholder {
  color: #000;
}

.local-proof__gallery-img {
  height: 190px;
  border-radius: 20px;
}

.local-proof__gallery-name {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.local-proof__gallery-scroll::-webkit-scrollbar {
  width: 6px;
}
.local-proof__gallery-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.local-proof__gallery-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.local-proof__gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.local-proof__gallery-overlay {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.local-proof__popup .leaflet-popup-content {
  margin: 0 !important;
  width: 100% !important;
}

.local-proof__popup .leaflet-popup-content-wrapper {
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #fff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
  width: 240px !important;
  max-width: 240px !important;
}

.local-proof__popup .leaflet-popup-content {
  margin: 0 !important;
  width: 240px !important;
  max-width: 240px !important;
}

.local-proof__popup-img {
  width: 100% !important;
  height: 140px;
  object-fit: cover;
  display: block;
  margin: 0;
}

.local-proof__popup-title {
  margin: 0 !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #212529;
  text-align: center;
}

.local-proof__popup .leaflet-popup-close-button {
  color: #fff !important;
  padding: 0 !important;
  font-size: 16px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* ----- WINDOW TREATMENTS ----- */

.slider-collection__inner {
  border-radius: 30px;
  overflow: hidden;
}

.slider-collection__img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.slider-collection__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-collection__indicator {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  border: none !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.slider-collection__indicator.active {
  background-color: #ffffff !important;
}

.collection-info {
  background: rgba(17, 27, 9, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 30px;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 30px;
  text-align: left;
}

.collection-info__title {
  font-size: 32px;
  color: #ffffff;
}

.collection-info__description {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 991px) {
  .collection-info {
    padding: 15px;
  }
  .collection-info__title {
    font-size: 22px;
  }
  .collection-info__description {
    font-size: 13px;
  }
}

/* ----- ABOUT US ----- */

.our-values-title {
  color: #7cae4f;
  font-size: 48px;
  font-weight: 400;
}

.about-stats-number {
  color: #7cae4f;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.2;
}

.about-stats-text {
  font-size: 24px;
  color: #000;
}

.info-card-licensed {
  width: 100%;
  height: 145px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.info-card-licensed img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .about-stats-number {
    font-size: 40px;
  }
  .about-stats-text {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .our-values-title {
    font-size: 28px;
  }
}

/* ----- REVIEWS AGGREGATOR ----- */

.aggregator-review-card {
  padding: 30px;
  border-radius: 29px;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid #7cae4f;
}

.aggregator-review-card__author {
  color: #000;
  font-size: 20px;
}

.aggregator-review-card__text {
  font-size: 14px;
}

.review-filters .btn-outline-secondary {
  color: #2f4a41;
  background-color: transparent;
  border: 1px solid #2f4a41;
  border-radius: 30px;
  padding: 15px 40px;

  font-weight: 500;
  font-size: 16px;
}

.review-filters .btn-outline-secondary:hover,
.review-filters .btn-outline-secondary.active {
  background: #2f4a41 !important;
  border-color: #2f4a41 !important;
  color: #fff !important;
  border-radius: 30px;
  padding: 15px 40px;

  border: 1px solid #2f4a41;

  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 991px) {
  .aggregator-review-card__author {
    color: #000;
    font-size: 16px;
  }

  .aggregator-review-card__text {
    font-size: 17px;
  }
}

/* ---------- BLOG ARCHIVE ---------- */

.blog-header {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .blog-header {
    padding-top: 90px;
  }
}

.blog-search-inner {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 50px;
}

.blog-search-input {
  width: 100%;
  padding: 13px 20px;
  border: 0;
  font-size: 16px;
  color: #000;
  outline: none;
  background: transparent;
  transition: border-color 0.2s;
}

.blog-search-input::placeholder {
  color: #000;
}

.blog-search-btn {
  border: 0;
  background: transparent;
  padding: 10px 20px;
}

.blog-hero {
  padding: 30px 0 10px;
}

.blog-hero__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}
@media (max-width: 767px) {
  .blog-hero__img {
    height: 300px;
  }
}

.blog-card {
  border-radius: 29px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  border: 1px solid #7cae4f;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card__img-link {
  display: block;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card__title {
  font-size: 24px;
}

@media (max-width: 991px) {
  .blog-card__title {
    font-size: 17px;
  }
  .blog-card__img {
    height: 270px;
  }
}

.blog-card__title a {
  color: #000;
  transition: all 0.3s ease-out;
  text-decoration: none;
}
.blog-card__title a:hover {
  color: #7cae4f;
}

ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  gap: 12px;
}

ul.page-numbers li a,
ul.page-numbers li span.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  font-size: 20px;
  border-radius: 13px;
  transition: all 0.2s ease-in-out;
}

ul.page-numbers li a.page-numbers:not(.prev):not(.next) {
  color: rgb(47, 74, 65, 0.5);
  border: 1px solid rgb(47, 74, 65, 0.5);
  background-color: transparent;
}

ul.page-numbers li a.page-numbers:not(.prev):not(.next):hover {
  border-color: #2f4a41;
  color: #2f4a41;
}

ul.page-numbers li span.page-numbers.current {
  background-color: #2f4a41;
  color: #ffffff;
  border: 1px solid #2f4a41;
}

ul.page-numbers li a.prev,
ul.page-numbers li a.next {
  color: #2f4a41;
  border: none;
  background: transparent;
  width: auto;
  padding: 0 6px;
}

ul.page-numbers li a.prev:hover,
ul.page-numbers li a.next:hover {
  opacity: 0.7;
}

ul.page-numbers li a.prev svg,
ul.page-numbers li a.next svg {
  display: block;
  width: 22px;
  height: 22px;
}

nav[aria-label="breadcrumb"] {
  font-size: 16px;
  color: rgb(255, 255, 255, 0.8);
}

nav[aria-label="breadcrumb"] a {
  color: rgb(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

nav[aria-label="breadcrumb"] a:hover {
  color: #fff;
}

nav[aria-label="breadcrumb"] span {
  margin: 0 4px;
}

nav[aria-label="breadcrumb"] > span > span:first-child {
  margin-left: 0;
}

.hero-info-date {
  font-size: 16px;
  color: rgb(255, 255, 255, 0.8);
}

.single-cta__heading {
  font-size: 32px;
  color: #7cae4f;
}

@media (max-width: 991px) {
  .single-cta__heading {
    font-size: 21px;
  }
}

.single-author__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.single-author__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.single-author__name {
  font-size: 36px;
  color: #080808;
}

@media (max-width: 991px) {
  .single-author__name {
    font-size: 19px;
  }
}

/* ---------- PAGE TEMPLATE DEFAULT ---------- */

.page-template-default {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .page-template-default {
    padding-top: 90px;
  }
}

.wp-block-heading {
  margin-bottom: 1.5rem;
}

/* ---------- PAGE TEMPLATE TEAM ---------- */

.page-template-single-team {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .page-template-single-team {
    padding-top: 90px;
  }
}

.team-technicians {
  min-height: 700px;
}

.team-technicians__img-cover {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .team-technicians {
    min-height: 360px;
  }
}

/* ---------- Video Showcase ---------- */

.video-gallery__filters {
  gap: 12px;
}

.video-gallery__filter-btn.nav-link {
  color: #2d3f3a;
  padding: 15px 32px;
  border: 1px solid #2f4a41;
  background-color: transparent;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
}

.video-gallery__filter-btn.nav-link:hover,
.video-gallery__filter-btn.nav-link.active {
  border-color: #2f4a41;
  color: #fff;
  background: #2f4a41;
}

.video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  border-radius: 29px;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid #7cae4f;
}

.video-card__thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.video-card__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
}

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

.video-card__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-card:hover .video-card__play-btn {
  background-color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #2d3f3a;
  margin-left: 4px;
}

.video-card__body {
  padding: 24px;
  background-color: #ffffff;
}

.video-card__title {
  font-size: 32px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

@media (max-width: 991px) {
  .video-card__title {
    font-size: 22px;
  }
}

/* ---------- Employees ---------- */

.employees-section .nav-pills .nav-link {
  color: #2d3f3a;
  padding: 15px 32px;
  border: 1px solid #2f4a41;
  background-color: transparent;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
}

.employees-section .nav-pills .nav-link:hover,
.employees-section .nav-pills .nav-link.active {
  border-color: #2f4a41;
  color: #fff;
  background: #2f4a41;
}

.employee-card__avatar-wrapper {
  max-width: 260px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.employee-card__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.employee-card__name {
  font-weight: 400;
  font-size: 32px;
  color: #080808;
}

.employee-card__role,
.employee-card__experience {
  font-size: 24px;
  color: #080808;
  opacity: 0.7;
}

.employee-card__experience {
  font-size: 20px;
}

.employee-card__bio {
  font-size: 16px;
  text-align: center;
  color: #080808;
  opacity: 0.6;
}

@media (max-width: 991px) {
  .employee-card__name {
    font-size: 27px;
  }
}

/* ---------- LICENSES & CERTIFICATIONS ---------- */

.page-template-single-licenses {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .page-template-single-licenses {
    padding-top: 90px;
  }
}

.badge-hiring-now {
  position: absolute;
  top: 25px;
  right: 25px;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #2f4a41;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #2f4a41;
  white-space: nowrap;
  background-color: #fff;
  z-index: 2;
}

@media (max-width: 991px) {
  .badge-hiring-now {
    font-size: 13px;
    padding: 3px 10px;
  }
}

/* ---------- DELIVERY ---------- */

.page-template-single-delivery {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .page-template-single-delivery {
    padding-top: 90px;
  }
}

.steps-section__wrapper {
  padding-bottom: 50px;
}

@media (min-width: 992px) {
  .steps-section__wrapper::before {
    content: "";
    position: absolute;
    bottom: 21px;
    left: 25px;
    width: calc(100% - 50px);
    height: 1px;
    background-color: #2f4a41;
    z-index: 1;
  }
}

.step-card {
  background: #ffffff;
  border: 1px solid #7cae4f;
  border-radius: 30px;
  border-bottom-left-radius: 0px;
  padding: 35px 30px 45px 30px;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
  background: rgba(255, 255, 255, 0.45);
  position: relative;
}

@media (min-width: 992px) {
  .steps-section__wrapper .col-lg-3:not(:last-child) .step-card::after {
    content: "→";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #7cae4f;
    font-size: 22px;
    z-index: 10;
  }
}

.step-card__number {
  font-size: 32px;
  font-weight: 400;
  color: #7cae4f;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card__title {
  font-size: 20px;
  font-weight: 400;
  color: #7cae4f;
  margin-bottom: 15px;
}

.step-card__line {
  border: 0;
  border-top: 1px solid #7cae4f;
  opacity: 1;
  margin: 15px 0 20px 0;
}

.step-card__text {
  font-size: 12px;
  color: #080808;
  line-height: 1.5;
  margin: 0;
}

.step-card__marker {
  display: none;
}

@media (min-width: 992px) {
  .step-card__marker {
    display: block;
    width: 25px;
    height: 25px;
    background-color: #7cae4f;
    border-radius: 50%;
    position: absolute;
    bottom: -42px;
    left: 0;
    z-index: 2;
  }
}

@media (max-width: 991px) {
.steps-section__wrapper {
  padding-bottom: 0;
}
}

/* ---------- PAYMENT ---------- */

.page-template-single-payment {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .page-template-single-payment {
    padding-top: 90px;
  }
}

.payment-progress-bar {
  width: 100%;
  height: 80px;
  color: #fff;
  background-color: #7cae4f;
  border-radius: 80px;
  border: 1px solid rgba(124, 174, 79, 0.6);
  overflow: hidden;
  box-shadow: 4px 5px 4px 0 rgba(0, 0, 0, 0.11);
}

.payment-step {
  height: 100%;
  transition: all 0.3s ease;
}

.step-25 {
  width: 25%;
}

.step-50 {
  width: 50%;
  background-color: #2f4a41;
  border-radius: 80px;
  position: relative;
  z-index: 2;
}

.payment-label {
  font-size: 20px;
  color: #7cae4f;
  line-height: 1.3;
}

.payment-label-dark {
  color: #2f4a41;
}

@media (max-width: 991px) {
  .payment-label {
    font-size: 15px;
  }
  .payment-progress-bar {
    height: 40px;
  }
}

/* ---------- FINANCING  ---------- */

.calc-input-wrapper {
  border: 1px solid #7cae4f;
  border-radius: 20px;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.8);
}

.calc-label {
  font-size: 24px;
  font-weight: 500;
}

.calc-value-display {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
}

.calc-hints {
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}

.custom-range::-webkit-slider-thumb {
  background-color: #7cae4f !important;
  width: 20px;
  height: 20px;
  margin-top: -6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.custom-range::-moz-range-thumb {
  background-color: #7cae4f !important;
  width: 20px;
  height: 20px;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.custom-range::-webkit-slider-runnable-track {
  background-color: #a4d494;
  height: 8px;
  border-radius: 4px;
}

.custom-range::-moz-range-track {
  background-color: #a4d494;
  height: 8px;
  border-radius: 4px;
}

.result-title {
  font-size: 40px;
  color: #000;
}

.result-value {
  font-size: 40px;
  color: #7cae4f;
}

@media (max-width: 991px) {
  .calc-label {
    font-size: 20px;
  }
  .result-title,
  .result-value {
    font-size: 22px;
  }
}

/* ---------- LOCATIONS  ---------- */

.city-list-item {
  color: #080808;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #080808;
  transition: all 0.3s ease-out;
}

.city-list-item:hover {
  color: #7cae4f;
  border-bottom: 1px solid #7cae4f;
}

/* ---------- CONTACT US ---------- */

.page-template-single-contact {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .page-template-single-contact {
    padding-top: 90px;
  }
}

/* ---------- ARCHIVE PORTFOLIO ---------- */

.post-type-archive-portfolio {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .post-type-archive-portfolio {
    padding-top: 90px;
  }
}

#portfolio-comparison {
	margin:0 auto; 
	cursor:ew-resize; 
	user-select:none;
}

#portfolio-img-after {
	pointer-events:none;
}

#portfolio-before-layer {
	inset:0 auto 0 0;
	width: 50%;
}

#portfolio-div-line {
	left:50%; 
	width:2px; 
	transform:translateX(-50%); 
	pointer-events:none;
}

#portfolio-img-before {
  top:0; 
  left:0;
  height:100%; 
  max-width:none; 
  pointer-events:none;
}  

#portfolio-div-btn {
	top:50%; 
	left:50%;
	transform:translate(-50%,-50%); 
	width:44px; 
	height:44px;  
	display:flex; 
	align-items:center;
	justify-content:center; 
	pointer-events:none;
}

/* ---------- 404 ---------- */

.error404 {
  padding-top: 106px;
}

@media (max-width: 991px) {
  .error404 {
    padding-top: 90px;
  }
}

.grecaptcha-badge { 
    visibility: hidden !important; 
}

.wpcf7-privacy {
	font-size: 12px;
	padding: 10px 0 0;
}