@import url(bootstrap.css);
@import url(header-site.css);
@import url(footer-site.css);
@import url(size-elements.css);
@import url(buttons.css);

.popup-container {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fondo oscuro */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none; /* Oculto por defecto */
}

/* Estilos del contenido del pop-up */
.popup-content {
    position: relative;
    background: white,0;
    border-radius: 10px;
    text-align: center;
}

/* Imagen dentro del pop-up */
.popup-content img {
    max-width: 38%;
    height: auto;
    border-radius: 10px;
}

/* Botón de cerrar */
.close-btn {
    position: absolute;
    top: 5px;
    right: 400px;
    background: rgb(27, 105, 24);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.close-btn:hover {
    background: rgb(8, 77, 11);
}


.aviso{
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    color: #ececec;
    background-color: #070707;
}

.aviso h1{
    font-weight: 700;
}

.aviso a{
    font-size: 20px;
    font-weight: 300;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #cbd1cc09;
    text-align: center,center;
    border-width: 1px;
    border-style: solid;
    border-radius: 30px;
}

.title-1 h1:after,
.title-1 h1:before {
    display: block;
    content: "";
    left: 50%;
    background-color: #3fc35f
}

.title-1 h1,
.title-2 h1 {
    text-transform: uppercase;
    text-align: center
}

#info-c19 p,
.ca-container,
.qos-coop-item,
.title-1 h1,
.title-2 h1 {
    text-align: center
}

.bp-int img,
.i-close,
.img-ico,
.qos-coop-item img {
    object-fit: contain
}

#info-c19,
.news-wrapper,
.newsi {
    contain: content
}

:root {
    --bg-site: whitesmoke;
    --ca-col-grid: 400px;
    --theme-color: rgb(63, 195, 95)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-site);
    overflow-x: hidden;
    opacity: 0;
    animation-duration: .3s;
    animation-timing-function: ease-in-out;
    min-width: 300px !important
}

.content {
    margin-top: var(--header-height);
    padding-top: .1px;
    width: 100%;
    min-height: calc(100vh - var(--header-height) - var(--min-height-footer));
    transition: .6s;
    border: 0 solid transparent !important
}

a {
    text-decoration: none;
    color: inherit
}


.atel-item h5,
a:not(#main-link):hover {
    color: var(--theme-color)
}

a#main-link {
    z-index: 2
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

.btn-1:focus,
input {
    outline: 0
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield; /* Para Firefox */
    -webkit-appearance: none;  /* Para navegadores basados en WebKit (Chrome, Safari, Edge) */
    appearance: none;          /* Propiedad estándar para navegadores modernos */
}


hr {
    width: 80%
}

.circle {
    border-radius: 50%
}

.i-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: max-content;
    height: 40px;
    cursor: pointer;
    z-index: 10
}

.i-close:hover {
    transform: scale(1.15);
    transition: .3s
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 16px #fff, 0 0 20px #0fa, 0 0 32px #0fa, 0 0 64px #0fa, 0 0 128px #0fa
}

.img-ico {
    width: 20px;
    height: 20px
}

.simple-preloader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--theme-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: 2s linear infinite spin
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.middle-loader {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute
}

.middle-loader .bar {
    width: 10px;
    height: 70px;
    background: #fff;
    display: inline-block;
    transform-origin: bottom center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    animation: 1.4s linear infinite loader
}

.middle-loader .bar1 {
    animation-delay: .1s
}

.middle-loader .bar2 {
    animation-delay: .2s
}

.middle-loader .bar3 {
    animation-delay: .3s
}

.middle-loader .bar4 {
    animation-delay: .4s
}

.middle-loader .bar5 {
    animation-delay: .5s
}

.middle-loader .bar6 {
    animation-delay: .6s
}

.middle-loader .bar7 {
    animation-delay: .7s
}

.middle-loader .bar8 {
    animation-delay: .8s
}

@keyframes loader {
    0% {
        transform: scaleY(.1);
        background: #adff2f
    }

    50% {
        transform: scaleY(1);
        background: var(--theme-color)
    }

    100% {
        transform: scaleY(.1);
        background: 0 0
    }
}

.loader-hide {
    display: none
}

.title-1 h1,
.title-2 h1 {
    position: relative;
    margin: 40px auto 20px;
    font-family: Raleway, sans-serif;
    font-weight: 300;
    color: #080808;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s
}

.title-1 h1 span,
.title-2 h1 span {
    display: block;
    font-size: .5em;
    line-height: 1.3
}

.title-1 h1 em,
.title-2 h1 em {
    font-style: normal;
    font-weight: 600
}

.title-1 {
    padding-top: .1px !important
}

.title-1 h1 {
    padding-bottom: 5px
}

.title-1 h1:before {
    width: 28px;
    height: 5px;
    position: absolute;
    bottom: 3px;
    margin-left: -14px
}

.invp,
.newsi,
.title-1 h1:after {
    position: relative
}

.title-1 h1:after {
    width: 100px;
    height: 1px;
    margin-top: 25px;
    margin-left: -50px
}

.title-2 h1 {
    font-size: 30px;
    font-weight: 300;
    color: #222;
    letter-spacing: 1px;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center
}

.title-2 h1:after,
.title-2 h1:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #3fc35f;
    border-top: 1px solid #3fc35f;
    height: 5px
}

.list-item-1 {
    display: block
}

.list-item-1 li,
.list-item-2 li {
    display: block;
    position: relative;
    list-style-type: none;
    text-align: left;
    margin-left: 30px
}

.list-item-1 li:not(:last-child),
.list-item-2 li:not(:last-child) {
    margin-bottom: 5px
}

.list-item-1 li:before {
    content: "";
    position: absolute;
    top: 1.4em;
    left: -30px;
    margin-top: -.9em;
    background: linear-gradient(45deg, #3fc35f, #319b4b);
    height: 6px;
    width: 6px;
    border-radius: 50%
}

.btn-1,
.cs-wrapper,
.list-item-2 li:before {
    background-repeat: no-repeat
}

.list-item-2 li:before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    display: inline-block;
    height: 20px;
    width: 20px;
    background-size: contain;
    background-image: url("../img/list-item-icon.png")
}

.scrollbar-1::-webkit-scrollbar {
    width: 5px
}

.scrollbar-1::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, .1)
}

.scrollbar-1::-webkit-scrollbar-thumb {
    background-color: #2f4f4f
}

.form-2 label[for=select-mfac] {
    font-size: 1.5rem
}

.form-2 label[for=fcod] {
    font-size: small
}

.form-2 #select-mfac {
    width: 100px;
    height: 30px;
    border-radius: 6px;
    padding-left: 10px;
    font-weight: 600
}

.btn-1,
.form-2 input[type=submit] {
    height: 50px;
    cursor: pointer;
    border: none;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    display: flex
}

.form-2 #select-mfac option:focus,
.form-2 #select-mfac option:hover {
    color: #000;
    background-color: #24c46c
}

.form-2 input[type=submit] {
    margin: 40px auto 0;
    width: 160px;
    justify-content: center;
    background-color: #66a182;
    transition: .3s
}

.form-2 input[type=submit]:hover {
    letter-spacing: 2px
}

.btn-1 {
    width: 150px;
    justify-content: center;
    background-color: #0d324d;
    background-image: linear-gradient(320deg, #21c558 0, #0d4b4d 74%);
    background-size: 200% 100%;
    background-position: left;
    transition: .5s
}

.cs-wrapper,
.newsi {
    background-size: cover
}

#jles {
    background-image: url("../img/escuela/post/IMG-20230505-WA0014.jpg")
}

.btn-1:before {
    content: 'Brighten';
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 45px;
    background-color: #59b84c;
    background-image: linear-gradient(320deg, #59b84c 0, #274e60 74%);
    transition: .5s
}

.btn-1:hover {
    background-position: right;
    color: var(--bg-site, orange);
    line-height: 2
}

.btn-1:hover:before {
    color: rgba(255, 255, 255, .8)
}

#info-c19 {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    background-color: #93c593;
    box-shadow: rgba(0, 0, 0, .3) 0 1px 5px 1px
}

.ca-items,
.invp {
    justify-content: center
}

#info-c19 p {
    margin: 0;
    font-weight: 600;
    color: #f5f5f5;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, .2), 0 -5px 35px rgba(255, 255, 255, .3)
}

.slider-frame {
    margin: 0 auto 50px;
    width: 100%;
    height: 640px;
    min-height: 350px;
    display: block;
    overflow: hidden
}

.qos-coop-item {
    width: 80%;
    margin: 0 auto;
    border-radius: 40px;
    padding: 50px 25px
}

.qos-coop-item h2 {
    font-size: calc(2rem + 1.5vw);
    font-weight: 600;
    margin-bottom: 50px
}

.qos-coop-item img {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 50px
}

.qos-coop-item p {
    font-size: 25px;
    text-align: justify
}

.ca-container {
    margin-bottom: 100px
}

.ca-container hr {
    margin: 0 auto;
    width: 80%;
    height: 2px
}

.ca-title {
    margin: 50px auto;
    padding: 0 20px
}

.ca-title h2 {
    font-size: calc(2rem + 1.5vw);
    font-weight: 600
}

.ca-title p {
    font-size: 20px
}

.ca-items {
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(2, var(--ca-col-grid));
    column-gap: 50px;
    row-gap: 40px
}

.ca-item {
    padding: 10px 20px 0;
    /*box-shadow: rgba(0, 0, 0, .05) 0 2px 9px 1px;*/
    border-radius: 10px;
    background-color: #d8d8d8
}

.newsi,
.wsp-info {
    box-shadow: rgba(0, 0, 0, .3) 0 2px 4px;
    cursor: pointer
}

.ca-item p {
    font-size: large
}

.content.fade-out {
    opacity: 0;
    animation-name: fade-out
}

.content.fade-in {
    opacity: 1;
    animation-name: fade-in
}

@keyframes fade-out {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.invp {
    margin: 50px auto;
    width: 600px;
    max-width: 95%;
    padding: 20px;
    display: flex;
    align-items: center;
    text-shadow: none !important;
    background-color: #d7e3dd;
    border-radius: 40px 10px;
    cursor: pointer;
    z-index: 1;
    transition: .4s linear
}

.bp-int,
.cs-c {
    border-radius: 20px;
    display: flex
}

.invp::before {
    position: absolute;
    top: -.5px;
    left: -.5px;
    right: -.5px;
    bottom: -.5px;
    content: "";
    border-radius: inherit;
    z-index: -1;
    background-image: linear-gradient(45deg, #3a7859, var(--theme-color) 90%);
    opacity: 0;
    transition: opacity .4s linear
}

.invp h3 {
    width: max-content;
    font-weight: 400
}

.invp img {
    margin: 0 20px;
    width: 50px;
    height: 50px
}

.invp:hover {
    color: #fff !important
}

.invp:hover::before {
    opacity: 1
}

.invp:hover img {
    content: url(../img/pay/pay-black-white-logo.png)
}

.cs-wrapper {
    width: 100%;
    padding: 2vw;
    background-attachment: fixed;
    background-position: top;
    background-image: url(https://img.freepik.com/fotos-premium/servicios-linea-o-moviles-asistentes-personales-comerciales-empleado-remoto-brinda-asistencia-diversas-tareas-documentacion_27634-1462.jpg?w=996)
}

.cs-c {
    width: 100%;
    max-width: 600px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, .8);
    opacity: .8
}

.cs-c table {
    color: #fff;
    font-size: calc(.8rem + .8vw)
}

.atel {
    margin: auto;
    color: #fff;
    text-align: start
}

.atel-item:not(:last-child) {
    margin-bottom: 30px !important
}

.at-list {
    margin-top: 10px;
    list-style: none;
    font-size: 18px
}

.at-list img {
    margin-right: 10px
}

.bp-net-wrapper {
    padding: 40px 20px
}

.bp-int {
    flex-direction: column;
    justify-content: space-around;
    gap: 40px
}

.bp-int img {
    margin: auto;
    width: 100%;
    max-width: 240px
}

.news-wrapper {
    padding: 10px 20px 30px
}

.newsi,
.vcoop-i {
    padding: 20px 10px
}

.newsi {
    width: 240px;
    height: 280px;
    border-radius: 16px 16px 0 0;
    transition: .3s ease-out;
    background-image: url(https://media.istockphoto.com/id/535489040/es/foto/colorido-abstracto-concepto-de-globo-de-tierra-de-los-estados-unidos.jpg?s=612x612&w=0&k=20&c=QAia_AYMV0fm8c4DWaswiGAeOyAizGo3MRmXtkyZ8eo=)
}

.newsi-i {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    color: #fff;
    font-weight: 700;
    font-size: large;
    border: inherit;
    background-image: linear-gradient(-135deg, rgb(40, 60, 50, .7), rgb(60, 125, 80, .7));
    transition: .4s ease-out
}

.newsi:hover .newsi-i {
    height: 100%
}

@keyframes moveSlideshow {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-90%)
    }

    95% {
        transform: translateX(-180%)
    }

    100% {
        transform: translateX(180%)
    }
}

.vcoop {
    margin: 0 auto 50px;
    width: 90%;
    max-width: 1200px;
    text-align: center
}

.vcoop-i {
    margin: auto;
    display: flex;
    max-width: max-content;
    gap: 20px 40px
}

.vcoop-i>p {
    width: 100%;
    height: 260px;
    padding: 20px;
    display: flex;
    align-items: center;
    text-align: justify;
    font-size: calc(.6rem + .6vw);
    border-top: 5px solid;
    border-left: 5px solid
}

.vcoop-i:nth-child(2n)>p {
    border-left: none;
    border-right: 5px solid;
    order: 2
}

.vcoop-i>img {
    margin: auto;
    width: 260px;
    max-width: 95%;
    height: 260px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, .3) 0 2px 3px 1px
}

.vcoop-i:nth-child(2n)>img {
    order: 1
}

.wsp-info {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: solid #fff;
    background-image: linear-gradient(-135deg, #329600, #327800);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 2s ease-out;
    z-index: 100000
}

.wsp-info-esc {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: solid #fff;
    background-size: 100%;
    background-image: linear-gradient(-135deg, #2c8002e3,#2c8002e3),url(../img/escuela/logo.jpg);
    box-shadow: rgba(0, 0, 0, .3) 0 2px 3px 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 2s ease-out;
    z-index: 100000
}

.wsp-info-esc .fa-whatsapp {
    font-size: 40px;
    margin: auto;
    color: #fff;
    transition: .2s ease-out
}

.wsp-info .fa-whatsapp {
    font-size: 40px;
    margin: auto;
    color: #fff;
    transition: .2s ease-out
}

.wsp-info:hover {
    background-image: linear-gradient(-135deg, #329600 85%, #96ff5a)
}

.wsp-info-esc:hover {
    background-size: 100%;
    background-image: linear-gradient(-135deg,#329600d8 85%, #97ff5ade),url(../img/escuela/logo.jpg);
}

.wsp-info:hover .fa-whatsapp {
    font-size: 46px
}

.wsp-info-esc:hover .fa-whatsapp {
    font-size: 46px
}

.tacp {
    width: 90%
}

.tacp img {
    width: 100%;
    object-fit: contain;
    box-shadow: rgba(0, 0, 0, 0.3) 0 2px 4px
}

@media(max-width:1023px) {
    .ca-items {
        grid-template-columns: repeat(2, var(--ca-col-grid))
    }

    /* Imagen dentro del pop-up */
    .popup-content img {
        max-width: 50%;
        height: auto;
        border-radius: 10px;
    }

    /* Botón de cerrar */
    .close-btn {
        position: absolute;
        top: 5px;
        right: 90px;
        background: rgb(27, 105, 24);
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
    }
}

@media(max-width:1366px) {
    /* Imagen dentro del pop-up */
    .popup-content img {
        max-width: 42%;
        height: auto;
        border-radius: 10px;
    }

    /* Botón de cerrar */
    .close-btn {
        position: absolute;
        top: 5px;
        right: 180px;
        background: rgb(27, 105, 24);
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
    }
}

@media(max-width:991px) {
    #info-c19 {
        font-size: 20px
    }

    .ca-items {
        grid-template-columns: repeat(2, 300px)
    }

    /* Imagen dentro del pop-up */
    .popup-content img {
        max-width: 52%;
        height: auto;
        border-radius: 10px;
    }

    /* Botón de cerrar */
    .close-btn {
        position: absolute;
        top: 5px;
        right: 100px;
        background: rgb(27, 105, 24);
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
    }
}

@media(max-width:767px) {
/* Imagen dentro del pop-up */
    .popup-content img {
        max-width: 70%;
        height: auto;
        border-radius: 10px;
    }

    /* Botón de cerrar */
    .close-btn {
        position: absolute;
        top: 5px;
        right: 60px;
        background: rgb(27, 105, 24);
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
    }


    .vcoop-i:nth-child(2n) {
        flex-direction: column
    }

    .vcoop-i>p {
        height: 100%;
        font-size: calc(.7rem + .6vw);
        border-left: none;
        border-right: none !important
    }

    .vcoop-i:nth-child(odd) {
        flex-direction: column-reverse
    }

    .ca-items {
        column-gap: 30px
    }

    .news-wrapper {
        max-width: 95%
    }

    .newsi {
        width: 180px;
        height: 220px
    }

    .tacp {
        width: 95%
    }
}

@media(max-width:639px) {
    /* Imagen dentro del pop-up */
    .popup-content img {
        max-width: 75%;
        height: auto;
        border-radius: 10px;
    }

    /* Botón de cerrar */
    .close-btn {
        position: absolute;
        top: 5px;
        right: 30px;
        background: rgb(27, 105, 24);
        color: white;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
    }

    .ca-items {
        grid-template-columns: repeat(1, minmax(max-content, 300px))
    }

    .ca-items .ca-item:nth-child(odd):last-child {
        width: 300px;
        margin-left: 0
    }

    .qos-coop-item {
        width: 90%;
        padding: 30px 20px
    }
}

@media(max-width:479px) {
/* Imagen dentro del pop-up */
.popup-content img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

/* Botón de cerrar */
.close-btn {
    position: absolute;
    top: 5px;
    right: 30px;
    background: rgb(27, 105, 24);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

    #info-c19 {
        font-size: 16px
    }

    .qos-coop-item {
        padding: 25px 10px
    }

    .cs-c>h1 {
        text-align: center
    }
}