/*===================================================
Project: beyond group  
Author: ERRAMIX
====================================================*/

/* start global classes */
:root {
  /* body bg color */
  --bodyColor: #f8f6f4;

  /* box bg color */
  --boxColor: #e0e0e0;

  /* dark brand color */
  --dark-brand-color: #202020;

  /* brand color */
  --brand-color: #DF0613;
 
  /* Primary Text Color */
  --primaryColor: #3c3c3b;

  /* title 2 Color (subtitle-color) */
  --title-2-color: #292836; 

  /* Secondary Text Color */
  --secendaryColor: #424242;

  /* border radius */
  --border-radius: 5px;
}



* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--primaryColor);
  background-color: var(--bodyColor);
  text-align: left;
  text-transform: none;
  position: relative;
  overflow-x: hidden;
  cursor: url(../images/logo/cursor.webp),auto;
}
a:hover{cursor: url(../images/logo/cursor2.webp),auto;

}


body.home-rtl {
  font-family:"Poppins", sans-serif;
}


.switch-button {
  border-radius: 50%;
  border: none;
  outline: none;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-left: 10px;
  border: 0.5px solid var(--brand-color);
}

.btn-light-mode {
  background-color: var(--boxColor);
  color: var(--primaryColor);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::selection {
  color: var(--bodyColor);
  background-color: var(--brand-color);
}

.title {
  color: var(--primaryColor);
  font-size: 45px;
  font-weight: bold;
  position: relative;
  text-transform: none;
}

.title-2 {
  color: var(--title-2-color);
  font-size: 26px;
  font-weight: bold;
  position: relative;
  text-transform: capitalize;
}

.pretitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: var(--brand-color);
}

.unique-text {
  color: var(--brand-color);
}

.home-2 .heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

body.home-rtl .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: end;
  text-align: end;
}

body.home-rtl .heading > * {
  justify-self: end;
  text-align: end;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.box {
  background-color: var(--boxColor);
  padding: 20px;
  border-radius: var(--border-radius);
  position: relative;
  height: 100%;
  z-index: 1;
  transition: color 300ms ease-in-out;
}

.box.box-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #8f8f8f;
  transition: transform 400ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
  color: #f3f3f3;
  border-radius: var(--border-radius);
}

.box.box-hover:hover:before,
.box.box-hover:focus:before {
  transform: scaleX(1);
}

.box.box-hover:hover,
.box.box-hover:focus,
.box.box-hover:hover a i,
.box.box-hover:hover .box-icon i,
.box.box-hover:hover > * {
  color: #ffffff;
}

.box.box-hover:hover > p {
  color: #def3de;
}

.home-rtl .box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: end;
}

/* start buttons style */
.btn,
.btn-sec {
  border: 1px solid var(--brand-color);
  background: var(--brand-color);
  color: var(--bodyColor);
  font-weight: 800;
  border-radius: 40px;
  padding: 8px 25px;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  text-transform: capitalize;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5px;
  outline: none;
  font-weight: bold;
  transition: 0.8s all ease;
  cursor: pointer;
  z-index: 1;
  max-width: 100%;
  white-space: nowrap;
  margin-top: 0px;
}

/* Tablets */
@media (max-width: 992px) {
  .btn,
  .btn-sec {
    font-size: 25px;
    padding: 10px 20px;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .btn,
  .btn-sec {
    width: 100%;
    font-size: 12px;
    padding: 10px;
  }
}
/* ipad */
@media (max-width: 1450px) {
  .btn,
  .btn-sec {
    width:100%;
    font-size: 15px;
    padding: 10px;
  }
}

/* ipad */
@media (max-width: 1024px) {
  .btn,
  .btn-sec {
    width:100%;
    font-size: 10px;
    padding: 10px;
  }
}

/* Celulares pequeños */
@media (max-width: 480px) {
  .btn,
  .btn-sec {
    font-size: 10x;
    padding: 8px;
  }
}
.btn-sec {
  background-color: var(--boxColor);
  border: 1px solid var(--brand-color);
  color: var(--primaryColor);
}

.btn-sec:hover {
  color: var(--bodyColor);
}

.btn::before,
.btn-sec::before {
  background: var(--boxColor);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
  width: 100%;
  height: 0%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-sec::before {
  background: var(--brand-color);
}

.btn:hover::before,
.btn-sec:hover::before {
  height: 380%;
}

.learn-more {
  text-transform: none;
  color: var(--brand-color);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
}

.learn-more .bi {
  font-size: 25px;
}

/* end main button style */

@media (max-width: 768px) {
  .btn {
    padding: 6px 18px;
    font-size: 16px;
  }

  .title {
    font-size: 35px;
  }

  .title-2 {
    font-size: 20px;
  }

  .pretitle {
    font-size: 14px;
  }

  p {
    font-size: 14;
    line-height: 28;
  }
}

p {
  color: var(--secendaryColor);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  border-radius: 10px;

}

/* ====== start breadcrumbs style========= */

.breadcrumbs {
  background: var(--dark-brand-color);
  min-height: 40px;
  margin-top: 82px;
  color: var(--bodyColor);
}

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

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.breadcrumbs h2 {
  color: #eaf0ec;
}

.breadcrumbs ol a {
  color: #f8f6f4;
  transition: 0.3s;
}

.breadcrumbs p {
  color: #b6b6b6;
}

.breadcrumbs ol a:hover {
  color: var(--brand-color);
}

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

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

/* ====== end breadcrumbs style ========= */

/* end global classes */

/* ==== start  preloader style  ===== */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--bodyColor);
  background-color:rgba(0, 0, 0, 0.096);
  backdrop-filter: blur(80px);
  z-index: 9999;
}

svg {
  width: 300px;
  visibility: hidden;
}

/* ==== end  preloader style  ===== */

/* ======== start scroll-to-top button style  =========== */

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  background: #e30613 !important;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 800;
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;
  display: grid;
  background-color: var(--bodyColor);
  place-items: center;
  font-size: 35px;
  color: var(--brand-color);
}

/* ======== end scroll-to-top button style  =========== */



.img_soldador{
background: url(../images/service/banner-1_soldador.webp);
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
min-height: 1000px;
}


/* Ajustes para tablets */
@media (max-width: 992px) {
  .img_soldador {
    min-height: 700px;
    background-attachment: scroll;
  }
}

/* Ajustes para celulares */
@media (max-width: 768px) {
  .img_soldador {
    min-height: 200px;
    background-attachment: scroll; /* scroll en móviles para evitar bugs */
  }
}

.img_about {
  background: url(../images/about/about-img.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 1000px;
}

/* Ajustes para tablets */
@media (max-width: 992px) {
  .img_about {
    min-height: 300px;
    background-attachment: scroll;
  }
}

/* Ajustes para celulares */
@media (max-width: 768px) {
  .img_about {
    min-height: 200px;
    background-attachment: scroll; /* scroll en móviles para evitar bugs */
  }
}

/*================== start navbar section ==================*/
.navbar {
  z-index: 900;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(129, 129, 129, 0.6), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(10px);
  --bs-navbar-nav-link-padding-x: 1.5rem;
  position: fixed;
  top: 5px;
  width: 80%;
  margin: 0 auto;
  border-radius: 1rem;
  border: 2px solid rgb(197, 197, 197);
}

/* Adaptación para pantallas de 1300px */
@media (max-width: 1300px) {
  .navbar {
    width: 85%;
    --bs-navbar-nav-link-padding-x: 1rem; /* Menos espacio entre items */
  }
  
  .logo {
    width: 130px;
    left: 10px;
  }
  
  .navbar.sticky {
    width: 85%;
  }
}

/* Adaptación para pantallas de 1024px */

@media (max-width: 1300px) {
  .navbar {
    width: 85%;
    --bs-navbar-nav-link-padding-x: 1rem; /* Menos espacio entre items */
  }
  
  .logo {
    width: 100px;
    left: 10px;
  }
  
  .navbar.sticky {
    width: 85%;
  }
  .navbar ul li a {
    font-weight: 600;
    font-size: 13px;
    text-transform: capitalize;
    color: rgb(255, 255, 255) !important;
}
}
/* Adaptación para pantallas de 1000px */
@media (max-width: 1000px) {
  .navbar {
    width: 95%;
    --bs-navbar-nav-link-padding-x: 0.7rem; /* Espacio aún más reducido */
    top: 3px;
  }
  
  .logo {
    width: 120px;
    height: 40px;
    left: 8px;
  }
  
  .logo-container {
    width: 180px;
    margin-top: 10px;
  }
  
  .navbar.sticky {
    width: 90%;
    top: 10px;
  }
  
  .navbar ul li a {
    font-size: 0.9rem; /* Texto más pequeño */
  }
}

/* Versión móvil (990px) - Menú hamburguesa */
@media (max-width: 990px) {
  .navbar {
    width: 98%;
    background-color: var(--boxColor);
    padding: 0.5rem 1rem;
  }
  
  .logo {
    width: 110px;
    height: 35px;
    left: 5px;
    top: 10px;
  }
  
  .logo-container {
    width: 150px;
    margin-top: 5px;
  }
  
  .navbar.sticky {
    width: 95%;
    top: 5px;
    border-radius: 1rem;
  }
  
  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }
}

/* Resto de tus estilos... */
ul.filters li.nav-item a.nav-link :active {
  border-style: solid;
  border-bottom: 2px;
  border-color: #4e0097;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: none;
}

.navbar #menu {
  color: var(--title-2-color);
  font-size: 30px;
}

.logo-container {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.logo {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 150px;
  height: 45px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}

.logo-static {
  background-image: url(../images/logo/logo.webp);
  z-index: 2;
  opacity: 1;
}

.logo-hover {
  background-image: url(../images/logo/logo\ beyond\ rapido_3.gif);
  z-index: 1;
  opacity: 0;
  transition: ease-in 0.8ms;
}

.logo-container:hover .logo-static {
  opacity: 0;
}

.logo-container:hover .logo-hover {
  opacity: 1;
}

.navbar.sticky {
  position: fixed;
  top: 15px;
  width: 75%;
  margin: 0 auto;
  border-radius: 2rem;
  background-color: hsla(0, 0%, 48%, 0.719);
  backdrop-filter: blur(10px);
  transition: 1s;
  border: 2px solid rgb(255, 247, 247);
  box-shadow: 0px 5px 40px rgba(91, 91, 91, 0.486);
  z-index: 999;
  transition: ease 1s;
}

.navbar ul li a:focus {
  background-color: transparent;
}

.navbar ul li a {
  font-weight: 600;
  text-transform: capitalize;
  color: rgb(255, 255, 255) !important;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--brand-color) !important;
}

.navbar .dropdown-menu {
  background-color: var(--boxColor) !important;
}

.navbar .dropdown-menu .dropdown-item {
  color: var(--title-2-color);
  background-color: var(--boxColor);
}
/*================== End navbar section ==================*/

/*================== start hero section ==================*/
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}
.hero-img img {
  transition: transform 0.5s ease;
  will-change: transform;
}

.hero-img img:hover {
  transform: scale(1.1) rotate(1deg);
}

#rotate_img {
 
  transition: transform 0.5s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
}

#rotate_img:hover {
  transform: scale(1.1) rotate(1deg);
  
}



.error-message {
  color: red;
  font-size: 0.8em;
  margin-top: 4px;
  margin-bottom: 4px;
  display: none;
}

.home-3 .hero {
  min-height: 150vh !important;
}

@media (max-width: 990px) {
  .home-1 .hero,
  .home-3 .hero,
  .home-rtl {
    margin-top: 80px;
  }
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}

#content {
  position: relative;
  z-index: 1;
}

.hero .hero-text .title {
  line-height: 65px;
  font-size: 52px;
}

.hero .hero-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius);
  background-color: var(--boxColor);
}
.hero .hero-icons a:hover {
  background-color: var(--brand-color);
}

.hero .hero-icons a:hover > i {
  color: var(--boxColor);
}

.hero .hero-icons i {
  font-size: 20px;
  color: var(--secendaryColor);
  cursor: pointer;
}

@media (max-width: 990px) {
  .hero .hero-text .title {
    line-height: 65px;
    font-size: 44px;
  }
}


/*================== end hero section =====================*/

/*============== Start About section ==========*/
.about .box .title-2 {
  text-transform: capitalize;
  font-size: 18px;
}

.about .box {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  padding: 15px;
}

.about .box i {
  font-size: 35px;
  color: var(--brand-color);
}

.about .bars {
  margin: 0;
  padding: 0;
}

@keyframes load {
  from {
    width: 0%;
  }
}

@-webkit-keyframes load {
  from {
    width: 0%;
  }
}

@-o-keyframes load {
  from {
    width: 0%;
  }
}

@-moz-keyframes load {
  from {
    width: 0%;
  }
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: var(--boxColor);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--brand-color);
  border-radius: 5px;
  transition: width 0.2s ease-in-out;
  animation: load 3s 0s;
  -webkit-animation: load 3s 0s;
  -moz-animation: load 3s 0s;
  -o-animation: load 3s 0s;
}

.progress-bar-fill.progress-bar-fill-1 {
  width: 70%;
}

.progress-bar-fill.progress-bar-fill-2 {
  width: 20%;
}

.progress-bar-fill.progress-bar-fill-3 {
  width: 55%;
}

.home-rtl .about .box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: end;
}

/*============== End About section ==========*/

/*============== Start Services section ==========*/
.box-service .box-icon i {
  color: var(--brand-color);
  font-size: 4rem;
}

.home-2 .box-service {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-rtl .box-service {
  text-align: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.services .box-service a {
  display: flex;
  align-items: baseline;
}

.services .box-service a i {
  font-size: 18px;
  margin: 0 5px;
}

/*============== Start single-service section ==========*/
.single-service {
  min-height: 100vh;
  margin-top: 6rem;
}

.service-side {
  height: fit-content;
}

.service-side .social .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-color);
}

.service-side .social .icon i {
  font-size: 18px;
  color: var(--bodyColor);
}

.single-service .service-box {
  height: fit-content;
}

.single-service .service-box h3 {
  font-size: 16px;
}

.single-service .service-box p {
  line-height: 26px;
  font-size: 14px;
}

.single-service .service-box i {
  font-size: 35px;
  color: var(--brand-color);
}

/*============== End single-service section ==========*/
/*============== End Services section ==========*/

/*============== Start Why us section ==========*/
.why-choose-us .box h1 {
  font-size: 50px;
  color: var(--brand-color);
  font-weight: bold;
}

/*============== End Why us section ==========*/

/*============== Start portfolio section ==========*/
.portfolio_home{
height: 1050px;

}
.portfolio-btn {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--secendaryColor);
  border: none;
  background-color: var(--bodyColor);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}

.portfolio ul {
  margin: 0 !important;
  padding: 1rem 0 !important;
}

@media screen and (max-width: 768px) {
  .portfolio ul li a {
    font-size: 17px;
  }
}

.portfolio .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.5s;
}

.portfolio .img-overlay .content {
  padding: 1.5rem;
  width: 100%;
  color: #c9e8d2;
}



.portfolio .img-overlay .content h3,
.portfolio .img-overlay .content h6 {
  color: #f9f9f9;
}

.portfolio .img-overlay > * {
  transform: translateY(40px);
  transition: transform 25ms;
}

.portfolio .img-overlay:hover > * {
  transform: translateY(0);
}

.portfolio .img-overlay:hover {
  opacity: 1;
}

.portfolio .img-overlay h3 {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.portfolio .img-overlay h4 {
  padding: 7px 10px;
  color: var(--brand-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  cursor: pointer;
}

.portfolio .img-overlay .tags span {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #DF0613;
  margin: 0 0.5rem;
}

#title-intro{
  color: #3c3c3b;
  font-size: 35px;
}

.portfolio-btn .active,
.portfolio-btn:hover {
  color: var(--brand-color) !important;
}

.portfolio-item {
  transition: ease-in-out 50ms;
  position: relative;
}

.client-side {
  height: fit-content;
}

.client-side .box .icon {
  flex: 0.25;
}

.client-side .box .icon i {
  font-size: 45px;
  color: var(--brand-color);
}

.client-side .box .text {
  flex: 0.75;
}

.client-side .box .text h3 {
  color: var(--primaryColor);
  margin: 0;
  font-size: 18px;
}

.client-side .social .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-color);
}

.client-side .social .icon i {
  font-size: 18px;
  color: var(--bodyColor);
}

/*============== End portfolio section ==========*/

/*============== start clients section ==========*/

.clients {
  background-color: var(--boxColor);
}

.clients img {
  filter: grayscale(100%);
}

.clients img:hover {
  filter: grayscale(0);
}

/*============== End clients section ==========*/

/*============== Start numbers section ==========*/

.counter-up {
  padding: 60px 0;
  background-color:#e0e3e1;
  color: #f9f9f9;
  text-align: center;
  border-radius: 10px;
}

.home-3 .counter-up {
  background-color: transparent;
}

.counter-up .counter {
  font-size: 50px;
  font-weight: bold;
  color: var(--brand-color);
}

.counter-up .title-2 {
  color: #f9f9f9;
}

.counter-up i {
  font-size: 50px;
  color: var(--brand-color);
}

/*============== End numbers section ==========*/

/*============== Start pricing section ==========*/

.pricing .row .box {
  text-align: center;
  align-items: center;
}

#table3 {
  background-color: var(--brand-color);
  color: #f3f3f3;
}

#table3 > .price {
  color: #f3f3f3;
}

#table3 > h3,
#table3 > ul li,
#table3 > i {
  color: #d8d8d8;
}

.pricing .row .box ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#table3 .btn {
  background-color: var(--bodyColor);
  color: var(--brand-color);
}

#table3 ul li .bi-check2-circle {
  color: var(--dark-brand-color);
}

.pricing .row .box .price {
  font-size: 55px;
  font-weight: bold;
  color: var(--brand-color);
}

.pricing .row .box i {
  font-size: 55px;
  color: var(--secendaryColor);
}

.pricing .box ul li .bi {
  font-size: 18px;
  margin-right: 5px;
}

.pricing .box ul li .bi-check2-circle {
  color: var(--brand-color);
}

.pricing .box ul li .bi-x-circle {
  color: #864141;
}

.pricing ul li {
  color: var(--secendaryColor);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.pricing h3 {
  color: var(--secendaryColor);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.pricing .box .title-2 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: bold;
}

/*============== End pricing section ==========*/

/*============== Start testimonials section ==========*/
.testimonials .box h1 {
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.testimonials i {
  color: #b8b800;
  font-size: 20px;
}

/*============== End testimonials section ==========*/

/*============== start team section ==========*/
.team .box {
  padding: 0;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team .box .team-img {
  width: 100%;
}

.team .box .social-icons i {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: var(--secendaryColor);
}

.team .box .social-icons i:hover {
  color: var(--brand-color);
}

/*============== end team section ==========*/

/*============== Start blog section ==========*/

.blog h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--secendaryColor);
}

.home-rtl .blog .card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: end;
}

.blog .card i {
  font-size: 17px;
  color: var(--brand-color);
}

.blog .title-2 {
  font-size: 25px;
  line-height: 40px;
}

.blog .card {
  padding: 0 !important;
}

.blog .card img {
  border-radius: var(--border-radius);
}

.blog .card a {
  display: flex;
  align-items: center;
  flex-direction: row;
  color: var(--brand-color);
}

.blog .card a i {
  font-size: 18px;
  margin-inline: 5px;
}

.blog-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.blog-nav a {
  margin-inline: 0.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--boxColor);
  color: var(--title-2-color);
  border-radius: 50%;
}

.blog-nav a.active,
.blog-nav a:hover {
  background-color: var(--brand-color);
}

/* =========== start blog single page ============ */

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

.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: var(--title-2-color);
  transition: 0.3s;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: var(--brand-color);
}

.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: var(--primaryColor);
  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 h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

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

.blog .entry .entry-footer i {
  color: var(--brand-color);
  display: inline;
}

.blog .entry .entry-footer a {
  color: var(--secendaryColor);
  transition: 0.3s;
}

.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: var(--secendaryColor);
  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;
  background-color: var(--boxColor);
  border-radius: var(--border-radius);
}

.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: var(--title-2-color);
}

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

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

.blog .blog-author p {
  color: var(--secendaryColor);
}

.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: var(--title-2-color);
  transition: 0.3s;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--brand-color);
}

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

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: var(--brand-color);
  margin-bottom: 5px;
}

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

.blog .blog-comments .reply-form {
  margin-top: 10px;
  padding: 1.5rem;
}

.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: var(--border-radius);
  outline: none;
  border: none;
  color: var(--title-2-color);
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  background-color: var(--boxColor);
  border: none;
  outline: none;
  box-shadow: none;
}

.blog .blog-comments .reply-form textarea {
  box-shadow: none;
  outline: none;
  border: none;
  color: var(--title-2-color);
}

.blog .blog-comments .reply-form textarea:focus {
  background-color: var(--boxColor);
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 1rem;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  width: fit-content;
  background-color: var(--boxColor);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--title-2-color);
  position: relative;
}

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

.blog .sidebar .search-form {
  background-color: var(--boxColor);
}

.blog .sidebar .search-form form {
  background: var(--boxColor);
  border: 1px solid var(--boxColor);
  width: 100%;
  height: 100%;
  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 input[type="text"]:focus {
  border: var(--boxColor);
  outline: none;
  box-shadow: none;
}

.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: var(--brand-color);
  color: var(--bodyColor);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
  color: var(--bodyColor);
}

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

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

.blog .sidebar .categories ul a {
  color: var(--title-2-color);
  transition: 0.3s;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: var(--secendaryColor);
  font-size: 14px;
}

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

.blog .sidebar .recent-posts img {
  width: 80px;
  height: 100%;
  float: left;
  border-radius: var(--border-radius);
}

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

.blog .sidebar .recent-posts h4 a {
  color: var(--primaryColor);
  transition: 0.3s;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-size: 14px;
  color: var(--secendaryColor);
}

.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: var(--brand-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid var(--secendaryColor);
  display: inline-block;
  border-radius: var(--border-radius);
  transition: 0.3s;
}

/* =========== start blog single page ============ */

/*============== End blog section ==========*/

/*============== start FAQ section ==========*/
.faq .box h4 {
  color: var(--title-2-color);
  font-size: 20px;
  font-weight: 600;
}

.faq .box i {
  font-size: 25px;
  color: var(--brand-color);
}

.rotate-icon {
  transition: transform 0.3s ease-in-out;
}

.rotate-icon.rotated {
  transform: rotate(180deg);
}

/*============== End FAQ section ==========*/

/*============== Start contact section ==========*/
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 15px;
  outline: none;
  border: none;
  box-shadow: none;
  background-color: var(--boxColor);
  border-radius: var(--border-radius);
  color: var(--title-2-color);
}

.contact form input:focus,
.contact form textarea:focus {
  background-color: var(--boxColor);
  box-shadow: none;
}

.contact .info i {
  font-size: 30px;
  color: var(--brand-color);
}

.contact .info h5 {
  color: var(--secendaryColor);
  font-size: 20px;
  font-weight: 600;
}

.contact-map {
  width: 100%;
  height: 400px;
  margin-top: 5rem;
}

.toast-success {
  background-color: #4e0097 !important;
  opacity: 1 !important;
}

.toast-error {
  background-color: #8b0500 !important;
  opacity: 1 !important;
}

.toast {
  border-radius: var(--border-radius) !important;
  color: #f9f9f9;
  font-family: "Poppins", sans-serif;
  box-shadow: none !important;
}

/*============== End contact section ==========*/

/*============== Start Footer section ==========*/
.footer {
  background-color: #000000;
}

.footer .box {
  background-color: var(--dark-brand-color);
}

.footer .box p {
  color: black !important;
}

.footer .box .logo img {
  width: 50%;
}

.footer .box .icon {
  color: #fff;
  background-color: var(--brand-color);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.footer .box h4 {
  color: #b6b6b6;
}

.footer .box p {
  color: #a2a1a1;
}

.footer h4 {
  color: #b6b6b6;
  font-size: 18px;
  font-weight: 600;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer ul li {
  color: #ddd;
  cursor: pointer;
}

.footer ul li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #ddd;
}

.footer ul li a:hover {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  transition: ease-in .4s;
  color: #ff0909;
}


.footer ul li i {
  font-size: 12px;
}

.footer .copyrights a {
  color: #d8d8d8;
}

.footer hr {
  color: #b1b1b1;
}

/*============== End Footer section ==========*/

/* ================= start 404 page ===================== */
.fzf {
  width: 100%;
  overflow: hidden;
  height: 100%;
  display: grid;
  place-items: center;
  place-content: center;
}

.fzf .content {
  margin-top: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fzf .content img {
  width: 70%;
}

.fzf .content h1 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  margin-block: 1rem;
}

#text-banner {
  color: #ffffff !important;
}
#p-banner
{
  color: #ffffff !important;
}
/* ================= end 404 page ===================== */

/* ================= start login page + register page  ===================== */

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth input {
  border: 0;
  outline: 0;
  margin-block: 0.5rem;
}
#box-footer {
background-color: #e0e3e1;
}


/* ================= end login page + register page  ===================== */

.icon_porfolio{
  width: 5em;
  
}
#banner_nosotros {
  background: url(../images/service/banner\ beyond_nosotros\ .jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
#banner_codigo{
  background: url(../images/service/banner-beyond-codigo.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}


#banner_seguridad {
  background: url(../images/service/banner-beyond-seguridad.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}




#banner_servicios{

  background: url(../images/service/banner\ beyond\ servicios.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  height: 300px;
}

#banner_proyectos{

  background: url(../images/service/banner\ beyond\ proyecto.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  height: 300px;
}

#banner_contacto{

  background: url(../images/service/banner-beyond-contacto.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_carpinteria{

  background: url(../images/service/baners_carpinteria_beyond.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_metalmecanica{

  background: url(../images/service/baners_metalmecanica_beyond.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
#banner_impresion{

  background: url(../images/service/baners_impresion_beyond.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_acrilicos{

  background: url(../images/service/baners_corte_acrilicos_beyond.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_ins_logistica{

  background: url(../images/service/baners_instalacion_beyond.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
#banner_logistica_tec{

  background: url(../images/service/baner_logistica_beyond.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_work-wus{

  background: url(../images/service/baner_work-ius.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}


#banner_cheil{

  background: url(../porfolio/arq-efimera/img/01/banner_galaxy_beyond.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_gondolas_uno{

  background: url(../porfolio/gondolas/imge/01/banner_gondonlas-_1.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_mobiliario_uno{

  background: url(../porfolio/mobiliario/img/01/banner_oficina_bogotá.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_mascotas{

  background: url(../porfolio/creativo/img/02/mascotas_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_canasta{

  background: url(../porfolio/creativo/img/03/canasta_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}


#banner_nan{

  background: url(../porfolio/publicidad/img/02/nestle_nan_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_vitrina{

  background: url(../porfolio/arq-comercial/img/p3/vitrina_buc_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}


#banner_xbox{

  background: url(../porfolio/publicidad/img/03/publi_xbox_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}


#banner_gondolas_3{

  background: url(../porfolio/gondolas/imge/03/gondolas_2_banner-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
#banner_nestle{

  background: url(../porfolio/publicidad/img/01/evento\ nestle_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}


#banner_mundo_playa{

  background: url(../porfolio/creativo/img/01/baners.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}


#banner_zona_fit{

  background: url(../porfolio/gondolas/imge/02/zona-fit_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_bold{

  background: url(../porfolio/arq-efimera/img/02/islas_boldBANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_t_aldo{

  background: url(../porfolio/arq-comercial/img/p2/banner-PANDORA.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_tcl{

  background: url(../porfolio/arq-efimera/img/03/wall_tcl_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_mobiliario_dos{

  background: url(../porfolio/mobiliario/img/03/mobiliario_3_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}


#banner_mobiliario_tres{

  background: url(../porfolio/mobiliario/img/02/baners-OFI_-BARRANQUILLA_BEYOND.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
#banner_apple{

  background: url(../porfolio/arq-efimera/img/04/isla_appleBANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

#banner_amd_mesa{

  background: url(../porfolio/arq-efimera/img/05/mesa\ amd_BANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
#banner_lg{

  background: url(../porfolio/arq-comercial/img/p1/banner-arq-comercial-lg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
#banner_lg_xboom_xperiencia_xboom{

  background: url(../porfolio/arq-efimera/img/06/mueble_lg_xboom_experiencia_arquitectura_efimeraBANNER-.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}
#title_banner {
    color: rgb(233, 233, 233) !important;
    font-size: 4vw; /* Ajuste del tamaño de la fuente en función del ancho de la pantalla */
    margin-top: 20px;
}

@media (max-width: 1000px) {
  #title_banner {
      font-size: 60px; /* Ajuste para pantallas más pequeñas */
      
  }
}


@media (max-width: 768px) {
    #title_banner {
        font-size: 50px; /* Ajuste para pantallas más pequeñas */
        
    }
}

@media (max-width: 480px) {
    #title_banner {
        font-size: 30px; /* Ajuste aún más grande para dispositivos móviles */
    }
}

.breadcrumb-item.active {
  color: rgb(255 255 255);
}

#nav_active {
  color: #df0613 !important;
  text-decoration: none;
  position: relative;
}

#nav_active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px; /* grosor de la línea */
  width: 100%;
  background-color: #df0613;
  border-radius: 9999px; /* redondeado completo */
  transform: translateY(5px); /* separación */
  z-index: -1; /* opcional: detrás del texto */
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 0,
  'GRAD' 0,
  'opsz' 40
}

.custom-file-upload {
  display: inline-block;
  padding: 10px 20px;
  background-color: #df0613;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  border: none;
  margin-right: 430px;
}

.custom-file-upload:hover {
  background-color: #e0e0e0;
  color: #000000;
  transition: 0.8s all ease;
  border: 1px solid var(--brand-color);
}
#file {
  display:none; /* Oculta el input original */
}

.blog-comments{

  border: solid 1px red;
  border-radius: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas */
  grid-template-rows: repeat(2, auto); /* 2 filas */
  gap: 10px; /* Espacio entre imágenes */
  max-width: 1300px; /* Ajusta el ancho máximo */
  margin: auto; /* Centrar en la página */
  margin-bottom: 50px;
}

.gallery-grid a {
  display: block;
  width: 100%;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* Cambia a 1 columna */
    grid-template-rows: auto; /* Las filas se ajustan automáticamente */
    max-width: 90%; /* Reduce el ancho en pantallas pequeñas */
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas de igual ancho */
  gap: 15px; /* Espacio entre imágenes */
  max-width: 1200px; /* Ancho máximo para la galería */
  margin: 0 auto 50px; /* Centrado horizontal con margen inferior */
  padding: 0 15px; /* Padding para dispositivos móviles */
 
}

/* Estilos para las imágenes dentro de la galería */
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  width: 48vh;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Efecto hover para las imágenes */
.gallery a:hover img {
  transform: scale(1.05);
}

/* Responsive: 2 columnas en tablets */
@media (max-width: 991px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 columna en móviles */
@media (max-width: 767px) {
  .gallery {
    grid-template-columns: 1fr;
    max-width: 400px;
  
  }
  .gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 40vh;
  }
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: rgb(255 255 255 / 75%);
  content: var(--bs-breadcrumb-divider, "/");
}
.nav-porfolio{
  margin-right: 20px;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 20px;
  
}


.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Espacio entre los botones */
  padding: 0;
  list-style: none;
}

.nav-porfolio {
  flex: 1 1 45%; /* En móviles, ocupa el 45% del ancho para dejar espacio entre elementos */
  text-align: le;
}

.filter-link {
  display: inline-flex;
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid red;
  border-radius: 8px;
  color: red;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.filter-link:hover {
  background-color: red;
  color: white;
}

/* Para pantallas más grandes (tablets y computadoras) */
@media (min-width: 768px) {
  .nav-porfolio {
    flex: 0 1 auto; /* Elementos en línea */
  }
}

/* slider antes y despues */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contenedor {
  position: relative;
  width: 900px;
  height: 500px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  align-content: ce;
}

.imagen-antes, .imagen-despues {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imagen-despues {
  width: 50%; /* Inicialmente la mitad revelada */
  overflow: hidden;
}

@media (max-width: 768px) {
  .contenedor {
    width: 66vh;
  }
}
@media (max-width: 450px) {
  .contenedor {
    width: 45vh;
  }
}
.slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  transform: translateY(-50%);
}


#portadas_galaxy {
  width: 100%; /* Ajusta el tamaño según necesites */
  max-width: 500px; /* Máximo tamaño opcional */
  display: block;
  transition: filter 0.8s ease-in-out; /* Transición suave */
  filter: brightness(50%); /* Inicialmente oscura */
}

#portadas_galaxy:hover {
  filter: brightness(100%); /* Recupera el color original */
}

#icono_footer{
  color: white !important;
}



.icon-hover {
  width: 40px;
  height: 40px;
  background-image: url(../images/animations/instagram.svg);
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
  cursor: pointer;
  color: red;
  animation-timing-function: ease-in-out;
}

.icon-hover:hover {
  background-image: url(../images/animations/instagram\ 2\ color.gif);
  width: 40px;
  height: 40px;
}

.icon-hover-fb{
  width: 40px;
  height: 40px;
  background-image: url(../images/animations/facebook.svg);
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
  cursor: pointer;
  color: red;
  animation-timing-function: ease-in-out;
}

.icon-hover-fb:hover {
  background-image: url(../images/animations/facebook_1.gif);
  width: 40px;
  height: 40px;
}


.icon-hover-tel{
  width: 40px;
  height: 40px;
  background-image: url(../images/animations/telefono.svg);
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
  cursor: pointer;
  color: red;
  animation-timing-function: ease-in-out;
}

.icon-hover-tel:hover {
  background-image: url(../images/animations/telefono_1.gif);
  width: 40px;
  height: 40px;
}


.icon-hover-ubi{
  width: 40px;
  height: 40px;
  background-image: url(../images/animations/ubi.svg);
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
  cursor: pointer;
  color: red;
  animation-timing-function: ease-in-out;
}

.icon-hover-ubi:hover {
  background-image: url(../images/animations/ubi.gif);
  width: 40px;
  height: 40px;
}


.icon-hover-mail{
  width: 40px;
  height: 40px;
  background-image: url(../images/animations/mail.svg);
  background-size: cover;
  background-position: center;
  transition: background-image 0.2s ease-in-out;
  cursor: pointer;
  color: red;
  animation-timing-function: ease-in-out;
}

.icon-hover-mail:hover {
  background-image: url(../images/animations/mail_1.gif);
  width: 40px;
  height: 40px;
}


.info h5:hover ~ .icon-hover-ubi,
.info:hover .icon-hover-ubi {
  background-image: url(../images/animations/ubi.gif);

}

.info h5:hover ~ .icon-hover-tel,
.info:hover .icon-hover-tel {
  background-image: url(../images/animations/telefono_1.gif);

}


.info h5:hover ~ .icon-hover-fb,
.info:hover .icon-hover-fb {
  background-image: url(../images/animations/facebook_1.gif);

}

.info h5:hover ~ .icon-hover,
.info:hover .icon-hover {
  background-image: url(../images/animations/instagram\ 2\ color.gif);

}

.info h5:hover ~ .icon-hover-mail,
.info:hover .icon-hover-mail {
  background-image: url(../images/animations/mail_1.gif);

}

/* Ocultar el gif por defecto */
.hidden {
  display: none;
}

/* Media query para dispositivos móviles y tabletas */
@media (max-width: 768px) {
  #myVideo {
    display: none; /* Ocultar el video en dispositivos móviles/tabletas */
  }

  #myGif {
    display: block; /* Mostrar el gif en dispositivos móviles/tabletas */
    width: 100%; /* Puedes ajustar el tamaño del gif si es necesario */
    height: auto;
    object-fit: cover;
  }

}

@media (min-width: 769px) {
  #myVideo {
    display: block; /* Mostrar el video en pantallas grandes */
  }

  #myGif {
    display: none; /* Ocultar el gif en pantallas grandes */
  }
}

/* animaciones suaves para los ítems del grid */
.portfolio-row .col-lg-4 {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ocultar elementos filtrados con fade */
.isotope-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

/* ✅ Mensaje de éxito */
.toast-success {
  background-color: #1FA84F !important;
  color: #fff !important;
  border-left: 5px solid #0e5c2c;
  font-weight: bold;
}

/* ❌ Mensaje de error */
.toast-error {
  background-color: #DF0613 !important;
  color: #fff !important;
  border-left: 5px solid #830000;
  font-weight: bold;
}

/* 🔔 Estilo general del toast */
#toast-container > div {
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
/* Estilos para el popup */
.form-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.popup-content p {
  font-size: 18px;
  margin: 20px 0;
  color: #333;
}

