@charset "UTF-8";
/* Coolors Exported Palette - https://coolors.co/fff5eb-f7931c-fcce9c-0d4f7e-f5f5f5 */
/* SCSS HEX */
/* SCSS HSL */
/* SCSS RGB */
/* SCSS Gradient */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: rgb(13, 79, 126);
  background-color: rgb(245, 245, 245);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth !important;
}

.header_bottom.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: #fff; /* Ajusta según tu diseño */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Opcional: sombra para el header fijo */
}

.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: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
}
.heading_container h2 span {
  color: rgb(247, 147, 28);
}
.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}
.heading_container.heading_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;
  box-shadow: none;
}

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

.hero_area2 {
  position: relative;
  display: flex;
  flex-direction: column;
}

.sub_page .hero_area {
  min-height: auto;
}
.sub_page .header_section {
  margin-top: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.header_section .header_top {
  padding: 15px 0;
  background-color: rgb(13, 79, 126);
}
.header_section .header_top .contact_nav {
  display: flex;
  justify-content: space-between;
}
.header_section .header_top .contact_nav a {
  color: rgb(245, 245, 245);
  display: flex;
  font-size: 15px;
}
.header_section .header_top .contact_nav a i {
  margin-right: 5px;
  border-radius: 100%;
  background-color: rgb(245, 245, 245);
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(252, 206, 156);
}
.header_section .header_top .contact_nav a:hover i {
  color: rgb(247, 147, 28);
}
.header_section .header_bottom {
  background-color: rgb(245, 245, 245);
  padding: 0px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header_section .header_bottom .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}
.header_section .header_bottom .fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: rgb(245, 245, 245);
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: rgb(13, 79, 126);
}

.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: rgb(13, 79, 126);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  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: rgb(247, 147, 28);
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: rgb(13, 79, 126);
}
.custom_nav-container .nav_search-btn:hover {
  color: rgb(13, 79, 126);
}

.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: 35px;
  height: 4px;
  background-color: rgb(13, 79, 126);
  margin: 7px 0;
  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: rgb(13, 79, 126);
  top: -10px;
  border-radius: 5px;
  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;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-1 {
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-2 {
  display: none;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] .s-3 {
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded=false] .s-3 {
  transform: none;
}

/*end header section*/
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.slider_section .slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.slider_section .slider_bg_box img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
.slider_section .slider_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(37, 37, 37, 0.9), rgba(37, 37, 37, 0.7));
}
.slider_section .row {
  align-items: center;
}
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}
.slider_section .detail-box {
  color: rgb(247, 147, 28);
}
.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: rgb(245, 245, 245);
}
.slider_section .detail-box p {
  color: #fefefe;
  font-size: 14px;
}
.slider_section .detail-box .btn-box {
  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: rgb(247, 147, 28);
  color: rgb(245, 245, 245);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}
.slider_section .detail-box .btn-box .btn1:hover {
  background-color: #c06b07;
}
.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: rgb(13, 79, 126);
  color: rgb(245, 245, 245);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
}
.slider_section .detail-box .btn-box .btn2:hover {
  background-color: #062439;
}
.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}
.slider_section .carousel-indicators li {
  background-color: rgb(245, 245, 245);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}
.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: rgb(247, 147, 28);
}

.service_section {
  position: relative;
}
.service_section .box {
  display: flex;
  margin-top: 45px;
  background-color: #f8f8f9;
  padding: 20px;
  border-radius: 5px;
}
.service_section .box .img-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 125px;
  min-width: 75px;
  height: 75px;
  margin-right: 25px;
}
.service_section .box .img-box img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s;
}
.service_section .box .img-box i {
  font-size: xxx-large;
  color: rgb(247, 147, 28);
}
.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}
.service_section .box .detail-box a {
  color: rgb(247, 147, 28);
  font-weight: 600;
}
.service_section .box .detail-box a:hover {
  color: rgb(247, 147, 28);
}
.target_section {
  position: relative;
}
.target_section .service_container .container .row {
  background-color: rgb(252, 206, 156);
  margin-top: 15px;
}
.target_section .box {
  display: flex;
  padding: 20px;
  border-radius: 5px;
}
.target_section .box i {
  font-size: xxx-large;
  color: rgb(247, 147, 28);
}
.target_section .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}
.target_section .detail-box h6 {
  font-weight: bold;
}
.target_section .detail-box a {
  color: rgb(247, 147, 28);
  font-weight: 600;
}
.target_section .detail-box a:hover {
  color: rgb(247, 147, 28);
}
.about_section .row {
  align-items: center;
}
.about_section .img-box {
  position: relative;
}
.about_section .img-box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.about_section .img-box::before, .about_section .img-box::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 70%;
  background-color: rgb(252, 206, 156);
  z-index: 3;
}
.about_section .img-box::before {
  left: 0;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.about_section .img-box::after {
  right: 0;
  z-index: 1;
  transform: translate(50%, -50%);
}
.about_section .detail-box p {
  color: rgb(13, 79, 126);
  margin-top: 15px;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: rgb(247, 147, 28);
  color: rgb(245, 245, 245);
  border-radius: 0px;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}
.about_section .detail-box a:hover {
  background-color: #c06b07;
}

.track_section {
  position: relative;
  color: rgb(245, 245, 245);
}
.track_section .track_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.track_section .track_bg_box img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}
.track_section .track_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(37, 37, 37, 0.95), rgba(37, 37, 37, 0.55));
}
.track_section p {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 25px;
}
.track_section form {
  display: flex;
  align-items: stretch;
}
.track_section form input {
  background-color: rgb(245, 245, 245);
  border: none;
  flex: 2.5;
  outline: none;
  color: rgb(13, 79, 126);
  min-height: 42.4px;
  padding-left: 15px;
}
.track_section form input ::placeholder {
  color: rgb(245, 245, 245);
  opacity: 0.2;
}
.track_section form button {
  flex: 1;
  display: inline-block;
  padding: 9px 30px;
  background-color: rgb(247, 147, 28);
  color: rgb(245, 245, 245);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
  font-size: 15px;
  text-transform: uppercase;
}
.track_section form button:hover {
  background-color: #c06b07;
}

.client_section .client_container {
  width: 75%;
  margin-top: 45px;
}
.client_section .box {
  display: flex;
  flex-direction: column;
  margin-right: 5px;
}
.client_section .box .detail-box {
  border: 1px solid #dddddd;
  padding: 25px;
  margin: 25px;
  background-color: #f8f8f9;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.client_section .box .detail-box .name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
.client_section .box .detail-box .name h3 {
  align-self: center;
}
.client_section .box .detail-box .representante h3 {
  color: rgb(247, 147, 28);
}
.client_section .box .detail-box p a {
  color: rgb(13, 79, 126);
}
.client_section .box .detail-box p a:hover {
  color: rgb(247, 147, 28);
}
.client_section .box .client_id {
  display: flex;
  align-items: center;
}
.client_section .box .client_id .img-box {
  position: relative;
  width: 75px;
  height: 75px;
}
.client_section .box .client_id .img-box img {
  width: 100%;
}
.client_section .box .client_id .name {
  margin-left: 15px;
}
.client_section .box .client_id .name h6 {
  color: #23242a;
  font-size: 18px;
  margin-bottom: 0;
}
.client_section .box .client_id .name p {
  margin-bottom: 0;
}
.client_section .carousel-wrap {
  margin: 0 auto;
  position: relative;
}
.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: -15%;
  outline: none;
  background-color: rgb(247, 147, 28);
}
.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #161825;
}
.client_section .owl-carousel .owl-nav .owl-prev {
  top: 25%;
  background-image: url(../images/prev.png);
}
.client_section .owl-carousel .owl-nav .owl-next {
  top: calc(25% + 65px);
  background-image: url(../images/next.png);
}

gmp-advanced-marker i {
  color: rgb(247, 147, 28);
  background-color: white;
  border-radius: 50%;
  font-size: 20px;
  padding: 5px;
}

.contact_section {
  position: relative;
  padding-bottom: 90px;
}
.contact_section .heading_container {
  margin-bottom: 25px;
  text-align: start;
}
.contact_section .heading_container h2 {
  text-transform: uppercase;
}
.contact_section .form_container {
  margin-right: 15px;
}
.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.contact_section .form_container input::placeholder {
  color: rgb(247, 147, 28);
}
.contact_section .form_container input.message-box {
  height: 120px;
}
.contact_section .form_container textarea {
  width: 100%;
  border: none;
  height: 120px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.contact_section .form_container textarea::placeholder {
  color: rgb(247, 147, 28);
}
.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: rgb(247, 147, 28);
  color: rgb(245, 245, 245);
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
}
.contact_section .form_container button:hover {
  background-color: #c06b07;
}
.contact_section .map_container {
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
}
.contact_section .map_container .map {
  height: 100%;
  flex: 1;
}
.contact_section .map_container .map #googleMap {
  height: 100%;
}
.contact_section .alert button {
  background-color: unset;
}
.contact_section .alert button:hover {
  background-color: unset;
}
.contact_section .form_container .close {
  width: unset;
  color: inherit;
  padding: 0.75rem 1.25rem;
}
.contact_section .text-primary {
  color: rgb(247, 147, 28);
}

.whatsapp_buttons {
  display: flex;
  justify-content: center;
  gap: 10px; /* Espacio entre los botones */
  flex-wrap: wrap; /* Permite que los botones se ajusten en líneas nuevas si es necesario */
  margin-top: 1em;
}

.btn-wapp {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  margin: 5px; /* Espacio alrededor de cada botón */
}

.btn-wapp i {
  margin-right: 10px;
  font-size: 24px; /* Ajusta el tamaño del icono si es necesario */
}

.btn-wapp:hover {
  background-color: #1eb349;
  color: white;
}

.heading_container, .whatsapp_buttons, .form_container {
  text-align: center;
}

.contact_section {
  padding: 40px 0;
}

.form_container input, .form_container button {
  width: 100%;
  margin-bottom: 15px;
}

.cotizar_section {
  position: relative;
  padding-bottom: 90px;
}
.cotizar_section .row {
  align-items: center;
  margin-top: 5px;
}
.cotizar_section .heading_container {
  margin-bottom: 25px;
  text-align: start;
}
.cotizar_section .heading_container h2 {
  text-transform: uppercase;
}
.cotizar_section .img img {
  filter: blur(1px);
}
.cotizar_section .form_container {
  margin-right: 15px;
}
.cotizar_section .form_container input {
  width: 100%;
  border: none;
  height: 40px;
  margin-bottom: 10px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.cotizar_section .form_container input::placeholder {
  color: transparent;
}
.cotizar_section .form_container input.message-box {
  height: 120px;
}
.cotizar_section .form_container textarea {
  width: 100%;
  border: none;
  height: 120px;
  margin-bottom: 10px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
.cotizar_section .form_container textarea::placeholder {
  color: transparent;
}
.cotizar_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: rgb(247, 147, 28);
  color: rgb(245, 245, 245);
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
}
.cotizar_section .form_container button:hover {
  background-color: #c06b07;
}
.cotizar_section .form_container label {
  display: flex;
  color: rgb(247, 147, 28);
}
.cotizar_section .alert button {
  background-color: unset;
}
.cotizar_section .alert button:hover {
  background-color: unset;
}
.cotizar_section .form_container .close {
  width: unset;
  color: inherit;
  padding: 0.75rem 1.25rem;
}
.cotizar_section .text-primary {
  color: rgb(247, 147, 28);
}
.cotizar_section .form-group {
  margin-bottom: 10px;
}

.info_section {
  background-color: rgb(13, 79, 126);
  color: rgb(245, 245, 245);
  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: flex;
  flex-direction: column;
}
.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: rgb(245, 245, 245);
}
.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}
.info_section .info_contact .contact_link_box a:hover {
  color: rgb(247, 147, 28);
}
.info_section .info_social {
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}
.info_section .info_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(245, 245, 245);
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}
.info_section .info_social a:hover {
  color: rgb(247, 147, 28);
}
.info_section .info_links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.info_section .info_links a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgb(245, 245, 245);
}
.info_section .info_links a:hover {
  color: rgb(247, 147, 28);
}
.info_section form input {
  border: none;
  border-bottom: 1px solid rgb(245, 245, 245);
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: rgb(245, 245, 245);
  outline: none;
}
.info_section form input::placeholder {
  color: rgb(245, 245, 245);
}
.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: rgb(247, 147, 28);
  color: rgb(245, 245, 245);
  border-radius: 0;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}
.info_section form button:hover {
  background-color: #c06b07;
}

/* footer section*/
.footer_section {
  position: relative;
  background-color: rgb(245, 245, 245);
  text-align: center;
}
.footer_section p {
  color: rgb(247, 147, 28);
  padding: 25px 0;
  margin: 0;
}
.footer_section p a {
  color: inherit;
}

.footer-social-links {
  color: white;
}
.footer-social-links a i {
  color: white;
}

#id_captcha {
  margin-bottom: 10px;
}

.text-danger {
  margin-top: -26px;
  margin-bottom: 10px;
}

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