.tabs {
            left: 50%;
            transform: translateX(-50%);
            position: relative;
            background: white;
            padding: 0 50px 50px 50px;
            padding-bottom: 80px;
            width: 100%;
            border-radius: 5px;
        /*  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);*/
        /*  min-width: 240px; */
       }
        .tabs input[name="tab-control"] {
            display: none;
       }
        .tabs .content section h2, .tabs ul li label {
            font-family: "Archivo", system-ui;
            font-weight: bold;
            font-size: 18px;
            color: darkslategray;
       }
        .tabs ul {
            list-style-type: none;
            display: flex;
            flex-direction: row;
            margin-bottom: 5px;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            background-color: #f1f1f1;
            padding: 15px;
       }
        .tabs ul li {
            box-sizing: border-box;
            flex: 2;
            width: 25%;
            padding: 0 20px;
            text-align: center;
       }

        .tabs ul li label {
            transition: all 0.6s ease-in-out;
            color: #929daf;
            padding: 5px auto;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            white-space: nowrap;
            -webkit-touch-callout: none;
       }
        .tabs ul li label br {
            display: none;
       }
        .tabs ul li label svg {
            fill: #929daf;
            height: 1.2em;
            vertical-align: bottom;
            margin-right: 0.2em;
            transition: all 0.2s ease-in-out;
       }
        .tabs ul li label:hover, .tabs ul li label:focus, .tabs ul li label:active {
            outline: 0;
            color: #bec5cf;
            background-color: #F1F1F1;
       }
        .tabs ul li label:hover svg, .tabs ul li label:focus svg, .tabs ul li label:active svg {
            fill: #bec5cf;

       }
        .tabs .slider {
            position: relative;
            width: 33%;
            transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
       }
        .tabs .slider .indicator {
            position: relative;
            width: 50px;
            max-width: 100%;
            margin: 0 auto;
            height: 5px;
            background: #ff8800;
            border-radius: 1px;
       }
        .tabs .content {
            margin-top: 30px;
       }
        .tabs .content section {
            display: none;
            animation-name: content;
            animation-direction: normal;
            animation-duration: 0.3s;
            animation-timing-function: ease-in-out;
            animation-iteration-count: 1;
            line-height: 1.4;
       }
    /* .tabs .content section h2 {
            color: #428bff;
            display: none;
       } */
       
        .tabs .content section h2::after {
            content: "";
            position: relative;
            display: block;
            width: 30px;
            height: 3px;
            background: 323232;
            margin-top: 5px;
            left: 1px;
       }
        .tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
            cursor: default;
            color: #ff8800;
            background-color: #FFFFFF;
            padding: 20px;
            margin: 0 0 -16px 0;
       }
        .tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label svg {
            fill: #428bff;
       }
        @media (max-width: 600px) {
            .tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
                background: rgba(0, 0, 0, 0.08);
           }
       }
        .tabs input[name="tab-control"]:nth-of-type(1):checked ~ .slider {
            transform: translateX(0%);
       }
        .tabs input[name="tab-control"]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
            display: block;
       }
        .tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
            cursor: default;
            color: #ff8800;
            background-color: #FFFFFF;
            padding: 20px;
            margin: 0 0 -16px 0;
       }
        .tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label svg {
            fill: #428bff;
       }
        @media (max-width: 600px) {
            .tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
                background: rgba(0, 0, 0, 0.08);
           }
       }
        .tabs input[name="tab-control"]:nth-of-type(2):checked ~ .slider {
            transform: translateX(100%);
       }
        .tabs input[name="tab-control"]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
            display: block;
       }
        .tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
            cursor: default;
            color: #ff8800;
            background-color: #FFFFFF;
            padding: 20px;
            margin: 0 0 -16px 0;
       }
        .tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label svg {
            fill: #428bff;
       }
        @media (max-width: 600px) {
            .tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
                background: rgba(0, 0, 0, 0.08);
           }
       }
        .tabs input[name="tab-control"]:nth-of-type(3):checked ~ .slider {
            transform: translateX(200%);
       }
        .tabs input[name="tab-control"]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
            display: block;
       }
        .tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
            cursor: default;
            color: #428bff;
       }
        .tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label svg {
            fill: #428bff;
       }
        @media (max-width: 600px) {
            .tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
                background: rgba(0, 0, 0, 0.08);
           }
       }
        .tabs input[name="tab-control"]:nth-of-type(4):checked ~ .slider {
            transform: translateX(300%);
       }
        .tabs input[name="tab-control"]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
            display: block;
       }
        @keyframes content {
            from {
                opacity: 0;
                transform: translateY(5%);
           }
            to {
                opacity: 1;
                transform: translateY(0%);
           }
       }
        @media (max-width: 1000px) {
            .tabs ul li label {
                white-space: initial;
           }
            .tabs ul li label br {
                display: initial;
           }
            .tabs ul li label svg {
                height: 1.5em;
           }
       }

@media (max-width: 600px) {
            .tabs ul li label {
                padding: 5px;
                border-radius: 5px;
           }
            .tabs ul li label span {
                display: none;
           }
            .tabs .slider {
                display: none;
           }
            .tabs .content {
                margin-top: 20px;
           }
            .tabs .content section h2 {
                display: block;
           }
       }

/*---------------------------------------- Responsive ------------------------------------*/

@media (width <= 1058px) {

.imagen-central img {
  display: none!important;
}
}

@media (width <= 991px) {
.titulo1 h2::after {
  display: none;
}

.col-md-3 .img-celular img{
  width: 8rem;
  margin-top: 5rem;
}

.col-md-3 .img img{
  width: 8rem;
  margin-top: 0;
}

}

@media (width <= 980px){

.imagen-central img {
  display: none!important;
}

.topnav a.top img{
  display: none;
}

.topnav #mytopNav{
  justify-content: space-evenly;
  display: flex;
}

}

@media (width <= 767px){

.grid-container header {
    padding: 80px 10px;
}

.grid-container main {
    padding: 30px 0 20px 0;
}

.grid-container .topnav {
    margin-top: 55px;
    padding: 2%;
}

.imagen-central img {
    position: relative;
    top: 120px;
    left: 60px;
    width: 90%;
}

.topnav a.top img {
  width: 100%;
  display: none;
}

.topnav a.bienes {
  margin: 0;
  padding: 1px 3px;
}

.web-sii .navbar-toggle {
  margin-right: 5px;
  margin-top: 4px;
  font-size: 20px;
  margin-bottom: 0;
}
}

@media (width <= 540px) {

section.header {
    margin-top: 60px;
}

section.contenido_1 h3.llamado02 {
    color: #0e2b45;
    padding: 60px 0 60px 0;
    text-align: center;
    font-size: 1.3em;
    width: 70%;
    margin: auto;
}

section.header img.parche {
    margin: 25px auto;
    position: relative;
    width: 100%;
}

section.header p.definicion {
    color: #203d58;
    padding: 25px 5%;
    font-size: 1.3em;
    text-align: center;
}

section.contenido_1 h2 {
    margin: 20px 0px 0px 0px;
    font-weight: 800;
    font-family: "Archivo", system-ui !important;
    font-size: 1.5em;
    background-color: #ff8800;
    color: #203d58;
}

section.contenido_1 h3.llamado01 {
    color: #0e2b45;
    padding: 25px 0 25px 0;
    text-align: center;
    font-size: 1.5em;
}

section.contenido_2 h4.llamado01 {
    color: #203d58;
    font-size: 1.5em;
    text-align: center;
    padding-top: 2%;
    margin-left: 0px;
    font-weight: bold;
}

section.contenido_2 h4.llamado02 {
    color: #203d58;
    font-size: 1.8em;
    text-align: center;
    margin-left: 0px;
}

.texto_img_text {
    margin: 15% 0% 0% 0%;
    display: block;
    float: left;
}

.texto_bienvenida p.card-text.push-right {
    background: #99aaac;
    font-size: 1.2em;
    padding: 6% 0% 4% 41%;
    width: 95%;
    margin: 0% 0% 0% 0%;
    color: #002c47;
}

.tabs ul {
    list-style-type: none;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 5px;
    justify-content: space-between;
    align-items: normal;
    background-color: #f1f1f1;
}

section.contenido_3 .llamado {
    width: 100%;
    margin: auto;
    background-color: #ff8800;
    border-bottom: solid 7px #e0411c;
    font-size: 1.1em;
}

.tabs ul li {
    box-sizing: border-box;
    flex: 2;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.tabs ul li label span {
        display: block;
    }

.tabs {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    background: white;
    padding: 0px;
    padding-bottom: 25px;
    width: 100%;
    border-radius: 5px;
    box-shadow: none;
    min-width: 240px;
}

.article-body p {
        display: block;
}

article {
    min-height: 365px;
}

article {
    width: 150%;
    margin: 2px 25px 23px -56px;
}

.card {
    min-height: 225px;
    width: 137%;
    margin: 0 0 0 -44px;
}

div.texto_destacado1 {
    padding: 8%;
    background-color: #e9f1f3;
    width: 129%;
    margin: 0 0 0 -34px;
}

section.contenido_3 div.texto-parrafo {
    color: #fff;
    background-color: #002c47;
    border-left: 5px solid #ff8800;
    border-right: 5px solid #ff8800;
    padding: 10%;
    width: 138%;
    margin: 0 0 0 -50px;
}

section.contenido_3 div.texto-parrafo h4 {
    color: #FFFFFF;
}

section.contenido_2 h4.llamado02 {
    color: #203d58;
    font-size: 1.8em;
    text-align: center;
    margin-left: 0px;
    font-size: 22px;
}

section.contenido_3 .llamado h3 {
    color: #203d58;
    text-align: center;
    padding-top: 15px;
    font-size: 20px;
}

section.header {
    margin-top: 60px;
}

section.contenido_1 h3.llamado02 {
    color: #0e2b45;
    padding: 60px 0 60px 0;
    text-align: center;
    font-size: 1.3em;
    width: 70%;
    margin: auto;
}

section.header img.parche {
    margin: 25px auto;
    position: relative;
    width: 100%;
}

section.header p.definicion {
    color: #203d58;
    padding: 25px 5%;
    font-size: 1.3em;
    text-align: center;
}

section.contenido_1 h2 {
    margin: 20px 0px 0px 0px;
    font-weight: 800;
    font-family: "Archivo", system-ui !important;
    font-size: 1.5em;
    background-color: #ff8800;
    color: #203d58;
}

section.contenido_1 h3.llamado01 {
    color: #0e2b45;
    padding: 25px 0 25px 0;
    text-align: center;
    font-size: 1.5em;
}

section.contenido_2 h4.llamado01 {
    color: #203d58;
    font-size: 1.5em;
    text-align: center;
    padding-top: 2%;
    margin-left: 0px;
    font-weight: bold;
}

section.contenido_2 h4.llamado02 {
    color: #203d58;
    font-size: 1.8em;
    text-align: center;
    margin-left: 0px;
}

.texto_img_text {
    margin: 15% 0% 0% 0%;
    display: block;
    float: left;
}

.texto_bienvenida p.card-text.push-right {
    background: #99aaac;
    font-size: 1.2em;
    padding: 6% 0% 4% 41%;
    width: 95%;
    margin: 0% 0% 0% 0%;
    color: #002c47;
}

.tabs ul {
    list-style-type: none;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 5px;
    justify-content: space-between;
    align-items: normal;
    background-color: #f1f1f1;
}

section.contenido_3 .llamado {
    width: 100%;
    margin: auto;
    background-color: #ff8800;
    border-bottom: solid 7px #e0411c;
    font-size: 1.1em;
}

.tabs ul li {
    box-sizing: border-box;
    flex: 2;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.tabs ul li label span {
    display: block;
}

.tabs {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    background: white;
    padding: 0px;
    padding-bottom: 25px;
    width: 100%;
    border-radius: 5px;
    box-shadow: none;
    min-width: 240px;
}

.article-body p {
    display: block;
}

article {
    min-height: 365px;
}

article {
    width: 150%;
    margin: 2px 25px 23px -56px;
}

.card {
    min-height: 225px;
    width: 137%;
    margin: 0 0 0 -44px;
}

div.texto_destacado1 {
    padding: 8%;
    background-color: #e9f1f3;
    width: 129%;
    margin: 0 0 0 -34px;
}

section.contenido_3 div.texto-parrafo {
    color: #fff;
    background-color: #002c47;
    border-left: 5px solid #ff8800;
    border-right: 5px solid #ff8800;
    padding: 10%;
    width: 138%;
    margin: 0 0 0 -50px;
}

section.contenido_3 div.texto-parrafo h4 {
    color: #FFFFFF;
} 

section.contenido_2 h4.llamado02 {
    color: #203d58;
    font-size: 1.8em;
    text-align: center;
    margin-left: 0px;
    font-size: 22px;
}

section.contenido_3 .llamado h3 {
    color: #203d58;
    text-align: center;
    padding-top: 15px;
    font-size: 20px;
}

grid-container header {
    padding-top: 40px;
}

.botones .logo img {
    width: 75%;
}

.titulo1 {
    width: initial;
}

.informacion1 {
    width: initial; 
    margin-left: 0;  
}

.boton_footer {
    height: 130px;
}

.imagen-central {
    display: none;
}

}