@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLA DE CONTENIDO:
----------------------------------------------------------------
#   Normalize
#   Forms
#   Links
#   Transitions
#   Utilities
#   Header
#   Panel Side Mobile
#   Footer

#   Hero
#   Nosotros
#   Frases
#   Destacados
#   Servicios
#   Testimonios
#   Marcas
#   Mapa
--------------------------------------------------------------*/
/*--------------------------------------------------------------
#   Normalize
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'bebas_neuebold';
    src: url('../../assets/fonts/bebasneue_bold-webfont.woff2') format('woff2'),
         url('../../assets/fonts/bebasneue_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: "Archivo", sans-serif;
    background-color: #000000;
    background-image: url('../../assets/img/fondo-textura.jpg');
    color: #ffffff;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

p {
    font-weight: 400;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Archivo", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}
/*--------------------------------------------------------------
#   Forms
--------------------------------------------------------------*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input:focus,
select:focus {
  outline: 0;
}

input:focus-visible,
select:focus-visible {
  outline: 0;
}

button,
input,
select,
textarea {
  color: #a4a4a4;
  font-size: 16px;
  line-height: 1.875;
  word-break: break-word;
  box-sizing: border-box;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
    width: 100%;
    color: #b7b7b7;
    border: none;
    background: transparent;
    border-bottom: 1px solid #fff;
    padding: 16px 7px;
    box-sizing: border-box;
    outline: none;
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 400;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #a4a4a4;
}

select {
  border: none;
  background: transparent;
  outline: none;
  border-bottom: 1px solid #a4a4a4;
}

textarea {
  width: 100%;
  height: 130px;
  vertical-align: top;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a4a4a4;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #a4a4a4;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #a4a4a4;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #a4a4a4;
}
/*--------------------------------------------------------------
#   Links
--------------------------------------------------------------*/
a:hover, a:focus, a:active {
  color: #000;
  text-decoration: none;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}
/*--------------------------------------------------------------
#   Transitions
--------------------------------------------------------------*/
a, .Web-Header, .Web-Header.Sticky, .cta, img, .menu,
.panel-overlay, {
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    letter-spacing: normal;
    color: #a4a4a4;
}
/*--------------------------------------------------------------
#   Utilities
--------------------------------------------------------------*/
.Main-Wrapper {
    display: block;
    position: relative;
}

.main-border::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 2;
}

.main-border::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #f4f4f4;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 2;    
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}
#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -100px 0 0 -100px;
}

.cta {
    border: 1px solid #000;
    background-color: transparent;
    padding: 9px 22px;
    color: #000;
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 0.967rem;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    border-radius: 50px;
    position: relative;
    height: 45px;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.cta:hover{
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.cta-arrow {
    border: 1px solid #fff;
    background-color: transparent;
    padding: 9px 22px;
    color: #fff;
    width: auto;
    text-align: center;
    text-decoration: none;
    font-size: 0.967rem;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: normal;
    border-radius: 50px;
    position: relative;
    height: 45px;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.cta-arrow::after {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 12h15.879m-6.129 6.75l5.69-5.69c.292-.292.439-.676.439-1.06M13.75 5.25l5.69 5.69c.292.292.439.676.439 1.06'/%3E%3C/svg%3E");
    margin-left: 16px;
}

.parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    top: 0;
    left: 0;
}

.panel-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------------------------------
#   Header
--------------------------------------------------------------*/
.Web-Header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
}

.main-header .header-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

.header-row > [class^=col-header] {
    display: flex;
    align-items: stretch;
    position: static;
}

.header-row .col-header {
    flex-basis: 0;
    flex-grow: 0.33;
    max-width: 100%;
    width: 100%;
    min-height: 1px;
    align-items: center;
}

.header-row .col-header.col-header_center {
    -ms-flex-pack: center;
    justify-content: center;
    flex-grow: 0.6;
}

.header-row .col-header.col-header_left,
.header-row .col-header.col-header_right {
    flex-grow: 0.2;
}

.header-row .col-header.col-header_right {
    justify-content: flex-end;
}

.main-navigation {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: auto;
}

.main-navigation > ul {
    position: relative;
    display: flex;
    width: 100%;
    vertical-align: middle;
    height: 100%;
}

.main-navigation ul {
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    margin: 0px 0px;
    padding: 0px 0px;
}

.main-navigation > ul > li {
    margin: 0px 17px;
    padding: 0px 0px;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.main-navigation ul > li > a {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    outline: none;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    padding: 10px 0;
    text-transform: uppercase;
    font-family: "Archivo", sans-serif;
}

.header_cta ul li a {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    outline: none;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    background-color: #f6b842;
    font-weight: 400;
    border-radius: 50px;
    padding: 10px 32px;
    text-transform: uppercase;
    font-family: "Archivo", sans-serif;
    font-size: 0.967rem;
    line-height: 1;
    border: 2px solid #f6b842;
    height: 41px;
}

.header_cta ul li a:hover {
    background-color: #fff;
    border: 2px solid #fff;
}

.main-nav-mob {
    display: flex;
    align-items: center;
}

.menu-burger {
    position: relative;
    width: 58px;
    height: 26px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    display: flex;
}

.menu-burger > span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}

/*--------------------------------------------------------------
# Header Sticky
--------------------------------------------------------------*/
.header-sticky {
    position: fixed;
    top: -200px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000;
    opacity: 0;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
    border-bottom: 1px solid rgb(255 255 255 / 100%);
    padding: 10px 0;
}

.Web-Header.Sticky .header-sticky {
    top: 0;
    opacity: 1;
}

.header-sticky .main-navigation ul > li > a {
    color: #006348;
    font-size: 0.875rem;
}

.header-sticky .main-navigation ul > li.header_cta > a {
    color: #fff;
}

.header-sticky .menu-burger > span {
    background-color: #fff;
}

/*--------------------------------------------------------------
#   Panel Side Mobile
--------------------------------------------------------------*/
.side-panel {
    width: 400px;
    max-width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    overflow-x: hidden;
    z-index: 9999;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    /* -webkit-transform: translateX(0); */
    /* -ms-transform: translateX(0); */
    /* transform: translateX(0); */
    -webkit-transition: all .6s cubic-bezier(.77,0,.175,1);
    -o-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77,0,.175,1);
}

.side-panel.side-panel-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.side-panel_inner {
    height: 100%;
    padding: 18px 14px 24px 40px;
}

.side-panel_head {
    padding: 14px 0 13px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btnPanelMenu {
    position: relative;
    left: -10px;
}

.side-panel_body {
    padding: 1rem 0;
}

.side-panel-redes {
    margin-top: 24px;
    line-height: 0;
}

.side-panel_body nav ul li {
    margin-bottom: 1rem;
}

.side-panel_body nav ul li a {
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.3s ease-out 0s;
}

.side-panel_body nav ul li a:hover {
    color: #fff;
}

.dropdown-menu {
    background-color: #009fe3;
    border: 0;
    width: 100%;
    padding: 10px;
}

.side-panel_body nav ul li.li_contacto a {
    -webkit-text-stroke-color: #f6b842;
}

.side-panel_body nav ul li.li_contacto a:hover {
    color: #f6b842;
}

.side-panel_body nav ul li.li_idioma {
    display: flex;
    gap: 10px;
}

.side-panel_body nav ul li.li_idioma a.active {
    -webkit-text-stroke-color: #f6b842;
}

.side-panel_body nav ul li.li_idioma a.active:hover {
    color: #f6b842;
}



/*--------------------------------------------------------------
#   Footer
--------------------------------------------------------------*/
.Web-Footer {
    padding: 80px 0;
}

.footer-title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 3.151rem;
    line-height: 1;
}

.footer-list li i {
    float: left;
    font-size: 1.5rem;
    line-height: 2.063rem;
}

.footer-list li p {
    font-size: 1.5rem;
    line-height: 2.063rem;
    padding-left: 40px;
}

.footer-list li p.extraBold {
    font-weight: 800;
}

.footer-list li a {
    font-size: inherit;
    line-height: inherit;
}

.widget-footer a {
    color: #fff;
    text-decoration: none;
}

.footer-copy {
    font-size: 0.75rem;
    line-height: 1;
    font-weight: 400;
}

.btnForm {
    background-color: #0097cd;
    border: 1px solid #0097cd;
}

.btnForm:hover {
    background-color: #f6b842;
    border: 1px solid #f6b842;
    color: #000;
}

.btnForm:hover::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 12h15.879m-6.129 6.75l5.69-5.69c.292-.292.439-.676.439-1.06M13.75 5.25l5.69 5.69c.292.292.439.676.439 1.06'/%3E%3C/svg%3E");
}

/*--------------------------------------------------------------
#   Hero
--------------------------------------------------------------*/
.seccion_hero {
    position: relative;
}

.seccion_hero_video {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    overflow: hidden;
}

.seccion_hero_video .wrapper_video {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.seccion_hero_video .wrapper_video video {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    display: block;
    vertical-align: middle;
}

.hero_container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero_container .hero_container_inner {
    width: 100%;
    max-width: 1342px;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 0;
}

.hero_container .hero_container_inner .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 8.462rem;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin-bottom: 0;
}

.hero_container .hero_container_inner .title .ruido {
    position: relative;
    color: transparent;
    display: inline-block;
    animation-name: shake-little;
      animation-duration: 4s;
      animation-timing-function: ease-in-out;
      animation-iteration-count: infinite;
}

.hero_container .hero_container_inner .title .ruido::after {
    content: '';
    background-image: url("../../assets/img/hero-ruido.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -19px;
    right: 0px;
    width: 520px;
    height: 161px;
}

.hero_container .hero_container_inner .arrow {
    display: block;
    text-align: center;
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
}

.seccion_hero .wrapper_circulos {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
}

.seccion_hero .wrapper_circulos .box_circulos {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1235px;
}

.seccion_hero .wrapper_circulos .box_circulos .circulos {}

.circleRotating {
    -webkit-animation: rotating 17s linear infinite;
    -moz-animation: rotating 17s linear infinite;
    -ms-animation: rotating 17s linear infinite;
    -o-animation: rotating 17s linear infinite;
    animation: rotating 17s linear infinite;
}

@keyframes rotating {
    0% {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
#   Nosotros
--------------------------------------------------------------*/
.seccion_nosotros {
    background-color: #ebeceb;
    color: #000;
    border-radius: 36px;
    background-image: url("../../assets/img/fondo-textura-02.jpg");
    background-position: top center;
    background-size: cover;
    padding: 120px 0;
}

.seccion_nosotros .title {
    font-size: 2.996rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    position: relative;
}

.seccion_nosotros .title .deg {
    display: inline-block;
    transform: rotate(1deg);
}

.seccion_nosotros .title .papel {
    position: relative;
}

.seccion_nosotros .title .papel::before {
    content: '';
    background-image: url('../../assets/img/adhesivo-azul.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -22px;
    left: -20px;
    width: 547px;
    height: 87px;
    z-index: -1;
    transform: rotate(-2deg);
}

.seccion_nosotros .text {
    font-size: 1.5rem;
    line-height: 2.063rem;
    max-width: 605px;
    margin-right: auto;
    margin-left: auto;
}

.seccion_nosotros .cta-arrow {
    border: 1px solid #000;
    padding: 9px 24px;
    color: #000;
    height: 42px;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.seccion_nosotros .cta-arrow::after {
    -webkit-transition: stroke 0.2s ease-out 0s;
    -moz-transition: stroke 0.2s ease-out 0s;
    -o-transition: stroke 0.2s ease-out 0s;
    transition: stroke 0.2s ease-out 0s;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 12h15.879m-6.129 6.75l5.69-5.69c.292-.292.439-.676.439-1.06M13.75 5.25l5.69 5.69c.292.292.439.676.439 1.06'/%3E%3C/svg%3E");
}

.seccion_nosotros .cta-arrow:hover {
    background-color: #000;
    color: #fff;
}

.seccion_nosotros .cta-arrow:hover::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 12h15.879m-6.129 6.75l5.69-5.69c.292-.292.439-.676.439-1.06M13.75 5.25l5.69 5.69c.292.292.439.676.439 1.06'/%3E%3C/svg%3E");
}

/*--------------------------------------------------------------
#   Frases
--------------------------------------------------------------*/
.seccion_palabras {
    padding-top: 90px;
}

.w-layout-vflex {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.home_servico-wrap {
    width: 120%;
    position: relative;
    top: 0%;
    bottom: auto;
    right: auto;
}

.home_servico-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
    position: relative;
    inset: 0% auto auto 0%;
    overflow: hidden;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.home_servico-title-link {
    color: #fff;
    flex: none;
    font-size: 3.151rem;
    line-height: 1;
    text-decoration: none;
    transition: background-color .3s;
}

.home_servico-title-link.is-1 {
    z-index: 300;
    background-color: #000;
    margin-left: 10vw;
    padding-bottom: 0;
    position: absolute;
    inset: 0% auto auto 0%
}

.home_servico-title-link.is-2 {
    z-index: 300;
    background-color: #000;
    white-space: nowrap;
    padding-bottom: 0;
    margin-left: 30vw;
    position: absolute;
    inset: 0% auto auto 0%;
}

.home_servico-title-link.is-3 {
    z-index: 300;
    background-color: #000;
    white-space: nowrap;
    margin-left: 10vw;
    padding-bottom: 0;
    position: absolute;
    inset: 0% auto auto 0%;
}

.home_servico-title {
    color: #fff;
    flex: none;
    font-size: 3.151rem;
    line-height: 1;
    text-decoration: none;
    transition: color .3s;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

.home_servico-link {
    grid-column-gap: 2rem;
    flex-flow: row;
    flex: none;
    align-self: stretch;
    width: auto;
    height: auto;
    text-decoration: none;
    display: flex;
    position: relative;
    inset: 0% auto auto 0%;
    white-space: nowrap;
}

.home_servico-link.is-1 {
    flex-direction: row;
    height: auto;
    left: -18%;
}

.home_servico-title.is-sub {
    opacity: .53;
    color: #f2f2f200;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #cafa38;
    transition: color .2s,opacity .2s;
    position: relative
}

.home_servico-title.is-sub:hover {
    opacity: 1;
    color: #cafa38;
    -webkit-text-stroke-color: #cafa38
}

.home_servico-title-link .home_servico-title {
    font-weight: 900;
}

.home_servico-title.is-sub.title-azul {
    -webkit-text-stroke-color: #0097cd;
}

.home_servico-title.is-sub.title-azul:hover {
    opacity: 1;
    color: #0097cd;
    -webkit-text-stroke-color: #0097cd
}

.home_servico-title.is-sub.title-amarillo {
    -webkit-text-stroke-color: #f6b842;
}

.home_servico-title.is-sub.title-amarillo:hover {
    opacity: 1;
    color: #f6b842;
    -webkit-text-stroke-color: #f6b842
}

/* Animación derecha a izquierda */
@keyframes moverDerechaIzquierda {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carrusel-derecha {
  animation: moverDerechaIzquierda 20s linear infinite;
}

/* Animación izquierda a derecha */
@keyframes moverIzquierdaDerecha {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.carrusel-izquierda {
  animation: moverIzquierdaDerecha 20s linear infinite;
}

/*--------------------------------------------------------------
#   Destacados
--------------------------------------------------------------*/
.seccion_destacados {
    padding: 100px 0 50px;
}

.card_destacados {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    transition: all .5s ease;
}

.card_destacados .imagen {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 36px;
    transition: all .5s ease;
}

.card_destacados .destacado_content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card_destacados .destacado_content .text {
    font-size: 2rem;
    line-height: 2.282rem;
    text-transform: uppercase;
    text-align: center;
    animation-duration: 3s;
    animation-timing-function: ease;
}

.card_destacados:hover {}

.card_destacados:hover .imagen {
    transform: scale(1.1);
}

.card_destacados:hover .destacado_content .text {}

.wrapper_impronta {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    justify-content: center;
    align-items: center;
}
.wrapper_impronta .impronta_item {
    width: 300px;
    height: 300px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.wrapper_impronta .impronta_item .texto {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    color: #0097cd;
}
.wrapper_impronta .impronta_item:nth-child(even) .texto {
    color: #f6b842;
}

/*--------------------------------------------------------------
#   Servicios
--------------------------------------------------------------*/
.seccion_servicios {
    padding: 120px 0;
    position: relative;
}

.papel_flotante {
    position: absolute;
    top: 124px;
    left: 26%;
    z-index: -2;
}

.seccion_servicios .title {
    font-size: 4.071rem;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.seccion_servicios .title .deg {
    display: block;
    transform: rotate(4deg);
}

.seccion_servicios .title::before {
    content: '';
    background-image: url('../../assets/img/adhesivo-amarillo.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -28px;
    left: -53px;
    width: 496px;
    height: 116px;
    z-index: -1;
}

.card_servicios {
    border: 9px solid #fff;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
/*     animation-duration: 3s; */
/*     animation-timing-function: ease; */
/*     animation-iteration-count: infinite; */
}

.card_servicios.card_servicios-01 {
/*     animation-name: rotate01; */
}
.card_servicios.card_servicios-02 {
/*     animation-name: rotate02;     */
}
.card_servicios.card_servicios-03 {
/*     animation-name: rotate01; */
}
.card_servicios.card_servicios-04 {
/*     animation-name: rotate02; */
}

.card_servicios .imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_servicios .servicios_content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 38px;
}

.card_servicios .servicios_content .cta {
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.75rem;
    padding: 6px 23px;
    height: 29px;
    transition: all .5s ease;
}

.card_servicios .servicios_content .cta:hover {
    background-color: #fff;
    color: #000;
}

.seccion_servicios .box_cta .cta-arrow {
    background-color: #f6b842;
    border: 1px solid #f6b842;
    color: #000;
    height: 41px;
}

.seccion_servicios .box_cta .cta-arrow::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4 12h15.879m-6.129 6.75l5.69-5.69c.292-.292.439-.676.439-1.06M13.75 5.25l5.69 5.69c.292.292.439.676.439 1.06'/%3E%3C/svg%3E");
}

.seccion_servicios .box_cta .cta-arrow:hover {
    background-color: #fff;
    border: 1px solid #fff;
}

/* Animation */
@keyframes rotate01 {
    0% {
        animation-timing-function: ease-out;
        transform: rotateZ(0deg);
    }
    50% {
        animation-timing-function: ease-in;
        transform: rotateZ(-1deg);
    }
    75% {
        animation-timing-function: ease-out;
        transform: rotateZ(1deg);
    }
    100% {
        animation-timing-function: ease-out;
        transform: rotateZ(0deg);
    }    
}

@keyframes rotate02 {
    from,
    to {
        animation-timing-function: ease-in;
        transform: rotateZ(0deg);
    }
    25%,
    75% {
        animation-timing-function: ease-out;
        transform: rotateZ(1deg);
    }
    50% {
        animation-timing-function: ease-in;
        transform: rotateZ(0deg);
    }
}

/*--------------------------------------------------------------
#   Testimonios
--------------------------------------------------------------*/
.seccion_testimonios {
    background-color: #ebeceb;
    color: #000;
    border-radius: 36px;
    background-image: url('../../assets/img/fondo-textura-02.jpg');
    background-position: top center;
    background-size: cover;
    padding: 120px 0;
}

.seccion_testimonios .title {
    font-size: 3.151rem;
    line-height: 1;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
}

.grid-testimonio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 34px;
}

.card_testimonio {
    cursor: grab;
    user-select: none;
    background-color: #fff;
    border-radius: 36px;
    overflow: hidden;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-start;
    align-items: flex-start;
    height: 100%;
}

.card_testimonio .testimonio_autor {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 16px;
}

.card_testimonio .testimonio_autor .testimonio_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.card_testimonio .testimonio_autor svg {
    width: 60px !important;
    flex: 0 0 auto;
} 

.card_testimonio .testimonio_autor .autor {
    font-size: 1.25rem;
    line-height: 1;
}

.card_testimonio .testimonio_autor .autor_rol {
    font-size: 1rem;
    line-height: 1.1;
}

.card_testimonio .testimonio_text {
    margin-bottom: 16px;
}

.card_testimonio .testimonio_text .text {
    font-size: 1rem;
    line-height: 1.5rem;
}

.card_testimonio .testimonio_cta {
}

.card_testimonio .testimonio_cta .cta {
    font-size: 0.75rem;
    padding: 6px 18px;
    height: 29px;
}

/*--------------------------------------------------------------
#   Marcas
--------------------------------------------------------------*/
.seecion_marcas {
    padding: 100px 0;
}

.seecion_marcas .text {
    font-size: 1.5rem;
    line-height: 2.063rem;
    max-width: 755px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.seecion_marcas .text .dest {
    color: #0097cd;
    font-weight: 800;
}

.grid-marcas {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 40px;
}

.carousel-continuo {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.carousel-continuo .carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    font-size: 0;
}

.carru-continuo-set-one {
    display: flex;
    align-items: center;
    will-change: transform;
    animation: 90s kf_one infinite linear;
    gap: 50px;
}

.carru-continuo-set-two {
    display: flex;
    align-items: center;
    will-change: transform;
    animation: 90s kf_two infinite linear;
    gap: 50px;
}

.marcas {
    width: 192px;
    text-align: center;
    flex-shrink: 0;
}

.marcas img {
    transition-duration: 0.5s;
}

.marcas:hover img {
    opacity: 0.33;
}

@keyframes kf_one {
    0% {transform: translateX(0%);}
    25% {transform: translateX(-50%);}
    25.01% {transform: translateX(150%);}
}

@keyframes kf_two {
    0% {transform: translateX(0%);}
    75% {transform: translateX(-150%);}
    75.01% {transform: translateX(50%);}
}

/*--------------------------------------------------------------
#   Mapa
--------------------------------------------------------------*/
.seecion_mapa .title {
    font-size: 2.996rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transform: rotate(1deg);
    margin-bottom: -50px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.seecion_mapa .title .ruido {
    position: relative;
    display: inline-block;
    animation-name: shake-little;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.seecion_mapa .title .ruido::after {
    content: '';
    background-image: url('../../assets/img/ruido.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: -7px;
    left: -2px;
    width: 177px;
    height: 54px;
}

.imagen_mapa {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1159px;
    margin-right: auto;
    margin-left: auto;
}

.imagen_mapa .mapa_con_locacion {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    animation-name: opacity;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.imagen_mapa .mapa_sin_locacion {}

@keyframes opacity {
    0% {
        opacity: 0; }
    50% {
        opacity: 1; }
    100% {
        opacity: 0; }
}

/*! * * * * * * * * * * * * * * * * * * * *\  
  CSShake :: shake
  v1.5.0
  CSS classes to move your DOM
  (c) 2015 @elrumordelaluz
  http://elrumordelaluz.github.io/csshake/
  Licensed under MIT
\* * * * * * * * * * * * * * * * * * * * */
.shake {
  display: inherit;
  transform-origin: center center; }

.shake-freeze,
.shake-constant.shake-constant--hover:hover,
.shake-trigger:hover .shake-constant.shake-constant--hover {
  animation-play-state: paused; }

.shake-freeze:hover,
.shake-trigger:hover .shake-freeze, .shake:hover,
.shake-trigger:hover .shake {
  animation-play-state: running; }

@keyframes shake {
  2% {
    transform: translate(-0.5px, 2.5px) rotate(-0.5deg); }
  4% {
    transform: translate(0.5px, -1.5px) rotate(-0.5deg); }
  6% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg); }
  8% {
    transform: translate(0.5px, 2.5px) rotate(-0.5deg); }
  10% {
    transform: translate(-1.5px, 2.5px) rotate(1.5deg); }
  12% {
    transform: translate(2.5px, -0.5px) rotate(-0.5deg); }
  14% {
    transform: translate(2.5px, 2.5px) rotate(1.5deg); }
  16% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg); }
  18% {
    transform: translate(0.5px, 2.5px) rotate(1.5deg); }
  20% {
    transform: translate(1.5px, -1.5px) rotate(-0.5deg); }
  22% {
    transform: translate(0.5px, 1.5px) rotate(1.5deg); }
  24% {
    transform: translate(-0.5px, 1.5px) rotate(0.5deg); }
  26% {
    transform: translate(-1.5px, -1.5px) rotate(0.5deg); }
  28% {
    transform: translate(1.5px, 2.5px) rotate(1.5deg); }
  30% {
    transform: translate(2.5px, -1.5px) rotate(1.5deg); }
  32% {
    transform: translate(1.5px, 1.5px) rotate(1.5deg); }
  34% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg); }
  36% {
    transform: translate(2.5px, -0.5px) rotate(-0.5deg); }
  38% {
    transform: translate(0.5px, 0.5px) rotate(0.5deg); }
  40% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg); }
  42% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg); }
  44% {
    transform: translate(-0.5px, -0.5px) rotate(-0.5deg); }
  46% {
    transform: translate(1.5px, 2.5px) rotate(-0.5deg); }
  48% {
    transform: translate(2.5px, 2.5px) rotate(1.5deg); }
  50% {
    transform: translate(0.5px, 2.5px) rotate(1.5deg); }
  52% {
    transform: translate(1.5px, -1.5px) rotate(1.5deg); }
  54% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg); }
  56% {
    transform: translate(1.5px, 1.5px) rotate(0.5deg); }
  58% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg); }
  60% {
    transform: translate(-0.5px, 0.5px) rotate(-0.5deg); }
  62% {
    transform: translate(2.5px, -1.5px) rotate(1.5deg); }
  64% {
    transform: translate(2.5px, -0.5px) rotate(0.5deg); }
  66% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg); }
  68% {
    transform: translate(-1.5px, -0.5px) rotate(0.5deg); }
  70% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg); }
  72% {
    transform: translate(1.5px, 0.5px) rotate(1.5deg); }
  74% {
    transform: translate(0.5px, 0.5px) rotate(1.5deg); }
  76% {
    transform: translate(-1.5px, -0.5px) rotate(0.5deg); }
  78% {
    transform: translate(-1.5px, -1.5px) rotate(-0.5deg); }
  80% {
    transform: translate(-0.5px, -0.5px) rotate(0.5deg); }
  82% {
    transform: translate(-0.5px, 1.5px) rotate(1.5deg); }
  84% {
    transform: translate(-1.5px, 2.5px) rotate(-0.5deg); }
  86% {
    transform: translate(-1.5px, -0.5px) rotate(-0.5deg); }
  88% {
    transform: translate(2.5px, -0.5px) rotate(-0.5deg); }
  90% {
    transform: translate(2.5px, -1.5px) rotate(-0.5deg); }
  92% {
    transform: translate(2.5px, 0.5px) rotate(-0.5deg); }
  94% {
    transform: translate(0.5px, 1.5px) rotate(-0.5deg); }
  96% {
    transform: translate(1.5px, 2.5px) rotate(0.5deg); }
  98% {
    transform: translate(2.5px, -0.5px) rotate(1.5deg); }
  0%, 100% {
    transform: translate(0, 0) rotate(0); } }

.shake:hover,
.shake-trigger:hover .shake, .shake.shake-freeze, .shake.shake-constant {
  animation-name: shake;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; }

@keyframes shake-little {
  2% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  4% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  6% {
    transform: translate(1px, 1px) rotate(0.5deg); }
  8% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  10% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  12% {
    transform: translate(1px, 1px) rotate(0.5deg); }
  14% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  16% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  18% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  20% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  22% {
    transform: translate(1px, 1px) rotate(0.5deg); }
  24% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  26% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  28% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  30% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  32% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  34% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  36% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  38% {
    transform: translate(1px, 1px) rotate(0.5deg); }
  40% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  42% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  44% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  46% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  48% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  50% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  52% {
    transform: translate(1px, 1px) rotate(0.5deg); }
  54% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  56% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  58% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  60% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  62% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  64% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  66% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  68% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  70% {
    transform: translate(1px, 1px) rotate(0.5deg); }
  72% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  74% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  76% {
    transform: translate(0px, 1px) rotate(0.5deg); }
  78% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  80% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  82% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  84% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  86% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  88% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  90% {
    transform: translate(1px, 1px) rotate(0.5deg); }
  92% {
    transform: translate(1px, 1px) rotate(0.5deg); }
  94% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  96% {
    transform: translate(1px, 0px) rotate(0.5deg); }
  98% {
    transform: translate(0px, 0px) rotate(0.5deg); }
  0%, 100% {
    transform: translate(0, 0) rotate(0); } }

.shake-little:hover,
.shake-trigger:hover .shake-little, .shake-little.shake-freeze, .shake-little.shake-constant {
  animation-name: shake-little;
  animation-duration: 100ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; }

/* Animation Hero Arrow */
.vertical {
    animation-name: shake-vertical;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes shake-vertical {
    0% {
        transform: translate(0, -9px); }
    50% {
        transform: translate(0, 0); }
    100% {
        transform: translate(0, -9px); }
}

.shake-vertical:hover,
.shake-trigger:hover .shake-vertical, 
.shake-vertical.shake-freeze, 
.shake-vertical.shake-constant {
  animation-name: shake-vertical;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
/* END Animation Hero Arrow */

@keyframes appear {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 150px);
        transform: translate3d(0, 0, 150px); }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0); }
}

.block-appear {
    animation: appear linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 35%;
    animation-duration: 10s;
}

/* Animation */
@keyframes rotate {
    from,
    to {
        animation-timing-function: ease-in;
        box-shadow:
            0 0 0 hsl(0,0%,80%),
            0.1rem 0 0 hsl(0,0%,100%),
            -0.2rem 0 0.75rem 0 hsla(0,0%,0%,0.3);
        transform: rotateY(-10deg);
    }
    25%,
    75% {
        animation-timing-function: ease-out;
        box-shadow:
            0 0 0 hsl(0,0%,80%),
            0 0 0 hsl(0,0%,100%),
            -0.25rem -0.05rem 1rem 0.15rem hsla(0,0%,0%,0.3);
        transform: rotateY(0deg);
    }
    50% {
        animation-timing-function: ease-in;
        box-shadow:
            -0.1rem 0 0 hsl(0,0%,80%),
            0 0 0 hsl(0,0%,100%),
            -0.3rem -0.1rem 1.5rem 0.3rem hsla(0,0%,0%,0.3);
        transform: rotateY(10deg);
    }
}

/*--------------------------------------------------------------
#   INGLES VERSIÓN
--------------------------------------------------------------*/
.main-en .hero_container .hero_container_inner .title {
    font-size: 7.462rem;
}
.main-en .hero_container .hero_container_inner .title .ruido {}
.main-en .hero_container .hero_container_inner .title .ruido::after {
    background-image: url('../../assets/img/hero-noise.png');
    top: -20px;
    right: -19px;
    width: 470px;
    height: 146px;
}
.main-en .seccion_nosotros .text {
    font-size: 1.4rem;
}
.main-en .seccion_servicios .title::before {
    left: -75px;
}
.main-en .seecion_marcas .text {
    font-size: 1.4rem;
}
.main-en .seccion_nosotros .title .papel::before {
    top: -17px;
    left: -38px;
}
.main-en .seecion_mapa .title .ruido {
    color: #fff;
}
.main-en .seecion_mapa .title .ruido::after {
    display: none;
}