/* Site map */

.column {
    flex: 1;
    min-width: 200px;
  }
  
  .column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .column ul li {
    margin: 5px 0;
  }
  
  .sitemap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .align-text-right {
    text-align: right;
  }
  
  /* Navbar 2*/
  
  .navbar-img2 {
    flex: left;
    margin: 5px;
    position: absolute 0; top: 0;
  }

/* Body */
body {
  overflow-x: hidden;
}

/* Corrección bordes blancos*/

header.masthead .masthead-heading { 
  font-size: 200%;
  line-height: 3rem;
}

/* Arreglo del .modal en moviles */

@media (max-width: 768px) {
  .modal {
      width: 90%;
      height: 90vh; 
      top: 5%; 
      left: 5%; 
      transform: none; 
  }
}
/* Boton cerrar */
@media (max-width: 768px) {
  .portfolio-modal .modal-content {
      padding-top: 5rem;
  }
}
/* Corrección de texto grande a pequeño*/
@media (max-width: 768px) {
.portfolio-modal .modal-content h2, .portfolio-modal .modal-content .h2 {
  font-size: 1.5rem;
  line-height: 3rem;
  }
}

/* Hover del mouse servicios */

.team-member img {
  transition: 0.3s ease-in-out;
}

.team-member img:hover {
  filter: brightness(50%);
}

/* Carousel */

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgb(33, 33, 33);
}

/* Arreglo dropdown en navbar para PCs y moviles */

.dropdown-menu-customcolor {
  --bs-dropdown-bg: #373e45;
  --bs-dropdown-link-hover-bg: #30353a;
}

.margin-dropdown {
  margin-top: -20px;
}

@media (max-width: 768px) {
  .margin-dropdown {
    margin-top: 0px;
  }
}