body {
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
}

.navbar {
  background-color: var(--bs-white);
  border-bottom: 5px solid #005C99;
}

.navbar-brand {
  text-transform: uppelcase;
  color: var(--bs-primary);
  font-weight: bold;
}

.navbar-nav .nav-link {
  text-transform: uppelcase;
  color: var(--bs-primary);
}

#banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#banner img {
  width: 100%;
  object-fit: cover;
}

#overlayBanner {
  position: absolute;
  bottom: 5%;
  right: 5%;
  padding: 10px;
  min-width: 15em;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.8);
}

#overlayBanner2 {
  position: relative;
  bottom: 5%;
  padding: 10px;
  text-align: left;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.8);
}

#banner-2{
  margin-top: 3.83em;
  width: 100%;
  height: 15em;
  background-image: url(../imgs/ventanas_mall.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.triangle {
  width: 0;
  height: 0;
  margin-right: 5px;
  border-top: 0px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 10px solid #007bff; /* Color azul */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.img-fluid-2{
  max-height: 300px;
  width: auto;
}

.color-primary{
  color: var(--bs-primary);
}

.color-secondary{
  color: var(--bs-secondary);
}

.border-bottom-primary{
  border-bottom: 5px solid var(--bs-primary);
  max-width: fit-content;
}

.border-bottom-white{
  border-bottom: 5px solid var(--bs-white);
}

.border-bottom-white{
  border-bottom: 3px solid var(--bs-white);
}

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

.text-right{
  text-align: right;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mv-recuadro{
  max-width: 300px;
  height: auto;
  border: 1px solid var(--bs-white);
}

.services-cards{
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 25%);
}

.services-card{
  min-width: 300px;
  height: 300px;
}

.cuadros-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.cuadro {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-white);
}

.bg-cta{
  background-color: rgba(0, 91, 153, 0.2);
}

.client-slider {
  width: 100%;
  overflow: hidden;
}

.client-logos {
  display: flex;
  animation: slide infinite 20s linear; /* Controla la velocidad del desplazamiento */
}

.client-logo {
  flex: 0 0 auto;
  padding: 10px;
}

.client-logo img {
  max-height: 100px; /* Ajusta el tamaño de los logos */
  width: auto;
  height: auto;
}

.imgs-sp{
  max-width: 90%;
}

.success{
  color: #0f0;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-button svg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-button svg:hover {
  transform: scale(1.1);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* Desplaza los logos por 100% del ancho */
  }
}

@media (max-width: 768px) {
  .cuadros-container {
    display: block;
  }

  .cuadro {
    display: none;
  }
}

.formulario {
  background-color: var(--bs-secondary);
  padding: 30px;
  border-radius: 0 5px 5px 0;
  height: 100%;
}

.info-contacto {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 30px;
  border-radius: 5px 0 0 5px;
  height: 100%;
}

.footer {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 40px 0;
}

.footer-section h2 {
  color: var(--bs-white);
  margin-bottom: 20px;
}

.footer-section p {
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

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

.footer-section a {
  color: #fff;
  text-decoration: none;
}

.space-between{
  justify-content: space-between;
}

#footer-link{
  color: var(--bs-white);
  text-decoration: none;
}

#footer-link:hover{
  color: #ccc;
}

@media (max-width: 767px) {
  .text-right{
    text-align: center;
  }

  .title-lc{
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .carousel-inner{
    position: relative;
  }

  #banner{
    height: max-content;
  }
}