@charset "UTF-8";
/*!
 * Bootstrap v5.1.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

@import url("https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&display=swap");

:root {
  --bs-primary: #5533ff;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 85, 51, 255;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-family: Unna;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #fff9e9;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
}

h2,
.h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}

h3,
.h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
}

h4,
.h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 1.5rem;
  }
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small,
.small {
  font-size: 0.875em;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #5533ff;
  text-decoration: underline;
}
a:hover {
  color: #4429cc;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

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

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.post,
.page {
  margin: 0;
}
button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

header.site-header {
  position: absolute;
  top: 20px;
  z-index: 1;
  display: block;
  overflow: visible;
  width: 100%;
  height: auto;
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0px;
  padding-bottom: 0px;
}

.main-navigation ul {
  display: flex;
  justify-content: center;
  margin: 0;
  list-style: none;
  align-items: center;
}

.main-navigation ul li {
  margin: 0 16px;
}

.main-navigation ul li a {
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald;
  font-size: 18px;
  letter-spacing: 1.05px;
  line-height: 30px;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.main-navigation ul li a:hover {
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #12255e;
}

.logos_menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
img.logos_menu_1 {
  margin-right: 21px;
}

.home #home {
  background: #fff;
}
section#home .container {
  position: relative;
  /* top: 0;
  transform: translate(-50%, 0px);
  left: 50%; */
  z-index: 9;
  padding-bottom: 150px;
}
/* .hero_bg {
  position: relative;
  left: 50%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 1440px;
  height: 1039px;
  max-width: 1440px;
  background-image: url(../assets/images/hero_img.jpg);
  background-size: 100%;
  transform: translate(-50%, 0px);
  z-index: -1;
} */

.hero_home {
  margin-top: 270px;
  text-align: center;
  z-index: 99;
  position: relative;
}

.hero_home h1 {
  display: flex;
  flex-flow: column;
  margin: 0;
}
.hero_home h1 span:nth-child(1) {
  color: #12255e;
  font-family: Unna;
  font-size: 24.31px;
  font-weight: bold;
  letter-spacing: 2.4px;
  line-height: 45px;
  text-transform: uppercase;
}
.hero_home h1 span:nth-child(2) {
  color: #12255e;
  font-family: Unna;
  font-size: 67.92px;
  font-weight: bold;
  letter-spacing: 2.95px;
  line-height: 63.6px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.hero_home h1 span:nth-child(3) {
  color: #12255e;
  font-family: Unna;
  font-size: 18.3px;
  font-weight: bold;
  letter-spacing: 1.11px;
  line-height: 2;
  text-transform: uppercase;
}

input#busqueda {
  background: #12255e;
  height: 50px;
  width: 375px;
  padding: 10px 20px;
  color: #fff;
  border: none;
  border-radius: 3px 0 0 3px;
  font-family: Oswald;
  font-size: 15.6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
input#busqueda {
  background-image: url(../assets/images/lupa.svg);
  background-repeat: no-repeat;
  padding-left: 50px;
  background-position: 20px;
}
::placeholder {
  color: #fff;
}
div#div_buscador form {
  display: flex;
  justify-content: center;
}
input#buscar {
  height: 50px;
  width: 110px;
  border: none;
  background: #fffefd;
  color: #12255e;
  font-family: Oswald;
  font-size: 15.6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-left: 0;
  border-radius: 0 3px 3px 0;
}
.btn_buscador {
  margin-top: 24px;
}
.btn_buscador-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 268px;
  background: #12255e;
  height: 50px;
  margin: 0 auto;
  margin-top: 25px;
  transition: background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
/* .btn_buscador-inner:hover {
  background: #fff9e9;
  transition: background .3s cubic-bezier(0.215, 0.61, 0.355, 1);
} */
.btn_buscador-inner p {
  text-transform: uppercase;
  margin: 0;
  margin-left: 15px;
  color: #fffbfb;
  font-family: Oswald;
  font-size: 15.6px;
  letter-spacing: 0.6px;
  line-height: 50px;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn_buscador a {
  text-decoration: none;
  display: block;
}
.btn_buscador-inner:hover p {
  color: #8a95c3;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn_buscador-inner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff9e9;
  z-index: 0;
  transform-origin: center bottom;
  transform: scale3d(1, 0, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn_buscador-inner:hover::before {
  transform-origin: center top;
  transform: scale3d(1, 1, 1);
}

.btn_buscador-inner:hover svg,
.btn_buscador-inner:hover p {
  z-index: 1;
  position: relative;
}

section#sec_1 {
  padding: 45px 0;
  background: #fff9e9;
}
.sec_1-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
img.circulo_amarillo {
  right: -340px;
  position: absolute;
  max-width: 100%;
  top: 520px;
}
.sec_1-right {
  position: relative;
  width: 100%;
}
img.sec_1-right-img {
  position: absolute;
  max-width: 100%;
  right: 0;
}
section#hero_img {
  margin-top: -590px;
}
.sec_1-left {
  max-width: 566px;
}
.sec_1-left h2 {
  color: #8a95c3;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.8px;
  line-height: 1;
  text-shadow: 0 1px 2px rgb(255 255 255 / 50%);
  margin-bottom: 50px;
}
.sec_1-left h5 {
  color: #2e2925;
  font-family: Unna;
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: 24px;
}
.sec_1-left p {
  color: #2e2925;
  font-family: Unna;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 26px;
}

a.btn_primary {
  width: 139px;
  border: 1px solid #12255e;
  border-radius: 2px;
  display: block;
  text-align: center;
  color: #12255e;
  font-family: Oswald;
  font-size: 16px;
  letter-spacing: 0.62px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  line-height: 36px;

  position: relative;
}
.sec_1-left a.btn_primary {
  margin-top: 42px;
  line-height: 36px;
}
.sec_1-left a.btn_primary p {
  line-height: 36px;
}

.btn_efecto:hover p {
  color: #fff9e9;
  z-index: 9;
  position: relative;
}
.btn_efecto:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #12255e;
  z-index: 0;
  transform-origin: center bottom;
  transform: scale3d(1, 0, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn_efecto:hover::before {
  transform-origin: center top;
  transform: scale3d(1, 1, 1);
}
a.btn_primary p {
  margin: 0;
  color: #12255e;
  font-family: Oswald;
  font-size: 16px;
  letter-spacing: 0.62px;
}
.btn_efecto:hover p {
  color: #fff9e9;
  z-index: 9;
  position: relative;
}

.sec_1-right {
  position: relative;
}

section#separador_rasgado {
  text-align: center;
}
section#separador_rasgado img {
  width: 100%;
}

.noticias_home-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
.noticias_home-list article {
  width: 33.33%;
  margin-right: 30px;

  position: relative;
  /* height: 345px; */
  /* border: 1px solid #E0EDFF; */
  border-radius: 3px;
  background-color: transparent;
  overflow: hidden;
  border: 1px solid #ceb164;
  /* box-shadow: 0 10px 10px rgb(0 0 0 / 5%); */
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.noticias_home-list article:last-child {
  margin-right: 0;
}
.home .noticias_home-list article:first-child {
  margin-left: 0 !important;
}
.blog .noticias_home-list {
  flex-flow: wrap;
}
.blog {
  background: #fff;
}
.blog .noticias_home-list article:nth-child(3n) {
  /* margin-right: 0; */
}
.blog .noticias_home-list article {
  width: calc(33.33% - 30px);
  margin: 0 15px;
  margin-bottom: 30px;
}
.background_noticia {
  max-width: 100%;
  height: 190px;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
}
.content_info {
  padding: 40px 35px;
  position: relative;
}
span.fecha {
  color: #767879;
  text-transform: uppercase;
  font-size: 14px;
}
.noticias_home-list .content_info h3 {
  font-weight: 500;
  margin: 0;

  color: #1e1e1e;
  font-family: Unna;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 30px;
}

h2.noticias-titulo {
  color: #8a95c3;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.8px;
  line-height: 1;
  text-shadow: 0 1px 2px rgb(255 255 255 / 50%);
  margin-bottom: 50px;
  text-align: center;
}

.content_info p.parrafo {
  color: #7b7b7b;
  font-family: Oswald;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 23px;
  margin-top: 6px;
}
.autorizaciones_link a {
  border: 1px solid #12255e;
  border-radius: 2px;
  display: inline-block;
  padding: 8px 18px;
  color: #12255e;
  font-family: Oswald;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.62px;
  line-height: 1;
}

.enlace_blog a {
  margin: 0 auto;
  margin-top: 64px;
}
.enlace_blog a p {
  line-height: 36px;
}

section#noticias {
  padding: 45px 0;
}

.footer_bg {
  position: relative;
  left: 50%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  min-height: 431px;
  max-width: 100%;
  background-image: url(../assets/images/rasgado_azul.png);
  background-size: 100%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 0;
}

footer {
  position: relative;
}

.footer-inner {
  position: absolute;
  top: 128px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}

.footer_menu ul {
  display: flex;
  justify-content: center;
  margin: 0;
  list-style: none;
}
.footer_menu ul li {
  margin: 0 18px;
}
.footer_menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-family: Oswald;
  font-size: 15px;
  letter-spacing: 2.38px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
}
.footer_menu {
  margin-top: 40px;
}

header.site-header {
  position: absolute;
  top: 20px;
  z-index: 2;
  display: block;
  overflow: visible;
  width: 100%;
  height: auto;
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.w-content .style_1 {
  padding: 45px 50px;
  background: #fff2d0;
}

[themes="quienes_somos"] .sec_1-left {
  max-width: 660px;
}

img.hero_cortina {
  position: absolute;
  left: 50%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  height: auto;
  max-width: 100%;
  width: 100%;
  background-size: 100%;
  transform: translate(-50%, -100px);
  z-index: 1;
}

img.hero_img {
  position: relative;
  left: 50%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  height: auto;
  max-width: 100%;
  background-size: 100%;
  transform: translate(-50%, 0px);
  width: 100%;
  z-index: 0;
}
img.hero_text {
  position: absolute;
  left: calc(50% - 305px);
  top: 680px;
  right: 0%;
  bottom: 0%;
  height: auto;
  max-width: 100%;
  background-size: 100%;
  transform: translate(-50%, 0px);
  z-index: 1;
}

img.sec_1-right-img2 {
  position: absolute;
  max-width: 100%;
  right: 0;
  bottom: 0;
}

.page_wrapper {
  position: relative;
  z-index: 9;
}

.page_wrapper-loop .entry-header {
  padding: 45px 0 25px;
}

.page_wrapper-loop .entry-header h1.entry-title {
  color: #8a95c3;
  font-family: Unna;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.8px;
  line-height: 80.84px;
  text-align: center;
  text-shadow: 0 1px 2px rgb(255 255 255 / 50%);
  margin: 0;
}

.um-row._um_row_1 label {
  color: #2e2925;
  font-family: Oswald;
  font-size: 18px !important;
  letter-spacing: 1px;
}
.um-row._um_row_1 input {
  color: #6472b0;
  font-family: Oswald;
}

body.page-template-default {
  background: #fff9e9;
}

input[type="submit"].um-button,
input[type="submit"].um-button:focus {
  background: #12255e !important;
  letter-spacing: 1px;
}

.um-form {
  font-family: "Oswald";
  letter-spacing: 1px;
}

.um.um-register {
  max-width: 600px;
  text-align: center;
  font-size: 21px;
}

/**/

.ip-header {
  position: fixed;
  top: 0;
  z-index: 2;
  min-height: 460px;
  width: 100%;
  height: 100%;
  background: #fff9e9;
}

.ip-header h1 {
  margin: 0;
}

.ip-logo,
.ip-loader {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.ip-logo {
  top: 0;
  height: 100%;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}

.ip-loader {
  bottom: 20%;
}

.ip-header .ip-inner {
  display: block;
  margin: 0 auto;
}

.ip-header .ip-logo svg {
  position: absolute;
  min-height: 200px;
  height: 25%;
}

.loaded .ip-header .ip-logo svg {
  max-height: 300px;
}

.ip-header .ip-logo svg path {
  fill: #1c9ccd;
}

.ip-header .ip-loader svg path {
  fill: none;
  stroke-width: 6;
}

.ip-header .ip-loader svg path.ip-loader-circlebg {
  stroke: #ddd;
}

.ip-header .ip-loader svg path.ip-loader-circle {
  -webkit-transition: stroke-dashoffset 0.2s;
  transition: stroke-dashoffset 0.2s;
  stroke: #8a95c3;
}

/* Content */
.ip-main {
  overflow: hidden;
  margin: 0 auto;
  padding: 160px 0 10em 0;
  max-width: 1100px;
  width: 90%;
}

.ip-main h2 {
  margin: 0;
  padding: 0.5em 0 1em;
  color: #1c9ccd;
  text-align: center;
  font-size: 4.25em;
  font-size: 4vw;
  line-height: 1;
}

.browser {
  margin: 0 auto;
  padding-top: 8%;
  min-height: 400px;
  max-width: 1000px;
  width: 100%;
  border-radius: 8px;
  background: #fff url(../img/browser.png) no-repeat 50% 0;
  background-size: 100%;
  color: #d3d3d3;
}

.box {
  float: left;
  padding: 3.5em;
  width: 33.3%;
  font-size: 0.7em;
  line-height: 1.5;
}

.box p {
  font-family: "Blokk", Arial, sans-serif;
}

[class^="icon-"]::before,
[class*=" icon-"]::before {
  display: block;
  margin-bottom: 0.5em;
  padding: 0.5em;
  border-radius: 5px;
  background: #dfdfdf;
  color: #fff;
  text-align: center;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-size: 5em;
  font-family: "feather";
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-bell:before {
  content: "\e006";
}

.icon-cog:before {
  content: "\e023";
}

.icon-heart:before {
  content: "\e024";
}

/* Animations */

/* Initial animation of header elements */
.loading .ip-logo,
.loading .ip-loader {
  opacity: 1;
}

.loading .ip-logo {
  -webkit-animation: animInitialLogo 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: animInitialLogo 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}

@-webkit-keyframes animInitialLogo {
  from {
    opacity: 0;
  }
}

@keyframes animInitialLogo {
  from {
    opacity: 0;
  }
}

.loading .ip-loader {
  -webkit-animation: animInitialLoader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: animInitialLoader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}

@-webkit-keyframes animInitialLoader {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 1);
  }
}

@keyframes animInitialLoader {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
  }
}

/* Header elements when loading finishes */
.loaded .ip-logo,
.loaded .ip-loader {
  opacity: 1;
}

.loaded .ip-logo {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@-webkit-keyframes animLoadedLogo {
  to {
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0)
      scale3d(0.65, 0.65, 1);
  }
}

@keyframes animLoadedLogo {
  to {
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0)
      scale3d(0.65, 0.65, 1);
    transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0)
      scale3d(0.65, 0.65, 1);
  }
}

.loaded .ip-loader {
  -webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@-webkit-keyframes animLoadedLoader {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
  }
}

@keyframes animLoadedLoader {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
  }
}

/* Change the color of the logo */
.loaded .ip-logo svg path {
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
  fill: #fff;
}

/* Header animation when loading finishes */
.loaded .ip-header {
  -webkit-animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@-webkit-keyframes animLoadedHeader {
  to {
    -webkit-transform: translate3d(0, -100%, 0);
  }
}

@keyframes animLoadedHeader {
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

/* Content animations */
.loaded .ip-main h2,
.loaded .ip-main .browser,
.loaded .ip-main .browser .box,
.loaded .codrops-demos {
  -webkit-animation: animLoadedContent 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation: animLoadedContent 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}

.loaded .ip-main h2,
.loaded .ip-main .browser .box:first-child {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loaded .codrops-demos,
.loaded .ip-main .browser .box:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.loaded .ip-main .browser .box:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes animLoadedContent {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 1);
  }
}

@keyframes animLoadedContent {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 1);
    transform: scale3d(0.3, 0.3, 1);
  }
}

.login_content {
  display: flex;
  justify-content: flex-end;
}

svg.user_svg {
  max-width: 21px;
}
a.user_header {
  border-radius: 30px;
  background: #12255e;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px 8px 8px;
  text-decoration: none;
}
a.user_header p {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: Oswald;
  font-size: 12px;
  letter-spacing: 1.05px;
  margin-left: 12px;
}
svg.user_svg {
  background: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  padding: 3px;
  max-width: 24px;
}

/* Change layout class for header */
.layout-switch .ip-header {
  position: absolute;
}

/* No JS */
.no-js .ip-header {
  position: relative;
  min-height: 0px;
}

.no-js .ip-header .ip-logo {
  margin-top: 20px;
  height: 180px;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.no-js .ip-header .ip-logo svg path {
  fill: #fff;
}

.home .hero_home {
  z-index: 999;
  position: relative;
  transform: scale(1.2);
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.loaded .hero_home {
  z-index: 999;
  position: relative;
  transform: scale(1);
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.home .btn_buscador-inner {
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: opacity 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.loaded .btn_buscador-inner {
  opacity: 1;
  -webkit-transition: opacity 1s cubic-bezier(0.7, 0, 0.3, 1),
    background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 1s cubic-bezier(0.7, 0, 0.3, 1),
    background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

[themes="busqueda"] .sec_1-inner {
  justify-content: center;
}
[themes="busqueda"] .sec_1-left {
  max-width: 700px;
  text-align: center;
}
[themes="busqueda"] section#sec_1 {
  padding: 60px 0;
  background: #fff9e9;
}
[themes="busqueda"] .sec_1-left h2 {
  margin-bottom: 12px;
  color: #12255e;
  font-family: Unna;
  font-size: 46px;
  letter-spacing: 0.44px;
  line-height: 59.31px;
  text-align: center;
  text-shadow: 0 1px 2px rgb(255 255 255 / 50%);
  text-transform: capitalize;
}
[themes="busqueda"] .sec_1-left h5 {
  margin-bottom: 24px;
  color: #12255e;
  font-family: Oswald;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 24px;
  text-align: center;
}

.um-account-main {
  padding: 0px 0px 0px 3.5em;
}
.um-account-side li {
  background: #fff;
}

ul.um-misc-ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}
ul.um-misc-ul li a {
  margin: 0 12px;
  background: #12255e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 6px;
  display: block;
  letter-spacing: 1px;
}

.single .sec_1-inner {
  justify-content: center;
}
.single section#sec_1 {
  padding: 45px 0 100px;
  border-bottom: 1px solid #eaeaea;
}
.single .sec_1-left {
  max-width: 700px;
}
.single .sec_1-left h2 {
  margin-bottom: 24px;
  margin-top: 32px;
}

.single section#noticias {
  padding: 100px 0 45px;
}
figure.single_img img {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* CSS MENU */

.c-header_burger {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 44px;
  transform: translateZ(0);
  cursor: pointer;
  z-index: 999;
  background: #fff9e9;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.c-header_burger:after,
.c-header_burger:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 15px);
  height: 1px;
  background-color: #12255e;
  width: 30px;
  transform-origin: center left;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-header_burger:before {
  margin-top: -7px;
  transform: scaleX(0.75);
}

.c-header_burger:after {
  margin-top: 7px;
  transform: scaleX(0.5);
}

.c-header_burger_line {
  top: 50%;
  left: calc(50% - 15px);
  width: 30px;
}

.c-header_burger_line,
.c-header_burger_line:before {
  position: absolute;
  height: 1px;
  background-color: #12255e;
  transition: transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-header_burger_line:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
}

.c-header_burger:hover:before {
  -webkit-animation: lineHoverTop 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  animation: lineHoverTop 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.c-header_burger:hover:after {
  -webkit-animation: lineHoverBottom 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  animation: lineHoverBottom 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.burguer_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  color: #272727;
  visibility: hidden;
  transition: visibility 0s 0.6s;
}

.burguer_content_inner {
  position: relative;
  z-index: 10;
  padding: 7.5rem 0 3rem 0;
}

.burguer_content_inner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #f3f3f3;
  transform-origin: center top;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: scaleY(0);
  z-index: -1;
}

nav.burguer_content_menu {
  margin-top: 45px;
  margin-left: 8%;
  margin-right: 8%;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.has-nav-open nav.burguer_content_menu {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.c-ul_list > li {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53),
    transform 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

li#menu-item-22 {
  padding-right: 85px;
}

.c-ul_list > li a {
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  padding: 0.625rem 0;
  display: block;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: initial;
  color: #240708;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-ul_list > li a:hover {
  color: #df2b5b;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.c-header_nav_background {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(10, 10, 10, 0.25);
  z-index: 8;
  height: 100vh;
  cursor: pointer;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.has-nav-open .c-header_nav_background {
  opacity: 1;
}

.has-nav-open .burguer_content {
  visibility: visible;
  transition-delay: 0s;
}

.has-nav-open .burguer_content_background {
  opacity: 1;
}

.has-nav-open .burguer_content_inner:before {
  transform: scaleY(1);
}

.has-nav-open .c-ul_list > li {
  opacity: 1;
  transform: none;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-duration: 0.6s;
}

.sub-menu li {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53),
    transform 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.has-submenu-open li {
  opacity: 1;
  transform: none;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-duration: 0.6s;
}

.has-nav-open .c-ul_list > li:first-child,
.has-submenu-open li:first-child {
  transition-delay: 0.48s;
}

.has-nav-open .c-ul_list > li:nth-child(2),
.has-submenu-open li:nth-child(2) {
  transition-delay: 0.44s;
}

.has-nav-open .c-ul_list > li:nth-child(3),
.has-submenu-open li:nth-child(3) {
  transition-delay: 0.4s;
}

.has-nav-open .c-ul_list > li:nth-child(4),
.has-submenu-open li:nth-child(4) {
  transition-delay: 0.36s;
}

.has-nav-open .c-ul_list > li:nth-child(5),
.has-submenu-open li:nth-child(5) {
  transition-delay: 0.32s;
}

.has-nav-open .c-ul_list > li:nth-child(6),
.has-submenu-open li:nth-child(6) {
  transition-delay: 0.28s;
}

.has-nav-open .c-ul_list > li:nth-child(7),
.has-submenu-open li:nth-child(8) {
  transition-delay: 0.24s;
}

@-webkit-keyframes lineHoverTop {
  0% {
    transform: scaleX(0.75);
  }

  32% {
    transform: scaleX(0);
    transform-origin: center left;
  }

  33% {
    transform: scaleX(0);
    transform-origin: center right;
  }

  65% {
    transform: scaleX(1);
    transform-origin: center right;
  }

  66% {
    transform: scaleX(1);
    transform-origin: center left;
  }

  to {
    transform: scaleX(0.75);
  }
}

@keyframes lineHoverTop {
  0% {
    transform: scaleX(0.75);
  }

  32% {
    transform: scaleX(0);
    transform-origin: center left;
  }

  33% {
    transform: scaleX(0);
    transform-origin: center right;
  }

  65% {
    transform: scaleX(1);
    transform-origin: center right;
  }

  66% {
    transform: scaleX(1);
    transform-origin: center left;
  }

  to {
    transform: scaleX(0.75);
  }
}

@-webkit-keyframes lineHoverBottom {
  0% {
    transform: scaleX(0.5);
  }

  32% {
    transform: scaleX(1);
    transform-origin: center left;
  }

  33% {
    transform: scaleX(1);
    transform-origin: center right;
  }

  65% {
    transform: scaleX(0);
    transform-origin: center right;
  }

  66% {
    transform: scaleX(0);
    transform-origin: center left;
  }

  to {
    transform: scaleX(0.5);
  }
}

@keyframes lineHoverBottom {
  0% {
    transform: scaleX(0.5);
  }

  32% {
    transform: scaleX(1);
    transform-origin: center left;
  }

  33% {
    transform: scaleX(1);
    transform-origin: center right;
  }

  65% {
    transform: scaleX(0);
    transform-origin: center right;
  }

  66% {
    transform: scaleX(0);
    transform-origin: center left;
  }

  to {
    transform: scaleX(0.5);
  }
}

.c-header_logos {
  display: none;
}

[data-in-view]:not(.in-view) [data-anim] {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
}

[data-in-view]:not(.in-view) [data-anim-opacity] {
  opacity: 0;
}

[data-anim] {
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-anim][data-anim="2"] {
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

[data-anim][data-anim="3"] {
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

[data-anim-opacity] {
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*********************/
/* Efectos de cohabs */
/*********************/

[data-anim] {
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

[data-anim][data-anim="top"] {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

[data-anim][data-anim="right"] {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}

[data-anim][data-anim="left"] {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}

[data-anim][data-anim-delay="1"] {
  transition-delay: 0.1s;
}

[data-anim][data-anim-delay="2"] {
  transition-delay: 0.2s;
}

[data-anim][data-anim-delay="3"] {
  transition-delay: 0.3s;
}

[data-anim][data-anim-delay="4"] {
  transition-delay: 0.4s;
}

[data-anim][data-anim-delay="5"] {
  transition-delay: 0.5s;
}

[data-anim][data-anim-delay="6"] {
  transition-delay: 0.6s;
}

[data-anim][data-anim-delay="7"] {
  transition-delay: 0.7s;
}

[data-anim][data-anim-delay="8"] {
  transition-delay: 0.8s;
}

[data-anim][data-anim-delay="9"] {
  transition-delay: 0.9s;
}

[data-anim][data-anim-delay="10"] {
  transition-delay: 1s;
}

[data-anim][data-anim-delay="11"] {
  transition-delay: 1.1s;
}

[data-anim][data-anim-delay="12"] {
  transition-delay: 1.2s;
}

.in-view [data-anim] {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}

.active.in-view [data-anim] {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}

/* ESTILOS BUSCADOR */

div#resultados_busqueda {
  display: flex;
  flex-flow: wrap;
}

.primer_resultado {
  text-align: left;
  width: calc(50% - 30px);
  padding: 30px;
  margin: 15px;
  border: 1px solid rgb(206 177 100 / 50%);
  box-shadow: rgb(0 0 0 / 4%) 0px 0px 30px 1px;
}
p#registro_fecha_inicio_expediente {
  font-family: poppins;
  font-size: 15px;
  color: rgb(24 23 29 / 74%);
}
p#registro_municipio_residencia {
  font-family: "Oswald";
  color: rgb(24 23 29 / 74%);
}
.nombre_completo span {
  margin-right: 8px;
  text-transform: uppercase;
  font-family: Oswald;
  font-size: 21px;
  letter-spacing: 1px;
}

.content_block {
  display: flex;
}
.registro_detalle .content_block {
  border: 1px solid #ceb16452;
  padding: 60px 60px 120px;
  flex-flow: wrap;
  box-shadow: rgb(0 0 0 / 4%) 0px 0px 30px 1px;
}
.content_block_img {
  width: 210px;
}
.imagen_carpeta {
  width: 25%;
  display: flex;
  align-items: flex-start;
}
.content_block_text {
  margin-left: 15px;
  flex: 1;
}
h4.titulo_h4 {
  font-family: Oswald;
  font-size: 18px;
  margin: 8px 0 4px;
}
.busqueda_cabecera {
  margin: 100px 0 45px;
}
.busqueda_cabecera h2 {
  color: #8a95c3;
  font-family: Oswald;
  font-size: 42px;
  padding-top: 45px;
}

.registro_detalle {
  text-align: left;
  margin-top: 160px;
}

.registro_detalle .content_block_text {
  /* margin-left: 0;
  border: 1px solid #ceb164;
  padding: 60px; */
}

.content_block_img {
  width: 300px;
  position: absolute;
  right: 100px;
  z-index: 99;
}
hr.linea_separadora {
  margin: 2rem 0;
}
span#enlace_detalle {
  width: 139px;
  border: 1px solid #12255e;
  border-radius: 2px;
  display: block;
  text-align: center;
  color: #12255e;
  font-family: Oswald;
  font-size: 16px;
  letter-spacing: 0.62px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  line-height: 36px;
  position: relative;
}
span#enlace_detalle a {
  margin: 0;
  color: #12255e;
  font-family: Oswald;
  font-size: 14px;
  letter-spacing: 0.62px;
  text-transform: uppercase;
  display: block;
}

span#enlace_detalle:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #12255e;
  z-index: 0;
  transform-origin: center bottom;
  transform: scale3d(1, 0, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
span#enlace_detalle:hover::before {
  transform-origin: center top;
  transform: scale3d(1, 1, 1);
}

span#enlace_detalle:hover a {
  color: #fff9e9;
  z-index: 9;
  position: relative;
}

span#resultado_ko {
  text-align: center;
  width: 100%;
  color: #2e2925;
  font-family: Unna;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 26px;
}
.registro_detalle .content_block_text {
  margin-left: 0;
}
a.link_descarga {
  display: block;
  cursor: pointer;
}
.registro_detalle .nombre_completo {
  margin-bottom: 24px;
}
.registro_detalle .nombre_completo span {
  font-size: 36px;
}
a#boton_busqueda {
  margin: 0 auto;
  color: #fff;
  background: #12255e;
  padding: 12px 30px;
  font-family: Oswald;
  border-radius: 3px;
  margin-top: 32px;
}
.registro_detalle .content_block_item {
  display: flex;
  align-items: center;
  margin: 9px 0;
}
.registro_detalle .content_block_item {
  display: flex;
  align-items: flex-start;
}
.registro_detalle .content_block_item p {
  margin: 0;
  margin-left: 12px;
  font-family: Oswald;
  font-size: 17px;
  text-transform: uppercase;
  color: #8b8b8b;
  line-height: 1.4;
}
.registro_detalle h4.titulo_h4 {
  font-family: Oswald;
  font-size: 17px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.4;
}

.content_block_item-expedientes {
  display: flex;
}
.content_block_item span {
  color: #5a5855;
}

.content_block_item-expedientes .content_block_item:nth-child(2) {
  margin-left: 24px;
}

/* Media queries */

@media screen and (max-width: 49em) {
  .primer_resultado {
    width: auto;
  }
  .content_block {
    display: flex;
    flex-flow: wrap;
  }
  .imagen_carpeta {
    width: 20%;
    /* display: flex; */
    /* align-items: flex-start; */
  }
  .registro_detalle .content_block {
    padding: 30px;
  }
  .content_block_text {
    margin-left: 15px;
    width: calc(80% - 20px);
  }
  .primer_resultado {
    padding: 20px;
  }
  div#resultados_busqueda {
    flex-flow: column;
  }
  div#div_buscador form {
    flex-flow: column;
  }
  div#div_buscador {
    padding: 0 20px;
  }
  input#busqueda {
    margin: 0 auto;
    width: 100%;
    max-width: 375px;
  }
  input#buscar {
    margin: 0 auto;
    margin-top: 15px;
    width: 200px;
  }
  .c-header_burger {
    display: block;
  }
  .site-header {
    display: none !important;
  }

  .ip-main h2 {
    font-size: 2.25em;
    font-size: 10vw;
  }

  .box {
    width: 100%;
  }
  .hero_home {
    margin-top: 190px;
  }
  .hero_home h1 {
    padding-top: 45px;
  }
  .hero_home h1 span:nth-child(1) {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: initial;
    text-transform: uppercase;
  }
  .hero_home h1 span:nth-child(2) {
    font-size: 52px;
    letter-spacing: 0;
    line-height: 52px;
    padding: 12px 0;
  }
  .hero_home h1 span:nth-child(3) {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
  }
  section#home .container {
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
  section#hero_img {
    margin-top: 0;
  }
  .home #home {
    background: #fff9e9;
  }
  .sec_1-inner {
    flex-flow: column;
  }
  section#sec_1 {
    padding: 60px 15px;
  }
  .noticias_home-list {
    flex-flow: column;
  }
  .noticias_home-list article {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .footer_menu ul li a {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    text-align: center;
  }
  .footer_menu ul {
    padding: 0;
  }
  footer {
    margin-top: 100px;
  }
  .footer_bg {
    min-height: 200px;
    background-size: cover;
    z-index: 0;
  }
  .footer-inner {
    top: -45px;
  }
  img.circulo_amarillo {
    position: relative;
  }
  img.sec_1-right-img {
    position: relative;
    right: 0;
    top: 100px !important;
  }
  .blog .noticias_home-list {
    flex-flow: column;
  }
  .blog .noticias_home-list article {
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
  .c-header_logos {
    display: block;
    display: flex;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    max-width: 80%;
  }
  .c-header_logos img {
    max-width: 90px;
  }
  nav.burguer_content_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  nav.burguer_content_menu ul li a {
    text-decoration: none;
    color: #12255e;
    text-align: center;
    text-transform: uppercase;
    font-family: Oswald;
    font-size: 18px;
    letter-spacing: 1.05px;
    line-height: 30px;
    transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  nav.burguer_content_menu ul li {
    margin: 12px 0;
  }
  .content_block_img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 60px;
  }
  .content_block_item-expedientes {
    flex-flow: column;
  }
  .content_block_item-expedientes .content_block_item:nth-child(2) {
    margin-left: 0;
  }
  .content_block_item.observaciones {
    flex-flow: column;
  }
  .content_block_item.observaciones p {
    margin-left: 0;
  }
  .content_block_img img {
    max-width: 85%;
  }
}

.login_content{
	display: none;
}


.btn_buscador h4 {
  background: #fff;
  display: inline-block;
  padding: 6px 32px;
  border-radius: 3px;
}



p.info_pie {
  margin: 30px 60px;
}
p.info_pie a {
  display: flex;
  flex-flow: column;
  color: #fff;
  font-size: 21px;
}