@charset "UTF-8";
/* CSS Document */

/* ROOT VARIABLES */
:root {
  --color-titles: #2f2b36;
  --color-blue: #0084da;
  --color-blue-dark: #256697;
  --color-blue-light: #6e96bb;
  --color-white: #ffffff;
  --color-gray: #666666;
  --color-gray-dark: #3b3b3b;
  --color-gray-light: #dddddd;
  --color-red: #e90b35;
  --font-light: "Poppins-Light", sans-serif;
  --font-regular: "Poppins-Regular", sans-serif;
  --font-medium: "Poppins-Medium", sans-serif;
  --font-semibold: "Poppins-SemiBold", sans-serif;
  --font-bold: "Poppins-Bold", sans-serif;
}

/* FONT-FACE DEFINITIONS */
@font-face {
  font-family: Poppins-Light;
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Poppins-Light.ttf) format("truetype");
}

@font-face {
  font-family: Poppins-Regular;
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Poppins-Regular.ttf) format("truetype");
}

@font-face {
  font-family: Poppins-Medium;
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Poppins-Medium.ttf) format("truetype");
}

@font-face {
  font-family: Poppins-SemiBold;
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Poppins-SemiBold.ttf) format("truetype");
}

@font-face {
  font-family: Poppins-Bold;
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Poppins-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url(../fonts/fa-light-300.woff2) format("woff2"),
    url(../fonts/fa-light-300.woff) format("woff");
}

@font-face {
  font-family: "Font Awesome 6 Pro Solid";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url(../fonts/fa-solid-900.woff2) format("woff2"),
    url(../fonts/fa-solid-900.woff) format("woff");
}

/* FONT AWESOME STYLES */
.fa-light,
.fal {
  font-weight: 300;
  font-family: "Font Awesome 6 Pro Solid";
}

.fa,
.fa-solid {
  font-weight: 900;
}

/* GLOBAL STYLES */
* {
  padding: 0;
  margin: 0;
}

/* TYPOGRAPHY */
h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.75rem;
}

h5 {
  font-size: 1.375rem;
}

/* HEADER */
header {
  position: fixed;
  z-index: 999;
  height: 70px;
  background: transparent;
  width: 100%;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  max-height: 50px;
}

li.nav-item a.nav-link {
  font-family: var(--font-medium);
  font-size: 0.875rem;
  color: var(--color-titles);
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: var(--color-blue-dark);
}

.dropdown-menu {
  border-radius: 0px;
  padding: 0.5rem;
  background-color: #ffffff;
  left: 0;
  list-style: none;
  width: 270px;
}

.dropdown-menu li {
  list-style: none;
  margin: 18px 10px;
  line-height: 1rem;
}

.dropdown-menu li a {
  font-family: var(--font-medium);
  font-size: 0.875rem;
  color: var(--color-titles);
  padding: 8px 0px;
  line-height: 1.3;
  position: relative;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  color: var(--color-blue);
}

.dropdown-menu li a.active {
  color: var(--color-blue-dark);
}

.dropdown a.select {
  color: var(--color-blue-dark) !important;
}

/* BUTTONS */
.btn-whatsapp {
  background: var(--color-blue);
  color: var(--color-white);
  height: 40px;
  font-size: 0.875rem;
  padding: 5px 20px;
  border-radius: 20px;
  font-family: var(--font-regular);
  margin-left: 1rem;
}

.btn-whatsapp:hover,
.btn-primary:hover {
  background: var(--color-blue-dark);
  color: var(--color-white);
}

.btn-primary {
  background-color: var(--color-blue);
  border-radius: 18px;
  width: 100%;
  height: 40px;
  font-family: var(--font-regular);
}

/* BANNERS */
.banner-1 {
  background: url(../img/alarmas_de_emergencia.jpg);
  background-size: cover;
  height: 700px;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-2 {
  background: url(../img/fondo-sec.svg);
  background-size: cover;
  height: 400px;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-text,
.banner-text-2 {
  height: 700px;
}

.banner-text-2 {
  height: 400px;
}

.banner-1 .banner-text h1,
.banner-2 .banner-text h1 {
  color: var(--color-blue-dark);
  font-family: var(--font-semibold);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-out forwards;
}

.banner-text p {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.8s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTIONS */
section.experience,
section.sectores,
section.partners,
section.services1 {
  margin-top: 90px;
}

section.services1 {
  margin-top: 100px;
}

section.services,
section.aplicaciones,
section.nosotros,
section.servicios {
  background: url(../img/fondo.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

section.services {
  margin-top: 70px;
}

section.services .text-content,
section.partners .text-content {
  text-align: center;
  padding-top: 60px;
}

section.partners {
  background-color: #f5f5f5;
}

/* COUNTER SECTION */
.counter-section {
  margin-top: 70px;
}

.counter-item {
  text-align: center;
}

.icon-counter i {
  font-size: 50px;
  color: var(--color-blue-light);
}

.counter-number {
  font-size: 50px;
  font-family: var(--font-semibold);
  color: var(--color-blue-dark);
}

.counter-label {
  font-size: 20px;
  font-family: var(--font-regular);
  color: var(--color-gray);
}

.borderRight {
  border-right: 1px solid #d7d7d7;
}

/* IMAGE AND CONTENT */
.image-grid {
  position: relative;
}

.image-container {
  overflow: hidden;
  border-radius: 20px;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.equipo,
.bombilla {
  margin-top: 30px;
}

.text-content {
  padding-left: 20px;
}

.text-content h6 {
  color: var(--color-red);
  font-family: var(--font-semibold);
}

.text-content h2,
.text-content h3 {
  color: var(--color-gray-dark);
  font-family: var(--font-bold);
  margin-bottom: 30px;
}

h3.text-serv {
  font-family: var(--font-bold) !important;
}

.container h3 {
  font-family: var(--font-semibold);
}

p.lead {
  font-family: var(--font-light);
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.75;
}

p.lead b {
  font-family: var(--font-semibold);
}

.signature {
  font-family: var(--font-regular);
  margin-top: 40px;
  font-size: 1em;
  color: var(--color-blue-dark);
}

.signature span {
  color: var(--color-blue-light);
}

/* CARDS AND SLIDER */
.card,
.card-serv {
  border-radius: 0px !important;
  border: 1px solid var(--color-gray-light);
}

.card {
  display: grid;
}

.card-img {
  border-radius: 0px !important;
}

.slide-content {
  padding: 20px;
}

.slide-content i {
  font-size: 50px;
  color: var(--color-blue-dark);
}

.slide-content-serv {
  padding: 15px;
}

.slide-content h5,
.slide-content-serv h6 {
  font-family: var(--font-semibold);
  color: var(--color-gray-dark);
}

.slide-content p,
.slide-content-serv p {
  font-family: var(--font-light);
  color: var(--color-gray);
  font-size: 15px;
}

.slide-content a,
.slide-content-serv a,
.card-footer a.more {
  font-family: var(--font-medium);
  color: var(--color-blue-dark);
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

a.more i {
  font-size: 13px;
}

.item-serv .imgTitle {
  height: 135px;
  text-align: center;
}

.card-body {
  padding: 15px 15px 15px 15px;
  height: 250px;
}

.card-text {
  text-align: justify;
}

.card-footer {
  width: 100%;
  height: 55px;
  border-top: none;
  background-color: transparent !important;
}

.img-serv {
  max-width: 140px;
}

#mixedSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.MS-content {
  overflow: hidden;
  display: flex;
  justify-content: center;
  transition: transform 1s ease-in-out;
}

.MS-controls {
  display: flex;
  padding: 0 15px;
  align-items: center;
  height: 50px;
  width: 100%;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 1.2s ease-in-out;
}

.swiper-slide {
  width: 33.33%;
  min-width: 200px;
  flex: 0 0 auto;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.MS-controls button {
  cursor: pointer;
  position: absolute;
  border: none;
  background-color: transparent;
  outline: 0;
  font-size: 20px;
  transition: 0.15s linear;
  height: 48px;
  width: 30px;
  line-height: 45px !important;
  top: 40%;
  transition: color 0.15s linear;
  color: var(--color-gray);
}

.MS-controls button:hover {
  color: rgba(0, 0, 0, 0.8);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: rgba(0, 0, 0, 0.8);
}

.swiper-button-prev {
  left: -8px;
}

.swiper-button-next {
  right: -8px;
}

.MS-controls .MS-right {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

#mixedSlider .MS-content .swiper-slide {
  width: 30.7%;
  padding: 0 7.5px;
  flex: 0 0 auto;
  vertical-align: top;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#mixedSlider .MS-content .item .imgTitle img {
  height: auto;
  width: 100%;
}

#mixedSlider .MS-content .item .imgTitle {
  display: flex;
}

.images-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* FOOTER */
.footer-section {
  background-color: #5b91b7;
  color: var(--color-white);
  padding: 40px 0 0px;
}

.footer-logo .logo-footer {
  max-width: 80px;
  height: auto;
}

.footer-slogan,
.footer-contact {
  font-size: 0.9rem;
  color: var(--color-white);
}

.footer-contact {
  line-height: 1.8;
  color: #ccc;
}

.footer-contact i {
  color: #d32f2f;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d32f2f;
}

.footer-bottom {
  background-color: #6f9bbc;
  padding: 15px 0px;
  font-size: 0.85rem;
  color: var(--color-white);
}

.footer-bottom p {
  margin: 0;
}

.contact-details p {
  font-family: var(--font-light);
  font-size: 14px;
}

.contact-details p i {
  font-size: 20px;
}

.footer-section .info hr {
  width: 45px;
  margin: 0px 0px !important;
  border: 1px solid var(--color-white);
  opacity: 1;
}

img.redes {
  width: 22px;
}

.legal a {
  color: var(--color-white);
  font-size: 14px;
  text-decoration: none;
}

.indent-32 {
  text-indent: 32px;
}

/* BREADCRUMB */
.breadcrumb {
  font-family: var(--font-regular);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: var(--color-blue);
}

.breadcrumb-item a,
.breadcrumb-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* FLEX LAYOUT */
.flex-container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.flex-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.aplicaciones-diagramas .flex-column {
  gap: 0.25rem;
}

/* ROUNDED IMAGES */
img.rounded-apl-1 {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 0px;
}

img.rounded-apl-2 {
  border-top-left-radius: 15px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

img.rounded-apl-3 {
  border-top-left-radius: 0px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

img.rounded-apl-4 {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 15px;
}

/* NAV PILLS */
.aplicaciones-diagramas .nav-pills {
  border: 1px solid var(--color-gray-light);
  padding: 40px 25px;
}

.aplicaciones-diagramas .flex-column button {
  text-align: left;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--color-blue);
  font-family: var(--font-medium);
  background-color: transparent !important;
}

.nav-pills .nav-link.active::after {
  margin-left: 5px;
  font-weight: 300;
  font-family: "Font Awesome 6 Pro Solid";
  content: "\f138";
}

.nav-pills .nav-link {
  color: var(--color-gray);
  font-family: var(--font-regular);
}

.aplicaciones-diagramas .nav-link {
  padding: 0.25rem 0rem;
}

.title-nav {
  font-family: var(--font-semibold);
  font-size: 20px;
}

.tab-pane h4 {
  font-family: var(--font-semibold);
  margin-left: 20px;
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  font-family: var(--font-light);
  color: var(--color-gray);
}

.contacto h3,
.contact-item h5,
.text-content h4 {
  font-family: Poppins-Semibold;
  color: var(--color-gray-dark);
}

.contacto .form {
  padding: 30px;
  border: 1px solid var(--color-gray-light);
}

form label {
  font-family: var(--font-light);
  color: var(--color-gray);
}

form .form-control {
  border-radius: 0px !important;
}

/* LISTS */
ul.list-beneficios li {
  list-style-type: circle;
  font-family: var(--font-light);
  color: var(--color-gray);
}

/* SPACER */
.spacer {
  height: 1000px;
  background-color: #f8f9fa;
}

/* MAP */
.map iframe {
  width: 100%;
}

/* SERVICES */
.servicios h5 {
  font-family: var(--font-semibold);
  color: var(--color-gray);
}

/* MEDIA QUERIES */
@media (min-width: 1400px) {
  .card-body {
    height: 250px;
  }
}

@media (max-width: 1399px) {
  .swiper-slide .item .slide-content p {
    height: 95px;
  }
  .card-body {
    height: 270px;
  }
}

@media (max-width: 1200px) {
  .swiper-slide {
    width: 33.33%;
  }
  .card-body {
    height: 270px;
  }
}

@media (max-width: 1199px) {
  .swiper-slide .item .slide-content p {
    height: 115px;
  }
}

@media (max-width: 991px) {
  .navbar-toggler {
    position: relative;
    z-index: 10000;
    border: none !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .custom-menu {
    position: relative;
  }

  .custom-menu .navbar-collapse {
    background-color: var(--color-white);
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .custom-menu .navbar-collapse:not(.show) {
    display: none;
  }

  .custom-menu .navbar-nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .custom-menu .nav-item {
    width: 100%;
  }

  .custom-menu .nav-link {
    color: #b0b0b0;
    font-size: 1.2rem;
    padding: 15px;
  }

  .custom-menu .nav-link:hover,
  .custom-menu .nav-link:focus {
    color: var(--color-gray-dark);
  }

  .custom-menu .nav-link.active {
    color: var(--color-blue-dark);
    position: relative;
  }

  .custom-menu .nav-link.active::after {
    content: "•";
    color: var(--color-blue);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
  }

  .custom-menu .btn-whatsapp {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .custom-menu .dropdown-menu {
    background-color: #f3f3f3;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .custom-menu .dropdown-menu li {
    margin: 0px;
    padding: 1rem;
  }

  .custom-menu .dropdown-menu li a {
    color: var(--color-gray);
    padding: 10px;
    font-size: 0.875rem;
  }

  .custom-menu .dropdown-menu li a.active {
    color: #256697;
  }

  .custom-menu .dropdown-menu li a.active::after {
    content: "•";
    color: var(--color-blue);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
  }

  .custom-menu .dropdown-menu li a:hover {
    color: var(--color-blue-dark);
  }

  .custom-menu .close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .custom-menu .close-menu:hover {
    color: #ffffff;
  }

  .swiper-slide {
    width: 33.33%;
  }

  .item-serv {
    width: 33.33%;
  }

  .MS-controls button {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .swiper-slide {
    width: 33.33%;
  }
  .swiper-button-prev,
  .swiper-button-next {
    font-size: 40px;
  }

  #mixedSlider .MS-controls .MS-left {
    left: -10px;
  }

  #mixedSlider .MS-controls .MS-right {
    right: -10px;
  }

  .item-serv {
    width: 50%;
  }

  .MS-controls button {
    font-size: 30px;
    top: 35%;
  }

  .MS-controls .prev {
    left: -10px;
  }

  .MS-controls .next {
    right: -10px;
  }

  .imgTitle {
    height: 120px;
  }

  .img-serv {
    max-width: 120px;
  }

  .slide-content-serv p {
    height: 140px;
    font-size: 14px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section .info hr {
    display: none;
  }
}

@media (max-width: 992px) {
  #mixedSlider .MS-controls button {
    font-size: 30px;
  }

  .item-serv {
    width: 100%;
    min-width: 0;
  }

  .MS-content {
    margin: 0 10px;
  }

  .MS-controls button {
    font-size: 25px;
    top: 30%;
  }

  .imgTitle {
    height: 100px;
  }

  .img-serv {
    max-width: 100px;
  }

  .slide-content-serv {
    padding: 10px;
  }

  .card-body {
    height: 225px;
  }

  .slide-content-serv h6 {
    height: 35px;
    font-size: 16px;
  }

  .slide-content-serv p {
    height: 120px;
    font-size: 14px;
  }

  .card-footer {
    padding: 0 10px 10px;
  }
}
@media (max-width: 767px) {
  .text-content {
    margin-top: 20px;
  }

  .swiper-slide {
    width: 50%;
  }
  .swiper-button-prev,
  .swiper-button-next {
    font-size: 30px;
    top: 35%;
  }
  .swiper-button-prev {
    left: -10px;
  }
  .swiper-button-next {
    right: -10px;
  }
  .imgTitle {
    height: 120px;
  }
  .img-serv {
    max-width: 120px;
  }
  .slide-content-serv p {
    height: 140px;
    font-size: 14px;
  }

  #mixedSlider .MS-controls button {
    font-size: 21px;
  }
}

@media (max-width: 576px) {
  .swiper-slide {
    width: 100%;
    min-width: 0;
  }
  .swiper-button-prev,
  .swiper-button-next {
    font-size: 25px;
    top: 30%;
  }
  .imgTitle {
    height: 100px;
  }
  .img-serv {
    max-width: 100px;
  }
  .slide-content-serv {
    padding: 10px;
  }
  .slide-content-serv h6 {
    height: 35px;
    font-size: 16px;
  }
  .slide-content-serv p {
    height: 120px;
    font-size: 13px;
  }
  .card-footer {
    padding: 0 10px 10px;
  }
}
