@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*, *:before, *:after {
    box-sizing: border-box;
  }
  
  .content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    color: #333;
    font-family: 'Poppins', sans-serif;
   /* min-height: 100vh;
    background-color: #ecf0f9;
    background-attachment: fixed;*/
  } 
  .card-box{
    display: flex;
    /* margin: 0 auto; */
    justify-content: space-around;
    align-items: center;
    /* flex-wrap: wrap; */
    /* max-width: 1000px; */
    font-size: 18px;
    width: 100%;
    line-height: 1.5;
    font-weight: 300;
    color: #333;
    font-family: 'Poppins', sans-serif;
  }
  
  .heading {
    /* width: 100%; */
    margin-left: 1rem;
    font-weight: 900;
    font-size: 1.618rem;
    text-transform: uppercase;
    letter-spacing: 0.1ch;
    line-height: 1;
    padding-bottom: 0.5em;
    color: #222222;
    margin-bottom: 1rem;
    position: relative;
  }
  .heading:after {
    /* display: block;
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #1a9be6, #1a57e6);
    bottom: 0; */
  }
  
  .description {
    /* width: 100%; */
    margin-top: 0;
    margin-left: 1rem;
    /* margin-bottom: 3rem; */
    text-align: center;
  }
  .card-service {
    color: inherit;
    cursor: pointer;
    width: 294px;
    min-width: 294px;
    height: 400px;
    min-height: 400px;
    perspective: 1000px;
    margin: 1rem;
    position: relative;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
  }
  .cd-title-card{
    text-align: left;
  }
  @media screen and (max-width: 800px) {
    .card-service {
      width: calc(50% - 2rem);
    }
  }
  @media screen and (max-width: 963px){
    .card-box{
        flex-direction: column;
    }
  } 
  @media screen and (max-width: 500px) {
    .card-service {
      width: 100%;
    }
    .card-box{
        flex-direction: column;
    }
  }
  
  .front-cd,
  .back-cd {
    display: flex;
    border-radius: 6px;
    background-position: center;
    background-size: cover;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: ease-in-out 600ms;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 12px;
  }
  
  .front-cd {
    background-size: cover;
    padding: 2rem;
    font-size: 1.618rem;
    font-weight: 600;
    color: #fff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
  }
  .front-cd:before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(6 48 127 / 62%);
    opacity: 1.75;
    z-index: -1;
  }
  .card-service:hover .front-cd {
    transform: rotateY(180deg);
  }
  .card-service:nth-child(even):hover .front-cd {
    transform: rotateY(-180deg);
  }
  
  .back-cd {
    background: #fff;
    transform: rotateY(-180deg);
    padding: 0 2em;
  }
  .back-cd .cd-button-back {
    background: linear-gradient(135deg, #1a9be6, #1a57e6);
  }
  .back-cd .cd-button-back:before {
    box-shadow: 0 0 10px 10px rgba(26, 87, 230, 0.25);
    background-color: rgba(26, 87, 230, 0.25);
  }
  .card-service:hover .back-cd {
    transform: rotateY(0deg);
  }
  .card-service:nth-child(even) .back-cd {
    transform: rotateY(180deg);
  }
  .card-service:nth-child(even) .back-cd .cd-button-back {
    background: linear-gradient(135deg, #1a9be6, #1a57e6);
  }
  .card-service:nth-child(even) .back-cd .cd-button-back:before {
    box-shadow: 0 0 10px 10px rgba(26, 87, 230, 0.25);
    background-color: rgba(26, 87, 230, 0.25);
  }
  .card-service:nth-child(even):hover .back-cd {
    transform: rotateY(0deg);
  }
  
  .cd-button-back {
    transform: translateZ(40px);
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-weight: bold;
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 100px;
    font: inherit;
    border: none;
    position: relative;
    transform-style: preserve-3d;
    transition: 300ms ease;
  }
  .cd-button-back:before {
    transition: 300ms ease;
    position: absolute;
    display: block;
    content: "";
    transform: translateZ(-40px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    border-radius: 100px;
    left: 10px;
    top: 16px;
  }
  .cd-button-back:hover {
    transform: translateZ(55px);
  }
  .cd-button-back:hover:before {
    transform: translateZ(-55px);
  }
  .cd-button-back:active {
    transform: translateZ(20px);
  }
  .cd-button-back:active:before {
    transform: translateZ(-20px);
    top: 12px;
  }
  .ahundred{
    width: 100%;
    display: grid;
    place-items: center;
  }
  .ahundred a:hover{
    text-decoration: none;
    color: white;
  }
  .cd-text-back{
    text-align: left;
  }
  .cd-title-card{
    color: aliceblue;
  }



  /* grid layout */
:root {
    --font-size-title:24px;
    --font-size-relevant:.8rem;
    --accordion-size-text:14px;
    --accordion-title-size:1rem;
  }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.sec-flex-container{
    width: 100%;
   min-height: 100vh;
    padding: 64px;
    display: flex;
    gap: 20px;
}
.sec-flex-container .sec-leftSide-cont{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.title-container h1{
    width: 100%;
    margin-left: 1rem;
    font-weight: 900;
    font-size: var(--font-size-title);
    letter-spacing: 0.1ch;
    line-height: 1;
    padding-bottom: 0.5em;
    margin-bottom: 1rem;
    position: relative;
}
.title-container{
  display: flex;
  flex-direction: column-reverse;
  height: auto;
  width: 100%;
  /* height: 65%; */
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.left-top-text,
.left-bottom-text
{
    width: 50%;
}
.relevant-text{
    font-size: var(--font-size-relevant);
}
.sec-flex-container .sec-rightSide-cont{
    width: 40%;
    background-color:#fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.sec-leftSide-cont .left-cont-child{
    background-color:#fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    display: flex;
    width: 100%;
    min-height: 50%;
}
.sec-leftSide-cont .right-cont-child{
    background-color:#fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    width: 100%;
    min-height: 50%;
    display: flex;
}
.accordion{
    max-width: 530px;
    width: 100%;
    background: #fff;
    /* margin: 0 15px;
    padding: 15px; */
    border-radius: 8px;
}
.accordion .accordion-content{
    border-radius: 4px;
    background: #fff7;
    /* border: 1px solid #f; */
    overflow: hidden;
}
.accordion-content header{
    display: flex;
    padding: 0 15px;
    background-color: #fff;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
}
.accordion-content header .accordion-title{
    font-size: var(--accordion-title-size);
    font-weight: 500;
    color: #333;
}
.accordion-content header i{
font-size: 15px;
color: #333;
cursor: pointer;
}
.accordion-content .accordion-desc{
    padding:  0 15px;
    font-size: var(--accordion-size-text);
    margin: 0;
    color: #333;
    height: 0;
    font-weight: 400;
    transition: all 0.3s linear;
}

/* Pruebas grid */
  .main {
    margin: 0 auto;
    max-width: 100%;
    /* padding: 30px; */
  }
  
  .mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 16px;
    align-items: stretch;
    margin: 0 auto;
    
  }
  
  .grid-cell {
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: black;
    font-size: 2em;
    padding: 16px;
  }
  /* .grid-cell:before {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: 50%;
  } */
  .grid-cell .ar-box {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
   box-shadow: 0 7px 20px rgba(100, 28, 2, 0.135);
    border-radius: 25px; 
  }
  
  .ar-box {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 16px;
    /* flex-direction: column-reverse; */
    width: 100%;
    height: auto;
  }
  @media (max-width: 500px) {
    .mosaic-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
    }
  
    .cell-1 {
      grid-column: 1/4;
      grid-row: 2;
    }
  
    .cell-2 {
      grid-column: 3;
      grid-row: 1/3;
    }
  
    .cell-3 {
      grid-column: 1/4;
      grid-row: 3;
    }
  
    .cell-4 {
      grid-column: 1/4;
      grid-row: 1;
    }
    .ar-box{
      flex-direction: column-reverse;
    }
  }
  @media (min-width: 650px) {  
    .mosaic-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
    }
  
    .cell-1 {
      grid-column: 1/4;
      grid-row: 1;
    }
  
    /* .cell-2 {
      grid-column: 3;
      grid-row: 1/4;
    } */
  
    .cell-3 {
      grid-column: 1/4;
      grid-row: 2;
    }
  
    .cell-4 {
      grid-column: 1/4;
      grid-row: 3;
    }
  }
  .column-class-2{
    flex-direction: column-reverse;
    height: 100%;
  }
  @media (min-width: 860px) {  
   .mosaic-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 0.5fr);
    }
  
    .cell-1 {
      grid-column: 3/5;
      grid-row: 1;
    }
  
    /* .cell-2 {
        grid-column: 1/3;
        grid-row: 3/5;
    } */
  
    .cell-3 {
      grid-column: 1/5;
      grid-row: 2;
    }
  
    .cell-4 {
      grid-column: 1/3;
      grid-row: 1/2;
    }
  }
  @media screen and (min-width:501px) and (max-width:988px) {
    .cell-3 {
      grid-column: 1/5;
      grid-row: 3;
  }
  .cell-1{
    grid-column: 1/5;
    grid-row: 1;
  }
  .cell-4{
    grid-column: 1/5;
    grid-row: 2;
  }
  }
  .image-content{
    width: 100%;
    /* height: 50%; */
    display: grid;
    place-items: center;
    position: relative;
  }
  .image-content img{
    object-fit: cover;
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 16/9;
  }



  /* buttto */
  .more {
    --color: #0057a9;
    padding: 0.5em 0.7em;    
    background-color: transparent;
    border-radius: .3em;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    font-weight: 400;
    font-size: 17px;
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    color: var(--color);
    z-index: 1;
   }
   
   .more::before, .more ::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color);
    transition: 1s ease;
   }
   
   .more::before {
    top: -1em;
    left: -1em;
   }
   
   .more::after {
    left: calc(100% + 1em);
    top: calc(100% + 1em);
   }
   
   .more:hover::before, .more:hover::after {
    height: 410px;
    width: 410px;
   }
   
   .more:hover {
    text-decoration: none;
    color: rgb(247, 253, 254);
   }
   
   .more:active {
    filter: brightness(.8);
   }
  /*  */
.column-class{
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
}
  /* grid layout */

  /* Grid section our services */
  :root {
    --color-brand-primary: rgba(11, 45, 101, 0.778);
    --color-brand-accent: hsl(var(--color-brand-accent-h), 96%, 61%);
    --color-brand-accent-h: 16;
    --color-brand-accent-s: 96%;
    --color-brand-accent-l: 61%;
    --color-brand-accent-bg: hsl(calc(var(--color-brand-accent-h) + 17), 100%, 96%);
    --ratio: 1.4;
    --s-6: calc(var(--s-5) / var(--ratio));
    --s-5: calc(var(--s-4) / var(--ratio));
    --s-4: calc(var(--s-3) / var(--ratio));
    --s-3: calc(var(--s-2) / var(--ratio));
    --s-2: calc(var(--s-1) / var(--ratio));
    --s-1: calc(var(--s0) / var(--ratio));
    --s0: calc(1.05rem + 0.333vw);
    --s1: calc(var(--s0) * var(--ratio));
    --s2: calc(var(--s1) * var(--ratio));
    --s3: calc(var(--s2) * var(--ratio));
    --s4: calc(var(--s3) * var(--ratio));
    --s5: calc(var(--s4) * var(--ratio));
    --s6: calc(var(--s5) * var(--ratio));
    /* font-size: 62.5%;
    line-height: 1.6; */
    box-sizing: border-box;
  }
  
  /* *, *:before, *:after {
    box-sizing: inherit;
  } */
  
  body {
    /* font-size: 1.4rem; */
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: white;
    min-height: 100vh;
  }
  
  
  h2, h3, p, ul {
    margin: 0;
  }
  
  ul {
    padding: 0;
  }
  ul li {
    list-style-type: none;
  }
  ul li:before {
    content: "​";
    /* add zero-width space */
    /* clip: rect(0 0 0 0); */
    height: 1px;
    width: 1px;
    position: absolute;
  }
 ul li:hover:after{
  /* content: ""; */
    width: 100%;
    height: 100%;
    position: absolute;
    /* background-color: red; */
  }
  .c-section {
    /* padding: 0 var(--s3); */
  }
  .c-section__title {
    padding: var(--s2) var(--s3) var(--s4);
    /* margin: 0 calc(var(--s3) * -1); */
    margin: 0;
    color: #fff;
    font-size: var(--s4);
    font-weight: 900;
    display: flex;
      align-items: self-start;
      justify-content: flex-end;
      position: relative;
      text-align: unset;
    text-align: center;
    background: #005e85;
        font-size: 62.5%;
    line-height: 1.6;
  }
  
  .c-section__title:after {
    content: "";
    display: block;
    background-size: calc(var(--s5) * 3) calc(var(--s5) * 3);
    width: calc(var(--s5) * 3);
    height: calc(var(--s5) * 3);
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(1rem);
    z-index: 1;
    background-image: url("https://handheldproducts.mx/logos/hhr_logo.png");
  }
  
  .c-section span:before {
    content: "";
    display: block;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    transform: skew(0deg, 10deg);
    z-index: -1;
    background: var(--color-brand-primary);
    background-attachment: fixed;
    /* background-image: url(""); */
  }
  .c-section span:after {
    content: "Lorem ipsum, dolor sit amet consectetur adipisicing elit. Beatae accusamus eaque necessitatibus modi facilis aspernatur ut natus saepe!";
    display: block;
    font-size: 1.4rem;
    position: absolute;
    font-weight: 350;
    padding: 0 var(--s3);
    color: rgba(255, 255, 255, 0.85);
    left: 9px;
  }
  .c-services {
    display: grid;
    grid-gap: var(--s2);
    /* margin: 0 calc(var(--s3) * -1);
    padding: var(--s6) var(--s3); */
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(7, 1fr); 
    grid-template-rows: minmax(100px, 1fr);
  }
  .c-services::after{
    transform: skew(10deg, 0deg);
  }
  .c-services:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    /* transform: skew(0deg, 10deg); */
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='487' height='243.5' viewBox='0 0 1600 800'%3E%3Cpath fill='%23fdb9a0' d='M1102.5 734.8c2.5-1.2 24.8-8.6 25.6-7.5.5.7-3.9 23.8-4.6 24.5-.2.3-16-12.3-21-17zm123.8-505.7c0-.1-4.9-9.4-7-14.2-.1-.3-.3-1.1-.4-1.6-.1-.4-.3-.7-.6-.9-.3-.2-.6-.1-.8.1l-13.1 12.3c-.2.2-.3.5-.4.8 0 .3 0 .7.2 1 .1.1 1.4 2.5 2.1 3.6 2.4 3.7 6.5 12.1 6.5 12.2.2.3.4.5.7.6.3 0 .5-.1.7-.3 0 0 1.8-2.5 2.7-3.6 1.5-1.6 3-3.2 4.6-4.7 1.2-1.2 1.6-1.4 2.1-1.6.5-.3 1.1-.5 2.5-1.9.4-.5.5-1.3.2-1.8zM33 770.3c0-.7-.5-1.2-1.2-1.2-.1 0-.3 0-.4.1-1.6.2-14.3.1-22.2 0-.3 0-.6.1-.9.4-.2.2-.4.5-.4.9 0 .2 0 4.9.1 5.9l.4 13.6c0 .3.2.6.4.9.2.2.5.3.8.3h.1c7.3-.7 14.7-.9 22-.6.3 0 .7-.1.9-.3.2-.2.4-.6.4-.9-.1-6.1-.1-13.2 0-19.1z' style='&%2310;'/%3E%3Cpath fill='%23fee272' d='M171.1 383.4c1.3-2.5 14.3-22 15.6-21.6.8.3 11.5 21.2 11.5 22.1-.1.3-20.3.1-27.1-.5zm425.3 328.4c-.1-.1-6.7-8.2-9.7-12.5-.2-.3-.5-1-.7-1.5-.2-.4-.4-.7-.7-.8-.3-.1-.6 0-.8.3L574 712c-.2.2-.2.5-.2.9 0 .3.2.7.4.9.1.1 1.8 2.2 2.8 3.1 3.1 3.1 8.8 10.5 8.9 10.6.2.3.5.4.8.4.3 0 .5-.2.6-.5 0 0 1.2-2.8 2-4.1 1.1-1.9 2.3-3.7 3.5-5.5.9-1.4 1.3-1.7 1.7-2 .5-.4 1-.7 2.1-2.4.3-.3.2-1.1-.2-1.6zm131.1-531.9c.6.2 1.3-.2 1.4-.8v-.4c.2-1.4 2.8-12.6 4.5-19.5.1-.3 0-.6-.2-.8-.2-.3-.5-.4-.8-.5-.2 0-4.7-1.1-5.7-1.3l-13.4-2.7c-.3-.1-.7 0-.9.2-.2.2-.4.4-.5.6v.1c-.8 6.5-2.2 13.1-3.9 19.4-.1.3 0 .6.2.9.2.3.5.4.8.5 5.8 1.3 12.7 2.9 18.5 4.3zm1-1.8c-.1-.1-.2-.2-.4-.2.2 0 .3.1.4.2z'/%3E%3Cg fill='%23eac5e7'%3E%3Cpath d='M699.6 472.7c-1.5 0-2.8-.8-3.5-2.3-.8-1.9 0-4.2 1.9-5 3.7-1.6 6.8-4.7 8.4-8.5 1.6-3.8 1.7-8.1.2-11.9-.3-.9-.8-1.8-1.2-2.8-.8-1.7-1.8-3.7-2.3-5.9-.9-4.1-.2-8.6 2-12.8 1.7-3.1 4.1-6.1 7.6-9.1 1.6-1.4 4-1.2 5.3.4 1.4 1.6 1.2 4-.4 5.3-2.8 2.5-4.7 4.7-5.9 7-1.4 2.6-1.9 5.3-1.3 7.6.3 1.4 1 2.8 1.7 4.3l1.5 3.3c2.1 5.6 2 12-.3 17.6-2.3 5.5-6.8 10.1-12.3 12.5-.4.2-.9.3-1.4.3zm40.8-51.3c1.5-.2 3 .5 3.8 1.9 1.1 1.8.4 4.2-1.4 5.3-3.7 2.1-6.4 5.6-7.6 9.5-1.2 4-.8 8.4 1.1 12.1.4.9 1 1.7 1.6 2.7 1 1.7 2.2 3.5 3 5.7 1.4 4 1.2 8.7-.6 13.2-1.4 3.4-3.5 6.6-6.8 10.1-1.5 1.6-3.9 1.7-5.5.2-1.6-1.4-1.7-3.9-.2-5.4 2.6-2.8 4.3-5.3 5.3-7.7 1.1-2.8 1.3-5.6.5-7.9-.5-1.3-1.3-2.7-2.2-4.1-.6-1-1.3-2.1-1.9-3.2-2.8-5.4-3.4-11.9-1.7-17.8 1.8-5.9 5.8-11 11.2-14 .4-.4.9-.6 1.4-.6zM261.3 590.9c5.7 6.8 9 15.7 9.4 22.4.5 7.3-2.4 16.4-10.2 20.4-3 1.5-6.7 2.2-11.2 2.2-7.9-.1-12.9-2.9-15.4-8.4-2.1-4.7-2.3-11.4 1.8-15.9 3.2-3.5 7.8-4.1 11.2-1.6 1.2.9 1.5 2.7.6 3.9-.9 1.2-2.7 1.5-3.9.6-1.8-1.3-3.6.6-3.8.8-2.4 2.6-2.1 7-.8 9.9 1.5 3.4 4.7 5 10.4 5.1 3.6 0 6.4-.5 8.6-1.6 4.7-2.4 7.7-8.6 7.2-15-.5-7.3-5.3-18.2-13-23.9-4.2-3.1-8.5-4.1-12.9-3.1-3.1.7-6.2 2.4-9.7 5-6.6 5.1-11.7 11.8-14.2 19-2.7 7.7-2.1 15.8 1.9 23.9.7 1.4.1 3.1-1.3 3.7-1.4.7-3.1.1-3.7-1.3-4.6-9.4-5.4-19.2-2.2-28.2 2.9-8.2 8.6-15.9 16.1-21.6 4.1-3.1 8-5.1 11.8-6 6-1.4 12 0 17.5 4 2.1 1.7 4.1 3.6 5.8 5.7z'/%3E%3Ccircle cx='1013.7' cy='153.9' r='7.1'/%3E%3Ccircle cx='1024.3' cy='132.1' r='7.1'/%3E%3Ccircle cx='1037.3' cy='148.9' r='7.1'/%3E%3Cpath d='M1508.7 297.2c-4.8-5.4-9.7-10.8-14.8-16.2 5.6-5.6 11.1-11.5 15.6-18.2 1.2-1.7.7-4.1-1-5.2-1.7-1.2-4.1-.7-5.2 1-4.2 6.2-9.1 11.6-14.5 16.9-4.8-5-9.7-10-14.7-14.9-1.5-1.5-3.9-1.5-5.3 0-1.5 1.5-1.5 3.9 0 5.3 4.9 4.8 9.7 9.8 14.5 14.8-1.1 1.1-2.3 2.2-3.5 3.2-4.1 3.8-8.4 7.8-12.4 12-1.4 1.5-1.4 3.8 0 5.3 1.5 1.4 3.9 1.4 5.3-.1 3.9-4 8.1-7.9 12.1-11.7 1.2-1.1 2.3-2.2 3.5-3.3 4.9 5.3 9.8 10.6 14.6 15.9l.2.2c1.4 1.4 3.7 1.5 5.2.2 1.7-1.2 1.8-3.6.4-5.2zM327.6 248.6l-.4-2.6c-1.5-11.1-2.2-23.2-2.3-37 0-5.5 0-11.5.2-18.5v-2.3c0-5 0-11.2 3.9-13.5 2.2-1.3 5.1-1 8.5.9 5.7 3.1 13.2 8.7 17.5 14.9 5.5 7.8 7.3 16.9 5 25.7-3.2 12.3-15 31-30 32.1l-2.4.3zm4.5-69.4c-.2 0-.3 0-.4.1-.1.1-.7.5-1.1 2.7-.3 1.9-.3 4.2-.3 6.3v2.4c-.2 6.9-.2 12.8-.2 18.3.1 12.5.7 23.5 2 33.7 11-2.7 20.4-18.1 23-27.8 1.9-7.2.4-14.8-4.2-21.3-3.9-5.5-10.9-10.6-15.9-13.3-1.4-.8-2.4-1.1-2.9-1.1zM516.3 60.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6-.2.6-.7 1-1.2 1zm-10.2 9.7c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3s1.3.5 1.3 1.2c.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6 0 .1-.2.1-.3.1zm-12-6.1c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3-.2.2-.5.3-.8.3zm6.4-9.1c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7-.1.1-.3.1-.5.1zm6.2-.3c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6-.2.2-.5.4-.9.4zm522.6 327.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6-.2.6-.7 1-1.2 1zm-10.2 9.7c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3s1.3.5 1.3 1.2c.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6 0 .1-.2.1-.3.1zm-12-6.1c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3-.2.2-.5.3-.8.3zm6.4-9.1c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7-.1.1-.3.1-.5.1zm6.2-.3c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6-.2.2-.5.4-.9.4zm310 196.4c-1.4 0-2.9-.2-4.5-.7-8.4-2.7-16.6-12.7-18.7-20-.4-1.4-.7-2.9-.9-4.4-8.1 3.3-15.5 10.6-15.4 21 0 1.5-1.2 2.7-2.7 2.8-1.5 0-2.7-1.2-2.7-2.7-.1-6.7 2.4-12.9 7-18 3.6-4 8.4-7.1 13.7-8.8.5-6.5 3.1-12.9 7.4-17.4 7-7.4 18.2-8.9 27.3-10.1l.7-.1c1.5-.2 2.9.9 3.1 2.3.2 1.5-.9 2.9-2.3 3.1l-.7.1c-8.6 1.2-18.4 2.5-24 8.4-3 3.2-5 7.7-5.7 12.4 7.9-1 17.7 1.3 24.3 5.7 4.3 2.9 7.1 7.8 7.2 12.7.2 4.3-1.7 8.3-5.2 11.1-2.4 1.6-5 2.6-7.9 2.6zm-18.7-26.7c.1 1.5.4 3 .8 4.4 1.7 5.8 8.7 14.2 15.1 16.3 2.8.9 5.1.5 7.2-1.1 2.7-2.1 3.2-4.8 3.1-6.6-.1-3.2-2-6.4-4.8-8.3-5.7-3.9-14.7-5.8-21.4-4.7z'/%3E%3C/g%3E%3C/svg%3E"); */
  }
  .c-services__item {
    background: #fff;
    padding: calc(var(--s2) - 0.6rem) var(--s1);
    border-radius: 25px;
    box-shadow: 0 7px 20px rgba(100, 28, 2, 0.135);
    transition: all 300ms ease, transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
        font-size: 62.5%;
    line-height: 1.6;
  }
  .c-services__item h3 {
    color: var(--color-brand-primary);
    font-size: var(--s1);
    line-height: 1.2;
  }
  .c-services__item:after {
    /* content: ""; */
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 25px 0;
    cursor: pointer;
    transition: inherit;
    background-color: var(--color-brand-accent);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    /* background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjZmZmZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0iTGF5ZXIgMSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHg9IjBweCIgeT0iMHB4Ij48dGl0bGU+NTI8L3RpdGxlPjxwYXRoIGQ9Ik04MS4zMDMyOSwzOC41MjkzOUExNC4wMTgsMTQuMDE4LDAsMSwwLDYxLjQ3NywxOC43MDY3MUw0Ny4wMDMxNSwzMy4xNzkxNGExNC4wMzAzNywxNC4wMzAzNywwLDAsMCwwLDE5LjgyMTcxLDQuODAxMTMsNC44MDExMywwLDAsMS02Ljc4OTc5LDYuNzg5ODcsMjMuNjQzMjcsMjMuNjQzMjcsMCwwLDEsMC0zMy40MDE0NUw1NC42ODcyMSwxMS45MTY4NEEyMy42MjAzLDIzLjYyMDMsMCwwLDEsODguMDkzMDgsNDUuMzE5MjdMODAuOTIzOCw1Mi40ODcxMWE0LjgwMTE0LDQuODAxMTQsMCwwLDEtNi43ODk4LTYuNzg5ODdaTTExLjkwNzQxLDg4LjA5MzlhMjMuNjUwNTMsMjMuNjUwNTMsMCwwLDAsMzMuNDA1ODYtLjAwMUw1OS43ODY2NCw3My42MjE0N2EyMy42MTU4MywyMy42MTU4MywwLDAsMCwwLTMzLjQwMTQ1LDQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTc5LDYuNzg5ODgsMTQuMDE1MzEsMTQuMDE1MzEsMCwwLDEsMCwxOS44MjI2OEwzOC41MjM0OCw4MS4zMDRBMTQuMDE4LDE0LjAxOCwwLDEsMSwxOC42OTcyLDYxLjQ4MTM1TDI1Ljg2Niw1NC4zMTM1YTQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTgtNi43ODk4N2wtNy4xNjg3OSw3LjE2Nzg1QTIzLjY0NDg5LDIzLjY0NDg5LDAsMCwwLDExLjkwNzQxLDg4LjA5MzlaIj48L3BhdGg+PC9zdmc+"); */
  }
  .c-services__item p {
    margin-top: var(--s-1);
    font-weight: 400;
    color: #706d7e;
    font-size: 0.9rem;
    line-height: 1.6;
    user-select: none;
  }
  .c-services__item:hover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6,
  .item-7,
  .item-8{
    background-repeat: no-repeat;
    /* background-position: center center; */
    background-size: cover;
    transition: cubic-bezier(0, 0.69, 0.98, 0.18) 30s;
  }

  .item-1:hover{
    background: url('../img/nuestrosprincipalesservicios_rentadeterminalesportatileshh2.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .item-2:hover{
    background: url('../img/nuestros-principales-servicios_renta-de-impresoras-portatiles-hh.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .item-7:hover{
    background: url('../img/nuestros-principales-servicios_saga-wms-hh.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .item-3:hover{
    background: url('../img/10f.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .item-4:hover{
    background: url('../img/5f.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .item-5:hover{
    background: url('../img/12f.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .item-6:hover{
    background: url('../img/4f.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .item-7:hover{
    background: url('../img/12f.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .item-8:hover{
    background: url('../img/1f.webp');
    background-size: cover;
    background-position:  center;
    background-origin: border-box;
  }
  .c-services__item:hover h3 {
    color: #fff;
  }
  .c-services__item:hover p {
    /* color: rgba(255, 255, 255, 0.8);*/
    color: #ffff;
  }
  .c-services__item:hover:after {
    content: "";
    background-color: rgb(26 23 75 / 64%);
    z-index: -1;
    border-radius: 25px;
}
  .c-services__item:hover {
    transform: translateY(-5px);
  }
  .item-1{
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .item-2{
    grid-column: 3/span 2;
    grid-row: auto;
    
  }
  .item-3{
    grid-column: 1/span 3;
  }
  .item-4{
    grid-column: 4/-1;
    grid-row: 2;
  }
  .item-5{
    grid-column: 1/span 4;
  }
  .item-6{
    grid-column: 5/-1;
    grid-row: 3;
  }
  .item-7{
    grid-row: 1;
    grid-column: 5/7;
  }
  .item-8{
    grid-column: 1/8;
  }
  
  /* telefonos */
  @media screen and (max-width: 600px)  {
    .item-1{
      grid-column: 1/8;
      grid-row: 1;
    }
    .item-2{
      grid-column: 1/8;   
       grid-row: 2;
    }
    .item-3{
      grid-column: 1/8;   
      grid-row: 3;
    }
    .item-4{
      grid-column: 1/8;   
      grid-row: 4;
    }
    .item-7{
      grid-row: 7;
      grid-column: 1/8;
    }
    .item-5{
      grid-column: 1/8;
      grid-row: 5;
    }
    .item-6{
      grid-row: 6;
      grid-column: 1/8;
    }
    .item-8{
      grid-column: 1/8;
      grid-row: 8;
    }
  }
  /* Dispositivos medianos tablets y laptops*/
  @media (min-width: 601px) and (max-width: 1024px) {
    .item-1{
      grid-column: 1/4;
      grid-row: 1;
    }
    .item-2{
      grid-column: 4/8;
      grid-row: auto;
    }
    .item-7{
      grid-row: 4;
      grid-column: 1/4;
    }
    .item-5{
      grid-column: 1 /4;
      grid-row: 3;
    }
    .item-6{
      grid-row: 3;
      grid-column: 4/8;
    }
    .item-8{
      grid-column: 4/8;
      grid-row: 4;
    }
  }

  .spacer{
    aspect-ratio: 960/300;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .layer-1{
    background-image: url('../../assets/img/heikei/wave-haikei2.svg');
  }


  /* Grid section our services */


  /* About us */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {}
  a,
  a:hover,
  a:focus,
  a:active {
      text-decoration: none;
      outline: none;
  }
  
  a,
  a:active,
  a:focus {
      color: #6f6f6f;
      text-decoration: none;
      transition-timing-function: ease-in-out;
      -ms-transition-timing-function: ease-in-out;
      -moz-transition-timing-function: ease-in-out;
      -webkit-transition-timing-function: ease-in-out;
      -o-transition-timing-function: ease-in-out;
      transition-duration: .2s;
      -ms-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -webkit-transition-duration: .2s;
      -o-transition-duration: .2s;
  }
  
  ul {
      margin: 0;
      padding: 0;
      list-style: none;
  }
  img {
max-width: 100%;
height: auto;
}
  section {
      /* padding: 60px 0; */
     /* min-height: 100vh;*/
  }

.sec-title{
position:relative;
z-index: 1;
margin-bottom:60px;
}

.sec-title .title{
position: relative;
display: block;
font-size: 18px;
line-height: 24px;
color: #005e85;
font-weight: 500;
margin-bottom: 15px;
}

.sec-title h2{
position: relative;
display: block;
font-size:2rem;
line-height: 1.28em;
color: #222222;
font-weight: 600;
padding-bottom:18px;
}

.sec-title h2:before{
position:absolute;
content:'';
left:0px;
bottom:0px;
width:50px;
height:3px;
background-color:#005e85;
}

.sec-title .text{
position: relative;
font-size: 16px;
line-height: 26px;
color: #848484;
font-weight: 400;
margin-top: 35px;
}

.sec-title.light h2{
color: #ffffff;
}

.sec-title.text-center h2:before{
left:50%;
margin-left: -25px;
}

.btn-style-one{
position: relative;
display: inline-block;
font-size: 17px;
line-height: 30px;
color: #ffffff;
padding: 10px 30px;
font-weight: 600;
overflow: hidden;
letter-spacing: 0.02em;
background-color: #005e85;
}

.btn-style-one:hover{
background-color: #001e57;
color: #ffffff;
}
.about-section{
position: relative;
padding: 12px 0 70px;
}

.about-section .sec-title{
margin-bottom: 45px;
}

.about-section .content-column{
position: relative;
margin-bottom: 50px;
}

.about-section .content-column .inner-column{
position: relative;
padding-left: 30px;
}

.about-section .text{
margin-bottom: 21px;
font-size: 16px;
line-height: 26px;
color: #848484;
font-weight: 400;
}

.about-section .list-style-one{
margin-bottom: 45px;
}

/* .about-section .btn-box{
position: relative;
}

.about-section .btn-box a{
padding: 15px 50px;
} */

.about-section .image-column{
position: relative;
margin-bottom: 30px;
}

.about-section .image-column .text-layer{
position: absolute;
right: -110px;
top: 50%;
font-size: 325px;
line-height: 1em;
color: #ffffff;
margin-top: -175px;
font-weight: 500;
}

.about-section .image-column .inner-column{
position: relative;
padding-left: 120px;
padding-bottom: 125px;
}

.about-section .image-column .inner-column:before{
position: absolute;
left: -75px;
top: 65px;
height: 520px;
width: 520px;
background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
/* content: ""; */
}

.about-section .image-column .image-1{
position: relative;
width: 400px;
height: 600px;
}
.about-section .image-column .image-2{
position: absolute;
left: 0;
bottom: 0;
width: 300px;
}
.about-section .image-column .image-3{
position: absolute;
top: 31px;
right: -32px;
width: 200px;
}
.overlay{
position: absolute;
}
.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-column .video-link{
position: absolute;
left: 70px;
top: 170px;
}

.about-section .image-column .video-link .link{
position: relative;
display: block;
font-size: 22px;
color: #191e34;
font-weight: 400;
text-align: center;
height: 100px;
width: 100px;
line-height: 100px;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 30px 50px rgba(8,13,62,.15);
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
background-color: #191e34;
color: #fff
}
/*button*/
.button-especial{
width: 20em;
height: 2.3em;
margin: 0.5em;
background: #fff;
color: #010101;
border: none;
border-radius: 0.625em;
font-size: 20px;
font-weight: bold;
cursor: pointer;
position: relative;
z-index: 1;
overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;;
}

.button-especial:hover {
color: #fff;
}

.button-especial:after {
content: "";
background: #005e85;
position: absolute;
z-index: -1;
left: -20%;
right: -20%;
top: 0;
bottom: 0;
transform: skewX(-45deg) scale(0, 1);
transition: all 0.5s;
}

.button-especial:hover:after {
transform: skewX(-45deg) scale(1, 1);
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
/*button*/
@media screen and (min-width:240px) and (max-width:500px) {
  .about-section .image-column .inner-column{
    padding-left: 0px;
  }
  .about-section .image-column .image-1{
    width: 290px;
  }
  .about-section .image-column .image-2 {
    position: absolute;
    bottom: 90px;
    left: -23px;
    width: 169px;
}
.about-section .image-column .image-3 {
  right: -2%;
  width: 169px;
}
.button-especial{
width: 15rem;
}
}
@media screen and (min-width:501px) and (max-width:990px) {

.about-section .image-column .image-2{

}
.about-section .image-column .image-3{
right: 38px;
} 
}
@media  only screen and (min-width:990px) and (max-width:1024px){
.about-section .image-column .image-1{
height: 100%;
}
.about-section .image-column .inner-column{
  padding-left: 280px;
}
.about-section .image-column .image-3{
  right: 100px;
}
.about-section .image-column .image-2{

}
}
@media only screen and (min-width:1024px) and (max-width:1199px){
  .about-section .image-column .inner-column{
    padding-left: 350px;
  }
  .about-section .image-column .image-2{
    left: 100px;
  }
  .about-section .image-column .image-3 {
    right: 60px;
}
}
.btn-box{
  display: grid;
  place-items: center;
}
  /* About us */
  .blob-motion{
    position: relative;
    /* transform: translate(-24%,5%); */
  }