@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
/* ---------------------------------------------------------------------------
	GENERAL:
	Son las clases que afectan directamente a las etiquetas de bloque.
	Por ejemplo: body, section, div,
--------------------------------------------------------------------------- */
body {
  line-height: 1.6;
  color: #333333;
  font-family: "Roboto", sans-serif;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.sub-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  body {
    font-size: 14px !important;
  }
  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .sub-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 425px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .sub-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* ---------------------------------------------------------------------------
	TYPOGRAPHY
--------------------------------------------------------------------------- */
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
}

.h1 {
  font-size: 3.75em;
}

.h2 {
  font-size: 3em;
}

.h3 {
  font-size: 2em;
}

.h4 {
  font-size: 1.75em;
}

.h5 {
  font-size: 1.5em;
}

.h6 {
  font-size: 1.25em;
}

p {
  font-size: 1em;
  margin: 16px 0;
  line-height: 1.6;
}

small, .small {
  font-size: 0.9em;
  font-weight: 400;
}

.x-small {
  font-size: 0.8em;
  font-weight: 400;
}

.fw-bold {
  font-weight: 600 !important;
}

.text-justify-hypens {
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.text-justify {
  text-align: justify;
}

@media (max-width: 992px) {
  #text-justify-hypens-sm {
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  #text-justify-hypens-sm p {
    text-align: left;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
}
.underline-success {
  text-decoration: underline;
  text-decoration-color: #00B74A;
}

.underline-success-light {
  text-decoration: underline;
  text-decoration-color: #E5FFF0;
}

.underline-warning {
  text-decoration: underline;
  text-decoration-color: #FFA900;
}

.underline-warning-light {
  text-decoration: underline;
  text-decoration-color: #FFF7E5;
}

.underline-danger {
  text-decoration: underline;
  text-decoration-color: #F93154;
}

.underline-danger-light {
  text-decoration: underline;
  text-decoration-color: #FEE6EA;
}

.underline-info {
  text-decoration: underline;
  text-decoration-color: #39C0ED;
}

.underline-info-light {
  text-decoration: underline;
  text-decoration-color: #E8F8FD;
}

.underline-primary {
  text-decoration: underline;
  text-decoration-color: #1266F1;
}

.underline-secondary {
  text-decoration: underline;
  text-decoration-color: #F4F8FF;
}

body .text-light {
  color: #f1f1f1 !important;
}

ul.list-type-circle {
  list-style-type: disc;
}

/* ---------------------------------------------------------------------------
	IMAGES
--------------------------------------------------------------------------- */
img {
  max-width: 100%;
}

.object-fit {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ---------------------------------------------------------------------------
	COLORS
--------------------------------------------------------------------------- */
.text-white, .text-white * {
  color: #ffffff;
}

.text-light, .text-light * {
  color: #f1f1f1;
}

.text-black, .text-black * {
  color: #000000;
}

.text-dark, .text-dark * {
  color: #0d0d0d !important;
}

.text-complementary, .text-complementary * {
  color: #ff862c !important;
}

body .text-secondary, .text-secondary * {
  color: #edf4fd !important;
}

/* ---------------------------------------------------------------------------
	BACKGROUND
--------------------------------------------------------------------------- */
body .bg-secondary {
  background-color: #edf4fd !important;
}

body .bg-light {
  background-color: #f1f1f1 !important;
}

body .bg-complementary {
  background-color: #ff862c !important;
}

body .bg-complementary-light {
  background-color: #ffb95d !important;
}

/* ---------------------------------------------------------------------------
	ACCORDION
--------------------------------------------------------------------------- */
.accordion-button {
  padding: 1rem 1.5rem;
}

.dark-accordion .accordion-button,
.dark-accordion .accordion-collapse {
  background-color: #16171b;
  color: #ccc;
}

/* ---------------------------------------------------------------------------
	Z-INDEX
--------------------------------------------------------------------------- */
.z-index-1 {
  z-index: 1;
}

.z-index-0 {
  z-index: 0;
}

/* ---------------------------------------------------------------------------
	BORDER
--------------------------------------------------------------------------- */
.border-top-separator {
  border-top: 2px rgba(0, 0, 0, 0.125);
}

body .border-secondary {
  border-color: #edf4fd !important;
}

body .border-light {
  border-color: #f1f1f1 !important;
}

body .border-complementary {
  border-color: #ff862c !important;
}

/* ---------------------------------------------------------------------------
	BUTTONS
--------------------------------------------------------------------------- */
.fixed-action-btn, .fixed-btn-br {
  position: fixed;
  right: 1rem !important;
  bottom: 1rem !important;
  z-index: 1030;
  display: flex;
  flex-flow: column-reverse nowrap;
  align-items: center;
  padding: 1rem 20px 20px !important;
  margin-bottom: 0;
  height: auto;
  overflow: hidden;
}

body .fixed-btn-br {
  right: 0.5rem !important;
  bottom: 0.5rem !important;
}

.fixed-btn-br > .btn-floating {
  position: relative;
  transform: scale(1.2);
  z-index: 10;
}

.btn, .nav-pills .nav-link {
  text-transform: none !important;
}

body .btn-secondary {
  background-color: #edf4fd !important;
}

body .btn-outline-secondary {
  color: #edf4fd !important;
  border-color: #edf4fd !important;
}

body .btn-light {
  background-color: #f1f1f1 !important;
}

body .btn-complementary {
  background-color: #ff862c !important;
  color: #fff !important;
  border: none !important;
}

body .btn-complementary:hover {
  background-color: #fa6c00 !important;
  color: #fff !important;
  border: none !important;
}

body .btn-outline-complementary {
  color: #ff862c !important;
  border-color: #ff862c !important;
}

body .btn-outline-complementary:hover {
  color: #fa6c00 !important;
  border-color: #fa6c00;
  background-color: rgba(0, 0, 0, 0.02);
}

/* ---------------------------------------------------------------------------
	POSITION
--------------------------------------------------------------------------- */
.top-80px {
  top: 80px;
}

.token.boolean, .token.constant, .token.deleted, .token.number, .token.property, .token.symbol, .token.tag {
  color: #905;
}

pre.line-numbers > code {
  position: relative;
  white-space: inherit;
}

code[class*=language-], pre[class*=language-] {
  color: #000;
  background: none;
  text-shadow: 0 1px #fff;
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  -webkit-hyphens: none;
  hyphens: none;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

code, kbd, pre, samp {
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

.token.attr-name, .token.builtin, .token.char, .token.inserted, .token.selector, .token.string {
  color: #690;
}

.token.atrule, .token.attr-value, .token.keyword {
  color: #07a;
}

.token.punctuation {
  color: #999;
}

code[class*=language-], pre[class*=language-] {
  max-height: 450px;
}

:not(pre) > code[class*=language-], pre[class*=language-] {
  background: #f5f2f0;
}

pre[class*=language-] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

code, kbd, pre, samp {
  font-family: var(--mdb-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}

@media (max-width: 1200px) {
  .hero-lottie-img {
    position: relative;
    height: 500px;
    width: auto;
  }
  .hero-main-text {
    height: auto;
    text-align: center;
  }
}
.img-evidence-banner-vertical {
  height: 400px;
  width: 100%;
  color: #ffffff;
}

.img-evidence-banner-vertical img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.img-evidence-banner-vertical .mask {
  background: rgba(32, 90, 157, 0.8); /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, rgba(32, 90, 157, 0.8), rgba(67, 206, 162, 0)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.img-evidence-banner-vertical .mask .logo-banner-vertical {
  position: inherit;
}

.img-evidence-banner-horizontal {
  background: url(/images/evidence-banner-horizontal.webp?599efd2f97f67f8f64eb9f7c5a7d025f) no-repeat;
  background-position: center;
  background-size: cover;
}

.img-evidence-banner-horizontal img.mockup-evidence {
  position: absolute;
  right: -100px;
  top: -75px;
  width: 150%;
  max-width: none;
}

.img-evidence-most-read {
  height: 150px;
  width: 100%;
}

@media (max-width: 992px) {
  .img-evidence-banner-horizontal {
    background: url(/images/evidence-banner-horizontal-movil.webp?d414e0e4347fc53ea3cdc11e253530b4) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.bg-warning-light {
  background-color: #fff7e5;
}

.bg-success-light {
  background-color: #e5fff0;
}

.bg-danger-light {
  background-color: #fee6ea;
}

.bg-info-light {
  background-color: #e8f8fd;
}

.bg-success-primary {
  background: linear-gradient(19deg, #1266F1, #00B74A);
}

.bg-primary-dark {
  background: linear-gradient(19deg, #21d4fd, #1266F1);
}

.bg-blur-white-1 {
  background: rgba(255, 255, 255, 0.5) !important;
  -webkit-backdrop-filter: blur(20px) !important;
          backdrop-filter: blur(20px) !important;
}

.bg-blur-white-2 {
  background: rgba(255, 255, 255, 0.6) !important;
  -webkit-backdrop-filter: blur(20px) !important;
          backdrop-filter: blur(20px) !important;
}

.bg-blur-white-3 {
  background: rgba(255, 255, 255, 0.7) !important;
  -webkit-backdrop-filter: blur(20px) !important;
          backdrop-filter: blur(20px) !important;
}

.bg-blur-white-4 {
  background: rgba(255, 255, 255, 0.8) !important;
  -webkit-backdrop-filter: blur(20px) !important;
          backdrop-filter: blur(20px) !important;
}

.bg-blur-white-5 {
  background: rgba(255, 255, 255, 0.9) !important;
  -webkit-backdrop-filter: blur(20px) !important;
          backdrop-filter: blur(20px) !important;
}

.bg-transparent {
  background: transparent;
}

.max-height-700px {
  max-height: 700px;
}

.bg-canvas {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.bg-canvas-primary-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(19deg, #21d4fd, #1266F1);
  transform-origin: 0px 0px;
  transform: skewY(-3deg);
  overflow: hidden;
  z-index: -1;
}

.bg-canvas-content {
  padding: 1rem 1rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 992px) {
  .bg-canvas-content {
    padding: 10rem 0rem;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .bg-canvas-primary-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(19deg, #21d4fd, #1266F1);
    transform-origin: 0px 0px;
    transform: skewY(0deg) !important;
    overflow: hidden;
    z-index: -1;
  }
}
/* -------------------------
	HEADER MENU
------------------------- */
header {
  position: relative;
}

.navbar-light .navbar-nav .nav-link {
  color: #202124;
}

.navbar-brand .logo-navbar {
  height: 30px;
}

@media (min-width: 1101px) {
  .navbar .navbar-brand .menu-logo {
    height: 30px;
  }
}
@media (max-width: 1100px) {
  .navbar .navbar-brand .menu-logo {
    height: 20px;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-brand .menu-logo {
    height: 30px;
  }
  .navbar-nav .dropdown-menu {
    position: relative;
  }
  .navbar .navbar-collapse {
    margin-top: 10px;
    border-top: 1px solid #ededed !important;
  }
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
  background-color: #edf4fd;
  font-weight: 500;
  transition: all 200ms;
}
