/**
* Branding $COLORS*/
/*------------------------*\
|      $MIXINS
/*------------------------*/
@font-face {
  font-family: 'PT Sans';
  src: url("fonts/PTSans-Bold.woff2") format("woff2"), url("fonts/PTSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Albra Text';
  src: url("fonts/AlbraTextBold.woff2") format("woff2"), url("fonts/AlbraTextBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PT Sans';
  src: url("fonts/PTSans-Regular.woff2") format("woff2"), url("fonts/PTSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 16px;
}

body {
  color: #121127;
  font-weight: normal;
  width: 100%;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.3;
}

body,
html {
  max-width: 100%;
}

body,
.smooth-container {
  scroll-behavior: smooth;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

.container.container-small {
  width: 800px;
  max-width: 100%;
}

@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.full-width {
  width: 100%;
}

p {
  font-size: .875rem;
  line-height: 1.4;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 1.4rem;
}

p b {
  font-weight: bold;
}

p a {
  text-decoration: underline;
}

figure {
  margin: 0;
}

.clear {
  clear: both;
}

.wow {
  visibility: hidden;
}

.fadein {
  opacity: 0;
}

.hidden_a {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.wrapper {
  position: relative;
}

.wrapper.wrapper-home {
  padding-top: 148px;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 2.5rem;
}

@media only screen and (max-width: 991px) {
  .wrap {
    padding: 0 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .wrap {
    padding: 0 1rem;
  }
}

.wrap2 {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 11.25rem;
}

@media only screen and (max-width: 991px) {
  .wrap2 {
    padding: 0 4rem;
  }
}

@media only screen and (max-width: 768px) {
  .wrap2 {
    padding: 0 1rem;
  }
}

*,
::after,
::before {
  box-sizing: border-box;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 1200px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (max-width: 1200px) {
  .row > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

.row.row-small {
  margin-right: -.5em;
  margin-left: -.5em;
}

.row.row-small > [class^="col-"],
.row.row-small > [class*=" col-"] {
  padding-right: .5em;
  padding-left: .5em;
}

.row.row-md {
  margin-right: -.6rem;
  margin-left: -.6rem;
}

.row.row-md > [class^="col-"],
.row.row-md > [class*=" col-"] {
  padding-right: .6rem;
  padding-left: .6rem;
}

.row.row-big {
  margin-right: -1.6rem;
  margin-left: -1.6rem;
}

.row.row-big > [class^="col-"],
.row.row-big > [class*=" col-"] {
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

.row.row-xbig {
  margin-right: -3rem;
  margin-left: -3rem;
}

.row.row-xbig > [class^="col-"],
.row.row-xbig > [class*=" col-"] {
  padding-right: 3rem;
  padding-left: 3rem;
}

@media only screen and (max-width: 1200px) {
  .row.row-big {
    margin-right: -20px;
    margin-left: -20px;
  }
  .row.row-big > [class^="col-"],
  .row.row-big > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .row.row-xbig {
    margin-right: -20px;
    margin-left: -20px;
  }
  .row.row-xbig > [class^="col-"],
  .row.row-big > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .row.row-md {
    margin-right: -20px;
    margin-left: -20px;
  }
  .row.row-md > [class^="col-"],
  .row.row-md > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
}

* {
  outline: none;
}

a,
button {
  transition: all 0.3s ease;
  cursor: pointer;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mt-2 {
  margin-top: 2rem;
}

@media (max-width: 1980px) {
  html,
  body,
  p {
    font-size: 16px;
  }
}

@media (max-width: 1700px) {
  html,
  body,
  p {
    font-size: 16px;
  }
}

@media (max-width: 1500px) {
  html,
  body,
  p {
    font-size: 16px;
  }
}

.form-group {
  margin-bottom: 1.1rem;
  text-align: left;
}

.form-group.horizontal {
  margin-bottom: 1.5rem;
}

.form-group.horizontal .label {
  font-weight: 600;
}

.form-group.horizontal .label-small {
  color: #475467;
  font-size: .875rem;
}

.form-group.horizontal .label-small.light {
  color: #6F7A88;
  font-size: .75rem;
}

.form-group--inline {
  display: flex;
  align-items: center;
}

.form-group .text-small {
  font-size: .75rem;
  font-weight: 500;
}

.label {
  color: #344054;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: .3rem;
}

.input {
  width: 100%;
  height: 2.75rem;
  padding: .5rem .8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #101B31;
  font-size: .875rem;
  transition: all .3s ease;
}

.input::placeholder {
  font-weight: 400;
  color: silver;
}

.input:focus {
  border-color: #d8bbf9;
  box-shadow: 0px 0px 0px 3px #f4eaff;
  -webkit-box-shadow: 0px 0px 0px 3px #f4eaff;
  -moz-box-shadow: 0px 0px 0px 3px #f4eaff;
}

.input.w-number {
  width: 84px;
}

.input-group-text {
  height: 2.75rem;
  background: #fff;
  border-radius: 8px 0 0 8px;
}

.w-input {
  position: relative;
}

.ic-input {
  background-repeat: no-repeat;
  background-position: .8rem center;
  padding-left: 2.7rem;
  position: absolute;
  display: block;
  width: 2rem;
  height: 2rem;
  top: .3rem;
  right: 0;
}

.ic-input.success {
  background-image: url("../images/check-verde.svg");
}

.ic-input.error {
  background-image: url("../images/alert-circle.svg");
}

.textarea {
  width: 100%;
  height: 7.75rem;
  padding: .7rem .8rem;
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  color: #101B31;
  font-size: .875rem;
  line-height: 1.4;
}

.textarea.big {
  height: 192px;
}

.textarea::placeholder {
  font-weight: 400;
  color: silver;
}

.textarea.con-edit {
  background-image: url("../images/ic-edit-input.svg");
  background-repeat: no-repeat;
  background-position: .8rem .8rem;
  padding-left: 2.7rem;
}

.select {
  padding: 0.5rem 0.8rem;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 6px;
  background-color: #fff;
  background-image: url("../images/bg-select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - .6rem) center;
  font-size: .875rem;
  appearance: none;
  height: 2.75rem;
}

.btn {
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.2;
  height: 2.5rem;
  padding: .7rem .9rem;
  text-transform: none;
  width: auto;
  color: #fff;
  text-align: center;
  transition: all .5s ease;
}

.btn-primary {
  background: #4d6375;
  border-color: #4d6375;
}

.btn-primary:hover {
  background: #ce2a1f;
  border-color: #ce2a1f;
}

.btn-primary.light {
  background: #ff5c05;
  border-color: #ff5c05;
}

.btn-primary.light:hover {
  background: #4d6375;
  border-color: #4d6375;
}

.btn-secondary {
  background: #F5F4F4;
  border-color: #F5F4F4;
  color: #4d6375;
}

.btn-secondary:hover {
  background: #F5F4F4;
  color: #4d6375;
  border-color: #F5F4F4;
}

.btn-secondary.light {
  color: #ff5c05;
}

.btn-secondary.light:hover {
  color: #4d6375;
}

.btn-outline-primary {
  background: #fff;
  border: 1px solid #ff5c05;
  color: #ff5c05;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-primary span {
  font-size: 1.4rem;
  margin-right: .5rem;
}

.btn-outline-primary:hover {
  background: #ff5c05;
  border-color: #ff5c05;
  color: #fff;
}

.btn-outline--secondary {
  background: #fff;
  border: 1px solid #671E75;
  color: #671E75;
}

.btn-outline--secondary:hover {
  background: #671E75;
  border-color: #671E75;
  color: #fff;
}

.btn i {
  font-size: .9rem;
  margin-left: .5rem;
}

.btn img {
  width: auto;
  height: auto;
  margin-left: 0rem;
}

.btn--full {
  width: 100%;
}

.btn-text {
  color: #0A6BE4;
  text-decoration: underline;
}

.btn-text:hover {
  color: #0A6BE4;
  text-decoration: none;
}

.btn:disabled {
  opacity: .4;
  cursor: default;
  pointer-events: none;
}

.form-check {
  padding-left: 0;
}

.form-check label {
  color: #344054;
  font-size: .75rem;
  font-weight: 400;
}

.form-check input {
  border-color: #ff5c05;
}

.olvidaste {
  font-size: .8rem;
}

.no-cuenta {
  color: #475467;
  font-size: .875rem;
  font-weight: 400;
  margin-bottom: 0;
}

.no-cuenta a {
  text-decoration: none;
}

.no-cuenta a:hover {
  color: #551961;
}

.msg {
  color: #475467;
  font-size: .875rem;
  font-weight: 400;
  padding-top: .3rem;
}

.msg.small {
  font-size: .75rem;
  font-weight: 600;
}

.msg.success {
  color: #1FB43F;
}

.msg.error {
  color: #F13F3F;
}

.msg .editor {
  color: #F04438;
  display: block;
}

.checkbox-container {
  position: relative;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  left: 0;
  z-index: 10;
  background: #f00;
  height: 100%;
}

.checkbox-container label {
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  /* Ancho del checkbox personalizado */
  height: 16px;
  /* Altura del checkbox personalizado */
  background-color: #fff;
  border: 1px solid #D0D5DD;
  /* Color de fondo del checkbox no marcado */
  border-radius: 4px;
  /* Bordes redondeados */
  cursor: pointer;
}

.checkbox-container input:checked + label {
  background-color: #671E75;
  border-color: #671E75;
  background-image: url("../images/ic-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}

.checkbox-container span {
  color: #344054;
  font-size: .75rem;
  font-weight: 600;
  margin-left: 1.5rem;
}

.checkbox-container span:hover {
  text-decoration: underline;
  cursor: pointer;
}

.tool {
  cursor: pointer;
}

.nice-select {
  height: 2.75rem;
  padding-top: .2rem;
  width: 180px;
  min-width: 180px;
  padding-left: 14px;
  border: 1px solid #ccc;
}

.nice-select:focus {
  border-color: #d8bbf9;
  box-shadow: 0px 0px 0px 3px #f4eaff;
  -webkit-box-shadow: 0px 0px 0px 3px #f4eaff;
  -moz-box-shadow: 0px 0px 0px 3px #f4eaff;
}

.nice-select.select-big {
  width: 250px;
  min-width: 250px;
}

.nice-select.has-multiple .option:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: -0.2rem;
  margin-right: 0.4rem;
}

.nice-select.has-multiple .option.selected:before {
  background-image: url("../images/check-active.svg");
  background-size: 100%;
  border: none;
}

.nice-select .option.disabled {
  display: none;
}

.nice-select .nice-select-dropdown {
  width: 100%;
}

.switch-input {
  height: 30px;
}

.switch-input input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

.switch-input label {
  cursor: pointer;
  text-indent: -9999px;
  width: 62px;
  height: 30px;
  background: transparent;
  border: 1px solid #ccc;
  display: block;
  border-radius: 100px;
  position: relative;
}

.switch-input label:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
  background: #9E9E9E;
}

.switch-input input:checked + label {
  border-color: #0A6BE4;
}

.switch-input input:checked + label:after {
  left: calc(100% - 4px);
  transform: translateX(-100%);
  background: #0A6BE4;
}

.switch-input label:active:after {
  width: 60;
  box-shadow: inset 0 0 5px blue;
}

.tooltip {
  background: #fff !important;
  opacity: 1 !important;
  line-height: 1.1;
}

.tooltip .tooltip-inner {
  border-radius: 20px;
  border: 1px solid #DEDEDE;
  background: #FFF !important;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
  color: #121127;
  opacity: 1 !important;
  padding: .9rem;
}

.tooltip .tooltip-arrow:before {
  border-top-color: #fff !important;
}

.file-drop {
  min-height: 118px;
  height: auto;
  padding: 16px;
  border: 1px dashed #9D9CAF;
  cursor: pointer;
  border-radius: 6px;
  background: #f5f5f5;
  margin-top: 1.7rem;
  height: 192px;
}

@media only screen and (max-width: 768px) {
  .file-drop {
    margin-bottom: 1.5rem;
  }
}

.file-drop .btn {
  margin-top: .6rem;
  background: transparent;
  width: auto;
  display: inline-block;
  padding-top: .5rem;
  color: #ff5c05;
}

.file-input {
  display: none;
}

.file-label {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #6C6B80;
}

.file-label span {
  color: #6C6B80;
}

.file-label span span {
  opacity: 0.5;
}

.file-label img {
  margin-bottom: 0rem;
}

.nombreArchivo {
  text-align: center;
  color: #671E75;
  margin-top: .5rem;
}

.nombreArchivo p {
  font-weight: bold;
  margin-bottom: 0;
}

.file-label span {
  display: block;
  margin-top: 0rem;
  line-height: 1.6;
}

.file-label span b {
  color: #671E75;
}

.file-label span .small {
  font-size: 12px;
}

.file-drop.dragover {
  border-color: #4CAF50;
}

.carrusel {
  position: relative;
}

.carrusel.con-nav {
  padding: 0;
}

.carrusel .tns-nav {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

@media only screen and (max-width: 991px) {
  .carrusel .tns-nav {
    bottom: 1rem;
    right: 1rem;
  }
}

.carrusel .tns-nav button {
  width: 10rem;
  height: 10rem;
  display: inline-block;
  border: 1px solid #FCF4B8;
  border-radius: 100%;
  margin: 0 .4rem;
  background: #FCF4B8;
  padding: 0;
  opacity: .75;
}

@media only screen and (max-width: 1500px) {
  .carrusel .tns-nav button {
    width: .7rem;
    height: .7rem;
  }
}

.carrusel .tns-nav button.tns-nav-active {
  background: #4d6375;
  border-color: #4d6375;
}

.carrusel.blanco button {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}

.carrusel.blanco button.tns-nav-active {
  border-color: #fff;
  background: #fff;
  opacity: 1;
}

.carrusel.gris button {
  background: #fff;
  border-color: #0A6BE4;
}

.carrusel.gris button.tns-nav-active {
  border-color: #121127;
  background: #121127;
}

.carrusel .tns-controls button {
  background: transparent;
  border-radius: 0;
  font-size: 0;
  width: auto;
  height: auto;
  line-height: 1;
  border: none;
  text-align: center;
  position: absolute;
  padding: 0;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrusel .tns-controls button:first-child {
  left: -2.4rem;
  padding-right: 0px;
}

.carrusel .tns-controls button:last-child {
  right: -2.4rem;
  padding-left: 0px;
}

.carrusel .tns-controls button:after {
  content: "";
  display: inline-block;
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  font-size: 3rem;
  color: #0A6BE4;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
}

.carrusel .tns-controls button:first-child:after {
  padding-right: 4px;
  content: "\f053";
}

.carrusel .tns-controls button:last-child:after {
  content: "\f054";
  padding-left: 4px;
}

.carrusel .tns-controls button:hover {
  opacity: 0.85;
}

@media only screen and (max-width: 640px) {
  .carrusel .tns-controls {
    display: none;
  }
  .carrusel .tns-controls button {
    width: 40px;
    height: 40px;
    line-height: 32px;
  }
  .carrusel .tns-controls button:after {
    font-size: 24px;
  }
  .carrusel .tns-controls button:first-child {
    left: 20px;
  }
  .carrusel .tns-controls button:last-child {
    right: 20px;
  }
}

.carrusel .tns-controls {
  display: none;
}

.carrusel.con-nav .tns-controls {
  display: block;
}

@media only screen and (max-width: 640px) {
  .carrusel.con-nav .tns-controls {
    display: none;
  }
}

.slide-home .carrusel .tns-nav {
  position: absolute;
  left: 160px;
  bottom: 1em;
  z-index: 999;
}

@media only screen and (max-width: 1550px) {
  .slide-home .carrusel .tns-nav {
    left: 80px;
  }
}

@media only screen and (max-width: 550px) {
  .c-movil {
    padding: 0 60px 0 15px !important;
    margin: 0 -15px;
  }
  .c-movil .tns-ovh {
    overflow: visible;
  }
  .c-movil .tns-nav {
    width: calc(100vw - 30px);
  }
}

header {
  position: sticky;
  top: 0px;
  z-index: 10;
  background: #FFF;
  box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
}

@media only screen and (max-width: 768px) {
  header {
    padding: .6rem 0;
  }
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
}

header .header-izq {
  display: flex;
  align-items: center;
}

header .header-izq .btn-menu {
  font-size: 1.6rem;
  transition: all .3s ease;
}

header .header-izq .btn-menu:hover {
  color: #ff5c05;
}

@media only screen and (max-width: 768px) {
  header .header-izq .btn-menu {
    font-size: 1.2rem;
  }
}

header .header-izq .logo {
  display: block;
  width: 10.9rem;
  margin-left: 1.5rem;
}

header .header-izq .logo img {
  width: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 768px) {
  header .header-izq .logo {
    width: 74px;
    margin-left: .5rem;
    margin-top: -6px;
  }
}

header .header-izq nav ul {
  display: flex;
  margin: 0;
  list-style: none;
  padding-left: 0;
  margin-left: 4.3rem;
}

@media only screen and (max-width: 1200px) {
  header .header-izq nav ul {
    margin-left: 2rem;
  }
}

header .header-izq nav ul li {
  margin-left: 2rem;
}

header .header-izq nav ul li a {
  color: #121127;
}

header .header-izq nav ul li a:hover {
  color: #4d6375;
}

header .header-izq nav ul li a i {
  font-size: .8rem;
  color: #ff5c05;
}

@media only screen and (max-width: 991px) {
  header .header-izq nav {
    display: none;
  }
}

header .header-der {
  display: flex;
  align-items: center;
}

header .header-der .lupa {
  cursor: pointer;
  font-size: 1.2rem;
  color: #292938;
  margin-right: .5rem;
}

@media only screen and (max-width: 991px) {
  header .header-der .lupa {
    display: none;
  }
}

header .header-der .btn {
  margin-left: .5rem;
}

@media only screen and (max-width: 991px) {
  header .header-der .btn {
    font-size: 11px;
    padding: .2rem;
    height: auto;
  }
}

header .header-der .btn-primary {
  background: #ff5c05;
  border-color: #ff5c05;
}

header .header-der .btn-primary:hover {
  background: #4d6375;
  border-color: #4d6375;
}

header .header-der .btn-secondary {
  color: #ff5c05;
}

header .header-der .btn-secondary:hover {
  color: #4d6375;
}

.megamenu {
  background: #f5f4f4;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  position: absolute;
  width: 100%;
  top: 70px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all .3s ease;
  overflow: hidden;
}

.megamenu.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

.megamenu__tabs {
  display: flex;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #c6c6c6;
}

.megamenu__tabs a {
  font-size: 1rem;
  font-weight: 400;
  color: #6C6B80;
  display: block;
  border-bottom: 4px solid transparent;
  padding: .3rem .8rem;
}

.megamenu__tabs a:hover {
  color: #4d6375;
}

.megamenu__tabs a.activo {
  border-color: #ff5c05;
}

.megamenu .panel-menu {
  display: none;
}

.megamenu .panel-menu.visible {
  display: block;
}

.megamenu__nav {
  display: flex;
  padding-top: 1rem;
}

.megamenu__nav .col-nav {
  padding-right: 2rem;
  border-right: 1px solid #c4c4c6;
  margin-right: 2.3rem;
  max-width: 33%;
  padding-bottom: 2rem;
}

.megamenu__nav .col-nav:last-child {
  border: none;
}

.megamenu__nav .col-nav h4 {
  font-size: 1.125rem;
  color: #121127;
  margin: 0;
  font-weight: 700;
}

.megamenu__nav .col-nav h4 a {
  font-size: .75rem;
  color: #ff5c05;
  border: 1px solid #ff5c05;
  border-radius: 6px;
  padding: .3rem;
  line-height: 1;
  font-weight: 400;
  display: inline-block;
  width: 44px;
  text-align: center;
  margin-left: .4rem;
}

.megamenu__nav .col-nav ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.megamenu__nav .col-nav ul li {
  margin-bottom: .6rem;
  position: relative;
  padding-left: .8rem;
}

.megamenu__nav .col-nav ul li:before {
  content: "\f054";
  color: #ff5c05;
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0rem;
  top: .2rem;
  font-size: .6rem;
}

.megamenu__nav .col-nav ul li a {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
}

.megamenu__nav .col-nav ul li a:hover {
  color: #4d6375;
}

.nav-lateral {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 400px;
  z-index: 99;
  background: #fff;
  height: 100%;
  padding: 1.6rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  transform: translateX(-100%);
}

@media only screen and (max-width: 768px) {
  .nav-lateral {
    padding: .8rem 1.2rem;
  }
}

.nav-lateral.visible {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease;
  transform: translateX(0%);
}

.nav-lateral .cerrar-menu {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.nav-lateral nav {
  margin-bottom: 2rem;
}

.nav-lateral nav ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.nav-lateral nav ul li {
  margin-bottom: .6rem;
  position: relative;
  padding-left: 0rem;
}

@media only screen and (max-width: 768px) {
  .nav-lateral nav ul li {
    position: static;
    padding-left: 0;
    margin-bottom: 1rem;
  }
}

.nav-lateral nav ul li a {
  color: #000;
  font-weight: 400;
  display: block;
  position: relative;
  padding-left: .8rem;
}

@media only screen and (max-width: 991px) {
  .nav-lateral nav ul li a {
    padding: .2rem 0;
  }
}

.nav-lateral nav ul li a:before {
  content: "\f054";
  color: #ff5c05;
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0rem;
  top: .2rem;
  font-size: .6rem;
}

@media only screen and (max-width: 768px) {
  .nav-lateral nav ul li a:before {
    display: none;
  }
}

.nav-lateral nav ul li a.c-submenu:before {
  content: "\f054";
  color: #ff5c05;
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  position: absolute;
  right: 0rem;
  left: auto;
  top: .5rem;
  font-size: .6rem;
}

@media only screen and (max-width: 768px) {
  .nav-lateral nav ul li a.c-submenu:before {
    display: block;
  }
}

.nav-lateral nav ul li.item-mobile {
  display: none;
  position: static;
}

@media only screen and (max-width: 991px) {
  .nav-lateral nav ul li.item-mobile {
    display: block;
  }
}

.nav-lateral nav ul li .submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4.6rem 1.2rem;
  background: #fff;
  z-index: 2;
  display: none;
}

.nav-lateral nav ul li .submenu.visible {
  display: block;
}

.nav-lateral nav ul li .submenu li {
  margin-bottom: 1.2rem;
}

.nav-lateral nav ul li .submenu li.volver-menu {
  background: #f5f4f4;
  color: #ff5c05;
  font-weight: 600;
  margin-left: -1.2rem;
  padding: .5rem 1rem .5rem 1.2rem;
  position: relative;
  width: calc(100% + 2.4rem);
}

.nav-lateral nav ul li .submenu li.volver-menu a.ver {
  color: #ff5c05;
  font-weight: 400;
  display: inline;
  font-size: .875rem;
  border: 1px solid #ff5c05;
  padding: .1rem .6rem;
  line-height: 1;
  border-radius: 6px;
  margin-left: 1rem;
}

.nav-lateral nav ul li .submenu li.volver-menu .volver {
  position: absolute;
  right: 1.2rem;
  top: .3rem;
}

@media only screen and (max-width: 991px) {
  .nav-lateral .ayuda-menu .row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .nav-lateral .ayuda-menu .row > [class^="col-"],
  .nav-lateral .ayuda-menu .row > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.nav-lateral .ayuda-menu h3 {
  color: #6C6B80;
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-bottom: 1px solid #c0bfc8;
  padding-bottom: .4rem;
}

.nav-lateral .ayuda-menu .card-ayuda {
  border-radius: 4px;
  border: 1px solid #b2b1ba;
  display: block;
  height: 104px;
  text-align: center;
}

.nav-lateral .ayuda-menu .card-ayuda__img {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-lateral .ayuda-menu .card-ayuda__img img {
  max-width: 50%;
}

.nav-lateral .ayuda-menu .card-ayuda__img img.ayuda1 {
  width: 28px;
}

.nav-lateral .ayuda-menu .card-ayuda__img img.ayuda2 {
  width: 40px;
}

.nav-lateral .ayuda-menu .card-ayuda__img img.ayuda3 {
  width: 26px;
}

.nav-lateral .ayuda-menu .card-ayuda p {
  color: #6C6B80;
  font-size: .7rem;
  margin-bottom: 0;
  line-height: 1.1;
}

.buscador {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  padding: 3rem 0 1.5rem;
  border-bottom: 4px solid #4d6375;
  transition: all .3s ease;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}

.buscador.visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.buscador .w-buscador {
  width: 585px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}

.buscador .w-buscador .form-group {
  position: relative;
}

.buscador .w-buscador .form-group .btn-buscar {
  border: none;
  background: transparent;
  position: absolute;
  bottom: .7rem;
  right: .8rem;
}

.buscador .w-buscador .cerrar-buscador {
  position: absolute;
  right: -4rem;
  bottom: 1rem;
}

.panel-comparar {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  background: #fff;
  top: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: all .3s ease;
  overflow: auto;
}

.panel-comparar.visible {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.panel-comparar__header {
  background: #F5F4F4;
  font-size: 2rem;
  color: #121127;
  font-weight: 400;
  padding: .8rem 2.2rem;
}

@media only screen and (max-width: 768px) {
  .panel-comparar__header {
    font-size: 1.2rem;
  }
}

.panel-comparar__header img {
  margin-right: .5rem;
}

@media only screen and (max-width: 768px) {
  .panel-comparar__header img {
    width: 1.4rem;
  }
}

.panel-comparar__header .cerrar-comparar {
  position: absolute;
  right: 1rem;
  top: .4rem;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .panel-comparar__header .cerrar-comparar {
    top: .6rem;
  }
  .panel-comparar__header .cerrar-comparar img {
    width: 1.2rem;
  }
}

.panel-comparar__body {
  padding: 1rem 2.2rem;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .panel-comparar__body {
    flex-direction: column;
  }
}

.panel-comparar__body .seguro-comparar {
  width: 25%;
  border: 1px solid #F5F4F4;
  margin-right: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .panel-comparar__body .seguro-comparar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.panel-comparar__body .seguro-comparar .card-seguro-comparar {
  height: 280px;
}

@media only screen and (max-width: 768px) {
  .panel-comparar__body .seguro-comparar .card-seguro-comparar {
    height: auto;
  }
}

.panel-comparar__body .seguro-comparar .card-seguro-comparar__img {
  width: 100%;
}

.panel-comparar__body .seguro-comparar .card-seguro-comparar__img img {
  width: 100%;
  vertical-align: bottom;
}

.panel-comparar__body .seguro-comparar .card-seguro-comparar__body {
  text-align: center;
  padding: .5rem .5rem 2rem;
}

.panel-comparar__body .seguro-comparar .card-seguro-comparar__body .precio {
  color: #6C6B80;
  font-size: 1rem;
  margin-bottom: .4rem;
}

.panel-comparar__body .seguro-comparar .card-seguro-comparar__body .precio span {
  color: #ff5c05;
  font-weight: 500;
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.panel-comparar__body .seguro-comparar .card-seguro-comparar__body h4 {
  color: #121127;
  margin: 0;
  font-weight: 500;
  font-size: 1.125rem;
}

.panel-comparar__body .seguro-comparar .tabla-comparar {
  text-align: center;
  padding: .7rem;
}

.panel-comparar__body .seguro-comparar .tabla-comparar .item-tabla {
  border-top: 1px solid #eee;
  padding: .6rem 0;
  text-align: center;
  min-height: 2.5rem;
  height: auto;
}

.panel-comparar__body .seguro-comparar .tabla-comparar .item-tabla.big {
  height: 3.2rem;
}

.panel-comparar__body .seguro-comparar .tabla-comparar .item-tabla.item-eliminar {
  height: auto;
}

.panel-comparar__body .seguro-comparar .tabla-comparar .item-tabla span {
  display: none;
}

@media only screen and (max-width: 768px) {
  .panel-comparar__body .seguro-comparar .tabla-comparar .item-tabla span {
    display: inline-block;
  }
}

.panel-comparar__body .seguro-comparar .tabla-comparar .item-tabla .btn-eliminar {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff5c05;
  margin: .5rem auto 0;
}

.panel-comparar__body .seguro-comparar.tipo1 {
  width: 20%;
}

@media only screen and (max-width: 768px) {
  .panel-comparar__body .seguro-comparar.tipo1 {
    display: none;
  }
}

.panel-comparar__body .seguro-comparar.tipo1 .card-seguro-comparar {
  visibility: hidden;
}

.panel-comparar__body .seguro-comparar.tipo1 .tabla-comparar {
  text-align: left;
}

.panel-comparar__body .seguro-comparar.tipo1 .tabla-comparar span {
  display: block;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
}

.panel-comparar__body .seguro-comparar.tipo1 .tabla-comparar img {
  display: none;
}

.panel-comparar__body .seguro-comparar.tipo1 .tabla-comparar .btn-eliminar {
  display: none;
}

.panel-comparar .plaza-seguro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fbfbfb;
  border: 1px solid #f5f4f4;
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  width: 25%;
}

@media only screen and (max-width: 768px) {
  .panel-comparar .plaza-seguro {
    width: 100%;
    min-height: 300px;
  }
}

.panel-comparar .plaza-seguro img {
  margin-bottom: .5rem;
}

.panel-comparar .plaza-seguro p {
  font-size: 1rem;
  color: #6C6B80;
  font-weight: 400;
}

.hero {
  position: relative;
  max-height: 440px;
  height: 440px;
}

@media only screen and (max-width: 991px) {
  .hero {
    max-height: 350px;
    height: 350px;
  }
}

.hero .item-slide {
  max-height: 440px;
  height: 440px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .hero .item-slide {
    max-height: 350px;
    height: 350px;
  }
}

.hero__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

@media only screen and (max-width: 991px) {
  .hero__bg {
    position: relative;
    height: 100%;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  height: 100%;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .hero .container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 3.5rem;
  }
}

.hero__ic {
  position: absolute;
  margin-top: -13rem;
  margin-left: -1.8rem;
  width: 8.7rem;
}

@media only screen and (max-width: 991px) {
  .hero__ic {
    width: 5rem;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 2px;
  }
}

.hero h1 {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: 3.375rem;
  font-weight: 700;
  max-width: 30rem;
}

@media only screen and (max-width: 991px) {
  .hero h1 {
    font-size: 1.5rem;
    padding-right: 2rem;
  }
}

.seccion {
  padding: 2rem 0;
}

.iconos-home {
  padding-top: 3.5rem;
}

.box-home {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .box-home {
    width: 100%;
    justify-content: center;
    margin-bottom: 3rem;
  }
}

.box-home__ic {
  background: #F5F4F4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 10px;
  margin-right: .5rem;
}

.box-home__ic img {
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  .box-home__ic {
    margin-right: .7rem;
  }
}

.box-home h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #121127;
}

.box-home h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 300;
  color: #121127;
}

.box-home p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #6C6B80;
}

@media only screen and (max-width: 768px) {
  .t-seguros {
    display: flex;
    align-items: flex-end;
  }
  .t-seguros span {
    margin-bottom: .4rem;
    margin-left: .8rem;
    min-width: 100px;
  }
}

.titulo {
  color: #000;
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 1.125rem;
}

.titulo span {
  color: #ff5c05;
  font-size: 1rem;
}

@media only screen and (max-width: 768px) {
  .titulo span {
    font-size: .75rem;
  }
}

@media only screen and (max-width: 768px) {
  .titulo {
    font-size: 1.3rem;
  }
}

.titulo2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #121127;
  margin: 0 0 1.5rem;
}

@media only screen and (max-width: 768px) {
  .titulo2 {
    font-size: 1.125rem;
  }
}

.titulo3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #121127;
  margin: 0 0 1rem;
}

@media only screen and (max-width: 768px) {
  .titulo3 {
    font-size: 1rem;
  }
}

.card-seguro {
  position: relative;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 0 0 6px 6px;
}

.card-seguro__categoria {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
}

.card-seguro__categoria span {
  font-size: .75rem;
  font-weight: 500;
  color: #fff;
  border-radius: 0 0 0 6px;
  display: block;
  padding: .4rem 1rem .4rem .6rem;
}

.card-seguro__categoria span:nth-child(2) {
  margin-left: -5px;
}

.card-seguro__categoria span.amarillo {
  background: #EFBA00;
}

.card-seguro__categoria span.blanco {
  background: #fff;
}

.card-seguro__categoria span.gris {
  background: #6C6B80;
}

.card-seguro__img {
  width: 100%;
}

.card-seguro__img img {
  width: 100%;
}

.card-seguro__txt {
  padding: .9rem 1.1rem;
  border: 1px solid #DFDFDF;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.card-seguro__txt h4 {
  margin: 0 0 .5rem;
  color: #121127;
  font-size: 1.125rem;
  font-weight: 500;
  min-height: 65px;
}

.card-seguro__txt .precio {
  color: #6C6B80;
  font-size: .75rem;
  margin-bottom: .7rem;
}

.card-seguro__txt .precio span {
  display: block;
  color: #ff5c05;
  font-size: 1.75rem;
  font-weight: 500;
}

.card-seguro__txt .botones {
  display: flex;
}

.card-seguro__txt .botones .btn {
  margin-right: .4rem;
  flex-grow: 1;
}

.card-seguro__txt .botones .btn:last-child {
  margin-right: 0;
}

.por-que {
  padding-top: 3rem;
}

.por-que .titulo {
  margin-bottom: 2.5rem;
}

.por-que .box-home {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 768px) {
  .por-que .box-home {
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .por-que .box-home__ic {
    min-width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .por-que .box-home h3 {
    font-size: 1.125rem;
  }
}

.noticias .container {
  position: relative;
}

.noticias .ver-todas {
  color: #ff5c05;
  position: absolute;
  top: 1rem;
  right: 20px;
}

.card-noticia {
  margin-bottom: 1.5rem;
}

.card-noticia__img img {
  width: 100%;
  vertical-align: bottom;
}

.card-noticia__txt {
  padding: .75rem 0;
}

.card-noticia__txt .fecha {
  color: #6C6B80;
  font-size: .75rem;
  margin-bottom: .4rem;
}

.card-noticia__txt h4 {
  font-size: 1.125rem;
  color: #121127;
  font-weight: 500;
  margin: 0 0 .5rem;
}

.card-noticia__txt h4 a {
  color: #121127;
}

.card-noticia__txt h4 a:hover {
  color: #ff5c05;
}

.card-noticia__txt .leer-mas {
  color: #ff5c05;
  font-size: .875rem;
}

.card-noticia__txt .leer-mas:hover {
  text-decoration: underline;
}

.card-noticia.noticia-destacada .card-noticia__txt h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .card-noticia.noticia-destacada .card-noticia__txt h4 {
    font-size: 1.3rem;
  }
}

.card-noticia.sin-img .card-noticia__txt {
  background: #F5F4F4;
  padding: 2rem 1.5rem;
}

.w-vida {
  display: flex;
  height: 400px;
  margin-bottom: 8rem;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .w-vida {
    height: auto;
    flex-direction: column;
    margin-bottom: 0rem;
  }
}

.w-vida__txt {
  width: 32%;
  min-width: 32%;
  background-image: url("../images/bg-vida.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem;
}

.w-vida__txt h3 {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .w-vida__txt h3 {
    font-size: 1.3rem;
  }
}

.w-vida__txt p {
  font-size: 1rem;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .w-vida__txt {
    width: 100%;
  }
}

.w-vida__img {
  flex-grow: 1;
  position: relative;
  width: 22.66%;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.w-vida__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s ease;
}

.w-vida__img h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4rem;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}

.w-vida__img:hover h4 {
  transform: translateY(-1rem);
}

.w-vida__img:hover img {
  filter: blur(2px);
}

@media only screen and (max-width: 991px) {
  .w-vida__img {
    width: 100%;
    height: 250px;
  }
  .w-vida__img h4 {
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 991px) {
  .w-vida.v2 {
    flex-direction: column-reverse;
  }
}

.banner-seguro {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner-seguro__bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-seguro .container {
  position: relative;
  z-index: 22;
}

.banner-seguro h1 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  max-width: 500px;
}

@media only screen and (max-width: 768px) {
  .banner-seguro h1 {
    font-size: 1.5rem;
  }
}

.banner-seguro p {
  font-size: 1rem;
  color: #fff;
  max-width: 500px;
}

.seguros {
  padding: 2.6rem 0;
  border-radius: 60px;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  background: #fff;
}

.seguros.v2 {
  border-radius: 0;
  margin-top: 0;
}

.seguros .categorias-seguro {
  display: flex;
  justify-content: center;
  margin-bottom: 7rem;
}

@media only screen and (max-width: 991px) {
  .seguros .categorias-seguro {
    display: block;
    margin-bottom: 2rem;
  }
}

.seguros .categorias-seguro .form-group {
  display: none;
}

@media only screen and (max-width: 991px) {
  .seguros .categorias-seguro .form-group {
    display: block;
  }
}

.seguros .categorias-seguro .item-categoria {
  margin: 0 .8rem;
}

@media only screen and (max-width: 991px) {
  .seguros .categorias-seguro .item-categoria {
    display: none;
  }
}

.seguros .categorias-seguro .item-categoria h4 {
  margin: 0 0 .2rem;
  font-size: 1rem;
  color: #6C6B80;
  font-weight: 300;
  text-align: center;
}

.seguros .categorias-seguro .item-categoria .tabs {
  border-radius: 50px;
  background: #E7E7E7;
  padding: 7px;
  display: flex;
}

.seguros .categorias-seguro .item-categoria .tabs a {
  font-size: .75rem;
  font-weight: 400;
  color: #6C6B80;
  padding: .5rem 1rem;
  border-radius: 20px;
  background: #fff;
  display: block;
  margin-right: 7px;
}

.seguros .categorias-seguro .item-categoria .tabs a:hover {
  color: #ff5c05;
}

.seguros .categorias-seguro .item-categoria .tabs a:last-child {
  margin-right: 0;
}

.seguros .categorias-seguro .item-categoria.naranjo a.activo {
  background: #ff5c05;
  color: #fff;
}

.seguros .categorias-seguro .item-categoria.verde a.activo {
  background: #009999;
  color: #fff;
}

.banner-seccion {
  background: #F5F4F4;
  height: 150px;
  display: flex;
  align-items: center;
}

.banner-seccion .container {
  position: relative;
}

@media only screen and (max-width: 991px) {
  .banner-seccion {
    height: 120px;
  }
  .banner-seccion.c-ingresa {
    margin-bottom: 200px;
  }
}

.banner-seccion h1 {
  margin: 0;
  font-size: 2.6rem;
  color: #121127;
  font-weight: 700;
}

.banner-seccion h1 span {
  color: #ff5c05;
  font-weight: 400;
}

@media only screen and (max-width: 550px) {
  .banner-seccion h1 span {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .banner-seccion h1 {
    font-size: 1.5rem;
  }
}

.box-ingresar {
  position: absolute;
  right: 0;
  box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
  width: 288px;
  border-radius: 6px;
  overflow: hidden;
  top: .3rem;
}

@media only screen and (max-width: 991px) {
  .box-ingresar {
    width: 100%;
    top: calc(100% + 2rem);
  }
}

.box-ingresar__head {
  font-size: 1.125rem;
  font-weight: 700;
  color: #121127;
  background: #F5F4F4;
  padding: 1.8rem 1.5rem 1rem;
}

.box-ingresar .separador {
  margin: 0;
  height: 4px;
  background: #4d6375;
  position: relative;
}

.box-ingresar .separador:after {
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  background: #EFBA00;
  width: 20%;
}

.box-ingresar__body {
  padding: 1.8rem 1.125rem;
}

.box-ingresar__body .btn {
  width: 100%;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4d6375;
  background: linear-gradient(90deg, #4d6375 0%, #ff5c05 100%);
}

.buscador-canales {
  width: 572px;
  max-width: 100%;
  margin: 1.5rem 0 2rem;
  position: relative;
}

.buscador-canales .input {
  padding-left: 2rem;
}

.buscador-canales .btn-lupa {
  position: absolute;
  left: .3rem;
  top: .7rem;
  border: none;
  background: transparent;
}

.link-canal {
  border-radius: 6px;
  background: #F5F4F4;
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #121127;
  padding: .7rem 2rem .7rem 1rem;
  position: relative;
  margin-bottom: 1rem;
  transition: all .3s ease;
}

.link-canal i {
  color: #ff5c05;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.link-canal:hover {
  background: #ff5c05;
  color: #fff;
}

.link-canal:hover i {
  color: #fff;
}

.separador {
  width: 100%;
  height: 1px;
  background: #6C6B80;
  margin: 1.5rem 0 3rem;
}

.volver-ayuda {
  font-size: .875rem;
  font-weight: 400;
  color: #ff5c05;
  margin-bottom: 2rem;
}

.sidebar-ayuda a {
  font-size: 1rem;
  color: #121127;
  position: relative;
  display: block;
  padding: .6rem 2rem .8rem 1rem;
  border-bottom: 1px solid #6C6B80;
  margin-bottom: 1rem;
}

.sidebar-ayuda a i {
  color: #ff5c05;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar-ayuda a:hover {
  background: #ff5c05;
  color: #fff;
}

.sidebar-ayuda a:hover i {
  color: #fff;
}

.detalle-ayuda {
  padding-bottom: 1rem;
}

@media only screen and (max-width: 991px) {
  .detalle-ayuda {
    padding-top: 2rem;
  }
}

.card-contacto {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .card-contacto {
    align-items: center;
  }
}

.card-contacto__img {
  width: 50%;
  min-width: 50%;
}

.card-contacto__img img {
  width: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 550px) {
  .card-contacto__img {
    width: 80px;
    min-width: 80px;
  }
}

.card-contacto__txt {
  padding-left: .8rem;
}

.card-contacto__txt h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .card-contacto__txt h3 {
    font-size: 1.3rem;
  }
}

.card-contacto__txt p {
  color: #6C6B80;
  font-size: 1rem;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .card-contacto__txt p {
    font-size: .75rem;
  }
}

.card-contacto__txt p a {
  color: #6C6B80;
  text-decoration: underline;
}

.banner-big {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  .banner-big {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}

.banner-big__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-big .container {
  position: relative;
}

.banner-big .container h1 {
  font-size: 2.65rem;
  color: #fff;
  margin: 0;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .banner-big .container h1 {
    font-size: 1.5rem;
    text-align: left;
    padding-top: 2.5rem;
    max-width: 200px;
  }
}

.suscripcion-digital p {
  color: #6C6B80;
  font-weight: 400;
}

.suscripcion-digital p a {
  color: #ff5c05;
  text-decoration: none;
  word-wrap: break-word;
}

.suscripcion-digital .comparte {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 5rem;
}

.suscripcion-digital .comparte p {
  color: #121127;
  margin-bottom: 0;
}

.suscripcion-digital .comparte a {
  font-size: 1.2rem;
  color: #121127;
  display: block;
  margin-left: 1rem;
}

.suscripcion-digital .comparte a:hover {
  color: #ff5c05;
}

.lista-naranjo {
  list-style: none;
  padding-left: 1rem;
}

.lista-naranjo li {
  position: relative;
  color: #6C6B80;
  padding-left: 1rem;
  margin-bottom: 1.1rem;
}

.lista-naranjo li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5c05;
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
}

.util {
  background: #F5F4F4;
  margin-bottom: -2rem;
  padding: 1rem 0;
  margin-top: 3rem;
}

.util .container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.util p {
  margin: 0;
}

.util .btn {
  margin-left: 1rem;
}

.card-instructivo {
  display: flex;
  border-radius: 6px;
  padding: 1rem 1.75rem;
  border: 1px solid #e3e3e3;
  margin-bottom: 1rem;
  background: #fafafa;
}

.card-instructivo__txt {
  padding-left: 1rem;
}

.card-instructivo__txt h4 {
  margin: 0;
  color: #121127;
  font-size: 1rem;
  font-weight: 400;
}

.card-instructivo__txt a {
  font-size: .875rem;
  color: #ff5c05;
}

.card-instructivo__txt a:hover {
  text-decoration: underline;
}

.card-noticia-big {
  margin-bottom: 1.8rem;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .card-noticia-big {
    flex-direction: column;
  }
}

.card-noticia-big__img {
  width: 38%;
  min-width: 38%;
}

.card-noticia-big__img img {
  width: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 768px) {
  .card-noticia-big__img {
    width: 100%;
    min-width: 100%;
  }
}

.card-noticia-big__txt {
  padding: .6rem 0 0 1rem;
}

@media only screen and (max-width: 768px) {
  .card-noticia-big__txt {
    padding-left: 0;
  }
}

.card-noticia-big__txt .fecha {
  color: #6C6B80;
  font-size: .75rem;
  margin-bottom: .8rem;
}

.card-noticia-big__txt h4 {
  font-size: 1.5rem;
  color: #121127;
  font-weight: 500;
  margin: .6rem 0;
}

.card-noticia-big__txt h4 a {
  color: #121127;
}

.card-noticia-big__txt h4 a:hover {
  color: #ff5c05;
}

.card-noticia-big__txt p {
  color: #6C6B80;
  font-weight: 400;
}

.card-noticia-big__txt .leer-mas {
  color: #ff5c05;
  font-size: .875rem;
}

.card-noticia-big__txt .leer-mas:hover {
  text-decoration: underline;
}

.card-noticia-big.noticia-destacada .card-noticia__txt h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

.card-noticia-big.sin-img .card-noticia__txt {
  background: #F5F4F4;
  padding: 2rem 1.5rem;
}

.card-concurso {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 768px) {
  .card-concurso {
    margin-bottom: 2rem;
  }
}

.banner-interior {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .banner-interior {
    align-items: flex-start;
  }
}

.banner-interior__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-interior .container {
  position: relative;
  z-index: 2;
}

.banner-interior h1 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .banner-interior h1 {
    font-size: 1.5rem;
    padding-top: 2rem;
  }
}

.banner-interior h1 span {
  font-weight: 500;
  color: #ff5c05;
}

.quienes-somos {
  padding: 3rem 0;
}

@media only screen and (max-width: 768px) {
  .quienes-somos {
    padding: 2rem 0;
  }
}

.quienes-somos p {
  font-size: 1.5rem;
  color: #121127;
  font-weight: 500;
  text-align: center;
  width: 710px;
  max-width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .quienes-somos p {
    font-size: 1.125rem;
  }
}

.quienes-somos p span {
  color: #ff5c05;
}

.video-quienes {
  background: #121127;
  padding: 10rem 0 3.75rem;
  margin-top: 10rem;
}

@media only screen and (max-width: 550px) {
  .video-quienes {
    padding-top: 14rem;
    margin-top: 6rem;
  }
}

.video-quienes .w-video2 {
  margin-top: -20rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.video-quienes .w-video2 .ic-play {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4d6375;
  border-radius: 50%;
  padding-left: .2rem;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.video-quienes .w-video2 img {
  width: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 550px) {
  .video-quienes .w-video2 {
    margin-top: -18rem;
  }
}

.video-quienes p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  width: 790px;
  max-width: 100%;
  margin: 0 auto 1.4rem;
  line-height: 1.3;
}

@media only screen and (max-width: 768px) {
  .video-quienes p {
    font-size: 1.125rem;
    font-weight: 400;
  }
}

.cards-quienes {
  padding-top: 3rem;
}

.cards-quienes .container {
  padding: 0 3rem;
}

@media only screen and (max-width: 768px) {
  .cards-quienes .container {
    padding: 0 20px;
  }
}

.card-quienes {
  border-radius: 6px;
  border: 1px solid #DFDFDF;
  text-align: center;
  padding: 1.7rem 4rem;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .card-quienes {
    padding: 1.7rem;
    margin-bottom: 1rem;
    height: auto;
  }
}

.card-quienes__img {
  margin-bottom: 2rem;
}

.card-quienes__txt h5 {
  color: #ff5c05;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.card-quienes__txt h3 {
  margin: 1rem 0;
  color: #121127;
  font-size: 1.5rem;
  font-weight: 700;
}

.card-quienes__txt p {
  color: #6C6B80;
}

.texto-memorias p {
  font-size: 1.5rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .texto-memorias p {
    font-size: 1.2rem;
  }
}

.nav-tabs {
  border: none;
  margin-bottom: 3rem;
}

.nav-tabs .nav-item {
  margin-right: 1rem;
}

.nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.nav-tabs .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid rgba(89, 91, 90, 0.25);
  border-radius: 50px;
  padding: .4rem 1rem;
  color: #121127;
}

.nav-tabs .nav-item .nav-link:hover {
  background: #F5F4F4;
}

.nav-tabs .nav-item .nav-link.active {
  background: #ff5c05;
  color: #fff;
}

.item-descarga {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #a5a4bd;
  padding: 1.3rem 0;
}

@media only screen and (max-width: 550px) {
  .item-descarga {
    flex-direction: column;
  }
}

.item-descarga h5 {
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
}

@media only screen and (max-width: 550px) {
  .item-descarga h5 {
    margin-bottom: .6rem;
  }
}

.item-descarga h5 i {
  color: #ff5c05;
  margin-right: .3rem;
}

.item-descarga a {
  color: #ff5c05;
  font-size: .875rem;
}

.item-descarga a i {
  margin-left: .2rem;
}

.item-descarga a:hover {
  text-decoration: underline;
}

.info-general {
  background: #121127;
  padding: 2rem 0;
  margin-top: -2rem;
}

.info-general .card-info {
  border-bottom: 1px solid #fff;
  height: calc(100% - 2rem);
  margin-bottom: 2rem;
}

.info-general .card-info__ic {
  color: #ff5c05;
  margin-bottom: .5rem;
}

.info-general .card-info h4 {
  margin: 0 0 .5rem;
  font-size: .75rem;
  color: #ff5c05;
  font-weight: 600;
}

.info-general .card-info p {
  color: #fff;
  font-size: 1rem;
}

.canal-denuncias .bloque-denuncia {
  margin-bottom: 2.2rem;
}

.canal-denuncias .bloque-denuncia .input-file {
  max-width: 100%;
}

@media only screen and (max-width: 991px) {
  .canal-denuncias .bloque-denuncia .input-file {
    margin-bottom: 2rem;
  }
}

.canal-denuncias p {
  color: #6C6B80;
}

.card-importante {
  display: flex;
  align-items: flex-start;
}

.card-importante__ic {
  background: #F5F4F4;
  border-radius: 6px;
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5c05;
}

.card-importante__txt {
  padding-left: .75rem;
}

.card-importante__txt p {
  color: #6C6B80;
}

.recaptcha {
  text-align: right;
  color: #6C6B80;
  font-size: .75rem;
}

.recaptcha a {
  color: #6C6B80;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .recaptcha {
    text-align: center;
    margin-top: 2rem;
  }
}

.noticia-detalle__header {
  background: #F5F4F4;
  padding: 2rem 0;
}

.noticia-detalle__header .container {
  max-width: 1160px;
}

.noticia-detalle__header .container .row {
  align-items: center;
}

.noticia-detalle__header img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .noticia-detalle__header img {
    margin-bottom: 1rem;
  }
}

.noticia-detalle__header .fecha {
  font-size: .75rem;
  color: #6C6B80;
  font-weight: 500;
}

.noticia-detalle__header h1 {
  margin: 0;
  color: #121127;
  font-size: 2rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .noticia-detalle__header h1 {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 991px) {
  .meta-noticia {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
}

.tiempo-lectura p {
  font-size: .75rem;
  color: #6C6B80;
}

.tiempo-lectura p b {
  font-weight: 500;
}

@media only screen and (max-width: 991px) {
  .tiempo-lectura {
    margin-right: 1.5rem;
  }
}

.compartir p {
  font-size: .75rem;
  color: #6C6B80;
  font-weight: 500;
  margin-bottom: .2rem;
}

.compartir a {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #ff5c05;
  font-size: 1.3rem;
  display: inline-block;
  margin-right: .3rem;
}

.compartir a:hover {
  color: #4d6375;
}

.detalle-contenido p span {
  color: #ff5c05;
}

.detalle-contenido .lista-num {
  padding-left: 0;
  list-style: none;
}

.detalle-contenido .lista-num li {
  margin-bottom: 1rem;
}

.detalle-contenido .lista-num li span {
  color: #ff5c05;
  font-weight: 700;
}

.seccion-login {
  position: relative;
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seccion-login .img-login {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seccion-login .form-login {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 573px;
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  text-align: center;
  border-top: 4px solid #4d6375;
}

.seccion-login .form-login:after {
  content: "";
  height: 4px;
  width: 20%;
  background: #EFBA00;
  position: absolute;
  top: -4px;
  right: 0;
}

.seccion-login .form-login h1 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  font-weight: 700;
}

.seccion-login .form-login p {
  color: #121127;
  font-weight: 400;
}

.seccion-login .form-login p a {
  color: #ff5c05;
  text-decoration: none;
}

.seccion-login .form-login .form-group {
  width: 377px;
  max-width: 100%;
  margin: 0 auto 1.2rem;
  position: relative;
}

.seccion-login .form-login .form-group label {
  color: #344054;
  font-weight: 400;
}

.seccion-login .form-login .form-group .olvide {
  color: #ff5c05;
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 400;
  font-size: .875rem;
}

.seccion-login .form-login .form-group .olvide:hover {
  color: #4d6375;
}

.seccion-login .form-login .form-submit .btn {
  width: 180px;
}

.seccion-login .revisa-doc {
  background: #fefbe4;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1rem;
}

.seccion-login .revisa-doc p {
  color: #6C6B80;
  margin-bottom: 0;
  font-weight: 400;
}

.texto-reembolso {
  color: #6C6B80;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.pasos-reembolso .item-paso {
  display: flex;
  margin-bottom: 2.5rem;
}

.pasos-reembolso .item-paso__num {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5c05;
  font-size: 1.75rem;
  font-weight: bold;
  background: #F5F4F4;
}

.pasos-reembolso .item-paso__txt {
  padding-left: 1rem;
}

.pasos-reembolso .item-paso__txt h4 {
  font-size: 1.5rem;
  margin: 0;
  color: #121127;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .pasos-reembolso .item-paso__txt h4 {
    font-size: 1.2rem;
  }
}

.ademas-reembolso .w-ademas {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .ademas-reembolso .w-ademas {
    flex-direction: column;
  }
}

.ademas-reembolso .w-ademas__txt {
  background: #ff5c05;
  padding: 2rem 2.6rem 4rem;
  width: calc(50% + 3rem);
  min-width: calc(50% + 3rem);
  margin-right: -3rem;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .ademas-reembolso .w-ademas__txt {
    width: 100%;
    margin: 0;
    padding: 2rem 1.6rem 2rem;
  }
}

.ademas-reembolso .w-ademas__txt.v2 {
  padding: 1.8rem 1.68rem 2rem 2.1rem;
}

@media only screen and (max-width: 768px) {
  .ademas-reembolso .w-ademas__txt.v2 {
    padding: 1.8rem 1.4rem 2rem 1.4rem;
  }
}

.ademas-reembolso .w-ademas__txt h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

@media only screen and (max-width: 550px) {
  .ademas-reembolso .w-ademas__txt h3 {
    font-size: 1.3rem;
  }
}

.ademas-reembolso .w-ademas__txt .cifras {
  display: flex;
}

@media only screen and (max-width: 768px) {
  .ademas-reembolso .w-ademas__txt .cifras {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

.ademas-reembolso .w-ademas__txt .cifras .item-cifra {
  text-align: center;
  width: auto;
  margin: 0 .5rem;
}

.ademas-reembolso .w-ademas__txt .cifras .item-cifra span {
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
}

.ademas-reembolso .w-ademas__txt .cifras .item-cifra p {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .ademas-reembolso .w-ademas__txt .cifras .item-cifra {
    text-align: left;
    margin: 0 0 1rem;
  }
  .ademas-reembolso .w-ademas__txt .cifras .item-cifra span {
    font-size: 1.5rem;
  }
}

.ademas-reembolso .w-ademas__txt p {
  color: #fff;
}

.ademas-reembolso .w-ademas__txt ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #fff;
}

.ademas-reembolso .w-ademas__txt ul li {
  color: #fff;
  font-weight: 400;
  position: relative;
  padding-left: .8rem;
}

.ademas-reembolso .w-ademas__txt ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
}

.ademas-reembolso .w-ademas__img {
  width: 50%;
  min-width: 50%;
}

.ademas-reembolso .w-ademas__img img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .ademas-reembolso .w-ademas__img {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}

.seguro-detalle {
  margin-top: -2.5rem;
  border-radius: 40px 40px 0 0;
  position: relative;
  background: #fff;
}

.seguro-detalle .container {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .seguro-detalle .container {
    flex-direction: column;
  }
}

@media only screen and (max-width: 991px) {
  .seguro-detalle .texto-desktop {
    display: none;
  }
}

.seguro-detalle .texto-mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .seguro-detalle .texto-mobile {
    display: block;
  }
}

.seguro-detalle__txt {
  width: calc(100% - 360px);
  min-width: calc(100% - 360px);
}

@media only screen and (max-width: 991px) {
  .seguro-detalle__txt {
    width: 100%;
    min-width: 100%;
  }
}

.seguro-detalle__txt h4 {
  margin: 0;
  font-size: 1rem;
  color: #009999;
  font-weight: 400;
}

.seguro-detalle__txt h4 img {
  margin-left: .4rem;
}

.seguro-detalle__txt h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: .2rem 0 2rem;
}

@media only screen and (max-width: 768px) {
  .seguro-detalle__txt h1 {
    font-size: 1.3rem;
  }
}

.seguro-detalle__txt p {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: .6rem;
}

.seguro-detalle__txt ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.seguro-detalle__txt ul li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 300;
  color: #6C6B80;
  margin-bottom: .6rem;
}

.seguro-detalle__txt ul li:before {
  content: "";
  width: 13px;
  height: 13px;
  background-image: url("../images/list-check.svg");
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
}

.seguro-detalle__info {
  width: 360px;
  min-width: 360px;
  border-left: 1px solid #DFDFDF;
  padding: 4rem 40px 0 80px;
}

@media only screen and (max-width: 991px) {
  .seguro-detalle__info {
    border: none;
    padding: 4rem 2rem 2rem;
    min-width: 0;
    max-width: 100%;
  }
}

.seguro-detalle__info .caja-precio {
  font-size: 1rem;
  color: #6C6B80;
  text-align: center;
  position: relative;
  background: #F5F4F4;
  padding: 1rem;
}

.seguro-detalle__info .caja-precio span {
  font-size: 2.6rem;
  color: #4d6375;
  display: block;
  line-height: 1;
  font-weight: 500;
}

.seguro-detalle__info .caja-precio img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-1.5rem, -3.6rem);
}

.seguro-detalle__info .btn-contrata {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.seguro-detalle__info .btn-contrata i {
  margin-right: .4rem;
}

.seguro-detalle__info .btn-outline-primary {
  width: 100%;
  margin-bottom: 1rem;
}

.seguro-detalle__info .btn-outline-primary:hover {
  background: #F5F4F4;
  color: #ff5c05;
}

.seguro-detalle__info .btn-outline-primary img {
  margin-right: .4rem;
}

.w-beneficios {
  background: #F5F4F4;
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
}

.w-beneficios .card {
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 991px) {
  .w-beneficios .card {
    border: none;
    background: #F5F4F4;
    padding: 0;
  }
}

.w-beneficios .card .titulo2 {
  margin-bottom: 1rem;
}

.w-beneficios .cards-beneficios {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
  .w-beneficios .cards-beneficios {
    border: none;
  }
}

.w-beneficios .cards-beneficios .card-beneficio {
  display: flex;
  flex-grow: 1;
  border: 1px solid #DFDFDF;
  border-radius: 6px;
  padding: .7rem 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
  margin-right: .7rem;
  background: #fff;
}

.w-beneficios .cards-beneficios .card-beneficio:nth-child(4) {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .w-beneficios .cards-beneficios .card-beneficio:nth-child(4) {
    margin-bottom: 1rem;
  }
}

.w-beneficios .cards-beneficios .card-beneficio:nth-child(5) {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .w-beneficios .cards-beneficios .card-beneficio:nth-child(5) {
    margin-bottom: 1rem;
  }
}

.w-beneficios .cards-beneficios .card-beneficio:nth-child(6) {
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .w-beneficios .cards-beneficios .card-beneficio:nth-child(6) {
    margin-bottom: 1rem;
  }
}

.w-beneficios .cards-beneficios .card-beneficio__izq {
  display: flex;
}

.w-beneficios .cards-beneficios .card-beneficio__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5c05;
}

.w-beneficios .cards-beneficios .card-beneficio__txt {
  padding-left: 1.3rem;
}

.w-beneficios .cards-beneficios .card-beneficio__txt p {
  font-size: .75rem;
  color: #6C6B80;
  font-weight: 300;
  margin-bottom: 0;
}

.w-beneficios .cards-beneficios .card-beneficio__txt h5 {
  color: #121127;
  font-weight: 300;
  font-size: 1rem;
  margin: 0;
}

.w-beneficios .cards-beneficios .card-beneficio__der {
  text-align: center;
}

.w-beneficios .cards-beneficios .card-beneficio__der p {
  font-size: .75rem;
  color: #6C6B80;
  font-weight: 300;
  margin-bottom: 0;
}

.w-beneficios .cards-beneficios .card-beneficio__der span {
  font-size: 1.5rem;
  color: #ff5c05;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}

.card-cobertura {
  border: 1px solid #DFDFDF;
  border-radius: 6px;
  padding: 1rem;
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .card-cobertura {
    margin-bottom: 1rem;
  }
}

.card-cobertura h4 {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 0 2rem 0;
}

.card-cobertura h4 img {
  width: 60px;
  margin-right: .4rem;
}

.card-cobertura .tabla-cobertura tr th {
  font-weight: 300;
  font-size: .75rem;
  border-bottom: 1px dashed #DFDFDF;
  padding: 0 0 .5rem 0;
}

.card-cobertura .tabla-cobertura tr td {
  font-size: 1rem;
  font-weight: 300;
  color: #6C6B80;
  border-bottom: 1px dashed #DFDFDF;
  padding: .5rem 0;
}

.card-cobertura .tabla-cobertura tr td span {
  color: #ff5c05;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.accordion .accordion-item {
  background: #F5F4F4;
  border-radius: 6px;
  border: none;
  margin-bottom: .8rem;
}

.accordion .accordion-button {
  background: #F5F4F4;
  color: #121127;
  font-weight: 400;
  border-radius: 6px;
  border: none;
}

.accordion .accordion-button:not(.collapsed) {
  background: #F5F4F4;
  box-shadow: none;
}

.accordion .accordion-button:after {
  background-image: url("../images/ic-ac.svg");
  width: 1rem;
  height: 1rem;
  background-size: 100%;
}

.accordion .accordion-body {
  color: #6C6B80;
}

.otros-planes {
  background: #009999;
  border-radius: 66px 66px 0 0;
  padding-top: 2.5rem;
}

.otros-planes .titulo {
  color: #fff;
  margin-bottom: 2rem;
}

.retracto {
  background: #121127;
  padding: 1.8rem 0;
  margin-bottom: -2rem;
}

.retracto h4 {
  font-size: 1.125rem;
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 700;
}

.retracto p {
  color: #fff;
  font-weight: 500;
}

.reembolso-hero {
  padding: 3.8rem 0;
}

.reembolso-hero .row {
  align-items: center;
}

.reembolso-hero__txt {
  padding-right: 5rem;
}

@media only screen and (max-width: 991px) {
  .reembolso-hero__txt {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

.reembolso-hero h1 {
  font-size: 3.65rem;
  margin: 0 0 .6rem;
  color: #6C6B80;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .reembolso-hero h1 {
    font-size: 1.5rem;
  }
}

.reembolso-hero h1 span {
  font-weight: 400;
  color: #ff5c05;
}

.reembolso-hero p {
  color: #6C6B80;
  font-weight: 300;
}

.reembolso-hero .cuadro-reembolso {
  background: #F5F4F4;
  border-radius: 6px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .reembolso-hero .cuadro-reembolso {
    flex-direction: column;
    align-items: flex-start;
  }
}

.reembolso-hero .cuadro-reembolso__txt h5 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.reembolso-hero .cuadro-reembolso__txt p {
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
  color: #121127;
}

@media only screen and (max-width: 768px) {
  .reembolso-hero .cuadro-reembolso__txt p {
    margin-bottom: .6rem;
  }
}

.reembolso-hero__img {
  text-align: right;
}

@media only screen and (max-width: 991px) {
  .reembolso-hero__img {
    text-align: center;
  }
}

.reembolso-hero__img img {
  max-width: 100%;
  border: 8px solid #ff5c05;
  border-radius: 100%;
  vertical-align: bottom;
}

.menu-tabs {
  border: 1px solid #D1CACA;
  border-radius: 50px;
  display: inline-flex;
  margin: 0 auto 2.25rem;
  padding: 6px;
}

.menu-tabs a {
  color: #121127;
  font-weight: 700;
  border-radius: 50px;
  padding: .9rem 1.2rem;
  display: block;
}

.menu-tabs a.activo {
  background: #ff5c05;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .menu-tabs a {
    font-size: .875rem;
    padding: .9rem 1rem;
  }
}

.box-reembolso {
  display: flex;
  background: #F5F4F4;
  border-radius: 6px;
  padding: 1.8rem 2.5rem;
}

@media only screen and (max-width: 768px) {
  .box-reembolso {
    padding: 1rem;
  }
}

.box-reembolso__txt h3 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

@media only screen and (max-width: 991px) {
  .box-reembolso__txt h3 {
    font-size: 1.3rem;
    font-weight: 600;
  }
}

.box-reembolso__txt p {
  color: #6C6B80;
  font-size: 1rem;
}

.box-reembolso__txt ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.box-reembolso__txt ul li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 400;
  color: #6C6B80;
  margin-bottom: .6rem;
}

.box-reembolso__txt ul li:before {
  content: "";
  width: 13px;
  height: 13px;
  background-image: url("../images/list-check.svg");
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
}

.box-reembolso__img {
  text-align: center;
}

.box-reembolso__img img {
  max-width: 100%;
}

@media only screen and (max-width: 991px) {
  .box-reembolso__img {
    margin-bottom: 1.5rem;
  }
}

.card-formulario {
  background: #F5F4F4;
}

.card-formulario .row {
  align-items: center;
}

.card-formulario img {
  width: 100%;
  vertical-align: bottom;
}

.card-formulario__txt {
  padding: 1.5rem 2.5rem 1.5rem .5rem;
}

@media only screen and (max-width: 768px) {
  .card-formulario__txt {
    padding: 1.5rem 2rem;
  }
}

.card-formulario__txt h4 {
  margin: 0 0 .8rem;
  font-size: 1.125rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .card-formulario__txt h4 {
    text-align: center;
  }
}

.card-formulario__txt .botones {
  display: flex;
  justify-content: space-between;
}

.card-formulario__txt .botones .btn {
  border-radius: 5px;
  background: rgba(108, 107, 128, 0.1);
  font-weight: 600;
  color: #121127;
  width: 46%;
  height: auto;
}

.card-formulario__txt .botones .btn:hover {
  color: #4d6375;
}

@media only screen and (max-width: 550px) {
  .card-formulario__txt .botones {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .card-formulario__txt .botones .btn {
    margin-bottom: 1rem;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .card-formulario {
    margin: 0 -20px;
    overflow: hidden;
  }
}

.banner-seguro-redsalud {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.banner-seguro-redsalud__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .banner-seguro-redsalud__bg {
    height: 360px;
    object-position: left;
  }
}

.banner-seguro-redsalud .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .banner-seguro-redsalud .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.banner-seguro-redsalud h1 {
  font-size: 3.65rem;
  margin: 0 0 .4rem;
  color: #fff;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .banner-seguro-redsalud h1 {
    font-size: 3rem;
    padding-top: 1rem;
  }
}

.banner-seguro-redsalud h1 span {
  color: #9C0;
  font-weight: 800;
}

.banner-seguro-redsalud p {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0;
  max-width: 240px;
  line-height: 1.2;
}

.banner-seguro-redsalud p span {
  color: #EFBA00;
}

@media only screen and (max-width: 768px) {
  .banner-seguro-redsalud p {
    margin-bottom: 3rem;
  }
}

.banner-seguro-redsalud__form {
  background: #fff;
  border-radius: 6px;
  padding: 1.4rem;
  width: 370px;
}

@media only screen and (max-width: 768px) {
  .banner-seguro-redsalud__form {
    max-width: 100%;
    box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
  }
}

.banner-seguro-redsalud__form h3 {
  text-align: center;
  color: #ff5c05;
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.banner-seguro-redsalud__form .label {
  margin-bottom: .3rem;
  display: block;
}

.banner-seguro-redsalud__form .input {
  height: 2.5rem;
}

.banner-seguro-redsalud__form .btn-submit {
  width: 100%;
  border-radius: 6px;
  color: #fff;
  font-size: .875rem;
  padding: 1rem .6rem;
  border: none;
  background: #4d6375;
  background: linear-gradient(90deg, #4d6375 0%, #ff5c05 100%);
}

.seguros .titulo {
  font-weight: 500;
  margin-bottom: 2rem;
}

.condiciones {
  background: #F5F4F4;
  padding: 2rem 0;
  margin-bottom: -2rem;
}

.condiciones p {
  font-size: .75rem;
  color: #6C6B80;
}

.concurso-detalle {
  padding: 4rem 0 2rem;
}

.concurso-detalle .fecha {
  font-size: 1rem;
  font-weight: 400;
  color: #6C6B80;
  margin: 0 0 .2rem;
}

.concurso-detalle h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #121127;
  margin: .2rem 0 .5rem;
}

@media only screen and (max-width: 768px) {
  .concurso-detalle h1 {
    font-size: 1.5rem;
  }
}

.concurso-detalle .bajada {
  font-size: 1rem;
  color: #6C6B80;
  font-weight: 400;
}

.concurso-detalle figure {
  margin: 1rem 0;
}

.concurso-detalle figure img {
  width: 100%;
}

.concurso-detalle .tabla-detalle {
  width: 100%;
  margin: 2rem 0 3rem;
}

.concurso-detalle .tabla-detalle tr th {
  color: #121127;
  font-weight: 400;
  font-size: 1rem;
  border-bottom: 1px solid #D9D9D9;
  padding: .8rem 0;
}

.concurso-detalle .tabla-detalle tr td {
  color: #6C6B80;
  padding: .8rem 0;
  font-size: 1rem;
  border-bottom: 1px solid #D9D9D9;
}

@media only screen and (max-width: 768px) {
  .concurso-detalle .tabla-detalle {
    display: none;
  }
}

.concurso-detalle .tabla-detalle.tabla-mobile {
  display: none;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .concurso-detalle .tabla-detalle.tabla-mobile {
    display: block;
  }
}

.concurso-detalle__txt p {
  color: #6C6B80;
}

.concurso-detalle__txt p a {
  color: #ff5c05;
  text-decoration: none;
}

.card-canal {
  box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 2.6rem 4.5rem;
  height: 100%;
  position: relative;
}

.card-canal__ic {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F4F4;
  color: #ff5c05;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.card-canal h4 {
  font-size: 1.125rem;
  margin: 0 0 1rem;
  color: #121127;
  font-weight: 700;
}

.card-canal p {
  color: #6C6B80;
  font-size: 1rem;
  margin-bottom: .8rem;
}

.card-canal p span {
  font-size: .75rem;
  display: block;
}

.card-canal .btn {
  position: absolute;
  bottom: 1.5rem;
  font-size: .875rem;
}

.formulario-contacto {
  background: #F5F4F4;
  border-bottom: 1px solid #dfdfdf;
}

.formulario-contacto .textarea {
  height: 94px;
}

.formulario-contacto .form-check {
  display: flex;
  align-items: flex-start;
  padding-top: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .formulario-contacto .form-check {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
  }
}

.formulario-contacto .form-check input {
  margin-right: .4rem;
}

.formulario-contacto .form-check label {
  font-size: .75rem;
  font-weight: 500;
}

.formulario-contacto .btn {
  font-size: .875rem;
  font-weight: 400;
}

.ingresar {
  padding: 3rem 0 14rem;
  text-align: center;
  background: #F5F4F4;
  margin-bottom: -2rem;
}

.ingresar .titulo3 {
  margin-bottom: 2.2rem;
}

.ingresar .ingresos {
  width: 730px;
  max-width: 100%;
  margin: 0 auto;
}

.ingresar .card-ingreso {
  padding: 2.5rem 3rem;
  background: #fff;
  border-radius: 6px;
  display: block;
  transition: all .3s ease;
}

.ingresar .card-ingreso:hover {
  box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.1);
}

.ingresar .card-ingreso__ic {
  margin-bottom: 2.5rem;
}

.ingresar .card-ingreso__txt p {
  font-size: .75rem;
  color: #ff5c05;
  margin: 0;
}

.ingresar .card-ingreso__txt h4 {
  font-size: 1rem;
  color: #121127;
  font-weight: 400;
  margin: 0;
}

.cuadro-naranjo {
  background: #ff5c05;
  padding: 1.5rem 10rem 1.5rem 5rem;
}

.cuadro-naranjo h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.cuadro-naranjo p {
  color: #fff;
}

.cuadro-naranjo ul {
  color: #fff;
  list-style-position: inside;
}

@media only screen and (max-width: 768px) {
  .cuadro-naranjo {
    padding: 1.5rem 1rem;
  }
  .cuadro-naranjo h2 {
    font-size: 1.3rem;
  }
  .cuadro-naranjo ul {
    padding-left: 0;
  }
}

.box-conoce-canales {
  background: #F5F4F4;
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media only screen and (max-width: 768px) {
  .box-conoce-canales {
    margin-bottom: 3rem;
    height: auto;
    padding: 3rem 1.5rem;
  }
}

.box-conoce-canales h4 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .box-conoce-canales h4 {
    font-size: 1.125rem;
    margin-bottom: 5rem;
  }
}

.box-conoce-canales p {
  color: #6C6B80;
}

.item-canal {
  display: flex;
  margin-bottom: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .item-canal {
    margin-bottom: 1.4rem;
  }
}

.item-canal:last-child {
  margin-bottom: 0;
}

.item-canal__ic {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background: #f5f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #ff5c05;
}

.item-canal__txt {
  padding-left: 1rem;
}

.item-canal__txt h4 {
  margin: 0 0 .2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .item-canal__txt h4 {
    font-size: 1.125rem;
  }
}

.item-canal__txt p {
  color: #6C6B80;
}

@media only screen and (max-width: 991px) {
  .banner-busqueda {
    height: auto;
    padding: 2rem 0;
  }
}

.banner-busqueda .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .banner-busqueda .container {
    flex-direction: column;
  }
}

.banner-busqueda h1 {
  font-size: 2rem;
  line-height: 1.1;
}

@media only screen and (max-width: 991px) {
  .banner-busqueda h1 {
    font-size: 1.5rem;
  }
}

.banner-busqueda .num-busqueda {
  display: block;
  font-size: 1rem;
  color: #6C6B80;
  margin-top: .2rem;
}

@media only screen and (max-width: 991px) {
  .banner-busqueda .num-busqueda {
    margin-bottom: 2rem;
  }
}

.banner-busqueda .input-busqueda {
  width: 450px;
  max-width: 100%;
  position: relative;
}

.banner-busqueda .input-busqueda label {
  font-weight: 400;
  font-size: 1rem;
  display: block;
  margin-bottom: .2rem;
}

.banner-busqueda .input-busqueda input {
  width: 100%;
  background: #fff;
  padding: .5rem .8rem;
  border-radius: 6px;
  height: 51px;
  border: none;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1);
}

.banner-busqueda .input-busqueda .btn-busqueda {
  position: absolute;
  bottom: 1rem;
  right: .5rem;
  border: none;
  background: transparent;
  opacity: .8;
}

.card-busqueda {
  display: flex;
  margin-bottom: 2.3rem;
}

.card-busqueda__img {
  width: 180px;
  min-width: 180px;
}

.card-busqueda__img img {
  width: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 768px) {
  .card-busqueda__img {
    width: 84px;
    min-width: 84px;
  }
}

.card-busqueda__txt {
  padding-left: 1rem;
}

.card-busqueda__txt h4 {
  margin: 0 0 .6rem;
  color: #121127;
  font-size: 1.125rem;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .card-busqueda__txt h4 {
    font-size: 1rem;
  }
}

.card-busqueda__txt h4 a {
  color: #121127;
}

.card-busqueda__txt p {
  color: #6C6B80;
  margin-bottom: 0;
}

.res-busqueda {
  padding-top: 5rem;
}

@media only screen and (max-width: 991px) {
  .res-busqueda {
    padding-top: 2rem;
  }
}

@media only screen and (max-width: 991px) {
  .mas-buscados {
    padding-top: 2rem;
  }
}

.mas-buscados h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.mas-buscados h3 span {
  font-weight: 400;
  color: #ff5c05;
}

.mas-buscados a {
  font-weight: 300;
  display: block;
  color: #121127;
  border-bottom: 1px solid #dedede;
  padding: .8rem 0;
}

.w-video {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 1rem;
  max-width: 670px;
}

.w-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-seguro {
  transform: translateY(-100%);
  top: 0px;
  z-index: 99;
  background: #FFF;
  box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  position: fixed;
  left: 0;
  width: 100%;
  transition: all .3s ease;
}

.header-seguro.fixed {
  transform: translateY(0);
}

@media only screen and (max-width: 991px) {
  .header-seguro {
    display: none;
  }
}

.header-seguro .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
}

.header-seguro .header-izq {
  display: flex;
  align-items: center;
}

.header-seguro .header-izq .btn-menu {
  font-size: 1.6rem;
  transition: all .3s ease;
}

.header-seguro .header-izq .btn-menu:hover {
  color: #ff5c05;
}

@media only screen and (max-width: 768px) {
  .header-seguro .header-izq .btn-menu {
    font-size: 1.2rem;
  }
}

.header-seguro .header-izq .logo {
  display: block;
  width: 10.9rem;
  margin-left: 1.5rem;
}

.header-seguro .header-izq .logo img {
  width: 100%;
  vertical-align: bottom;
}

@media only screen and (max-width: 768px) {
  .header-seguro .header-izq .logo {
    width: 74px;
    margin-left: .5rem;
    margin-top: -6px;
  }
}

.header-seguro .header-izq .nombre-seguro {
  border-left: 1px solid #DFDFDF;
  padding-left: 2.2rem;
  margin-left: 1.5rem;
}

.header-seguro .header-izq .nombre-seguro h4 {
  font-size: .7rem;
  color: #009999;
  font-weight: 400;
  margin: 0;
}

.header-seguro .header-izq .nombre-seguro h3 {
  color: #121127;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.header-seguro .header-der {
  display: flex;
  align-items: center;
}

.header-seguro .header-der .botones {
  display: flex;
}

.header-seguro .header-der .btn {
  margin-left: .5rem;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .header-seguro .header-der .btn {
    font-size: 11px;
    padding: .2rem;
    height: auto;
  }
}

.header-seguro .header-der .btn-primary {
  width: 165px;
}

.header-seguro .header-der .btn-primary i {
  margin-right: .4rem;
}

.header-seguro .header-der .btn-secondary {
  color: #ff5c05;
}

.header-seguro .header-der .btn-secondary:hover {
  color: #4d6375;
}

.header-seguro .header-der .btn-outline-primary:hover {
  background: #f5f4f4;
}

.barra-contacto:before {
  content: "";
  background: #4d6375;
  background: linear-gradient(90deg, #4d6375 0%, #ff5c05 100%);
  width: 100%;
  display: block;
  height: 7px;
  margin-top: 2rem;
}

.barra-contacto .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 20px;
}

@media only screen and (max-width: 768px) {
  .barra-contacto .container {
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
  }
}

.barra-contacto .fono-contacto {
  font-size: 1.125rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .barra-contacto .fono-contacto {
    margin-bottom: 1rem;
  }
}

.barra-contacto .fono-contacto img {
  width: 1.25rem;
}

.barra-contacto .fono-contacto a {
  color: #ff5c05;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .barra-contacto .fono-contacto a {
    display: block;
  }
}

.barra-contacto .redes a {
  color: #ff5c05;
  font-size: 1.4rem;
  display: inline-block;
  margin-left: .7rem;
}

.barra-contacto .redes a:hover {
  color: #4d6375;
}

footer {
  background: #121127;
  padding: 3.75rem 0;
}

footer h3 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
}

footer ul {
  padding-left: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: .8rem;
}

footer ul li a {
  color: #6C6B80;
  font-size: .75rem;
  display: block;
}

footer ul li a:hover {
  text-decoration: underline;
  color: #6C6B80;
  transform: scale(1.05);
}

footer .logos-footer {
  display: flex;
  align-items: center;
}

footer .logos-footer .separador {
  height: 1px;
  width: 100px;
  background: rgba(255, 255, 255, 0.25);
  flex-grow: 1;
  margin: 0 2rem;
}

@media only screen and (max-width: 768px) {
  footer .logos-footer .separador {
    display: none;
  }
}

footer .logos-footer .logos-cert img {
  margin-right: 1rem;
}

@media only screen and (max-width: 768px) {
  footer .logos-footer .logos-cert img {
    margin-top: 1rem;
  }
}

footer .logos-footer .logos-cert img:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  footer .logos-footer {
    flex-wrap: wrap;
    padding-top: 2rem;
  }
}
/*# sourceMappingURL=estilos.css.map */