@charset "UTF-8";
@import url("font-awesome.min.css");
body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

.layout_padding {
  padding-top: 30px;
  padding-bottom: 30px;
}

.layout_padding2 {
  padding-top: 30px;
  padding-bottom: 30px;
}

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

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

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

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

.heading_container {
  display: flex;
  flex-direction: column;
}
.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.heading_container h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #F37135;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.heading_container.heading_center {
  align-items: center;
  text-align: center;
}
.heading_container.heading_center h2::before {
  left: 50%;
  transform: translateX(-50%);
}

.card-title {
  font-weight: bold;
  color: #212529;
}

/*header section*/
.hero_area {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: flex;
  justify-content: center;
}
.hero_bg_box .img-box {
  width: 100%;
}
.hero_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
  transition: opacity 0.5s ease-in-out;
}
.hero_bg_box .video-box {
  width: 100%;
  height: 100%;
}
.hero_bg_box .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}
.hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.35));
}

.sub_page .hero_area {
  min-height: auto;
}
.sub_page .header_section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}
.sub_page .header_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}
.sub_page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 35px 15px 10px 15px !important;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section {
  padding: 0;
}
.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}
.header_section .nav_container {
  margin: 0 auto;
}

.header_top {
  background-color: #212529;
  padding: 15px 0;
}
.header_top .contact_link-container {
  display: flex;
  justify-content: space-between;
}
.header_top .contact_link-container a {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
}
.header_top .contact_link-container a i {
  font-size: 20px;
  color: #F37135;
  margin-right: 5px;
}

#navbarSupportedContent {
  justify-content: space-between;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
}
.custom_nav-container .navbar-nav {
  margin-left: auto;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 0;
  padding: 35px 15px 10px 15px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s;
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  background-color: #F37135;
}

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

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

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

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar-brand img {
  max-height: 50px;
  width: auto;
  height: auto;
}
.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
}

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

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 15px;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  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;
  border-radius: 15px;
  top: -10px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span::before, .custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}
.slider_section .row {
  align-items: center;
}
.slider_section .detail-box {
  width: 100%;
  margin: 0 auto;
}
.slider_section .detail-box h1 {
  text-transform: uppercase;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
}
.slider_section .detail-box h1 span {
  color: #F37135;
}
.slider_section .detail-box p {
  margin-top: 25px;
}
.slider_section .detail-box .btn-box {
  display: flex;
  margin-top: 30px;
}
.slider_section .detail-box .btn-box a {
  width: 180px;
  text-align: center;
  margin: 5px;
}
.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 10px 35px;
  background-color: #ffffff;
  color: #000000;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.slider_section .detail-box .btn-box .btn-2 {
  display: inline-block;
  padding: 10px 35px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.slider_section .detail-box .btn-box .btn-2:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.slider_section .img-box {
  display: flex;
}
.slider_section .img-box img {
  width: 100%;
}
.slider_section .idicator_container {
  position: relative;
}
.slider_section ol.carousel-indicators {
  margin: 0;
  bottom: -75px;
  justify-content: flex-end;
}
.slider_section ol.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  background-color: #F37135;
  opacity: 1;
  border: none;
  margin: 0 4px;
}
.slider_section ol.carousel-indicators li.active {
  background-color: #ffffff;
}

.about_section .row {
  align-items: center;
}
.about_section .img_container .img-box img {
  width: 100%;
}
.about_section .detail-box {
  background-color: #ffffff;
  padding: 45px 25px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  margin-left: -45px;
}
.about_section .detail-box p {
  margin-top: 5px;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.about_section .detail-box a {
  text-transform: uppercase;
}
.about_section .btn-box {
  display: flex;
  margin-top: 15px;
}
.about_section .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.about_section .btn-box a:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.about_section .btn-box a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}

.service_section {
  background-color: #212529;
}
.service_section .heading_container {
  color: #ffffff;
}
.service_section .box {
  background-color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  margin-top: 45px;
}
.service_section .box .img-box svg {
  width: 75px;
  height: auto;
  fill: #212529;
}
.service_section .box .detail-box {
  margin-top: 25px;
}
.service_section .box .detail-box h6 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service_section .box .detail-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.service_section .box .detail-box a:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.service_section .box .detail-box a {
  margin-top: 10px;
}
.service_section .box .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.service_section .box .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.service_section .box .btn-box a:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.service_section .box .btn-box a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}
.service_section .card .card-body .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.service_section .card .card-body .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.service_section .card .card-body .btn-box a:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.service_section .card .card-body .btn-box a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}
.service_section .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.service_section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
}
.service_section .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: #F37135;
  border-radius: 50%;
  left: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_section .carousel-control:hover {
  background-color: #F37135;
  transform: translateY(-50%) scale(1.1);
  text-decoration: none;
}
.service_section .carousel-control:focus {
  opacity: 0.6;
  outline: none;
  text-decoration: none;
  box-shadow: none;
}
.service_section .carousel-control {
  /* cuando está enfocado PERO el mouse pasa encima */
}
.service_section .carousel-control:focus:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.service_section .carousel-control-next {
  left: initial;
  right: -80px;
}
.service_section .carousel-control-prev {
  left: -80px;
}
.service_section .carousel-indicators {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 100%;
}
.service_section .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
  opacity: 0.7;
  cursor: pointer;
}
.service_section .carousel-indicators li.active {
  background-color: #F37135;
  transform: scale(1.3);
  opacity: 1;
}
.service_section .carousel-indicators li:hover {
  opacity: 1;
  background-color: #F37135;
}

.service_banner_section {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.service_banner_section .service_banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.service_banner_section .service_banner_bg .img-box {
  width: 100%;
  height: 100%;
}
.service_banner_section .service_banner_bg .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_banner_section .service_banner_bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(33, 37, 41, 0.8), rgba(243, 113, 53, 0.6));
}
.service_banner_section .service_banner_content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
}
.service_banner_section .service_banner_content .breadcrumb-nav {
  margin-bottom: 20px;
  font-size: 16px;
}
.service_banner_section .service_banner_content .breadcrumb-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0 5px;
  transition: all 0.3s ease;
}
.service_banner_section .service_banner_content .breadcrumb-nav a:hover {
  color: #F37135;
}
.service_banner_section .service_banner_content .breadcrumb-nav .separator {
  color: #F37135;
  margin: 0 10px;
  font-weight: bold;
  font-size: 18px;
}
.service_banner_section .service_banner_content .service_title {
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}
@media (max-width: 768px) {
  .service_banner_section .service_banner_content .service_title {
    font-size: 2.2rem;
  }
}
.service_banner_section .service_banner_content .service_description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}
@media (max-width: 768px) {
  .service_banner_section .service_banner_content .service_description {
    font-size: 1rem;
    padding: 0 20px;
  }
}

.service_detail_section .characteristics-section {
  background-color: #212529;
  padding: 60px 0;
  margin: 30px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.service_detail_section .characteristics-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.service_detail_section .detail-box .section-subtitle {
  color: #F37135;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service_detail_section .detail-box .main-question {
  color: #212529;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 25px;
  line-height: 1.3;
}
.service_detail_section .detail-box h3, .service_detail_section .detail-box h4 {
  color: #212529;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.service_detail_section .detail-box h3 {
  font-size: 28px;
  border-bottom: 3px solid #F37135;
  padding-bottom: 10px;
  display: inline-block;
}
.service_detail_section .detail-box h4 {
  font-size: 20px;
  color: #F37135;
}
.service_detail_section .detail-box h5 {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.service_detail_section .detail-box p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}
.service_detail_section .detail-box .sectors-list {
  list-style: none;
  padding: 0;
}
.service_detail_section .detail-box .sectors-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
  color: #444;
}
.service_detail_section .detail-box .sectors-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #F37135;
  font-weight: bold;
}
.service_detail_section .detail-box .sectors-list li:last-child {
  border-bottom: none;
}
.service_detail_section .detail-box .benefits-box {
  margin-top: 20px;
  padding: 20px;
  background-color: #f8f9fa;
  border-left: 4px solid #F37135;
  border-radius: 5px;
}
.service_detail_section .detail-box .benefits-box h5 {
  color: #212529;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}
.service_detail_section .detail-box .benefits-box .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service_detail_section .detail-box .benefits-box .benefits-list li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  color: #555;
  font-size: 14px;
}
.service_detail_section .detail-box .benefits-box .benefits-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #F37135;
  font-weight: bold;
}
.service_detail_section .row {
  display: flex;
  flex-wrap: wrap;
}
.service_detail_section .row .col-lg-4, .service_detail_section .row .col-md-6 {
  display: flex;
  margin-bottom: 30px;
}
.service_detail_section .box {
  background-color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.service_detail_section .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
}
.service_detail_section .box .img-box {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  flex-shrink: 0;
}
.service_detail_section .box .img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}
.service_detail_section .box:hover .img-box img {
  transform: scale(1.05);
}
.service_detail_section .box .detail-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.service_detail_section .box .detail-box h5 {
  color: #212529;
  margin-bottom: 15px;
  flex-shrink: 0;
}
.service_detail_section .box .detail-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}
.service_detail_section .btn-box {
  display: flex;
  margin-top: 15px;
}
.service_detail_section .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.service_detail_section .btn-box a:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.service_detail_section .btn-box a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}
.service_detail_section .btn-box .btn-contact {
  display: inline-block;
  padding: 12px 40px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.service_detail_section .btn-box .btn-contact:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.service_detail_section .btn-box .btn-contact {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}
.service_detail_section .btn-box .btn-services {
  display: inline-block;
  padding: 12px 40px;
  background-color: #ffffff;
  color: #212529;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.service_detail_section .btn-box .btn-services:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.service_detail_section .btn-box .btn-services {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #212529;
}
.service_detail_section .img-fluid {
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
.service_detail_section .service_ideal .ideal-badge {
  background-color: rgba(243, 113, 53, 0.1);
  color: var(--wd-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border-left: 4px solid var(--wd-primary);
}

.service_ideal .ideal-badge {
  background-color: rgba(243, 113, 53, 0.1);
  color: #F37135;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border-left: 4px solid #F37135;
}
.service_ideal .icon-color {
  color: #F37135;
  font-size: 30px;
}

.characteristics-section {
  background-color: #212529;
  padding: 60px 0;
  margin: 30px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.characteristics-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.characteristics-section .detail-box .section-subtitle {
  color: #F37135;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.characteristics-section .detail-box .main-question {
  color: #ffffff;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 25px;
  line-height: 1.3;
  text-transform: uppercase;
  border-bottom: 3px solid #F37135;
  padding-bottom: 10px;
  display: inline-block;
}
.characteristics-section .detail-box h5 {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}
.characteristics-section .box {
  background-color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.characteristics-section .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
}
.characteristics-section .box .img-box {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  flex-shrink: 0;
}
.characteristics-section .box .img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}
.characteristics-section .box:hover .img-box img {
  transform: scale(1.05);
}
.characteristics-section .box .detail-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.characteristics-section .box .detail-box h5 {
  color: #212529;
  margin-bottom: 15px;
  flex-shrink: 0;
}
.characteristics-section .box .detail-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}

.application-section .section-title {
  color: #F37135;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.application-section .application-icon {
  flex: 0 0 80px;
  height: 70px;
  background-color: rgba(243, 113, 53, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.application-section .application-icon i {
  color: #F37135;
  font-size: 2rem;
}
.application-section .main-question {
  color: #212529;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 25px;
  line-height: 1.3;
  text-transform: uppercase;
  border-bottom: 3px solid #F37135;
  padding-bottom: 10px;
  display: inline-block;
}
.application-section h4 {
  color: #212529;
  font-weight: bold;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 20px;
}

.client_section {
  text-align: center;
}
.client_section #carouselExampleControls {
  padding: 0 10%;
}
.client_section .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 45px;
}
.client_section .box .img-box {
  width: 145px;
}
.client_section .box .img-box img {
  width: 100%;
}
.client_section .box .detail-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.client_section .box .detail-box h4 {
  font-weight: bold;
  font-size: 18px;
  padding: 0 10px;
  border-bottom: 1px solid #ffffff;
}
.client_section .box .detail-box p {
  margin-top: 10px;
}
.client_section .carousel_btn-box {
  display: flex;
  justify-content: center;
}
.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-color: #212529;
  color: #ffffff;
  border-radius: 100%;
  transform: translateY(-50%);
  font-size: 18px;
}
.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #F37135;
}
.client_section .carousel-control-prev {
  left: 0;
}
.client_section .carousel-control-next {
  left: initial;
  right: 0;
}

/* contact section */
.contact_section {
  position: relative;
  color: #ffffff;
}
.contact_section .row {
  align-items: center;
}
.contact_section .contact_form-container {
  margin-top: 35px;
}
.contact_section .contact_form-container input {
  border: none;
  outline: none;
  color: #000000;
  height: 45px;
  width: 100%;
  margin: 15px 0;
  padding-left: 15px;
  background-color: #ffffff;
}
.contact_section .contact_form-container input::placeholder {
  color: #000000;
  text-transform: uppercase;
}
.contact_section .contact_form-container input.message_input {
  height: 120px;
}
.contact_section .contact_form-container .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.contact_section .contact_form-container button {
  display: inline-block;
  padding: 10px 60px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.contact_section .contact_form-container button:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.contact_section .contact_form-container button {
  text-transform: uppercase;
  font-weight: bold;
}

.contact_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_bg_box .img-box {
  width: 100%;
}
.contact_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
}
.contact_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
}

/* end contact section */
.team_section .box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  position: relative;
}
.team_section .box .img-box {
  width: 100%;
}
.team_section .box .img-box img {
  width: 100%;
}
.team_section .box .detail-box {
  position: absolute;
  width: 100%;
  color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  bottom: 0;
  background-color: rgba(33, 37, 41, 0.75);
}
.team_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.team_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.team_section .btn-box a:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}

/* footer section*/
.footer_section {
  font-weight: 500;
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: #101010;
}

.footer_section p {
  color: rgba(254, 254, 255, 0.7);
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: rgba(254, 254, 255, 0.7);
}

/* end footer section*/
/* Estilos para uniformizar las imágenes de las tarjetas de servicio */
.service_section .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service_section .service-card .card-img-top {
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.service_section .service-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service_section .service-card .card-body .btn-box {
  margin-top: auto;
}

/* Estilos para Certificaciones */
.certificaciones-section {
  background-color: #212529;
}
.certificaciones-section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.certificaciones-section .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #F37135;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.certificaciones-section .btn-box a:hover {
  background-color: transparent;
  border-color: #F37135;
  color: #F37135;
}
.certificaciones-section .btn-box a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
}

.certificaciones-section .heading_container h2 {
  color: #ffffff;
}

.certificaciones-section .heading_container h2::before {
  background-color: #F37135;
}

.certificaciones-section .section-description {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
}

.detalles-certificaciones-info .alert {
  background-color: #212529;
  color: #F37135;
  border: none;
  border-radius: 10px;
}
.detalles-certificaciones-info .alert i {
  font-size: 20px;
  margin-right: 10px;
  color: #F37135;
}
.detalles-certificaciones-info .alert p {
  color: #ffffff !important;
  margin: 0;
  font-size: 16px;
}

.breadcrumb-nav {
  margin-bottom: 20px;
  font-size: 16px;
}
.breadcrumb-nav a {
  color: #F37135;
  text-decoration: none;
  font-weight: 500;
  padding: 0 5px;
  transition: all 0.3s ease;
}
.breadcrumb-nav a:hover {
  color: #212529;
}
.breadcrumb-nav .separator {
  color: #F37135;
  margin: 0 10px;
  font-weight: bold;
  font-size: 18px;
}

.cert-badge {
  background: #ffffff;
  border-radius: 15px;
  padding: 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid transparent;
}

.cert-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #F37135;
}

.cert-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;
}

.cert-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-numero {
  font-size: 18px;
  font-weight: 700;
  color: #212529;
  background-color: #F37135;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  min-width: 60px;
}

.cert-separator {
  height: 2px;
  background: linear-gradient(90deg, transparent, #F37135, transparent);
  margin: 40px 0;
}

.cert-message {
  text-align: center;
  background: linear-gradient(135deg, #212529 0%, #343a40 100%);
  padding: 30px;
  border-radius: 15px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cert-message i {
  font-size: 2.5rem;
  color: #F37135;
  margin-bottom: 20px;
  display: block;
}

.cert-message p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.info_section {
  background-color: #101010;
  color: #ffffff;
  padding: 75px 0 10px 0;
}

.info_section .row > div {
  margin-bottom: 25px;
}

.info_section h5 {
  margin-bottom: 25px;
  font-size: 24px;
}

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

.info_section .info_logo .navbar-brand {
  padding: 0;
  margin-bottom: 20px;
}

.info_section .info_logo .navbar-brand img {
  max-width: 180px;
  height: auto;
}

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

.info_section .info_links ul {
  padding: 0;
}

.info_section .info_links ul li {
  list-style-type: none;
}

.info_section .info_links ul li a {
  color: #ffffff;
}

.info_section .info_contact {
  display: flex;
  flex-direction: column;
}

.info_section .info_contact a {
  color: #ffffff;
  margin-bottom: 10px;
}

.info_section .info_contact a i {
  font-size: 20px;
  margin-right: 5px;
}

.info_section .info_form form input {
  outline: none;
  border: none;
  width: 100%;
  padding: 7px 10px;
  border-radius: 30px;
}

.info_section .info_form form button {
  padding: 8px 35px;
  outline: none;
  border: none;
  color: #ffffff;
  background: #F37135;
  border-radius: 30px;
  margin-top: 15px;
  text-transform: uppercase;
}

.info_section .info_form .social_box {
  margin-top: 25px;
  width: 100%;
  display: flex;
}

.info_section .info_form .social_box a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
  height: auto;
}

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

.card-certification .btn-certification {
  background-color: #F37135;
  color: #ffffff;
  border: 1px solid #F37135;
  padding: 10px 35px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.card-certification .btn-certification:hover {
  background-color: transparent;
  color: #F37135;
}
.card-certification .btn-certification:focus, .card-certification .btn-certification:active {
  outline: none;
  box-shadow: none;
  background-color: transparent;
  color: #F37135;
}
.card-certification .bg-primary {
  background-color: #F37135 !important;
}
.card-certification .text-primary {
  color: #F37135 !important;
}

.mision-vision-section {
  background-color: #212529;
}
.mision-vision-section .section-title {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 40px;
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}
.mision-vision-section .section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 7px;
  background-color: #F37135;
  border-radius: 10px;
}
.mision-vision-section .mision-vision-card {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.mision-vision-section .mision-vision-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.mision-vision-section .mision-vision-card i {
  font-size: 3.5rem;
  color: #F37135;
  margin-bottom: 20px;
  display: block;
}
.mision-vision-section .mision-vision-card h3 {
  color: #212529;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 24px;
}
.mision-vision-section .mision-vision-card p {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

.valores-section .valores-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid transparent;
}
.valores-section .valores-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #F37135;
}
.valores-section .valores-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F37135;
  padding: 15px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  color: #ffffff;
}
.valores-section .valores-titulo {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #212529;
}
.valores-section .valores-descripcion {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}
.valores-section .section-title {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.valores-section .section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 7px;
  background-color: #F37135;
  border-radius: 10px;
}

.section-porque-elegirnos .icon-circle {
  background-color: #F37135;
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: 0.3s;
}
.section-porque-elegirnos .icon-circle:hover {
  background-color: #212529;
}
.section-porque-elegirnos .icon-circle:hover i {
  color: #F37135;
}
.section-porque-elegirnos .icon-circle:hover {
  transform: scale(1.05);
}
.section-porque-elegirnos .icon-circle i {
  color: #212529;
  transition: 0.3s;
}
.section-porque-elegirnos .title-porque-elegirnos {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.section-porque-elegirnos .title-porque-elegirnos::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  transform: translateX(-50%);
  width: 100px;
  height: 7px;
  background-color: #F37135;
  border-radius: 10px;
}
.section-porque-elegirnos .icon-quote {
  font-size: 40px;
  opacity: 0.5;
  color: #F37135;
  margin-bottom: 15px;
}

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