@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');
@view-transition {
  navigation: auto
}

* {
  box-sizing: border-box;
}

p, h2, h3, h4 {
    orphans: 3;
    widows: 3;
    page-break-after: avoid;
    font-family: "Inter", sans-serif!important;
}

section.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto auto;
  min-height: 100dvh;
  background-image: url(../img/fondo.png), linear-gradient(to bottom, #45c8ff -30%, #1943ed 100%);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  grid-template-areas:
  "menu menu menu"
  "header header header"
  "content content content"
  "footer footer footer"
  "botonera botonera botonera"
}

.grid-container .topnav {
  grid-area: menu;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  overflow: hidden;
  justify-content: space-between;
  background-color: #45c8ff;
  align-items: center;
  border-bottom: 3px solid #fff;
  height: 85px;
}

.grid-container header{
  grid-area: header;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
}

.grid-container main {
  grid-area: content;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

.grid-container aside {
  grid-area: footer;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  background-color: #fff;
  padding-bottom: 70px;
}

.grid-container section.botonera_final {
  grid-area: botonera;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(to top, #45c7ff 35%, #c2e1e4 100%);
  padding: 3% 0;
}

/*------------------ Topnav: menu -----------------------------*/

.topnav p{
  color: #3e41a8;
  font-size: 12px;
  margin: 0;
}

.topnav a {
  float: left; 
  display: block;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.topnav a:hover {
  background-color: #fff;
  color: #3e41a8;
}
      
.topnav a.active {
  background-color: #fff;
  color: #3e41a8;
  font-weight: 600;
}
      
.topnav .icon {
  display: none;
}

.topnav a.top img{
  width: 100%;
/* position: relative;
  left: 200px;*/
}

.topnav a.top:hover img{
  background-color: none;
}

.topnav a.bienes {
  display: inline;
  float: initial;
  background-color: #3e41a8;
  color: #fff;
  margin: 0 20px;
  border-bottom: 3px solid #fff;
}

.topnav a.bienes:hover {
  background-color: #fff;
  color: #3e41a8;
}

.topnav .idioma a{
  font-size: 11px;
}

/*----------------------top nav----------------------------------*/

/*------------------ header: + botonera principal ------------------*/

.imagen-central img{
  width: 90%;
}

.destacado {
  background-color: #3e41a8;
  border-radius: 10px;
  margin: 110px auto;
  padding: 7%;
  box-shadow: 0 6px 20px 0px #00000078;
}

.destacado::before {
  content: url(../img/icono_carrito.svg);
  position: absolute;
  top: 80px;
  left: 45%;
  width: 55px;
}

.destacado h3 {
  color: #fff;
  font-weight: 500;
  font-size: 1.2em;
  text-align: center;
}

.destacado p {
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.logo_digital{
  margin-bottom: 45px;
}

.logo_digital img{
  width: 55%;
  position: relative;
  top: 30px;
}

/*------------------ main: Contenido: Información quiénes y qué deben declarar ------------------*/

.col-md-12.cajita .container.fondoazul {
  background-color: #507ee0;
  padding: 2%;
  border-bottom: 3px solid #3e41a8;
  margin: 35px auto;
}

.principales_modificaciones{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.principales_modificaciones .col-md-3 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.principales_modificaciones h2{
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
  position: relative;
}

.principales_modificaciones h2::after {
  content: url("../img/barrita_celeste1.svg");
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  width: 40px;
  /* Ajusta la posición y el tamaño según sea necesario */
}

.col-md-3.cajita img{
  height: 40px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

ul.lista_modificaciones li{
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8em;
  margin: 2% 0;
}

.col-md-6.img-compro {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.col-md-6.img-compro img.center-block{
/*width: clamp(1rem, 30%, 2rem);*/
  width: 75%!important;
  margin: 0;
}

/*------------ section seccion_compro_inscrito ------------------*/

ul.lista_compro {
  list-style: none; /* Remove default markers */
}

ul.lista_compro li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/bullet_azulito.svg');
  background-size: cover;
  position: absolute;
  left: 30px;
}

ul.lista_compro li {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8em;
  margin-bottom: 1.4em;
  line-height: 1.4em;
}

.contenido_compro {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  background-color: #f3f5f6;
  border-radius: 10px;
  padding: 20px;
  height: 25em;
  border-bottom: 5px solid #45c7ff;
}

.contenido_compro .col-md-4{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 15px
}

.col-md-4.img-titulo img.center-block{
  width: 90%;
}

.col-md-4.img-titulo img.img-responsive{  
  position: relative;
  top: 25px;
  left: -60px;
  z-index: 4;
  width: 330px;
}

/*
.col-md-3.img-titulo:after {
  content: url('../img/persona01.png');
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  width: 600px;
}
*/

.contenido_compro .col-md-8 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
}

.contenido_compro .col-md-8:after {
  content: url(../img/icono_check.svg);
  display: block;
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 90px;
  z-index: 4;
}

.item1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 10px;
  background-color: #fff;
}

.item1 img{
  width: 10%;
}

ul.lista_plataforma {
  list-style: none; /* Remove default markers */
}

ul.lista_plataforma li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/bullet-celeste.svg');
  background-size: cover;
  position: absolute;
  left: 100px;
}

ul.lista_plataforma li {
  color: #3e41a8;
  font-family: 'Inter', sans-serif;
  font-size: 0.8em;
  margin: 2% 0;
  line-height: 1.4em;
}

span.lista_chica{
/*list-style: none;*/
/*padding: 0; */
/* margin: 0; */
/* margin: 10px auto; */
  padding: .7rem 2em;
  font-size: 1em;
  line-height: 3em;
  font-family: 'Inter', sans-serif;
  border-left: 3px solid #3e41a8;
  background-color: #5fc9ff;
  color: #fff;
}

span.lista_chica2{
/*list-style: none;*/
/*padding: 0; */
/* margin: 0; */
/* margin: 10px auto; */
  padding: .7rem 2em;
  font-size: 1em;
  line-height: 3em;
  font-family: 'Inter', sans-serif;
  border-left: 3px solid #3e41a8;
  background-color: #5fc9ff;
  color: #fff;
  left: 157px;
  top: 197px;
}

/*
span.lista_chica::after{
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/bullet-celeste.svg');
  background-size: cover;
  position: absolute;
  left: 340px;
  top: 160px;
}

span.lista_chica2::after{
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/bullet-celeste.svg');
  background-size: cover;
  position: absolute;
  left: 390px;
  top: 197px;
}
*/

/*------------ section seccion_compro_inscrito ------------------*/

/*------------ section seccion_no_inscrito ------------------*/

.contenido_no_inscrita {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  background-color: #3c6fc7;
  border-radius: 10px;
  padding: 20px;
  margin: 30px auto;
  z-index: 3;
  position: relative;
  bottom: -65px;
}

.contenido_no_inscrita .col-md-3{
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 15px
}

.col-md-3.img-titulo2 h2{
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
  position: relative;
}

.col-md-3.img-titulo2 h2::after {
  content: url(../img/barra_diagonal.svg);
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  width: 40px;
  /* Ajusta la posición y el tamaño según sea necesario */
}

ul.lista_plataforma2 {
  list-style: none; /* Remove default markers */
}

ul.lista_plataforma2 li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/bullet-celeste.svg');
  background-size: cover;
  position: absolute;
  left: 30px;
}

ul.lista_plataforma2 li {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8em;
  margin: 2% 0;
  line-height: 1.4em;
}

ul.lista_chica2 {
  list-style: none; /* Remove default markers */
  padding: 0;
  margin: 0;
}

ul.lista_chica2 li{
  background-color: #658ee4;
  color: #fff;
  padding: .7rem 2em;
  font-size: 0.8em;
  line-height: 1em;
  font-family: 'Inter', sans-serif;
  margin: 10px auto;
  border-left: 3px solid #5fc9ff;
}

/*
ul.lista_chica2 li::after{
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/bullet_ticket.svg');
  background-size: cover;
  position: absolute;
  left: 30px;
}
*/

/*------------ section seccion_no_inscrito ------------------*/

/*--------------- quiénes deben inscribirse  -------------------*/

.col-md-12.inscribirse {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 40px; 
  padding: 2%;
  background-color: #3e62a8;
  width: fit-content;
  margin: 0 auto;
} 

.titulo1 h2{
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
  text-align: right;
  position: relative;
}

.deben_declarar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.titulo1 {
  width: 32%;
}

.titulo1 h2{
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
  text-align: right;
  position: relative;
}

.titulo1 h2::after {
  content: url("../img/barrita_celeste1.svg");
  display: block;
  position: absolute;
  top: 0;
  right: -45px;
  width: 40px;
  /* Ajusta la posición y el tamaño según sea necesario */
}

.titulo1 p{
  font-weight: 400;
  font-size: 0.8em;
  color: #fff;
  text-align: right;
}

.informacion1 {
  width: 60%;
  margin-left: 25px;
}

.informacion1 ul li{
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8em;
  margin: 2% 0;
}

p.titulo_ejemplo {
  color: #3e41a8;
  font-size: 0.9em;
}

p.texto_ejemplo {
  color: #3e41a8;
  font-size: 0.8em;
}

/*--------------- quiénes deben inscribirse  -------------------*/

/*------------- aside: section Vendo + formulario inscripción -------------- */

aside .container {
  margin: 25px 0;
}

section.titular {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 15px;
  margin: 65px auto;
}

section.titular img {
  width: clamp(25rem, 5vw, 10em);
}

.col-md-12.form {
  background-color: #f7f7f7;
/* display: flex; */
/* flex-wrap: nowrap; */
/* flex-direction: row; */
/* justify-content: center; */
/* width: fit-content; */
  margin-top: 25px;
  padding: 25px;
}

.titular_inscripcion {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  /* align-content: center; */
  margin: 0 auto;
  gap: 30px;
  padding: 20px;
  width: 980px;
}

.titular_inscripcion h2{
  font-weight: 700;
  font-size: 1.5em;
  color: #3e41a8;
  margin-bottom: 30px;
  position: relative;
}

.titular_inscripcion h2::after {
  content: url("../img/barra_diagonal.svg");
  display: block;
  position: absolute;
  top: -10px;
  left: 150px;
  width: 40px;
  /* Ajusta la posición y el tamaño según sea necesario */
}

.titular_texto p{
  font-family: 'Inter', sans-serif;
  font-size: .9em;
  font-weight: 700;
  border-bottom: 1px solid #292e45;
  color: #292e45;
}

.col-md-12.titular {
  display: flex;
  flex-flow: row nowrap;
  justify-items: center;
  gap: 20px;
}

.col-md-12.titular img{
  width: clamp(10rem, 10vw, 20em);
}

.col-md-12.formulario {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.imagen_formulario {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
}

.imagen_formulario img{
  width: 300px;
}

ol.lista {
  font-family: 'Inter', sans-serif;
  color: #152232;
  line-height: 2em;
  font-size: 1.5rem;
  list-style: bold red;
}

.titulo_servicios h2{
  font-size: 1.4em;
  color: #3e41a8;
  font-weight: 700;
  margin-bottom: 30px;
}

.titulo_servicios h2::after {
  content: url("../img/barra_diagonal.svg");
  display: block;
  position: absolute;
  top: 0;
  left: 350px;
  width: 40px;
  /* Ajusta la posición y el tamaño según sea necesario */
}

p.descripcion_inscripcion {
  font-weight: 700;
  font-size: .8em;
  border-bottom: 1px solid black;
  padding-bottom: .6rem;
}

/*-------------Fin lista------------*/

section.considere .col-md-12 .row .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.texto_considere {
  display: flex;
  flex-flow: column nowrap;
}

.texto_considere h2.titulo_considere{
  font-size: 1.6em;
  font-weight: 700;
  color: #3e41a8;
}

/*
.texto_considere h2.titulo_considere::after{
  content: url("../img/barra_diagonal.svg");
  display: block;
  position: absolute;
  top: 20px;
  left: 220px;
  width: 40px;
   Ajusta la posición y el tamaño según sea necesario
}*/

ul.lista_considere{
  margin-top: 25px;
  width: 85%;
}

ul.lista_considere li{
  color: black;
  font-family: 'Inter', sans-serif;
  font-size: .9em;
  margin: 15px auto;
}

.img_persona {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
}

.img_persona img.center-block{
  width: 350px;
}

/*------------- aside: section Vendo + formulario inscripción -------------- */

/*--------------- section: Porque deben inscribirse + que pasa si no se inscribena  -------------------*/

.col-md-12.porque_quepasa {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 40px; 
  padding: 40px;
  background-color: #507ee0;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  margin-top: -100px;
} 

.titulo3 h2{
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
  text-align: right;
  position: relative;
}

.deben_inscribirse{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.titulo3 {
  width: 32%;
}

.titulo3 h2{
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
  text-align: right;
  position: relative;
}

.titulo3 h2::after{
  content: url("../img/barra_diagonal.svg");
  display: block;
  position: absolute;
  top: 0px;
  left: 190px;
  width: 35px;
  /* Ajusta la posición y el tamaño según sea necesario */
}

.titulo3 p{
  font-weight: 400;
  font-size: 0.8em;
  color: #fff;
  text-align: right;
}

.informacion3 {
  width: 60%;
  margin-left: 25px;
}

.informacion3 ul li{
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8em;
  margin: 2% 0;
}

p.titulo_ejemplo {
  color: #3e41a8;
  font-size: 0.9em;
}

p.texto_ejemplo {
  color: #3e41a8;
  font-size: 0.8em;
}

/*--------------- quiénes deben inscribirse  -------------------*/

/*------------------ Footer: botonera final ------------------*/

.col-md-12.botonera_footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 50px
}

.botones_final {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 10px;
}

.titulo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 25px auto;
}

.titulo img{
  width: 5%;
}

.titulo h2{
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
  margin: 0;
  position: relative;
}

.titulo h2::after {
  content: url("../img/barra_diagonal.svg");
  display: block;
  position: absolute;
  top: -15px;
  right: -65px;
  width: 40px;
  /* Ajusta la posición y el tamaño según sea necesario */
}

.boton_footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  background-color: #507ee0;
  padding: 10px;
  align-items: center;
  border-radius: 10px;
  width: 200px;
  gap: 10px;
}

.boton_footer h4 {
  font-size: .9em;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.boton_footer img{
  width: 50px;
  height: auto;
}

.boton_footer a{
  color: #fff;
}

.boton_footer:hover{
  background-color: #524ba9;
  color: #fff;
}

.boton_footer a:hover{
  color: #fff;
  font-weight: 700;
}

.boton_footer h4:hover{
  color: #fff!important;
  font-weight: 700;
}

/*------------------ Footer: botonera final ------------------*/

/*-------------------Slider carrusel formulario -----------*/

.slider {
    width: 980px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.slides {
    width: 500%;
    height: 100%;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 1s;
}

.slide img {
    object-fit: contain;
    width: 100%;
    padding: 10px;
}

.navigation-manual {
    position: absolute;
    width: 980px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    bottom: 20px;
}

.manual-btn {
    border: 2px solid #3e62a8;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover {
    background: #1d4085;
}

#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -20%;
}

#radio3:checked ~ .first {
    margin-left: -40%;
}

#radio4:checked ~ .first {
    margin-left: -60%;
}

#radio5:checked ~ .first {
    margin-left: -80%;
}

.seccion_compro .col-md-12 {
  margin: 30px auto;
}

/*------------------ Responsive  ------------------*/

@media only screen and (max-width: 748px) {
        .slider {
            width: 90%;
            height: 50vh;
            overflow: hidden;
        }
}

@media only screen and (max-width: 540px) {
        .slider {
            width: 90%;
            height: 30vh;
            overflow: hidden;
        }
}

@media (width <= 1120px) {

.imagen-central img {
  position: relative;
  top: 50px;
  left: 0;
  width: 100%;
}

.destacado {
    margin: 90px auto 50px auto;
    padding: 10%;
}

.destacado::before {
    top: -30px;
    left: 47%;
}

.principales_modificaciones {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
}

.principales_modificaciones h2::after {
    right: -55px;
}

.col-md-6.img-compro {
    justify-content: center;
}

.col-md-4.img-titulo img.img-responsive {
    display: none;
}

.contenido_compro {
    flex-flow: column nowrap;
    height: auto;
    gap: 10px;
}

.contenido_compro .col-md-8:after {
    bottom: -40px;
    right: -30px;
    width: 40px;
}

.col-md-4.img-titulo img.center-block {
    width: 40%;
}

section.seccion_vendo {
  margin-top: -60px;
}

.contenido_no_inscrita .col-md-3 {
    flex-flow: column nowrap;
}

.col-md-3 img {
  display: none;
}

.contenido_no_inscrita {
    flex-flow: column nowrap;
    border-radius: 15px;
    padding: 20px;
    /* margin: 30px auto; */
}

.col-md-3.img-titulo2 h2::after {
    display: none;
}

section.titular {
    gap: 20px;
    margin: 55px auto 20px auto;
}

.principales_modificaciones h2 {
    margin: 0 0 30px 0;
}

.seccion_compro .col-md-12 {
  margin: 25px auto;
}

ul.lista_modificaciones li {
    font-size: 1em;
}

ul.lista_compro li {
    font-size: 1em;
}

ul.lista_plataforma li {
    font-size: 1em;
}

ul.lista_plataforma2 li {
    font-size: 1em;
}

.informacion1 ul li {
    font-size: 1em;
}

.titular_inscripcion {
    width: fit-content;
}

.slider {
    width: fit-content;
    height: 45vh;
}

.navigation-manual {
    width: 720px;
    margin: 0;
}

.informacion3 ul li {
    font-size: .9em;
}

.titulo3 h2::after {
    display: none;
}

.col-md-12.botonera_footer {
    margin-top: 0;
}

}

@media (width <= 980px){
.col-md-3 .img img{
  width: 8rem;
  margin-top: 10rem;
}

.slider {
  height: 30vh;
}

/*
.topnav a.top img{
  display: none;
}

.topnav #mytopNav{
  justify-content: space-evenly;
  display: flex;
}*/

.imagen-central img {
  display: none;
}

section.seccion_vendo {
  margin-top: initial;
}

}

@media (width <= 811px){
/*
.topnav a.top img {
  width: 100%;
  display: none;
}

.topnav a.bienes {
  margin: 0;
  padding: 1px 3px;
}

.grid-container .topnav {
  margin-top: 55px;
  padding: 2%;
}*/

.logo_digital img {
    width: 95%;
    position: relative;
    top: 90px;
}

.imagen-central img {
  position: relative;
  top: 120px;
  left: 60px;
  width: 90%;
}

.web-sii .navbar-toggle {
  margin-right: 5px;
  margin-top: 4px;
  font-size: 20px;
  margin-bottom: 0;
}

section.considere .col-md-12 .row .container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.texto_considere h2.titulo_considere::after {
    display: none;
}

}

@media (width <= 591px) {
/*
.topnav.responsive {
    position: relative;
}

.topnav.responsive .icon {
  position: absolute;
  right: 0;
  top: 0;
}

.topnav.responsive a {
  float: none;
  display: block;
  text-align: left;
}

.topnav a.icon {
  float: right;
  display: block; 
}*/

.imagen-central img {
  display: none!important;
}

.grid-container main {
  margin-top: 40px;
}

.slider {
  height: 27vh;
}

navigation-manual {
  width: 540px;
}

.botones_final {
    flex-wrap: wrap;
}

}

@media (width <= 540px) {
.slider {
        width: fit-content;
        height: 25vh;
    }

.navigation-manual {
        width: 480px;
        margin: 0;
    }

section.considere .col-md-12 .row .container {
    flex-direction: column;
}

}

@media (width <= 430px) {
/*
#myTopnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: end;
}

.topnav {
  margin: 0;
  display: flex;
  margin-top: 55px;
  padding: 2%;
  height: 90px;
}

.topnav a.top {
  padding: 0;
  display: none;
}

.imagen-central img {
  display: none;
}

.topnav a.bienes {
  display: inline;
  float: initial;
  background-color: #3e41a8;
  color: #fff;
  margin: 0;
  border-bottom: 3px solid #fff;
  font-weight: 800;
}

.topnav a {
  float:initial;
  display: initial;
  padding: 1%;
  font-family: 'Inter', sans-serif;
}

.idioma {
  margin: 1%;
}
*/

.grid-container header {
    margin-top: 55px;
}

.destacado {
    margin: 30px auto 0 auto;
    padding: 10%;
}

.logo_digital {
    margin-top: 0;
    margin-bottom: 40px;
}

.logo_digital img {
    width: initial;
    top: 25px;
}

.destacado::before {
    top: -30px;
    left: 44%;
}

.principales_modificaciones {
    flex-wrap: wrap;
    gap: 10px;
}

.principales_modificaciones h2::after {
    display: none;
}

.seccion_compro .col-md-12 {
    margin: 30px auto!important;
}

.col-md-6.img-compro {
    justify-content: center;
}

.col-md-6.img-compro img.center-block {
    width: 95% !important;
}

.contenido_compro {
    flex-flow: row wrap;
    padding: 20px;
}

.col-md-4.img-titulo img.img-responsive {
    display: none;
}

ul.lista_plataforma li::before {
    left: 30px;
}

span.lista_chica {
    padding: .5em;
    font-size: 1em;
    line-height: 3em;
}

span.lista_chica2 {
    padding: .5em;
    line-height: 3em;
    font-size: 1em;
}

.contenido_compro .col-md-8:after {
    bottom: -45px;
    right: -30px;
    width: 50px;
}

.item1 img {
    display: none;
}

.contenido_no_inscrita {
    flex-flow: row wrap;
    bottom: 0;
    gap: 10px;
}

.col-md-3.img-titulo2 h2::after {
    display: none;
}

section.titular {
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.deben_declarar {
    flex-wrap: wrap;
}

.titulo1 {
    width: 100%;
}

.titulo1 h2::after {
    display: none;
}

.informacion1 {
    width: 100%;
    margin: 0;
}

.titular_inscripcion {
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
    width: fit-content;
}

.titular_texto p {
    margin-bottom: 10px;
    padding-bottom: 20px;
}

.navigation-manual {
    width: 360px;
}

.titulo3 h2::after {
    display: none;
}

.col-md-12.porque_quepasa {
    gap: 40px;
    padding: 10px;
}

.col-md-7 h2.titulo_considere::after {
    display: none;
}

.deben_inscribirse {
    flex-wrap: wrap;
}

.titulo3 {
    width: 100%; 
}

.informacion3 {
    width: initial;
    margin-left: 0;
}

.titulo3 h2 {
    text-align: left;
}

.titulo3 p {
    text-align: left;
}

.col-md-12.botonera_footer {
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 0;
}

.titulo {
    justify-content: center;
}

.titulo h2::after {
    display: none;
}

.titulo img {
    width: 15%;
}
}

/*------------------ Responsive  ------------------*/

.web-sii footer {
  margin: 0;
}

.boton_footer h4 a:link {
    color: #e2eff7;
}

.titular_texto p a.plataformas {
  color: #3e41a8;
}

.mm-menu.mm-offcanvas{
    z-index: 5;
}