@charset "UTF-8";

@font-face {
  font-family: "Roboto-900";
  src: url("../../fonts/Roboto-Black-900.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/*no encontrado*/
@font-face {
  font-family: "Roboto-800";
  src: url("../../fonts/Roboto-Bold-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-700";
  src: url("../../fonts/Roboto-Bold-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*
@font-face {
  font-family: "Roboto-600";
  src: url("../../fonts/Roboto-Bold-700.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
*/

@font-face {
  font-family: "Roboto-500";
  src: url("../../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto-400";
  src: url("../../fonts/Roboto-Regular-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-300";
  src: url("../../fonts/Roboto-Light-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "RobotoItalic-800";
  src: url("../../fonts/Roboto-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RobotoItalic-700";
  src: url("../../fonts/Roboto-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "RobotoItalic-400";
  src: url("../../fonts/Roboto-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "RobotoItalic-300";
  src: url("../../fonts/Roboto-ThinItalic-300.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter-400";
  src: url("../../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato-800";
  src: url("../../fonts/Lato-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-700";
  src: url("../../fonts/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato-400";
  src: url("../../fonts/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-color-black: #000;
  --bg-color-purple: #312783;
  --bg-color-greyblack: #1E1410;
  --bg-color-white: #FFF;
  --bg-color-grey: #4D4D4D;
  --header-height: 123px;
}


/*Estilos generales*/
.d-none {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  /* height: calc(100vh - 5.625rem); */
}

main {
  overflow: hidden;
}

hr,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}


a {
  text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--bg-color-black);
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

input,
textarea {
  border: none;
  outline: 0;
}

.text-center {
  text-align: center;
}

.container {
  width: 85%;
  margin: 0 auto;
}

/********* wpfc7 *******/
.wpcf7-spinner {
  display: none;
}

span.wpcf7-not-valid-tip {
  color: var(--bg-color-red);
  font-family: "Poppins-Light", sans-serif;
  font-size: 0.8rem;
  line-height: 0.8rem;
  /* 116.667% */
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.wpcf7-response-output{
  display: none;
}
/******** Clases generales************/
/** botones **/
.enlace-animacion{
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 18px 40px;

  /* color: var(--2, #312783); */
  /* background: ; */
  font-family: "Roboto-900",sans-serif;
  font-size: 16.039px;
  line-height: normal;
  &::after{
    content: '';
    height: 16px;
    display: inline-block;
    transition: all ease .5s;
    width: 0px;
    overflow: hidden;
    background: url('../../images/arrow-right-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  &:hover{
    gap: 15px;
    &::after{
      width: 20px;
    }
  }
}

/**********    Animaciones   ***********/
@keyframes backgroundZoom {
  0%,100% {
    transform: scale(1);
    /* Inicio y fin en tamaño normal */
  }

  50% {
    transform: scale(1.5);/* Escala al 150% en el punto medio */
  }
}
@keyframes backgroundZoom2 {
  0%,100% {
    transform: scale(1);
    /* Inicio y fin en tamaño normal */
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes bannerZoom {
  0% {
    transform: scale(1);
    /* Inicio y fin en tamaño normal */
  }
  /*
  50% {
    transform: scale(1.1);
  }
  */

  100% {
    transform: scale(1.2);
  }
}
/************************  Header *********************/
header {
  box-shadow: 0px 4.265px 7px 0px rgba(0, 0, 0, 0.10);
  position: fixed;
  z-index: 15;
  width: 100%;
  nav {
    background:transparent;
    background: var(--bg-color-white);
    padding: 14px 0;
    box-sizing: border-box;
    .container{
      display: flex;
      flex-direction: column;

      .d-flex {
        display:  flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        gap: 1rem;
        .container-img {
          width: auto;
          height: 4rem;
          img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
          }
        }
  
        .header-menu {
          max-width: 750px;
          flex-grow: 1;
          .contenedor-forma {
            &>ul {
              display: flex;
              justify-content: space-between;
              align-items: center;
              flex-grow: 1;
              hr{
                height: 15px;
                width: 1px;
                border: none;
                background: black;
              }
              &>hr:first-of-type{
                display: none;
              }
              
              &>li {
                color: var(--bg-color-greyblack);
                text-align: center;
                font-family: "Roboto-400",sans-serif;
                font-size: 13.5px;
                line-height: normal;
  
                position: relative;
                align-items: center;
                display: flex;
                gap: 3px;
  
                position: relative;
                /*padding: 10px 13px;*/
                padding: 0.8rem;
                box-sizing: border-box;
                border-radius: 10px;
  
                &:hover{
                  a{
                    color: var(--bg-color-purple);
                    text-align: center;
                    font-family: "Roboto-800",sans-serif;
                    font-size: 13.5px;
                    line-height: normal;
                  }
                }
                div.submenu {
                  background: var(--bg-color-white);
                  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.10);
                  position: absolute;
                  bottom: 0;
                  left: 50%;
                  transform: translate(-50%, calc(100% + 25px));
  
                  min-width: 168px;
                  ul {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    li {
                      width: 100%;
                      min-height: 58px;
                      display: flex;
                      align-items: center;
                      a{
                        position: relative;
  
                        color: var(--bg-color-greyblack);
                        text-align: center;
                        font-family: "Roboto-400",sans-serif;
                        font-size: 12px;
                        line-height: 12px; /* 100% */
    
                        padding: 12px 10px;
                        box-sizing: border-box;
    
                      }
                      &:hover{
                        a{
                          color: var(--bg-color-white);
                        }
                        background: var(--bg-color-purple);
                      }
                    }
  
                    li.venta{
                      a{
                        display: flex;
                        gap: 8px;
                        align-items: center;
                        justify-content: center;
                        &::before{
                          content: "";
                          background: url("../../images/header/venta-icon-green.svg");
                          background-repeat: no-repeat;
                          background-size: contain;
                          background-position: center;
            
                          display: inline-block;
                          width: 24px;
                          height: 24px;
                        }
                        &:hover{
                          &::before{
                            background: url("../../images/header/venta-icon-white.svg");
                            background-repeat: no-repeat;
                            background-size: contain;
                            background-position: center;
                          }
                        }
                      }
                    }
                    li.alquiler{
                      a{
                        display: flex;
                        gap: 8px;
                        align-items: center;
                        justify-content: center;
                        &::before{
                          content: "";
                          background: url("../../images/header/alquiler-icon-green.svg");
                          background-repeat: no-repeat;
                          background-size: contain;
                          background-position: center;
            
                          display: inline-block;
                          width: 24px;
                          height: 24px;
                        }
                        &:hover{
                          &::before{
                            background: url("../../images/header/alquiler-icon-white.svg");
                            background-repeat: no-repeat;
                            background-size: contain;
                            background-position: center;
                          }
                        }
                      }
                    }
                    hr{
                      width: 100%;
                      background: #E0E0E0;
                      height: 1px;
                    }
  
                  }
                }
              }
  
              li.no-redirect {
                cursor: default;
                a {
                  cursor: none;
                  pointer-events: none;
                }
                
                div.submenu {
                  ul {
                    li {
                      display: flex;
                      justify-content: center;
                      cursor: pointer;
                      a {
                        cursor: pointer;
                        pointer-events: unset;
                      }
                    }
                    li.separator{
                      padding: 0;
                      min-height: unset;
                      &::after{
                        display: none;
                      }
                    }
                  }
                }
                
              }
  
              &>li{
                display: flex;
                flex-direction: row;
                gap: 1px;
                align-items: center;
                justify-content: center;
  
                display: flex;
                flex-direction: column;
                flex-shrink: 0;
                &::after{
                  content: "";
                  background: url("../../images/arrow-down-black.svg");
                  background-repeat: no-repeat;
                  background-size: contain;
                  background-position: center;
    
                  display: inline-block;
                  width: 11px;
                  height: 11px;
                }
                &:hover{
                  
                  &::after{
                    content: "";
                    background: url("../../images/arrow-down-purple.svg");
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: center;
      
                    display: inline-block;
                    width: 11px;
                    height: 11px;
                  }
                }
  
              }
              li.separator{
                padding: 0;
                min-height: unset;
                &::after{
                  display: none;
                }
              }
              li.contactanos{
                color: var(--bg-color-white);
                font-family: "Satoshi-700",sans-serif;
                font-size: 18px;
                line-height: 18px;
  
                border-radius: 10px;
                background: var(--bg-color-orange);
                padding: 10px 13px;
                box-sizing: border-box;
              }
  
            }
          }
        }
  
        button.burger-button {
          display: none;
  
          background: unset;
          cursor: pointer;
          position: absolute;
          right: 0;
  
          width: 24px;
          height: 20px;
          position: relative;
          &::before{
            
            content: '';
            height: 19px;
            width: 23px;
            position: absolute;
            top: 0;
            left: 0;
  
            background: url('../../images/burger-icon.svg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
          }
        }
        .frase{
          position: relative;
          display: flex;
          flex-direction: row;
          justify-content: stretch;
          flex-shrink: 0;
          padding-left: 3rem;
          gap: 15px;
          &::before{
              position: absolute;
            content: '';
            height: 100%;
            display: inline-block;
            width: 5px;
            background: linear-gradient(0deg, #312783 13.32%, #2F2985 56.53%, #005FB7 99.74%);
            transform: translateX(-1rem);
          }
          .container-frase{
            padding: 8px 0;
            box-sizing: border-box;
            
            color: var(--bg-color-black);
            font-family: "Roboto-400",sans-serif;
            font-size: 0.75rem;
            line-height: normal;
            strong{
              color: var(--bg-color-purple);
              font-family: "Roboto-700",sans-serif;
              font-size: 0.75rem;
              line-height: normal;
            }
          }
        }
        .content-elements-left-header{
          display: flex;
          align-items: center;
          justify-content: center;
          .selector-idiomas{
            position: relative;
            cursor: pointer;
            .icon {
              height: 3rem;
              display: flex;
              align-items: center;
              justify-content: center;
              gap: 2.35px;
              img {
                border-radius: 50%;
              }
              &:hover{
                &+.languages{
                  opacity: 1;
                  pointer-events: all;
                }
              }
            }
            .languages{
              position: absolute;
              left: 50%;
              transform: translateX(-50%);
              top: 34px;
              display: flex;
              flex-direction: column;
              gap: 5px;
              background: white;
              padding: 14px 11px;
              transition: all .4s ease;
              opacity: 0;
              pointer-events: none;
              li{
                padding-bottom: 6px;
                a{
                  display: flex;
                  align-items: center;
                  gap: 3.53px;
                  span{
                    color: #000;
                    text-align: center;
                    font-family: "Roboto-300",sans-serif;
                    font-size: 14.125px;
                    font-style: normal;
                    font-weight: 300;
                    line-height: normal;
                  }
                }
                &:not(:first-child){
                  padding-top: 6px;
                  border-top: 1.7px solid #E0E0E0;
                }
              }
              &:hover{
                opacity: 1;
                pointer-events: all;
              }
            }
            
          }
        }
      }
      .breadcrumbs{
        padding: 16px 0 0 0;
        box-sizing: border-box;

        display: flex;
        gap: 6px;
        align-items: center;
        a,span{
          color: var(--bg-color-grey);
          font-family: "Roboto-400",sans-serif;
          font-size: 13.37px;
          line-height: 17.302px; /* 129.412% */
        }
      }
    }
  }
  nav.bg-transparent{
    background: transparent;
    .d-flex {
      .header-menu {
        .contenedor-forma {
          &>ul{
            li{
              color: var(--bg-color-white);
              font-family: "Satoshi-700",sans-serif;
              font-size: 18px;
              line-height: 18px;
            }
            li.first-menu{
              &::after{
                content: "";
                background: url("../../images/header/arrow-down-white.svg");
                background-repeat: no-repeat;
                background-size: contain;
                background-position: center;
  
                display: inline-block;
                width: 10px;
                height: 6px;
              }
            }
          }
        }
      }
    }
  }

}

/************************  Aside *********************/
aside.open-aside{
    z-index: 99;
  top: 0%;
  transform: translateY(0%);
}
div.aside-noticias.open-aside{
  left: 0%;
}

div.aside-noticias{
  display: flex;
  flex-direction: column;
  border-radius: 0px 20px 20px 0px;
  background: #FFF;
  box-shadow: 0px 1px 10px 0px rgba(0, 165, 153, 0.19);

  box-sizing: border-box;
  height: 100vh;
  top: 0;
  width: 50%;
  position: fixed;
  transition: all .5s ease;
  left: -100%;
  z-index: 11;
  .container-aside{
    width: 80%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    .container-close-aside{
      height: 120px;
      display: flex;
      align-items: center;
      button{
        &::before{
          content: '';
          display: inline-block;
          height: 29px;
          width: 29px;
          
          background: url('../../images/close-card-collaborator.svg');
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;

        }
      }
    }
    hr{
      width: 90%;
      margin-left: auto;
    }
    .filters{
      margin-top: 20px;
      width: 90%;
      margin-left: auto;
      .card-filter{
        .container-filter{
          label{
            color: var(--bg-color-green);
            font-family: "Satoshi-500",sans-serif;
            font-size: 15px;
            line-height: 19px; /* 126.667% */
          }
          ul{
            display: flex;
            flex-direction: column;
            gap:15px;
  
            margin-top: 20px;
            li{
              list-style: none;
              a{
                color: var(--bg-color-grey);
                font-family:"Satoshi-300",sans-serif;
                font-size: 14px;
                line-height: 14px;
                display: flex;
                --bg-filter-blog:white;
  
                display: flex;
                align-items: center;
                &::before {
                  content: "";
                  background: var(--bg-filter-blog);
                  color: transparent;
                  width: 0.9rem;
                  height: 0.9rem;
                  border-radius: 3px;
                  border: 1px solid #4D4D4D;
                  margin-right: 0.3rem;
                }
              }
            }
            li.active{
              a{
                &::before {
                  content: "";
                  background: var(--bg-color-green);
                  color: transparent;
                  width: 0.9rem;
                  height: 0.9rem;
                  border-radius: 3px;
                  border: 1px solid #4D4D4D;
                  margin-right: 0.3rem;
                }
              }
              
            }
          }
        }
      }
    }
  }
}


aside{
  display: flex;
  flex-direction: column;
  border-radius: 20px 0px 0px 20px;

  box-sizing: border-box;
  height: 100vh;
  top: 0;
  width: 100%;
  position: fixed;
  top: 0;
  transition: all 1.0s ease;
  z-index: 11;
  transform: translateY(-200%);
  &::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

    background: linear-gradient(0deg, #312783 17.19%, #2F2985 75.68%, #005FB7 99.72%);
    z-index: 12;
    opacity: 0.9;
  }
  .container-img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 11;
    opacity: 0.5;
    img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
    }
  }

  .container-aside{
    align-items: center;
    width: 80%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    gap: 50px;
    z-index: 13;
    padding: 50px 0;
    box-sizing: border-box;
    .container-close-aside{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 7rem;
      .close-aside{
        background: none;
        position: relative;
        width: 29px;
        height: 29px;
        cursor: pointer;
        &::before{
          content: '';
          height: 30px;
          width: 30px;
          top: 0;
          left: 0;
          position: absolute;

          background: url('../../images/close-aside.svg');
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
        }
          
      }
    }
    .menu-principal{
      z-index: 13;
      flex-grow: 1;
      ul{
        display: flex;
        flex-direction: column;
        gap:40px;
        align-items: center;

        transition: all ease .5s;
        li{
          .item-separador{
            display: flex;
            flex-direction: column;
            a{
              color: var(--5, #FFF);
              text-align: center;
              font-family: "Roboto-500",sans-serif;
              font-size: 18px;
              line-height: 18px; /* 100% */
            }
          }
        }
        li.no-active{
          max-height: 0rem;
          overflow: auto;
        }
        li.no-redirect{
          position: relative;
          cursor: pointer;
          a{
            cursor: pointer;
            pointer-events: none;
          }
        }
        li.first-menu{
          div{
            &>a{
              display: flex;
              align-items: center;
              gap: 10px;
              justify-content: center;
  
              transition: all ease .5s;
            }
          }
        }
        li.first-menu.active{
          div{
            &>a{
              &::after{      
                transform: rotate(0deg);
              }
            }
          }
          .aside-submenu{
            max-height: 10rem;
            margin-top: 30px;
          }
        }

        .aside-submenu{
          transition: all ease .5s;
          max-height: 0rem;
          overflow: hidden;
          ul{
            display: flex;
            flex-direction: column;
            
            transition: all ease .5s;
            gap: 25px;
            li{
              a{
                color: var(--5, #FFF);
                font-family: "Roboto-300",sans-serif;
                font-size: 18px;
                line-height: 18px;
              }
            }
          }
        }
      }
      ul.compress{
        gap: 0;
      }
    }

    .container-marca{
      height: 42px;
      width: 156px;
      img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
      }
    }
      
  }
}

#container-modal-categories{
  display: none;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 10;
  position: fixed;
  top: 0;left: 0;
  transition:all .5s ease;
  background: #0B2880;
}

#container-modal-categories.opacity{
  opacity: 0.5;
  display: unset;
}

/************************  Pagina de reclamos *********************/
section.libro_reclamciones{
    margin: 1.5rem 0 6rem 0;
    *{
        font-family: "Roboto-400", sans-serif;
        line-height: 120%;
        font-size: 0.938rem;
        box-sizing: border-box;
    }
    .container{
        width: 55rem;
        max-width: 85%;
        .wpcf7.js{
            form{
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                br{
                    display: none !important;
                }
                input, textarea{
                    width: 100%;
                    padding: .5rem 1rem;
                    color: #9A9A9A;
                    border: 1px solid #312783;
                    border-radius: .5rem;
                    &::placeholder{
                        color: #9A9A9A;
                        font-size: 0.938rem;
                        font-family: "Roboto-400", sans-serif;
                        line-height: 120%;
                    }
                }
                & > div{
                    display: flex;
                    justify-content: center;
                    align-items: flex-start;
                    flex-direction: column;
                    width: 100%;
                    gap: 1rem;
                    &.wpcf7-response-output{
                        display: none;
                    }
                    & > p, & > ul{
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        & > span{
                            font-family: "Roboto-800", sans-serif;
                            font-weight: bold;
                            font-size: 1.125rem;
                            color: black;
                            display: flex;
                            justify-content: flex-start;
                            align-items: center;
                            gap: .5rem;
                        }
                        span{
                            &.wpcf7-form-control-wrap{
                                justify-content: flex-start;
                                align-items: center;
                                display: flex;
                            }
                            &.wpcf7-not-valid-tip{
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                background: white;
                                color: red;
                                padding: 0;
                                margin: 0;
                                transform: translate(1rem, 50%);
                                font-size: .8rem;
                            }
                            &.wpcf7-form-control{
                                display: flex;
                                justify-content: flex-start;
                                align-items: center;
                                gap: 1rem;
                                .wpcf7-list-item{
                                    &:has(input[type="radio"]), &:has(input[type="checkbox"]){
                                        position: relative;
                                        display: flex;
                                        justify-content: flex-start;
                                        align-items: center;
                                        gap: .5rem;
                                        margin: .5rem 0 1.5rem 0;
                                        padding: 0;
                                        &::before{
                                            position: relative;
                                            content: '';
                                            height: 1rem;
                                            width: auto;
                                            display: flex;
                                            aspect-ratio: 1 / 1;
                                            border-radius: 50%;
                                            border: 1px solid #000;
                                            background-color: transparent;
                                            transition: all .5s ease;
                                        }
                                        input{
                                            position: absolute;
                                            height: 100%;
                                            width: 100%;
                                            top: 0;
                                            left: 0;
                                            opacity: 0;
                                        }
                                    } 
                                    &:has(input[type="checkbox"]){
                                        margin: 0;
                                    }
                                    &:has(input[type="radio"]:checked), &:has(input[type="checkbox"]:checked){
                                        &::before{
                                            background-color: #000;
                                        }
                                    } 
                                }  
                            }
                        }
                    }
                    &.disabled{
                        input, textarea{
                            pointer-events: none;
                            background-color: rgba(154, 154, 154, 0.10);
                        }
                        span{
                            &.wpcf7-not-valid-tip{
                                display: none;
                            }
                        }
                    }
                    &.informacion_reclamo{
                        margin-bottom: 1.5rem;
                        & > p{
                            flex-direction: row;
                            justify-content: space-between;
                            align-items: center;
                            gap: 1rem;
                            @media (max-width: 900px){
                                flex-direction: column;
                            }
                            label{
                                &:first-child{
                                    font-family: "Roboto-800", sans-serif;
                                    font-size: 1.25rem;
                                    color: #312783;
                                    span{
                                        font-family: "Roboto-800", sans-serif;
                                        font-size: 1.25rem;
                                        color: #312783;
                                    }
                                    @media (max-width: 900px){
                                        text-align: center;
                                    }
                                }
                                &:last-child{
                                    padding: .5rem 1rem;
                                    border: 1px solid #312783;
                                    border-radius: .5rem;
                                    color: #9A9A9A;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    gap: 3rem;
                                    span{
                                        &[data-name="your-date"]{
                                            display: none;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    &.personal{
                        & > p{
                            display: grid;
                            grid-template-columns: repeat(2, minmax(0, 1fr));
                            @media (max-width: 700px){
                                display: flex;
                                flex-direction: column;
                            }
                            & > span{
                                grid-area: 1 / 1 / 2 / 3;
                            }
                            & > label{
                                &:nth-child(6){
                                    grid-area: 4 / 1 / 5 / 3;
                                }
                                &:nth-child(7){
                                    grid-area: 5 / 1 / 6 / 3;
                                }
                            }
                        }
                    }
                }
                & > p{
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    justify-content: center;
                    align-items: center;
                    button{
                        padding: 1rem;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        border-radius: 3rem;
                        gap: 1rem;
                        &#descargar_reclamo{
                            width: 25rem;
                            max-width: 100%;
                            background-color: #9A9A9A;
                            color: #fff;
                            font-family: "Roboto-400", sans-serif;
                            pointer-events: all;
                            transition: all .5s ease;
                            &.disabledBtn{
                                pointer-events: none;
                                background-color: rgba(154, 154, 154, 0.20);
                                color: #9A9A9A;
                                font-family: "Roboto-800", sans-serif;
                                font-weight: bold;
                            }
                        }
                        &[type="submit"]{
                            background: linear-gradient(270deg, #4C41AC 0%, #1F156D 100%);
                            padding: 1rem 2rem;
                            color: #fff;
                            font-size: 1rem;
                            text-transform: uppercase;
                            font-family: "Roboto-800", sans-serif;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 0;
                            overflow: hidden;
                            max-width: 9rem;
                            transition: all .5s ease;
                            svg{
                                position: relative;
                                height: 1.5rem;
                                max-width: 0;
                                opacity: 0;
                                transition: all .5s ease;
                            }
                            &:hover{
                                max-width: 15rem;
                                gap: .5rem;
                                svg{
                                    max-width: 5rem;
                                    opacity: 1;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media print {
  body * {
    visibility: hidden;
  }
  .libro_reclamciones , .libro_reclamciones * {
    visibility: visible;
  }
  .libro_reclamciones .wpcf7-form-control-wrap.recaptcha, .libro_reclamciones button{
      display: none !important;
  }
  .libro_reclamciones {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
}

/************************  Footer *********************/
footer{
  background: #1D1D1B;
  position: relative;
  &::before{
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    height: 70px;
    width: 100%;
    transform: translateY(-100%);
    background: url('../../images/footer_start.webp');
    background-position: center left 70%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  &>.container{
    padding: 70px 0;
    .first-section{
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      .container-logo-footer{
        width:40%;
        width: 271px;
        height: 75px;
        flex-shrink: 0;
        img{
          height: 100%;
          width: 100%;
          object-fit: cover;
          object-position: center;
        }
        a.enlace_libro{
            img{
                width: fit-content;
                height: 7rem;
                object-fit: cover;
                object-position: center;
                border-radius: .5rem;
                margin: 2rem auto;
            }
        }
      }
      .information{
        width:60%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;

        .info-place{
          display: flex;
          flex-direction: column;
          gap: 4px;
          /* min-width: 250px;
          max-width: 330px; */
          span{
            color: var(--bg-color-white);
            font-family: "Inter-400",sans-serif;
            font-size: 14.771px;
            line-height: normal;
            a{
              color: var(--bg-color-white);
              font-family: "Inter-400",sans-serif;
              font-size: 14.771px;
              line-height: normal;
            }
          }
          span.place{
            color: var(--bg-color-white);
            font-family: "Inter-400",sans-serif;
            font-size: 14.771px;
            font-weight: bold;
            line-height: normal;
          }
        }
      }
      
    }
  }
  .second-section{
    background: var(--bg-color-grey);
    padding: 12px 0;
    .container{
      display: flex;
      align-items: center;
      justify-items: center;
      span{
        color: var(--bg-color-white);
        font-family: "Inter-400",sans-serif;
        font-size: 12px;
        line-height: 12px;
        text-align: center;
        margin: 0 auto;
      }
    }
  }
}

/*************************  Bubble Whatsapp  ***********/
.bubble {
  position: fixed;
  right: 2rem;
  top: auto;
  bottom: 3rem;
  z-index: 10;
  border-radius: 24px;
  background: var(--Linear4, linear-gradient(233deg, #005FB7 14.22%, #1F1669 67.08%));
  padding: 12px;
  box-sizing: border-box;

  cursor: pointer;
  &>span {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.5rem;

    color: var(--5, #FFF);
    font-family: "Roboto-500",sans-serif;
    font-size: 15px;
    line-height: 18.564px; /* 123.763% */
    &::before{
      content: '';
      height: 23px;
      width: 23px;
      display: inline-block;

      background: url('../../images/whatsapp-icon-white.svg');
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
    }
  }

  .bubble-contact{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 15px));
    border-radius: 5px;
    background: var(--5, #FFF);
    width: 300px;

    transition: all ease .5s;
    max-height: 0rem;
    overflow: hidden;
    .description{
      border-radius: 10px;
      background: var(--Linear4, linear-gradient(233deg, #005FB7 14.22%, #1F1669 67.08%));

      padding: 9px 20px;
      box-sizing: border-box;
      span{
        color: var(--5, #FFF);
        font-family: "Roboto-600",sans-serif;
        font-size: 14px;
        line-height: 18px;
      }
    }
    .links{
      border-radius: 10px;
      padding: 20px 20px 20px 20px;
      box-sizing: border-box;
      .container-links{
        overflow-y: scroll;
        display: flex;
        flex-wrap: wrap;
        /* flex-direction: column; */
        gap: 7px;
        max-height: 300px;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        /****************/
        &::-webkit-scrollbar {
          width: 5px;               /* width of the entire scrollbar */
          border-radius: 3px;
        }
        
        &::-webkit-scrollbar-track {
          background: rgba(77, 77, 77, 0.2);
        }
        
        &::-webkit-scrollbar-thumb {
          background-color: var(--bg-color-purple);    /* color of the scroll thumb */
          border-radius: 20px;       /* roundness of the scroll thumb */
          /*border: 0px solid #4D4D4D;*/  /* creates padding around scroll thumb */
        }

        hr{
          width: 80%;
          height: 1px;
          background: #DFDFDF;
          
        }
        a{
          width: 100%;
          .container-enlace{
            display: flex;
            justify-content: space-between;
            align-items: center;
            .container-img{
              width: 25%;
              border-radius: 50%;
              width: 55px;
              aspect-ratio: 1/1;
              position: relative;
              &::after{
                content: '';
                aspect-ratio: 1/1;
                width: 10px;
                border-radius: 50%;
  
                background: #18C390;
                position: absolute;
                bottom: 0;
                right: 3px;
              }
  
              img{
                height: 100%;
                width: 100%;
                object-fit: cover;
                object-position: center;
              }
            }
            .enlace-info{
              width: 75%;
              display: flex;
              flex-direction: column;
              gap: 3px;
              span.name{
                color: var(--bg-color-grey);
                font-family: "Roboto-800",sans-serif;
                font-size: 16.328px;
                line-height: 17.289px;
              }
              span.status{
                color: #969696;
                font-family: "Roboto-RegularItalic",sans-serif;
                font-size: 13.447px;
                line-height: 14.407px; /* 107.143% */
              }
            }
          }
        }
      }
    }
  }
  .bubble-contact.active{
    max-height: 30rem;
  }
}

.contact{
  border-radius: 13.106px 0px 0px 13.106px;
  position: fixed;
  right: 0px;
  top: 40%;
  z-index: 12;

  .contact-title-icon{
    background: #8B8B8B;
    cursor: pointer;
    border-top-left-radius:13.106px;
    border-bottom-left-radius: 13.106px;
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    &:hover{
      &>span{
        &::after{
          max-height: 30rem;
        }
      }
    }
    &>span{
      padding: 20px 12px;
      box-sizing: border-box;

      writing-mode: vertical-rl; /* Establece la dirección del texto: de abajo hacia arriba */
      text-orientation: mixed;   /* Ajusta la orientación de los caracteres */
      transform: rotate(180deg); /* Rota el texto para que sea legible de abajo hacia arriba */
      letter-spacing: 2px;/*spacio texto*/

      color: var(--5, #FFF);
      text-align: center;
      font-family: "Roboto-700",sans-serif;
      font-size: 15.596px;
      line-height: normal;
      position: relative;

      &::after{
        background: var(--Linear-boton, linear-gradient(90deg, #4C41AC 0%, #1F156D 100%));
        content: '';
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        /* border-top-right-radius:13.106px; */
        border-bottom-right-radius: 13.106px;

        transition: all ease .9s;
        max-height: 0rem;
        transform-origin: top;
      }
    }
    .icon{
      padding: 12px;
      box-sizing: border-box;
      background: var(--Linear-boton, linear-gradient(270deg, #4C41AC 0%, #1F156D 100%));
      border-bottom-left-radius: 13.106px;
      &::before{
        content: '';
        height: 14px;
        width: 20px;
        display: inline-block;

        background: url('../../images/mail-icon-white.svg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }
    }
  }
}
.contacto-flotante{
  position: fixed;
  /*top: 0;*/
  bottom: 0;

  transition: all ease .5s;
  /* left: 100%; */
  right: -100%;
  /* transform: translate(calc(100%), -50%); */

  /*height: 100vh;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 11;
  width: 40%;
  @media (max-width: 500px){
      top: 0;
      height: 100vh !important;
      bottom: auto;
      z-index: 99;
  }
  &::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;

    opacity: 0.9;
    background: var(--bg-color-grey);
    z-index: -1;
  }
  .container-img-fondo{
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  .container-contacto-flotante{
    display: flex;
    flex-direction: column;
    gap: 25px;

    padding: 100px 120px 100px 50px;
    box-sizing: border-box;
    margin-left: auto;
    #close-contact-form{
      display: none;
      @media (max-width: 500px){
          position: absolute;
          right: 1rem;
      }
      &::before{
        content: '';
        display: inline-block;
        height: 29px;
        width: 29px;
        background: url('../../images/close-aside.svg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }

    }
    &>span{
      color: var(--5, #FFF);
      font-family: "Roboto-900",sans-serif;
      font-size: 28px;
      font-style: italic;
      line-height: 25px;

      padding: 10px 18px;
      box-sizing: border-box;
      border-radius: 10px;
      background: var(--bg-color-purple);

      width: fit-content;
      text-transform: uppercase;
      @media (max-width: 500px){
          font-size: 1rem;
          padding: .5rem 1rem;
      }
    }
    .flotante-form{
      .wpcf7{
        position: relative;
        border-radius: 10px;
        box-sizing: border-box;
        
        display: flex;
        /* justify-content: center; */
        align-items: center;
        form{
          display: flex;
          flex-direction: column;
          gap: 15px;
          &>div:not(.wpcf7-response-output){
            display: flex;
            flex-direction: column;
            gap: 15px;
          }
          div.container-field{
            p{
              display: flex;
              flex-direction: column;
              gap: 4px;
              span.field-name{
                color: var(--bg-color-white);
                font-family: "Roboto-400",sans-serif;
                font-size: 15px;
                line-height: 15px; /* 100% */
              }
            }
          }
          p{
            width: 100%;
            span{

              input,textarea{
                border-radius: 5px;
                box-sizing: border-box;
                background: #F5F5F5;
                padding: 10px 15px;

                color:var(--bg-color-greyblack);
                text-align: center;
                font-family:  "Roboto-400",sans-serif;
                font-size: 16px;
                line-height: 16px;
                text-align: start;

                width: 100%;
              }
            }
          }
          .wpcf7-not-valid-tip{
            display: contents;
            color: red !important;
            border-radius: unset !important;
            position: absolute !important;
            font-family: "Roboto-400",sans-serif !important;
            font-size: 12px !important;
            line-height: normal;
          }
          & > div:nth-last-child(2){
            display: flex;
            justify-content: end;
            p{
              width: fit-content;
              margin-left: auto;
              position: relative;
              display: flex;
              flex-direction: row;
              justify-content: center;
              align-items: center;
              transition: all ease .5s;
              padding: 0 10px;
              &:hover{
                padding: 0 25px;
                &::after{
                  width: 20px;
                }
              }
              &::before{
                content: '';
                height: 100%;
                width: 100%;
                background: var(--Linear-boton, linear-gradient(270deg, #4C41AC 0%, #1F156D 100%));
                border-radius: 54px;

                position: absolute;
              }
              &::after{
                content: '';
                height: 16px;
                display: inline-block;
                transition: all ease .5s;
                width: 0px;
                overflow: hidden;
                background: url('../../images/arrow-right-white.svg');
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
                z-index: 2;
              }
              input[type="submit"] {
                background: transparent;
                cursor: pointer;
                color: var(--bg-color-white);
                font-family: "Roboto-900",sans-serif;
                font-size: 16.039px;
                line-height: 16.039px;
                /*
                background: var(--Linear-boton, linear-gradient(270deg, #4C41AC 0%, #1F156D 100%));
                border-radius: 54px;
                */
                padding: 18px 19px;
                box-sizing: border-box;
                width: fit-content;
                margin-left: auto;
                position: relative;
                z-index: 2;
              }
            }
          }  
          div{
            width: 100%;
            &>p{
              display: flex;
              flex-direction: column;
              /* gap: 20px; */
            }
          }
          button{
              border-radius: 3rem;
              overflow: hidden;
              &[type="submit"]{
                            background: linear-gradient(270deg, #4C41AC 0%, #1F156D 100%);
                            padding: 1rem 2rem;
                            color: #fff;
                            font-size: 1rem;
                            text-transform: uppercase;
                            font-family: "Roboto-800", sans-serif;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 0;
                            overflow: hidden;
                            max-width: 9rem;
                            transition: all .5s ease;
                            svg{
                                position: relative;
                                height: 1.5rem;
                                max-width: 0;
                                opacity: 0;
                                transition: all .5s ease;
                            }
                            &:hover{
                                max-width: 15rem;
                                gap: .5rem;
                                svg{
                                    max-width: 5rem;
                                    opacity: 1;
                                }
                            }
                        }
          }
        }
      }
    }
    .container-marca{
      display: none;

      width: 150px;
      height: 42px;
      img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: center;
      }
    }

  }

}
.contact.active{
  .contact-title-icon{
    &>span{
      &::after{
        max-height: 30rem;
      }
    }
  }  
}
.contacto-flotante.active{
  right: 0%;
}

section.contacto{
  background: #EAEAEA;
  padding: 46px 0 calc(46px + 70px);
  box-sizing: border-box;
  .container{
    align-items: center;
    display: flex;
    gap: 70px;
    justify-content: space-between;
    align-items: stretch;
    .container-img{
      flex-shrink: 0;
      width: 35%;
      max-width: 410px;
      min-width: 400px;
      height: auto;
      max-height: 560px;
      border-radius: 60px;
      overflow: hidden;
      position: relative;
      /*
      &::before{
        content: '';
        position: absolute;
        height: 100%;
        width: 60%;
        background: linear-gradient(90deg, #EAEAEA 0%, rgba(234, 234, 234, 0.00) 100%);
        top: 0;
        left: 0;
      }
      */
      img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top center;
      }
      .context-contact-form{
        display: none;
        p{
          color: var(--7, #4D4D4D);
          font-family: "Roboto-400",sans-serif;
          font-size: 20px;
          line-height: 25px;
          strong{
            color: var(--2, #312783);
            font-family: "Roboto-700",sans-serif;
            font-size: 20px;
            line-height: 25px;
          }
        }
        h2{
          color: var(--bg-color-purple);
          font-family: "Roboto-800",sans-serif;
          font-size: 40px;
          line-height: 40px;
        }
      }
    }
    .introduccion-formulario{
      width: 65%;
      display: flex;
      flex-direction: column;
      gap: 24px;
      .introduccion{
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
        h2{
          color: var(--bg-color-purple);
          font-family: "Roboto-800",sans-serif;
          font-size: 40px;
          line-height: 40px;
        }
        p{
          color: var(--bg-color-grey);
          font-family: "Roboto-400",sans-serif;
          font-size: 20px;
          line-height: 25px; /* 117.955% */
          text-align: justify !important;
          strong{
            color: var(--bg-color-purple);
            font-family: "Roboto-700",sans-serif;
            font-size: 22px;
            line-height: 28px;
            text-align: justify !important;
          }
        }
      }
      .contact-form{
        .wpcf7{
          position: relative;
          border-radius: 10px;
          box-sizing: border-box;
          
          display: flex;
          /* justify-content: center; */
          align-items: center;
          form{
            display: flex;
            flex-direction: column;
            gap: 23px;
            width: 100%;
            &>div:not(.wpcf7-response-output){
              display: flex;
              flex-direction: row;
              gap: 15px;
            }
            div.container-field{
              p{
                display: flex;
                flex-direction: column;
                gap: 4px;
                span.field-name{
                  display: none;
                  color: var(--bg-color-white);
                  font-family: "Roboto-400",sans-serif;
                  font-size: 15px;
                  line-height: 15px; /* 100% */
                }
              }
            }
            p{
              width: 100%;
              span{
  
                input,textarea{

                  border: 1px solid #005DB5;
                  border-radius: 5px;
                  box-sizing: border-box;
                  background: #F5F5F5;
                  padding: 10px 15px;
  
                  color:var(--bg-color-greyblack);
                  text-align: center;
                  font-family:  "Roboto-400",sans-serif;
                  font-size: 16px;
                  line-height: 16px;
                  text-align: start;
  
                  width: 100%;
                }
                textarea{
                  height: 5rem;
                }
              }
            }
            .wpcf7-not-valid-tip{
              display: contents;
              color: red !important;
              border-radius: unset !important;
              position: absolute !important;
              font-family: "Roboto-400",sans-serif !important;
              font-size: 12px !important;
              line-height: normal;
            }
            & > div:nth-last-child(2){
              display: flex;
              justify-content: end;
              p{
                width: fit-content;
                margin-right: auto;
                position: relative;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                transition: all ease .5s;
                padding: 0 10px;
                &:hover{
                  padding: 0 25px;
                  &::after{
                    width: 20px;
                  }
                }
                &::before{
                  content: '';
                  height: 100%;
                  width: 100%;
                  background: var(--Linear-boton, linear-gradient(270deg, #4C41AC 0%, #1F156D 100%));
                  border-radius: 8px;
  
                  position: absolute;
                }
                &::after{
                  content: '';
                  height: 16px;
                  display: inline-block;
                  transition: all ease .5s;
                  width: 0px;
                  overflow: hidden;
                  background: url('../../images/arrow-right-white.svg');
                  background-position: center;
                  background-repeat: no-repeat;
                  background-size: contain;
                  z-index: 2;
                }
                input[type="submit"] {
                  background: transparent;
                  cursor: pointer;
                  color: var(--bg-color-white);
                  font-family: "Roboto-900",sans-serif;
                  font-size: 16.039px;
                  line-height: 16.039px;
                  /*
                  background: var(--Linear-boton, linear-gradient(270deg, #4C41AC 0%, #1F156D 100%));
                  border-radius: 54px;
                  */
                  padding: 18px 19px;
                  box-sizing: border-box;
                  width: fit-content;
                  margin-left: auto;
                  position: relative;
                  z-index: 2;
                }
              }
            }  
            div{
              width: 100%;
              &>p{
                display: flex;
                flex-direction: column;
                /* gap: 20px; */
              }
            }
            
            button{
                border-radius: 3rem;
                overflow: hidden;
                &[type="submit"]{
                            background: linear-gradient(270deg, #4C41AC 0%, #1F156D 100%);
                            padding: 1rem 2rem;
                            color: #fff;
                            font-size: 1rem;
                            text-transform: uppercase;
                            font-family: "Roboto-800", sans-serif;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 0;
                            overflow: hidden;
                            max-width: 9rem;
                            transition: all .5s ease;
                            svg{
                                position: relative;
                                height: 1.5rem;
                                max-width: 0;
                                opacity: 0;
                                transition: all .5s ease;
                            }
                            &:hover{
                                max-width: 15rem;
                                gap: .5rem;
                                svg{
                                    max-width: 5rem;
                                    opacity: 1;
                                }
                            }
                        }
            }
          }
        }
      }
    }
  }
}

section.banner-page{
  margin-top:var(--header-height);
  box-sizing: border-box;
  position: relative;
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: stretch;
  /*
  &::before{
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    background: var(--Linear-BG, linear-gradient(0deg, #312783 13.32%, #2F2985 56.53%, #005FB7 99.74%));
    opacity: 0.9;

    margin-top: 110px;
  }
  */
  .container-img{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;

    /*margin-top: 110px;*/
    box-sizing: border-box;
    picture{
      height: 100%;
      width: 100%;
      display: block;
      img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
      }
    }
  }
  .container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    .page-title{
      height: 100%;
      width: 100%;
      .title-information{
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        h1{
          color: var(--bg-color-white);
          font-family: "Roboto-800",sans-serif;
          font-size: 33px;
          line-height: 40px;

          text-align: center;
        }
        .aditional-information-left{
          position: absolute;
          top: 50%;
          transform: translate(0%,-50%);
          left: 0rem;
          max-width: 250px;

          color: var(--bg-color-white);
          font-family: "RobotoItalic-400",sans-serif;
          font-size: 20px;
          line-height: 20px;
        }
        .aditional-information-right{
          position: absolute;
          top: 50%;
          transform: translate(0%,-100%);
          right: 0rem;
          max-width: 180px;

          .container_derecha{
            
            color: var(--bg-color-white);
            font-family: "Roboto-400",sans-serif;
            font-size: 18px;
            line-height: 20px;
            padding: 23px;
            box-sizing: border-box;

            position: relative;
            
            &::before{
              content: '';
              height: 100%;
              width: 100%;
              position: absolute;
              top: 0;
              left: 0;

              background: var(--bg-color-black);
              opacity: 0.5;
              z-index: -1;
              clip-path: polygon(10.00% 0.00%, 90% 0%,100% 10%, 100% 90.00%, 90.00% 100%, 0.00% 100%, 0.00% 10.00%)
            }
            /*
            &::after{
              content: '';
              height: 100%;
              width: 100%;
              position: absolute;
              top: 0;
              left: 0;
  
              background: #fff;
              z-index: -2;
              scale: 1.02;
              clip-path: polygon( 10.00% 0.00%, 99.40% 0.00%, 100% 90.00%, 90.00% 100%, 0.00% 100%, 0.00% 10.00% );
            }
            */
            .border-shape {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              z-index: -1;
            }
          }
        }
        
      }
    }


  }
}

svg.leader-line {
  transition: opacity 0.1s ease visibility 0.1s ease;
}

/***********************  SECCIONES FRONT-PAGE ******************/
section.main-banner{
  background: linear-gradient(180deg, #FFF 0%, #DFDFDF 100%);
  /* min-height: 100vh; */
  position: relative;
  /* padding-top: 90px; */
  box-sizing: border-box;
  /* background: #f8f8f8; */
  .container{
    /* display: flex;
    flex-direction: column;
    gap: 20px;

    height: 100%;
    justify-content: space-between; */
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 40rem minmax(0, 1fr);

    /* padding: calc( 30px + 90px ) 40px 30px 40px; */
    padding: calc( 30px + 90px ) 0px 30px 0px;
    box-sizing: border-box;
    height: fit-content !important;
    min-height: 100vh;
    position: relative;
    @media (max-width: 800px){
      grid-template-rows: minmax(0, 1fr) 24rem minmax(0, 1fr);
    }
    &::after{
      content: '';
      width: 100%;
      height: 52%;
      position: absolute;
      top: 0;
      left: 0;
      background: url('../../images/bg-mainbanner-top.webp');
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      z-index: 0;
      transform: translateX(-30%);
    }
    &::before{
      content: '';
      width: 100%;
      height: 58%;
      position: absolute;
      bottom: 0;
      right: 0;
      background: url(../../images/bg-mainbanner-bottom.webp);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      z-index: 0;
      transform: translateX(30%);
    }
    .title-main{
      width: fit-content;
      margin: 0 auto;
      hr{
        width: 10%;
        background: #312783;
        height: 4px;
      }
      p{
        color: var(--1, #000);
        font-family: "Roboto-400",sans-serif;
        font-size: 27.274px;
        line-height: normal;
        span{
          font-family: "Roboto-700",sans-serif;
        }
        strong{
          color: #312783;
          font-family: "Roboto-700",sans-serif;
          font-size: 29.397px;
          line-height: normal;
        }
      }
    }
    .main-banner-content_prueba{
      height: 100%;
      position: relative;
      z-index: 1;
      @media (max-width: 1150px){
        display: none;
      }
      #splide_productos_escritorio{
        height: 100%;
        .splide__arrows{
          .splide__arrow{
            background-color: transparent;
            border: none;
            width: auto;
            height: auto;
            opacity: 1;
            svg{
              height: 3rem;
              width: auto;
              aspect-ratio: 1 / 1;
              fill: transparent;
            }
          }
        }
          .splide__track, .splide__list{
            height: 100%;
          }
          .splide__slide{
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            .contenedor_splide{
              display: grid;
              grid-template-columns: 44% 56%;
              gap: 1rem;
              grid-template-rows: minmax(0, 1fr);
              align-items: flex-end;
              width: 80rem;
              max-width: 100%;
              height: 100%;
              .product-item{
                opacity: 0;
                height: 100%;
                width: fit-content;
                position: relative;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                justify-content: end;
                padding-bottom: 5rem;
                box-sizing: border-box;
                transition: all .5s ease;
                position: relative;
                &:first-child{
                  grid-area: 1 / 1 / 2 / 2;
                  align-items: flex-end;
                  .imagen{
                    width: 85%;
                  }
                }
                &:nth-child(2){
                  grid-area: 1 / 1 / 2 / 3;
                }
                &:last-child{
                  grid-area: 1 / 2 / 2 / 3;
                  align-items: flex-start;
                }
                .cartel {
                  position: absolute;
                  font-size: 1rem;
                  border: 2px solid #8D8D8D;
                  border-radius: 0.5rem;
                  background-color: transparent;
                  padding: 0.5rem 1rem;
                  text-align: center;
                  z-index: 10;
                  color: var(--7, #4D4D4D);
                  font-family: "Roboto-400",sans-serif;
                  font-size: 14px;
                  line-height: 20px;
                  transform: translate(-50%, -50%);
                  width: max-content;
                }
                svg{
                  position: relative;
                  z-index: 1;
                }
                .imagen {
                  width: fit-content;
                  max-height: 100%;
                  position: relative;
                  z-index: 2;
                }
                .imagen img {
                  width: 100%;
                  height: auto;
                  max-height: 100%;
                  object-fit: contain;
                  display: block;
                }
                .endCartel {
                  width: 1rem;
                  height: 1rem;
                  position: absolute;
                  background-color: transparent;
                  z-index: 5;
                }
                &.visible{
                  opacity: 1;
                }
                &.mid{
                  max-height: 20rem;
                  z-index: 3;
                  padding: 0;
                  transform: translateX(-7%);
                  margin: 0 auto;
                  width: 25rem;
                }
              }
            }
            &.pequenio{
              .contenedor_splide{
                grid-template-columns: 20% minmax(0, calc(60% - 2.5rem)) 20%;
                .product-item{
                  grid-area: auto;
                  padding-bottom: 5rem;
                  &.mid{
                    height: 100%;
                    max-height: 100%;
                    transform: translateX(0);
                    padding-bottom: 5rem;
                    width: 100%;
                    .imagen{
                      height: 80%;
                      width: 80%;
                    }
                  }
                }
              }
            }
          }
      }
    }
    .main-banner-content{
      position: relative;
      display: none;
      height: 100%;
      z-index: 1;
      .splide__arrows {
        background: transparent;
        position: absolute;
        bottom: 50px;
        right: 0;
        display: flex;
        flex-direction: row;
        height: fit-content;
        justify-content: space-between;
        top: 50%;
        width: 100%;
        z-index: 0;
        button {
          .arrow-banner {
            height: 40px;
            width: 40px;
            img {
              height: 100%;
              width: 100%;
              object-fit: contain;
              object-position: center;
            }
          }
        }
        button.custom-prev {
          transform: translateX(-100%) rotate(-180deg);
        }
        button.custom-next {
          transform: translateX(100%);
        }
      }
      .container-splide{
        height: 100%;
      }
      #splide_productos{
        overflow: hidden;
        height: 100%;
        .splide__track{
          height: 100%;
          overflow: visible;
          padding-top: unset;
          box-sizing: border-box;
          ul{
            height: 100%;
            display: flex;

            li{
              display: flex;
              justify-content: center;
              align-items: center;
              opacity: 0; /* Inicialmente invisibles */
              transition: opacity 1s ease-in-out; /* Transición suave 
              para el fade */
              /*overflow: hidden;*/
              /*
              max-width: 250px;
              margin: 0 auto;
              */
              width: calc(100% / 3);
              .product-item{
                height: 100%;
                width: fit-content;
                position: relative;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: center;
                justify-content: end;
                /* padding-bottom: 5rem; */
                box-sizing: border-box;
                transition: all .5s ease;
                position: relative;
                .cartel {
                  position: absolute;
                  font-size: 1rem;
                  border: 2px solid #8D8D8D;
                  border-radius: 0.5rem;
                  background-color: transparent;
                  padding: 0.5rem 1rem;
                  text-align: center;
                  z-index: 10;
                  color: var(--7, #4D4D4D);
                  font-family: "Roboto-400",sans-serif;
                  font-size: 14px;
                  line-height: 20px;
                  transform: translate(-50%, 0%) !important;
                  width: max-content;
                }
                svg{
                  position: relative;
                  z-index: 1;
                }
                .imagen {
                  width: fit-content;
                  max-height: 100%;
                  position: relative;
                  z-index: 2;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                }
                .imagen img {
                  width: 100%;
                  height: 24rem;
                  max-height: 100%;
                  object-fit: contain;
                  display: block;
                }
                .endCartel {
                  width: 1rem;
                  height: 1rem;
                  position: absolute;
                  background-color: transparent;
                  z-index: 5;
                }
                &.visible{
                  opacity: 1;
                }
                &.mid{
                  max-height: 20rem;
                  z-index: 3;
                  padding: 0;
                  transform: translateX(-7%);
                  margin: 0 auto;
                  width: 25rem;
                }
              }
            }

            li.is-visible {
              opacity: 1; /* Hacer visible el elemento */
              width: calc(30% - 1.5rem);
            }
            li.mid{
              width: 40%;
              margin: 0 1.5rem;
              .product-name{
                top: -3rem;
              }
              .cont-canva{
                
                top: -3rem;
              }
              .product-thumbnail{
                transform: scale(1.5);
                transform-origin: bottom center;
                /* padding: 0 12.5%; */
                /* padding: 0 25%; */
                box-sizing: border-box;
                width: 75%;
                max-height: 65%;
              }
            }
          }
        }
      }
    }
    .main-banner-content1{
      position: relative;
      /* height: 60%; */
      height: auto;
      /* max-height: 570px; */
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      aspect-ratio: 1100/600;
      overflow: hidden;

      padding: 0 70px 0 70px;
      box-sizing: border-box;
      .splide__arrows {
        background: transparent;
        position: absolute;
        bottom: 50px;
        right: 0;
        display: flex;
        flex-direction: row;
        height: fit-content;
        justify-content: space-between;
        top: 50%;
        width: 100%;
        z-index: 0;
        button {
          .arrow-banner {
            height: 40px;
            width: 40px;
            img {
              height: 100%;
              width: 100%;
              object-fit: contain;
              object-position: center;
            }
          }
        }
        button.custom-prev1 {
          transform: translateX(0%) rotate(-180deg);
        }
        button.custom-next1 {
          transform: translateX(0%);
        }
      }
      .container-splide{
        height: 100%;

        .splide__slide:first-of-type,
        .is-prev {
          opacity: 1 !important;
        }
        .is-last.is-visible {
          z-index: 100 !important;
        }

        #splide_productos_escritorio{
          height: 100%;
          .splide__track{
            overflow: visible;
            padding-top: 40px;
            box-sizing: border-box;
            height: 100%;
            ul{
              height: 100%;
              li{
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                &.pequenio{
                  grid-template-columns: 18rem minmax(0, 1fr) 18rem;
                  .product-item{
                    transition: opacity 0.8s ease-in-out;
                  }
                }
                .product-item.visible{
                  opacity: 1;
                }
                .product-item{
                  opacity: 0;
                  height: 87%;
                  width: auto;
                  position: relative;
                  display: flex;
                  flex-direction: column;
                  gap: 1rem;
                  align-items: center;
                  justify-content: end;

                  &:nth-child(2){
                    grid-area: 1 / 1 / 2 / 3;
                  }

                  .cartel {
                    position: absolute;
                    font-size: 1rem;
                    border: 1px solid red;
                    border-radius: 0.3rem;
                    background-color: white;
                    padding: 0.5rem 1rem;
                    text-align: center;
                    z-index: 10;
                  }

                  .imagen {
                    width: fit-content;
                    position: relative;
                    z-index: 2;
                  }

                  .imagen img {
                    width: 30rem;
                    height: auto;
                    object-fit: contain;
                    display: block;
                  }

                  .endCartel {
                    width: 1rem;
                    height: 1rem;
                    position: absolute;
                    background-color: transparent;
                    z-index: 5;
                  }
                }
              }
            }
          }
        }
      }
    }
    .main-banner-enlaces{
      display: flex;
      flex-direction: row;
      gap: 15px;
      margin: 0 auto;

      min-height: 50px;
      align-items: center;
      width: 50%;
      justify-content: center;
      position: relative;
      z-index: 4;
      span{
        color: var(--2, #312783);
        font-family: "Roboto-800",sans-serif;
        font-size: 22px;
        line-height: 20px; /* 90.909% */
      }
      .enlace{
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: stretch;
        gap: 15px;

        color: var(--7, #4D4D4D);
        font-family: "Roboto-400",sans-serif;
        font-size: 15px;
        line-height: 20px;
        text-align: center;
        &::before{
          content: '';
          display: inline-block;
          width: 5px;
          background: linear-gradient(0deg, #312783 13.32%, #2F2985 56.53%, #005FB7 99.74%);
        }

      }
    }
  }
}

section.marcas{
  padding: 21px 0;
  .container{
    #splide_marcas{
      ul{
        li{
          .container-img{
            height: 100%;
            width: 100%;
            img{
              height: 100%;
              width: 100%;
              object-fit: contain;
              object-position: center;
              opacity: 0.7;
            }
          }
        }
      }
    }
  }
}

section.conocenos{
  position: relative;
  padding: 70px 0;
  /*
  &::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #312783 17.19%, #2F2985 75.68%, #005FB7 99.72%);
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.9;
  }
  */
  .img-fondo{
    position: absolute;
    z-index: -2;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* filter: grayscale(80%); */
    overflow: hidden;
    img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
      animation: backgroundZoom 20s linear infinite;
    }
  }
  .container{
    display: flex;
    flex-direction: column;
    gap: 55px;
    .historia-video{
      display: flex;
      /* gap: 60px; */
      justify-content: space-between;
      flex-wrap: wrap;
      .historia{
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 47%;
        padding-left: 4rem;
        box-sizing: border-box;
        .container-img{
          height: 42px;
          width: 155px;
          img{
            height: 100%;
            width: 100%;
            object-fit: contain;
            object-position: center;
          }
        }
        .historia-content{
          p{
            color: var(--bg-color-white);
            font-family: "RobotoItalic-400",sans-serif;
            font-size: 22px;
            line-height: 25px;
            text-align: justify;
            strong{
              font-family: "RobotoItalic-700",sans-serif;
              text-align: justify;
            }
          }
          h1,h2,h3,h4,h5,h6{
            font-family: "RobotoItalic-400",sans-serif;
          }
          ul,ol{
            li{
              color: var(--bg-color-white);
              font-family: "RobotoItalic-400",sans-serif;
              font-size: 22px;
              line-height: 25px;
            }
          }
        }
        a{
          color:var(--bg-color-purple);
          background: var(--bg-color-white);
          &::after{
            background: url('../../images/arrow-right-purple.svg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
          }
        }
      }
      .video{
        width: 47%;
        min-width: 450px;
        max-width: 650px;
  
        .container-video{
          border: 5px solid white;
          
          /*box-shadow: 
          10px 10px 30px rgba(255, 255,255, 0.5),*/  /* Sombra hacia la derecha y abajo */
          /*-10px -10px 30px rgba(255, 255, 255, 0.2);*/ /* Sombra hacia la izquierda y arriba */
          width: 100%;
          aspect-ratio: 16/9;
          position: relative;
          /*
          &::after{
            background: var(--bg-color-white);
            content: '';
            height: 50rem;
            width: 50rem;
            opacity: 0.5;
            position: absolute;
  
            top: 0;
            left: 0;
            z-index: -1;
          }
            */
          iframe{
            height: 100%;
            width: 100%;
          }
        }
      }
    }
    button{
      width: fit-content;
      margin: 0 auto;
      &::before{
        content: '';
        display: inline-block;
        height: 41px;
        width: 38px;
        transition: transform ease .5s;
        transform: translate(0,0);
        background: url('../../images/arrow-down-purple-bg-white-opacity.svg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;

      }
      &:hover{
        &::before{
          transform: translate(0,4px);
          background: url('../../images/arrow-down-purple-bg-white.svg');
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
        }
      }
    }
  }
}

section.mantenimiento{
  min-height: 620px;
  position: relative;
  .img-fondo{
    position: absolute;
    z-index: -2;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* filter: grayscale(80%); */
    overflow: hidden;
    img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
      animation: backgroundZoom 20s linear infinite;
    }
  }
  .etiqueta{
    position: absolute;
    bottom: 50px;
    right: 0;
    padding: 26px 60px 26px 30px;
    background: var(--bg-color-white);
    .frase{
      position: relative;
      display: flex;
      flex-direction: row;
      justify-content: stretch;
      flex-shrink: 0;

      gap: 15px;
      &::before{
        content: '';
        display: inline-block;
        width: 10px;
        background: linear-gradient(0deg, #312783 13.32%, #2F2985 56.53%, #005FB7 99.74%);
      }
      .container-frase{
        padding: 8px 0;
        box-sizing: border-box;

        color: var(--bg-color-black);
        font-family: "Roboto-400",sans-serif;
        font-size: 18px;
        line-height: 24px;
        h2{
          color: var(--bg-color-purple);
          font-family: "Roboto-800",sans-serif;
          font-size: 21px;
          line-height: 24.194px; /* 115.207% */
        }
        strong{
          font-family: "Roboto-700",sans-serif;
        }
      }
    }
  }
}

section.certificaciones{
  padding: 40px 0 40px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  &::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #D6D6D6;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.95;
  }
  .img-fondo{
    position: absolute;
    z-index: -2;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* filter: grayscale(80%); */
    overflow: hidden;
    img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  .container{
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    .descripcion{
      align-items: center;
      width: 50%;
      display: flex;
      justify-content: space-between;
      gap: 2rem;
      flex: 1;
      .titulo{
        h2{
          color: var(--bg-color-black);
          font-family: "RobotoItalic-800",sans-serif;
          font-size: 26.322px;
          line-height: 29px; /* 110.175% */
          strong{
            color: var(--bg-color-purple);
          }
        }
      }
      .info{
        p{
          color: var(--7, #4D4D4D);
          font-family: "Roboto-400",sans-serif;
          font-size: 14px;
          line-height: 20px;
          text-align: justify;
          strong{
            font-family: "Roboto-700",sans-serif;
            text-align: justify;
          }
        }
      }
    }
    .tipos{
      display: flex;
      gap: 35px;
      width: fit-content;
      justify-content: end;
      align-items: end;

        .certificacion{
          /* background: var(--bg-color-white); */
          background: transparent;
          border-radius: 0 0 60px 60px;
          padding: 18px;
          box-sizing: border-box;
          transition: all ease .8s;
          transform: translate(150%, -280px) rotate(25deg);
  
          max-width: 125px;
  
          height: 200%;
          /* position: relative; */
          bottom: 0;
          display: flex;
          align-items: end;

          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          position: relative;
          &::before{
            content: '';
            position: absolute;
            top:0;
            left: 0;
            height: 100%;
            width: 100%;
            background: var(--bg-color-white);
            border-radius: 0 0 60px 60px;
            opacity: 0.8;
          }
          &>div{
            height: 100px;
            width: 100px;
            transform: rotate(-25deg);
            img{
              aspect-ratio: 1 / 1;
              width: 100%;
              height: 100%;
              object-fit: contain;
              object-position: bottom;
            }
          }
        }
        .certificacion.active{
          transform: translate(0%, 0%) rotate(25deg);
          &:nth-child(1) {
            transition-delay: 0s;
          }
          &:nth-child(2) {
            transition-delay: 0.8s;
          }
          &:nth-child(3) {
            transition-delay: 1.6s;
          }
        }
      
    }
  }
}

section.servicios{
  padding-bottom: 51px;
  position: relative;
  will-change: transform, opacity;
  &::before{
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      background: linear-gradient(0deg, #312783 17.19%, #2F2985 75.68%, #005FB7 99.72%);
      mix-blend-mode: luminosity;
      
      z-index: -1;
    }
  .img-fondo{
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.06;
    img{
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  .first-section{
    position: relative;
    padding-block: 51px 45px;
    /* &::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      background: var(--bg-color-white);
      opacity: 0.9;
      height: 100%;
      width: 100%;
      z-index: -1;
    } */
    .container{
      display: flex;
      flex-direction: column;
      gap: 36px;
      width: 70%;
      margin: 0 0 0 7.5%;
      h2{
        color: white;
        font-family: "Roboto-700",sans-serif;
        font-size: 26px;
        line-height: 25px;

        padding: 11px 35px;
        box-sizing: border-box;
        background: transparent;
        border-radius: 5px;
        border: 2px solid white;
        width: fit-content;
      }
      p{
        color:white;
        font-family: "Roboto-300", sans-serif;
        font-style: italic;
        font-size: 26px;
        line-height: 37.346px;
        text-align: justify;
      }
    }
  }
  .second-section{
    /* padding: 64px 0; */
    position: relative;
    .container{
      display: flex;
      flex-direction: column;
      gap: 56px;
      .grid-container{
        display: grid;
        height: 544px;
        grid-column: 4;
        grid-row: 2;
        gap: 1rem;
        a{
          &:nth-child(1){
            grid-column: 1 / 3 ;
            grid-row: 1 / 2;
          }
          &:nth-child(2){
            grid-column: 1 / 2 ;
            grid-row: 2 / 3;
          }
          &:nth-child(3){
            grid-column: 2 / 3 ;
            grid-row: 2 / 3;
          }
          &:nth-child(4){
            grid-column: 3 / 4 ;
            grid-row: 1 / 3;
          }
          .service{
            position: relative;
            height: 100%;
            width: 100%;
            border-radius: 5px;
            overflow: hidden;

            display: flex;
            align-items: end;

            padding: 35px 22px;
            box-sizing: border-box;
            &::before{
              content: '';
              position: absolute;
              height: 100%;
              width: 100%;
              transition: all ease .5s;
              /*background: #96ACDD;*/
              background: #1e58d8;
              /* background: #005FB7; */
              /* background: linear-gradient(0deg, #312783 17.19%, #2F2985 75.68%, #005FB7 99.72%); */
              opacity: 0.2;
              top: 0;
              left: 0;
              z-index: 0;
            }
            &:after{
              content: '';
              position: absolute;
              top: 8px;
              left: 8px;
              height: 2rem;
              width: 2rem;

              transition: all ease .5s;
              max-width: 0rem;
              max-height: 0rem;

              background: url('../../images/add-bg-white.svg');
              background-position: center;
              background-repeat: no-repeat;
              background-size: contain;
            }
            .container-img{
              position: absolute;
              width: 100%;
              height: 100%;
              z-index: -1;
              top: 0;
              left: 0;

              transition: all ease .5s;
              opacity: 0.7;
              filter: grayscale(90%);
              img{
                height: 100%;
                width: 100%;
                object-fit: cover;
                object-position: center;
                transition: all ease .5s;
                transform: scale(1);
              }
            }
            h3{
              color: var(--5, #FFF);
              font-family: "Roboto-800",sans-serif;
              font-size: 25px;
              line-height: 30px; /* 120% */
              z-index: 1;

              max-width: 70%;
            }
          }
          &:hover{
            
            .container-img{
              opacity: 1;
              filter:grayscale(0%);
              img{
                transform: scale(1.1);
              }
            }
            .service{
              &::before{
                background: #000;
                opacity: 0.4;
              }
              &::after{
                max-width: 10rem;
                max-height: 10rem;
              }
            }
          }
        }
        .alianza{
          grid-column: 4 / 5 ;
          grid-row: 1 / 3;
          display: flex;
          flex-direction: column;
          gap: 1rem;
          padding: 35px 28px;
          box-sizing: border-box;
          background: transparent;
          position: relative;
          &::before{
            content: '';
            background: var(--bg-color-purple);
            /*opacity: 0.5;*/
            mix-blend-mode: screen;
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            z-index: -1;
          }
          h3{
            color: var(--5, #FFF);
            font-family: "Roboto-800",sans-serif;
            font-size: 25px;
            line-height: 30px; /* 120% */
          }

          p{
            color: var(--5, #FFF);
            font-family: "RobotoItalic-300";
            font-size: 18px;
            line-height: 23px; /* 127.778% */
            text-align: justify;
          }
        }
      }
      button{
        width: fit-content;
        margin: 0 auto;
        &::before{
          content: '';
          display: inline-block;
          height: 41px;
          width: 38px;
          transition: transform ease .5s;
          transform: translate(0,0);
          background: url('../../images/arrow-down-purple-bg-white-opacity.svg');
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
  
        }
        &:hover{
          &::before{
            transform: translate(0,4px);
            background: url('../../images/arrow-down-purple-bg-white.svg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
          }
        }
      }
    }
  }
  
}

@media (max-width: 1250px) {
  header{
    nav{
      .container{
        .d-flex{
          .header-menu{
            display: none;
          }
          .frase{
            display: none;
          }
          button.burger-button{
            display: block;
          }
        }
      }
    }
  }

  section.main-banner{
    .container{
      .main-banner-content{
        .splide__arrows {
          button {
            .arrow-banner {
              height: 28px;
              width: 28px;
            }
          }
          button.custom-prev {
          }
          button.custom-next {

          }
        }
      }
    }
  }

  section.certificaciones{
    &::before{
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      background: #D6D6D6;
      z-index: -1;
      top: 0;
      left: 0;
      opacity: 0.95;
    }
    .img-fondo{
    }
    .container{
      gap: 8px;
      flex-direction: column;
      .descripcion{
        order: 2;
        width: 100%;
        flex-direction: column;
        align-items: unset;
        .titulo{
          h2{
            color: var(--bg-color-black);
            font-family: "RobotoItalic-800",sans-serif;
            font-size: 26.322px;
            line-height: 29px; /* 110.175% */
            strong{
              color: var(--bg-color-purple);
            }
          }
        }
        .info{
          p{
            color: var(--7, #4D4D4D);
            font-family: "Roboto-400",sans-serif;
            font-size: 14px;
            line-height: 20px;
            strong{
              font-family: "Roboto-700",sans-serif;
            }
          }
        }
      }
      .tipos{
        order: 1;
        width: 100%;
        justify-content: space-around;
        max-height: 10rem;
        padding-left: 2rem;
        gap: 30px;

        max-width: 50rem;
        margin: 0 auto;
        .certificacion{
          min-height: 20rem;
          &>div{
            height: auto;
            width: 100%;
            img{

            }
          }
        }
        .certificacion.active{

        }
      }
    }
  }
}

@media (max-width: 1150px) {
  footer {
    .second-section{
      .container{
        span{
            font-size: 12px;
            line-height: 12px;
        }
      }
    }
  }
  header{
    nav{
      .container{
        .d-flex{
          .content-elements-left-header{
            gap: 13px;
          }
        }
      }
    }
  }
  section.main-banner {
    & .container {
        .main-banner-content {
            display: block;
        }
    }
  }

  section.main-banner {
    & .container {
      .main-banner-content1 {
        display: none;
      }
    }
  }

  

  section.servicios{
    .img-fondo{
      img{
      }
    }
    .first-section{
      .container{
        h2{
          font-size: 20px;
          line-height: 20px;
          padding: 10px 20px;
        }
        p{
          font-size: 20px;
          line-height: 25px;
        }
      }
    }
    .second-section{
      &::before{

      }
      .container{

        .grid-container{
          grid-template-columns: repeat(3, 1fr);
          grid-template-rows: repeat(3, 1fr);
          height: 800px;
          width: 85%;
          margin: 0 auto;
          a{
            .service{

              .container-img{

              }
              h3{
                color: var(--5, #FFF);
                font-family: "Roboto-800",sans-serif;
                font-size: 25px;
                line-height: 30px; /* 120% */
                z-index: 1;
  
                max-width: 70%;
              }
            }
            &:hover{
              
              .container-img{
                opacity: 1;
                filter:grayscale(0%);
                img{
                  transform: scale(1.1);
                }
              }
              .service{
                &::before{
                  background: #000;
                  opacity: 0.4;
                }
                &::after{
                  max-width: 10rem;
                  max-height: 10rem;
                }
              }
            }
          }
          .alianza{
            grid-column: 1 / 4;
            grid-row: 3 / 4;
            &::before{
              content: '';
              background: var(--bg-color-purple);
              opacity: 0.5;
              position: absolute;
              height: 100%;
              width: 100%;
              top: 0;
              left: 0;
              z-index: -1;
            }
            h3{
              color: var(--5, #FFF);
              font-family: "Roboto-800",sans-serif;
              font-size: 25px;
              line-height: 30px; /* 120% */
            }
  
            p{
              color: var(--5, #FFF);
              font-family: "RobotoItalic-300";
              font-size: 18px;
              line-height: 23px; /* 127.778% */
            }
          }
        }
        button{
          width: fit-content;
          margin: 0 auto;
          &::before{
            content: '';
            display: inline-block;
            height: 41px;
            width: 38px;
            transition: transform ease .5s;
            transform: translate(0,0);
            background: url('../../images/arrow-down-purple-bg-white-opacity.svg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
    
          }
          &:hover{
            &::before{
              transform: translate(0,4px);
              background: url('../../images/arrow-down-purple-bg-white.svg');
              background-position: center;
              background-repeat: no-repeat;
              background-size: contain;
            }
          }
        }
      }
    }
    
  }

  section.contacto{
    .container{
      .container-img{
      }
      .introduccion-formulario{
        gap: 18px;
        .introduccion{
          gap: 15px;
          h2{
            font-size: 34px;
            line-height: 34px;
          }
          p{
            font-size: 16px;
            line-height: 20px;
            strong{
              font-size: 16px;
              line-height: 20px;
            }
          }
        }
        .contact-form{
          .wpcf7{
            form{
              gap: 16px;
              &>div:not(.wpcf7-response-output){

              }
              div.container-field{
                p{
                  
                  span.field-name{
                  }
                }
              }
              p{
                span{
    
                  input,textarea{
                  }
                  textarea{

                  }
                }
              }
              .wpcf7-not-valid-tip{
              }
              & > div:nth-last-child(2){
                p{

                  &::before{
                    
                  }
                  &::after{
                    w
                  }
                  input[type="submit"] {
                    
                  }
                }
              }  
              div{
                &>p{
                  
                }
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 1050px) {
  .contacto-flotante{
    width: 50%;
    .container-contacto-flotante{
      padding: 100px 60px 100px 50px;
    }
  }

  section.conocenos{
    &::before{

    }
    .img-fondo{
      img{
      }
    }
    .container{
      .historia-video{
        flex-direction: column;
        gap: 31px;
        align-items: center;
        .historia{
          order: 2;
          width: 70%;
          padding-left: 0;
          .container-img{
          }
          .historia-content{
            p{
              color: var(--bg-color-white);
              font-family: "RobotoItalic-400",sans-serif;
              font-size: 22px;
              line-height: 25px;
              strong{
                font-family: "RobotoItalic-700",sans-serif;
              }
            }
            h1,h2,h3,h4,h5,h6{
              font-family: "RobotoItalic-400",sans-serif;
            }
            ul,ol{
              li{
                color: var(--bg-color-white);
                font-family: "RobotoItalic-400",sans-serif;
                font-size: 22px;
                line-height: 25px;
              }
            }
          }
          a{
            &::after{
            }
          }
        }
        .video{
          order:1;
          width: 70%;
          .container-video{
            iframe{
            }
          }
        }
      }
      button{
        width: fit-content;
        margin: 0 auto;
        &::before{

        }
        &:hover{
          &::before{
          }
        }
      }
    }
  }

}

@media (max-width: 992px) {
  section.contacto{
    .container{
      gap: 35px;
      .container-img{
        width: 45%;
      }
      .introduccion-formulario{
        width: 55%;
        .introduccion{
          h2{

          }
          p{
            font-size: 20px;
            line-height: 25px;
            strong{
              font-size: 20px;
              line-height: 25px;
            }
          }
        }
        .contact-form{
          .wpcf7{
            form{
              gap: 15px;
              &>div:not(.wpcf7-response-output){
                flex-direction: column;
              }
              div.container-field{
                p{
                  
                  span.field-name{
                  }
                }
              }
              p{
                span{
    
                  input,textarea{
                  }
                  textarea{
                    height: 80px;
                  }
                }
              }
              .wpcf7-not-valid-tip{
              }
              & > div:nth-last-child(2){
                p{
                  padding: 15px 20px;
                  gap: 15px;
                  &::before{
                    border-radius: 8px;
                    background: var(--Linear-BG, linear-gradient(0deg, #312783 13.32%, #2F2985 56.53%, #005FB7 99.74%));
                  }
                  &::after{
                    width: 20px;
                  }
                  input[type="submit"] {
                    padding: 0;
                  }
                }
              }  
              div{
                &>p{
                  
                }
              }
            }
          }
        }
      }
    }
  }
}

@media (max-width: 900px) {
  section.main-banner{
    &::before{
      display: none;
    }
    &::after{
      display: none;
    }
    .container{
      .main-banner-content{
        #splide_productos{
          .splide__track{
            /*padding-top: unset;*/
          }
        }
      }
    }
  }
}
@media (max-width: 870px) {
  section.main-banner {
    & .container {
      & .main-banner-content {
        & #splide_productos {
          & .splide__track {
            & ul {
              & li {
                & .product-item {
                  /* background: #f8f8f8; */
                  & .product-thumbnail {
                    img {
                        height: 100%;
                        width: 100%;
                        object-fit: contain;
                        object-position: top center;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
@media (max-width: 800px) {
  section.servicios{
    .img-fondo{
      img{
      }
    }
    .first-section{
      .container{
        h2{
          font-size: 20px;
          line-height: 20px;
          padding: 10px 20px;
        }
        p{
          font-size: 20px;
          line-height: 25px;
        }
      }
    }
    .second-section{
      &::before{

      }
      .container{
        .grid-container{
          width: 100%;
          display: flex;
          flex-direction: column;
          height: unset;
          gap: 15px;
          a{
            height: 350px;
            .service{
              &::before{
                background: #000;
                opacity: 0.4;
              }
              &::after{
                max-width: 10rem;
                max-height: 10rem;
              }
              .container-img{
                opacity: 1;
                filter:grayscale(0%);
              }
              h3{
                color: var(--5, #FFF);
                font-family: "Roboto-800",sans-serif;
                font-size: 25px;
                line-height: 30px; /* 120% */
                z-index: 1;
  
                max-width: 70%;
              }
            }
            &:hover{
              
              .container-img{
                
                img{
                  
                }
              }
              .service{
                
              }
            }
          }
          .alianza{
            grid-column: 1 / 4;
            grid-row: 3 / 4;
            &::before{
              content: '';
              background: var(--bg-color-purple);
              opacity: 0.5;
              position: absolute;
              height: 100%;
              width: 100%;
              top: 0;
              left: 0;
              z-index: -1;
            }
            h3{
              color: var(--5, #FFF);
              font-family: "Roboto-800",sans-serif;
              font-size: 25px;
              line-height: 30px; /* 120% */
              text-align: center;
            }
  
            p{
              color: var(--5, #FFF);
              font-family: "RobotoItalic-300";
              font-size: 18px;
              line-height: 23px; /* 127.778% */
            }
          }
        }
        button{
          width: fit-content;
          margin: 0 auto;
          &::before{
            content: '';
            display: inline-block;
            height: 41px;
            width: 38px;
            transition: transform ease .5s;
            transform: translate(0,0);
            background: url('../../images/arrow-down-purple-bg-white-opacity.svg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
    
          }
          &:hover{
            &::before{
              transform: translate(0,4px);
              background: url('../../images/arrow-down-purple-bg-white.svg');
              background-position: center;
              background-repeat: no-repeat;
              background-size: contain;
            }
          }
        }
      }
    }
    
  }

  /** botones **/
.enlace-animacion{
  padding: 15px 20px;
  font-size: 14px;
  gap: 15px;
  &::after{
    content: '';
    height: 12px;
    display: inline-block;
    width: 16px;
    overflow: hidden;
    background: url('../../images/arrow-right-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
}

@media (max-width: 800px) {
    section.main-banner {
    & .container {
        & .main-banner-content {
            & #splide_productos {
                & .splide__track {
                    & ul {
                        & li {
                            & .product-item {
                                .imagen img{
                                    height: 15rem;   
                                }
                            }
                        }
                    }
                }
            }
        }
    }
  section.contacto{
    .container{
      flex-direction: column;
      align-items: center;
      .container-img{
        width: 100%;
        max-width: 410px;
        overflow: unset;
        height: unset;

        align-items: center;
        display: flex;
        flex-direction: row;
        gap:12px;
        min-width: unset;
        img{
          border-radius: 25px;
          width: 40%;
          aspect-ratio: 112/153;
        }
        .context-contact-form{
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          h2{
            font-size: 30px;
            line-height: 30px;
          }
          p{
            text-align: start !important;
          }
        }
      }

      .introduccion-formulario{
        width: 100%;
        max-width: 410px;
        .introduccion{
          display: none;
        }
      }
    }
  }
}


@media (max-width: 700px) {
  .bubble {
    a {
      .container-img {
        width: 3rem;
        height: 3rem;
        img {
        }
      }
      &:hover {
        
      }
    }
  }
  .contacto-flotante{
    width: 70%;
  }
  .contacto{
    top: 30%;
  }

  section.banner-page{
    height: 250px;
    .container-img{
    }
    .container{
      .page-title{
        .title-information{
          h1{
          }
          .aditional-information-left{
            font-size: 12px;
            max-width: 150px;
          }
          .aditional-information-right{
            .container_derecha{
              padding: 12px;

              font-size: 12px;
              line-height: 16px;

              max-width: 120px;
            }
          }
        }
      }
  
  
    }
  }

  section.main-banner{
    .container{
      .title-main{
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        p{
          text-align: center;
        }
        hr{
          width: 20%;
        }
      }
      .main-banner-enlaces{
        flex-wrap: wrap;
        width: 100%;
        text-align: center;
        span{
          width: 100%;
        }
        .enlace{
          width: 47%;
          gap: 10px;
          font-size: 12px;
          line-height: 14px;
        }
      }
    }
  }

  section.conocenos{
    &::before{

    }
    .img-fondo{
      img{
      }
    }
    .container{
      .historia-video{
        flex-direction: column;
        gap: 31px;
        align-items: center;
        .historia{
          order: 2;
          width: 100%;
          padding-left: 0;
          .container-img{
          }
          .historia-content{
            p{
              color: var(--bg-color-white);
              font-family: "RobotoItalic-400",sans-serif;
              font-size: 22px;
              line-height: 25px;
              strong{
                font-family: "RobotoItalic-700",sans-serif;
              }
            }
            h1,h2,h3,h4,h5,h6{
              font-family: "RobotoItalic-400",sans-serif;
            }
            ul,ol{
              li{
                color: var(--bg-color-white);
                font-family: "RobotoItalic-400",sans-serif;
                font-size: 22px;
                line-height: 25px;
              }
            }
          }
          a{
            &::after{
            }
          }
        }
        .video{
          order:1;
          width: 100%;
          min-width: unset;
          .container-video{
            iframe{
            }
          }
        }
      }
      button{
        width: fit-content;
        margin: 0 auto;
        &::before{

        }
        &:hover{
          &::before{
          }
        }
      }
    }
  }

  section.mantenimiento{
    min-height: 400px;
    .img-fondo{
      img{
      }
    }
    .etiqueta{
      padding: 13px 30px 13px 15px;
      max-width: 80%;
      .frase{
        &::before{
        }
        .container-frase{
          font-size: 15px;
          line-height: 20px;
          h2{
            color: var(--bg-color-purple);
            font-family: "Roboto-800",sans-serif;
            font-size: 18px;
            line-height: 20px;
          }
        }
      }
    }
  }

  

}

@media (max-width: 700px) {
  header{
    nav{
      .container{
        .breadcrumbs{
          a,span{
            color: var(--bg-color-grey);
            font-family: "Roboto-400",sans-serif;
            font-size: 10px;
            line-height: 14px; /* 129.412% */
          }
        }
      }
    }
  }
  footer{
    &>.container{

      .first-section{
        flex-direction: column;
        gap: 20px;
        .container-logo-footer{
          /*width: 188px;*/
          /*height: 51px;*/
          height: auto;
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          img{
            width: 20rem;
            max-width: 100%;
          }
        }
        .information{  
          .info-place{
            span{
              a{
                
              }
            }
            span.place{
            }
          }
        }
        
      }
    }
  }
}

@media(max-width: 600px){

}
@media (max-width: 500px) {
  /*.bubble {*/
  /*  display: none;*/
  /*}*/
  .contacto-flotante{
    width: 100%;
    .container-contacto-flotante{
      padding: 20px;
      align-items: center;

      #close-contact-form{
        display: block;
      }
      .flotante-form{
        .wpcf7{
          position: relative;
          border-radius: 10px;
          box-sizing: border-box;
          
          display: flex;
          /* justify-content: center; */
          align-items: center;
          form{
            &>div:not(.wpcf7-response-output){

            }
            div.container-field{
              p{
                display: flex;
                flex-direction: column;
                gap: 4px;
                span.field-name{
                }
              }
            }
            p{
              width: 100%;
              span{
  
                input,textarea{
                  padding: 8px 15px;
                }
                textarea{
                  height: 80px;
                }
              }
            }
            .wpcf7-not-valid-tip{
            }
            & > div:nth-last-child(2){

              p{
                margin-left: unset;
                margin: 0 auto;

                padding: 15px 20px;
                gap: 15px;

                &::before{
                  border-radius: 35px;
                  background: var(--Linear-BG, linear-gradient(0deg, #312783 13.32%, #2F2985 56.53%, #005FB7 99.74%));
                }
                &::after{
                  width: 20px;
                }
                input[type="submit"] {
                  padding: 0;
                }
              }
            }  
            div{
              width: 100%;
              &>p{
                display: flex;
                flex-direction: column;
                /* gap: 20px; */
              }
            }
          }
        }
      }
      .container-marca{
        display: block;
      }
    }
  }
  section.main-banner{
    .container{
      padding: 100px 10px;
    }
  }

  .contact{
    z-index: 11;
    .contact-title-icon{
      &>span{  
        &::after{  
          transition: all ease .9s;
          max-height: 30rem;
          transform-origin: top;
        }
      }
      .icon{
        &::before{

        }
      }
    }
  }
  
}



@media (max-width: 420px) {
  section.certificaciones{
    .img-fondo{
    }
    .container{
      .descripcion{
        gap: 10px;
        .titulo{
          h2{
          }
        }
        .info{
          p{
            strong{

            }
          }
        }
      }
      .tipos{
        max-height: 8rem;
        .certificacion{
          min-height: 20rem;
          padding: 10px;
          img{
          }
        }
        .certificacion.active{

        }
      }
    }
  }

  section.servicios{
    .second-section{
      .container{
        .grid-container{
          a{
            height: 250px;
          }
          .alianza{
            padding: 20px 16px;
          }
        }
      }
    }
  }

  section.contacto{
    .container{
      flex-direction: column;
      .container-img{
        width: 100%;
        .context-contact-form{
          h2{
            font-size: 20px;
            line-height: 20px;
          }
          p{
            font-size: 16px;
            line-height: 20px;
            strong{
              font-size: 16px;
              line-height: 20px;
            }
          }
        }
      }
      .introduccion-formulario{
        width: 100%;
      }
    }
  }

}



@media(min-width : 1800px){

  .bubble{
    .bubble-contact{
      width: 420px;
      .description{
        span {
          font-size: 19px;
          line-height: 23px;
        }
      }
      .links {
        .container-links {
          max-height: 420px;
          a{
            .container-enlace {
              .container-img {
                width: 70px;
              }
              .enlace-info{
                span.name{
                  font-size: 20.328px;
                  line-height: 20.289px;
                }
                span.status{
                  font-size: 17.447px;
                  line-height: 17.407px;
                }
              }
            }
          }
        }
      }
    }
    &>span{
      font-size: 21px;
      line-height: 21.564px;
    }
  }

  .enlace-animacion {
    font-size: 20.039px;
  }
  .contact {
    .contact-title-icon {
      &>span {
        font-size: 24.596px;
      }
    }
  }

  section.banner-page {
    .container {
      .page-title {
        .title-information {
          .aditional-information-left {
            max-width: 400px;
            font-size: 22px;
            line-height: 22px;
          }
          .aditional-information-right {
            max-width: 250px;
            aspect-ratio: 1 / 1;
            transform: translate(0%, -50%);
            .container_derecha {
              font-size: 22px;
              line-height: 24px;
            }
          }
        }
      }
    }
  }

  footer {
    &::before {
      left: 0;
      height: 120px;
      background-position: bottom left 70%;
    }
    .container {
      .first-section{
        .information{
          .info-place{
            span{
              font-size: 17.771px;
            }
            span.place{
              font-size: 17.771px;
            }
          }
        }
      }
    }
    .second-section{
      .container{
        span{
          font-size: 16px;
          line-height: 16px;
        }
      }
    }
  }


  header {
    & nav {
      .container{
        .breadcrumbs{
          a, span {
            font-size: 19.37px;
            line-height: 23.302px;
          }
        }
      }
      & .container {
        & .d-flex {
          .header-menu {
            max-width: 1100px;
            flex-grow: 1;
            .contenedor-forma {
              &>ul {
                &>li {
                  font-size: 18.5px;
                  line-height: normal;
                  &:hover {
                    a {
                      font-size: 18.5px;
                      line-height: normal;
                    }
                  }
                }
              }
            } 
          }
          .frase{
            .container-frase {
              font-size: 18.245px;
              strong {
                font-size: 18.245px;
              }
            }
          }
        }
      }
    }
  }

  section.main-banner {
    .container {
      .title-main {
        p {
          color: var(--1, #000);
          font-family: "Roboto-400", sans-serif;
          font-size: 32.274px;
          line-height: normal;
          strong {
            font-size: 34.397px;
            line-height: normal;
          }
        }
      }
      .main-banner-content1{
        .container-splide{
          #splide_productos_escritorio{
            .splide__track{
              ul{
                li{
                  .product-item{
                    .product-name{
                      font-size: 18px;
                      line-height: 24px;
                      max-width: 260px;
                    }
                  }
                }
              }
            }
          }
        }
      }
      .main-banner-enlaces{
        span{
          font-size: 24px;
          line-height: 22px;
        }
        .enlace{
          font-size: 18px;
          line-height: 24px;
        }
      }
    }
  }

  section.conocenos {
    .container {
      .historia-video {
        .historia{
          .container-img{
            height: 50px;
            width: 180px;
          }
          .historia-content{
            p{
              font-size: 26px;
              line-height: 28px;
            }
          }
        }
        .video{
          max-width: 700px;
        }
      }
    }
  }

  section.certificaciones{
    .container{
      .descripcion{
        .titulo{
          h2{
            font-size: 30.322px;
            line-height: 32px;
          }
        }
        .info{
          p{
            font-size: 18px;
            line-height: 24px;
          }
        }
      }
    }
  }

  section.servicios {
    .first-section {
      .container {
        h2 {
          font-size: 30.322px;
          line-height: 32px;
        }
        p{
          font-size: 30px;
          line-height: 40.346px;
        }
      }
    }
    .second-section {
      .container {
        .grid-container {
          height: 744px;
          .alianza{
            h3{
              font-size: 28px;
              line-height: 33px;
            }
            p{
              font-size: 22px;
              line-height: 27px;
            }
          }
          a {
            .service {
              h3{
                font-size: 30px;
                line-height: 34px;
              }
            }
          }
        }
      }
    }
  }

  section.contacto {
    .container {
      .container-img {
        max-width: 450px;
        height: 550px;
      }
      .introduccion-formulario{
        max-width: 1000px;
        margin: 0 auto;
        .introduccion{
          p{
            font-size: 24px;
            line-height: 30px;
          }
        }
      }

      &.contact-form {
        &.wpcf7 {
            form {
                p {
                    span {
                      input, textarea {
                        font-size: 20px;
                        line-height: 20px;
                      }
                    }
              }
            }
        }
      }
    }
  }

}

@media (max-height: 800px) {
  .contacto-flotante{
    .container-contacto-flotante{
      .flotante-form {
        .wpcf7 {
          form {
            p{
              span{
                textarea{
                  height: 80px;
                }
              }
            }
          }
        }
      }
    }
  }
}


@media (max-height: 800px) {
  section.main-banner {
    & .container {
        gap: 1rem;
        & .main-banner-content1 {
            & .container-splide {
                & #splide_productos_escritorio {
                    & .splide__track {
                        & ul {
                            & li {
                                & .product-item {
                                    .product-thumbnail {
                                      height: 17rem;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
  }


}


@media (max-height: 700px) and (max-width: 1150px) {
  section.main-banner {
    .container {
      height: unset;
    }
  }
}

@media (max-height: 720px) {
  section.main-banner {
    & .container {
        & .main-banner-content1 {
            & .container-splide {
                & #splide_productos_escritorio {
                    & .splide__track {
                        & ul {
                            & li {
                               gap: 4px;
                                & .product-item {
                                    .product-thumbnail {
                                      height: 16rem;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
  }
}

@media (max-height: 700px) {
  aside{
    .container-aside{
      gap: 30px;
      z-index: 13;
      padding: 25px 0;
    }
  }

  .contacto-flotante{
    .container-contacto-flotante{
      gap: 15px;
      .flotante-form {
        .wpcf7 {
          form {
            gap: 10px;
            &>div:not(.wpcf7-response-output) {
              gap: 10px;
            }
          }
        }
      }
    }
  }
  
}


@media (max-height: 670px) {
  section.main-banner {
    & .container {
        & .main-banner-content1 {
            & .container-splide {
                & #splide_productos_escritorio {
                    & .splide__track {
                        & ul {
                            & li {
                               gap: 4px;
                                & .product-item {
                                    .product-thumbnail {
                                      height: 13rem;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
  }
}

@media (max-height: 600px) {
  .contacto-flotante{
    .container-contacto-flotante{
      .flotante-form {
        .wpcf7 {
          form {
            p{
              span{
                input,textarea{
                  font-size: 13px;
                  line-height: 13px;
                  padding: 9px 13px;
                }
              }
            }
          }
        }
      }
    }
  }
}