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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

body {
  background-image: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

.no-scroll {
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.trp-shortcode-switcher__wrapper .trp-shortcode-switcher {
  padding: 0 !important;
  border: 1px solid white !important;
}

body {
  font-family: "inter", sans-serif;
  color: #fff;
  line-height: 1.6;
}

@font-face {
  font-family: "poppins-b";
  src: url("../fonts/GreatVibes-Regular.ttf");
}
.tittle-fch {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
}
.tittle-fch .hose-container {
  position: relative;
  display: block;
  width: 30%;
  height: 3px;
  margin: 20px auto 0 auto;
  overflow: visible;
}
.tittle-fch .hose-line {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #DC2626, #F56868);
  border-radius: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
}
.tittle-fch .nozzle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  opacity: 0;
  transition: opacity 0.4s ease 1s;
  fill: #DC2626;
}
.tittle-fch .nozzle-left {
  left: -12px;
  transform: translateY(-50%) rotate(180deg);
  fill: #DC2626;
}
.tittle-fch .nozzle-right {
  right: -12px;
  fill: #F56868;
}
.tittle-fch .hose-line.is-active {
  transform: scaleX(1);
}
.tittle-fch .hose-line.is-active .nozzle {
  opacity: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.opacity {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.box-animated.semi-opacity {
  opacity: 0.1;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.box-animated.from-left {
  transform: translateX(-3%);
}

.box-animated.from-left3 {
  transition: transform 1.8s ease-in-out, opacity 1.8s ease-out;
  transform: translateX(-80px);
}

.box-animated.from-right {
  transition: transform 1s ease-in-out, opacity 1s ease-out;
  transform: translateX(100%);
}

.box-animated.from-right2 {
  transition: transform 1.5s ease-in-out, opacity 1s ease-out;
  transform: translateX(3%);
}

.box-animated.from-right-form1 {
  transition: transform 2s ease-in-out, opacity 2s ease-out;
  transform: translateX(30%);
}

.box-animated.from-right-form2 {
  transition: transform 2.5s ease-in-out, opacity 2.5s ease-out;
  transform: translateX(60%);
}

.box-animated.from-right3 {
  transition: transform 1.5s ease-in-out, opacity 1s ease-out;
  transform: translateX(100%);
}

.box-animated.from-left2 {
  transition: transform 1.5s ease-in-out, opacity 1s ease-out;
  transform: translateX(-100%);
}

.box-animated.from-bottom2 {
  transform: translateY(30px);
}

.box-animated.from-bottom {
  transform: translateY(100%);
  transition: transform 1.5s ease-in-out, opacity 2s ease-out;
}

.box-animated.from-top2 {
  transform: translateY(-5%);
  transition: transform 1.8s ease-in-out, opacity 1.8s ease-out;
}

.box-animated.from-top {
  transform: translateY(-100%);
  transition: transform 1s ease-in-out, opacity 1s ease-out;
}

.box-animated.visible {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

.delayt {
  transition: transform 2.2s ease-in-out, opacity 2s ease-out !important;
}

.delayt2 {
  transition: transform 2.7s ease-in-out, opacity 2.7s ease-out !important;
}

.delayt4 {
  transition: transform 3s ease-in-out, opacity 3s ease-out !important;
}

.delayt3 {
  transition: transform 2.5s ease-in-out, opacity 2.7s ease-out !important;
}

.box-animated {
  opacity: 0;
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-out;
}

@keyframes spring-in {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  60% {
    transform: translateX(-20px);
    opacity: 1;
  }
  80% {
    transform: translateX(7px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.box-animated.visible.animate-on-scroll {
  animation: spring-in 1.2s ease-out forwards;
}

@keyframes shake-ratation {
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(10deg);
  }
  10% {
    transform: rotate(-10deg);
  }
  15% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  25% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.animate-on-scroll-2 {
  animation: spring-in-2 2.5s ease-out forwards;
}

@keyframes spring-in-2 {
  0% {
    transform: translateX(-80%);
    opacity: 0;
  }
  60% {
    transform: translateX(20px);
    opacity: 1;
  }
  80% {
    transform: translateX(-7px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animate-shake-ratation1 {
  animation: shake-ratation 4s linear;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.animate-shake {
  animation: shake 3s ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shake-2 {
  0% {
    transform: translate(0px);
    opacity: 1;
  }
  25% {
    transform: translateY(-15px, 20px);
    opacity: 0.8;
  }
  75% {
    transform: translate(15px, -20px);
    opacity: 0.6;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
.animate-shake-2 {
  animation: shake-2 7s linear;
  animation-iteration-count: infinite;
}

@keyframes rotation-ligth {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.animate-rotation {
  animation: rotation-ligth 2.5s linear;
  animation-iteration-count: infinite;
}

.box-animated.visible.bars {
  animation: bars-up-down 3s ease-in-out forwards;
}

@keyframes bars-up-down {
  0% {
    width: 0%;
  }
  20% {
    width: 80%;
  }
  40% {
    width: 50%;
  }
  60% {
    width: 100%;
  }
  80% {
    width: 75%;
  }
  100% {
    width: 85%;
  }
}
.box-animated.visible.bars-two {
  animation: bars-up-down-2 3s ease-in-out forwards;
}

@keyframes bars-up-down-2 {
  0% {
    width: 0%;
  }
  20% {
    width: 60%;
  }
  40% {
    width: 10%;
  }
  60% {
    width: 30%;
  }
  80% {
    width: 18%;
  }
  100% {
    width: 23%;
  }
}
.animated-button-2 {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: background-color 0.6s cubic-bezier(0.59, 1, 0.82, 1);
  color: #fff;
  background-color: #DC2626;
}
.animated-button-2 span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease-out;
}
.animated-button-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #140B12;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.42, 1);
}
.animated-button-2:hover {
  box-shadow: 0 0 0 5px rgba(78, 74, 77, 0.3);
  color: #ffffff;
  background-color: #140B12;
}
.animated-button-2:hover span {
  gap: 8px;
}
.animated-button-2:hover::before {
  transform: scale(10);
  opacity: 1;
  transform-origin: center;
}
.animated-button-2:active {
  scale: 0.95;
}

.animated-button-form {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  background-color: inherit;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1254901961);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.6s cubic-bezier(0.59, 1, 0.82, 1);
  background-color: #DC2626;
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
}
.animated-button-form span {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  transition: gap 0.3s ease-out;
}
.animated-button-form::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #140B12;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.43, 1, 0.42, 1);
}
.animated-button-form:hover {
  box-shadow: 0 0 0 5px rgba(78, 74, 77, 0.3);
  color: #ffffff;
  background-color: #140B12;
}
.animated-button-form:hover span {
  gap: 8px;
}
.animated-button-form:hover::before {
  transform: scale(40);
  opacity: 1;
  transform-origin: center;
}
.animated-button-form:active {
  scale: 0.95;
}

.animated-button {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1254901961);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: 166px;
}
.animated-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #DC2626;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-button span {
  position: relative;
  z-index: 2;
}
.animated-button:hover {
  box-shadow: 0 0 0 5px rgba(234, 153, 153, 0.3);
  color: #ffffff;
}
.animated-button:hover::before {
  width: 168px;
  height: 168px;
  opacity: 1;
}
.animated-button:active {
  scale: 0.95;
}

.animated-button-3 {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  background-color: inherit;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1254901961);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.6s cubic-bezier(0.59, 1, 0.82, 1);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1254901961);
  background-color: #DC2626;
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
}
.animated-button-3 span {
  position: relative;
  z-index: 2;
}
.animated-button-3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #e65757;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.43, 1, 0.42, 1);
}
.animated-button-3:hover {
  box-shadow: 0 10px 15px -3px rgba(230, 87, 87, 0.3);
  color: #ffffff;
}
.animated-button-3:hover::before {
  transform: scale(20);
  opacity: 1;
  transform-origin: center;
}
.animated-button-3:active {
  scale: 0.95;
}

.animated-button-4 {
  position: relative;
  display: inline-block;
  padding: 12px 40px;
  border: none;
  font-size: 16px;
  background-color: inherit;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1254901961);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.6s cubic-bezier(0.59, 1, 0.82, 1);
  background-color: #DC2626;
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
}
.animated-button-4 span {
  position: relative;
  z-index: 2;
  transition: gap 0.3s ease-out;
  display: flex;
  gap: 4px;
  align-items: center;
}
.animated-button-4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #140B12;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.43, 1, 0.42, 1);
}
.animated-button-4:hover {
  box-shadow: 0 10px 15px -3px rgba(230, 87, 87, 0.3);
  color: #ffffff;
}
.animated-button-4:hover span {
  gap: 8px;
}
.animated-button-4:hover::before {
  transform: scale(20);
  opacity: 1;
  transform-origin: center;
}
.animated-button-4:active {
  scale: 0.95;
}

.animated-button-5 {
  position: relative;
  display: inline-block;
  padding: 14px 20px;
  border: none;
  font-size: 16px;
  background-color: #fff;
  color: #DC2626;
  border-radius: 28px;
  font-weight: 600;
  box-shadow: 4px 4px 20px 2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.6s cubic-bezier(0.29, 1, 0.92, 1);
}
.animated-button-5 span {
  position: relative;
  z-index: 2;
}
.animated-button-5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #140B12;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.43, 1, 0.42, 1);
}
.animated-button-5:hover {
  color: #ffffff;
}
.animated-button-5:hover::before {
  transform: scale(20);
  opacity: 1;
  transform-origin: center;
}
.animated-button-5:active {
  scale: 0.95;
}

.header-spy {
  background-color: #1a1a1a;
  color: white;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0px;
}

.header-cont {
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.header-cont .logo img {
  width: 220px;
}
@media screen and (max-width: 480px) {
  .header-cont .logo img {
    width: 200px;
  }
}
@media screen and (max-width: 400px) {
  .header-cont .logo img {
    width: 180px;
  }
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3000;
  padding: 0;
  width: 44px;
  height: 44px;
  position: relative;
}

.menu-btn svg {
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
  overflow: visible;
}

.menu-btn line {
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-btn line:nth-child(1) {
  transform: translateY(-8px);
}

.menu-btn line:nth-child(2) {
  transform: translateY(0);
}

.menu-btn line:nth-child(3) {
  transform: translateY(8px);
}

.menu-btn.active line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.menu-btn.active line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.active line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}
.menu li > a {
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.menu li > a:hover {
  color: #DC2626;
}

.dropdown {
  position: relative;
}

.sub-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #DC2626;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 10px 0;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

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

.sub-menu.open {
  display: block;
}

.sub-menu li a {
  padding: 10px 20px;
  display: block;
  color: white;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.sub-menu li a:hover {
  color: white;
}

.sub-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(233, 67, 67, 0.1);
  border: 1px solid #DC2626;
  border-radius: 8px;
  padding: 6px 15px;
  color: white;
}

.call-us-mobil {
  color: #DC2626;
  font-weight: bold;
  margin-top: 20px;
  display: none;
}

.btn-call div {
  display: flex;
  flex-direction: column;
}

.btn-call div span {
  font-size: 0.75rem;
  color: #bbb;
}

@media (max-width: 1000px) {
  .menu-btn {
    display: block;
  }
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #1a1a1a;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 2500;
  }
  .nav-container.active {
    right: 0;
  }
  .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
  }
  .menu > li {
    width: 100%;
    border-bottom: 1px solid #333;
  }
  .menu > li > a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
  }
  .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    background-color: transparent;
    box-shadow: none;
    padding: 0 0 15px 20px;
    display: none;
  }
  .dropdown:hover .sub-menu {
    display: block;
  }
  .btn-call {
    display: none;
  }
  .call-us-mobil {
    display: flex;
    gap: 10px;
  }
}
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3000;
  padding: 10px;
  width: 50px;
  height: 50px;
  position: relative;
  overflow: visible;
}
.menu-btn svg {
  overflow: visible;
}

@media (max-width: 1000px) {
  .menu-btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
  }
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #1a1a1a;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 20px 40px 20px;
    z-index: 2500;
    overflow-y: auto;
  }
  .nav-container.active {
    right: 0;
  }
}
#banner-repair {
  background-image: url("../images/repair.webp");
  background-size: cover;
  background-position: 50% 15%;
}

#banner-about {
  background-image: url("../images/banner-about.webp");
  background-size: cover;
  background-position: 50% 80%;
}

#banner-contact {
  background-image: url("../images/cta-about.webp");
  background-size: cover;
  background-position: 50% 80%;
}

#banner-maintenance {
  background-image: url("../images/maintenance.webp");
  background-size: cover;
  background-position: 50% 80%;
}

#banner-Diagnostics {
  background-image: url("../images/Tube-Bending.webp");
  background-size: cover;
  background-position: 50% 80%;
}

.banner {
  position: relative;
  height: calc(100vh - 100px);
  overflow: hidden;
  max-height: 600px;
}
@media screen and (max-width: 500px) {
  .banner {
    height: auto;
    max-height: 800px;
  }
}
.banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(45deg, #3A1015, #140E17 13%, #14121D 50%, #3A1015);
  opacity: 0.8;
  top: 0;
  z-index: 1;
}
.banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .banner-box {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
  padding: 40px;
}
@media screen and (max-width: 580px) {
  .banner .banner-box {
    padding: 28px;
  }
}
@media screen and (max-width: 500px) {
  .banner .banner-box {
    padding: 50px 28px;
  }
}
.banner .banner-box h1 {
  text-align: center;
  font-size: 4rem;
  line-height: 4.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 770px) {
  .banner .banner-box h1 {
    font-size: 3rem;
    line-height: 3.8rem;
  }
}
@media screen and (max-width: 600px) {
  .banner .banner-box h1 {
    font-size: 2.5rem;
    line-height: 3.4rem;
  }
}
@media screen and (max-width: 400px) {
  .banner .banner-box h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.banner .banner-box h1 span {
  color: #DC2626;
}
.banner .banner-box p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
  font-weight: 200;
  color: #9098A4;
}
.banner .banner-buttons-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 530px) {
  .banner .banner-buttons-box {
    flex-direction: column;
    gap: 20px;
  }
}
.banner .water-bead {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset -2px -2px 4px rgba(255, 255, 255, 0.3), inset 2px 2px 4px rgba(0, 0, 0, 0.4);
  filter: blur(0.5px);
}
.banner .water-bead::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50% 50% 0 0;
  filter: blur(1px);
}

.about-sect {
  background: linear-gradient(#181D27, #140B12);
  padding: 80px 30px;
  margin-top: -1px;
  overflow: hidden;
}
.about-sect .about-box {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1050px) {
  .about-sect .about-box {
    flex-direction: column;
    gap: 40px;
  }
}
.about-sect .about-box .box-left {
  width: 55%;
}
@media screen and (max-width: 1050px) {
  .about-sect .about-box .box-left {
    width: 100%;
  }
}
.about-sect .about-box .box-left .sub-tittle {
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: bold;
  display: block;
}
.about-sect .about-box .box-left h2 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 800;
}
@media screen and (max-width: 1000px) {
  .about-sect .about-box .box-left h2 {
    font-size: 2.2rem;
  }
}
.about-sect .about-box .box-left .main-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #a0a0a0;
  margin-bottom: 40px;
}
.about-sect .about-box .box-left .offer-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  list-style: none;
}
.about-sect .about-box .box-left .offer-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: all 0.5s ease;
  backdrop-filter: blur(5px);
  animation: floatItemsSutil 6s ease-in-out infinite;
}
.about-sect .about-box .box-left .offer-item:hover {
  transform: translateX(8px);
  background: rgba(220, 38, 38, 0.08);
  border-left-color: #DC2626;
  animation-play-state: paused;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.about-sect .about-box .box-left .offer-item .icon-box {
  background: rgba(220, 38, 38, 0.15);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.about-sect .about-box .box-left .offer-item .icon-box svg {
  width: 28px;
  height: 28px;
  fill: #DC2626;
}
.about-sect .about-box .box-left .offer-item .offer-content h4 {
  margin: 0 0 5px 0;
  font-size: 1.15rem;
  color: #fff;
}
.about-sect .about-box .box-left .offer-item .offer-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #a0a0a0;
}
.about-sect .about-box .box-right {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1050px) {
  .about-sect .about-box .box-right {
    width: 100%;
  }
}
.about-sect .about-box .box-right .video-container {
  position: relative;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  background-color: #000;
  transition: transform 0.3s ease;
}
.about-sect .about-box .box-right .video-container:hover {
  transform: scale(1.02);
}
.about-sect .about-box .box-right .video-container .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.about-sect .about-box .box-right .video-container .play-button {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-sect .about-box .box-right .video-container .play-icon {
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #1a1a1a;
  margin-left: 5px;
}

.video-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.video-lightbox.active {
  display: flex;
}
.video-lightbox .lightbox-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}
.video-lightbox .lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  z-index: 10001;
}
.video-lightbox .lightbox-content video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.video-lightbox .close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10002;
}
.video-lightbox .close-lightbox:hover {
  color: #DC2626;
}

.clock-hand-min {
  transform-origin: 12px 12px;
  animation: rotateHand 4s linear infinite;
}

.clock-hand-hour {
  transform-origin: 12px 12px;
  animation: rotateHand 12s linear infinite;
}

@keyframes rotateHand {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatItemsSutil {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.services_areas {
  background: linear-gradient(#140B12, #181D27);
  padding: 60px 40px;
  margin-top: -1px;
}
@media screen and (max-width: 600px) {
  .services_areas {
    padding: 60px 20px;
  }
}
.services_areas .sub-tittle {
  text-align: center;
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: bold;
}
.services_areas h2 {
  margin-bottom: 24px;
}
.services_areas .tittle-text {
  text-align: center;
  color: #a0a0a0;
  font-size: 1.15rem;
  margin-bottom: 50px;
}
.services_areas .areas-cont {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 950px) {
  .services_areas .areas-cont {
    flex-direction: column;
  }
}
.services_areas .areas-cont .areas-box {
  background: linear-gradient(#1B2432, #141B2A);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 50%;
  margin-right: -20px;
  position: relative;
  z-index: 1;
  max-width: 600px;
}
@media screen and (max-width: 950px) {
  .services_areas .areas-cont .areas-box {
    max-width: 680px;
    width: 95%;
    margin-right: 0;
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 580px) {
  .services_areas .areas-cont .areas-box {
    width: 98%;
    padding: 40px 20px;
  }
}
.services_areas .areas-cont .areas-box .areas-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.services_areas .areas-cont .areas-box .areas-header h4 {
  font-size: 1.4rem;
}
.services_areas .areas-cont .areas-box .areas-header span {
  background-color: #DC2626;
  padding: 10px;
  border-radius: 12px;
}
.services_areas .areas-cont .areas-box ul {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 7px));
  gap: 14px;
}
@media screen and (max-width: 410px) {
  .services_areas .areas-cont .areas-box ul {
    grid-template-columns: repeat(1, 100%);
  }
}
.services_areas .areas-cont .areas-box ul li {
  background-color: #0F141F;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
}
.services_areas .areas-cont iframe {
  width: 50%;
  border-radius: 10px;
}
@media screen and (max-width: 950px) {
  .services_areas .areas-cont iframe {
    max-width: 720px;
    width: 100%;
  }
}
.services_areas .areas-alert {
  background-color: rgba(58, 16, 21, 0.85);
  border: 1px solid #DC2626;
  border-radius: 20px;
  padding: 24px;
  width: fit-content;
  margin: 44px auto 0px auto;
}
.services_areas .areas-alert h4 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.services_areas .areas-alert p {
  text-align: center;
}

.form-sect {
  padding: 80px 40px;
  position: relative;
  background-image: url("../images/bg-form.webp");
  background-position: center;
  background-size: cover;
}
.form-sect .container {
  z-index: 1;
  position: relative;
}
.form-sect::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0C111A;
  opacity: 0.8;
  position: absolute;
  z-index: 0;
  display: block;
  left: 0;
  top: 0;
}
.form-sect .sub-tittle {
  text-align: center;
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
  font-weight: bold;
}
.form-sect h2, .form-sect h3 {
  position: relative;
  z-index: 1;
}
.form-sect .tittle-text {
  text-align: center;
  color: #a0a0a0;
  font-size: 1.15rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.form-sect form {
  background: linear-gradient(#141B2A, #1B2432);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .form-sect form {
    flex-direction: column;
  }
}
.form-sect form .input-box {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .form-sect form .input-box {
    width: 100%;
  }
}
.form-sect form .input-box span {
  color: #DC2626;
  font-size: 1rem;
}
.form-sect form .input-box input {
  background-color: #0F141F;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1.05rem;
  color: #fff;
  width: 100%;
}
.form-sect form .text-area-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-sect form .text-area-box span {
  color: #DC2626;
  font-size: 1rem;
}
.form-sect form .text-area-box textarea {
  background-color: #0F141F;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  resize: none;
  height: 120px;
  padding: 10px;
  color: #fff;
  width: 100%;
}
.form-sect form .submit-box {
  width: 100%;
}
.form-sect .contact-inf {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .form-sect .contact-inf {
    grid-template-columns: repeat(1, 100%);
    max-width: 800px;
    margin: 0 auto;
  }
}
.form-sect .contact-inf .contact-card {
  background: linear-gradient(#141B2A, #1B2432);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 18px;
  border-radius: 20px;
}
.form-sect .contact-inf .contact-card span {
  background-color: rgba(220, 38, 38, 0.2);
  border-radius: 50px;
  padding: 10px;
  width: fit-content;
  margin-bottom: 10px;
}
.form-sect .contact-inf .contact-card h4 {
  font-size: 1.2rem;
}
.form-sect .contact-inf .contact-card a {
  color: #DC2626;
  font-size: 1.1rem;
}
.form-sect .contact-inf .contact-card p {
  color: #a0a0a0;
  text-align: center;
}
.form-sect .contact-inf .contact-card .mobil-service {
  color: #DC2626;
  background-color: transparent;
  padding: 0;
  font-size: 1.1rem;
}

.reviews-sect {
  background: linear-gradient(#181D27, #140B12);
  padding: 80px 30px 100px 30px;
}
.reviews-sect .sub-tittle {
  text-align: center;
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: bold;
}
.reviews-sect .tittle-text {
  text-align: center;
  color: #a0a0a0;
  font-size: 1.15rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.reviews-sect .review-box {
  display: grid;
  gap: 20px;
  width: 100%;
}
.reviews-sect .review-box .review-item {
  background: linear-gradient(#141B2A, #1B2432);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews-sect .review-box .review-item .header-review {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.reviews-sect .review-box .review-item .header-review .stars-cont {
  display: flex;
  gap: 6px;
}
.reviews-sect .review-box .review-item .header-review .quotes {
  opacity: 0.5;
}
.reviews-sect .review-box .review-item .text-review {
  color: #a0a0a0;
  margin-bottom: 18px;
}
.reviews-sect .review-box .review-item .review-name {
  color: #DC2626;
  font-size: 1.2rem;
  padding: 10px 10px 0 10px;
  border-top: 1px solid rgba(144, 152, 164, 0.3);
  font-weight: 700;
}
.reviews-sect .btn-review-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.reviews-sect .btn-review-container .btn-google-review {
  background-color: #DC2626;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.reviews-sect .btn-review-container .btn-google-review:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.faqs-sect {
  background-color: #140B12;
  padding: 80px 30px;
  margin-top: -1px;
}
.faqs-sect .sub-tittle {
  text-align: center;
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: bold;
}
.faqs-sect .tittle-text {
  text-align: center;
  color: #a0a0a0;
  font-size: 1.15rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.faqs-sect .faqs-cont {
  display: grid;
  grid-template-columns: 100%;
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
}
.faqs-sect .faqs-cont .faq-item {
  background: linear-gradient(#141B2A, #1B2432);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 10px;
  transition: border 0, 4s ease;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.faqs-sect .faqs-cont .faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #DC2626;
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}
.faqs-sect .faqs-cont .faq-item:hover {
  border-color: rgba(255, 47, 47, 0.3);
  transform: translateY(-2px);
}
.faqs-sect .faqs-cont .faq-item .faq-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  /* El círculo ahora es rojo sólido */
  /* Las líneas son del color del fondo para parecer transparentes */
}
.faqs-sect .faqs-cont .faq-item .faq-header h4 {
  font-size: 1.3rem;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .faqs-sect .faqs-cont .faq-item .faq-header h4 {
    font-size: 1.15rem;
  }
}
.faqs-sect .faqs-cont .faq-item .faq-header .faq-icon-svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faqs-sect .faqs-cont .faq-item .faq-header .icon-circle {
  fill: #DC2626;
  transition: fill 0.4s ease;
}
.faqs-sect .faqs-cont .faq-item .faq-header .icon-line {
  stroke: #141B2A;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: all 0.4s ease;
  transform-origin: center;
}
.faqs-sect .faqs-cont .faq-item p {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color: #a0a0a0;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
  font-weight: 300;
  opacity: 0;
}
.faqs-sect .faqs-cont .faq-item.open {
  border: 1px solid rgba(255, 47, 47, 0.5);
  box-shadow: 0 10px 30px -10px rgba(255, 47, 47, 0.2);
}
.faqs-sect .faqs-cont .faq-item.open::before {
  transform: scaleY(1);
  transform-origin: top;
}
.faqs-sect .faqs-cont .faq-item.open .faq-header .faq-icon-svg {
  transform: rotate(180deg);
}
.faqs-sect .faqs-cont .faq-item.open .faq-header .line-vertical {
  transform: rotate(90deg);
  opacity: 0;
}
.faqs-sect .faqs-cont .faq-item.open p {
  max-height: 500px;
  padding: 0;
  color: #a0a0a0;
  margin-top: 15px;
  opacity: 1;
}
.faqs-sect .cta-container {
  border: 1px solid #DC2626;
  border-radius: 20px;
  max-width: 1000px;
  padding: 30px;
  width: 100%;
  margin: 80px auto;
  text-align: center;
}
@media screen and (max-width: 340px) {
  .faqs-sect .cta-container {
    padding: 24px;
  }
}
.faqs-sect .cta-container h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.faqs-sect .cta-container p {
  font-weight: 200;
  margin-bottom: 30px;
  font-size: 1.16rem;
}

footer {
  background-color: #140B12;
  padding: 40px 20px 20px 20px;
  border-top: 1px solid #1F2937;
}
@media screen and (max-width: 960px) {
  footer {
    padding: 40px 20px 20px 30px;
  }
}
footer .footer-cont {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  gap: 3%;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  footer .footer-cont {
    grid-template-columns: repeat(1, 100%);
  }
}
footer .footer-cont .description-box .logo-img {
  margin-bottom: 18px;
}
footer .footer-cont .description-box p {
  color: #a0a0a0;
  margin-bottom: 18px;
  font-size: 1.15rem;
}
footer .footer-cont .description-box .social-box {
  display: flex;
  gap: 18px;
}
footer .footer-cont .description-box .social-box .social-item {
  background-color: #1F2937;
  padding: 10px;
  border-radius: 10px;
}
footer .footer-cont .description-box .social-box .social-item svg {
  width: 30px;
  height: 30px;
}
footer .footer-cont .wrapper {
  width: fit-content;
}
footer .footer-cont .links-box {
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 960px) {
  footer .footer-cont .links-box {
    justify-content: flex-start;
  }
}
footer .footer-cont .links-box h3 {
  margin-bottom: 18px;
}
footer .footer-cont .links-box ul {
  color: #a0a0a0;
}
footer .footer-cont .links-box ul li {
  margin-bottom: 8px;
}
footer .footer-cont .links-box ul li:hover {
  text-decoration: underline;
}
footer .footer-cont .contact-box {
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 960px) {
  footer .footer-cont .contact-box {
    margin-bottom: 40px;
    justify-content: flex-start;
  }
}
footer .footer-cont .contact-box h3 {
  margin-bottom: 18px;
}
footer .footer-cont .contact-box .footer-contact {
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .footer-cont .contact-box .footer-contact a {
  font-size: 1.15rem;
  transition: color 0.4s ease-out;
}
footer .footer-cont .contact-box .footer-contact a:hover {
  color: #DC2626;
  text-decoration: underline;
}
footer .footer-cont .contact-box .footer-contact p {
  color: #a0a0a0;
  font-size: 1rem;
}
footer .copy {
  text-align: center;
  margin-top: 24px;
  border-top: 1px solid #1F2937;
  padding-top: 18px;
}
footer .copy p {
  color: #a0a0a0;
  font-size: 1.1rem;
}
footer .copy a {
  color: #a0a0a0;
  font-size: 1.1rem;
  text-decoration: underline;
}

.description-sect {
  background: linear-gradient(#181D27, #140B12);
  padding: 70px 30px;
}
.description-sect .service-box {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .description-sect .service-box {
    grid-template-columns: repeat(1, 100%);
  }
}
@media screen and (max-width: 1000px) {
  .description-sect .img-cont {
    order: 2;
  }
}
.description-sect .img-cont img {
  margin: 0 auto;
  border-radius: 10px;
}
.description-sect .sub-tittle {
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: bold;
}
@media screen and (max-width: 340px) {
  .description-sect .sub-tittle {
    font-size: 1.4rem;
  }
}
.description-sect h2 {
  font-size: 3rem;
  line-height: 3.5rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 430px) {
  .description-sect h2 {
    font-size: 2.3rem;
    line-height: 2.9rem;
  }
}
@media screen and (max-width: 1000px) {
  .description-sect .service-text {
    order: 1;
  }
}
.description-sect .service-text p {
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.description-sect .service-text ul {
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 520px) {
  .description-sect .service-text ul {
    flex-direction: column;
  }
}
.description-sect .service-text ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  line-height: 1.4rem;
}
.description-sect .service-text ul li span {
  color: #a0a0a0;
  font-size: 1rem;
}
.description-sect .service-text a {
  margin: 30px 0;
}

.aplications-sect {
  background: linear-gradient(#140B12, #181D27);
  padding: 50px 30px 34px 30px;
  margin-top: -1px;
}
.aplications-sect .sub-tittle {
  text-align: center;
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: bold;
}
.aplications-sect .tittle-text {
  text-align: center;
  color: #a0a0a0;
  font-size: 1.15rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.aplications-sect .second-tittle {
  font-size: 2rem;
  border-left: 3px solid #DC2626;
  padding-left: 14px;
  line-height: 2.4rem;
  margin-bottom: 30px;
}
.aplications-sect .second-text {
  color: #a0a0a0;
  width: 50%;
  font-size: 1.15rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 940px) {
  .aplications-sect .second-text {
    width: 70%;
  }
}
@media screen and (max-width: 490px) {
  .aplications-sect .second-text {
    width: 100%;
  }
}
.aplications-sect .card-box {
  display: grid;
  grid-template-columns: repeat(4, 24%);
  gap: 1%;
}
@media screen and (max-width: 1200px) {
  .aplications-sect .card-box {
    grid-template-columns: repeat(2, 48%);
    gap: 2%;
  }
}
@media screen and (max-width: 600px) {
  .aplications-sect .card-box {
    grid-template-columns: repeat(1, 90%);
    justify-content: center;
  }
}
.aplications-sect .card-box .materials-card {
  background: linear-gradient(-35deg, #141B2A, #1B2432);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .aplications-sect .card-box .materials-card {
    margin-bottom: 10px;
  }
}
.aplications-sect .card-box .materials-card #water {
  background-image: url("../images/hose-water.webp");
}
.aplications-sect .card-box .materials-card #solvents {
  background-image: url("../images/hose-solvents.webp");
}
.aplications-sect .card-box .materials-card #temperature {
  background-image: url("../images/hose-temperature.webp");
}
.aplications-sect .card-box .materials-card #suction {
  background-image: url("../images/hose-suction.webp");
}
.aplications-sect .card-box .materials-card .header-card {
  background-size: cover;
  padding: 12px 18px 6px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.aplications-sect .card-box .materials-card .header-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.aplications-sect .card-box .materials-card .header-card span {
  background-color: rgba(220, 38, 38, 0.3);
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
  z-index: 2;
  position: relative;
}
.aplications-sect .card-box .materials-card .header-card h3 {
  color: #DC2626;
  font-size: 1.4rem;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 1290px) {
  .aplications-sect .card-box .materials-card .header-card h3 {
    font-size: 1.2rem;
  }
}
.aplications-sect .card-box .materials-card .body-card {
  padding: 10px 14px 20px 14px;
}
.aplications-sect .card-box .materials-card .body-card P {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.aplications-sect .card-box .materials-card .body-card li {
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #a0a0a0;
}
.aplications-sect .card-box .materials-card .body-card li::before {
  content: "";
  position: absolute;
  left: 0px;
  background-color: #DC2626;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.services-cta {
  display: flex;
  justify-content: center;
  background: linear-gradient(#181D27, #140B12);
  padding: 100px 30px;
  margin-top: -1px;
}
.services-cta div {
  background-color: #DC2626;
  max-width: 900px;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
}
@media screen and (max-width: 330px) {
  .services-cta div {
    padding: 40px 30px;
  }
}
.services-cta div h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.services-cta div p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 36px;
}
.benefits-sect {
  background: linear-gradient(#140B12, #181D27);
  padding: 90px 30px;
}
.benefits-sect .sub-tittle {
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: center;
}
.benefits-sect .tittle-text {
  text-align: center;
  color: #a0a0a0;
  font-size: 1.15rem;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.benefits-sect .benefits-box {
  display: grid;
  grid-template-columns: repeat(3, calc(33% - 20px));
  gap: 20px;
  justify-content: center;
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 968px) {
  .benefits-sect .benefits-box {
    grid-template-columns: repeat(1, 100%);
  }
}
.benefits-sect .benefits-box #first-box {
  background-image: url("../images/benefits-1.webp");
  background-position: center 20%;
}
.benefits-sect .benefits-box #first-box::before {
  background: linear-gradient(rgba(21, 30, 44, 0.5), rgba(21, 30, 44, 0.92));
}
.benefits-sect .benefits-box #second-box {
  background-image: url("../images/benefits-3.webp");
  background-position: center 60%;
}
.benefits-sect .benefits-box #second-box::before {
  background: linear-gradient(rgba(31, 41, 55, 0.7), rgba(220, 38, 38, 0.7));
}
.benefits-sect .benefits-box #third-box {
  background-image: url("../images/benefits-2.webp");
  background-position: 50% 60%;
}
.benefits-sect .benefits-box #third-box::before {
  background: linear-gradient(rgba(21, 30, 44, 0.5), rgba(21, 30, 44, 0.92));
}
.benefits-sect .benefits-box .benefits-card {
  position: relative;
  padding: 20px 30px;
  border-radius: 40px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin: 0 auto;
}
.benefits-sect .benefits-box .benefits-card::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 38px;
}
.benefits-sect .benefits-box .benefits-card span {
  position: relative;
  z-index: 2;
  background-color: rgba(245, 104, 104, 0.2);
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
  margin-bottom: 10px;
}
.benefits-sect .benefits-box .benefits-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  font-size: 1.5rem;
}
.benefits-sect .benefits-box .benefits-card p {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 300;
}

.about-cta-sect {
  display: flex;
  justify-content: center;
  background-image: url("../images/hose-repair.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 30px;
  position: relative;
}
.about-cta-sect::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.about-cta-sect div {
  background-color: #DC2626;
  max-width: 900px;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 330px) {
  .about-cta-sect div {
    padding: 40px 30px;
  }
}
.about-cta-sect div h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.about-cta-sect div p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 36px;
}

.industries-serve {
  background-color: #140B12;
  padding: 50px 30px;
  margin-top: -1px;
}
.industries-serve .box-industries {
  display: grid;
  grid-template-columns: repeat(4, 24%);
  gap: 14px;
  margin-top: 50px;
}
.industries-serve .box-industries #mining {
  background-image: url("../images/industries_serve/truck-miner.webp");
}
.industries-serve .box-industries #farming {
  background-image: url("../images/industries_serve/campo-de-cultivo-de-la-maquina-agricola-del-tractor-1_1.webp");
}
.industries-serve .box-industries #Manufacturing {
  background-image: url("../images/industries_serve/silos-agricolas-exterior-del-edificio-1_1.webp");
}
.industries-serve .box-industries #Ports {
  background-image: url("../images/industries_serve/global-logistics-network-2.webp");
}
.industries-serve .box-industries #construction {
  background-image: url("../images/industries_serve/heavy-machines-construction-workers-working-building.webp");
}
.industries-serve .box-industries #recycling {
  background-image: url("../images/industries_serve/crane-grab-scrap.webp");
}
.industries-serve .box-industries #Oil-Gas {
  background-image: url("../images/industries_serve/oil-rig-created-with-generative-ai-technology.webp");
}
.industries-serve .box-industries #automotive {
  background-image: url("../images/industries_serve/photo-automobile-production-line-modern-car-assembly-plant-auto-industry-interior-hightech-factory-modern-production.webp");
}
.industries-serve .box-industries .industries-item {
  border-radius: 20px;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.industries-serve .box-industries .industries-item .icon-wrapper {
  background-color: rgba(245, 104, 104, 0.2);
  border-radius: 10px;
  padding: 10px;
}
.industries-serve .box-industries .industries-item .icon-wrapper, .industries-serve .box-industries .industries-item h3, .industries-serve .box-industries .industries-item p {
  position: relative;
  z-index: 2;
}
.industries-serve .box-industries .industries-item h3 {
  font-size: 1.4rem;
}
.industries-serve .box-industries .industries-item p {
  text-align: center;
}
.industries-serve .box-industries .background-1::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #1B2432, #141B2A);
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 0.8;
}
.industries-serve .box-industries .background-2::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1F2937, #DC2626);
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 0.5;
}

.services-sect {
  background: linear-gradient(#140B12, #181D27);
  padding: 80px 0 0 0;
  color: white;
  position: relative;
  margin-top: -1px;
}
.services-sect h3 {
  text-align: center;
  color: #DC2626;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: bold;
}
.services-sect h2 {
  margin-bottom: 60px;
}
.services-sect .stacking-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.services-sect .stacking-container .card {
  position: -webkit-sticky;
  position: sticky;
  width: 95%;
  height: 330px;
  max-width: 900px;
  transition: transform 0.1s linear, filter 0.1s linear;
  transform-origin: center top;
  will-change: transform, top;
}
@media screen and (max-width: 770px) {
  .services-sect .stacking-container .card {
    width: 100%;
    max-width: 400px;
    margin: 0 30px;
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .services-sect .stacking-container .card {
    width: 90%;
  }
}
.services-sect .stacking-container #card-1 {
  top: 20px;
  z-index: 1;
}
.services-sect .stacking-container #card-2 {
  top: 40px;
  z-index: 2;
}
.services-sect .stacking-container #card-3 {
  top: 60px;
  z-index: 3;
}
.services-sect .stacking-container .card-content {
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.6);
  height: 100%;
  border-radius: 32px;
  display: flex;
  gap: 20px;
  background: linear-gradient(#1B2432, #141B2A);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 40px 0 0;
  align-items: center;
}
@media screen and (max-width: 770px) {
  .services-sect .stacking-container .card-content {
    flex-direction: column;
    padding: 0 !important;
    gap: 0;
  }
}
.services-sect .stacking-container .card-content .card-image-wrapper {
  width: 50%;
  height: 100%;
}
.services-sect .stacking-container .card-content .card-image-wrapper .service-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 770px) {
  .services-sect .stacking-container .card-content .card-image-wrapper {
    width: 100%;
    background-color: #DC2626;
  }
}
.services-sect .stacking-container .card-content .text-card {
  width: 50%;
}
@media screen and (max-width: 770px) {
  .services-sect .stacking-container .card-content .text-card {
    width: 100%;
    padding: 14px 20px 24px 20px;
  }
}
.services-sect .stacking-container .card-content .text-card h4 {
  color: #DC2626;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
}
.services-sect .stacking-container .card-content .text-card p {
  margin-bottom: 20px;
  color: #a0a0a0;
}
.services-sect .stacking-container .card-content .text-card .btn-service {
  background-color: #DC2626;
  color: #fff;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  width: fit-content;
  transition: background-color 0.3s ease-out, gap 0.3s ease-out;
}
.services-sect .stacking-container .card-content .text-card .btn-service:hover {
  background-color: #e65757;
  gap: 14px;
}
.services-sect .stacking-container .card-content .card-image-wrapper {
  position: relative;
}
.services-sect .stacking-container .card-content .card-image-wrapper .service-icon {
  background-color: #DC2626;
  padding: 6px;
  border-radius: 10px;
  position: absolute;
}
.services-sect .stacking-container .card-content .card-image-wrapper #icon-1 {
  top: 16px;
  left: 16px;
}
.services-sect .stacking-container .card-content .card-image-wrapper #icon-2 {
  top: 34px;
  left: 16px;
}
.services-sect .stacking-container .card-content .card-image-wrapper #icon-3 {
  top: 38px;
  left: 16px;
}
.services-sect .stacking-container .card-content .card-image-wrapper .service-img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.services-sect .stacking-container .card:not(:last-child) {
  margin-bottom: clamp(350px, 50vh, 500px);
}
.services-sect .stacking-container .last-card-buffer {
  height: 250px;
  width: 100%;
}
@media (max-width: 768px) {
  .services-sect .stacking-container .tittle-fch {
    font-size: 2.5rem;
  }
  .services-sect .stacking-container .last-card-buffer {
    height: 150px;
  }
}
.services-sect .cta-container {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: -200px;
  padding-bottom: 100px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .services-sect .cta-container {
    margin-top: -250px;
    padding-bottom: 60px;
  }
}
.services-sect .btn-form {
  pointer-events: auto;
  background-color: rgba(20, 11, 18, 0.6);
  color: white;
  border: 2px solid #DC2626;
  padding: 16px 32px;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(8px);
}
.services-sect .btn-form:hover {
  background-color: #DC2626;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}

:root {
  --initial-size: 195px;
  --ring-thickness: 60px;
}

#loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease-in-out;
}

@keyframes rotate-all {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.viewport-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 600px;
}

.mechanical-unit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-all 15s linear infinite;
}

.teeth-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.tooth {
  position: absolute;
  width: 115px;
  height: 100px;
  background-color: #ed1c24;
  transform-origin: 50% 50%;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease;
  clip-path: polygon(0% 0%, 100% 0%, 100% 25%, 85% 75%, 75% 100%, 65% 96.2%, 50% 95%, 35% 96.2%, 25% 100%, 15% 75%, 0% 25%);
  box-shadow: 0 0 20px rgba(237, 28, 36, 0.3);
}

.tooth:nth-child(1) {
  --angle: 0deg;
}

.tooth:nth-child(2) {
  --angle: 45deg;
}

.tooth:nth-child(3) {
  --angle: 90deg;
}

.tooth:nth-child(4) {
  --angle: 135deg;
}

.tooth:nth-child(5) {
  --angle: 180deg;
}

.tooth:nth-child(6) {
  --angle: 225deg;
}

.tooth:nth-child(7) {
  --angle: 270deg;
}

.tooth:nth-child(8) {
  --angle: 315deg;
}

.tooth {
  transform: rotate(var(--angle)) translateY(-139px);
}

.loaded .tooth {
  transform: rotate(var(--angle)) translateY(-550px) !important;
  opacity: 0;
}

#logo-zone {
  position: absolute;
  z-index: 10;
  transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-inner {
  width: 170px;
  height: 170px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  border: 4px solid #1a1a1a;
}

.loaded #logo-zone {
  opacity: 0;
  transform: scale(0.8);
}

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