@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@300;400;600;700&display=swap");
    :root {
      --primary-color: #00204a;
      --secondary-color: #00bbf0;
      --text-color: #1f1f1f;
      --white: #ffffff;
    }
body {
  font-family: "Montserrat", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
}

.heading_container h2 span {
  color: #00bbf0;
}

/* Initial state for animation */
.w3_container {
  opacity: 0; /* Start fully transparent */
  transform: translateY(30px); /* Shift down initially */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* When the element is visible */
.w3_container.appear {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Reset position */
}

.w3_container h2 {
  position: relative;
  font-weight: 600;
  margin-bottom: 0;
}

.w3_container h2 span {
  color: #FF7900;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: 100%;
}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: 100%;
}

.sub_page .hero_area {
  min-height: auto;
  background: linear-gradient(to bottom, #23398e, #23398e);
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #00bbf0;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #00bbf0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/

/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #00204a;
}

.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
  font-size: 16px;
  justify-content: left;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 25px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 165px;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #007fa4;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .img-box {
  margin: 45px 0;
}

.slider_section .img-box img {
  width: 100%;
  -webkit-animation: upDown 5s infinite;
          animation: upDown 5s infinite;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #00bbf0;
}


/* Ensure the parent container is a flex container and centers items */
.service_section .container .row-2 {
  margin:20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center; /* This is the key for horizontal centering */
}


/* Style for the boxes */
.service_section .box {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content within the box */
  background-color: #f8f8f9;
  padding: 15px;
  border-radius: 5px;
  box-sizing: border-box;
  height: 100%;
  max-width: 100%; /* Prevent overflow on smaller screens */
  margin-bottom: 40px;
}

.service_section .box .img-box {
  margin-bottom: 20px;
}

/* Ensure images inside the boxes are responsive */
.service_section .box .img-box img {
  max-width: 75px;
  height: auto;
  display: block;
  margin: 0 auto; /* Center the image within its container */
}

.service_section .box .detail-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service_section .box .detail-box p {
  margin-bottom: 20px;
  text-align: center; /* Align text to the left within the box */
}


.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px 0;
  line-height: 1.2;
  text-align: center; /*Align text to the left within the box*/
  display: block; /*Remove flexbox properties*/
  height: auto; /*Remove fixed height*/
}

.service_section .box .detail-box a {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0;
  line-height: 1.2;
  text-align: center; /*Align text to the left within the box*/
  display: block; /*Remove flexbox properties*/
  height: auto; /*Remove fixed height*/
}



.service_section .box .detail-box a {
  color: #00204a;
  font-weight: 600;
}

.service_section .box .detail-box a:hover {
  color: #00bbf0;
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.service_section .btn-box a:hover {
  background-color: #007fa4;
}

.service_section .soluciones-talent {
  height: 39px;
  top: -86px;
  left: 10px;
  text-shadow: 0px 4px 4px #00000040;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 36px;
  text-align: left;
  letter-spacing: 0;
  line-height: 38.4px;
  white-space: nowrap;
}

.service_section .text-wrapper {
  color: #0c0c0c;
}
.service_section .span {
  font-weight: 700;
  color: #0c0c0c;
}

.service_section .text-wrapper-2 {
  color: #ff7900;
}

.service_section .text-wrapper-2-green {
  color: #03A300;
}

.service_section .text-wrapper-2-blue {
  color: #01A7FF;
}

.service_section .text_section .text-wrapper-3 {
  font-weight: 100;
  color: #0c0c0c;
}

.service_section .text-wrapper-4 {
  font-weight: 600;
  color: #0c0c0c;
}

.service_section .text-wrapper-5 {
  font-weight: 600;
  color: #ff7900;
}
.service_section .text-wrapper-5-green {
  font-weight: 600;
  color: #03A300;
}

.service_section .text-wrapper-5-blue {
  font-weight: 600;
  color: #01A7FF;
}

.service_section .text-wrapper-6 {
  font-weight: 500;
  color: #0c0c0c;

  
}


/* Ensure the parent container is a flex container and centers items */
.service_section .container .row {
  margin:10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* This is the key for horizontal centering */
}

.service_section .box-a {

  gap: 10px; /* Adds spacing between flex children */
  background-color: #f8f8f9;
  padding: 20px;
  border-radius: 5px;
  box-sizing: border-box; /* Includes padding in width/height */
  margin-top: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}

.service_section .box-a .text-section {
  flex: column; /* Takes available space */
  justify-Content: center,
}

.service_section .box-a .text-section h2 {
  color: #333;
}

.service_section .box-a .icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service_section .box-a .icon-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.service_section .box-a .icon-list li .icon {
  width: 30px;
  height: 30px;
  background-color: #f9a23b;
  border-radius: 50%;
  flex-shrink: 0;
}

.service_section .box-a .icon-list li .ellipse {
  width: 80px;
  height: 80px;
  margin: 10px;
  background-color: #ff7900;
  border-radius: 40px;
  border: 1.2px solid;
  border-color: #1b2847;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center; /* Center image */
  overflow: hidden; /* Crop any excess image */

  /* Shadow effect */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);

  /* Add animation */
  animation: shadow-pulse 1.5s infinite ease-in-out;
}

/* Keyframes for the shadow pulse */
@keyframes shadow-pulse {
  0%, 100% {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Normal shadow */
  }
  50% {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4); /* Enlarged shadow */
  }
}

.service_section .box-a .icon-list li .ellipse img {
  width: 60%; /* Adjust the image size */
  height: 60%; /* Keep aspect ratio */
  object-fit: contain; /* Ensure the image fits without distortion */
}

.service_section .box-a .icon-list li .text {
  flex: 1;
}

.service_section .box-a .image-section {
  flex: 1; /* Ensures equal space */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.service_section .box-a .image-section img {
  width: 100%;
  max-width: 500px;
  border-radius: 50%;
  object-fit: cover;
  align-items: center
}

.service_section .element-modelo-integral-de {
  position: absolute;
  width: 959px;
  height: 96px;
  top: 0;
  left: 162px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 36px;
}

.service_section .png-wrapper {
  top: 194px;
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  padding: 32.5px;
  position: absolute;
  left: 0;
  border-radius: 120px;
  border: 4px solid;
  border-color: #ff7900;
}

.service_section .w-png {
  position: relative;
  width: 55px;
  height: 55px;
  background-image: url(https://c.animaapp.com/dxeD8rYE/img/w2-png-3@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.about_section {
  background: linear-gradient(130deg, #23398e, #1b2847); 
  color: #ffffff;
}

.about_section .heading_container {
  margin-bottom: 45px;
}

.about_section .img-box img {
  max-width: 100%;
}

.about_section .detail-box h3 {
  font-weight: bold;
}

.about_section .detail-box p {
  margin-top: 15px;
}

/* Oferta de servicios Section */
.about_section-a {
  background: linear-gradient(130deg, #23398e, #1b2847);
  color: #ffffff;
  padding: 50px 0;
}

.about_section-a .container {
  max-width: 1200px;
  margin: 0  auto 70px auto;
}

.heading_container {
  margin-bottom: 30px;
  text-align: center;
}

.oferta-de-servicios {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.text-wrapper-7 {
  color: #ffffff;
}

.span1 {
  color: #ff7900;
}

/* Card Row: Flexbox Layout */
.card_row {
  display: flex;
  justify-content: space-between; /* Evenly space cards */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  align-items: stretch;
  gap: 40px; /* Spacing between cards */
}

/* Card Styles */
.card {
  flex: 1; /* Allow cards to stretch equally */
  display: flex;
  flex-direction: column; /* Ensures child elements stack */
  justify-content: center; /* Evenly space cards */
  align-items: center;
  width: 48%; /* Ensures two cards fit side by side */
  max-width: 48%;
  min-width: 358px; /* Prevents cards from being too narrow */
  min-height: 650px; /* Optional: Ensure a minimum height for all cards */
  background-color:rgba(0, 0, 0, 0);
}


/* Card Styles */
.card-2 {
  flex: 1; /* Allow cards to stretch equally */
  display: flex;
  flex-direction: column; /* Ensures child elements stack */
  justify-content: center; /* Evenly space cards */
  align-items: center;
 
  background-color:rgba(0, 0, 0, 0);
}

.card-2 .overlap {
  position: relative;
  width: 90%;
  height: 613px;
  background-color: #ff7900;
  border-radius: 0px 30px 30px 0px; /* Ensure this value is consistent with other similar elements */
  border: 2px solid;
  border-color: #1b2847;

}

.overlap {
  position: relative;
  width: 71.5%;
  height: 613px;
  background-color: #ff7900;
  border-radius: 0px 30px 30px 0px; /* Ensure this value is consistent with other similar elements */
  border: 2px solid;
  border-color: #1b2847;

}


.overlap .text-wrapper-15 {
  position: absolute;
  top: 120px;
  left: 110%;
  transform: translateX(-80%) rotate(90deg); /* Combined transforms */
  height: 21px;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 32px); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}

.overlap .text-wrapper-16 {
  position: absolute;
  top: 180px;
  left: 78.2%;
  transform: translateX(-21.8%) rotate(90deg); /* Combined transforms */
  height: 21px;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 32px); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}

.overlap .text-wrapper-17 {
  position: absolute;
  top: 90px;
  left: 92.2%;
  transform: translateX(-21.8%) rotate(90deg); /* Combined transforms */
  height: 21px;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 32px); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}

.overlap .text-wrapper-18 {
  position: absolute;
  top: 120px;
  left: 108%;
  transform: translateX(-80%) rotate(90deg); /* Combined transforms */
  height: 21px;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 32px); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}

.card-2 .overlap .text-wrapper-19 {
  position: absolute;
  top: 22%;
  left: 95%;
  transform: translate(-50%, -50%) rotate(90deg); /* Center and rotate text */
  height: auto;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}
.card-2 .overlap .text-wrapper-20 {
  position: absolute;
  top: 26%;
  left: 95%;
  transform: translate(-50%, -50%) rotate(90deg); /* Center and rotate text */
  height: auto;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}

.card-2 .overlap .text-wrapper-21 {
  position: absolute;
  top: 38%;
  left: 95%;
  transform: translate(-50%, -50%) rotate(90deg); /* Center and rotate text */
  height: auto;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}
.card-2 .overlap .text-wrapper-22 {
  position: absolute;
  top: 30%;
  left: 95%;
  transform: translate(-50%, -50%) rotate(90deg); /* Center and rotate text */
  height: auto;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}
.card-2 .overlap .text-wrapper-23 {
  position: absolute;
  top: 15%;
  left: 95%;
  transform: translate(-50%, -50%) rotate(90deg); /* Center and rotate text */
  height: auto;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}
.card-2 .overlap .text-wrapper-24 {
  position: absolute;
  top: 15%;
  left: 95%;
  transform: translate(-50%, -50%) rotate(90deg); /* Center and rotate text */
  height: auto;
  font-family: "Montserrat", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive font size */
  letter-spacing: 0;
  text-shadow: 0px 4px 4px #00000040;
  text-wrap: nowrap;
  box-sizing: border-box;
}
/* Ellipse */
.ellipse-2 {
  position: absolute;
  width: 166px;
  height: 166px;
  top: 10px;     /* Valid alternative */
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff7900;
  border-radius: 50%;
  display:flex;
  align-items: center;
  justify-content: center;
}

.ellipse-3 {
  position: absolute;
  width: 166px;
  height: 166px;
  top: 10px;     /* Valid alternative */
  left: 50%;
  transform: translateX(-50%);
  background-color: #01A7FF;
  border-radius: 50%;
  display:flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure content does not overflow */
}


.ellipse-3 img {
  max-width: 70%;
  object-fit: contain; /* Ensure the image covers the ellipse without overflowing */
}

/* Rectangle Backgrounds */

.rectangle-2{
  position: absolute;
  width:90%;
  height: auto; /* Adjust height dynamically */
  min-height: 613px; /* Ensures consistency */
  background-color: #d9d9d9;
  border-radius: 0px 30px 30px 0px;
  border: 2px solid;
  border-color: #1b2847;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  list-style-position: inside;
  font-family: "Montserrat", Helvetica;
  color: #0c0c0c;
  font-size: 14px;
  margin-top: 0px;
  justify-content: flex-end;
}

.rectangle-3 {
  position: relative;
  width: 90%;
  height: auto;
  min-height: 613px;
  background-color: #d9d9d9;
  border-radius: 0px 30px 30px 0px;
  border: 2px solid;
  border-color: #1b2847;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  list-style-position: inside;
  font-family: "Montserrat", Helvetica;
  font-size: 14px;
  margin-top: 0px;
  justify-content: flex-end;
  list-style-type: none;
}

.rectangle-3-green {
  position: relative;
  width: 90%;
  height: auto;
  min-height: 613px;
  background-color: #d9d9d9;
  border-radius: 0px 30px 30px 0px;
  border: 2px solid;
  border-color: #1b2847;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  list-style-position: inside;
  font-family: "Montserrat", Helvetica;
  font-size: 17px;
  margin-top: 0px;
  color: #0c0c0c;
  
}

/* List Items */
.rectangle-3-green ul {
  padding-left: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

.rectangle-3-green li {
  line-height: 1.8;
  margin-bottom: 5px;
  list-style-type: disc; /* Ensures list items have bullet points */
  margin-left: 5px;
  text-align: left; /* Center text */
  transform: translateY(200px); /* Adjust this value to move the list up or down */
}
.rectangle-2 li{
  line-height: 1.8;
  margin-bottom: 5px;
}
.rectangle-3 ul {
  padding-left: 2px;
  color: #0c0c0c
}

.rectangle-3 li {
  line-height: 1.8; /* Decrease line spacing */
  margin-bottom: 2; /* Remove extra spacing between items */

}

.rectangle-4-green {
  position: relative;
  width: 90%;
  height: auto;
  min-height: 613px;
  background-color: #d9d9d9;
  border-radius: 0px 30px 30px 0px;
  border: 2px solid;
  border-color: #1b2847;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  list-style-position: inside;
  font-family: "Montserrat", Helvetica;
  font-size: 17px;
  margin-top: 0px;
  color: #0c0c0c;
  
}

/* List Items */
.rectangle-4-green ul {
  padding-left: 4%; /* Remove default padding */
  margin: 0; /* Remove default margin */
  line-height: 0.25;
  font-size: 12px;
}

.rectangle-4-green li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 5px;
  transform: translateY(200px); /* Adjust this value to move the list up or down */
}

.rectangle-5-green {
  position: relative;
  width: 90%;
  height: auto;
  min-height: 613px;
  background-color: #d9d9d9;
  border-radius: 0px 30px 30px 0px;
  border: 2px solid;
  border-color: #1b2847;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  list-style-position: inside;
  font-family: "Montserrat", Helvetica;
  font-size: 17px;
  margin-top: 0px;
  color: #0c0c0c;
  
}

/* List Items */
.rectangle-5-green ul {
  text-align: left;
  padding-left: 4%; /* Remove default padding */
  margin: 0; /* Remove default margin */
  line-height: 0.25;
  font-size: 15px;
}

.rectangle-5-green li {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 5px;
  transform: translateY(200px); /* Adjust this value to move the list up or down */
}

/* Orange Text */
.orange-text {
  color: #ff7900;
}

/* Images */
.pngkey-com-talent,
.toppng-com-education {
  position: relative;
  width: 75%;
  height: auto;
  object-fit: cover;
}

/* Images */
.toppng-com-education-a {
  position: relative;
  width: auto;
  height: 72%;
  object-fit: cover;
}


/* END Oferta de servicios Section */

.why_section .box {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.why_section .box .img-box {
  margin-bottom: 20px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 100%;
  border: 5px solid #00204a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.why_section .box .img-box img {
  width: 55px;
  height: auto;
  fill: #00204a;
}

.why_section .box h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.why_section .box p {
  margin-bottom: 0;
}


/* Productos Principales */
.prod_princi .prod_container {
  display: flex;
  flex-direction: column; /* Keeps boxes in a vertical column */
  align-items: center;    /* Centers items horizontally */
  justify-content: center; /* Centers content vertically (if height is defined) */
  gap: 60px;              /* Vertical spacing between boxes */
  margin-top: 20px;
}

.prod_princi .heading_container .productos {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 15px; /* Vertical spacing */
}

.prod_princi  .text-wrapper-9 {
  color: #0c0c0c;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0px 4px 4px #00000040;
  font-weight: 400;
}

.prod_princi  .text-wrapper-10 {
  color: #ff7900;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0px 4px 4px #00000040;
  font-weight: 400;
}

/* Boxes Container */
.prod_princi .prin_container {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Vertical spacing */
  margin-top: 30px;
}

/* Individual Boxes */
.prod_princi .box-b {
  display: flex;
  text-align: left;
  padding: 20px;
  border: 1px solid #f0f0f0;
  border-radius: 1px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease-in-out;
}

.prod_princi .box-b:hover {
  transform: translateY(-5px);
}


.prod_princi .img2-box {
  width: 100px;
  height: 100px;
  border: 3px solid #ff7900;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.prod_princi .img2-box img {
  width: 60px;
  height: auto;
}

.prod_princi .img2-box-g {
  width: 100px;
  height: 100px;
  border: 3px solid #03A300;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.prod_princi .img2-box-g img {
  width: 60px;
  height: auto;
}

.prod_princi .img2-box-f {
  width: 100px;
  height: 100px;
  border: 3px solid #01A7FF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.prod_princi .img2-box-f img {
  width: 60px;
  height: auto;
}

.prod_princi .img2-box-b {
  width: 100px;
  height: 100px;
  border: 3px solid #975303;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.prod_princi .img2-box-b img {
  width: 60px;
  height: auto;
}

.prod_princi  .text-content {
  word-wrap: break-word; /* Break long words to wrap within the container */
  word-break: break-word; /* Break long words to wrap within the container */
  white-space: normal; /* Allow text to wrap normally */
}
.prod_princi .text-content h5 {
  padding-left: 40px;
  margin: 0 10px 10px 0;
  font-weight: bold;
  font-size: 24px;
  color: #ff7900;
  text-shadow: 0px 1px 1px #00000040;
}

.prod_princi .text-content p {
  padding-left: 40px;
  margin: 0;
  font-size: 20px;
  color: #333;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.prod_princi .box-b {
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.prod_princi .box-b.visible-left {
  opacity: 1;
  animation: fadeInLeft 0.5s ease-in-out;
}

.prod_princi .box-b.visible-right {
  opacity: 1;
  animation: fadeInRight 0.5s ease-in-out;
}

/* Image Section */
.prod_princi .overlap-3 {
  position: relative;
  max-width: 745px;
  max-height: auto;
}


.prod_princi .rectangle-5 {
  /* Responsive width */
  width: min(80%, 90vw);
  height: clamp(200px, 120%, 400px);
  
  /* Responsive border radius */
  border-radius: clamp(15px, 3vw, 30px);
  
  /* Responsive font size */
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(18px, 1vw, 28px);
  
  /* Responsive padding */
  padding: 0 0 clamp(16px, 1vh, 30px) clamp(2px, 3vw, 30px);
  
  /* Responsive shadow */
  box-shadow: 0px clamp(2px, 0.5vw, 4px) clamp(2px, 0.5vw, 4px) #00000040;
  
  /* Keep other properties */
  background-color: #01A7FF;
  position: absolute;
  box-sizing: border-box;
  font-family: "Montserrat", Helvetica;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
  white-space: normal;
  display: flex;
  align-items: flex-end;
}
.prod_princi .overlap-3 img.img-d {
  width: 100%; /* Allow the image to scale */
  max-width: 745px;
  border-radius: 15px;
  position: relative; /* Adjust positioning for responsive scaling */
}

/* Image Section */
.prod_princi .overlap-4 {
  position: relative;
  max-width: 745px;
  max-height: auto;
}


.prod_princi .rectangle-6 {
  /* Responsive width */
  width: min(80%, 90vw);
  height: clamp(200px, 120%, 400px);
  
  /* Responsive border radius */
  border-radius: clamp(15px, 3vw, 30px);
  
  /* Responsive font size */
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(16px, 1vw, 28px);
  
  /* Responsive padding */
  padding: 0 0 clamp(1px, 2vh, 30px) clamp(2px, 3vw, 30px);
  
  /* Responsive shadow */
  box-shadow: 0px clamp(2px, 0.5vw, 4px) clamp(2px, 0.5vw, 4px) #00000040;
  
  /* Keep other properties */
  background-color: #975303;
  position: absolute;
  box-sizing: border-box;
  font-family: "Montserrat", Helvetica;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
  white-space: normal;
  display: flex;
  align-items: flex-end;
}
.prod_princi .overlap-4 img.img-e {
  width: 100%; /* Allow the image to scale */
  max-width: 745px;
  border-radius: 15px;
  position: relative; /* Adjust positioning for responsive scaling */
}

/* Image Section */
.prod_princi .overlap-5 {
  position: relative;
  max-width: 745px;
  max-height: auto;
}


.prod_princi .rectangle-7 {
  /* Responsive width */
  width: min(80%, 90vw);
  height: clamp(200px, 120%, 400px);
  
  /* Responsive border radius */
  border-radius: clamp(15px, 3vw, 30px);
  
  /* Responsive font size */
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(10px, 1vw, 28px);
  
  /* Responsive padding */
  padding: 0 0 clamp(15px, 1.8vh, 30px) clamp(2px, 3vw, 30px);
  
  /* Responsive shadow */
  box-shadow: 0px clamp(2px, 0.5vw, 4px) clamp(2px, 0.5vw, 4px) #00000040;
  
  /* Keep other properties */
  background-color: #975303;
  position: absolute;
  box-sizing: border-box;
  font-family: "Montserrat", Helvetica;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
  white-space: normal;
  display: flex;
  align-items: flex-end;

}

.prod_princi .overlap-5 img.img-f {
  width: 100%; /* Allow the image to scale */
  max-width: 745px;
  border-radius: 15px;
  position: relative; /* Adjust positioning for responsive scaling */
}

/* Image Section */
.prod_princi .overlap-6 {
  position: relative;
  max-width: 745px;
  max-height: auto;
}


.prod_princi .rectangle-8 {
  /* Responsive width */
  width: min(80%, 90vw);
  height: clamp(200px, 120%, 400px);
  
  /* Responsive border radius */
  border-radius: clamp(15px, 3vw, 30px);
  
  /* Responsive font size */
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(17px, 1vw, 28px);
  
  /* Responsive padding */
  padding: 0 0 clamp(15px, 0.5vh, 30px) clamp(2px, 3vw, 30px);
  
  /* Responsive shadow */
  box-shadow: 0px clamp(2px, 0.5vw, 4px) clamp(2px, 0.5vw, 4px) #00000040;
  
  /* Keep other properties */
  background-color: #975303;
  position: absolute;
  box-sizing: border-box;
  font-family: "Montserrat", Helvetica;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0;
  white-space: normal;
  display: flex;
  align-items: flex-end;

}

.prod_princi .overlap-6 img.img-g {
  width: 100%; /* Allow the image to scale */
  max-width: 745px;
  border-radius: 15px;
  position: relative; /* Adjust positioning for responsive scaling */
}

/*team section */
.team_section {
  text-align: center;
  background: linear-gradient(130deg, #23398e, #1b2847); 
  color: #ffffff;
}

.team_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team_section .team_container {
  padding: 15px;
  margin-bottom: 35px;
}

.team_section .team_container .box {
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all .1s;
  transition: all .1s;
  margin-top: 35px;
  background: linear-gradient(to bottom, #1b2847, #1b2847);  
}

.team_section .team_container .box .img-box {
  display: flex;                     /* Enable flexbox layout */
  justify-content: center;           /* Center horizontally */
  align-items: center;               /* Center vertically */
  height: 450px; 
}

.img1 {
  padding-top: 8%;
  max-width: 300px;    /* Ensure the image doesn't overflow horizontally */
  height: auto;       /* Maintain the aspect ratio of the image */
}

.team_section .team_container .box .detail-box {
  margin: 25px 0;
}

.team_section .team_container .box .detail-box h5 {
  color: #00bbf0;
  font-weight: 600;
  position: relative;
}

/* Start Servicios Consultoria */
.team_section-3 {
  text-align: center;
  background: linear-gradient(130deg, #23398e, #1b2847); 
  color: #ffffff;
}

.team_section-3 .heading_container-3 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


.team_section-3 .team_container-3 {
  padding: 25px;
}

.team_section-3 .team_container-3 .box-3 {
  display: flex;              /* Enables flexbox */
  flex-direction: column;     /* Aligns children vertically */
  justify-content: center;    /* Centers children vertically */
  align-items: center;        /* Centers children horizontally */
  border-radius: 5px;
  transition: all .1s;
  background: linear-gradient(to bottom, #1b2847, #1b2847);  
  padding: 20px; 
  margin: 20px;
  min-height: 250px;
  min-width: auto;
}

.team_section-3 .team_container-3 .box-3 .img-box-3 {  
  display: flex;              /* Enable flexbox layout */
  justify-content: center;    /* Center horizontally */
  align-items: center;        /* Center vertically */
  height: 300px;
  width: 300px;
  overflow: hidden;           /* Crop anything that exceeds the container */
  border-radius: 50%;         /* Circular container */
}

.img3 {  
  width: 100%;                /* Ensures it fills the container */
  height: 100%;               /* Ensures the container's height is respected */
  object-fit: cover;          /* Ensures the image maintains its aspect ratio */
}

.team_section-3 .team_container-3 .box-3 .detail-box-3 {
  padding: 20px 0;
  margin: 0 10px 0 0;
  padding-bottom: 15px;
}

.team_section-3 .team_container-3 .box-3 .detail-box-3 h5 {
  color: #ff7900;
  font-weight: 600;
  position: relative;
}

.owl-stage {
  display: flex; /* Enables Flexbox */
  align-items: stretch; /* Stretches items to match the height of the tallest item */
}

.owl-item {
  display: flex; /* Makes each item a flex container */
  align-items: stretch; /* Ensures child content stretches */
}

.owl-item {
  flex: 1; /* Makes direct children of .owl-item take full height */
  display: flex; /* Ensures children can align their content */
  flex-direction: column; /* For vertical alignment */
}
/* Center item zoom effect */
.second-carousel .owl-item.center .item {
  transform: scale(1.1); /* Zoom effect */
  transition: transform 0.5s ease-in-out; /* Smooth animation */
}

/* Optional: Add shadow for visual enhancement */
.second-carousel .owl-item.center .item {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px; /* Smooth rounded edges */
}

/* Center item zoom effect */
.second-carousel .owl-item.center .item {
  transform: scale(1.1); /* Zoom effect */
  transition: transform 0.5s ease-in-out; /* Smooth animation */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Optional shadow */
  border-radius: 10px; /* Rounded edges */
}

/* Owl Carousel arrows */
.second-carousel .owl-nav {
  position: absolute;
  top:auto;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none; /* Ensure you can click the arrows */
}

.second-carousel .owl-nav .custom-arrow {
  background: #1b2847; /* Background color for arrows */
  width: 30px; /* Set width */
  height: 50px; /* Set height */
  font-size: 24px; /* Increase font size for the arrow */
  color: #fffdfd; /* Text color */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
  pointer-events: all; /* Enable clicking */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px; /* Slightly rounded corners for square look */
  margin-bottom: 25px;
  margin-top: 15px;
}

.second-carousel .owl-nav .custom-arrow:hover {
  background: #333; /* Hover background color */
  color: #fff; /* Hover text color */
  transform: scale(1.1); /* Slightly larger on hover */
}

.second-carousel .owl-nav .left-arrow {

  margin-right: auto; /* Align to the left */
}

.second-carousel .owl-nav .right-arrow {

  margin-left: auto; /* Align to the right */
}

/* Owl Carousel arrows */
.card_row2 .owl-nav {
  position: absolute;
  top:auto;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none; /* Ensure you can click the arrows */
}

.card_row2 .owl-nav .custom-arrow {
  background: #1b2847; /* Background color for arrows */
  width: 30px; /* Set width */
  height: 50px; /* Set height */
  font-size: 24px; /* Increase font size for the arrow */
  color: #fffdfd; /* Text color */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
  pointer-events: all; /* Enable clicking */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px; /* Slightly rounded corners for square look */
  margin-bottom: 25px;
  margin-top: 15px;
}

.card_row2 .owl-nav .custom-arrow:hover {
  background: #333; /* Hover background color */
  color: #fff; /* Hover text color */
  transform: scale(1.1); /* Slightly larger on hover */
}

.card_row2 .owl-nav .left-arrow {
  margin-left: auto; /* Align to the right */
}

.card_row2 .owl-nav .right-arrow {
  margin-right: auto; /* Align to the left */
}

/* Owl Carousel arrows */
.card_row3 .owl-nav {
  position: absolute;
  top:auto;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none; /* Ensure you can click the arrows */
}

.card_row3 .owl-nav .custom-arrow {
  background: #1b2847; /* Background color for arrows */
  width: 30px; /* Set width */
  height: 50px; /* Set height */
  font-size: 24px; /* Increase font size for the arrow */
  color: #fffdfd; /* Text color */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
  pointer-events: all; /* Enable clicking */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px; /* Slightly rounded corners for square look */
  margin-bottom: 25px;
  margin-top: 15px;
}

.card_row3 .owl-nav .custom-arrow:hover {
  background: #333; /* Hover background color */
  color: #fff; /* Hover text color */
  transform: scale(1.1); /* Slightly larger on hover */
}

.card_row3 .owl-nav .left-arrow {
  margin-left: auto; /* Align to the right */
}

.card_row3 .owl-nav .right-arrow {
  margin-right: auto; /* Align to the left */
}

/* Owl Carousel arrows */
.second-carousel .owl-nav {
  position: absolute;
  top:auto;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none; /* Ensure you can click the arrows */
}

.second-carousel .owl-nav .custom-arrow {
  background: #1b2847; /* Background color for arrows */
  width: 30px; /* Set width */
  height: 50px; /* Set height */
  font-size: 24px; /* Increase font size for the arrow */
  color: #fffdfd; /* Text color */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow */
  pointer-events: all; /* Enable clicking */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px; /* Slightly rounded corners for square look */
  margin-bottom: 25px;
  margin-top: 15px;
}

.second-carousel .owl-nav .custom-arrow:hover {
  background: #333; /* Hover background color */
  color: #fff; /* Hover text color */
  transform: scale(1.1); /* Slightly larger on hover */
}

.second-carousel .owl-nav .left-arrow {

  margin-right: auto; /* Align to the left */
}

.second-carousel .owl-nav .right-arrow {

  margin-left: auto; /* Align to the right */
}


/* End Servicios Consultoria */

/* client section start */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  width: auto; /* Allows flexibility in width */
  height: 300px; /* Fixed height */
  display: -webkit-box; /* Flexbox for older browsers */
  display: -ms-flexbox; /* Flexbox for IE */
  display: flex; /* Modern flexbox */
  flex-direction: column; /* Ensures vertical alignment of children */
  -webkit-box-orient: vertical; /* Older browsers */
  -webkit-box-direction: normal; /* Older browsers */
  -ms-flex-direction: column; /* Older browsers */
  margin: 20px; /* Adds spacing around boxes */
  box-sizing: border-box; /* Includes padding/margin in height/width calculations */
  position: relative; /* Prevents unexpected overlaps from `absolute` children */
}

.client_section .box .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  margin-bottom: -50px;
  margin-left: 25px;
}

.client_section .box .img-box img {
  border-radius: 100%;
}

.client_section .box .client_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.client_section .box .client_id .client_info h6 {
  font-weight: 600px;
  margin-bottom: 5px;
}

.client_section .box .client_id .client_info p {
  margin-bottom: 0;
  font-size: 15px;
  font-size: 14px;
  margin-bottom: 10px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 75px 25px 25px 25px;
}

.client_section .box .detail-box i {
  color: #00204a;
  margin-bottom: 10px;
}

.client_section .owl-carousel .owl-nav {
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}
 
.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  bottom: 0px;
  font-size: 24px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  color: #00204a;
}

/* client section end */
.info_section {
  background: linear-gradient(130deg, #23398e, #1b2847);
  color: #ffffff;
  padding: 45px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #00bbf0;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #00bbf0;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: #00bbf0;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: #007fa4;
}

/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: center;
}

.footer_section p {
  color: #00204a;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

    /* Products Section */
    .product_section .heading_container {
      margin-bottom: 35px;
    }

    .product_section .box {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 45px;
      background-color: #f8f9fa;
      padding: 30px 20px;
      border-radius: 10px;
      transition: all 0.3s;
      border: 1px solid #e1e1e1;
    }

    .product_section .box:hover {
      background-color: #00204a;
      color: #ffffff;
      box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
      border-color: #00204a;
    }

    .product_section .box .img-box {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 150px;
      width: 100%;
      margin-bottom: 15px;
      overflow: hidden;
      border-radius: 5px;
      background: #fff;
    }

    .product_section .box .img-box img {
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
    }

    .product_section .box h5 {
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    .product_section .box p {
      margin-bottom: 15px;
      font-size: 0.9rem;
    }

    .product_section .box a {
      color: #00bbf0;
      font-weight: 600;
    }

    .product_section .box:hover a {
      color: #ffffff;
    }

    */
    body {
      font-family: 'Poppins', sans-serif;
      color: #0c0c0c;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    .layout_padding {
      padding: 90px 0;
    }

    .layout_padding2 {
      padding: 75px 0;
    }

    .heading_container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .heading_container h2 {
      position: relative;
      font-weight: bold;
      margin-bottom: 0;
    }

    .heading_container h2 span {
      color: #00bbf0;
    }

    .heading_container p {
      margin-top: 10px;
      margin-bottom: 0;
    }

    .heading_container.heading_center {
      align-items: center;
      text-align: center;
    }

    a {
      text-decoration: none;
    }

    a:hover {
      color: initial;
    }
/* Slider Section Styles (Agregado para el carrusel) */
    .slider_section2 {
      position: relative;
      background-color: #ffffff;
      color: #00204a;
      padding-bottom: 75px;
    }

    .slider_section2 .row {
      align-items: center;
    }
   /* MODIFICACIÓN: Altura constante para evitar saltos */
    .slider_section2 .carousel-item {
      min-height: 600px; /* Altura mínima fija */
    }
    
    .slider_section2 .carousel-item .container,
    .slider_section2 .carousel-item .row {
       min-height: 600px; /* Heredar altura para centrado vertical */
       height: 100%;
    }
    .slider_section2 .img-box {
      display: flex;
      justify-content: center;
      padding: 20px;
    }

    .slider_section2 .img-box img {
      width: 100%;
      max-width: 450px;
    }

    .slider_section2 .detail-box h1 {
      font-weight: bold;
      font-size: 3.5rem;
      margin-bottom: 15px;
    }

    .slider_section2 .detail-box p {
      margin-bottom: 25px;
    }

    .slider_section2 .detail-box .btn-box {
      display: flex;
      flex-wrap: wrap;
    }

    .slider_section2 .detail-box .btn-box a {
      display: inline-block;
      padding: 10px 35px;
      background-color: #00bbf0;
      color: #ffffff;
      border-radius: 5px;
      transition: all 0.3s;
      border: 1px solid #00bbf0;
      margin-right: 10px;
      margin-bottom: 10px;
    }

    .slider_section2 .detail-box .btn-box a:hover {
      background-color: transparent;
      color: #00bbf0;
    }

    .slider_section2 .carousel_btn-box {
      display: flex;
      justify-content: space-between;
      width: 110px;
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }

    .slider_section2 .carousel_btn-box .carousel-control-prev,
    .slider_section2 .carousel_btn-box .carousel-control-next {
      position: static;
      width: 45px;
      height: 45px;
      background-color: #ffffff;
      border-radius: 100%;
      opacity: 1;
      color: #00204a;
      font-size: 18px;
      transition: all 0.3s;
    }
    .slider_section2 .detail-box .btn-box .btn2 {
      display: inline-block;
      padding: 10px 35px;
      background-color: #00bbf0;
      color: #000000;
      border-radius: 5px;
      transition: all 0.3s;
      border: 1px solid #00bbf0;
      margin-right: 10px;
      margin-bottom: 10px;
}

    .slider_section2 .carousel_btn-box .carousel-control-prev:hover,
    .slider_section2 .carousel_btn-box .carousel-control-next:hover {
      background-color: #00bbf0;
      color: #ffffff;
    }
        /* Specs Section (Nueva sección acordeón) */
    .specs_section {
      background-color: #f9f9f9;
    }
    
    .specs_section .accordion .card3 {
      border: none;
      margin-bottom: 10px;
      border-radius: 5px !important;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .specs_section .accordion .card-header3 {
      background-color: #fff;
      border-bottom: 1px solid #eee;
      padding: 0;
    }

    .specs_section .accordion .btn-link {
      display: block;
      width: 100%;
      text-align: left;
      color: #00204a;
      font-weight: 600;
      padding: 15px 20px;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s;
    }

    .specs_section .accordion .btn-link:hover {
      color: #00bbf0;
      background-color: #f0f8ff;
    }
    
    .specs_section .accordion .btn-link:focus {
      text-decoration: none;
    }
    
    .specs_section .accordion .card-body {
      padding: 20px;
      background-color: #fff;
      color: #555;
    }

    .specs_table {
      width: 100%;
      margin-bottom: 0;
    }
    
    .specs_table th {
      width: 30%;
      background-color: #f8f9fa;
      font-weight: 600;
      color: #00204a;
    }

    .centrado {
      text-align: center;
    }
.btn-contacto {
  /* Layout & Spacing */
  display: inline-block;
  padding: 8px 20px;       /* Removed duplicate */
  text-align: center;
  
  /* Typography */
  color: #45c9f9 !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;   /* Ensures no underline if it's an <a> tag */

  /* Appearance */
  border: 1px solid #45c9f9; /* Optional: Adds a border to make it look like a button */
  border-radius: 5px;      /* Removed duplicate */
  background-color: transparent; 

  /* Animation */
  transition: all 0.3s ease-in-out;
  cursor: pointer;         /* Shows hand icon on hover */
}

/* Suggested Hover State */
.btn-contacto:hover {
  background-color: #45c9f9;
  color: #ffffff !important; /* Changes text to white on hover */
  transform: translateY(-2px); /* Slight lift effect */
  
}
.btn-detalles {
/* Layout & Spacing */
  display: inline-block;
  padding: 8px 20px;       /* Removed duplicate */
  text-align: center;
  
  /* Typography */
  color: #45c9f9 !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;   /* Ensures no underline if it's an <a> tag */

  /* Appearance */
  border: 1px solid #45c9f9; /* Optional: Adds a border to make it look like a button */
  border-radius: 5px;      /* Removed duplicate */
  background-color: transparent; 

  /* Animation */
  transition: all 0.3s ease-in-out;
  cursor: pointer;         /* Shows hand icon on hover */
}

  .btn-detalles:hover {
      background-color: #007fa4;
      text-decoration: none;
} 
  /* Service Section & Cards - MODIFICADO PARA IMÁGENES LATERALES */
    .service_section_b2 .box-b2 {
      margin-top: 25px;
      background-color: var(--white);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      text-align: center;
      transition: all 0.3s;
      height: 100%; 
      /* Cambio a Row para poner imágenes a los lados */
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    /* Contenedor central para el icono original y el texto */
    .service_section_b2 .main-content {
      flex: 1; /* Ocupa el espacio central */
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Nuevos estilos para las imágenes laterales */
    .service_section_b2 .side-img-box-b2 {
      flex: 0 0 25%; /* Ancho fijo aprox para las imágenes laterales */
      max-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .service_section_b2 .side-img-box-b2 img {
      width: 100%;
      height: auto;
      max-height: 250px;
      object-fit: contain;
      border-radius: 8px;
    }

    .service_section_b2 .box-b2 .detail-box-b2 {
      width: 100%;
      max-width: 800px;
    }

    .service_section_b2 .box-b2 .img-box-b2 {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      margin-bottom: 15px;
      width: 100%;
    }

    .service_section_b2 .box-b2 .img-box-b2 img {
      max-width: 80px;
      max-height: 80px;
      width: auto;
    }

    .service_section_b2 .box-b2 h5 {
      font-weight: bold;
      margin-bottom: 15px;
      color: var(--primary-color);
      font-size: 1.5rem;
    }

    .service_section_b2 .box-b2 p {
        flex-grow: 1;
    }

    /* Custom Buttons (From your request) */
    .service_action_btns-b2 {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }

    .service_action_btns-b2 a {
      display: inline-block;
      padding: 8px 25px;
      background-color: var(--primary-color);
      color: var(--white) !important;
      border-radius: 5px;
      transition: all 0.3s;
      font-size: 14px;
      border: 1px solid var(--primary-color);
    }

    .service_action_btns-b2 a:hover {
      background-color: transparent;
      color: var(--primary-color) !important;
    }

    .service_action_btns-b2 a.btn-secondary-custom {
      background-color: var(--secondary-color);
      border: 1px solid var(--secondary-color);
    }

    .service_action_btns-b2 a.btn-secondary-custom:hover {
      background-color: transparent;
      color: var(--secondary-color) !important;
    }

.service_section_b2 .owl-carousel .owl-nav .owl-prev,
.service_section_b2 .owl-carousel .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background-color: #00204a;
        color: #ffffff !important;
        border-radius: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 18px !important;
    }
    .owl-prev { left: -25px; }
    .owl-next { right: -25px; }


.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  color: #00204a;
}

