@font-face {
    font-family: Sf;
    src: url('../elements/fonts/SFUI.otf');
}
@font-face {
    font-family: Poppins-black;
    src: url('../elements/fonts/Poppins-Black.ttf');
}
@keyframes rotar {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
@keyframes desplaza {
    0% {transform: translate(0%,0%);}
    20% {transform: translate(40%,5%);}
    40% {transform: translate(60%,1%);}
    60% {transform: translate(90%,4%);}
    80% {transform: translate(40%,0%);}
    100% {transform: translate(0%,0%);}
}
@keyframes toright {
    from {left: 0vw;transform: rotate(45deg);}
    to {left: 60vw;transform: rotate(-45deg);}
}
@keyframes toleft {
    from {left: 60vw;transform: rotate(-45deg);}
    to {left: 0vw;transform: rotate(45deg);}
}
@keyframes sube {
    0% {transform: translateY(100vh) rotate(0deg);}
    50% {transform: translateY(10vh) rotate(-25deg);}
    100% {transform: translateY(0vh) rotate(-45deg);}
}
@keyframes cards {
    to {transform: translate(0);opacity: 1;}
}
@keyframes revcards {
    from {transform: translate(0);opacity: 1;}
    to {transform: translate(40px, 30px);opacity: 0;}
}
@keyframes entrada {
    to {transform: translateX(0);}
}
@keyframes salida {
    to {transform: translate(200%);}
}
@keyframes opacidad {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes inop {
    0% {opacity: 1;}
    50% {opacity: 0.5;}
    100% {opacity: 0;display: none;}
}
@keyframes baja {
    to {transform: translateY(0px);opacity: 1;}
}
:root {
    --orange: #fe6e2e;
    --background: #d6d6d6;
    --gris: #1d2735;
    --meta-gris: #1d2026;
    --font: #8d969c;
    --mark-font: #a26c67;
    --soft: #fee2d6;
    --input: #eae9e9;
    --gray-divisor: #243141;
    --white: #fff;
    --red: #ff0051;
    --green: #008f07;
    --dark-grey: #10141a;
    --soft-green: #00d74d85;
    --soft-red: #ff004785;
    --soft-orange: #fe6e2e6e;
    --borde: 0px 0px 0 .4px #8a8a8a;
    --blue-bright: #86beeb;
    --blue: #2196f3;
}
* {
    box-sizing: border-box;
    user-select: none;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    align-content: center;
    font-family: Sf;
    background: var(--background);
    scroll-behavior: smooth;
}
img {
    pointer-events: none;
}
::-webkit-scrollbar {
    width: 5px;
    height: 0px;
}
::-webkit-scrollbar-track {
    background-color: #00000000;
    opacity: 0;
    position: absolute;
}
::-webkit-scrollbar-thumb {
    background-color: var(--gris);
    border-radius: 5px;
}
::-webkit-scrollbar-button {
    height: 0px;
    width: 0px;
}
::-ms-scrollbar-button {
    height: 0px;
    width: 0px;
}
::-ms-scollbar {
    width: 5px;
    height: 0px;
}
::-ms-scollbar-thumb {
    background-color: var(--gray-divisor);
    border-radius: 5px;
}
::-webkit-scrollbar:horizontal,
::-ms-scrollbar:horizontal {
    height: 0px;
    width: 0px;
    opacity: 0;
}
.loader {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    background: #242830;
    opacity: 0;
    animation: opacidad .5s linear both;
    z-index: 99;
}
.loader .movementContainer {
    width: 100px;
    height: 100px;
    position: relative;
    top: unset;
    left: unset;
    animation: rotar 2s linear infinite;
}
.hubContainer {
    width: 100svw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: 5px;
    scrollbar-color: var(--gray-divisor);
    padding-top: 30px;
    gap: 50px;
    background: url(../elements/imgs/curveline.svg) top right / 100% no-repeat;
}
.module {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.subModule {
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-200%);
    transition: transform .5s cubic-bezier(0, 0, 1, 0.7);
    border-radius: 40px;
    outline: none;
    box-shadow: -10px -10px 30px 0 #fff, 10px 10px 30px 0 #00000033;
    overflow: hidden;
}
.parent {
    width: 90svw;
    height: 90svh;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.div1 { 
    grid-area: 1 / 1 / 2 / 6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.div2 { 
    grid-area: 2 / 1 / 3 / 4;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.div3 { 
    grid-area: 3 / 1 / 4 / 4;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.div4 { 
    grid-area: 4 / 1 / 6 / 4;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.div5 { 
    grid-area: 2 / 4 / 4 / 6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.div6 { 
    grid-area: 6 / 4 / 4 / 6;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#sm0 {    
    /*background-image: url(../elements/imgs/curveline.svg);
    background-size: 100%;
    background-position: top right;
    background-repeat: no-repeat;*/
    transform: translate(-200%);
    animation: entrada .5s linear 1s both;
}
.subModule:nth-of-type(even){
    transform: translateX(-200%);
}
.subModule.show {
    transform: translateX(0);
    transition: transform .5s cubic-bezier(0.86, 0, 0.07, 1);
}
#canvas {
    position: fixed;
    z-index: 8;
    right: 10%;
    bottom: 30vh;
    transition: 1s cubic-bezier(1, 0.2, 0.3, 1);
    filter: drop-shadow(20px 15px 17px #00000099);
    transform: rotate(-45deg);
    cursor: grab;
}
.navBar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    position: absolute;
    top: 0;
    z-index: 7;
}
.logoSpace,
.optionsSpace {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.optionsSpace {
    width: 70%;
}
.logoSpace {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0px;
    padding: 10px 10px 10px 70px;
    background: url(../elements/imgs/SanmiguelLogo.webp) 5px / 200px no-repeat;
}
.logoSpace h2 {
    margin: 0px 0px -10px 0px;
    color: var(--orange);
    font-size: 1.7em;
}
.logoSpace span {
    font-size: 10px;
    color: var(--background);
    margin-top: 5px;
    letter-spacing: 1px;
}
.optionsSpace {
    justify-content: flex-end;
}
.navigator {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.option::marker {
    color: #00000000;
}
.option {
    font-size: 12px;
    color: var(--gray-divisor);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out;
}
.option::after {
    content: "";
    width: 100%;
    height: 0px;
    position: absolute;
    left: 0;
    z-index: 1;
    background: var(--gris);
    transition: all .3s ease-in-out;
}
.option:hover::after {
    transition: all .3s ease-in-out;
    height: 110%;
}
.option:hover {
    transition: all .3s ease-in-out;
    transform: scale(1.1);
}
.option:hover span {
    color: var(--background);
    position: relative;
    z-index: 2;
}
.contSides {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sides {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-radius: 40px;
}
.leftSide {
    width: 50%;
    padding: 20px 0px 20px 30px;
    flex-direction: row;
    position: relative;
}
.rightSide {
    width: 50%;
    padding: 10px 40px;
}
.upping {
    width: 20%;
    height: 70%;
    border-radius: 30px;
    position: relative;
    background: var(--background);
    box-shadow: 2px 2px 10px 0 #bbbbbb, inset 4px 4px 6px 0 #dddddd;
}
.dcont {
    width: 100%;
    height: 70%;
    border-radius: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
}
.titleContainer {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.unimagen {
    width: 70%;
    height: unset;
    aspect-ratio: 1/1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    border-radius: 25px;
    z-index: 1;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .5s;
}
.unimagen:hover {
    transform: translateZ(-10px) rotateX(-20deg) rotateY(-20deg);
}

.card {
    position: relative;
    width: 80%;
    aspect-ratio: 1/1;
    background-color: var(--background);
    border-radius: 20px;
    box-shadow: -10px -10px 30px 0 #fff, 10px 10px 30px 0 #00000033;
    overflow: hidden;
  }
  
  .top-card {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 65%;
    transition: height 0.3s ease;
    background-color: var(--background);
    background-image: url(../elements/imgs/speed.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  }
  
  .bottom-card {
    border-radius: 20px;
    height: 35%;
    transition: height 0.3s ease;
    background-color: var(--gray-divisor);
  }
  
  .card-content {
    padding-top: 13%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  .card-title {
    font-weight: 700;
    font-size: 18px;
  }
  .card-txt {
    font-size: 14px;
  }
  
  .card-btn {
    font-size: 13px;
    margin-top: 15%;
    text-decoration: none;
    color: white;
    background-color: transparent;
    border: solid 2px #fff;
    border-radius: 15px;
    padding: 5%;
    cursor: pointer;
  }
  

  .card:hover .top-card {
    height: 35%;
    transition: height 0.3s ease;
  }
  .card:hover .bottom-card {
    height: 65%;
    transition: height 0.3s ease;
  }
  .card:hover .bottom-card::before {
    bottom: 238px;
    transition: bottom 0.3s ease;
  }
  
  .card-btn:hover {
    color: var(--gris);
    background-color: var(--background);
    transition: background-color 0.4s ease;
  }
.secondModule:nth-child(2) {
    align-items: flex-start;
    justify-content: flex-start;
}
.secondSide {
    background: url(../elements/imgs/launion2.jpg) top / cover no-repeat;
}
.imageRouter {
    max-width: 70%;
    max-height: 100%;
    filter: drop-shadow(20px 15px 15px #00000091);
}
.squares {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    display: flex;
}
.sqicons {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0px;
    justify-content: space-between;
    z-index: 5;
}
.sqico {
    width: 20%;
    height: unset;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
    cursor: pointer;
    background: var(--background);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    position: relative;
    opacity: 0;
    transform: translateY(-200px);
}
.sqico:hover {
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    transform: scale(1.1);
}
.sqico:nth-child(1) {
    background: var(--background) url(../elements/imgs/home-wifi.svg) center / 40% no-repeat;
    animation: baja .3s linear 1.7s both;
}
.sqico:nth-child(2) {
    background: var(--background) url(../elements/imgs/server.svg) center / 40% no-repeat;
    animation: baja .3s linear 1.9s both;
}
.sqico:nth-child(3) {
    background: var(--background) url(../elements/imgs/planet.svg) center / 40% no-repeat;
    animation: baja .3s linear 2.1s both;
}
.sqico:nth-child(4) {
    background: var(--background) url(../elements/imgs/shield.svg) center / 40% no-repeat;
    animation: baja .3s linear 2.3s both;
}
.sqico:nth-child(1)::after {
    content: "Internet para su hogar y su negocio";
}
.sqico:nth-child(2)::after {
    content: "Tecnología de punta para un excelénte servicio";
}
.sqico:nth-child(3)::after {
    content: "Internet para todas sus actividades en línea";
}
.sqico:nth-child(4)::after {
    content: "Protección gracias a nuestros procesos de seguridad";
}
.sqico::after {
    content: "";
    transition: all 1s cubic-bezier(1, 0, 0, 1);
    top: 0px;
    word-break: break-word;
    text-align: center;
    position: absolute;
    border-radius: 35px 30px 0px 35px;
    font-size: 0px;
    padding: 0px;
    color: var(--background);
    background: var(--gray-divisor);
    box-shadow: -10px -10px 30px 0 #00000033,10px 10px 30px 0 #00000033;
}
.sqico:hover::after {
    padding: 8px;
    font-size: 10px;
    transform: translate(-60px,-60px);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    z-index: 5;
}
.text-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    height: 20vh;
    position: relative;
    z-index: 2;
}
.bFont {
    margin: 10px 0px;
    font-size: clamp(1.5em,2em,2.2em);
    color: var(--gris);
    font-family: Poppins-black;
    line-height: 30px;
}
.mFont {
    font-size: clamp(12px,13px,1em);
    color: var(--gray-divisor);
    word-break: break-word;
}
.minicardsContainer {
    width: 80%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}
.miniCard {
    width: 30%;
    height: unset;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    padding: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 20px;
    position: relative;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
    transform: translateY(100px);
    opacity: 0;
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    background: var(--background) url(../elements/imgs/curveline.svg) bottom left / cover no-repeat;
}
.miniCard:nth-child(1) {
    animation: cards .3s linear 1.4s both;
}
.miniCard:nth-child(2) {
    animation: cards .3s linear 1.6s both;
}
.miniCard:nth-child(3) {
    animation: cards .3s linear 1.8s both;
}
.smallImage {
    max-width: 60%;
    max-height: unset;
    aspect-ratio: 1/1;
    position: absolute;
    display: flex;
    top: -40px;
    right: -40px;
    filter: drop-shadow(2px 4px 6px #00000033);
}
.smallTitle {
    font-size: clamp(10px,11px,13px);
    font-family: Poppins-black;
    margin: 0;
    color: var(--gris);
}
.smallText {
    font-size: clamp(10px,11px,12px);
    color: var(--gray-divisor);
}
.email-user-container {
    width: 90%;
    height: 55%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 5px 0px;
}
#labelemail {
    color: var(--gray-divisor);
    font-size: 11px;
    padding: 5px;
    transform: translate(40px, 30px);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    opacity: 0;
}
.user-email {
    width: 100%;
    height: 50px;
    padding: 5px 5px 5px 45px;
    outline: none;
    border: 0;
    font-size: 14px;
    color: var(--gray-divisor);
    box-shadow: inset -5px -6px 13px 0 #fff, inset 5px 4px 10px 0 #00000040;
    border-radius: 10px;
    background: var(--background) url(../elements/imgs/whatsapp.svg) 15px / 20px no-repeat;
}
.user-email::placeholder {
    color: #7a7f86;
}
.send-button-container {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
#emailto {
    width: 180px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-divisor);
    border: 0;
    border-radius: 10px;
    background: var(--background);
    cursor: pointer;
    overflow: hidden;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
    transition: all .3s cubic-bezier(1, 0, 0, 1);
}
#emailto span {
    z-index: 2;
} 
#emailto::after {
    content: "";
    width: 0px;
    height: 0px;
    display: flex;
    position: absolute;
    background: var(--gris);
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    z-index: 1;
}
#emailto:hover::after {
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    width: 150%;
    height: 150%;
    border-radius: 40px;
}
#emailto:hover {
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    transform: scale(1.1);
}
#emailto:hover span {
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    transform: scale(1.1);
    color: var(--background);
}
.speed-test-general-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--background);
}
.iframe-container {
    width: 95%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iframe-container iframe {
    width: 95%;
    height: 90%;
    overflow: hidden;
    border-radius: 30px;
    border: 0;
    box-shadow: 6px 5px 9px 0 #00000094;
}
.modalizer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-200%);
    background: var(--background);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    animation: entrada .3s linear both;
    transition: all .3s cubic-bezier(1, 0, 0, 1);
}
.closeModal {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 7px 2px #00000033;
    background: var(--gris);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
.closeModal::after {
    content: "X";
    color: var(--red);
}
.testSpeed {
    width: 70%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    background: var(--background) url(../elements/imgs/spedometer.svg) 90% 10% / 30% no-repeat;
    border-radius: 60% 150% 80% 100% / 80% 40% 100% 39%;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
    overflow: hidden;
    padding: 40px;
}
.testSpeed h2 {
    color: var(--gris);
    font-size: 1.7em;
    text-align: center;
}
.toolButton {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 0;
    cursor: pointer;
    z-index: 2;
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    background: var(--background);
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
}
.toolButton span {
    position: absolute;
    z-index: 2;
    font-size: 15px;
    color: var(--gris);
    letter-spacing: -.5px;
    transition: all .5s cubic-bezier(1, 0, 0, 1);
}
.toolButton::after {
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    background: var(--gris);
    transform: translate(-115px, -15px) scale(1);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
    z-index: 0;
}
.toolButton:hover {
    box-shadow: 4px 4px 12px 0 #1d2631;
    border: 2px solid var(--gray-divisor);
    background: var(--gris);
    transform: scale(1.1);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
}
.toolButton:hover::after {
    transform: translate(0px, 0px) scale(15);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
}
.toolButton:hover span {
    color: var(--background);
    transition: all .5s cubic-bezier(1, 0, 0, 1);
}
.movementContainer {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../elements/imgs/SanMiguelVector.webp) center / 100% no-repeat;
    position: absolute;
    transition: all .5s ease-in-out;
    animation: rotar 25s linear infinite;
    z-index: 0;
    left: 100px;
}
.snippetSquare {
    width: 100%;
    height: 25%;
    background: var(--background);
    border-radius: 20px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 5px;
    transition:all .3s cubic-bezier(1, 0, 0, 1);
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
}
.snippetTitle{
    margin: 0;
    color: var(--gris);
}
.MediumSnippetText {
    color: var(--orange);
    font-weight: 600;
    font-size: 15px;
}
.snippetText {
    font-size: 12px;
    color: var(--font);
}
.contentBigText {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
}
.contentBigText span {
    font-size: 5em;
    font-family: Poppins-black;
    font-weight: 600;
    letter-spacing: -3px;
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleY(2);
    flex-direction: column;
    line-height: 58px;
    background-image: url(../elements/imgs/launion.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    filter: contrast(.7) drop-shadow(4px 2px 2px #00000053);
}
.contentBigText span b {
    letter-spacing: 0px;
}
.mobileOptions {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    flex-direction: column;
    gap: 10px;
    background: var(--background) url(../elements/imgs/SanmiguelLogo.webp) center 5% / 100px no-repeat;
    z-index: 10;
    overflow: hidden;
}
.optionsCont {
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 8px;
    transform: translate(-200%);
    transition: transform .5s cubic-bezier(0, 0, 1, 0.7);
    border-radius: 40px;
    box-shadow: 6px 6px 17px 0 #00000033;
    animation: entrada .5s linear both;
}
.mobileoption {
    width: 90%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--background);
    color: var(--gris);
    border-radius: 8px;
    font-size: 12px;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
}
.attribution {
    width: 100px;
    height: 30px;
    font-size: 10px;
    position: absolute;
    bottom: 5px;
    color: var(--gray-divisor);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url(../elements/imgs/ccore.webp) right / 15px no-repeat;
}
.burguer {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--background);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border-radius: 5px;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
    z-index: 12;
}
.part {
    width: 20px;
    height: 2px;
    background: var(--gray-divisor);
    border-radius: 2px;
    transition: all .3s ease-in-out;
}
.active-part {
    transition: all .3s ease-in-out;
}
.active-part:nth-child(1){
    transform: rotate(45deg);
}
.active-part:nth-child(2){
    display: none;
}
.active-part:nth-child(3){
    transform: rotate(-45deg) translate(3px, -3px);
}
.logos-container {
    width: 50%;
    height: 50%;
    position: absolute;
    bottom: 15px;
    left: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.logoImg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
    transform: translateY(100px);
}
.logoImg:nth-child(1){
    background-image: url(../elements/imgs/wifi-logo.svg);
    animation: cards .3s linear 2s both;
}
.logoImg:nth-child(2){
    background-image: url(../elements/imgs/windows.svg);
    animation: cards .3s linear 2.3s both;
}
.logoImg:nth-child(3){
    background-image: url(../elements/imgs/linux.svg);
    animation: cards .3s linear 2.5s both;
}
.logoImg:nth-child(4){
    background-image: url(../elements/imgs/android.svg);
    animation: cards .3s linear 2.7s both;
}
.logoImg:nth-child(5){
    background-image: url(../elements/imgs/apple.svg);
    animation: cards .3s linear 2.9s both;
}
.wrongpattern{
    box-shadow: 0 0 0 0 #00000000;
    background: var(--soft-red) url(../elements/imgs/error.svg) 15px / 20px no-repeat;
}
.user-section-content {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.user-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.usearch-box {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.subtcontent {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.box-search {
    width: 80%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}
.box-search label {
    font-size: 12px;
    color: var(--gray-divisor);
}
#usearch-bill {
    width: 100%;
    height: 40px;
    padding: 5px 5px 5px 40px;
    background: var(--background) url(../elements/imgs/shield.svg) 8px / 25px no-repeat;
    border: 0;
    font-size: 14px;
    color: var(--gris);
    border-radius: 10px;
    outline: none;
    box-shadow: inset -5px -6px 13px 0 #fff, inset 5px 4px 10px 0 #00000040;
}
#usearch-bill::placeholder {
    font-size: 12px;
    color: #24314185;
}
#search-bill {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    background: var(--background);
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: -10px -10px 30px 0 #fff,10px 10px 30px 0 #00000033;
}
#search-bill::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 45px;
    background: var(--background);
    transition: all .4s cubic-bezier(1, 0, 0, 1);
}
#search-bill:hover::after {
    background: var(--gris);
    transition: all .4s cubic-bezier(1, 0, 0, 1);
    transform: scaleX(120) scale(1.1);
}
#search-bill:hover #textButtonSearch {
    color: var(--background);
}
#textButtonSearch {
    font-size: 12px;
    color: var(--gris);
    position: relative;
    z-index: 3;
}
.foot-user-search {
    width: 100%;
    height: 30%;
}
.user-section-1 {
    grid-area: 1 / 1 / 2 / 6;
}
.user-section-2 {
    grid-area: 2 / 3 / 6 / 6;
}
.user-section-3 {
    grid-area: 2 / 1 / 4 / 3;
}
.user-section-4 {
    grid-area: 4 / 1 / 6 / 3;
}

.rocket-space {
    --uib-size: 150px;
    --uib-color: var(--orange);
    --uib-speed: 2s;
    position: relative;
    height: var(--uib-size);
    width: var(--uib-size);
}
.rocket-space::before,
.rocket-space::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: var(--uib-color);
    animation: pulse var(--uib-speed) linear infinite;
    transform: scale(0);
    opacity: 0;
    transition: background-color 0.3s ease;
}
.rocket-space::after {
    animation-delay: calc(var(--uib-speed) / -2);
}
.pqrCont {
    width: 90%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.pqrdiv1 {
    grid-area: 1 / 1 / 6 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(../elements/imgs/operadora.webp) bottom / 90% no-repeat;
    filter: drop-shadow(15px 6px 20px #00000033);
}
.pqrdiv2 {
    grid-area: 1 / 3 / 2 / 6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
.pqrdiv3 {
    grid-area: 2 / 3 / 6 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes pulse {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
}

@media screen and (max-width: 800px) {
    .hubContainer {
        padding-top: 0px;
    }
    .subModule {
        width: 100svw;
        height: 100svh;
        border-radius: 0;
        box-shadow: none;
    }
    .parent {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(5, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
    .div1 { 
        grid-area: 1 / 1 / 1 / 6;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .div2 { 
        grid-area: 6 / 5 / 3 / 6;
    }
    .div3 { 
        grid-area: 3 / 1 / 3 / 5;
    }
    .div4 { 
        grid-area: 4 / 1 / 6 / 5;
    }
    .div5 { 
        grid-area: 5 / 1 / 5 / 6;
        display: none;
    }
    .div6 { 
        grid-area: 2 / 1 / 3 / 6;
    }/**/
    .burguer {
        display: flex;
    }
    .optionsSpace {
        display: none;
    }
    .logoSpace {
        width: 50%;
        height: 75%;
        background: url(../elements/imgs/SanmiguelLogo.webp) 5px / 70% no-repeat;
    }
    .contSides {
        flex-direction: column-reverse;
    }
    .sqicons {
        width: 90%;
        height: 80%;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0px;
        position: relative;
        z-index: 3;
    }
    .sqico {
        width: 12vw;
        height: unset;
        aspect-ratio: 1/1;
    }
    .dcont {
        height: 100%;
        justify-content: flex-start;
        flex-direction: column-reverse;
    }
    .text-container {
        width: 100%;
        padding: 0 25px;
    }
    .unimagen {
        display: none;
    }
    .minicardsContainer {
        width: 90%;
        height: 90%;
        align-items: flex-end;
        margin: 0 auto;
    }
    .miniCard {
        width: 30%;
        aspect-ratio: 1/1;
    }
    .smallImage {
        width: 80%;
        height: 90%;
        top: -75px;
        right: -35px;
        aspect-ratio: 1/1;
    }
    .sqico::after {
        width: 170px;
        top: 20px;
        right: -10px;
        display: flex;
    }
    .email-user-container {
        width: 100%;
        height: 55%;
        padding: 0 25px;
    }
    .logos-container{
        width: 90%;
        height: 30%;
        position: unset;
    }
    .logoImg{
        width: 30px;
        height: 30px;
        background-size: 15px;
    }
}
@media  screen and (max-width: 600px) {
    #canvas {
        width: 150px;
        bottom: 55vh;
    }
    titleContainer  {
        height: 70%;
    }
    .minicardsContainer {
        height: 90%;
        align-items: center;
    }
    .smallImage {
        width: 60%;
        height: 60%;
        top: -20px;
        right: -20px;
    }
    .miniCard {
        align-items: center;
        justify-content: center;
    }
    .smallTitle {
        font-size: 12px;
    }
    .smallText {
        display: none;
    }
    .bFont {
        font-size: 20px;
    }
    .mFont {
        font-size: 12px;
    }
    .secondModule {
        width: 100%;
        height: 50%;
    }
    .testSpeed {
        width: 80%;
        height: 80%;
        padding: 20px;
    }
    .testSpeed h2 {
        font-size: 12px;
    }
    .snippetSquare {
        display: none;
    }
    .user-section-2 {
        grid-area: 6 / 1 / 3 / 6;
    }
    .user-section-3 {
        grid-area: 2 / 1 / 2 / 2;
    }
    .user-section-4 {
        grid-area: 2 / 3 / 2 / 6;
    }
    .captcha-cont {
        flex-direction: column;
        height: 160px;
        margin-top: 25px;
    }
    .button {
        width: 100% !important;
    }
    #userPQR, #suscribeService {
        padding: 50px 20px !important;
    }
}
@media screen and (min-height: 1200px){
    .subModule {
        height: 70vh;
    }
    #canvas {
        bottom: 65%;
    }
    .logos-container{
        bottom: -60px;
    }
    .testSpeed {
        width: 80%;
        height: 80%;
        padding: 20px;
    }
    .testSpeed h2 {
        font-size: 12px;
    }
}