@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #d5d5d5;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  background-color: #030712;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(246, 113, 34);
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

.text-grey-400 {
  font-weight: 400;
  color: #9ca3af;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.125rem;
  }
  h6 {
    font-size: 1rem;
  }
}
.site-header .navbar {
  padding: 20px 0;
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-header .navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  padding: 0;
}
.site-header .navbar .navbar-brand:hover {
  color: rgb(246, 113, 34);
}
.site-header .navbar .navbar-brand .brand-text {
  color: inherit;
}
.site-header .navbar .navbar-nav .nav-item {
  margin: 0 5px;
}
.site-header .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 10px 20px;
  transition: color 0.3s ease;
  border-radius: 0.375rem;
  font-size: 16px;
}
.site-header .navbar .navbar-nav .nav-item .nav-link:hover, .site-header .navbar .navbar-nav .nav-item .nav-link:focus {
  color: rgb(246, 113, 34);
}
.site-header .navbar .navbar-nav .nav-item.active .nav-link, .site-header .navbar .navbar-nav .nav-item.current-menu-item .nav-link, .site-header .navbar .navbar-nav .nav-item.current_page_item .nav-link {
  color: rgb(246, 113, 34);
  font-weight: 600;
}
.site-header .navbar .navbar-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 200px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  margin-top: 10px;
}
.site-header .navbar .navbar-nav .sub-menu .nav-item {
  margin: 0;
}
.site-header .navbar .navbar-nav .sub-menu .nav-item .nav-link {
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 0;
  display: block;
}
.site-header .navbar .navbar-nav .sub-menu .nav-item .nav-link:hover, .site-header .navbar .navbar-nav .sub-menu .nav-item .nav-link:focus {
  background-color: rgba(246, 113, 34, 0.1);
  color: rgb(246, 113, 34);
}
.site-header .navbar .navbar-nav .dropdown.show .sub-menu {
  display: block;
}
.site-header .navbar .navbar-nav .dropdown .dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  margin-top: 10px;
  background-color: #000;
  right: 0;
  left: unset;
}
.site-header .navbar .navbar-nav .dropdown .dropdown-menu .menu-item {
  margin: 0;
}
.site-header .navbar .navbar-nav .dropdown .dropdown-menu .menu-item .dropdown-item {
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 0;
}
.site-header .navbar .navbar-nav .dropdown .dropdown-menu .menu-item .dropdown-item:hover, .site-header .navbar .navbar-nav .dropdown .dropdown-menu .menu-item .dropdown-item:focus {
  background-color: rgba(246, 113, 34, 0.1);
  color: rgb(246, 113, 34);
}
.site-header .navbar .navbar-toggler {
  border: none;
  padding: 5px 10px;
}
.site-header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .site-header .logo-section .logo-image {
    height: 2.5rem;
  }
  .site-header .logo-section .logo-text .logo-title {
    font-size: 1.125rem;
  }
  .site-header .logo-section .logo-text .logo-subtitle {
    font-size: 0.8rem;
  }
  .site-header .custom-logo {
    height: 2.5rem;
  }
  .site-header .navbar {
    padding: 10px 0;
  }
  .site-header .navbar .navbar-brand {
    font-size: 1.25rem;
  }
  .site-header .navbar .navbar-collapse {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-header .navbar .navbar-nav .nav-item {
    margin: 0;
  }
  .site-header .navbar .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
  }
  .site-header .navbar .navbar-nav .nav-item .nav-link:last-child {
    border-bottom: none;
  }
  .site-header .navbar .navbar-nav .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0;
    margin: 0;
    padding-left: 20px;
  }
  .site-header .navbar .navbar-nav .sub-menu .nav-link {
    padding: 10px 0;
    font-size: 0.9rem;
  }
  .site-header .navbar .navbar-nav .dropdown.show .sub-menu {
    display: block;
  }
}

.navbar-collapse.collapsing {
  transition: height 0.35s ease;
}

.navbar-toggler-icon {
  background: url(../../images/menu.svg) no-repeat center !important;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.logo-section {
  animation: fadeInLeft 0.8s ease-out;
}
.logo-section .logo-image {
  height: 3.3rem;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1) contrast(1);
}
.logo-section .logo-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}
.logo-section .logo-text .logo-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgb(246, 113, 34);
  margin-bottom: 0.25rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.logo-section .logo-text .logo-subtitle {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.025em;
  transition: color 0.3s ease;
}
.logo-section:hover .logo-title {
  color: rgb(246, 113, 34);
}
.logo-section:hover .logo-subtitle {
  color: rgba(246, 113, 34, 0.7);
}

.custom-logo {
  height: 3rem;
  width: auto;
  transition: all 0.3s ease;
}
.custom-logo:hover {
  transform: scale(1.05);
}

.site-footer {
  background-color: #030712;
  color: #ffffff;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .site-footer {
    margin-top: 5px;
  }
}
.site-footer .footer-logo img {
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer .footer-title {
  color: rgb(246, 113, 34);
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .site-footer .footer-title {
    font-size: 1.1rem;
  }
}
.site-footer .footer-links .footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}
.site-footer .footer-links .footer-link:hover, .site-footer .footer-links .footer-link:focus {
  color: #ffffff;
  text-decoration: none;
}
.site-footer .contact-info .contact-icon {
  color: rgb(246, 113, 34);
  min-width: 16px;
}
.site-footer .contact-info span {
  font-size: 0.9rem;
  line-height: 1.5;
}
.site-footer .social-links .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #9ca3af;
  text-decoration: none;
}
.site-footer .social-links .social-link:hover, .site-footer .social-links .social-link:focus {
  color: #ffffff;
}
.site-footer .social-links .social-link:hover svg, .site-footer .social-links .social-link:focus svg {
  stroke: rgb(246, 113, 34);
}
.site-footer .social-links .social-link svg {
  width: 30px;
  height: 30px;
}
.site-footer .footer-menu-wrapper .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-menu-wrapper .footer-menu li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.site-footer .footer-menu-wrapper .footer-menu li a:hover, .site-footer .footer-menu-wrapper .footer-menu li a:focus {
  color: #fff;
}
.site-footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}
.site-footer .footer-bottom .footer-bottom-link:hover {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .site-footer .row > div {
    margin-bottom: 40px;
  }
  .site-footer .row > div:last-child {
    margin-bottom: 0;
  }
  .site-footer .footer-menu {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .site-footer .footer_description {
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 5px 0;
  }
  .site-footer .footer_description {
    text-align: center !important;
  }
  .site-footer .footer-brand {
    text-align: center;
    margin-bottom: 40px;
  }
  .site-footer .footer-brand .d-flex {
    justify-content: center;
  }
  .site-footer .social-links {
    justify-content: center;
  }
  .site-footer .footer-title {
    text-align: center;
    margin-bottom: 10px;
  }
  .site-footer .footer-links,
  .site-footer .contact-info {
    text-align: center;
  }
  .site-footer .footer-links .d-flex,
  .site-footer .contact-info .d-flex {
    justify-content: center;
  }
  .site-footer .contact-info li {
    justify-content: center;
    text-align: left;
  }
  .site-footer .footer-menu {
    text-align: center;
  }
}
.site-footer .contact-info li {
  transition: transform 0.2s ease;
}
.site-footer .contact-info li:hover {
  transform: translateX(5px);
}
@media (max-width: 480px) {
  .site-footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .site-footer .footer-brand .d-flex {
    flex-direction: column;
    text-align: center;
  }
  .site-footer .footer-brand .d-flex .footer-logo {
    margin-bottom: 10px;
    margin-right: 0 !important;
  }
  .site-footer .social-links .social-link {
    width: 36px;
    height: 36px;
  }
  .site-footer .social-links .social-link svg {
    width: 20px;
    height: 20px;
  }
  .site-footer .contact-info li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer .contact-info li .contact-icon {
    margin-bottom: 5px;
    margin-right: 0 !important;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-footer {
  animation: fadeInUp 0.6s ease-out;
}

.footer-menu .current-menu-item a,
.footer-menu .current_page_item a {
  color: rgb(246, 113, 34);
  font-weight: 500;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  width: auto;
  max-width: 420px;
  min-width: 320px;
  background: #181818;
  color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  font-family: inherit;
  border-radius: 14px;
  animation: fadeInUp 0.6s;
}

.cookie-banner-content {
  background: #111;
  border-radius: 14px;
  padding: 16px 22px 14px 18px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  min-width: 0;
  max-width: 420px;
}

.cookie-banner-header {
  margin-bottom: 8px;
}
.cookie-banner-header .fw-bold {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cookie-banner-header img {
  height: 24px;
  max-width: 60px;
  margin-right: 8px;
}

.cookie-banner-body p {
  font-size: 12px;
  margin-bottom: 12px !important;
  line-height: 1.5;
}
.cookie-banner-body .cookie-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 4px;
}

.cookie-btn-accept,
.cookie-btn-refuse {
  font-weight: 600;
  border-radius: 6px;
  font-size: 12px;
  padding: 6px 16px;
  min-width: 80px;
  height: 34px;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cookie-btn-accept {
  background: #ff7f2a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #e96c13;
  color: #fff;
}

.cookie-btn-refuse {
  background: #f3f3f3;
  color: #222;
  border: 1px solid #e0e0e0;
}

.cookie-btn-refuse:hover,
.cookie-btn-refuse:focus {
  background: #e0e0e0;
  color: #222;
}

.btn-primary-cookie {
  background-color: rgb(246, 113, 34);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px !important;
  padding: 7px 22px;
  min-width: 90px;
  height: 34px;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-cookie:hover,
.btn-primary-cookie:focus {
  background-color: rgb(229.84, 91.52, 9.36);
  color: #fff;
}

.btn-refuse-cookie {
  background: transparent;
  color: #fff;
  border: 1.2px solid #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px !important;
  padding: 7px 22px;
  min-width: 90px;
  height: 34px;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-refuse-cookie:hover,
.btn-refuse-cookie:focus {
  background: #fff;
  color: #181818;
  border-color: #fff;
}

.banner_home {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner_home .slider-container {
  width: 100%;
  position: relative;
  z-index: 0;
}
.banner_home .items {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  color: white;
}
.banner_home .items .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner_home .items .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.banner_home .items .slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}
.banner_home .items .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
.banner_home .items .container .content-wrapper {
  max-width: 65%;
}
.banner_home .items .container .content-wrapper .slide-content {
  width: 100%;
  text-align: left;
}
.banner_home .items .container .content-wrapper .slide-content h2 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 60px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  color: rgb(246, 113, 34);
  line-height: 94%;
}
.banner_home .items .container .content-wrapper .slide-content h2 small {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
  opacity: 0.95;
  text-transform: none;
  color: white;
}
.banner_home .items .container .content-wrapper .slide-content h2 span {
  display: block;
  margin-top: 10px;
  text-transform: none;
  color: white;
}
.banner_home .items .container .content-wrapper .slide-content .grp-btn {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 60px;
}
.banner_home .items .container .content-wrapper .slide-content .grp-btn .btn-primary,
.banner_home .items .container .content-wrapper .slide-content .grp-btn .btn-outline-primary {
  min-width: 200px;
}
.banner_home .container-absolute {
  position: absolute;
  bottom: 12%;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
}
.banner_home .container-absolute .custom-nav {
  display: flex;
  justify-content: end;
}
.banner_home .slide-navigation .custom-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.banner_home .slide-navigation .custom-nav .custom-prev,
.banner_home .slide-navigation .custom-nav .custom-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.banner_home .slide-navigation .custom-nav .custom-prev:hover,
.banner_home .slide-navigation .custom-nav .custom-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.banner_home .slide-navigation .custom-nav .custom-prev:active,
.banner_home .slide-navigation .custom-nav .custom-next:active {
  transform: scale(0.95);
}
.banner_home .slide-navigation .custom-nav .custom-prev:focus,
.banner_home .slide-navigation .custom-nav .custom-next:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
.banner_home .slide-navigation .custom-nav .custom-prev svg,
.banner_home .slide-navigation .custom-nav .custom-next svg {
  width: 24px;
  height: 24px;
}
.banner_home .slide-navigation .custom-nav .custom-dots {
  display: flex;
  gap: 8px;
  margin: 0 10px;
}
.banner_home .slide-navigation .custom-nav .custom-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner_home .slide-navigation .custom-nav .custom-dots .dot:hover {
  background: rgb(246, 113, 34);
  transform: scale(1.2);
}
.banner_home .slide-navigation .custom-nav .custom-dots .dot.active {
  background: rgb(246, 113, 34);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.banner_home .slick-dots,
.banner_home .slick-arrow {
  display: none !important;
}
@media (max-width: 1024px) {
  .banner_home .items {
    height: 85vh;
  }
  .banner_home .items .content-wrapper {
    max-width: 75%;
  }
  .banner_home .items .content-wrapper .slide-content h2 {
    font-size: 2.8rem;
  }
  .banner_home .items .content-wrapper .slide-content h2 small {
    font-size: 1.2rem;
    font-weight: 900;
  }
  .banner_home .items .content-wrapper .slide-content .grp-btn {
    flex-wrap: wrap;
    gap: 12px;
  }
  .banner_home .slide-navigation {
    top: 20px;
    position: absolute;
  }
  .banner_home .slide-navigation .custom-nav {
    gap: 12px;
  }
  .banner_home .slide-navigation .custom-nav .custom-prev,
  .banner_home .slide-navigation .custom-nav .custom-next {
    width: 45px;
    height: 45px;
  }
  .banner_home .slide-navigation .custom-nav .custom-prev svg,
  .banner_home .slide-navigation .custom-nav .custom-next svg {
    width: 22px;
    height: 22px;
  }
  .banner_home .slide-navigation .custom-nav .custom-dots {
    gap: 6px;
    margin: 0 8px;
  }
}
@media (max-width: 768px) {
  .banner_home .items {
    height: 70vh;
  }
  .banner_home .items .container {
    padding: 0 10px;
  }
  .banner_home .items .container .content-wrapper {
    max-width: 100%;
  }
  .banner_home .items .container .content-wrapper .slide-content h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .banner_home .items .container .content-wrapper .slide-content h2 small {
    font-size: 1rem;
  }
  .banner_home .items .container .content-wrapper .slide-content .grp-btn {
    flex-direction: column;
    gap: 10px;
  }
  .banner_home .items .container .content-wrapper .slide-content .grp-btn .btn-primary,
  .banner_home .items .container .content-wrapper .slide-content .grp-btn .btn-outline-primary {
    width: 100%;
    min-width: auto;
    max-width: 280px;
  }
  .banner_home .container-absolute {
    content: "";
    display: flex;
    justify-content: center;
  }
  .banner_home .container-absolute .custom-nav {
    gap: 10px;
  }
  .banner_home .container-absolute .custom-nav .custom-prev,
  .banner_home .container-absolute .custom-nav .custom-next {
    width: 40px;
    height: 40px;
  }
  .banner_home .container-absolute .custom-nav .custom-prev svg,
  .banner_home .container-absolute .custom-nav .custom-next svg {
    width: 20px;
    height: 20px;
  }
  .banner_home .container-absolute .custom-nav .custom-dots {
    gap: 6px;
    margin: 0 8px;
  }
  .banner_home .container-absolute .custom-nav .custom-dots .dot {
    width: 10px;
    height: 10px;
  }
}

.slide-bg img {
  will-change: transform;
  backface-visibility: hidden;
}

.items:not(.slick-active) .slide-bg img {
  opacity: 0.8;
}

.items.slick-active .slide-bg img {
  opacity: 1;
}

#btn-floating-cta {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

#btn-floating-cta.visible {
  opacity: 1;
  visibility: visible;
}

.btn-primary {
  background-color: rgb(246, 113, 34);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: scale(1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-primary:hover {
  background-color: rgba(246, 113, 34, 0.8);
  transform: scale(1.05);
  text-decoration: none;
  color: white;
}
.btn-primary:focus {
  outline: 2px solid rgb(246, 113, 34);
  outline-offset: 2px;
  background-color: rgba(246, 113, 34, 0.8);
}
.btn-primary:active {
  transform: scale(0.98);
  background-color: rgb(246, 113, 34);
}
.btn-primary:disabled, .btn-primary.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-primary:disabled:hover, .btn-primary.disabled:hover {
  background-color: rgba(246, 113, 34, 0.8);
  transform: none;
}
.btn-primary.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn-primary.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}
.btn-primary .icon {
  margin-right: 0.5rem;
}
.btn-primary .icon:last-child {
  margin-right: 0;
  margin-left: 0.5rem;
}

.btn-outline-primary {
  background-color: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: scale(1);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-outline-primary:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
  text-decoration: none;
  border-color: white;
}
.btn-outline-primary:focus {
  outline: 2px solid white;
  outline-offset: 2px;
  background-color: white;
  color: black;
}
.btn-outline-primary:active {
  transform: scale(0.98);
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-outline-primary:disabled:hover, .btn-outline-primary.disabled:hover {
  background-color: transparent;
  color: white;
  transform: none;
}
.btn-outline-primary.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn-outline-primary.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}
.btn-outline-primary .icon {
  margin-right: 0.5rem;
}
.btn-outline-primary .icon:last-child {
  margin-right: 0;
  margin-left: 0.5rem;
}

.btn-outline-accent {
  background-color: transparent;
  color: rgb(246, 113, 34);
  border: 2px solid rgb(246, 113, 34);
}
.btn-outline-accent:hover {
  background-color: rgb(246, 113, 34);
  color: white;
  border-color: rgb(246, 113, 34);
}
.btn-outline-accent:focus {
  outline: 2px solid rgb(246, 113, 34);
  outline-offset: 2px;
  background-color: rgb(246, 113, 34);
  color: white;
}
.btn-outline-accent:active {
  color: white;
}

.grp-btn {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .grp-btn {
    flex-direction: column;
    gap: 10px;
  }
  .grp-btn .btn-primary,
  .grp-btn .btn-outline-primary {
    width: 100%;
  }
}

.grp-btn.grp-btn-center {
  justify-content: center;
}
.grp-btn.grp-btn-start {
  justify-content: flex-start;
}
.grp-btn.grp-btn-end {
  justify-content: flex-end;
}
.grp-btn.grp-btn-between {
  justify-content: space-between;
}
.grp-btn.grp-btn-around {
  justify-content: space-around;
}

.btn-block {
  width: 100%;
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-outline-primary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  .btn-primary:hover,
  .btn-outline-primary:hover {
    transform: scale(1.02);
  }
  .btn-primary.btn-lg,
  .btn-outline-primary.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
  .btn-primary.btn-sm,
  .btn-outline-primary.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.btn-cta-floating {
  bottom: 2rem;
  right: 2rem;
  z-index: 1050;
  background-color: rgb(246, 113, 34);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 50rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 24px 0px;
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  transition: all 0.3s ease;
  animation: gentle-bounce 2s ease-in-out infinite;
}
.btn-cta-floating:hover, .btn-cta-floating:focus {
  background-color: rgba(246, 113, 34, 0.9);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 32px 0px;
  animation-play-state: paused;
}
.btn-cta-floating:active {
  transform: translateY(0);
}

@keyframes gentle-bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  50% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
}
@media (max-width: 767.98px) {
  .btn-cta-floating {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    animation: gentle-bounce-mobile 3s ease-in-out infinite;
  }
}
@keyframes gentle-bounce-mobile {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.services-section {
  background-color: #030712;
  padding: 5rem 0;
}
.services-section .services-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
}
@media (min-width: 768px) {
  .services-section .services-title {
    font-size: 3rem;
  }
}
.services-section .services-title .text-accent {
  color: rgb(246, 113, 34);
}
.services-section .services-description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
}
.services-section .service-card {
  background-color: #111827;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}
.services-section .service-card:hover {
  background-color: #1f2937;
  border-color: rgb(246, 113, 34);
}
.services-section .service-card:hover .service-image {
  transform: scale(1.1);
}
.services-section .service-card:hover .service-title {
  color: rgb(246, 113, 34);
}
.services-section .service-card:hover .service-btn {
  transform: translateX(0.5rem);
}
.services-section .service-image-wrapper {
  height: 12rem;
}
.services-section .service-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.services-section .service-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.services-section .service-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s ease;
}
.services-section .service-text {
  color: #9ca3af;
}
.services-section .service-btn {
  color: rgb(246, 113, 34);
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}
.services-section .service-btn:hover {
  color: rgba(246, 113, 34, 0.9);
}
.services-section .services-cta-btn {
  background-color: rgb(246, 113, 34);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  transition: all 0.3s ease;
}
.services-section .services-cta-btn:hover {
  background-color: rgba(246, 113, 34, 0.9);
  transform: scale(1.05);
}

.services-section.prestation .service-image-wrapper {
  height: auto;
  min-height: 70px;
  transition: 0.3s;
}
.services-section.prestation .service-image-wrapper svg {
  width: 48px;
  height: 48px;
}
.services-section.prestation .service-card {
  background-color: #000;
  padding: 2rem;
}
.services-section.prestation .service-card:hover {
  background-color: #111827;
}
.services-section.prestation .service-card:hover .service-image-wrapper svg {
  stroke: rgb(246, 113, 34);
  transition: 0.3s;
  width: 55px !important;
  height: 55px !important;
}

.references-section {
  background-color: #030712;
  padding: 4rem 0;
}
.references-section .references-header {
  min-width: 320px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .references-section .references-header {
    min-width: auto;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.references-section .references-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #ffffff;
}
@media (min-width: 768px) {
  .references-section .references-title {
    font-size: 2.25rem;
  }
}
.references-section .references-divider {
  width: 4rem;
  height: 0.25rem;
  background-color: rgb(246, 113, 34);
}
@media (max-width: 991.98px) {
  .references-section .references-divider {
    margin: 0 auto;
  }
}
.references-section .references-carousel {
  width: 100%;
}
.references-section .carousel-track {
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.references-section .carousel-track:hover {
  animation-play-state: paused;
}
.references-section .reference-item {
  min-width: 120px;
  flex-shrink: 0;
}
.references-section .reference-logo {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.references-section .reference-logo:hover {
  opacity: 1;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 767.98px) {
  .references-section {
    padding: 3rem 0;
  }
  .references-section .carousel-track {
    gap: 2rem;
    animation-duration: 25s;
  }
  .references-section .reference-logo {
    width: 4rem;
    height: 4rem;
  }
  .references-section .reference-item {
    min-width: 100px;
  }
}

.contact-section {
  background-color: #030712;
  padding: 5rem 0;
}
.contact-section .contact-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: rgb(246, 113, 34);
}
@media (min-width: 768px) {
  .contact-section .contact-title {
    font-size: 2.25rem;
  }
}
.contact-section .contact-details .contact-item {
  gap: 1.25rem;
}
.contact-section .contact-details .contact-icon {
  width: 2rem;
  height: 2rem;
  color: rgb(246, 113, 34);
  flex-shrink: 0;
}
.contact-section .contact-details .contact-label {
  font-weight: bold;
  font-size: 1.125rem;
  color: rgb(246, 113, 34);
}
.contact-section .contact-details .contact-text {
  color: #e5e7eb;
  line-height: 1.6;
}
.contact-section .contact-map {
  border-radius: 1rem;
}
.contact-section .contact-form-wrapper {
  background-color: rgb(246, 113, 34);
  border-radius: 1rem;
  color: #000000;
  max-width: 36rem;
}
.contact-section .contact-form-wrapper .form-title {
  font-size: 1.875rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .contact-section .contact-form-wrapper .form-title {
    font-size: 2.25rem;
  }
}
.contact-section .contact-form-wrapper .form-divider {
  width: 5rem;
  height: 0.25rem;
  background-color: #000000;
}
.contact-section .contact-form-wrapper .form-description {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.8);
}
.contact-section .contact-form-wrapper .form-label {
  color: #000000;
}
.contact-section .contact-form-wrapper .form-label .text-white {
  color: #ffffff !important;
}
.contact-section .contact-form-wrapper .contact-input {
  border: 1px solid #fed7aa;
  background-color: #ffffff;
  color: #000000;
}
.contact-section .contact-form-wrapper .contact-input::placeholder {
  color: #9ca3af;
}
.contact-section .contact-form-wrapper .contact-input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  outline: none;
}
.contact-section .contact-form-wrapper .contact-submit-btn {
  background-color: #000000;
  color: rgb(246, 113, 34);
  font-weight: bold;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  border: none;
  transition: all 0.3s ease;
}
.contact-section .contact-form-wrapper .contact-submit-btn:hover, .contact-section .contact-form-wrapper .contact-submit-btn:focus {
  background-color: #fff7ed;
  color: rgb(246, 113, 34);
  transform: translateY(-1px);
}

.historique-section {
  background-color: #030712;
  color: #ffffff;
  padding: 5rem 0;
}
.historique-section .historique-title {
  font-size: 2.5rem;
  font-weight: bold;
}
.historique-section .historique-title .text-accent {
  color: rgb(246, 113, 34);
}
.historique-section .historique-image {
  border-radius: 0.5rem;
  min-height: 400px;
}
.historique-section .historique-image .historique-img {
  transition: transform 0.5s ease;
}
.historique-section .historique-image .historique-img:hover {
  transform: scale(1.1);
}
.historique-section .historique-image .historique-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.historique-section .historique-content .historique-text {
  font-size: 1.125rem;
  line-height: 1.6;
}
.historique-section .historique-content .historique-text .text-accent {
  color: rgb(246, 113, 34);
}
.historique-section .timeline-section .timeline-wrapper {
  background-color: rgb(246, 113, 34);
  border-radius: 0.5rem;
}
.historique-section .timeline-section .timeline-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}
.historique-section .timeline-section .timeline-container .timeline-line {
  top: 1.25rem;
  left: 0;
  right: 0;
  height: 0.125rem;
  background-color: #000000;
  z-index: 1;
  width: 90%;
  margin: auto;
}
.historique-section .timeline-section .timeline-item .timeline-dot {
  width: 0.875rem;
  height: 0.875rem;
  background-color: #fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.historique-section .timeline-section .timeline-item .timeline-card {
  background-color: #000000;
  transition: all 0.6s ease-out;
  margin-top: 10px;
}
.historique-section .timeline-section .timeline-item .timeline-card .timeline-card-title {
  color: rgb(246, 113, 34);
  font-size: 1.125rem;
  font-weight: 600;
}
.historique-section .timeline-section .timeline-item .timeline-card .timeline-card-text {
  color: #dddddd;
}
.historique-section .timeline-section .timeline-item .timeline-card .timeline-image {
  max-height: 8rem;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .historique-section .historique-image {
    min-height: 300px;
    margin-bottom: 2rem;
  }
  .historique-section .timeline-container .timeline-line {
    display: none;
  }
  .historique-section .timeline-item .timeline-dot {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .historique-section {
    padding: 3rem 0;
  }
  .historique-section .historique-title {
    font-size: 2rem;
  }
  .historique-section .historique-text {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .app-histo-timeline .timeline-container-enhanced .timeline-line-enhanced {
    display: none;
  }
  .app-histo-timeline .timeline-item-enhanced .timeline-dot-enhanced {
    display: none;
  }
  .app-histo-timeline .timeline-card-enhanced {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.98px) {
  .app-histo-timeline .timeline-title-enhanced {
    font-size: 1.5rem;
  }
  .app-histo-timeline .timeline-title-enhanced .timeline-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .app-histo-timeline .timeline-title-enhanced .timeline-icon svg {
    width: 20px;
    height: 20px;
  }
  .app-histo-timeline .timeline-card-enhanced {
    padding: 1rem !important;
  }
  .app-histo-timeline .timeline-card-enhanced .timeline-year-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
  .app-histo-timeline .timeline-card-enhanced .timeline-card-title-enhanced {
    font-size: 1rem;
    margin-bottom: 0.75rem !important;
  }
  .app-histo-timeline .timeline-card-enhanced .timeline-card-text-enhanced {
    font-size: 0.875rem;
    margin-bottom: 1rem !important;
  }
  .app-histo-timeline .timeline-card-enhanced .timeline-image-enhanced {
    max-height: 6rem;
  }
  .app-histo-timeline .timeline-card-enhanced:hover {
    transform: translateY(-0.25rem) scale(1.01);
  }
}
@media (max-width: 575.98px) {
  .app-histo-timeline .timeline-wrapper-enhanced {
    margin: 0 -15px;
    border-radius: 0.5rem;
  }
  .app-histo-timeline .timeline-title-enhanced {
    font-size: 1.25rem;
    margin-bottom: 2rem !important;
  }
  .app-histo-timeline .timeline-title-enhanced .timeline-icon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem !important;
  }
  .app-histo-timeline .timeline-title-enhanced .timeline-icon svg {
    width: 16px;
    height: 16px;
  }
  .app-histo-timeline .timeline-card-enhanced .timeline-year-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
  .app-histo-timeline .timeline-card-enhanced .timeline-card-title-enhanced {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  .app-histo-timeline .timeline-card-enhanced .timeline-card-text-enhanced {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .app-histo-timeline .timeline-card-enhanced .timeline-image-enhanced {
    max-height: 5rem;
  }
}
.timeline-item-enhanced {
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 0.8s ease forwards;
}
.timeline-item-enhanced:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item-enhanced:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item-enhanced:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item-enhanced:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.timeline-title-enhanced {
  background: linear-gradient(45deg, #000000, #333333, #000000);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.timeline-wrapper-enhanced::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 60px 60px;
  animation: float 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.slide-items-line .slick-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.slide-items-line .slick-slide {
  height: inherit;
}
.slide-items-line .slick-slide > div {
  height: 100%;
}
.slide-items-line .slick-prev,
.slide-items-line .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slide-items-line .slick-prev:hover,
.slide-items-line .slick-next:hover {
  background: rgba(3, 3, 3, 0.4941176471);
}
.slide-items-line .slick-prev:hover {
  box-shadow: -2px -1px 7px #fff;
}
.slide-items-line .slick-next:hover {
  box-shadow: 1px -1px 7px #fff;
}
.slide-items-line .slick-prev {
  left: -50px;
}
.slide-items-line .slick-prev::before {
  content: "";
  background-image: url("../../images/l.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: block;
}
.slide-items-line .slick-next {
  right: -50px;
}
.slide-items-line .slick-next::before {
  content: "";
  background-image: url("../../images/r.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: block;
}
.slide-items-line .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 0;
  list-style: none;
}
.slide-items-line .slick-dots li {
  margin: 0 5px;
}
.slide-items-line .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slide-items-line .slick-dots li button:hover {
  background: rgb(246, 113, 34);
}
.slide-items-line .slick-dots li.slick-active button {
  background: #000000;
}
@media (max-width: 1200px) {
  .slide-items-line .slick-prev {
    left: -30px;
  }
  .slide-items-line .slick-next {
    right: -30px;
  }
}
@media (max-width: 768px) {
  .slide-items-line .slick-prev,
  .slide-items-line .slick-next {
    display: none !important;
  }
  .slide-items-line .slick-dots {
    bottom: -30px;
  }
}

.single-service-section {
  background-color: #030712;
  color: #ffffff;
  padding: 0 0 5rem;
  min-height: 100vh;
}
.single-service-section .service-banner {
  height: 70vh;
  min-height: 500px;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.single-service-section .service-banner .service-banner-image {
  height: 100%;
}
.single-service-section .service-banner .service-banner-image img {
  height: 100%;
  object-fit: cover;
}
.single-service-section .service-banner .service-banner-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.single-service-section .service-banner .service-banner-content {
  z-index: 10;
}
.single-service-section .service-banner .service-banner-content .service-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.single-service-section .service-banner .service-banner-content .service-breadcrumb .breadcrumb .breadcrumb-item {
  font-size: 0.875rem;
}
.single-service-section .service-banner .service-banner-content .service-breadcrumb .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-service-section .service-banner .service-banner-content .service-breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: rgb(246, 113, 34);
}
.single-service-section .service-banner .service-banner-content .service-breadcrumb .breadcrumb .breadcrumb-item.active {
  color: rgb(246, 113, 34);
}
.single-service-section .service-banner .service-banner-content .service-breadcrumb .breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: "›";
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0.5rem;
}
.single-service-section .service-banner-title .service-title-accent {
  color: rgb(246, 113, 34);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.single-service-section .service-banner-title .service-title-subtitle {
  color: #f3f4f6;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.single-service-section .service-category-badge {
  margin-top: 2rem;
}
.single-service-section .service-category-badge .badge {
  background: linear-gradient(135deg, rgb(246, 113, 34) 0%, rgb(247.8, 141.4, 78.2) 100%);
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 3rem;
  box-shadow: 0 8px 16px rgba(246, 113, 34, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.single-service-section .service-description-section {
  padding-top: 5rem;
}
.single-service-section .service-description-section .service-main-description .service-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #e5e7eb;
}
.single-service-section .service-description-section .service-main-description .service-text.lead {
  font-size: 1.375rem;
  color: #f9fafb;
  font-weight: 400;
  line-height: 1.6;
}
.single-service-section .service-description-section .service-main-description .service-text .text-accent {
  color: rgb(246, 113, 34);
  font-weight: 700;
}
.single-service-section .service-description-section .service-meta-section .service-meta-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  padding: 1rem 1.5rem;
  border-radius: 3rem;
  font-size: 1rem;
  color: #f3f4f6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.single-service-section .service-description-section .service-meta-section .service-meta-item:hover {
  background: linear-gradient(135deg, rgba(246, 113, 34, 0.15) 0%, rgba(246, 113, 34, 0.08) 100%);
  border-color: rgba(246, 113, 34, 0.4);
  color: rgb(246, 113, 34);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(246, 113, 34, 0.2);
}
.single-service-section .service-description-section .service-meta-section .service-meta-item svg {
  color: rgb(246, 113, 34);
  flex-shrink: 0;
}
.single-service-section .service-description-section .service-actions .btn-primary,
.single-service-section .service-description-section .service-actions .btn-outline-primary {
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.4s ease;
  text-decoration: none;
  font-size: 1.125rem;
}
.single-service-section .service-description-section .service-actions .btn-primary svg,
.single-service-section .service-description-section .service-actions .btn-outline-primary svg {
  transition: transform 0.3s ease;
}
.single-service-section .service-description-section .service-actions .btn-primary:hover svg,
.single-service-section .service-description-section .service-actions .btn-outline-primary:hover svg {
  transform: translateX(6px);
}
.single-service-section .service-description-section .service-actions .btn-primary {
  background: linear-gradient(135deg, rgb(246, 113, 34) 0%, rgb(247.35, 134.3, 67.15) 100%);
  color: #000000;
  border: 2px solid rgb(246, 113, 34);
}
.single-service-section .service-description-section .service-actions .btn-primary:hover {
  background: linear-gradient(135deg, rgb(247.35, 134.3, 67.15) 0%, rgb(246, 113, 34) 100%);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(246, 113, 34, 0.4);
  color: #000000;
}
.single-service-section .service-description-section .service-actions .btn-outline-primary {
  background: transparent;
  color: rgb(246, 113, 34);
  border: 2px solid rgb(246, 113, 34);
}
.single-service-section .service-description-section .service-actions .btn-outline-primary:hover {
  background: rgb(246, 113, 34);
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(246, 113, 34, 0.3);
}
@media (max-width: 1199.98px) {
  .single-service-section .service-banner {
    height: 60vh;
    min-height: 450px;
  }
  .single-service-section .service-banner .service-banner-content .service-banner-title .service-title-accent {
    font-size: 3rem;
  }
  .single-service-section .service-banner .service-banner-content .service-banner-title .service-title-subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 991.98px) {
  .single-service-section .service-banner {
    height: 50vh;
    min-height: 400px;
    border-radius: 0 0 1.5rem 1.5rem;
  }
  .single-service-section .service-banner .service-banner-content .service-banner-title .service-title-accent {
    font-size: 2.5rem;
  }
  .single-service-section .service-banner .service-banner-content .service-banner-title .service-title-subtitle {
    font-size: 1.125rem;
  }
  .single-service-section .service-banner .service-banner-content .service-category-badge {
    margin-top: 1.5rem;
  }
  .single-service-section .service-banner .service-banner-content .service-category-badge .badge {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
  }
  .single-service-section .service-description-section {
    padding-top: 3rem;
  }
  .single-service-section .service-description-section .service-main-description .service-text {
    font-size: 1rem;
  }
  .single-service-section .service-description-section .service-main-description .service-text.lead {
    font-size: 1.25rem;
  }
  .single-service-section .service-description-section .service-meta-section .service-meta-item {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .single-service-section {
    padding: 0 0 3rem;
  }
  .single-service-section .service-banner {
    height: 45vh;
    min-height: 350px;
    border-radius: 0 0 1rem 1rem;
  }
  .single-service-section .service-banner .service-banner-content .service-breadcrumb .breadcrumb .breadcrumb-item {
    font-size: 0.8rem;
  }
  .single-service-section .service-banner .service-banner-content .service-banner-title .service-title-accent {
    font-size: 2rem;
  }
  .single-service-section .service-banner .service-banner-content .service-banner-title .service-title-subtitle {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
  .single-service-section .service-banner .service-banner-content .service-category-badge {
    margin-top: 1rem;
  }
  .single-service-section .service-banner .service-banner-content .service-category-badge .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
  }
  .single-service-section .service-description-section {
    padding-top: 2rem;
  }
  .single-service-section .service-description-section .service-main-description {
    margin-bottom: 3rem;
  }
  .single-service-section .service-description-section .service-main-description .service-text.lead {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
  .single-service-section .service-description-section .service-meta-section {
    margin-bottom: 3rem;
  }
  .single-service-section .service-description-section .service-meta-section .row {
    flex-direction: column;
    align-items: center;
  }
  .single-service-section .service-description-section .service-meta-section .row .col-auto {
    margin-bottom: 0.75rem;
  }
  .single-service-section .service-description-section .service-meta-section .row .col-auto:last-child {
    margin-bottom: 0;
  }
  .single-service-section .service-description-section .service-meta-section .service-meta-item {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    width: 100%;
    justify-content: center;
  }
  .single-service-section .service-description-section .service-actions .d-flex {
    flex-direction: column;
    align-items: center;
  }
  .single-service-section .service-description-section .service-actions .d-flex .btn-primary,
  .single-service-section .service-description-section .service-actions .d-flex .btn-outline-primary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
  .single-service-section .service-description-section .service-actions .d-flex .btn-primary:last-child,
  .single-service-section .service-description-section .service-actions .d-flex .btn-outline-primary:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .single-service-section .service-banner {
    height: 40vh;
    min-height: 300px;
  }
  .single-service-section .service-banner .service-banner-content .service-banner-title .service-title-accent {
    font-size: 1.75rem;
  }
  .single-service-section .service-banner .service-banner-content .service-banner-title .service-title-subtitle {
    font-size: 0.9rem;
  }
  .single-service-section .service-description-section .service-main-description .service-text.lead {
    font-size: 1rem;
  }
}

.single-service-section .service-banner-content,
.single-service-section .service-main-description,
.single-service-section .service-meta-section,
.single-service-section .service-actions {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.single-service-section .service-banner-content {
  animation-delay: 0.3s;
}
.single-service-section .service-main-description {
  animation-delay: 0.6s;
}
.single-service-section .service-meta-section {
  animation-delay: 0.9s;
}
.single-service-section .service-actions {
  animation-delay: 1.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-banner .service-banner-image img {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}
.service-banner:hover .service-banner-image img {
  transform: scale(1.05);
}

.services-section .cta-section {
  background: linear-gradient(135deg, #ffffff 0%, rgb(229.5, 229.5, 229.5) 100%);
  color: #ffffff;
  margin-top: 3rem;
}
.services-section .cta-section .cta-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.services-section .cta-section .cta-description {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.services-section .cta-section .cta-buttons .services-cta-btn {
  background-color: rgb(246, 113, 34);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.services-section .cta-section .cta-buttons .services-cta-btn:hover {
  background-color: rgb(242.1391304348, 96.4173913043, 9.8608695652);
  color: #ffffff;
  transform: translateY(-2px);
}
.services-section .cta-section .cta-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
}
.services-section .cta-section .cta-buttons .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .services-section {
    padding: 2rem 0;
  }
  .services-section .page-title {
    font-size: 2rem;
  }
  .services-section .page-description {
    font-size: 1rem;
  }
  .services-section .service-image-wrapper {
    height: 180px;
  }
  .services-section .cta-section {
    padding: 2rem 1rem !important;
  }
  .services-section .cta-section .cta-title {
    font-size: 1.5rem;
  }
  .services-section .cta-section .cta-buttons .services-cta-btn,
  .services-section .cta-section .cta-buttons .btn-outline-light {
    display: block;
    margin: 0.5rem 0;
    width: 100%;
  }
}

.fiche_contenu_en_grille {
  display: flex;
}
@media (max-width: 1024px) {
  .fiche_contenu_en_grille {
    flex-direction: column;
  }
  .fiche_contenu_en_grille .item {
    max-width: 100% !important;
  }
  .fiche_contenu_en_grille .item .service-photo-slider {
    width: 80%;
    margin: auto;
  }
}
.fiche_contenu_en_grille .item {
  max-width: 50%;
  width: 100%;
}
.fiche_contenu_en_grille .item .slide img {
  width: 100%;
  height: auto;
}

.slider-wrapper-service {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.slider-wrapper-service.single-image .slide img {
  border-radius: 0.5rem;
}
.slider-wrapper-service .slide {
  position: relative;
}
.slider-wrapper-service .slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.slider-wrapper-service .slide img.single-slider {
  width: auto;
  margin: auto;
}
@media (max-width: 767.98px) {
  .slider-wrapper-service .slide img {
    height: 250px;
  }
}
.slider-wrapper-service .slick-prev,
.slider-wrapper-service .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.slider-wrapper-service .slick-prev:hover,
.slider-wrapper-service .slick-next:hover {
  background: rgba(0, 0, 0, 0.8);
  color: rgb(246, 113, 34);
  transform: translateY(-50%) scale(1.1);
}
.slider-wrapper-service .slick-prev:focus,
.slider-wrapper-service .slick-next:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(246, 113, 34, 0.3);
}
.slider-wrapper-service .slick-prev svg,
.slider-wrapper-service .slick-next svg {
  width: 20px;
  height: 20px;
}
.slider-wrapper-service .slick-prev {
  left: 15px;
}
.slider-wrapper-service .slick-next {
  right: 15px;
}
.slider-wrapper-service .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slider-wrapper-service .slick-dots li {
  margin: 0;
}
.slider-wrapper-service .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  text-indent: -9999px;
  transition: all 0.3s ease;
}
.slider-wrapper-service .slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}
.slider-wrapper-service .slick-dots li.slick-active button {
  background: rgb(246, 113, 34);
  transform: scale(1.3);
}
.slider-wrapper-service .slick-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slider-wrapper-service .slick-slide.slick-active {
  opacity: 1;
}
.slider-wrapper-service.slick-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(246, 113, 34, 0.3);
  border-radius: 50%;
  border-top-color: rgb(246, 113, 34);
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 767.98px) {
  .slider-wrapper-service .slick-prev,
  .slider-wrapper-service .slick-next {
    width: 40px;
    height: 40px;
  }
  .slider-wrapper-service .slick-prev svg,
  .slider-wrapper-service .slick-next svg {
    width: 16px;
    height: 16px;
  }
  .slider-wrapper-service .slick-prev {
    left: 10px;
  }
  .slider-wrapper-service .slick-next {
    right: 10px;
  }
  .slider-wrapper-service .slick-dots {
    bottom: 15px;
  }
  .slider-wrapper-service .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}
.slider-wrapper-service:hover .slick-prev,
.slider-wrapper-service:hover .slick-next {
  opacity: 1;
}
.slider-wrapper-service .slick-prev,
.slider-wrapper-service .slick-next {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.slider-wrapper-service .slick-prev:focus-visible,
.slider-wrapper-service .slick-next:focus-visible {
  opacity: 1;
  outline: 2px solid rgb(246, 113, 34);
  outline-offset: 2px;
}
.slider-wrapper-service.slick-initialized .slide {
  animation: slideIn 0.6s ease-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content {
  min-height: 66vh;
}
.main-content article {
  margin-bottom: 60px;
}
.main-content article .entry-title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.main-content article .entry-title a {
  color: #ffffff;
}
.main-content article .entry-title a:hover {
  color: rgb(246, 113, 34);
}
.main-content article .entry-content {
  line-height: 1.6;
}
.main-content article .entry-content img {
  max-width: 100%;
  height: auto;
}
.main-content article .entry-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

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

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

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

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: 10px;
}

.mb-md {
  margin-bottom: 20px;
}

.mb-lg {
  margin-bottom: 40px;
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: 10px;
}

.mt-md {
  margin-top: 20px;
}

.mt-lg {
  margin-top: 40px;
}

/*# sourceMappingURL=main.css.map */
