/*! 1.2.0 | Copyright 2026 Vladimir Sanghelios - FrontEndDesigner */
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@400;500;600&family=Roboto:wght@300;400;500;700&display=swap');
@font-face {font-family: 'Droid Sans';font-style: normal;font-weight: 400;src: local('Droid Sans'), local('DroidSans'), url(https://fonts.gstatic.com/s/droidsans/v6/s-BiyweUPV0v-yRb-cjciPk_vArhqVIZ0nv9q090hN8.woff2) format('woff2');unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;}
@font-face {font-family: "Google Sans Regular";src: url(https://vladimirsangh.x10.mx/resources/fonts/Google-Sans-Font/GoogleSans-Regular.ttf);}
@font-face {font-family: "Google Sans Medium";src: url(https://vladimirsangh.x10.mx/resources/fonts/Google-Sans-Font/GoogleSans-Medium.ttf);}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
input {font-family: inherit; font-size: inherit;}
body {font-family: "Google Sans Regular", Arial, Helvetica, sans-serif;font-size: 0.95em;color: black;text-decoration: none;transition: .3s ease all;}
.material-symbols-sharp {font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 24}
.title-border-decoration {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjXM3A8J8BDTDSQBAA9p4IWPRgpbgAAAAASUVORK5CYII=);
  border-radius: 2px;
  margin: 4px 0 6px 0;
  padding: 4px 0;
  width: 100%;
}
:root {
  --brand-primary: #ab0000;
  --brand-dark: #8a0000;
  --text-light: #ffffff;
  --text-dark: #333333;
  --transition-speed: 0.5s;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slider-track {
  display: flex;
  transition: transform var(--transition-speed) ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.slide-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.slide-content {
  padding: 2rem;
  background-color: #fff;
  color: var(--text-dark);
  text-align: center;
  z-index: 10;
  transition: color 0.3s ease;
}

.slide-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brand-primary);
  font-weight: 700;
}

.slide-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background-color: var(--brand-primary);
  color: var(--text-light);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: none !important;
  transform: none !important;
  border: none;
  outline: none;
}

.cta-button:hover {
  background-color: var(--brand-dark);
  transform: none !important;
  box-shadow: none !important;
}

.cta-button:focus {
  outline: 2px dashed #ffffff;
  outline-offset: -4px;
  background-color: var(--brand-dark);
}

.controls-bar {
  padding: 8px 15px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid #eee;
}

.control-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}

.control-btn:hover {
  color: #000;
  transform: scale(1.1);
}

.control-btn .material-symbols-outlined {
  font-size: 24px;
}

.dots-wrapper {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: #333;
  transform: scale(1.2);
}

.dot:hover {
  background-color: #999;
}

.quickAccess-Container {margin-top: 25px;}
  .quick-access-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.qa-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease;
  flex: 1 1 calc(16.66% - 15px);
  min-width: 100px;
}

.qa-item:hover {
  transform: translateY(-5px);
}

.qa-item span {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--brand-primary);
}

.qa-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .qa-item {
    flex: 1 1 calc(33.33% - 15px);
  }
}

@media (max-width: 400px) {
  .qa-item {
    flex: 1 1 calc(50% - 15px);
  }
}

.services-container {
  font-family: 'Google Sans Regular', Arial, Helvetica, sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.service-card {
  background-color: #ffffff;
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  box-shadow: 0 .1875rem .4375rem 0 rgba(0, 0, 0, .13),0 .0625rem .125rem 0 rgba(0, 0, 0, .11);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px 35px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  margin: 0 0 15px 0;
  font-size: 1.4rem;
  color: #333;
}

.card-description {
  margin: 0 0 30px 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.card-button {
  margin-top: auto;
  margin-bottom: 20px;
  display: inline-block;
  padding: 12px 20px;
  background-color: #ab0000;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.card-button:hover {
  background-color: #8a0000;
}
.card-button:focus {
  outline: .1875rem dotted currentColor !important;
  outline-offset: -6px !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  .slider-container {
    padding-bottom: 0;
  }

  .slide {
    display: block;
    height: 500px;
  }

  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    background-color: transparent;
    box-shadow: none;
    border: none;
    text-align: left;
    padding: 0;
  }

  .slide.is-light-bg .slide-content {
    color: #000000;
  }

  .slide.is-light-bg .slide-title {
    color: #000000 !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  }

  .slide.is-dark-bg .slide-content {
    color: #ffffff;
  }

  .slide.is-dark-bg .slide-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  }

  .slide.is-dark-bg .slide-desc {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  }

  .controls-bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 8px 25px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
}
.aem-Grid h1, .aem-Grid h2, .aem-Grid h3, .aem-Grid h4, .aem-Grid h5, .aem-Grid h6 {margin-top: 0; margin-bottom: .5rem;}
.aem-Grid .h1, .aem-Grid .h2, .aem-Grid .h3, .aem-Grid .h4, .aem-Grid .h5, .aem-Grid .h6, .aem-Grid h1, .aem-Grid h2, .aem-Grid h3, .aem-Grid h4, .aem-Grid h5, .aem-Grid h6 {font-family: inherit; font-weight: 600; line-height: 1.2;}
.mt-5, .my-5 {margin-top: 3rem !important;}
.aem-Grid {display: block; width: 100%;}
.aem-Grid::before, .aem-Grid::after {display: table; content: " ";}
.aem-GridColumn {box-sizing: border-box; clear: both;}
.aem-Grid.aem-Grid--12>.aem-GridColumn.aem-GridColumn--default--12 { clear: none; width: 100%;}
.aem-Grid.aem-Grid--default--12>.aem-GridColumn.aem-GridColumn--default--12  { clear: none; width: 100%;}
.container {width: 100%; margin-right: auto; margin-left: auto; padding-right: .75rem; padding-left: .75rem;}
.aem-Grid img {vertical-align: middle;}
.card-img {width: 100%; flex-shrink: 0;}
.d-flex {display: flex !important;}
.w-100, .w-col-12 {width: 100% !important;}
.card {position: relative; display: flex; flex-direction: column; flex: 1 1 auto; min-width: 1px; word-wrap: break-word; background-clip: border-box;}
.py-5 {padding-top: 3rem !important;}
.py-5 {padding-bottom: 3rem !important;}
.card-body {flex: 1 1 auto; position: relative;}
.mb-4 {margin-bottom: 1.5rem !important;}
.link-group {min-height: 2.5rem; margin-top: -.5rem; margin-bottom: -.5rem;}
.aem-Grid .h2, .aem-Grid h2 {font-size: 24px; margin-bottom: .75rem;}
.btn {display: inline-flex; align-items: center; justify-content: center; gap: .4375rem; font-weight: 600; border: .125rem solid transparent; position: relative; border-radius: .125rem; background-color: inherit; color: inherit; text-decoration: none; padding: .625rem .75rem; font-size: 16px; line-height: 1; cursor: pointer;}
.btn-primary {background-color: #ab0000; color: #ffffff !important;}
.btn {display: inline-flex; align-items: center; justify-content: center; gap: .4375rem; font-weight: 600; border: .125rem solid transparent; position: relative; border-radius: .125rem; background-color: inherit; color: inherit; text-decoration: none; padding: .625rem .75rem; font-size: 16px; line-height: 1; cursor: pointer;}
.btn-primary {background-color: #ab0000; color: #ffffff !important;}
.btn {display: inline-flex; align-items: center; justify-content: center; gap: .4375rem; font-weight: 600; border: .125rem solid transparent; position: relative; border-radius: .125rem; background-color: inherit; color: inherit; text-decoration: none; padding: .625rem .75rem; font-size: 16px; line-height: 1; cursor: pointer;}
.btn-primary {background-color: #ab0000; color: #ffffff !important;}
.link-group a {display: inline-block; margin-top: 16px; margin-bottom: 16px;}
.link-group .btn  {margin-top: .5rem; margin-bottom: .5rem;}
html:not([dir=rtl]) .link-group .btn, html:not([dir=rtl]) .link-group a {margin-right: 1.5rem;}
html:not([dir=rtl]) .link-group>:last-child {margin-right: 0;}

/*Registros*/
html input[type="button"], input[type="reset"], input[type="submit"] {cursor: pointer;}
.outer {display: table; position: absolute; height: 100%; width: 100%;}
.middle {display: table-cell; vertical-align: middle;}
.fade-in-lightbox {animation: fadeIn .3s ease-in; -webkit-animation: fadeIn .3s ease-in; -moz-animation: fadeIn .3s ease-in; -ms-animation: fadeIn .3s ease-in; -o-animation: fadeIn .3s ease-in;}
.inner {margin-left: auto; margin-right: auto; position: relative; max-width: 440px; width: calc(100% - 40px); padding: 44px; margin-bottom: 28px; background-color: #fff; -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); min-width: 320px; min-height: 338px; overflow: hidden;}
.inner {min-width: 0;}
.outer .middle .inner .text-title {color: #1b1b1b; font-size: 24px; font-weight: 600; padding: 0; margin-top: 16px; margin-bottom: 12px; font-family: 'Droid Sans', Arial, Helvetica, sans-serif;}
.outer .middle .inner .CredentialsTitle:before, .outer .middle .inner .CredentialsTitle:after {content: " "; display: table;}
.outer .middle .inner .pagination-view {position: relative; min-height: 206px;}
.row-register {width: 90%; min-height: 400px;}
.outer .middle .inner .pagination-view .row-register {min-height: auto; max-width: initial; width: 100% !important; padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0; margin-bottom: 36px; word-wrap: break-word;}
.outer .middle .inner .row-register .data-row input {margin-bottom: 16px;}
.outer .middle .inner .row-register input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="url"] {padding: 6px 10px; border-width: 1px; border-color: #666; border-color: rgba(0, 0, 0, 0.6); height: 36px; outline: none; border-radius: 0; -webkit-border-radius: 0;}
.outer .middle .inner .row-register input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="url"] {border-top-width: 0; border-left-width: 0; border-right-width: 0; padding-left: 0;}
.outer .middle .inner .row-register .email-input-max-width {max-width: 390px;}
.outer .middle .inner .row-register .form-control {display: block; width: 100%; background-image: none;}
.outer .middle .inner .pagination-view .btn.btn-primary, input[type="button"].btn-primary, input[type="submit"].btn-primary, input[type="reset"].btn-primary {background-color: #ab0000; border-color: #ab0000; color: #fff;}
.outer .middle .inner .pagination-view .btn.btn-primary:hover, input[type="button"].btn-primary:hover, input[type="submit"].btn-primary:hover, input[type="reset"].btn-primary:hover {background-color: #7c0000; text-decoration: underline;}
.outer .middle .inner .pagination-view .btn.btn-primary, input[type="button"].btn-primary, input[type="submit"].btn-primary, input[type="reset"].btn-primary {background-color: #ab0000; border-color: #ab0000;}
.outer .middle .inner .pagination-view .btn.btn-primary, input[type="button"].btn-primary, input[type="submit"].btn-primary, input[type="reset"].btn-primary {border-color: #ab0000; background-color: #ab0000;}
.outer .middle .inner .pagination-view .btn-block {display: block; width: 100%;}
.outer .middle .inner .pagination-view input[type="submit"].btn-block, input[type="button"].btn-block, input[type="reset"].btn-block {width: 100%;}
.outer .middle .inner .pagination-view .btn, input[type="button"], input[type="submit"], input[type="reset"] {margin-top: 0; margin-bottom: 0;}
.outer .middle .inner .pagination-view .btn, input[type="button"], input[type="submit"], input[type="reset"] {min-height: 32px; border: none; background-color: #ccc; background-color: rgba(0, 0, 0, 0.2); min-width: 108px; line-height: normal;}
.outer .middle .inner .pagination-view .btn, input[type="button"], input[type="submit"] {display: inline-block; min-width: 100px; padding: 4px 12px 4px 12px; margin-top: 4px; margin-bottom: 4px; position: relative; max-width: 100%; text-align: center; white-space: nowrap; overflow: hidden; vertical-align: middle; text-overflow: ellipsis; touch-action: manipulation; border-style: solid; border-width: 2px; border-color: transparent; background-color: rgba(0, 0, 0, 0.2);}
.outer .middle .inner .pagination-view .buttonsubmit-container {text-align: right; margin-left: 0; margin-right: 0;}
.outer .middle .inner .pagination-view .buttonsubmit-container .inline-block {display: inline-block;}

#ns-icon {
  background: url(https://cdn-icons-png.flaticon.com/512/747/747374.png) 0 -50px transparent;
  cursor: pointer;
  height: 30px;
  width: 30px;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
}
.prev:focus, a[href]:focus {outline:1px dashed currentColor;text-decoration: 2px underline;}
.bt a:focus, .link-group a:focus {outline:.1875rem dotted currentColor;outline-offset: -.375rem;}

/*RegAddesses*/
.root-370 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; background-color: transparent; height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; opacity: 1;}
.main-371 {box-shadow: rgba(0, 0, 0, 0.22) 0px 25.6px 57.6px 0px, rgba(0, 0, 0, 0.18) 0px 4.8px 14.4px 0px; border-radius: 8px; background-color: rgb(255, 255, 255); box-sizing: border-box; position: relative; text-align: left; outline: transparent solid 3px; max-height: calc(100% - 32px); max-width: 480px; min-height: 176px; min-width: 480px; overflow-y: auto; height: 75%; top: 0px;}
.Content-372 {overflow-y: auto; flex-grow: 1; max-height: 100%; display: flex; flex-direction: column; height: 100%; min-width: 288px;  position: relative;}
.vs-Modal-Content .dropdown-394 {box-shadow: none; margin: 0px; padding: 0px; box-sizing: border-box; font-family: "Segoe UI Variable Text", "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(50, 49, 48);  border-color: rgb(96, 94, 92);  position: relative; outline: 0px; user-select: none;}
.vs-Modal-Content .title-415 {box-shadow: none; margin: 0px; padding: 0px 28px 0px 0px; box-sizing: border-box; background-color: rgb(255, 255, 255); border-width: 1px; border-style: solid; border-color: rgb(96, 94, 92); border-radius: 2px; cursor: pointer; display: block; width: 100%; height: 32px; line-height: 30px; position: relative; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.vs-Modal-Content .flexContainer-98 {display: flex; height: 100%; flex-wrap: nowrap; justify-content: center; align-items: center;}
.vs-Modal-Content .css-105 {display: flex; flex-flow: column; width: auto; height: auto; box-sizing: border-box;}
.vs-Modal-Content .css-339 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; flex-basis: auto; height: auto; width: auto; flex-shrink: 0;}
.vs-Modal-Content .css-387 {display: flex; flex-flow: column; width: auto; height: auto; box-sizing: border-box; font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 20px; font-weight: 600; color: rgb(50, 49, 48); padding: 16px 24px 0px;}
.vs-Modal-Content .css-388 {display: flex; flex-flow: row; width: auto; height: auto; box-sizing: border-box; justify-content: space-between; min-height: 32px;}
.vs-Modal-Content .css-389 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 20px; font-weight: 600; color: rgb(50, 49, 48); display: inline; line-height: 1.4;}
.vs-Modal-Content .css-390 {display: flex; flex-flow: column; width: auto; height: auto; box-sizing: border-box;}
.vs-Modal-Content .css-391 {display: flex; flex-flow: column; width: auto; height: auto; box-sizing: border-box; padding: 24px;}
.vs-Modal-Content .css-393 {display: flex; flex-flow: column; width: auto; height: auto; box-sizing: border-box;}
.vs-Modal-Content .css-428 {display: flex; flex-flow: column;  width: auto; height: auto; box-sizing: border-box;}
.vs-Modal-Content .css-429 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; height: auto; width: auto; flex-shrink: 1; align-self: auto;}
.vs-Modal-Content .css-456 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(50, 49, 48); display: inline;}
.vs-Modal-Content .css-473 {display: flex; flex-flow: column; width: auto; height: auto; box-sizing: border-box; text-align: left;}
.vs-Modal-Content .actions-474 {position: relative; width: 100%; min-height: 24px; line-height: 24px; margin: 16px 0px 0px; font-size: 0px;}
.vs-Modal-Content .actions-474 .vs-Button {line-height: normal; vertical-align: middle;}
.vs-Modal-Content .action-475 {margin: 0px 4px;}
.vs-Modal-Content .actionsRight-476 {align-items: center; display: flex; font-size: 0px; justify-content: flex-end; margin-right: -4px;}
.vs-Modal-Content .actions-477 {line-height: normal; vertical-align: middle;}
.vs-Modal-Content .root-412 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 600; color: rgb(50, 49, 48); box-sizing: border-box; box-shadow: none; margin: 0px; display: inline-block; padding: 5px 0px; overflow-wrap: break-word;}
.vs-Modal-Content .root-416 {font-family: 'Google Sans Medium', Arial, Helvetica, -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; position: relative; height: auto; width: 100%;}
.vs-Modal-Content .root-431 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; box-shadow: none; margin: 0px; padding: 0px; box-sizing: border-box; position: relative;}
.vs-Modal-Content .root-442 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 600; color: rgb(50, 49, 48); box-sizing: border-box; box-shadow: none; margin: 0px; display: block; padding: 5px 0px; overflow-wrap: break-word;}
.vs-Modal-Content .root-442::after {content: " *"; color: rgb(164, 38, 44); padding-right: 12px;}
.vs-Modal-Content .dropdown-444 {box-shadow: none; margin: 0px; padding: 0px; box-sizing: border-box; font-family: 'Google Sans Medium', Arial, Helvetica, -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(50, 49, 48); border-color: rgb(96, 94, 92); position: relative; outline: 0px; user-select: none;}
.vs-Modal-Content .root-454 {font-family: 'Google Sans Medium', Arial, Helvetica, -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; color: rgb(50, 49, 48); box-sizing: border-box; box-shadow: none; margin: 0px; display: inline-block; padding: 5px 0px; overflow-wrap: break-word;}
.vs-Modal-Content .root-457 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif;  -webkit-font-smoothing: antialiased; font-size: inherit; font-weight: inherit; color: #ab0000; outline: none; text-decoration: none;}
.vs-Modal-Content .root-457:hover {color: #700000; text-decoration: underline;}
.vs-Modal-Content .root-477 {outline: transparent; position: relative; font-family: 'Google Sans Medium', Arial, Helvetica, -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; border: 1px solid #ab0000; border-radius: 2px; box-sizing: border-box; cursor: pointer; display: inline-block; padding: 0px 16px; text-decoration: none; text-align: center; min-width: 80px; height: unset; background-color: #ab0000; color: rgb(242, 242, 242); min-height: 32px; user-select: none;}
.vs-Modal-Content .root-477:hover {background-color: #700000;}
.vs-Modal-Content .root-480 {outline: transparent; position: relative; font-family: 'Google Sans Medium', Arial, Helvetica, -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; border: 1px solid rgb(138, 136, 134); border-radius: 2px; box-sizing: border-box; cursor: pointer; display: inline-block; padding: 0px 16px; text-decoration: none; text-align: center; min-width: 80px; height: unset; background-color: rgb(255, 255, 255); color: #333; min-height: 32px; user-select: none;}
.vs-Modal-Content .root-480:hover {background-color: #efefef;}
.vs-Modal-Content .footer-472 {display: flex; flex-flow: column; width: auto; height: auto; box-sizing: border-box; padding: 0px 24px 24px; border-top: none; background-color: transparent;}
.vs-Modal-Content .textContainer-478 {flex-grow: 1; display: block; padding: 6px 0px;}
.vs-Modal-Content .label-479 {margin: 0px 4px; line-height: normal; display: block; font-weight: 600;}
.vs-Modal-Content .dataWrapper {position: static; inset: 0px; opacity: 1; background: none transparent; border: none; transition: opacity 200ms ease 0s;}
.vs-Modal-Content .fieldGroup-432 {box-shadow: none; margin: 0px; padding: 0px; box-sizing: border-box; border: 1px solid rgb(96, 94, 92); border-radius: 2px; background: rgb(255, 255, 255); cursor: text; height: 32px; display: flex; flex-direction: row; align-items: stretch; position: relative;}
.vs-Modal-Content .field-433 {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; font-size: 14px; font-weight: 400; box-shadow: none; margin: 0px; padding: 0px 8px; box-sizing: border-box; border-radius: 0px; border: none; background: none transparent; color: rgb(50, 49, 48); width: 100%; min-width: 0px; text-overflow: ellipsis; outline: 0px;}
.vs-Modal-Content .fieldGroup {box-shadow: none; margin: 0px; padding: 0px; box-sizing: border-box; border: 1px solid rgb(96, 94, 92); border-radius: 2px; background: rgb(255, 255, 255); cursor: text; height: 32px; display: flex; flex-direction: row; align-items: stretch; position: relative;}
@media only screen and (min-height: 420px) {
  .main-371 {display: flex; flex-direction: column; overflow-y: hidden;}
  .css-391 {min-height: auto; height: 100%; overflow-y: auto; outline: none;}
}

/*Contact*/
#wrap #contactForm .form-title .form-tl {font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif; font-size: 21.3333px; font-weight: 600; color: #333; text-align: center; text-transform: uppercase;}
#wrap {margin:0 auto 0 auto;width:500px;text-align:left;}
#wrap2 {margin:0 auto 0 auto;width:700px;text-align:right;}
#contactForm label {
  text-transform: uppercase;
  font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #414141;
  cursor: default;
}
#contactForm .caracteres, #contactForm label[for="descripcion"] {
  display: inline-block;
}
#contactForm .caracteres {
  color: #ab0000;
  font-family: 'Google Sans Medium', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
#contactForm #comprueba {
  margin: 20px 0;
  float: left;
}
#contactForm #comprueba p {
  font-weight: 600;
  display: inline-block;
  color: #333;
  margin: 0;
}
#contactForm #comprueba #n1, #contactForm #comprueba #n2 {
  display: inline-block;
  width: 20px !important;
  border: none !important;
  padding: 0 !important;
  margin: 0;
  text-align: center;
}
#contactForm #comprueba #n1:focus, #contactForm #comprueba #n2:focus {
  box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
}
#contactForm #comprueba #res {
  display: inline-block;
  width: 25px;
  padding: 2px;
}
#contactForm #comprueba #res:focus {
  box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
}
#contactForm #enviar {
  border: 1px solid #ab0000;
  border-radius: 2px;
  cursor: pointer;
  float: right;
  background: #ab0000;
  color: #FFF;
  font-size: 1em;
  margin: 10px 0 10px 15px;
  padding: 10px 20px;
}
#contactForm #enviar:hover {
  background: #700000;
  color: #fff;
}
#contactForm #respuesta {
  display: none;
  padding: 6px;
  background: #008DE4;
  color: #FFF;
  text-align: center;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  -moz-border-radius: 2px;
}
/*--Gallery--*/
.gallery img {max-width: 100%;height: auto;transform-origin: top left;}
.gallery {display: inline-flex;flex-flow: column wrap;align-content: space-between;overflow: hidden;height: 310vw;}
.gallery .gallery-image {width: 33.3%;}
.gallery .gallery-image[data-flipping] {opacity: 1;z-index: 3;}
.gallery .gallery-image:nth-child(3n+1) {order: 1;}
.gallery .gallery-image:nth-child(3n+2) {order: 2;}
.gallery .gallery-image:nth-child(3n) {order: 3;}
.gallery::before, .gallery::after {content: "";flex-basis: 100%;width: 0;order: 2;}
.gallery-image {margin: 0;display: block;position: relative;}
.gallery-image img {display: block;width: 100%;}
.gallery-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #FFF;
  text-shadow: 0 0 1px #000;
  opacity: 0.8;
  padding: 1em;
  text-align: left;
  transition: opacity 0.4s linear;
  font-family: monospace;
}
.gallery-image:hover figcaption {opacity: 1;}
.detail {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 25, 25, 0);
  box-shadow: 0 0 30px #000;
  display: flex;
  pointer-events: none;
  transition: background 0.3s linear;
}
.detail .gallery-image {
  padding: 5vmin;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail .gallery-image img {width: auto;height: auto;max-width: 100%;max-height: 100%;}
.detail .gallery-image figcaption {display: none;}
[data-state=detail] .detail {background: rgba(25, 25, 25, 0.85);pointer-events: auto;}
[data-state=detail] .detail .gallery-image {opacity: 1;}
[data-state=gallery] .detail .gallery-image {opacity: 0;transition: none;}
#app {pointer-events: none;}
#app .gallery .gallery-image {pointer-events: auto;}
.gallery-image {transition: opacity 0.5s linear;}
#app:hover .gallery .gallery-image {opacity: 0.3;}
#app:hover .gallery .gallery-image[data-flipping],
#app:hover .gallery .gallery-image:hover {opacity: 1;transition-duration: 0.3s;}
/*--Upload Files--*/
.upload-container {display: flex;align-content: center;justify-content: center;min-height: 100vh;}
.drop-files {
  height: 450px;
  width: 430px;
  background: white;
  border-radius: 5px;
  padding: 30px;
  margin-top: 10%;
  box-shadow: 8px 7px 12px rgba(0, 0, 0, 0.05);
}
.drop-files header {color: #6990f2;font-size: 27px;font-weight: 600;text-align: center;}
.drop-files form {
  height: 167px;
  display: flex;
  cursor: pointer;
  margin: 30px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  border: 2px dashed #6990f2;
}
#area-proceso {display: none;font-size: 16px;color: #6990f2;justify-content: center;}
#select-files:where(i,p) {color: #6990f2;}
#select-files i {font-size: 50px;}
#select-files p {margin-top: 15px;font-size: 16px;}
section .row i {color: #6990f2;font-size: 30px;}
section .detalles span {font-size: 14px;}
.area-subida {max-height: 232px;overflow-y: scroll;}
/*--PrivacyStatement--*/
.article-mainContent a {text-decoration: none; color: #ab0000;}
.article-mainContent P {margin: 0 0 12.5px;}
.article-mainContent .grid .row:after, .grid [class*="col-"]:after {content: ""; display: table; clear: both;}
.article-mainContent .grid {max-width: 1600px !important;}
.article-mainContent .grid {display: block; position: relative; width: 100%; margin-left: auto; margin-right: auto; max-width: 1200px; padding-left: 12px; padding-right: 12px;}
.article-mainContent .grid .row {-webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-left: 1em; margin-right: 1em; margin-left: -1vw; margin-right: -1vw;}
.article-mainContent .m-b-xl {margin-bottom: 30px;}
[class*="col-"] {float: left; width: 100%; position: relative; margin: 0; padding-left: 1em; padding-right: 1em; padding-left: 1vw; padding-right: 1vw;}
.article-page-header {padding-bottom: 11.5px; margin: 50px 0 25px; border-bottom: 1px solid #d2d2d2;}
.article-page-header {background: #f2f2f2; margin: 0; border: 0;}
@media screen and (min-width: 540px) {
    .article-mainContent .grid {padding-left: 24px; padding-right: 24px;}
}
@media screen and (min-width: 768px) {
    .article-mainContent .grid {padding-left: 0; padding-right: 0; width: 90%;}
}
@media screen and (min-width: 768px) {
    .m-col-16-24 {width: 66.6666666667%;}
}
@media screen and (min-width: 860px) {
  .mb-md-5, .my-md-5 {margin-bottom: 3rem !important;}
  .mt-md-n5, .my-md-n5 {margin-top: 3rem !important;}
  .material-md-card {background-color: #ffffff; color: #000; box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .13), 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, .11);}
  html:not([dir=rtl]) .px-md-5 {padding-right: 3rem !important;}
  html:not([dir=rtl]) .px-md-5 {padding-left: 3rem !important;}
  .material-md-card a {color: #ab0000;}
}
@media screen and (min-width: 1084px) {
    .article-mainContent .xl-col-20-24 {width: 83.3333333333%;}
    .container {padding-right: 5%; padding-left: 5%; width: 90%; box-sizing: content-box;}
    .card-img-overlay {display: flex;}
    .card-img-overlay>.card-background {display: flex; flex-direction: column; align-items: center; overflow: hidden; margin: auto 0; width: 100%;}
    .card-img-overlay>.card-background .card-img {position: relative;}
    .card-img-overlay>.card-foreground {width: 100%; align-self: center;}
    html:not([dir=rtl]) .card-img-overlay>.card-foreground {margin-left: -100% !important; margin-right: 0;}
    .mt-lg-5, .my-lg-5 {margin-top: 3rem !important;}
    .mb-lg-5, .my-lg-5 {margin-bottom: 3rem !important;}
    .w-lg-col-5 {width: 41.66667% !important;}
    .bg-lg-transparent-text-dark {background-color: transparent !important;}
    .bg-lg-transparent-text-dark {color: #000 !important;}
    .depth-lg-none {box-shadow: none !important;}
    .aem-Grid .h2, .aem-Grid h2 {font-size: 29px; margin-bottom: 1rem;}
} 
@media screen and (min-width: 1400px) {
    .xl-col-12-24 {width: 50%;}
    .xl-col-18-24 {width: 75%;}
    .xl-col-20-24 {width: 83.3333333333%;}
}
.article-mainContent h1 {font-size: 2em; margin: 0.67em 0;}
.article-mainContent .grid .row h1 {font-family: 'Google Sans Regular', Arial, Helvetica, sans-serif;}
.article-mainContent .header-small h2 {font-size: 30px; line-height: 1.2;}
.article-mainContent .header-small {font-family: 'Google Sans Regular', Arial, Helvetica, sans-serif;}
.article-mainContent h1, .article-mainContent .h1 {font-size: 48px; line-height: 1.2083333333; font-family: 'Google Sans Regular', Arial, Helvetica, sans-serif;}
.article-mainContent h1, .article-mainContent .h1 {margin-top: 25px; margin-bottom: 12.5px;}
.article-mainContent h1, .article-mainContent .h1 {font-family: 'Google Sans Regular', Arial, Helvetica, sans-serif; font-weight: normal; line-height: 1.25; color: black;}
.article-mainContent .body-tight-2 {font-size: 16px; line-height: 1.375; font-family: 'Google Sans Regular', Arial, Helvetica, sans-serif;}
.article-mainContent .m-b-bl {margin-bottom: 40px;}
.article-mainContent .m-t-lg {margin-top: 20px;}
.article-mainContent .m-b-md {margin-bottom: 10px;}
.article-mainContent ul, .article-mainContent ol {margin-top: 0; margin-bottom: 12.5px;}
.article-mainContent a:not(.c-uhf-nav-link):not(.c-uhf-link):not(.c-cat-logo) {word-wrap: break-word; color: #ab0000 !important; font-weight: 400 !important;}
.article-mainContent a:hover {text-decoration: underline;}
.article-mainContent .menu-nav-header {list-style: none;}
.article-mainContent .header-small {font-size: 26px; line-height: 1; font-family: 'Google Sans Regular', Arial, Helvetica, sans-serif;}
.article-mainContent .div-heading h2 {font-size: 26px; font-weight: normal; margin-top: 0;}
.article-mainContent .CollectingYourInfoNav {display: none;}
.article-mainContent hr {-moz-box-sizing: content-box; box-sizing: content-box; height: 0;}
.article-mainContent hr {margin-top: 25px; margin-bottom: 25px; border: 0; border-top: 1px solid #d2d2d2;}
.article-mainContent label {display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold;}
.article-mainContent label {font-weight: normal;}
/*--Status_Page--*/
#section-wrap-status {
  width: 75.5%;
  height: auto;
  max-width: 3000000px;
  box-sizing: border-box;
  background-color: #fff;
  padding: 30px;
  margin: 0 auto;
  margin-top: 20px;
  clear: both;
  border: 2px solid #f2f2f2;
}
.title {
  font-family: 'Khand', Arial, sans-serif;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: 600;
  margin: 0px 0px 40px 0px;
  text-align: center;
}
#wrapper {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAABNJREFUGFdjXM3A8J8BDTDSQBAA9p4IWPRgpbgAAAAASUVORK5CYII=);
    border-radius: 2px;
    margin: 4px 0 6px 0;
    padding: 4px 0;
    width: 100%;
    float: right;
}
hr.subtle-divider {
  width: 100%;
  float: left;
  border: 0;
  border-top: 1px solid#d1d3d4;
  height: 2px;
  display: block;
  box-sizing: border-box;
  margin-bottom: 20px;
}
#services .service .status-icon-maintenance {
  background: url(https://vladimirsangh.x10.mx/files/maintenance/health-server/maintenance.png) no-repeat center center;
  float: left;
  height: 45px;
  width: 30px;
  margin-right: 15px;
}
#services .service .online {color: #107c10;}
#services .service .warning {color: #FFBD00;}
#services .service .error {color: #c53601;}
#services .service .status-icon-caution {
  background: url(https://vladimirsangh.x10.mx/files/maintenance/health-server/caution.png) no-repeat center center;
  float: left;
  height: 45px;
  width: 30px;
  margin-right: 15px;
}
#services .service .service-name {
  font-size: 20px;
  margin: 30px 0px 2px 0px;
}
#services .service .status-text {
  color: #888;
  font-size: 12px;
  line-height: 1;
  margin: 10px 0px 20px 0px;
}
#services .service .status-icon {
  margin: 0px 15px 15px 0px;
  float: left;
}
#services .service .updates-container {
  margin: 0 0 20px 45px;
  padding: 4px;
}
#services .service .latest-update {
  padding: 1em;
  box-shadow: 0 0 1px 0 #868686;
}
#services .service .update-content p {
  font-size: 13px;
  line-height: 20px;
  color: #000;
}
#services .service .info-line {margin-bottom: .25em;}
#services .service .author {color: #ab0000; font-weight: 600;}
#services .service .post-date {font-weight: 600;}

/*m.version*/
@media only screen and (max-width:1024px) {
  #contactForm {width: 100%;}
  .wrap {margin-top: 60px;width:100%;text-align:left;}
  .c-logo {display: none;}
  .arrow-down {border-top: 5px solid #505050;position: absolute;top: 20px;right: 10px;}
  .fixed-top {position: fixed;top: 0;right: 0;left: 0;}
  #accordian-list {font-family: 'Roboto', sans-serif;width: 80%;margin: 0 auto;display: table;}
  #accordian-list ul {padding: 0;margin: 20px 0;color: #555;}
  #accordian-list a {
    text-decoration: none;
    line-height: 40px;
    color: #9e9e9e;
    font-size: .875rem;
    transition: all .1s ease-in-out;
  }
  #accordian-list a:hover {color: #25272b;}
  .links-list {display: none;}
  #accordian-list h4 {-webkit-font-smoothing: antialiased;color: #25272b;font-family: Roboto,Arial,Helvetica,sans-serif;font-size: 1rem;font-weight: 400;letter-spacing: 0;line-height: 1.75rem;cursor: pointer;margin: 0;outline: 0;padding: 15px 0 0;}
  .expand {display: block;text-decoration: none;color: #555;cursor: pointer;}
  .right-ico {margin-top: 12px;margin-left: 20px;width: 10px;height: 100%;float: right;font-weight: bold;font-size: 20px;}
  .icon {float: right;height: 1.25rem;width: 1.25rem;}
  .icon {transition: transform .3s cubic-bezier(.4,0,.2,1);}
}