/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Google Font */
  --poppins: 'Poppins', sans-serif;
  --outfit: 'Outfit', sans-serif;

  /* Color Palette */
  --white: #fff;
  --black: #000;
  --primary: #eb6f19;
  --dark: #1e1e1e;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  color: var(--dark);
  font-size: 16px;
  font-family: var(--outfit);
  font-weight: 400;
  line-height: normal;
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
section,
.section {
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a,
button {
  outline: none;
  box-shadow: none;
}
button {
  background: unset;
  padding: 0;
  border: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  border: none;
  box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--primary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--grey);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--grey);
  font-size: 16px;
  opacity: 1;
}

/* Resusable Component and CSS Start */

.btn {
  display: inline-flex;
  padding: 0;
  border: none;
  position: relative;
  align-items: stretch;
  gap: 0px;
}

.btn .btn__text {
  padding: 14px 48px 14px 53px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--poppins);
  font-weight: bold;
  clip-path: polygon(
    calc(0% + 25px) 0,
    100% 0,
    calc(100% - 25px) 100%,
    0% 100%
  );
  position: relative;
  z-index: 1;
}

span.btn-lines {
  gap: 3px;
  display: flex;
  transform: skewX(-27deg) translateX(-9px);
}

span.btn-lines span {
  width: 4px;
  background: var(--primary);
}
.btn--light span.btn-lines span {
  background: var(--white);
}

.btn-lines span.lg {
  width: 10px;
}

.btn .btn__text::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 16%;
  height: 100%;
  content: '';
  background: var(--primary);
  z-index: -1;
  transition: all 0.3s;
  clip-path: polygon(
    calc(0% + 25px) 0,
    100% 0,
    calc(100% - 25px) 100%,
    0% 100%
  );
}
.btn--light .btn__text::after {
  background: var(--white);
}

.btn:hover .btn__text::after {
  width: 100%;
}
.btn:hover .btn__text {
  color: #fff;
}
.btn.btn--light:hover .btn__text {
  color: #eb6f19;
}

/* Resusable Component and CSS End */

/* Bootstrap Customized CSS Start */

.fs-1 {
  font-size: 32px !important;
  line-height: 1 !important;
}
.fs-2 {
  font-size: 26px !important;
  line-height: 1 !important;
}

/* Bootstrap Customized CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */

.header__logo a img {
  max-width: 118px;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav-bar {
  font-size: 22px;
  background: var(--primary);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 3px;
  box-shadow: 0px 4px 19px #eb6f19a3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header {
  padding: 12px 0px;
}

.header__menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #ffffffa3;
  max-width: 290px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
}
.header__menu.show {
  transform: translateX(0%);
}

span.header__menu-close {
  position: absolute;
  right: 12px;
  top: 20px;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 19px #eb6f19a3;
  cursor: pointer;
}

.header__menu > ul {
  flex-grow: 1;
  overflow-y: scroll;
  padding-top: 57px;
}

.header__menu ul li a {
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #eb6f191a;
  color: var(--dark);
  position: relative;
  transition: all 0.3s ease;
}
.header__menu ul li:hover > a {
  color: var(--primary);
}

.header__menu ul li.has-submenu > a::after {
  position: absolute;
  right: 10px;
  top: 14px;

  content: '\EA4D';
  font-family: 'remixicon';
  font-size: 16px;
  color: var(--dark);
}
.header__menu ul li.has-submenu ul.submenu li a {
  padding-left: 20px;
}

/* Sticky Header Start */
.sticky-header {
  /*
  position: relative;
  width: 100%;
  z-index: 99999;
  transition: top 0.3s ease-in-out;
  */
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 100;
}
.sticky-header.sticky-active {
  position: fixed;
  top: -100px;
  left: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  z-index: 100;
}
.sticky-header.sticky-active.sticky-show {
  top: 0;
}
/* Sticky Header End */
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.main { margin-top: 150px; }

.hero__content span.pretitle {
  display: block;
  font-size: 16px;
  font-weight: 200;
  color: var(--primary);
  margin-bottom: 10px;
}

.hero__content p {
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero__content {
  text-align: center;
  position: relative;
  padding: 24px 15px 28px;
  background: #ffffff96;
  backdrop-filter: blur(3px);
}

.hero--section {
  position: relative;
  padding: 72px 0px 72px;
}

.hero__thumbs-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero__thumbs {
  background-color: #fff;
}

.hero__content h1 {
  font-size: 32px;
  margin-bottom: 15px;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 About Block CSS Start */
/* =============================== */

.aboutBlock__content {
  position: relative;
  z-index: 2;
  margin-bottom: 19px;
}

.aboutBlock--section {
  position: relative;
  padding: 31px 0px 40px;
}

.aboutBlock--section::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: var(--primary);
  z-index: -1;
}

.aboutBlock__obj {
  position: absolute;
}

.aboutBlock__obj--2 {
  bottom: 0;
  right: 0;
}

.aboutBlock__content h2 {
  margin-bottom: 20px;
}

.aboutBlock__content p {
  color: #eeeeee;
  margin-bottom: 10px;
}

.aboutBlock__content ul {
  margin-top: 18px;
}

.aboutBlock__content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 4px 0px;
}

.aboutBlock__content ul li span.icon svg {
  max-width: 25px;
}

.aboutBlock__obj--1 {
  top: 56%;
  max-width: 42px;
}

.aboutBlock__thumb {
  max-width: 350px;
  height: auto;
  position: relative;
}

.aboutBlock__thumb-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--dark);
  padding: 16px 22px;
  max-width: 235px;
}

.aboutBlock__thumb-text h6 {
  font-size: 16px;
  line-height: 26px;
}

/* =============================== */
/* :: 6.0 About Block CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Service Section CSS Start */
/* =============================== */

.service--section {
  padding: 40px 0px 40px;
}

.service__obj--1 {
  display: none;
}

.service__obj {
  position: absolute;
}

.service__obj--2 {
  bottom: 0;
  right: 0;
}

.service__title h2 {
  margin-bottom: 13px;
}

.service__title {
  margin-bottom: 24px;
}

.service__content h4 a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--dark);
}

.service__content h4 a span.icon img {
  max-width: 22px;
  flex: 0 0 auto;
}

.service__content {
  padding: 12px 0px;
}

.service__content h4 a span.arrow img {
  max-width: 15px;
  transition: all 0.3s ease-in-out;
}

.serviceItem__img img {
  max-width: 100%;
}

.service__bottom {
  text-align: center;
  margin-top: 15px;
}

.service__bottom h4 {
  margin-bottom: 13px;
}

.serviceItem:hover .service__content h4 a span.arrow img {
  transform: translateX(10px);
}
/* =============================== */
/* :: 7.0 Service Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 ToolTec Slider CSS Start */
/* =============================== */

.tooltecSlider__item {
  width: 100%;
  height: 280px;
}
.tooltecSlider__item img {
  transform: skewX(-10deg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sw-navs button {
  width: 60px;
  height: 45px;
  background: var(--primary);
  clip-path: polygon(
    calc(0% + 13px) 0%,
    100% 0,
    calc(100% - 13px) 100%,
    0% 100%
  );
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  left: 10px;
}

.sw-navs button svg {
  max-width: 24px;
}

.sw-navs button:last-child {
  left: auto;
  right: 10px;
}
/* Hide by default */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  border-radius: 50%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: sans-serif;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  /* mix-blend-mode: difference; */
}
.tooltecSlider--section.hide-cursor {
  cursor: none;
}

/* =============================== */
/* :: 8.0 ToolTec Slider CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Text Block Section CSS Start */
/* =============================== */

.textBlock--section {
  padding: 32px 0px 40px;
}

.textBlock__item h2 {
  margin-bottom: 12px;
}
.textBlock__item:not(:last-child) {
  margin-bottom: 24px;
}
.textBlock__item h3 {
  margin-bottom: 11px;
}
img.textBlock__obj {
  display: none;
}
/* =============================== */
/* :: 9.0 Text Block Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Service-Block CSS Start */
/* =============================== */

.serviceBlock--section {
  padding: 50px 0px 50px;
}

.serviceBlock__bgimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.serviceBlock__content {
  max-width: 100%;
  background: #fff;
  padding: 22px 18px 35px;
  text-align: center;
}

.serviceBlock__content h2 {
  margin-bottom: 14px;
}

.serviceBlock__content p {
  margin-bottom: 20px;
  line-height: 24px;
}

/* =============================== */
/* :: 10.0 Service-Block CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Contact Section CSS Start */
/* =============================== */
.contact--section {
  background: var(--primary);
  padding: 38px 0px 42px;
}

.contact__content h2 {
  margin-bottom: 14px;
}

.contact__content p {
  color: #fff;
  line-height: 26px;
  margin-bottom: 25px;
}

.contact__infos ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 4px 0px;
  transition: all 0.3s ease;
}

.contact__infos ul li:hover a {
  letter-spacing: 0.03em;
  color: var(--dark);
}
.contact__infos ul li:hover a svg {
  transform: scale(1.1);
}

.contact__infos ul li a span.icon {
  flex: 0 0 auto;
  width: 30px;
}

.contact__infos ul li a span.icon svg {
  max-width: 100%;
  transition: all 0.3s ease;
}

.contact__content {
  margin-bottom: 20px;
}

.input__box input {
  width: 100%;
  height: 50px;
  padding: 0px 15px;
  border: 1px solid transparent;
}
.input__box input:focus {
  border-color: var(--dark);
}

.input__box {
  margin-bottom: 15px;
}

.input__box input::placeholder {
  font-weight: bold;
}

.input__box textarea {
  width: 100%;
  height: 120px;
  padding: 10px 16px;
  font-weight: bold;
}
/* =============================== */
/* :: 11.0 Contact Section CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Footer Section CSS Start */
/* =============================== */

.footer__content h4 a img {
  max-width: 120px;
}

.footer__content h4 {
  margin-bottom: 2px;
}

.footer__content p a {
  padding-left: 0px;
  display: block;
  color: var(--dark);
  font-weight: 500;
  line-height: 26px;
  text-decoration: underline;
}

.footer__content p:hover a {
  color: var(--primary);
}

.socials a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__content .socials {
  padding-left: 0px;
  margin-top: 11px;
}

.footer__content {
  margin-bottom: 24px;
}

.footer__widget h6 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.footer__widget ul li a {
  color: var(--dark);
  display: block;
  padding: 5px 0px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer__widget ul li:hover a {
  text-decoration: underline;
  color: var(--primary);
}

.footer__widget {
  margin-bottom: 24px;
}

footer.footer {
  padding: 30px 0px 0px;
}

.footer__bottom-copy {
  width: 100%;
}

.footer__bottom-link ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  justify-content: center;
  gap: 4px;
}

.footer__bottom-link ul li a {
  color: var(--dark);
  padding: 0px 6px;
}

.footer__bottom-copy p {
  font-size: 14px;
  margin-bottom: 4px;
}
.footer__bottom {
  padding: 0px 0px 20px;
}
/* =============================== */
/* :: 12.0 Footer Section CSS End */
/* =============================== */


.textBlock__item p {
  margin-bottom: 16px;
}

.aboutBlock a {
  text-decoration: underline;
  color: #fff;
}

.section_lead { padding: 50px 0; }
.offerte-section { margin: 30px 0; padding: 30px; border: 2px solid var(--primary); }
.offerte-section h2 { padding-bottom: 10px; margin-bottom: 20px; font-size: 1.2rem; color: var(--primary); border-bottom: 2px dotted var(--primary); }
.offerte-section label { padding-top: 10px; }
.offerte-section input[type="text"], .offerte-section textarea { margin-bottom: 20px; padding: 10px 0 10px 0; width: 100%; max-width: 100%; border-bottom: 1px solid var(--primary); color: #5a5a5a; }
.offerte-section input[type="checkbox"] { margin-top: 10px; margin-right: 10px; }
.offerte-input input[type="submit"] { padding: 20px 50px; color: #fff; background: var(--primary); }