/**
* Template Name: Company
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #4d4643;
  overflow-x: hidden;
}

a {
  color: #AA1F2E;
  text-decoration: none;
}

a:hover {
  color: #ab5440;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #AA1F2E;
  width: 55px;
  height: 55px;
  border-radius: 50%; /* Hace que el elemento sea circular */
  transition: all 0.4s;
  display: flex; /* Centra el contenido dentro del círculo */
  align-items: center; /* Centra verticalmente */
  justify-content: center; /* Centra horizontalmente */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Añade una sombra para darle un efecto de elevación */
  text-decoration: none; /* Elimina el subrayado */
  color: white; /* Color del icono */
}

.back-to-top:hover {
  background: #7a0000; /* Cambia el color al pasar el mouse */
  color: #fff; /* Asegura que el icono permanezca blanco */
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top i {
  font-size: 28px; /* Tamaño del icono */
  color: #fff; /* Color del icono */
  line-height: 0; /* Ajusta la altura de línea */
}

.bi-whatsapp {
  font-size: 20px; /* Ajusta el tamaño del icono */
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
}

#header .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
}

#header .logo h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo h1 span {
  color: #AA1F2E;
}

#header .logo a {
  color: #111;
  text-decoration: none;
}

#header .logo img {
  max-height: 40px;
}

#header .subtitle {
  font-size: 11px;
  text-align: right;
  font-style: italic;
  margin: 0;
  padding: 0;
  align-self: flex-end;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  flex: 1; /* Allows the navbar to take remaining space */
  display: flex;
  justify-content: center; /* Centers items horizontally */
}

.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center; /* Centers the list items */
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #AA1F2E;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #bc1420;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #AA1F2E;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: 100%;
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: absolute;
  right: 15px; /* Ajustado para asegurar que el icono esté en la esquina superior derecha */
  color: #111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff !important;
}

@media (max-width: 990px) {
  
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 10px;
  font-size: 15px;
  color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #AA1F2E;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 10px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 10px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #AA1F2E;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

/* Oscurecer la imagen de fondo */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25); /* Ajusta la opacidad para mayor o menor oscuridad */
  z-index: 1;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;
  z-index: 2;
}

#hero .carousel-content {
  background: #aa1f2dab;
  padding: 20px;
  color: #fff;
  border-top: 5px solid #7a0000;
}

/* Contenedor del contenido */
.carousel-container1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  text-align: center;
  z-index: 2;
}

/* Contenido del carrusel */
.carousel-content1 {
  padding: 40px;
  color: #fff;
  border-radius: 15px;
  animation: fadeInUp 1s ease-in-out;
}

/* Estilos para el h2 */
.carousel-content1 h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
}

/* Botón atractivo */
.btn-get-started1 {
  display: inline-block;
  padding: 15px 40px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #ff416c, #9f1800);
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 6px 20px rgba(255, 65, 108, 0.6);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-get-started1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}

.btn-get-started1:hover::before {
  left: 100%;
}

.btn-get-started1:hover {
  background: linear-gradient(45deg, #9f1800, #ff416c);
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0px 8px 25px rgba(255, 65, 108, 0.8);
}


#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

#hero .carousel-content p{
  text-align: center;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #7a0000e0;
}

#hero .btn-get-started:hover {
  background: #b9221e;
  color: #fff;
  text-decoration: none;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.6);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #AA1F2E;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 990px) {
  #hero .carousel-container {
    top: 58px;
  }

  #hero .carousel-content1 h2 {
    margin-bottom: 15px;
    font-size: 40px;
  }

  #hero .carousel-content1 .btn-get-started1 {
    font-size: 15px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #7a0000;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgb(122,0,0);
  background: linear-gradient(131deg, rgba(122,0,0,1) 0%, rgba(122,0,0,1) 6%, rgba(255,255,255,1) 100%);
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #7a0000;
}

.breadcrumbs ol a {
  color: #7a0000;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #7a0000;
  content: "/";
}

@media (max-width: 990px) {
  .breadcrumbs {
    margin-top: 58px;
  }

  .breadcrumbs .d-flex {
    display: flex !important;
    justify-content: space-between; /* Mantiene la separación */
    align-items: center;
  }

  .breadcrumbs ol {
    display: flex;
    justify-content: flex-end; /* Alinea a la derecha */
    text-align: right;
  }

  .breadcrumbs h2 {
    margin-top: 20px;
  }

  .breadcrumbs ol li {
    display: inline-block;
    margin-left: 8px; /* Espacio entre elementos */
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.services .icon-box {
  text-align: center;
  padding: 0; /* Eliminamos el padding para que la imagen ocupe todo el espacio */
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  width: 400px;
  height: 300px;
  margin: 12px auto;
  position: relative;
  overflow: hidden; /* Evita desbordamientos */
  background-size: cover; /* Asegura que la imagen cubra todo el contenedor */
  background-position: center center; /* Centra la imagen */
}

.services .icon-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.245); /* Oscurece ligeramente la imagen */
}
 
.services .icon-box .icon h4 a {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 3px 3px 6px #505050; /* Sombra negra para mejorar visibilidad */
  transition: transform 0.3s ease-in-out, font-weight 0.3s ease-in-out, text-transform 0.3s ease-in-out;
}

.icon-box .icon h4 a:hover {
  transform: scale(1.05);
  text-transform: uppercase;
  font-weight: bolder;
  text-shadow: 8px 8px 8px #000000; /* Aumentamos la sombra al hacer hover */
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100%; /* Hace que el icono ocupe todo el ancho del contenedor */
  height: 100%; /* Hace que el icono ocupe todo el alto del contenedor */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2; /* Asegura que el texto esté sobre la imagen */
}

.services .icon-box h4 {
  margin-top: 20px;
  font-size: 1.2em;
  z-index: 1;  /* Asegura que el texto se vea encima de la imagen */
}

.services .icon-box .details-link {
  text-decoration: none;
  color: #fff; /* El color del texto debe ser visible sobre la imagen */
}


.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 150px);  /* 3 columnas de 120px */
  grid-template-rows: auto;  /* Altura de las filas automática para ajustarse al contenido */
  gap: 5px;
  position: relative;
  margin-top: 15%;
}

.hex {
  width: 150px;
  height: 168px;
  position: relative;
  background-size: cover;
  background-position: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin-top: 20px;
}

.hex:nth-child(1) {
  grid-column: 1 / span 2;  /* Ocupa solo la primera columna */
  grid-row: 1;  /* Fila 1 */
  justify-self: center;
  align-self: center;
}

.hex:nth-child(2) {
  grid-column: 2;  /* Ocupa solo la primera columna */
  grid-row: 2;  /* Fila 2 */
  justify-self: center;
  align-self: center;
}

.hex:nth-child(3) {
  grid-column: 1 / span 2;  /* Ocupa solo la primera columna */
  grid-row: 3;  /* Fila 3 */
  justify-self: center;
  align-self: center;
}

.hex:nth-child(4) {
  grid-column: 2;  /* Ocupa solo la primera columna */
  grid-row: 4;  /* Fila 4 */
  justify-self: center;
  align-self: center;
}

.hex:nth-child(5) {
  grid-column: 1 / span 2;  /* Ocupa solo la primera columna */
  grid-row: 5;  /* Fila 3 */
  justify-self: center;
  align-self: center;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #7a0000b2;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #111;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #444444;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #2b2b2b;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #7a0000c5;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #7a0000c4;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.service-row1, .service-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image, .service-image1, .service-image2{
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-image img {
  width: 550px;
  height: 450px;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 2);
}


.service-image1 img {
  width: 400px;
  height: 400px;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  border-radius: 15px;
  object-fit: contain;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 2);
}

.service-image2 img {
  width: 900px;
  height: 500px;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  border-radius: 15px;
  object-fit: contain;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 2);
}

.service-image3 img {
  width: 700px;
  height: 800px;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  border-radius: 15px;
  object-fit: contain; /* Ajusta la imagen dentro del tamaño sin recortar ni distorsionar */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 2);
}

.service-content1, .service-content {
  flex: 1;
  padding: 20px;
}

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

.service-content {
  text-align: left;
}

.exclusive-method1, .exclusive-method {
  font-size: 20px;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(128, 0, 25, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exclusive-method1 {
  background: linear-gradient(135deg, #cd0018, #ffffff);
  color: #fff;
}

.exclusive-method {
  background: linear-gradient(135deg, #ffffff, #cd0018);
  color: #fff;
  justify-content: flex-end;
  text-align: right;
}

.exclusive-method1 i, .exclusive-method i {
  font-size: 28px;
  color: #ffcc00;
  animation: pulse 1.5s infinite;
}

.exclusive-method1 i{
  margin-right: 12px;
}

.exclusive-method i{
 margin-left: 12px;
}

.service-benefits1, .service-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.service-benefits1 li, .service-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-benefits1 li {
  justify-content: flex-end;
  border-right: 4px solid #e60000;
}

.service-benefits li {
  justify-content: flex-start;
  border-left: 4px solid #e60000;
}

.service-benefits1 li:hover, .service-benefits li:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(123, 28, 0, 0.5);
}

.service-benefits1 i, .service-benefits i {
  font-size: 22px;
  color: #e60000;
}

.service-benefits1 strong, .service-benefits strong {
  font-size: 16px;
  color: #333;
}

.service-benefits1 p, .service-benefits p {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

.cta-button1, .cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #b60000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta-button1:hover, .cta-button:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* 📱 Responsive */
@media (max-width: 990px) {

  .service-row1 {
      flex-direction: column-reverse;
      text-align: center;
  }

  .service-row {
      flex-direction: column;
      text-align: center;
  }

  .service-content1, .service-content {
      padding: 20px;
  }

  .service-image img {
      max-width: 150%;
      width: 100%;
  }

  .service-image1 img {
    max-width: 150%;
    width: 100%;
  }

  .service-image2 img {
    max-width: 150%;
    width: 100%;
  }

  .service-image3 img {
    max-width: 70%;
  }

  .cta-button1, .cta-button {
      width: 100%;
      text-align: center;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
  justify-content: center;
}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 70px;
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us - Sección de Quiénes Somos
--------------------------------------------------------------*/

.about-us {
  padding: 60px 0;
  background: #f8f9fa; /* Fondo suave para resaltar el contenido */
}

.about-us .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.about-us .content {
  flex: 1;
  max-width: 50%;
  padding-right: 30px;
}

.about-us .content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #AA1F2E;
  margin-bottom: 20px;
}

.about-us .content p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.about-us .image-content {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Espacio entre las imágenes */
}

.about-us .image-content img {

  width: 500px;
  height: 400px;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 2);
  transition: transform 0.3s ease-in-out;
}

.about-us .image-content1 {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Espacio entre las imágenes */
}

.about-us .image-content1 img {
  width: 400px;
  height: 300px;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 2);
  transition: transform 0.3s ease-in-out;
}

/* Efecto de escala al pasar el mouse */
.about-us .image-content img:hover {
  transform: scale(1.05);
}

/* Efecto de escala al pasar el mouse */
.about-us .image-content1 img:hover {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 990px) {
  .about-us .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-us .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* Asegurar el orden correcto: Texto arriba, imagen abajo */
  .about-us .content {
    order: 1;
    width: 100%;
    max-width: 150%;
    margin-bottom: 20px;
  }

  .about-us .image-content,
  .about-us .image-content1 {
    order: 2;
    display: flex;
    justify-content: center;
    width: 300%;
  }

  .about-us .image-content img,
  .about-us .image-content1 img{
    max-width: 300%;
    width: 235%;
    height: auto;
  }

}

/*--------------------------------------------------------------
# About Us - Inicio
--------------------------------------------------------------*/

.about-us1 {
  padding: 50px 0;
  background: #f8f9fa;
}

.about-us1 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; /* Distribuye mejor los elementos */
  text-align: left; /* Alinea el texto de forma natural */
  max-width: 1200px; /* Asegura que no esté demasiado angosto */
  margin: 0 auto; /* Centra el contenedor en la página */
}

.about-us1 .content {
  flex: 1;
  min-width: 50%;
  padding: 20px;
}

.about-us1 .content h2 {
  font-weight: 700;
  font-size: 40px;
  color: #AA1F2E;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-us1 .content h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
}

.about-us1 .content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.about-us1 .content ul {
  list-style: none;
  padding: 0;
}

.about-us1 .content ul li {
  position: relative;
  padding: 10px 0 0 28px;
}

.about-us1 .content ul li i {
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 20px;
  color: #AA1F2E;
}

.about-us1 .image-content {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.about-us1 .image-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.about-us1 .image-content img:hover {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 990px) {
  .about-us1 .container {
    flex-direction: column;
    text-align: center;
  }

  .about-us1 .content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .about-us1 .content .pt1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-us1 .content ul li {
    padding-left: 0;
  }

  .about-us1 .content ul li i {
    position: relative;
    left: auto;
    top: auto;
    margin-right: 10px;
  }

  .about-us1 .image-content {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .about-us1 .image-content img {
    max-width: 90%;
  }

  .about-us1 .content .order-lg-1 {
    order: 2;
  }

  .about-us1 .content .order-lg-2 {
    order: 1;
  }
}


/*--------------------------------------------------------------
# Our Team - Estilo Mejorado
--------------------------------------------------------------*/

.team {
  padding: 60px 0;
  background: #f8f9fa; /* Fondo más limpio */
}

.team .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.team .row {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.team .member {
  position: relative;
  background: #ffffff;
  width: 250px; /* Tamaño uniforme */
  height: 250px; /* Tamaño uniforme */
  border-radius: 50%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid black;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.15);
}

.team .member .member-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.team .member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: filter 0.4s ease, transform 0.3s ease;
  filter: grayscale(100%);
}

.team .member:hover .member-img img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Información del miembro */
.team .member .member-info {
  padding: 15px;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* Fondo oscuro semitransparente */
  color: #fff; /* Texto en blanco */
  transition: background 0.3s ease;
}

.team .member .member-info h4,
.team .member .member-info span,
.team .member .member-info p {
  font-weight: 700;
  font-size: 18px;
  color: white; /* Texto blanco */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8),
               -1px -1px 3px rgba(0, 0, 0, 0.8),
               1px -1px 3px rgba(0, 0, 0, 0.8),
               -1px 1px 3px rgba(0, 0, 0, 0.8); /* Contorno más difuso */
}

/* Redes sociales */
.team .member .social {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: bottom 0.3s ease, opacity 0.3s ease;
}

.team .member:hover .social {
  bottom: 100px;
  opacity: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8),
  -1px -1px 3px rgba(0, 0, 0, 0.8),
  1px -1px 3px rgba(0, 0, 0, 0.8),
  -1px 1px 3px rgba(0, 0, 0, 0.8);
}

.team .member .social a {
  color: #333;
  font-size: 18px;
  text-decoration: none; /* Asegura que no haya subrayado */
  transition: color 0.3s, transform 0.3s;
}

.team .member .social a:hover {
  transform: scale(1.2);
}

/* Estilos para el nombre */
.team .member .social h5 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0;
  padding: 5px 0;
  transition: color 0.3s ease;
}

@media (max-width: 990px) {

  .team .row {
    display: flex;
    flex-direction: column; /* Acomoda los elementos en columna */
    align-items: center; /* Centra los elementos */
    text-align: center; /* Asegura el centrado del texto */
  }

  .team .col-lg-3 {
    width: 100%; /* Hace que ocupen todo el ancho disponible */
    max-width: 350px; /* Opcional: limita el tamaño */
    margin-bottom: 20px; /* Espacio entre los elementos */
  }
}




/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #111;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e7e7e7;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #AA1F2E;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #AA1F2E;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #847872;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #AA1F2E;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #4d4643;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #AA1F2E;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #AA1F2E;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #7a0000;
}

.pricing .featured h3 {
  color: #fff;
  background: #AA1F2E;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #AA1F2E;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: lightgray;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #7a0000;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #dddddd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #AA1F2E;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #AA1F2E;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact .info:hover i {
  background: #AA1F2E;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #AA1F2E;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #AA1F2E;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #7a0000;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #AA1F2E;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #AA1F2E;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #7a0000;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #7a0000;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #847872;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #AA1F2E;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #7a0000;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #7a0000;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #bfb9b6;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #4d4643;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #7a0000;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #AA1F2E;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #AA1F2E;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #7a0000;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #AA1F2E;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #7a0000;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #7a0000;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b4aca8;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #7a0000;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b4aca8;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #7a0000;
  background: #7a0000;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}



/* General */
#portfolio-details {
  padding: 60px 0;
  background: #f9f9f9;
}

.portfolio-details .container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Imagen y Contacto */
.member-img1 {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

.member-img1 img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.member-img1:hover img {
  transform: scale(1.05);
}

.contact-info1 {
  text-align: center;
  margin-top: 20px;
}

.contact-link1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  background: #f4f4f4;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.contact-link1 i {
  font-size: 22px;
  margin-right: 10px;
  color: #d72638;
}

.contact-link1:hover {
  background: #d72638;
  color: white;
}

.contact-link1:hover i {
  color: white;
}

/* Información */
.portfolio-info h3 {
  font-size: 26px;
  font-weight: bold;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #d72638;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* Descripción */
.portfolio-description p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

@media (max-width: 990px) {
  .portfolio-details-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .portfolio-details-slider .swiper-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .member-img1 img {
    max-width: 100%; /* Asegura que la imagen se adapte al contenedor */
    height: auto;
  }

  .contact-info1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info1 .contact-link1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
  }

  .contact-info1 .contact-link1 i {
    margin-right: 5px;
  }
}


 /*--------------------------------------------------------------
# Footer - Estilo Profesional y Elegante
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1e1e1e;
}

#footer .footer-top .container .row{
  justify-content: space-between;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 40 0 40;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #AA1F2E;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #AA1F2E;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #7a0000;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #AA1F2E;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 990px) {
  #footer .footer-top {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  #footer .footer-newsletter form {
    width: 100%;
    margin: 0 auto;
    max-width: 300px; /* Ajusta el ancho máximo según tus necesidades */
  }
}

.footer-services-container {
  display: flex;
  justify-content: space-between;
}

.footer-service-column {
  flex: 1 1 45%;
  min-width: 250px;
}

.footer-service-column li {
  list-style: none;
  margin: 5px 0;
}

.footer-service-column a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-service-column a:hover {
  color: #0077b5; /* Azul de LinkedIn */
}

@media (max-width: 990px) {
  .footer-services-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-service-column ul li{
    text-align: justify;
  }

  .footer-service-column {
    flex: 1 1 100%;
    max-width: 500px;
  }
}
