/*---------------------------------------
  VARIABLES            
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #4a8453;
  --secondary-color: #3ab238;
  --section-bg-color: #d7efd7;
  --custom-btn-bg-color: #3ab238;
  --custom-btn-bg-hover-color: #228B22;
  --dark-color: #054d04;
  --p-color: #68696b;
  --border-color: #ebebec;
  --link-hover-color: #3ab238;
  --body-font-family: 'Poppins', sans-serif;
  --h1-font-size: 52px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 16px;
  --btn-font-size: 18px;
  --copyright-font-size: 14px;
  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --transition: all 0.5s ease-in-out;
}

/*---------------------------------------
  TYPO           
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1 span {
  color: #dede10;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pourquoi {
  background-image: linear-gradient(rgba(245, 242, 242, 0.966), rgba(242, 253, 230, 0.95)), url(../img/elagage-hainaut-brabant-belgique-entretien-jardin-2.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--secondary-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.section-overlay+.container {
  position: relative;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
}

.link--herse::before {
  display: none;
}

.link__graphic {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  fill: none;
  stroke: var(--dark-color);
  stroke-width: 1px;
}

.link__graphic--stroke path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.link:hover .link__graphic--stroke path {
  stroke-dashoffset: 0;
}

.link__graphic--arc {
  top: 73%;
  left: -23%;
}

.link__graphic--arc path {
  transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.link:hover .link__graphic--arc path {
  transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
  transition-duration: 0.3s;
}

.button {
  display: inline-block;
  position: relative;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--pan {
  overflow: hidden;
}

.button--pan span {
  position: relative;
}

.button--pan::before {
  content: '';
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--pan:hover::before {
  background: transparent;
  transform: translate3d(0, -100%, 0);
}

/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  position: relative;
}

.custom-block-wrap .custom-block {
  position: absolute;
  bottom: 0;
  right: 0;
}

.custom-block {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-small);
  padding: 20px;

}

.custom-block .custom-icon,
.custom-block a {
  color: var(--white-color);
  font-size: 1.4rem;
  animation: blink 3s ease 0s 2 normal forwards;
}

.custom-block .custom-icon,
.custom-block a:hover {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: var(--transition);
  transform: scale(1.05);
}

/*---------------------------------------
  CUSTOM ICON COULEUR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/

@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  transition: all 0.3s;
  padding: 15px 25px;
}

#contact-tel {
  animation: blink 2s ease 0s 1 normal forwards;
}


.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  margin-top: 8px;
  margin-right: 0;
  padding: 12px 25px;

}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
  transition: var(--transition);
  transform: scale(1.05);
}



.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);

}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);

}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  /* background: transparent; */
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 212, 255, 0) 100%);
  color: #fff;
  position: absolute;
  top: 49px;
  right: 0;
  left: 0;
  z-index: 9;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-light);
}

.logo {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  width: 60px;
  height: 60px;
  padding: 1px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 20px;
  padding: 0;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
}


@media screen and (min-width: 992px) {}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  position: relative;
  z-index: 22;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}

.site-header-icon {
  display: inline-block;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 680px;

  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/elagage-hainaut-brabant-belgique-taille-haies-1-hd.webp') center/cover no-repeat;
  filter: brightness(70%);
}




.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section svg {
  position: absolute;
  bottom: -50px;
  right: 0;
  left: 0;
  pointer-events: none;
}

@media screen and (min-width: 991px) {
  .hero-section-full-height {
    height: 85vh;
  }
}

/*---------------------------------------
  INTRO        
-----------------------------------------*/
.intro-section {
  padding-top: 50px;
}

.intro-section strong {
  color: var(--primary-color);
}


/*---------------------------------------
  BANNER        
-----------------------------------------*/
.banner-section {
  background-image: url('../img/elagage-hainaut-brabant-belgique-mons-tournai-28-hd.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding-top: 100px;
  padding-bottom: 50px;
}

.banner-section .breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
  color: var(--white-color);
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-image {
  border-radius: var(--border-radius-medium);
}

.featured-block {
  padding: 20px;
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services-thumb {
  background-color: var(--white-color);
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 30px;
  box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  -webkit-box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  -moz-box-shadow: 0 1px 2px 0 rgba(90, 91, 95, 0.1);
  transition: var(--transition);
}


.services-thumb:hover {
  -webkit-box-shadow: 0 21px 19px -2px rgba(143, 182, 144, 0.8);
  -moz-box-shadow: 0 21px 19px -2px rgba(143, 182, 144, 0.8);
  box-shadow: 0 21px 19px -2px rgba(143, 182, 144, 0.8);
  transform: translateY(-5px);
}

.services-thumb.section-bg {
  background: var(--section-bg-color);
}

.services-detail-section .services-image {
  aspect-ratio: 0;
}

.services-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.services-image-wrap:hover .services-image-hover {
  opacity: 1;
}

.services-title-link {
  display: block;
}

.services-image,
.team-image {
  border-radius: var(--border-radius-small);
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  transition: all 0.5s;
}

.services-image-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.services-icon-wrap {
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: var(--h3-font-size);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  padding: 8px 12px;
}

.services-icon-wrap .button--skoll {
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  FAQ
-----------------------------------------*/
.faq-section .faq-item {
  background: var(--primary-color);
  border-radius: var(--border-radius-small);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.faq-section .faq-item + .faq-item {
  margin-top: 16px;
}

.faq-section .faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
}

.faq-section .faq-question::-webkit-details-marker {
  display: none;
}

.faq-section .faq-question h5 {
  color: var(--white-color);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.faq-section .faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  flex-shrink: 0;
}

.faq-section .faq-toggle::before,
.faq-section .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--white-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-section .faq-toggle::before {
  width: 12px;
  height: 2px;
}

.faq-section .faq-toggle::after {
  width: 2px;
  height: 12px;
}

.faq-section .faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-section .faq-answer {
  padding: 0 22px 18px 22px;
  background: rgba(255, 255, 255, 0.08);
}

.faq-section .faq-answer p {
  color: var(--white-color);
  margin: 0;
}





/*---------------------------------------
  EQUIPEMENTIERS             
-----------------------------------------*/
.equipementier-section {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 50px;
}

.equipementier-section-title {
  border-radius: var(--border-radius-large);
  display: inline-block;
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
  padding: 10px 20px;
}

.equipementier-image {
  display: block;
  width: 150px;
  margin: auto;
  transition: all 0.3s;
  margin-top: 0.8rem;
}

.equipementier-image:hover {
  transform: scale(1.05);
}



/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--primary-color);
  padding-top: 50px;
}

.site-footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.site-footer-title,
.site-footer-link {
  color: var(--white-color);
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-right: 30px;
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}

.site-footer-bottom a {
  color: var(--section-bg-color);
}

.site-footer-bottom a:hover {
  color: var(--white-color);
}

/*---------------------------------------
  FOOTER        
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  margin-bottom: 5px;
}

/*---------------------------------------
  MEDIA QUERIES    
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .intro-section {
    padding-top: 0;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .team-section {
    padding-bottom: 80px;
  }

  .navbar {
    background: var(--white-color);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--primary-color);
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    background-color: var(--custom-btn-bg-color);
    color: var(--white-color);
    margin-left: 0;
  }

  #navbarlogo {
    display: none;
  }

  .custom-block-wrap .custom-block {
    right: 12px;
  }

  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    /* text-align: center; */
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {

  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-section svg {
    bottom: 0;
  }

  .team-info::before {
    border-top: 0;
    border-bottom: 20px solid var(--white-color);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    top: -20px;
    bottom: auto;
    right: 0;
    left: 0;
  }

}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}
