:root {
    --black-color: #2a2827ff;
    --blue-color: #69c5c8ff;
    --white-color: #e7e6ddff;
}

body {
    background-color: var(--white-color);
    padding-top: 3.625rem;
}

a {
    text-decoration: none;
}

p {width: 100%;}

.about {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    padding: 6rem 0rem;
}
.about .vignet {
    max-width: 33.3333%;
}

.about .content {
    padding-left: 2rem;
}

#service-1 {
    color: var(--white-color);
    background-color: var(--black-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 2rem 6rem;
    text-align: center;
    position: relative;
    max-width: 300px;
}
#service-1 .content {
    padding: 0rem;
}


.frame-top {
    background-color: var(--black-color);
    height:50%;
    width: 100%;
}



.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: calc(6rem + 1vw) 0rem;
}
.services h2 {
    width: 100%;
}
.services .content {
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-items: center;
    padding: 1rem 0rem;
    text-align: left;
    
}
.services .content .service {
    padding: 0rem 3rem;
    width:100%;
}
.services .content .service .icon {
    height:auto;
    width: 6rem;
}

.contact {
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
}
.contact .vignete {
    height: auto;
    width: 100%;
    margin:.15rem;
}
.contact .content {
    padding: 6rem 0rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    width: 100%;
}
.contact-form {
    padding-right: 3rem;
}
#captura input, #captura textarea {
    background-color: transparent;
    border:none;
    border-bottom: solid 1px var(--black-color);
    padding: .5rem;
    margin-bottom: .25rem;
    width: 100%;
}
.theme-blue {
    color: var(--black-color);
    background-color: var(--blue-color);
}
.theme-black {
    color: var(--white-color);
    background-color: var(--black-color);
}
.theme-white {
    color: var(--black-color);
    background-color: var(--white-color);
}

.w3-top {
    max-width: 100vw;
}
.w3-btn  {
    font-size: 1.15rem;
    font-weight: 600;
}

@media (orientation: landscape) and (min-width: 883px) {
  .about .vignet {
    margin-top: 1rem;
    margin-left: 3rem;
  }
  .about .content {
    margin-right: 3rem;
  }
}

@media (orientation: landscape) and (min-width: 568px) {
    .menu-top-items {
        display: none;
    }
    .sidebar-button {
        display:block;
    }
    .about .vignet {
      margin-top: 1rem;
      margin-left: 2.25rem;
    }
    .about .content {
      margin-right: 2.25rem;
    }
    .cta {
        padding-top: 1rem;
    }
    .services .w3-auto h2, .service h3 {
        padding-right: 3rem;        
    }
    .services .content {
        flex-direction:row;
        padding-left: 3rem;
    }
    .services h2 {
        padding-left: 3rem;
    }
    .services .content .service {
        padding:0rem;
    }
    .service p {
        padding-right: 3rem;
    }
    .service button {
        margin: 1rem 0rem;
    }
    .contact .content {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
}

@media (orientation: portrait) and (min-width: 320px) {
    .slide-show {
      height:35vh;
    }
    .slide-show .mySlides {
      height: 100%;
      width:fit-content;
    }

    .about {
      flex-direction:column-reverse;
      padding-right: 2rem;
    }
    .about .vignet {
      margin-top: 1rem;
      margin-left: 1rem;
      max-width: calc(100% - 2rem);
      max-width: -moz-calc(100% - 2rem);
      max-width: -webkit-calc(100% - 2rem);
    }
    .cta {
      text-align: center;
      padding-top: 1rem;
    }
    .services .w3-auto h2, .service h3 {
        padding-right: 3rem;        
    }
    .services .content {
        flex-direction:column;
        padding-left: 3rem;
    }
    .services h2 {
        padding-left: 3rem;
    }
    .services .content .service {
        padding:0rem;
    }
    .service p {
        padding-right: 3rem;
    }
    .service button {
        margin: 1rem 0rem;
    }
    .contact .content {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
  }
  
  .moving-background {
    width: 100%;
    height: 200px; /* Ajusta la altura según tus necesidades */
    background-image: url('../photo/photo-5.webp');
    background-repeat: repeat-x;
    background-size: contain;
    animation: moveBackground 20s linear infinite;
  }
  
  @keyframes moveBackground {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -400% 0;
    }
  }
  
  