html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
  }
  
  /* Botón de cambio de idioma */
  .language-button {
    border-radius: 4px;
    margin-left: 0;
    padding: 6px 14px;
    border: 1px solid #222;
    background: #1e1e1e;
    color: #f4f4f4;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .language-button:hover {
    background: #2e2e2e;
    transform: scale(1.05);
  }

  /* Botón de idioma mobile - inicialmente oculto */
  .language-button-mobile {
    display: none;
  }

  /* Responsive: En mobile, ocultar el del desktop y mostrar el mobile */
  @media screen and (max-width: 991px) {
    /* Ocultar el botón del nav-menu-wrapper */
    .nav-menu-wrapper .language-button {
      display: none !important;
    }
    
    /* Mostrar y posicionar el botón mobile a la izquierda del botón Menu */
    .language-button-mobile {
      display: block;
      position: fixed;
      right: 100px;
      top: 26px;
      z-index: 10001;
      margin-left: 0;
      padding: 5px 12px;
      font-size: 13px;
      background: transparent;
      border: 1px solid #fcfcfc;
      color: #fcfcfc;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    
    .language-button-mobile:hover {
      transform: scale(1.05);
      opacity: 0.7;
    }
  }

  /* Desktop: al lado del menú de navegación */
  @media screen and (min-width: 992px) {
    .language-button {
      display: inline-block;
      margin-left: 0;
      margin-top: -5px;
    }
  }

  /* Slider de verificación (Desliza para confirmar) */
  .slider-verification-container {
    margin: 30px 0 20px 0;
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .slider-verification {
    width: 100%;
    margin-bottom: 20px;
    display: block !important;
  }

  .slider-track {
    position: relative;
    width: 100%;
    height: 50px;
    background: #f0f0f0;
    border: 1px solid #222;
    border-radius: 0px;
    overflow: hidden;
    user-select: none;
    display: block !important;
  }

  .slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #222;
    z-index: 1;
    pointer-events: none;
  }

  .slider-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
  }

  .slider-text-initial {
    color: #222;
  }

  .slider-text-success {
    color: #fff;
    display: none;
  }

  .slider-verification.verified .slider-text-initial {
    display: none;
  }

  .slider-verification.verified .slider-text-success {
    display: block;
  }

  .slider-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 3;
    transition: background-color 0.3s ease;
  }

  .slider-thumb:active {
    cursor: grabbing;
  }

  .slider-thumb svg {
    color: #222;
  }

  .slider-verification.verified .slider-thumb {
    background: #222;
    cursor: default;
  }

  .slider-verification.verified .slider-thumb svg {
    color: #fff;
  }

  /* Animación de shake para llamar la atención */
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
  }

  .slider-verification.shake {
    animation: shake 0.5s;
  }

  /* Responsive para móviles */
  @media screen and (max-width: 767px) {
    .slider-track {
      height: 45px;
    }
    
    .slider-thumb {
      width: 45px;
      height: 45px;
    }
    
    .slider-text {
      font-size: 13px;
    }
  }
  
  .lang-toggle-btn {
    border-radius: 0px !important;
    margin-left: 12px;
    padding: 6px 14px;
    border: 1px solid #222;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
  }
  
  .lang-toggle-btn:hover {
    background: #222;
    color: #fff;
  }
  
  article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
  }
  
  audio, canvas, progress, video {
    vertical-align: baseline;
    display: inline-block;
  }
  
  audio:not([controls]) {
    height: 0;
    display: none;
  }
  
  [hidden], template {
    display: none;
  }
  
  a {
    background-color: #0000;
  }
  
  a:active, a:hover {
    outline: 0;
  }
  
  abbr[title] {
    border-bottom: 1px dotted;
  }
  
  b, strong {
    font-weight: bold;
  }
  
  dfn {
    font-style: italic;
  }
  
  h1 {
    margin: .67em 0;
    font-size: 2em;
  }
  
  mark {
    color: #000;
    background: #ff0;
  }
  
  small {
    font-size: 80%;
  }
  
  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  
  sup {
    top: -.5em;
  }
  
  sub {
    bottom: -.25em;
  }
  
  img {
    border: 0;
  }
  
  svg:not(:root) {
    overflow: hidden;
  }
  
  hr {
    box-sizing: content-box;
    height: 0;
  }
  
  pre {
    overflow: auto;
  }
  
  code, kbd, pre, samp {
    font-family: monospace;
    font-size: 1em;
  }
  
  button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
  }
  
  button {
    overflow: visible;
  }
  
  button, select {
    text-transform: none;
  }
  
  button, html input[type="button"], input[type="reset"] {
    -webkit-appearance: button;
    cursor: pointer;
  }
  
  button[disabled], html input[disabled] {
    cursor: default;
  }
  
  button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  
  input {
    line-height: normal;
  }
  
  input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
  }
  
  input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  
  input[type="search"] {
    -webkit-appearance: none;
  }
  
  input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  legend {
    border: 0;
    padding: 0;
  }
  
  textarea {
    overflow: auto;
  }
  
  optgroup {
    font-weight: bold;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  td, th {
    padding: 0;
  }
  
  @font-face {
    font-family: webflow-icons;
    src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  
  [class^="w-icon-"], [class*=" w-icon-"] {
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-family: webflow-icons !important;
  }
  
  .w-icon-slider-right:before {
    content: "";
  }
  
  .w-icon-slider-left:before {
    content: "";
  }
  
  .w-icon-nav-menu:before {
    content: "";
  }
  
  .w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
    content: "";
  }
  
  .w-icon-file-upload-remove:before {
    content: "";
  }
  
  .w-icon-file-upload-icon:before {
    content: "";
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    height: 100%;
  }
  
  body {
    color: #333;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    -webkit-overflow-scrolling: smooth;
  }
  
  img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
  }
  
  html.w-mod-touch * {
    background-attachment: scroll !important;
  }
  
  .w-block {
    display: block;
  }
  
  .w-inline-block {
    max-width: 100%;
    display: inline-block;
  }
  
  .w-clearfix:before, .w-clearfix:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-clearfix:after {
    clear: both;
  }
  
  .w-hidden {
    display: none;
  }
  
  .w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
  }
  
  input.w-button {
    -webkit-appearance: button;
  }
  
  html[data-w-dynpage] [data-w-cloak] {
    color: #0000 !important;
  }
  
  .w-code-block {
    margin: unset;
  }
  
  pre.w-code-block code {
    all: inherit;
  }
  
  .w-optimization {
    display: contents;
  }
  
  .w-webflow-badge, .w-webflow-badge > img {
    box-sizing: unset;
    width: unset;
    height: unset;
    max-height: unset;
    max-width: unset;
    min-height: unset;
    min-width: unset;
    margin: unset;
    padding: unset;
    float: unset;
    clear: unset;
    border: unset;
    border-radius: unset;
    background: unset;
    background-image: unset;
    background-position: unset;
    background-size: unset;
    background-repeat: unset;
    background-origin: unset;
    background-clip: unset;
    background-attachment: unset;
    background-color: unset;
    box-shadow: unset;
    transform: unset;
    direction: unset;
    font-family: unset;
    font-weight: unset;
    color: unset;
    font-size: unset;
    line-height: unset;
    font-style: unset;
    font-variant: unset;
    text-align: unset;
    letter-spacing: unset;
    -webkit-text-decoration: unset;
    text-decoration: unset;
    text-indent: unset;
    text-transform: unset;
    list-style-type: unset;
    text-shadow: unset;
    vertical-align: unset;
    cursor: unset;
    white-space: unset;
    word-break: unset;
    word-spacing: unset;
    word-wrap: unset;
    transition: unset;
  }
  
  .w-webflow-badge {
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    color: #aaadb0 !important;
    overflow: unset !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 6px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: fixed !important;
    inset: auto 12px 12px auto !important;
    transform: none !important;
  }
  
  .w-webflow-badge > img {
    position: unset;
    visibility: unset !important;
    opacity: 1 !important;
    vertical-align: middle !important;
    display: inline-block !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 44px;
  }
  
  h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px;
  }
  
  h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  
  h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
  }
  
  h5 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  
  h6 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  blockquote {
    border-left: 5px solid #e2e2e2;
    margin: 0 0 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
  }
  
  figure {
    margin: 0 0 10px;
  }
  
  figcaption {
    text-align: center;
    margin-top: 5px;
  }
  
  ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
  }
  
  .w-list-unstyled {
    padding-left: 0;
    list-style: none;
  }
  
  .w-embed:before, .w-embed:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-embed:after {
    clear: both;
  }
  
  .w-video {
    width: 100%;
    padding: 0;
    position: relative;
  }
  
  .w-video iframe, .w-video object, .w-video embed {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  fieldset {
    border: 0;
    margin: 0;
    padding: 0;
  }
  
  button, [type="button"], [type="reset"] {
    cursor: pointer;
    -webkit-appearance: button;
    border: 0;
  }
  
  .w-form {
    margin: 0 0 15px;
  }
  
  .w-form-done {
    text-align: center;
    background-color: #ddd;
    padding: 20px;
    display: none;
  }
  
  .w-form-fail {
    background-color: #ffdede;
    margin-top: 10px;
    padding: 10px;
    display: none;
  }
  
  label {
    margin-bottom: 5px;
    font-weight: bold;
    display: block;
  }
  
  .w-input, .w-select {
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
  }
  
  .w-input::placeholder, .w-select::placeholder {
    color: #999;
  }
  
  .w-input:focus, .w-select:focus {
    border-color: #3898ec;
    outline: 0;
  }
  
  .w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
    cursor: not-allowed;
  }
  
  .w-input[disabled]:not(.w-input-disabled), .w-select[disabled]:not(.w-input-disabled), .w-input[readonly], .w-select[readonly], fieldset[disabled]:not(.w-input-disabled) .w-input, fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: #eee;
  }
  
  textarea.w-input, textarea.w-select {
    height: auto;
  }
  
  .w-select {
    background-color: #f3f3f3;
  }
  
  .w-select[multiple] {
    height: auto;
  }
  
  .w-form-label {
    cursor: pointer;
    margin-bottom: 0;
    font-weight: normal;
    display: inline-block;
  }
  
  .w-radio {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
  }
  
  .w-radio:before, .w-radio:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-radio:after {
    clear: both;
  }
  
  .w-radio-input {
    float: left;
    margin: 3px 0 0 -20px;
    line-height: normal;
  }
  
  .w-file-upload {
    margin-bottom: 10px;
    display: block;
  }
  
  .w-file-upload-input {
    opacity: 0;
    z-index: -100;
    width: .1px;
    height: .1px;
    position: absolute;
    overflow: hidden;
  }
  
  .w-file-upload-default, .w-file-upload-uploading, .w-file-upload-success {
    color: #333;
    display: inline-block;
  }
  
  .w-file-upload-error {
    margin-top: 10px;
    display: block;
  }
  
  .w-file-upload-default.w-hidden, .w-file-upload-uploading.w-hidden, .w-file-upload-error.w-hidden, .w-file-upload-success.w-hidden {
    display: none;
  }
  
  .w-file-upload-uploading-btn {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: normal;
    display: flex;
  }
  
  .w-file-upload-file {
    background-color: #fafafa;
    border: 1px solid #ccc;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0;
    padding: 8px 9px 8px 11px;
    display: flex;
  }
  
  .w-file-upload-file-name {
    font-size: 14px;
    font-weight: normal;
    display: block;
  }
  
  .w-file-remove-link {
    cursor: pointer;
    width: auto;
    height: auto;
    margin-top: 3px;
    margin-left: 10px;
    padding: 3px;
    display: block;
  }
  
  .w-icon-file-upload-remove {
    margin: auto;
    font-size: 10px;
  }
  
  .w-file-upload-error-msg {
    color: #ea384c;
    padding: 2px 0;
    display: inline-block;
  }
  
  .w-file-upload-info {
    padding: 0 12px;
    line-height: 38px;
    display: inline-block;
  }
  
  .w-file-upload-label {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
  }
  
  .w-icon-file-upload-icon, .w-icon-file-upload-uploading {
    width: 20px;
    margin-right: 8px;
    display: inline-block;
  }
  
  .w-icon-file-upload-uploading {
    height: 20px;
  }
  
  .w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .w-container:before, .w-container:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-container:after {
    clear: both;
  }
  
  .w-container .w-row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .w-row:before, .w-row:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-row:after {
    clear: both;
  }
  
  .w-row .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .w-col {
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
  }
  
  .w-col .w-col {
    padding-left: 0;
    padding-right: 0;
  }
  
  .w-col-1 {
    width: 8.33333%;
  }
  
  .w-col-2 {
    width: 16.6667%;
  }
  
  .w-col-3 {
    width: 25%;
  }
  
  .w-col-4 {
    width: 33.3333%;
  }
  
  .w-col-5 {
    width: 41.6667%;
  }
  
  .w-col-6 {
    width: 50%;
  }
  
  .w-col-7 {
    width: 58.3333%;
  }
  
  .w-col-8 {
    width: 66.6667%;
  }
  
  .w-col-9 {
    width: 75%;
  }
  
  .w-col-10 {
    width: 83.3333%;
  }
  
  .w-col-11 {
    width: 91.6667%;
  }
  
  .w-col-12 {
    width: 100%;
  }
  
  .w-hidden-main {
    display: none !important;
  }
  
  @media screen and (max-width: 991px) {
    .w-container {
      max-width: 728px;
    }
  
    .w-hidden-main {
      display: inherit !important;
    }
  
    .w-hidden-medium {
      display: none !important;
    }
  
    .w-col-medium-1 {
      width: 8.33333%;
    }
  
    .w-col-medium-2 {
      width: 16.6667%;
    }
  
    .w-col-medium-3 {
      width: 25%;
    }
  
    .w-col-medium-4 {
      width: 33.3333%;
    }
  
    .w-col-medium-5 {
      width: 41.6667%;
    }
  
    .w-col-medium-6 {
      width: 50%;
    }
  
    .w-col-medium-7 {
      width: 58.3333%;
    }
  
    .w-col-medium-8 {
      width: 66.6667%;
    }
  
    .w-col-medium-9 {
      width: 75%;
    }
  
    .w-col-medium-10 {
      width: 83.3333%;
    }
  
    .w-col-medium-11 {
      width: 91.6667%;
    }
  
    .w-col-medium-12 {
      width: 100%;
    }
  
    .w-col-stack {
      width: 100%;
      left: auto;
      right: auto;
    }
  }
  
  @media screen and (max-width: 767px) {
    .w-hidden-main, .w-hidden-medium {
      display: inherit !important;
    }
  
    .w-hidden-small {
      display: none !important;
    }
  
    .w-row, .w-container .w-row {
      margin-left: 0;
      margin-right: 0;
    }
  
    .w-col {
      width: 100%;
      left: auto;
      right: auto;
    }
  
    .w-col-small-1 {
      width: 8.33333%;
    }
  
    .w-col-small-2 {
      width: 16.6667%;
    }
  
    .w-col-small-3 {
      width: 25%;
    }
  
    .w-col-small-4 {
      width: 33.3333%;
    }
  
    .w-col-small-5 {
      width: 41.6667%;
    }
  
    .w-col-small-6 {
      width: 50%;
    }
  
    .w-col-small-7 {
      width: 58.3333%;
    }
  
    .w-col-small-8 {
      width: 66.6667%;
    }
  
    .w-col-small-9 {
      width: 75%;
    }
  
    .w-col-small-10 {
      width: 83.3333%;
    }
  
    .w-col-small-11 {
      width: 91.6667%;
    }
  
    .w-col-small-12 {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 479px) {
    .w-container {
      max-width: none;
    }
  
    .w-hidden-main, .w-hidden-medium, .w-hidden-small {
      display: inherit !important;
    }
  
    .w-hidden-tiny {
      display: none !important;
    }
  
    .w-col {
      width: 100%;
    }
  
    .w-col-tiny-1 {
      width: 8.33333%;
    }
  
    .w-col-tiny-2 {
      width: 16.6667%;
    }
  
    .w-col-tiny-3 {
      width: 25%;
    }
  
    .w-col-tiny-4 {
      width: 33.3333%;
    }
  
    .w-col-tiny-5 {
      width: 41.6667%;
    }
  
    .w-col-tiny-6 {
      width: 50%;
    }
  
    .w-col-tiny-7 {
      width: 58.3333%;
    }
  
    .w-col-tiny-8 {
      width: 66.6667%;
    }
  
    .w-col-tiny-9 {
      width: 75%;
    }
  
    .w-col-tiny-10 {
      width: 83.3333%;
    }
  
    .w-col-tiny-11 {
      width: 91.6667%;
    }
  
    .w-col-tiny-12 {
      width: 100%;
    }
  }
  
  .w-widget {
    position: relative;
  }
  
  .w-widget-map {
    width: 100%;
    height: 400px;
  }
  
  .w-widget-map label {
    width: auto;
    display: inline;
  }
  
  .w-widget-map img {
    max-width: inherit;
  }
  
  .w-widget-map .gm-style-iw {
    text-align: center;
  }
  
  .w-widget-map .gm-style-iw > button {
    display: none !important;
  }
  
  .w-widget-twitter {
    overflow: hidden;
  }
  
  .w-widget-twitter-count-shim {
    vertical-align: top;
    text-align: center;
    background: #fff;
    border: 1px solid #758696;
    border-radius: 3px;
    width: 28px;
    height: 20px;
    display: inline-block;
    position: relative;
  }
  
  .w-widget-twitter-count-shim * {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
  }
  
  .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
    text-align: center;
    color: #999;
    font-family: serif;
    font-size: 15px;
    line-height: 12px;
    position: relative;
  }
  
  .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
    display: block;
    position: relative;
  }
  
  .w-widget-twitter-count-shim.w--large {
    width: 36px;
    height: 28px;
  }
  
  .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 18px;
  }
  
  .w-widget-twitter-count-shim:not(.w--vertical) {
    margin-left: 5px;
    margin-right: 8px;
  }
  
  .w-widget-twitter-count-shim:not(.w--vertical).w--large {
    margin-left: 6px;
  }
  
  .w-widget-twitter-count-shim:not(.w--vertical):before, .w-widget-twitter-count-shim:not(.w--vertical):after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 0;
  }
  
  .w-widget-twitter-count-shim:not(.w--vertical):before {
    border-width: 4px;
    border-color: #75869600 #5d6c7b #75869600 #75869600;
    margin-top: -4px;
    margin-left: -9px;
  }
  
  .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -10px;
  }
  
  .w-widget-twitter-count-shim:not(.w--vertical):after {
    border-width: 4px;
    border-color: #fff0 #fff #fff0 #fff0;
    margin-top: -4px;
    margin-left: -8px;
  }
  
  .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -9px;
  }
  
  .w-widget-twitter-count-shim.w--vertical {
    width: 61px;
    height: 33px;
    margin-bottom: 8px;
  }
  
  .w-widget-twitter-count-shim.w--vertical:before, .w-widget-twitter-count-shim.w--vertical:after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 100%;
    left: 50%;
  }
  
  .w-widget-twitter-count-shim.w--vertical:before {
    border-width: 5px;
    border-color: #5d6c7b #75869600 #75869600;
    margin-left: -5px;
  }
  
  .w-widget-twitter-count-shim.w--vertical:after {
    border-width: 4px;
    border-color: #fff #fff0 #fff0;
    margin-left: -4px;
  }
  
  .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 22px;
  }
  
  .w-widget-twitter-count-shim.w--vertical.w--large {
    width: 76px;
  }
  
  .w-background-video {
    color: #fff;
    height: 500px;
    position: relative;
    overflow: hidden;
  }
  
  .w-background-video > video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%;
  }
  
  .w-background-video > video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important;
  }
  
  .w-background-video--control {
    background-color: #0000;
    padding: 0;
    position: absolute;
    bottom: 1em;
    right: 1em;
  }
  
  .w-background-video--control > [hidden] {
    display: none !important;
  }
  
  .w-slider {
    text-align: center;
    clear: both;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    background: #ddd;
    height: 300px;
    position: relative;
  }
  
  .w-slider-mask {
    z-index: 1;
    white-space: nowrap;
    height: 100%;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  
  .w-slide {
    vertical-align: top;
    white-space: normal;
    text-align: left;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
  }
  
  .w-slider-nav {
    z-index: 2;
    text-align: center;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    height: 40px;
    margin: auto;
    padding-top: 10px;
    position: absolute;
    inset: auto 0 0;
  }
  
  .w-slider-nav.w-round > div {
    border-radius: 100%;
  }
  
  .w-slider-nav.w-num > div {
    font-size: inherit;
    line-height: inherit;
    width: auto;
    height: auto;
    padding: .2em .5em;
  }
  
  .w-slider-nav.w-shadow > div {
    box-shadow: 0 0 3px #3336;
  }
  
  .w-slider-nav-invert {
    color: #fff;
  }
  
  .w-slider-nav-invert > div {
    background-color: #2226;
  }
  
  .w-slider-nav-invert > div.w-active {
    background-color: #222;
  }
  
  .w-slider-dot {
    cursor: pointer;
    background-color: #fff6;
    width: 1em;
    height: 1em;
    margin: 0 3px .5em;
    transition: background-color .1s, color .1s;
    display: inline-block;
    position: relative;
  }
  
  .w-slider-dot.w-active {
    background-color: #fff;
  }
  
  .w-slider-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff;
  }
  
  .w-slider-dot:focus.w-active {
    box-shadow: none;
  }
  
  .w-slider-arrow-left, .w-slider-arrow-right {
    cursor: pointer;
    color: #fff;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    width: 80px;
    margin: auto;
    font-size: 40px;
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  
  .w-slider-arrow-left [class^="w-icon-"], .w-slider-arrow-right [class^="w-icon-"], .w-slider-arrow-left [class*=" w-icon-"], .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute;
  }
  
  .w-slider-arrow-left:focus, .w-slider-arrow-right:focus {
    outline: 0;
  }
  
  .w-slider-arrow-left {
    z-index: 3;
    right: auto;
  }
  
  .w-slider-arrow-right {
    z-index: 4;
    left: auto;
  }
  
  .w-icon-slider-left, .w-icon-slider-right {
    width: 1em;
    height: 1em;
    margin: auto;
    inset: 0;
  }
  
  .w-slider-aria-label {
    clip: rect(0 0 0 0);
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }
  
  .w-slider-force-show {
    display: block !important;
  }
  
  .w-dropdown {
    text-align: left;
    z-index: 900;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: relative;
  }
  
  .w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    position: relative;
  }
  
  .w-dropdown-toggle {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-right: 40px;
    display: inline-block;
  }
  
  .w-dropdown-toggle:focus {
    outline: 0;
  }
  
  .w-icon-dropdown-toggle {
    width: 1em;
    height: 1em;
    margin: auto 20px auto auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }
  
  .w-dropdown-list {
    background: #ddd;
    min-width: 100%;
    display: none;
    position: absolute;
  }
  
  .w-dropdown-list.w--open {
    display: block;
  }
  
  .w-dropdown-link {
    color: #222;
    padding: 10px 20px;
    display: block;
  }
  
  .w-dropdown-link.w--current {
    color: #0082f3;
  }
  
  .w-dropdown-link:focus {
    outline: 0;
  }
  
  @media screen and (max-width: 767px) {
    .w-nav-brand {
      padding-left: 10px;
    }
  }
  
  .w-lightbox-backdrop {
    cursor: auto;
    letter-spacing: normal;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    color: #fff;
    text-align: center;
    z-index: 2000;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    background: #000000e6;
    outline: 0;
    font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    list-style: disc;
    position: fixed;
    inset: 0;
    -webkit-transform: translate(0);
  }
  
  .w-lightbox-backdrop, .w-lightbox-container {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    overflow: auto;
  }
  
  .w-lightbox-content {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  
  .w-lightbox-view {
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: absolute;
  }
  
  .w-lightbox-view:before {
    content: "";
    height: 100vh;
  }
  
  .w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
    height: 86vh;
  }
  
  .w-lightbox-frame, .w-lightbox-view:before {
    vertical-align: middle;
    display: inline-block;
  }
  
  .w-lightbox-figure {
    margin: 0;
    position: relative;
  }
  
  .w-lightbox-group .w-lightbox-figure {
    cursor: pointer;
  }
  
  .w-lightbox-img {
    width: auto;
    max-width: none;
    height: auto;
  }
  
  .w-lightbox-image {
    float: none;
    max-width: 100vw;
    max-height: 100vh;
    display: block;
  }
  
  .w-lightbox-group .w-lightbox-image {
    max-height: 86vh;
  }
  
  .w-lightbox-caption {
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #0006;
    padding: .5em 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  
  .w-lightbox-embed {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }
  
  .w-lightbox-control {
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 4em;
    transition: all .3s;
    position: absolute;
    top: 0;
  }
  
  .w-lightbox-left {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
    display: none;
    bottom: 0;
    left: 0;
  }
  
  .w-lightbox-right {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
    display: none;
    bottom: 0;
    right: 0;
  }
  
  .w-lightbox-close {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px;
    height: 2.6em;
    right: 0;
  }
  
  .w-lightbox-strip {
    white-space: nowrap;
    padding: 0 1vh;
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto hidden;
  }
  
  .w-lightbox-item {
    box-sizing: content-box;
    cursor: pointer;
    width: 10vh;
    padding: 2vh 1vh;
    display: inline-block;
    -webkit-transform: translate3d(0, 0, 0);
  }
  
  .w-lightbox-active {
    opacity: .3;
  }
  
  .w-lightbox-thumbnail {
    background: #222;
    height: 10vh;
    position: relative;
    overflow: hidden;
  }
  
  .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .w-lightbox-thumbnail .w-lightbox-tall {
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
  }
  
  .w-lightbox-thumbnail .w-lightbox-wide {
    height: 100%;
    left: 50%;
    transform: translate(-50%);
  }
  
  .w-lightbox-spinner {
    box-sizing: border-box;
    border: 5px solid #0006;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    animation: .8s linear infinite spin;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  
  .w-lightbox-spinner:after {
    content: "";
    border: 3px solid #0000;
    border-bottom-color: #fff;
    border-radius: 50%;
    position: absolute;
    inset: -4px;
  }
  
  .w-lightbox-hide {
    display: none;
  }
  
  .w-lightbox-noscroll {
    overflow: hidden;
  }
  
  @media (min-width: 768px) {
    .w-lightbox-content {
      height: 96vh;
      margin-top: 2vh;
    }
  
    .w-lightbox-view, .w-lightbox-view:before {
      height: 96vh;
    }
  
    .w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
      height: 84vh;
    }
  
    .w-lightbox-image {
      max-width: 96vw;
      max-height: 96vh;
    }
  
    .w-lightbox-group .w-lightbox-image {
      max-width: 82.3vw;
      max-height: 84vh;
    }
  
    .w-lightbox-left, .w-lightbox-right {
      opacity: .5;
      display: block;
    }
  
    .w-lightbox-close {
      opacity: .8;
    }
  
    .w-lightbox-control:hover {
      opacity: 1;
    }
  }
  
  .w-lightbox-inactive, .w-lightbox-inactive:hover {
    opacity: 0;
  }
  
  .w-richtext:before, .w-richtext:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-richtext:after {
    clear: both;
  }
  
  .w-richtext[contenteditable="true"]:before, .w-richtext[contenteditable="true"]:after {
    white-space: initial;
  }
  
  .w-richtext ol, .w-richtext ul {
    overflow: hidden;
  }
  
  .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after, .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after, .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7;
  }
  
  .w-richtext figure.w-richtext-figure-type-video > div:after, .w-richtext figure[data-rt-type="video"] > div:after {
    content: "";
    display: none;
    position: absolute;
    inset: 0;
  }
  
  .w-richtext figure {
    max-width: 60%;
    position: relative;
  }
  
  .w-richtext figure > div:before {
    cursor: default !important;
  }
  
  .w-richtext figure img {
    width: 100%;
  }
  
  .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
    opacity: .6;
  }
  
  .w-richtext figure div {
    color: #0000;
    font-size: 0;
  }
  
  .w-richtext figure.w-richtext-figure-type-image, .w-richtext figure[data-rt-type="image"] {
    display: table;
  }
  
  .w-richtext figure.w-richtext-figure-type-image > div, .w-richtext figure[data-rt-type="image"] > div {
    display: inline-block;
  }
  
  .w-richtext figure.w-richtext-figure-type-image > figcaption, .w-richtext figure[data-rt-type="image"] > figcaption {
    caption-side: bottom;
    display: table-caption;
  }
  
  .w-richtext figure.w-richtext-figure-type-video, .w-richtext figure[data-rt-type="video"] {
    width: 60%;
    height: 0;
  }
  
  .w-richtext figure.w-richtext-figure-type-video iframe, .w-richtext figure[data-rt-type="video"] iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .w-richtext figure.w-richtext-figure-type-video > div, .w-richtext figure[data-rt-type="video"] > div {
    width: 100%;
  }
  
  .w-richtext figure.w-richtext-align-center {
    clear: both;
    margin-left: auto;
    margin-right: auto;
  }
  
  .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
    max-width: 100%;
  }
  
  .w-richtext figure.w-richtext-align-normal {
    clear: both;
  }
  
  .w-richtext figure.w-richtext-align-fullwidth {
    text-align: center;
    clear: both;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  .w-richtext figure.w-richtext-align-fullwidth > div {
    padding-bottom: inherit;
    display: inline-block;
  }
  
  .w-richtext figure.w-richtext-align-fullwidth > figcaption {
    display: block;
  }
  
  .w-richtext figure.w-richtext-align-floatleft {
    float: left;
    clear: none;
    margin-right: 15px;
  }
  
  .w-richtext figure.w-richtext-align-floatright {
    float: right;
    clear: none;
    margin-left: 15px;
  }
  
  .w-nav {
    z-index: 1000;
    background: #ddd;
    position: relative;
  }
  
  .w-nav:before, .w-nav:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-nav:after {
    clear: both;
  }
  
  .w-nav-brand {
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
  }
  
  .w-nav-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  
  .w-nav-link.w--current {
    color: #0082f3;
  }
  
  .w-nav-menu {
    float: right;
    position: relative;
  }
  
  [data-nav-menu-open] {
    text-align: center;
    background: #c8c8c8;
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: visible;
    display: block !important;
  }
  
  .w--nav-link-open {
    display: block;
    position: relative;
  }
  
  .w-nav-overlay {
    width: 100%;
    display: none !important; /* Ocultar el overlay de Webflow */
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1c1c1c;
    z-index: 9998;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-overflow-scrolling: touch;
  }
  
  .w-nav-overlay .nav-menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    gap: 0;
  }
  
  /* Links principales */
  .w-nav-overlay .nav-link-menu {
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .w-nav-overlay .nav-link {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    display: block;
  }
  
  .w-nav-overlay .nav-link:hover {
    color: #999;
  }
  
  .w-nav-overlay .nav-link-menu:last-child {
    border-bottom: none;
  }
  
  /* Links de redes sociales */
  .w-nav-overlay .social-links-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .w-nav-overlay .social-link {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
  }
  
  .w-nav-overlay .social-link:hover {
    color: #fff;
  }
  
  /* Botón de idioma en mobile */
  .w-nav-overlay #language-toggle-mobile button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .w-nav-overlay #language-toggle-mobile button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  /* Navbar cuando el menú está abierto */
  .navbar.menu-is-open {
    z-index: 9999;
    position: relative;
  }

  
  .w-nav-overlay [data-nav-menu-open] {
    top: 0;
  }
  
  .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
  }
  
  .w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    right: auto;
  }
  
  .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
  }
  
  .w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    left: auto;
  }
  
  .w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
  }
  
  .w-nav-button:focus {
    outline: 0;
  }
  
  .w-nav-button.w--open {
    color: #fff;
    background-color: #c8c8c8;
  }
  
  .w-nav[data-collapse="all"] .w-nav-menu {
    display: none;
  }
  
  .w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
    display: block;
  }
  
  .w--nav-dropdown-list-open {
    position: static;
  }
  
  @media screen and (max-width: 991px) {
    .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none;
    }
  
    .w-nav[data-collapse="medium"] .w-nav-button {
      display: block;
    }
  }
  
  @media screen and (max-width: 767px) {
    .w-nav[data-collapse="small"] .w-nav-menu {
      display: none;
    }
  
    .w-nav[data-collapse="small"] .w-nav-button {
      display: block;
    }
  
    .w-nav-brand {
      padding-left: 10px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none;
    }
  
    .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block;
    }
  }
  
  .w-tabs {
    position: relative;
  }
  
  .w-tabs:before, .w-tabs:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
  }
  
  .w-tabs:after {
    clear: both;
  }
  
  .w-tab-menu {
    position: relative;
  }
  
  .w-tab-link {
    vertical-align: top;
    text-align: left;
    cursor: pointer;
    color: #222;
    background-color: #ddd;
    padding: 9px 30px;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  
  .w-tab-link.w--current {
    background-color: #c8c8c8;
  }
  
  .w-tab-link:focus {
    outline: 0;
  }
  
  .w-tab-content {
    display: block;
    position: relative;
    overflow: hidden;
  }
  
  .w-tab-pane {
    display: none;
    position: relative;
  }
  
  .w--tab-active {
    display: block;
  }
  
  @media screen and (max-width: 479px) {
    .w-tab-link {
      display: block;
    }
  }
  
  .w-ix-emptyfix:after {
    content: "";
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  .w-dyn-empty {
    background-color: #ddd;
    padding: 10px;
  }
  
  .w-dyn-hide, .w-dyn-bind-empty, .w-condition-invisible {
    display: none !important;
  }
  
  .wf-layout-layout {
    display: grid;
  }
  
  .w-code-component > * {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  :root {
    --white: #fcfcfc;
    --black: #1c1c1c;
    --primary--10: #dcccc1;
    --primary--20: #664949;
    --primary--30: #e2f1e7;
    --primary--40: #910000c6;
    --primary--50: #4b0707;
  }
  
  body {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-size: 14px;
    line-height: 1em;
  }
  
  h1 {
    letter-spacing: -.03em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 128px;
    font-weight: 400;
    line-height: .9em;
  }
  
  h2 {
    letter-spacing: -.03em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 112px;
    font-weight: 400;
    line-height: 1em;
  }
  
  h3 {
    letter-spacing: -.03em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2em;
  }
  
  h4 {
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1em;
  }
  
  h5 {
    letter-spacing: -.02em;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1em;
  }
  
  h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1em;
  }
  
  p {
    color: var(--black);
    margin-bottom: 0;
    font-family: Overusedgrotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
  }
  
  blockquote {
    color: var(--black);
    border-left: 5px solid #e2e2e2;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-family: Overusedgrotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
  }
  
  .page-wrapper.black {
    background-color: var(--black);
  }
  
  .style-guide-color-block {
    background-color: #fcfcfc;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 96px;
    padding: 12px;
    display: flex;
  }
  
  .style-guide-color-block.bg-color-white {
    background-color: var(--white);
    width: 100%;
  }
  
  .style-guide-color-block.bg-color-black {
    background-color: var(--black);
  }
  
  .style-guide-color-block.bg-color-black.borders {
    border: 1px solid var(--white);
  }
  
  .style-guide-color-block.bg-color-primary-10 {
    background-color: var(--primary--10);
  }
  
  .style-guide-color-block.bg-color-primary-20 {
    background-color: var(--primary--20);
  }
  
  .style-guide-color-block.bg-color-primary-30 {
    background-color: var(--primary--30);
  }
  
  .style-guide-color-block.bg-color-primary-40 {
    background-color: var(--primary--40);
  }
  
  .style-guide-color-block.bg-color-primary-50 {
    background-color: var(--primary--50);
  }
  
  .style-guide-container {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .description-block {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 446px;
    display: flex;
  }
  
  .style-guide-color-neutral {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
  }
  
  .style-guide-typography-component-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .link-primary {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
    overflow: hidden;
  }
  
  .nav-menu-container {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .nav-menu-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .footer-content-container {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .form-input {
    border-style: solid;
    border-width: 0 0 1px;
    border-color: black black var(--white);
    color: var(--white);
    background-color: #0000;
    margin-bottom: 0;
    padding: 20px 0;
    font-family: Overusedgrotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
  }
  
  .form-input.text-area {
    height: 146px;
  }
  
  .heading-3 {
    color: var(--white);
    letter-spacing: -.03em;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2em;
  }
  
  .heading-3.primary-30 {
    color: var(--primary--30);
  }
  
  .heading-3.black {
    color: var(--black);
  }
  
  .heading-4 {
    color: var(--white);
    letter-spacing: -.02em;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1em;
  }
  
  .heading-4.black {
    color: var(--black);
  }
  
  .heading-6 {
    color: var(--white);
    letter-spacing: 0;
    font-family: Overusedgrotesk, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1em;
  }
  
  .style-guide-typography-component {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border-bottom: 1px solid #53535c;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    display: flex;
  }
  
  .navbar-wrapper {
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    position: relative;
    z-index: 1;
  }
  
  .style-guide-content-wrapper {
    grid-column-gap: 96px;
    grid-row-gap: 96px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .heading-1 {
    color: var(--white);
    letter-spacing: -.03em;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 128px;
    font-weight: 400;
    line-height: .9em;
  }
  
  .display {
    color: var(--white);
    letter-spacing: -.03em;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 144px;
    font-weight: 400;
    line-height: .9em;
  }
  
  .display.primary-10 {
    color: var(--primary--10);
  }
  
  .display.primary-10.marquee {
    white-space: nowrap;
  }
  
  .display.hero-title {
    text-align: center;
  }
  
  .link-text-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    position: relative;
  }
  
  .style-guide-navigation {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 200px;
    padding-top: 46px;
    padding-bottom: 46px;
    display: flex;
    position: sticky;
    top: 100px;
  }
  
  .footer-menu-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #1c1c1c;
    transition: all 0.3s ease;
  }

  .main-page {
    position: relative;
    z-index: 1;
  }
  
  .mobile-size-typography {
    display: none;
  }
  
  .line-wrapper {
    width: 100%;
    height: 3px;
  }
  
  .text-wrapper {
    text-decoration: none;
  }
  
  .text-wrapper.menu-title {
    border-bottom: 1px solid var(--primary--10);
    flex-flow: column;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  .text-wrapper.hero-content {
    flex-flow: column;
    display: flex;
  }
  
  .text-wrapper.scroll {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .text-wrapper.about-content-section {
    max-width: 458px;
  }
  
  .text-wrapper.services-list {
    text-align: center;
  }
  
  .text-wrapper.blog-list {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    display: flex;
  }
  
  .text-wrapper.about-me {
    max-width: 208px;
  }
  
  .text-wrapper.description {
    max-width: 446px;
  }
  
  .text-wrapper.studio {
    justify-content: center;
    align-items: flex-start;
    width: 178px;
    display: flex;
  }
  
  .text-wrapper.work {
    width: 240px;
  }
  
  .text-wrapper.title-blog {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 740px;
    display: flex;
  }
  
  .text-wrapper.about {
    text-align: center;
  }
  
  .footer-copyright-container {
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    display: flex;
  }
  
  .footer-copyright-container.desktop {
    border-top: .5px solid var(--primary--10);
    justify-content: center;
    align-items: center;
    padding-top: 24px;
  }
  
  .style-guide-button-container {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
  }
  
  .nav-link {
    color: var(--white);
    letter-spacing: .25px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Overusedgrotesk, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
    text-decoration: none;
  }
  
  .button-text-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .button-text-wrapper.work {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 172px;
  }
  
  .style-guide-content-component {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    width: 100%;
    padding: 46px 26px;
    display: flex;
  }
  
  .style-guide-content-component.white {
    background-color: var(--white);
  }
  
  .heading-5 {
    color: var(--white);
    letter-spacing: -.02em;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1em;
  }
  
  .form-input-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    width: 100%;
    display: flex;
  }
  
  .image-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .footer-menu-list-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    width: 100%;
    display: flex;
  }
  
  .footer-menu-list-container.small {
    width: 240px;
  }
  
  .body-m-medium {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4em;
  }
  
  .body-m-medium.primary-10 {
    color: var(--primary--10);
  }
  
  .body-m-medium.primary-10:hover {
    color: var(--white);
  }
  
  .body-m-medium.primary-30 {
    color: var(--primary--30);
  }
  
  .heading-2 {
    color: var(--white);
    letter-spacing: -.03em;
    font-family: Librecasloncondensed, sans-serif;
    font-size: 112px;
    font-weight: 400;
    line-height: 1em;
    text-decoration: none;
  }
  
  .heading-2.primary-30 {
    color: var(--primary--30);
  }
  
  .nav-link-text {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-size: 18px;
    line-height: 1.4em;
    text-decoration: none;
  }
  
  .nav-link-text.w--current, .nav-link-text.style-guide.w--current {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }
  
  .link-submit {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    text-decoration: none;
    display: flex;
    overflow: hidden;
  }
  
  .desktop-size-typography {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }
  
  .line-hover-button {
    background-color: var(--white);
    width: 100%;
    height: 1.5px;
  }
  
  .line-hover-button.left.black, .line-hover-button.right.black {
    background-color: var(--black);
  }
  
  .footer-menu-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .style-guide-section {
    padding-top: 96px;
    padding-bottom: 64px;
  }
  
  .form {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .main-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.22222%;
    padding-right: 2.22222%;
  }
  
  .main-container.article {
    padding-left: 11.3889%;
    padding-right: 11.3889%;
  }
  
  .main-container.footer {
    height: 80%;
    overflow: hidden;
  }
  
  .footer-section {
    background-color: var(--primary--20);
    height: 50rem;
    padding-top: 46px;
    padding-bottom: 24px;
  }

  .body-l-medium {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4em;
  }
  
  .body-l-medium.black {
    color: var(--black);
  }
  
  .form-block {
    width: 100%;
  }
  
  .image-wrapper {
    overflow: hidden;
  }
  
  .image-wrapper.hero-content {
    justify-content: center;
    align-items: center;
    max-width: 210px;
    max-height: 260px;
    display: flex;
  }
  
  .image-wrapper.services {
    max-width: 470px;
    max-height: 324px;
    position: absolute;
  }
  
  .image-wrapper.work-list {
    max-width: 138px;
    max-height: 86px;
  }
  
  .image-wrapper.about-background {
    position: absolute;
    inset: 0%;
  }
  
  .image-wrapper.cta {
    filter: brightness(90%);
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    inset: 0%;
  }
  
  .image-wrapper.profile {
    max-width: 210px;
    max-height: 260px;
  }
  
  .image-wrapper.experiences {
    max-width: 400px;
    max-height: 335px;
  }
  
  .image-wrapper.statistics {
    max-width: 544px;
    height: 570px;
  }
  
  .image-wrapper.awards {
    max-width: 228px;
    height: 265px;
    position: absolute;
  }
  
  .image-wrapper.contact {
    max-width: 635px;
    height: 624px;
  }
  
  .image-wrapper.client-logo {
    max-width: 458px;
    max-height: 290px;
  }
  
  .image-wrapper.image-1 {
    max-width: 790px;
    max-height: 620px;
  }
  
  .image-wrapper.image-2 {
    max-height: 640px;
  }
  
  .image-wrapper.article {
    justify-content: center;
    align-items: center;
    max-height: 400px;
    display: flex;
  }
  
  .image-wrapper.thumbnail-work {
    justify-content: center;
    align-items: center;
    max-height: 866px;
    display: flex;
  }
  
  .style-guide-color-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .style-guide-color-grid.mobile {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .typography-information-block {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .body-s-semibold {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
  }
  
  .body-s-semibold.slash-nav-menu {
    color: #979797;
    font-family: Librecasloncondensed, sans-serif;
    font-weight: 400;
  }
  
  .body-s-semibold.primary-30 {
    color: var(--primary--30);
  }
  
  .body-l-semibold {
    color: var(--white);
    letter-spacing: .01em;
    font-family: Overusedgrotesk, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1em;
  }
  
  .body-l-semibold.black {
    color: var(--black);
  }
  
  .body-l-semibold.primary-20 {
    color: var(--primary--20);
  }
  
  .body-l-semibold.primary-10 {
    color: var(--primary--10);
  }
  
  .body-l-semibold.primary-40 {
    color: var(--primary--40);
  }
  
  .body-l-semibold.primary-30 {
    color: var(--primary--30);
  }
  
  .body-s-regular {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-weight: 400;
    line-height: 1.2em;
  }
  
  .body-s-regular.black {
    color: var(--black);
  }
  
  .body-s-regular.primary-20 {
    color: var(--primary--20);
  }
  
  .body-s-regular.primary-10 {
    color: var(--primary--10);
  }
  
  .body-s-regular.primary-40 {
    color: var(--primary--40);
  }
  
  .body-s-regular.primary-30 {
    color: var(--primary--30);
  }
  
  .font-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .body-l-regular {
    color: var(--white);
    font-family: Librecasloncondensed, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: .9em;
  }
  
  .body-l-regular.primary-30 {
    color: var(--primary--30);
  }
  
  .body-l-regular.black {
    color: var(--black);
  }
  
  .body-m-regular {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
  }
  
  .body-m-regular.black {
    color: var(--black);
  }
  
  .body-m-italic {
    color: var(--white);
    font-family: Librecasloncondensed Italic, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
  }
  
  .body-m-italic.primary-10 {
    color: var(--primary--10);
  }
  
  .body-m-semibold {
    color: var(--white);
    font-family: Overusedgrotesk, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
  }
  
  .style-guide-color-primary {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: flex;
  }
  
  .footer-marquee-text {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .icon-wrapper {
    min-width: 100px;
    height: 100px;
  }
  
  .icon {
    width: 100%;
    height: 100%;
  }
  
  .body {
    background-color: var(--black);
  }
  
  .hero-section {
    height: 100vh;
    padding-top: 64px;
    padding-bottom: 40px;
  }
  
  .hero-section.work {
    padding-top: 20px;
  }
  
  .hero-content-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    display: flex;
  }
  
  .hero-content-container.work {
    grid-column-gap: 210px;
    grid-row-gap: 210px;
  }
  
  .hero-content-container.blog {
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .hero-content-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    display: flex;
  }
  
  .hero-content-wrapper.work {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    justify-content: flex-start;
    align-items: center;
  }
  
  .hero-content-wrapper.blog-hero-title {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    justify-content: center;
    align-items: center;
  }
  
  .hero-content-block {
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    display: flex;
  }
  
  .about-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .about-content-container {
    height: 100%;
    padding: 40px;
    position: relative;
  }
  
  .about-content-wrapper {
    z-index: 1;
    grid-column-gap: 164px;
    grid-row-gap: 164px;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    display: flex;
    position: relative;
  }
  
  .about-content-header-wrapper {
    grid-column-gap: 128px;
    grid-row-gap: 128px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .section-title-container {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .about-content-block {
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
  }
  
  .button-text-wrapper-2 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    overflow: hidden;
  }
  
  .services-section {
    background-color: var(--black);
    padding-top: 88px;
    padding-bottom: 144px;
  }
  
  .services-content-container {
    grid-column-gap: 96px;
    grid-row-gap: 96px;
    flex-flow: column;
    display: flex;
  }
  
  .services-content-wrapper {
    grid-column-gap: 22%;
    grid-row-gap: 22%;
    display: flex;
  }
  
  .services-content-wrapper.desktop {
    grid-column-gap: 20%;
    grid-row-gap: 20%;
    justify-content: center;
    align-items: flex-start;
  }
  
  .services-content-wrapper.mobile {
    display: none;
  }
  
  .services-list {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    display: flex;
  }
  
  .services-content-block {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 400px;
    text-decoration: none;
    display: flex;
  }
  
  .services-list-title {
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }
  
  .work-section {
    background-color: var(--primary--50);
    padding-top: 40px;
    padding-bottom: 120px;
  }
  
  .work-content-container {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    display: flex;
  }
  
  .work-content-wrapper {
    grid-column-gap: 96px;
    grid-row-gap: 96px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .work-list-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-bottom: 1px solid #e2f1e799;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .work-list-content-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border-top: 1px solid var(--primary--30);
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    text-decoration: none;
    display: flex;
  }
  
  .blog-section {
    background-color: var(--black);
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  .blog-content-container {
    grid-column-gap: 96px;
    grid-row-gap: 96px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .blog-content-wrapper {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .blog-content-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }
  
  .blog-content-block.small {
    max-width: 400px;
  }
  
  .blog-content-block.big {
    max-width: 738px;
  }
  
  .link-wrapper.blog {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .link-wrapper.work {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
  }
  
  .cta {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .cta-content-container {
    padding: 40px;
    position: relative;
  }
  
  .cta-content-wrapper {
    z-index: 1;
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 615px;
    display: flex;
    position: relative;
  }
  
  .about-hero-section {
    padding-top: 20px;
    padding-bottom: 64px;
  }
  
  .about-hero-content-container {
    grid-column-gap: 96px;
    grid-row-gap: 96px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .about-title-container {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    flex-flow: column;
    width: 100%;
    display: flex;
  }
  
  .profile-container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .about-me-section {
    background-color: var(--primary--40);
    padding-top: 128px;
    padding-bottom: 128px;
  }
  
  .about-me-content-container {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }
  
  .about-me-content-wrapper {
    grid-column-gap: 128px;
    grid-row-gap: 128px;
    flex-flow: column;
    max-width: 846px;
    display: flex;
  }
  
  .about-me-content-block {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }
  
  .experiences-section {
    padding-top: 40px;
    padding-bottom: 120px;
  }
  
  .experiences-content-container {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    display: flex;
  }
  
  .experiences-content-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
  }
  
  .experiences-list-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    border-bottom: .5px solid var(--white);
    justify-content: flex-start;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
  }
  
  .date-wrapper.experiences {
    border-right: 1px solid var(--white);
    justify-content: flex-start;
    align-items: center;
    width: 280px;
    display: flex;
  }
  
  .experiences-content-block {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    justify-content: flex-start;
    align-items: center;
    height: 44px;
    display: flex;
  }
  
  .statistics-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  .statistics-content-container {
    grid-column-gap: 110px;
    grid-row-gap: 110px;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
  }
  
  .statistics-content-wrapper {
    grid-column-gap: 42px;
    grid-row-gap: 64px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .statistics-content-block {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: column;
    max-width: 280px;
    display: flex;
  }
  
  .statistics-heading-container {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .awards-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  .awards-content-container {
    grid-column-gap: 128px;
    grid-row-gap: 128px;
    flex-flow: column;
    display: flex;
  }
  
  .awards-content-wrapper {
    grid-column-gap: 230px;
    grid-row-gap: 230px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .awards-content-wrapper.mobile {
    display: none;
  }
  
  .awards-list-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }
  
  .blog-list-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  .blog-list-content-container {
    grid-column-gap: 220px;
    grid-row-gap: 220px;
    flex-flow: column;
    display: flex;
  }
  
  .contact-section {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  
  .contact-content-container {
    grid-column-gap: 188px;
    grid-row-gap: 188px;
    display: flex;
  }
  
  .contact-wrapper {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    max-width: 484px;
    display: flex;
  }
  
  .contact-form-title-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }
  
  .work-title-content-container {
    grid-column-gap: 224px;
    grid-row-gap: 224px;
    display: flex;
  }
  
  .year-wrapper {
    display: flex;
  }
  
  .work-title-content-wrapper {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .main-image-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .work-description-section {
    background-color: var(--primary--40);
    padding-top: 128px;
    padding-bottom: 128px;
  }
  
  .work-description-content-container {
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }
  
  .work-description-content-wrapper {
    grid-column-gap: 128px;
    grid-row-gap: 128px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    max-width: 864px;
    display: flex;
  }
  
  .work-description-content-wrapper.detail {
    grid-column-gap: 352px;
    grid-row-gap: 352px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .work-description-content-block {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .work-image-section {
    background-color: var(--white);
    padding-top: 128px;
    padding-bottom: 128px;
  }
  
  .work-image-content-container {
    grid-column-gap: 228px;
    grid-row-gap: 228px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .work-image-content-wrapper {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .work-image-link-wrapper {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .next-page-section {
    background-color: var(--primary--50);
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  .article-section {
    background-color: var(--primary--30);
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  .article-content-container {
    grid-column-gap: 186px;
    grid-row-gap: 186px;
    display: flex;
  }
  
  .article-content-wrapper, .heading-article-container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }
  
  .heading-article-container.mobile {
    display: none;
  }
  
  .paragraph.black, .rich-text-block.black {
    color: var(--black);
  }
  
  .article-content-right-container {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    flex-flow: column;
    min-width: 200px;
    padding-top: 90px;
    display: flex;
  }
  
  .article-content-right-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
  }
  
  .work-list-collection-wrapper {
    width: 100%;
  }
  
  .blog-link-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    text-decoration: none;
    display: flex;
  }
  
  .services-image-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    width: 100%;
    max-width: 470px;
    display: flex;
    position: relative;
  }
  
  .marquee-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .awards-image-wrapper {
    min-width: 228px;
    height: 265px;
    position: relative;
  }
  
  .license-section {
    padding-top: 146px;
    padding-bottom: 80px;
  }
  
  .license-content-container {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    flex-flow: column;
    display: flex;
  }
  
  .license-heading-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    display: flex;
  }
  
  .license-content-wrapper {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .license-info-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .changelog-section {
    padding-top: 180px;
    padding-bottom: 100px;
  }
  
  .changelog-content-container {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    display: flex;
  }
  
  .changelog-content-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
  }
  
  .footer-menu-left {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 100%;
    display: flex;
  }
  
  .mobile-image-wrapper {
    display: none;
  }
  
  @media screen and (min-width: 1440px) {
    .text-wrapper.detail {
      width: 240px;
    }
  
    .image-wrapper.client-logo {
      max-width: 460px;
      max-height: 300px;
    }
  
    .image-wrapper.image-1 {
      max-width: 872px;
      max-height: 640px;
    }
  
    .image-wrapper.thumbnail-work {
      justify-content: center;
      align-items: center;
      max-height: 866px;
      display: flex;
    }
  
    .work-description-content-wrapper.detail {
      grid-column-gap: 376px;
      grid-row-gap: 376px;
      flex-flow: row;
      justify-content: flex-start;
      align-items: flex-start;
      max-width: none;
    }
  
    .work-description-content-block.detail {
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .work-image-content-container {
      grid-column-gap: 128px;
      grid-row-gap: 128px;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .work-image-link-wrapper {
      justify-content: center;
      align-items: flex-start;
      width: 100%;
    }
  }
  
  @media screen and (max-width: 991px) {
    h1 {
      letter-spacing: normal;
      font-size: 40px;
      line-height: 1em;
    }
  
    h2 {
      letter-spacing: normal;
      font-size: 36px;
    }
  
    h3 {
      letter-spacing: normal;
      font-size: 24px;
    }
  
    h4 {
      letter-spacing: normal;
      font-size: 20px;
    }
  
    h5 {
      letter-spacing: normal;
      font-size: 18px;
      line-height: 1.2em;
    }
  
    h6 {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.2em;
    }
  
    p {
      font-size: 12px;
      line-height: 1.3em;
    }
  
    .description-block {
      max-width: 246px;
    }
  
    .menu-button {
      padding: 0;
    }
  
    .menu-button.w--open {
      color: #fff;
      background-color: #fcfcfc00;
    }
  
    .link-primary {
      grid-column-gap: 4px;
      grid-row-gap: 4px;
      display: flex;
    }
  
    .nav-menu-wrapper {
      display: none;
    }
    
    .w-nav-overlay .nav-menu-wrapper {
      background-color: #1c1c1c;
      flex-flow: column;
      height: 100vh;
      padding-top: 64px;
      padding-left: 20px;
      padding-right: 20px;
      display: flex;
    }
    
    .w-nav-overlay .nav-menu-wrapper .nav-link-menu {
      width: 100%;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Ocultar separadores "/" en mobile */
    .w-nav-overlay .nav-menu-wrapper .slash-nav-menu {
      display: none;
    }
  
    .footer-content-container {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
    }
  
    .form-input {
      font-size: 12px;
      line-height: 1.3em;
    }
  
    .heading-3 {
      letter-spacing: normal;
      font-size: 24px;
      line-height: 1.2em;
    }
  
    .heading-4 {
      letter-spacing: normal;
      font-size: 20px;
      line-height: 1em;
    }
  
    .heading-6 {
      letter-spacing: normal;
      font-size: 14px;
      line-height: 1.2em;
    }
  
    .style-guide-typography-component {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
    }
  
    .navbar-wrapper {
      padding-top: 12px;
      padding-bottom: 12px;
    }
  
    .style-guide-content-wrapper {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .heading-1 {
      letter-spacing: normal;
      font-size: 40px;
      line-height: 1em;
    }
  
    .display {
      letter-spacing: -.02em;
      font-size: 48px;
      line-height: 1em;
    }
  
    .style-guide-navigation {
      padding-top: 0;
      padding-bottom: 0;
      top: 70px;
    }
  
    .navbar-brand {
      width: 52px;
    }
  
    .navbar {
      mix-blend-mode: normal;
      background-color: #1c1c1c;
    }
  
    .mobile-size-typography {
      display: block;
    }
  
    .text-wrapper {
      overflow: visible;
    }
  
    .text-wrapper.description {
      max-width: 310px;
    }
  
    .text-wrapper.work {
      width: 200px;
    }
  
    .nav-link {
      padding-left: 5px;
      padding-right: 5px;
      font-size: 40px;
      font-weight: 600;
    }
  
    .style-guide-content-component {
      padding: 12px 8px;
    }
  
    .heading-5 {
      letter-spacing: normal;
      font-size: 18px;
      line-height: 1.2em;
    }
  
    .footer-menu-list-container.small {
      width: 240px;
    }
  
    .body-m-medium {
      font-size: 12px;
      line-height: 1.3em;
    }
  
    .heading-2 {
      letter-spacing: normal;
      font-size: 36px;
      line-height: 1em;
    }
  
    .nav-link-text {
      font-size: 24px;
    }
  
    .nav-link-text.style-guide {
      font-size: 14px;
    }
  
    .link-submit {
      grid-column-gap: 3px;
      grid-row-gap: 3px;
    }
  
    .desktop-size-typography {
      display: none;
    }
  
    .line-hover-button.left {
      height: 1px;
    }
  
    .line-hover-button.left.black {
      background-color: var(--black);
    }
  
    .line-hover-button.right {
      display: none;
    }
  
    .line-hover-button.right.black {
      background-color: var(--black);
    }
  
    .footer-menu-wrapper {
      grid-column-gap: 12px;
      grid-row-gap: 12px;
    }
  
    .menu-button-wrapper {
      flex-flow: column;
      overflow: hidden;
    }
  
    .menu-button-wrapper.menu {
      right: 0;
      position: absolute;
    }
  
    .style-guide-section {
      padding-top: 64px;
      padding-bottom: 40px;
    }
  
    .form {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
    }
  
    .footer-section {
      padding-top: 46px;
      padding-bottom: 24px;
    }
  
    .body-l-medium {
      font-size: 14px;
      line-height: 1.4em;
    }
  
    .form-block {
      width: 100%;
    }
  
    .image-wrapper.services {
      max-width: 200px;
      max-height: 140px;
      position: static;
    }
  
    .image-wrapper.work-list {
      max-width: 60px;
      max-height: 40px;
      display: none;
    }
  
    .image-wrapper.profile {
      max-width: 160px;
      max-height: 200px;
    }
  
    .image-wrapper.statistics {
      height: 270px;
    }
  
    .image-wrapper.awards {
      position: static;
    }
  
    .image-wrapper.contact {
      height: 420px;
    }
  
    .image-wrapper.client-logo {
      max-width: 190px;
      max-height: 120px;
    }
  
    .image-wrapper.image-1 {
      max-width: 470px;
      max-height: 390px;
    }
  
    .image-wrapper.image-2 {
      max-height: 332px;
    }
  
    .image-wrapper.article {
      max-height: 164px;
    }
  
    .style-guide-color-grid.mobile {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  
    .nav-right-wrapper {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
      justify-content: flex-start;
      align-items: center;
      display: flex;
    }
  
    .body-s-semibold {
      font-size: 10px;
    }
  
    .body-l-semibold {
      letter-spacing: normal;
      font-size: 14px;
    }
  
    .body-s-regular {
      font-size: 10px;
      line-height: 1.3em;
    }
  
    .body-l-regular {
      font-size: 14px;
      line-height: 1em;
    }
  
    .body-m-regular {
      font-size: 12px;
      line-height: 1.3em;
    }
  
    .body-m-italic, .body-m-semibold {
      font-size: 12px;
    }
  
    .icon-wrapper {
      min-width: 46px;
      height: 46px;
    }
  
    .hero-section {
      height: 80vh;
      padding-top: 46px;
      padding-bottom: 24px;
    }
  
    .hero-section.work {
      height: 60vh;
    }
  
    .hero-content-container {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .hero-content-container.work {
      grid-column-gap: 110px;
      grid-row-gap: 110px;
    }
  
    .hero-content-wrapper {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .hero-content-wrapper.work {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
    }
  
    .hero-content-wrapper.blog-hero-title {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .about-content-wrapper {
      grid-column-gap: 96px;
      grid-row-gap: 96px;
    }
  
    .about-content-header-wrapper {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .button-text-wrapper-2 {
      height: 20px;
    }
  
    .services-section {
      padding-top: 46px;
      padding-bottom: 96px;
    }
  
    .services-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .services-content-wrapper.desktop {
      display: none;
    }
  
    .services-content-wrapper.mobile {
      justify-content: center;
      align-items: flex-start;
      display: flex;
    }
  
    .services-content-block {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .work-section {
      padding-bottom: 64px;
    }
  
    .work-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .work-content-wrapper {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .work-list-content-block {
      grid-column-gap: 28px;
      grid-row-gap: 28px;
      border-top-width: .5px;
      padding-top: 12px;
      padding-bottom: 12px;
    }
  
    .blog-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .blog-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .blog-content-block.small {
      max-width: 280px;
    }
  
    .blog-content-block.big {
      max-width: 390px;
    }
  
    .cta {
      padding-top: 16px;
      padding-bottom: 16px;
    }
  
    .cta-content-wrapper {
      grid-column-gap: 32px;
      grid-row-gap: 32px;
      max-width: 340px;
    }
  
    .about-hero-section {
      padding-bottom: 46px;
    }
  
    .about-hero-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .about-me-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .about-me-content-wrapper {
      grid-column-gap: 96px;
      grid-row-gap: 96px;
    }
  
    .experiences-section {
      padding-bottom: 64px;
    }
  
    .experiences-content-wrapper {
      flex-flow: column;
    }
  
    .statistics-section, .awards-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .awards-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .awards-content-wrapper.desktop {
      display: none;
    }
  
    .awards-content-wrapper.mobile {
      display: flex;
    }
  
    .awards-list-wrapper {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .blog-list-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .blog-list-content-container {
      grid-column-gap: 120px;
      grid-row-gap: 120px;
    }
  
    .contact-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .contact-wrapper {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
    }
  
    .work-title-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .work-title-content-wrapper {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
    }
  
    .work-description-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .work-description-content-wrapper {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
      max-width: 442px;
    }
  
    .work-image-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .work-image-content-container {
      grid-column-gap: 128px;
      grid-row-gap: 128px;
    }
  
    .article-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .article-content-container {
      grid-column-gap: 90px;
      grid-row-gap: 90px;
    }
  
    .article-content-right-container {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
      padding-top: 60px;
    }
  
    .marquee-wrapper {
      grid-column-gap: 18px;
      grid-row-gap: 18px;
    }
  
    .license-section {
      padding-top: 84px;
      padding-bottom: 46px;
    }
  
    .license-heading-container {
      grid-column-gap: 8px;
      grid-row-gap: 8px;
    }
  
    .changelog-section {
      padding-top: 96px;
      padding-bottom: 64px;
    }
  
    .awards-block {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      flex-flow: column;
      display: flex;
    }
  
    .footer-menu-left {
      grid-column-gap: 12px;
      grid-row-gap: 12px;
    }
  
    .mobile-image-wrapper {
      max-width: 60px;
      max-height: 40px;
      display: block;
      overflow: hidden;
    }
  }
  
  @media screen and (max-width: 767px) {
    .description-block {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .footer-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .style-guide-navigation {
      display: none;
    }
  
    .navbar-brand {
      padding-left: 0;
    }
  
    .text-wrapper.studio {
      width: 120px;
    }
  
    .text-wrapper.work {
      width: 140px;
    }
  
    .footer-copyright-container {
      flex-flow: column;
      justify-content: space-between;
      align-items: flex-start;
    }
  
    .footer-copyright-container.desktop {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
      display: flex;
    }
  
    .nav-link {
      padding-top: 4px;
      padding-bottom: 4px;
      display: inline-block;
    }
  
    .nav-link.w--current {
      padding-top: 4px;
      padding-bottom: 4px;
    }
  
    .footer-menu-list-container.small {
      width: 180px;
    }
  
    .footer-menu-wrapper {
      order: -1;
    }
  
    .form {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .footer-section {
      padding-bottom: 24px;
    }
  
    .form-block {
      width: 100%;
    }
  
    .image-wrapper.hero-content {
      max-width: 130px;
      max-height: 160px;
    }
  
    .image-wrapper.client-logo {
      max-width: 160px;
    }
  
    .image-wrapper.image-1 {
      max-width: 360px;
      max-height: 290px;
    }
  
    .image-wrapper.article {
      max-height: 146px;
    }
  
    .style-guide-color-grid.mobile {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  
    .hero-section {
      height: 60vh;
    }
  
    .hero-content-wrapper {
      grid-column-gap: 27px;
      grid-row-gap: 27px;
      height: auto;
    }
  
    .blog-content-block.small {
      max-width: 190px;
    }
  
    .blog-content-block.big {
      max-width: 300px;
    }
  
    .experiences-list-block {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      padding-top: 12px;
      padding-bottom: 12px;
    }
  
    .experiences-content-block {
      grid-column-gap: 14px;
      grid-row-gap: 14px;
      height: 24px;
    }
  
    .statistics-content-container {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
    }
  
    .statistics-content-wrapper {
      grid-column-gap: 24px;
      grid-row-gap: 46px;
    }
  
    .article-content-container {
      grid-column-gap: 50px;
      grid-row-gap: 50px;
    }
  
    .article-content-right-container {
      min-width: 120px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .description-block {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
      max-width: 100%;
    }
  
    .link-primary {
      text-decoration: none;
    }
  
    .form-input {
      font-size: 12px;
      line-height: 1.3em;
    }
  
    .form-input.text-area {
      height: 140px;
    }
  
    .heading-3 {
      letter-spacing: .01em;
      font-size: 24px;
      line-height: 1.2em;
    }
  
    .heading-4 {
      letter-spacing: -.01em;
      font-size: 20px;
      line-height: 1.3em;
    }
  
    .heading-6 {
      font-size: 14px;
      line-height: 1.2em;
    }
  
    .heading-1 {
      font-size: 40px;
      line-height: 40px;
    }
  
    .display {
      font-size: 40px;
      line-height: 1em;
    }
  
    .style-guide-navigation {
      display: none;
    }
  
    .text-wrapper.blog-list {
      grid-column-gap: 4px;
      grid-row-gap: 4px;
    }
  
    .text-wrapper.description {
      max-width: 100%;
    }
  
    .text-wrapper.work {
      text-align: center;
    }
  
    .style-guide-button-container {
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .style-guide-content-component {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
    }
  
    .heading-5 {
      font-size: 18px;
      line-height: 1.1em;
    }
  
    .footer-menu-list-container.small {
      width: 100%;
    }
  
    .heading-2 {
      font-size: 32px;
    }
  
    .nav-link-text {
      font-size: 24px;
    }
  
    .desktop-size-typography {
      display: none;
    }
  
    .footer-menu-wrapper {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
      flex-flow: column;
      order: -1;
    }
  
    .form {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .footer-section {
      padding-bottom: 24px;
    }
  
    .body-l-medium {
      font-size: 14px;
    }
  
    .form-block {
      width: 100%;
    }
  
    .image-wrapper.hero-content {
      order: -1;
      min-width: 100%;
      max-height: 360px;
    }
  
    .image-wrapper.cta {
      filter: brightness(80%);
    }
  
    .image-wrapper.profile {
      order: -1;
    }
  
    .image-wrapper.awards {
      max-width: 164px;
      height: 214px;
    }
  
    .image-wrapper.contact {
      max-width: none;
      height: 270px;
    }
  
    .image-wrapper.client-logo {
      max-width: 100%;
      max-height: 180px;
    }
  
    .image-wrapper.image-1 {
      max-width: 100%;
      max-height: 260px;
    }
  
    .image-wrapper.image-2 {
      max-height: 260px;
    }
  
    .image-wrapper.article {
      max-height: 146px;
    }
  
    .style-guide-color-grid.mobile {
      grid-column-gap: 8px;
      grid-row-gap: 8px;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .nav-right-wrapper {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
    }

    .hero-section {
      height: 100vh;
      padding-top: 20px;
      padding-bottom: 40px;
    }
  
    .hero-section.work {
      height: 100vh;
    }
  
    .hero-content-container {
      grid-column-gap: 110px;
      grid-row-gap: 110px;
    }
  
    .hero-content-container.work {
      grid-column-gap: 210px;
      grid-row-gap: 210px;
    }
  
    .hero-content-wrapper {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .hero-content-wrapper.work {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      height: auto;
    }
  
    .hero-content-wrapper.blog-hero-title {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
    }
  
    .hero-content-block {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .about-section {
      padding-top: 16px;
      padding-bottom: 16px;
    }
  
    .about-content-container {
      padding: 20px;
    }
  
    .about-content-wrapper {
      width: 100%;
    }
  
    .about-content-block {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
      flex-flow: column;
      justify-content: space-between;
      align-items: flex-start;
    }
  
    .work-content-container {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .work-content-wrapper {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .work-list-content-block {
      padding-top: 8px;
      padding-bottom: 8px;
    }
  
    .blog-content-wrapper {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .blog-content-block.small, .blog-content-block.big {
      max-width: 100%;
    }
  
    .cta-content-container {
      padding: 20px;
    }
  
    .cta-content-wrapper {
      grid-column-gap: 32px;
      grid-row-gap: 32px;
    }
  
    .profile-container {
      flex-flow: column;
    }
  
    .about-me-content-wrapper {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .about-me-content-block {
      grid-column-gap: 36px;
      grid-row-gap: 36px;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .experiences-section {
      padding-bottom: 64px;
    }
  
    .experiences-content-wrapper {
      padding-left: 0;
      padding-right: 0;
    }
  
    .experiences-list-wrapper {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
      flex-flow: column;
      order: -1;
      display: flex;
    }
  
    .experiences-list-block {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding-top: 4px;
      padding-bottom: 4px;
    }
  
    .date-wrapper.experiences {
      border-bottom: .5px solid var(--primary--30);
      border-right-style: none;
      width: 162px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
  
    .statistics-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
      flex-flow: column;
      padding-left: 0;
      padding-right: 0;
    }
  
    .statistics-content-wrapper {
      order: -1;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
    }
  
    .awards-list-wrapper {
      justify-content: flex-start;
      align-items: center;
    }
  
    .blog-list-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .contact-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .contact-content-container {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
      flex-flow: column;
    }
  
    .contact-wrapper {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
    }
  
    .work-title-content-container {
      grid-column-gap: 22px;
      grid-row-gap: 22px;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
  
    .work-title-content-wrapper {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .work-description-content-wrapper.detail {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      flex-flow: column;
      max-width: 100%;
    }
  
    .work-description-content-block {
      grid-column-gap: 46px;
      grid-row-gap: 46px;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .work-image-content-container {
      grid-column-gap: 64px;
      grid-row-gap: 64px;
    }
  
    .work-image-content-wrapper {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .work-image-link-wrapper {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
    }
  
    .next-page-section {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .heading-article-container.desktop {
      display: none;
    }
  
    .heading-article-container.mobile {
      display: flex;
    }
  
    .article-content-right-container {
      padding-top: 0;
    }
  
    .article-content-right-container.desktop {
      display: none;
    }
  
    .blog-link-wrapper {
      grid-column-gap: 12px;
      grid-row-gap: 12px;
    }
  
    .license-content-wrapper {
      grid-template-columns: 1fr 1fr;
    }
  
    .awards-block {
      justify-content: flex-start;
      align-items: center;
    }
  }
  
  @font-face {
    font-family: 'Overusedgrotesk';
    src: url('https://cdn.prod.website-files.com/67064ac172a41202c3737c2a/671b0527da12de36c722d857_OverusedGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Overusedgrotesk';
    src: url('https://cdn.prod.website-files.com/67064ac172a41202c3737c2a/671b054f92dcd1ed8f6efc3c_OverusedGrotesk-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Overusedgrotesk';
    src: url('https://cdn.prod.website-files.com/67064ac172a41202c3737c2a/671b06eb5bb3923398862c8c_OverusedGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Overusedgrotesk';
    src: url('https://cdn.prod.website-files.com/67064ac172a41202c3737c2a/671b06ffeba227dd5808892e_OverusedGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Overusedgrotesk';
    src: url('https://cdn.prod.website-files.com/67064ac172a41202c3737c2a/671b0710a05d75d430164ec9_OverusedGrotesk-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Librecasloncondensed';
    src: url('https://cdn.prod.website-files.com/67064ac172a41202c3737c2a/671b35346a8c920065f6308d_LibreCaslonCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Librecasloncondensed Italic';
    src: url('https://cdn.prod.website-files.com/67064ac172a41202c3737c2a/671b60b0c167985169f03ef6_LibreCaslonCondensed-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }

/* Styles for language/theme buttons container */
.language-theme-buttons {
  position: fixed;
  top: 16px;
  right: 8rem;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

@media screen and (max-width: 2991px) {
  .language-theme-buttons {
    top: 25px;
    right:8rem;
  }
}

@media screen and (max-width: 1992px) {
  .language-theme-buttons {
    top: 1;
    right: 0rem;
  }
}

@media screen and (max-width: 1550px) {
  .language-theme-buttons {
    top: 1;
    right: 20rem;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 1091px) {
  .language-theme-buttons {
    top: 1;
    right: 50rem;
  }
}
@media screen and (max-width: 991px) {
  .language-theme-buttons {
    top: 1.0rem;
    right: 1.95rem;
  }
}


@media screen and (max-width: 691px) {
  .language-theme-buttons {
    right: 1rem;
  }
}

@media screen and (max-width: 479px) {
  .language-theme-buttons {
    right: 1rem;
  }
}