
/* REMINDER: if I change anything on root I must to change it on variables.css too */
:root{
    --accent-color: #175873;
    --sec-color: #B04025;
    --title-font: 'gordita', serif;
    --subtitle-font: 'Open Sans', serif;

    --accent-color-op1: rgba(59, 71, 87, 0.9);
    --accent-color-op2: rgba(59, 71, 87, 0.7);
}

body{
  background-color: #000;
}
/* HEADER*********** */
header{
    height: 150px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.599) !important;
    /* background: linear-gradient(0deg, rgba(59,71,87,0) 0%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.7) 100%); */
    /* background-color: rgba(41, 41, 41, 0.616);
    backdrop-filter: blur(10px); */
}
/* header .logo{
    margin-bottom: 20px;
    margin-top: 15px;
    
} */
/* header.smaller .logo{
   width: 100px;
    
} */
header .logo{
    width: 250px;
    height: auto;
  }
header.smaller:not(.header-bottom):not(.side-header):not(.force-header-mobile) {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.599) !important;
}
header.header-mobile {
    background: #111 !important;
    height: 110px;
}
header.smaller{
   height: 130px !important;
    
}

#mainmenu{
 margin-top: 7px;
}

#mainmenu li > ul {
    top: 40px;
    width: 300px;
}
#mainmenu li > ul li a{
    width: 300px;
}
header.smaller:not(.header-bottom):not(.side-header):not(.force-header-mobile) {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.599) !important;
}

header.smaller:not(.header-bottom):not(.side-header):not(.force-header-mobile) #mainmenu ul {
    top: 40px;
}

header.smaller{
   height: 150px !important;
    
}

#top-nav #mainmenu li a{
  padding: 2px 0px 2px 20px;

}
#top-nav ul#mainmenu {
  margin-bottom: 0 !important;
  padding-bottom: 0;
}
#top-nav #mainmenu{
  margin-top: 0 !important;

}
#mainmenu a {
    padding: 25px 0px 25px 32px;
    letter-spacing: 2px;
    font-weight: 500 !important;
}

#mainmenu a {
    padding: 25px 0px 25px 12px;
    letter-spacing: 2px;
    font-weight: 500 !important;
}

.de_phone-simple {
    padding-left: 20px;
}


.main-title-container{
    background-color: rgba(255, 255, 255, 0.24);
    padding: 2rem 1rem;
    border-radius: 5px;
}

#mainmenu li a{
    font-size: 14px;
    font-weight: 300;
}

header.autoshow.scrollOff {
    top: -112px !important;
}
header.autoshow {
    top: -112px;
}
.cf-padding1{
    padding-inline: 4rem;
}
.cf-padding2{
    padding-inline: 3rem;
}

/* END HEADER*********** */


/* HERO STYLE**************************** */
.about-hero-section{
  height: 90vh;
  display: flex;
  align-items: end;
}

.about-title::before{
  content: "";
  position: absolute;
  background-color: var(--accent-color);
  width: 400px;
  height: 1px;
  left: 0;
  transform: translateX(-100%);
  top: 50%;
}

.orange-box{
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
}

.spacing-box{
  height: 400px;
}
/* HERO STYLE**************************** */


.btns-container{
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

.sp1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -52px;
    width: 100%;
    height: 66px;
    background: url(z-images/stick-bg-pattern.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.custom-card {
    background-color: #f9f9ff; /* Light background */
    border: none;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 380px;
}
.icon-box {
    font-size: 50px;
    display: flex;
    justify-content: end;
    color: #9bcd46; /* Match the green shade */
}
.highlight {
    color: #9bcd46;
    font-size: 40px;
    font-weight: bold;
}

/* STYLES FOR CUS-SECTION1***************************** */
 .cont1 {
      display: flex;
      flex-direction: row;
      width: 100%;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .items {
      flex: 1;
      padding: 70px;
    }
    .image-container {
      flex: 1;
      background: #f0f0f000;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 70px;
      overflow: hidden;
      position: relative;
    }
    .image-container img {
      max-width: 100%;
      border-radius: 30px;
      opacity: 0;
      position: absolute;
      transition: opacity 0.6s ease, transform 0.6s ease;
      transform: scale(1.1);
    }
    .image-container img.active {
      opacity: 1;
      transform: scale(1);
    }
    .item {
      margin-bottom: 40px;
      cursor: pointer;
      padding-bottom: 40px;
      border-bottom: 1px solid rgb(190, 190, 190);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .item:hover {
      transform: scale(1.02);
    }
    .item h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }
    .item p {
      display: none;
      font-size: 14px;
      color: #e4e4e4;
      margin-top: 5px;
      opacity: 0;
      height: 0;
      overflow: hidden;
      transition: opacity 0.3s ease, height 0.3s ease;
    }
    .item.active p {
      display: block;
      opacity: 1;
      height: auto;
    }

     /* Responsiveness */
    @media (max-width: 768px) {
      .cont1 {
        flex-direction: column;
      }
      .items {
        border-right: none;
        /* border-bottom: 1px solid #ddd; */
        padding-bottom: 10px;
      }
      .image-container {
        padding-block: 200px;
        height: 400px;
      }
      .item h3 {
        font-size: 16px;
      }
      .item p {
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
     
      .cont1 {
        width: 100%;
      }
      .item h3 {
        font-size: 14px;
      }
      .item p {
        font-size: 12px;
      }
    }
/* STYLES FOR CUS-SECTION1***************************** */


/* STYLES FOR CUS-SECTION2***************************** */
.cus-cont2{
    background-color: rgba(194, 194, 194, 0.229);
    border-radius: 40px;
}
.scroll-container {
    height: 500px; /* Altura visible del scroll */
    overflow: hidden;
    position: relative;
}

/* Contenido con animación */
.scroll-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scroll 120s linear infinite;
    position: absolute;
}

.row-container {
    display: flex;
    gap: 20px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    flex-grow: 1;
}

/* Animación del scroll */
@keyframes scroll {
    0% {
    transform: translateY(0);
    }
    100% {
    transform: translateY(-100%);
    }
}

.stars {
    color: #9c181c;
    font-size: 20px;
    margin-bottom: 10px;
}

.highlight-text {
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
}
/* STYLES FOR CUS-SECTION2***************************** */

/* CARTAS DEL HOW IT WORKS********************* */
 .step-container {
      position: relative;
      background-color: #424242;
      color: white;
      border-radius: 35px;
      padding: 30px;
      max-width: 300px;
      text-align: center;
      border: 5px solid #ffc033;
      height: 350px;
    }
 .step-container.c1{
      border: 5px solid #2e93c1;
    }
 .step-container.c2{
      border: 5px solid #d43766;
    }
 .step-container.c3{
      border: 5px solid #26ab42;
    }

@media(max-width: 997px){
  .step-container {
      height: auto;
      margin-bottom: 100px;
      margin-inline: auto;
    }
}

    /* Círculo del número */
    .cus-step-number {
      position: absolute;
      top: 0;
      right: 25%;
      transform: translateX(50%) !important;
      transform: translateY(-50%) !important;
      width: 150px;
      height: 150px;
      line-height: 50px;
      font-size: 20px;
    }

    /* Flecha hacia la derecha */
    .arrow {
      position: absolute;
      top: 0px;
      right: 30px;
      width: 0;
      height: 0;
    }

    /* Línea amarilla */
    .divider {
      height: 2px;
      width: 50px;
      background-color: #fdbf00;
      margin: 10px auto;
    }

    .divider.c1{
      background-color:#2e93c1;
    }
 .divider.c2{
      background-color:#d43766;
    }
 .divider.c3{
      background-color:#26ab42;
    }

    /* Triángulo inferior */
    .step-footer {
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      border-top: 20px solid #fdbf00;
    }

     .step-footer.c1{
      border-top: 20px solid #2e93c1;
    }
 .step-footer.c2{
      border-top: 20px solid #d43766;
    }
 .step-footer.c3{
      border-top: 20px solid #26ab42;
    }

    /* Texto en el triángulo */
    .step-footer-text {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 12px;
      color: #fdbf00;
      font-weight: bold;
    }
/* CARTAS DEL HOW IT WORKS********************* */
/* STYLES FOR CUS-SECTION3***************************** */


    /* Content Wrapper */
    .content-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 80%;
      background: white;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    /* Image Section */
    .image-container {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    .image-container img {
      /* width: 100%; */
      height: 100%;
      /* object-fit: cover; */
    }

    /* List Section */
    .list-container {
        background-image: url(z-images/theme1.png) !important;
        position: absolute;
        padding-top: 40px;
        top: 0;
        right: 100px;
        width: 300px;
        height: 200px;
        border-radius: 20px;
        /* transform: translateY(100%); */
        flex: 1;
        background: white;
        position: relative;
        overflow: hidden;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .list {
      position: relative;
    }

    .list-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      color: white;
      border-radius:8px;
      margin: 4px;
      /* border-bottom: 1px solid #eee; */
      background: rgba(255, 255, 255, 0.1);
    }

    .list-item:last-child {
      border-bottom: none;
    }

    .list-item .name {
      font-weight: bold;
      font-size: 16px;
    }

    .list-item .price {
      font-size: 14px;
      color: #e7e7e7;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .content-wrapper {
        flex-direction: column;
      }

      .image-container,
      .list-container {
        width: 100%;
        height: auto;
      }

      .image-container img {
        height: auto;
      }
    }
/* STYLES FOR CUS-SECTION3***************************** */


/* GIPH STYLES******************************************** */
#video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: black; /* Background as fallback */
}

#video {
  width: 100vw; /* Full viewport width */
  object-fit: cover; /* Cover the entire section */
}

/* GIPH STYLES******************************************** */


/* GALLERY OF PRODUCST SECTION */
.designs-container {
  padding: 2rem 1rem;
}
.picframe {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: #f4f4f4ba;
  border-radius: 10px;
  padding: 1rem;
  transition-duration: 200ms !important;
  overflow: visible;
  font-weight: 500 !important;
}
.picframe .overlay:hover {
  opacity: 0;
}
.picframe:hover img {
  transform: scale(1.1) !important;
}

.designs-container img {
  padding: 1rem;
  border-radius: 10px;
}

.design-btn-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

blockquote.testimonial-big .name {
  font-size: 18px;
}

.form-container {
  background-color: rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  border-radius: 3px;
}

.home-container {
  margin-top: 150px;
}

.each-service > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#section1 {
  background-color: white;
  background: linear-gradient(
    0deg,
    rgba(253, 253, 253, 1) 0%,
    rgba(217, 217, 205, 0.8) 50%,
    rgba(252, 252, 252, 1) 100%
  );
}

.bg-image1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 50vw;
  height: 100%;
  background: url(z-images/animations/bg.svg);
}

.custom-play-icon {
  border: 1px solid black;
  border-radius: 50%;
  padding: 1.5rem;
  margin-right: 1rem;
}

#our-projects .item{
  border-bottom: none;
}
/* GALLERY OF PRODUCST SECTION */


.video2-margin{
  margin-top: -450px;
}
#section1{
    background-color: white;
    background: linear-gradient(0deg, rgba(253, 253, 253, 1) 0%, rgba(217, 217, 205, 0.8) 50%, rgba(252, 252, 252, 1) 100%);
}

.bg-image1{
    position: absolute;
    top:0;
    left: 0;
    z-index: 0;
    width: 50vw;
    height: 100%;
    background: url(z-images/animations/bg.svg);
}

.custom-play-icon{
    border: 1px solid black;
    border-radius: 50%;
    padding: 1.5rem;
    margin-right: 1rem;
}


.cus-pricing-box{
    background-color: rgb(241, 241, 241);
    color: var(--accent-color);
    height: 350px;
    padding: 2rem 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: -200px;
}

.center-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonials-container{
    padding: 1rem 3rem 3rem 3rem;
}

.bg-primary-custom {
    background-color: var(--accent-color) !important;
}

.contact-container{
    background-color: var(--accent-color);
    /* height: 160px !important; */
    color: white;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
}
.contact-container h2{
    color: white;
    margin-bottom: -20px;
}


.social-icons i:hover{
    background-color: transparent !important;
    transform: scale(1.2);
}

.box-container{
    background-color: var(--accent-color);
    width: 100%;
    height: 100%;
    padding: 5.5rem 3rem;
}



footer{
    background-color: #000;
    background-size: cover;
    color: rgb(32, 32, 32);
}



.col1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cus-item{
    width: calc(100% / 4);
    height: 300px;
    border: #006666;
    transition: all 250ms ease;
}
.cus-item.text{
    padding: 2rem 1.3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cus-item.text.a{
    background-color: #ffffff;
}
.cus-item.text.b{
    background-color: #f1f1f1;
}
.cus-item.text:hover{
    background-color: rgb(191, 191, 191);
    cursor: pointer;
}

.cus-item img{
    width: 100%;
    height: 100%;
}

.cta-container{
    background-color: var(--accent-color);
    padding-block: 4.5rem;
    padding-inline: 1rem;
    border-radius: 5px;
}



.service-container{
    height: 350px;
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
    margin-top: -200px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;

}

.cus-section1{
    width: 90%;
    margin-inline: auto;
    border-radius: 10px;
} 

.cus-container2{
    background-color: rgba(255, 255, 255, 0.86);
    box-shadow: rgba(228, 228, 228, 0.24) 0px 3px 8px;
    padding: 4.5rem 4rem;
    border-radius: 3px;
}

.cus-container3{
    padding: 1rem;
    background-color: rgb(230, 230, 230);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;

    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* VIDEO CON PERSPECTIVA */

.cus-img-section {
  height: 100vh; /* Ocupa el 100% de la altura de la ventana */
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 110px;
  /* background: url(z-images/bg-splash.jpg) !important; */
  overflow: hidden;
  position: relative;
}

.cus-img-container2,
.cus-img-container {
  perspective: 800px; /* Controla la profundidad inicial */
  width: 600px;
  transition: all 1s ease; /* Transición suave para el contenedor */
}

.cus-img-container{
    position: absolute;
    left: 20%;
    bottom: 38%;
    z-index: 100;
    border-radius: 30px;
}
.cus-img-container2{
    width: 40vw;
}

.perspective-image2,
.perspective-image {
  width: 100%;
  transform: rotateY(-20deg); /* Perspectiva inicial */
  transition: transform 1s ease; /* Transición suave en la imagen */
  transform-origin: center left;
}

.perspective-image{
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cus-img-container.active {
  perspective: none; /* Sin perspectiva */
  width: 60%; /* Imagen más grande */
  left: 15%;
  bottom: 10%;
}

.cus-img-container.active .perspective-image {
  transform: rotateY(0deg) scale(1.2); /* Imagen sin perspectiva y ampliada */
}



/* VIDEO CON PERSPECTIVA */







.cus-border-left{
  border-left: 1px solid white; 
  padding-left: 2rem
}

/* MOBILE FIXED ISSUES COMMON TO ALL THE LANDERS******************* */
/* clara acordate de agregar esta clase en los videos de las otras pags o no va a funcar */
.video-container2{
  margin-top: -350px;
}
.mt-md-70{
  margin-top: 70px;
}

.mt-md-200{
  margin-top: 200px;
}

@media(max-width: 997px){
  .cus-img-section {
    height: auto; 
    padding-top: 40px;
    padding-inline: 1rem;
  }

  .cus-img-container2,
  .cus-img-container {
    perspective: none; 
    width: 100%;
    transition: all 1s ease; 
  }

  .cus-img-container{
    position: relative;
    width: 80%;
    margin-inline: auto;
    z-index: 100;
    border-radius: 30px;
  }
  .cus-img-container2{
      display: none;
  }

  .perspective-image {
    width: 100%;
    transform: rotateY(0); 
    transition: transform 1s ease; 
    transform-origin: center left;
  }

  .cus-img-container.active {
    perspective: none; 
    width: 100%; 
    left: 0%;
  }

  .cus-img-container.active .perspective-image {
    transform: scale(1.01); 
  }

  .inner-padding{
    padding: 10px 0 10px 0 !important;
  }


  .mt-md-70{
    margin-top: 0px;
  }
  .video-container2{
    margin-top: -250px;
  }


  .cus-border-left{
    border-left: none; 
    padding-left: 0
  }

  .items{
    padding: 20px;
    padding-top: 50px;
  }
  .items .font-2rem{
    font-size: 20px !important;
  }
}

@media(max-width: 767px){
  .video-container2{
    margin-top: -100px;
  }
  .video-container2 figure.picframe{
    width: 70% ;
    margin-inline: auto;
  }
}
@media(max-width: 450px){
  .video-container2{
    margin-top: -60px;
  }
  .video-container2 figure.picframe{
    width: 60% ;
    margin-inline: auto;
  }
  header .logo{
    width: 200px;
    height: auto;
  }
  .header-mobile{
    height: 85px;
  }
  .header-mobile .container{
    background-color: black;
  }
}
/* MOBILE FIXED ISSUES COMMON TO ALL THE LANDERS******************* */












/* BREAKPOINTS************************************************* */

/* (default from bootstrap) */
@media (max-width: 1400px){
    
}


/* (default from bootstrap) */

@media (max-width: 1200px){
    .cus-item{
        width: calc(100% / 4);
        height: 400px;
        border: #006666;
        transition: all 250ms ease;
    }
    .custom-card {
      height: 430px;
    }
    .video2-margin{
      margin-top: -300px;
    }
    .logo{
        width: 250px;
    }
}


/* (default from bootstrap) */

@media (max-width: 992px){
    .mobile-d-none{
        display: none;
    }
    #section2-2 img,
    #section2-2 #jarallax-container-1{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    }
    .col1{
        flex-direction: column;
    }
    .cus-item{
        width: 100%;
        height: 300px;
        border: #006666;
        transition: all 250ms ease;
    }
    .cus-item img{
        width: 100%;
        height: auto;
    }
    .service-container{
        margin-top: 10px;
    }
    .cus-container3{
        height: auto;
    }
    .custom-card {
      height: 490px;
    }
    .list-container{
        top: 100px;
        left: -200px;
    }
    .video2-margin{
      margin-top: 100px;
    }
    #top-nav{
        background-color: #000 !important;
    }
    .cf-padding1{
    padding-inline: 1rem;
}
.cf-padding1{
    padding-inline: 1rem;
}
}


/* (default from bootstrap) */

@media (max-width: 768px){
    .contact-border{
        border-right: none;
        border-bottom: 1px solid var(--accent-color);
    }
    .cus-pricing-box{
        margin-top: auto;
        height: auto;
    }
    blockquote.testimonial-big{
        font-size: 18px;
    }
    .custom-card {
        background-color: #f9f9ff; /* Light background */
        border: none;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        height: auto;
    }
    .list-container{
        top: -20px;
        left: 0px;
        height: 250px;
    }
}


/* (default from bootstrap) */
@media (max-width: 576px){
    .btns-container{ 
        flex-direction: column;
    }
}


/* BREAKPOINTS************************************************* */