:root {
    --negro: #262626;
    --blanco: #f2f2f2;
    --rojo: #ff0000;
    --azul: #004d99;
    --amarillo: #ffcc00;
    --verde: #008000;
    --naranja: #FC466B;
    --background: #bfbfde;
    --gris: #524e6a;
}

/* Reseteo de estilos */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    /*for debugging
      outline: 2px solid limegreen !important;
      background-color: rgb(0 100 0 / 0.1) !important;
    */
}

html {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 400;
    line-height: 1.5;

    /*scroll-padding-top: 100px;*/
    /* Para evitar que el navbar cubra el contenido al dar clic en una opcion del menu */
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 700;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

textarea {
    resize: none;
    field-sizing: content;
}


/* Divide el contenido en columnas iguales */
.split-columns {
    display: flex;
    flex-direction: column;
}
@media (min-width: 40em) {

    /* 40em = 640px */
    .split-columns {
        flex-direction: row;
    }

    .split-columns>* {
        flex-basis: 100%;
    }
}

/* Para centrar texto o div */
.centrado-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centrado-grid {
    display: grid;
    place-items: center;
}

/* Botones */
.cta-btn {
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0.8em 1.5em;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid #e6e6e6;
    text-transform: uppercase;
    background-color: var(--azul);
    border-radius: 100vmax;
    color: #fff;
    font-weight: 300;
    font-size: 1.1em;
    font-family: inherit;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}
  
.cta-btn:hover,
.cta-btn:focus,
.cta-btn:active {
    animation: sh0 0.5s ease-in-out both;
}
  
@keyframes sh0 {
    0% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
  
    25% {
      transform: rotate(7deg) translate3d(0, 0, 0);
    }
  
    50% {
      transform: rotate(-7deg) translate3d(0, 0, 0);
    }
  
    75% {
      transform: rotate(1deg) translate3d(0, 0, 0);
    }
  
    100% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
  }
  
.cta-btn:hover span,
.cta-btn:focus span,
.cta-btn:active span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}
  
.cta-btn::before,
.cta-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
}
  
.cta-btn:hover::before,
.cta-btn:focus::before,
.cta-btn:active::before,
.cta-btn:hover::after,
.cta-btn:focus::after,
.cta-btn:active::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}
  
.cta-btn:hover::before,
.cta-btn:focus::before,
.cta-btn:active::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
}
  
.cta-btn:hover::after,
.cta-btn:focus::after,
.cta-btn:active::after {
    transform: translate(50%, 0) scale(1.1);
}

/* para hacerlo un porco más chico */
.btn {
    padding: 0.5em 1.2em;
    font-size: 1em;
}
  

/*
    Barra de navegación
*/
.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--azul);
}

.brand-title img {
    max-height: 90%;
    position: relative;
    z-index: 7;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 7;
}

.navbar-links ul li a {
    position: relative;
    color: var(--azul);
    font-weight: bolder;
    font-size: 1.1em;
    text-transform: uppercase;
    padding: 0 1rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
    transition: all .5s;
}

.navbar-links ul li a:after{
    content: "";
    position: absolute;
    background-color: var(--gris);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.navbar-links ul li a:hover,
.navbar-links ul li a:focus,
.navbar-links ul li a:active {
    color: var(--gris);
}

.navbar-links ul li a:hover::after,
.navbar-links ul li a:focus::after,
.navbar-links ul li a:active::after {
    width: 100%;
}

.toggle-button {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 10;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: var(--azul);
    border-radius: 10px;
}

@media (max-width: 768px) {

    .hero {
        background: #0073e6;
        background: -webkit-linear-gradient(315deg, rgba(0, 115, 230,0.9) 0%, rgba(255,255,255,1) 85%) !important;
        background: linear-gradient(315deg, rgba(0, 115, 230,0.9) 0%, rgba(255,255,255,1) 85%) !important;
    }

    .hero-img {
        display: none;
    }
    
    .brand-title img {
        width: 50%;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar {
        padding: 0;
        padding-top: 2rem;
        flex-direction: column;
    }

    .navbar-links ul {
        background-color: var(--azul);
        width: 100%;
        height: 80dvh;
        flex-direction: column;
        justify-content: space-evenly;
        z-index: 99;
    }

    .navbar-links li {
        text-align: center;
    }

    .navbar-links li a {
        color: var(--blanco) !important;
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

}

/*
  Ingreso y Registro de usuarios
*/

#userLogin svg, #userLogout svg {
    cursor: pointer;
}

#userLogin svg:hover, #userLogout svg:hover {
    stroke: var(--gris);
} 

.user-access, .user-signup, .user-forgot-pwd {
    color: var(--blanco);
    background: var(--azul);
    border: 2px solid var(--blanco);
    border-radius: 6px;
    position: absolute;
    top: 7rem;
    right: 2rem;
    width: 20rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all .3s ease;
    z-index: 99;
}

.user-signup p,
.user-forgot-pwd p {
    color: var(--blanco);
    padding-bottom: .5em;
}

#user-signup,
#user-forgot-pwd {
    cursor: pointer;
}

#user-signup:hover,
#user-forgot-pwd:hover {
    color: #ccc;
}

.user-access.active,
.user-signup.active,
.user-forgot-pwd.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.user-access ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
}

.user-access ul li:nth-child(2),
.user-access ul li:nth-child(3) {
    text-align: center;
    padding-bottom: 1rem;
}

.user-access a {
    color: var(--blanco);
    text-decoration: none;
}

.user-access a:hover {
    color: #ccc;
}

/* .user-access img {
    width: 24px;
    margin-right: 1rem;
    cursor: pointer;
} */

.login-user {
    color: var(--blanco);
    text-transform: uppercase;
    display: flex;
    padding-top: 1rem;
}

.txt-login span {
    cursor: pointer;
}

.user-access form {
    width: 100%;
}

.user-access form p {
    color: var(--blanco);
    padding-bottom: .5em;
}

.user-access input,
.user-signup input,
.user-forgot-pwd input,
.password-reset input {
    width: 100%;
    height: 2rem;
    padding: 0px 1em;
    margin-bottom: 1rem;
}

.mycheckbox {
    color: var(--blanco);
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.user-access input[type=checkbox] {
    width: initial;
    height: initial;
    margin: 0;
    padding: 0;
    visibility: hidden;
}

.checkedmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 1rem;
    width: 1rem;
    background-color: var(--blanco);
    border-radius: 3px;
}

.mycheckbox:hover input~.checkedmark {
    background-color: #ccc;
}

.mycheckbox input:active~.checkedmark {
    background-color: var(--azul);
}

.mycheckbox input:checked~.checkedmark {
    background-color: var(--azul);
}

.checkedmark:after {
    content: "";
    position: absolute;
    display: none;
}

.mycheckbox input:checked~.checkedmark:after {
    display: block;
}

.mycheckbox .checkedmark {
    transition: all .5s;
}

.mycheckbox .checkedmark:after {
    left: 8px;
    bottom: 5px;
    width: 6px;
    height: 12px;
    border: solid var(--blanco);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.logedin-user {
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content:flex-start;
}

.logedin-user svg {
    margin-right: 1rem;
}

.close-login {
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.btn-login {
    border: none;
    border-radius: 100vmax;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    height: 2rem;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-login:hover {
    border: none;
    outline: none;
    color: var(--blanco);
    background-color: #0066cc;
}

.password-reset {
    color: var(--blanco);
    max-width: 30vw;
}

.password-reset p {
    padding: 1em 0 .5em 0;
}

.regresar {
    display: none;
}

.regresa a {
    color: var(--blanco);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.regresa a:hover {
    color: var(--gris);
}
  


/*
    Hero area
*/
.main-header {
    position: relative;
    height: 90dvh;
}

.hero {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    background: #0073e6;
    background: -webkit-linear-gradient(315deg, rgba(255,255,255,1) 15%, rgba(0, 115, 230,0.9) 85%) !important;
    background: linear-gradient(315deg, rgba(255,255,255,1) 15%, rgba(0, 115, 230,0.9) 85%) !important;
    /* clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%); */
}

.hero-title {
    margin-top: 2rem;
    padding: 0rem 4rem;
    z-index: 9;
}

.hero-title h1 {
    color: var(--blanco);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3), -2px -2px 3px rgba(255, 255, 255, 0.3) ;
    font-size: clamp(2em, 2em + 2vw, 4em); /* clamp(minimum, preferred, maximum); */
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title p {
    color: var(--negro);
    font-size: clamp(1em, 1em + .5vw, 1.3em); /* clamp(minimum, preferred, maximum); */
    line-height: 1.5;
    margin-bottom: 2rem;
}

.main {
    margin-top: 6rem;
}

section h2 {
    color: var(--negro);
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    width: fit-content;
    border-bottom: 2px solid #666;
}

#cursos, #eventos, #detalle-curso {
    padding: 4rem;
}


/*
    Cursos
*/

.cursos-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.card {
    border: 1px solid #ccc;
    border-radius: 25px 0px 25px 0px;
    padding: 1rem;
    transition: all .5s;
}
.card:hover,
.card:focus,
.card:active {
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-1rem);
}
.card-img img {
    width: 100%;
    height: 220px;
}
.card-title {
    text-align: center;
    height: 80px;
    margin: 1rem 0;
}
/* .card-precio {
    text-align: center;
    margin-bottom: 1rem;
} */
.card-btn {
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}
.card-precio {
    display: grid;
    place-items: center;
    grid-template-columns: 60% 40%;
    margin-bottom: 1rem;
}

.precios {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.precio {
    font-size: .9em;
    font-weight: 600;
}

.precio-oferta {
    font-size: .8em;
    color: #999;
    text-decoration:line-through;
}

.metodos-pago {
    margin-bottom: 2rem;
}

.titulo-metodos-pago {
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/*
    Nosotros
*/
.nosotros {
    color: var(--blanco);
    padding: 2rem;
    border: 2px solid var(--blanco);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

    /* background: rgb(189,209,229);
    background: -moz-linear-gradient(135deg, rgba(189,209,229,1) 5%, rgba(179,105,140,1) 40%, rgba(0,57,115,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(189,209,229,1) 5%, rgba(179,105,140,1) 40%, rgba(0,57,115,1) 100%);
    background: linear-gradient(135deg, rgba(189,209,229,1) 5%, rgba(179,105,140,1) 40%, rgba(0,57,115,1) 100%); */

    background: #000000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bdd1e5",endColorstr="#003973",GradientType=1);
    width: 100%;
    min-height: 40vh;
    z-index: 1;
}

.nosotros h2 {
    color: var(--blanco);
}

.nosotros .nosotros-border {
    padding: 4rem;
    border: 2px solid var(--blanco);
    display: block;
    z-index: 4;
}

.nosotros .nosotros-border p {
    font-size: 1.3em;
    padding-bottom: 1rem;
}

.nosotros .nosotros-border p span {
    color: var(--background);
}

/*
.nosotros .nosotros-border a {
    color: var(--blanco);
    padding: 1rem 2rem;
    border-radius: 100vmax;
    border: 2px solid var(--blanco);
}

.nosotros .nosotros-border a:hover {
    background-color: var(--background);
}
*/

.contadores {
    margin: 2rem 0;
}
.contador-cant {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}
  
@keyframes mostrar-contador {
    0% {
         opacity: 0;
         transform: translateY(100px);
     }
     100% {
         opacity: 1;
         transform: translateY(0);
     }
}
  
.ocultar-contador {
    opacity: 0;
}
  
.animar {
    animation: mostrar-contador 1.3s;
}

#quienes h2 {
    margin: 4rem 0 0 4rem;
}

.quienes-somos {
    color: var(--gris);
    background-color: var(--background);
    padding: 4rem;
}

.mision-vision-valores {
    padding: 4rem;
    gap: 2rem;
}

.mision-vision-valores h3 {
    text-transform: uppercase;
    font-size: 1.2em;
    margin-bottom: 1rem;
}

.mision-vision-valores ul li span {
    font-weight: 700;
}

.contactanos-btn {
    margin-bottom: 4rem;
}

#consultoria-empresarial {
    padding: 4rem;
}

#consultoria-empresarial p {
    margin-bottom: 1rem;
}

.container-metodologia {
    padding: 0 8rem;
}

.paso {
    display: flex;
    height: 550px;
    width: 350px;
    max-width: 350px;
    background-color: #2b223f;
    border-radius: 6px;
    box-shadow: -1rem 0 3rem #00000044;
    margin-left: -80px;
    transition: 0.4s ease-out;
    position: relative;
    left: 0px;
}
  
.paso:not(:first-child) {
    margin-left: -35px;
}
  
.paso:hover {
    transform: translateY(-1rem);
    transition: 0.4s ease-out;
    text-shadow: 2px 2px 8px #6e5b94;
}
  
.paso:hover ~ .card {
    position: relative;
    left: 50px;
    transform: rotateX(-15deg) rotateY(10deg);
    transition: 0.4s ease-out;
}
  
.paso-titulo {
    color: #ffffff;
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: 600;
    position: absolute;
    left: 20px;
    top: 15px;
}
  
.paso-bar {
    position: relative;
    /* top: 250px; */
    top: 78px;
  
    height: 5px;
    width: 100%;
}
  
.emptybar {
    background-color: #201c29;
    width: 100%;
    height: 100%;
}
  
.filledbar {
    position: absolute;
    top: 0px;
    z-index: 3;
    width: 0px;
    height: 100%;
    background: #d059ff;
    background: linear-gradient(90deg, #6831cfab, #a777ff 100%);
    transition: 0.6s ease-out;
}
  
.paso:hover .filledbar {
    width: 100%;
    transition: 0.4s ease-out;
}
  
.paso-content {
    position: absolute;
    padding: 2rem;
    top: 60px;
    color: #eae0fd;
    font-size: .85em;
}
  
.stroke {
    stroke: white;
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    transition: 0.6s ease-out;
}
  
.paso:hover .stroke {
    stroke-dashoffset: 100;
    transition: 0.6s ease-out;
}


/*
    Eventos
*/
.swiper {
    width: 100%;
    height: 80dvh;
    border-radius: 8px;
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.9);
}

.swiper-slide {
    position: relative;
}

.swiper-slide h4 {
    padding: .75rem 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid yellow;
    color: var(--blanco);
    font-size: 1.5em;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}

.swiper img {
    width: 100%;
    object-fit: cover;
}

/*
    Contacto
*/
#contacto {
    padding: 4rem 6rem;
}

#contacto h3 {
    position: relative;
    text-transform: uppercase;
    padding-bottom: 1rem;
}

.info-contacto {
    padding: 2rem 4rem;
    background: var(--azul);
}

.info-contacto h3, .info-contacto p {
    color: var(--blanco);
}

.contacto ul li a {
    color: var(--background);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 1rem;
}

.contacto ul li a:hover {
    color: var(--blanco);
}

.contacto ul li a img {
    max-height: 24px;
    padding-right: 1rem;
}

.aviso-privacidad, .aviso-legal, .politica-cookies {
    color: var(--negro);
}

.aviso-privacidad:hover, .aviso-legal:hover, .politica-cookies:hover {
    color: #bfbfde;
}

#aviso, #aviso_legal, #politica_cookies {
    padding: 4rem;
    display: none;
}

#aviso p, #aviso h4, #aviso ul li,
#aviso_legal p, #aviso_legal h4, #aviso_legal ul li,
#politica_cookies p, #politica_cookies h4, #politica_cookies ul li {
    padding-bottom: 1rem;
}

#aviso ul, #aviso_legal, #politica_cookies ul {
    list-style: disc;
}

.cerrar-btn {
    padding: .5rem 1rem;
    border: 2px solid var(--negro);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ti-conmigo {
    color: #fff;
    background-color: #000000;
    padding: 1rem 0;
}

/*
    Formulario de contacto
*/
.contact-form {
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
}

.contact-form h3 {
    font-size: 1.5em !important;
}

.contact-form label {
    margin-top: 1rem;
}

.contact-form input,
.texto-detalle-curso input,
.pago-deposito input {
    font-size: 1rem;
    padding: .75rem;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--negro);
}

.contact-form textarea,
.texto-detalle-curso textarea {
    outline: none;
    border: none;
    border-bottom: 1px solid var(--negro);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    padding: .75rem;
    width: 100%;
}

.form-btn {
    width: 50%;
}

.error {
    color: var(--rojo);
    margin-top: -1rem;
    padding-bottom: 1rem;
    display: none;
}

.gracias {
    text-align: center;
    padding: 1rem 0;
    display: none;
}

.w100 {
    width: 99%;
}

.w49 {
    width: 48%;
    margin: 0 .1rem;
}

.w50 {
    width: 48%;
    margin: 0 .1rem;
}


/*
    Detalle cursos
*/

.titulo-curso {
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.img-detalle-curso {
    padding: 2rem;
}

.img-detalle-curso img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: top;
}

.texto-detalle-curso {
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #333;
}

.texto-detalle-curso h3 {
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 1rem;
}

.texto-detalle-curso p {
    margin-bottom: 1rem;
}

.texto-detalle-curso p span {
    font-weight: bolder;
}

.precio-curso {
    margin-top: 2rem;
}

.precio-curso span {
    font-size: 1.2em;
}

.descripcion-curso h3 {
    margin: 2rem 0;
}

.tipos-de-modalidades {
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.titulo-modalidades {
    color: var(--azul);
    font-size: 1.5em;
    padding-top: 4rem;
}

/*
    Pago curso
*/
.deposito-btn {
    cursor: pointer;
    color: #f2f2f2;
    background: var(--azul);
    padding: .5rem 3rem;
    border: none;
    border-radius: 18px;
    font-size: .9em;
    transition: background .5s;
}

.deposito-btn:hover {
    background: #0066cc;
}



.service-item {
    position: relative;
	flex-basis: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 2rem;
	border-radius: 10px;
	border: 2px solid var(--azul);
	/* background: -webkit-linear-gradient(to bottom, #004d99, #66b3ff, #cce6ff);
	background: linear-gradient(to bottom, #004d99, #66b3ff, #cce6ff); */
	margin: 0px 1rem;
    box-shadow: 8px 8px 14px rgba(0, 0, 0, 0.3);
}

.icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
	height: 100px;
	width: 100px;
	border: 3px solid var(--azul);
	border-radius: 50%;
	background-color: var(--blanco);
	display: flex;
	justify-content: center;
	align-items: center;
}

.icon img {
    height: 70%;
}

.service-item h3 {
	font-size: 1.5em;
	color: var(--azul);
	text-transform: uppercase;
    padding-top: 2rem;
}

.service-item p {
	font-size: 1em;
	margin-top: 0;
	line-height: 1.5;
	color: var(--azul);
	text-align: left;
}

.service-title {
	width: 100%;
	text-align: center;
}
.service-title hr {
	width: 30%;
	margin: 1rem auto;
}


.pago-tarjeta, .pago-deposito {
    margin: 0 1rem;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #333;
}

.pago-tarjeta h3, .pago-deposito h3 {
    text-align: center;
    text-transform: uppercase;
}

.footer-detalle-cursos {
    color: var(--blanco);
    background-color: var(--azul);
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* 

    Adapatación a dispositivos móviles

*/
@media (max-width: 768px) {

    .main {
        margin-top: 2rem;
    }

    .main-header {
        min-height: 70dvh;
    }

    /* .hero {
        min-height: 100%;
        background: fill / contain no-repeat url(../images/hero-image.jpg);
    } */
    
    .hero-title {
        position: absolute;
        top: 9rem;
        left: 0;
        width: 90%;
        padding: 0 2rem;
        z-index: 9;
    }

    #cursos, #eventos, #detalle-curso {
        padding: 2rem 1rem;
    }    

    #nosotros {
        padding: 2rem 1rem;
    }

    .contadores {
        margin: 2rem 0;
    }

    .home {
        display: grid;
    }

    .home .home-title,
    .home .hero-right {
        width: 100%;
    }

    .home .home-title {
        padding: 3rem 1rem;
    }

    .home .home-title a {
        padding: .5rem 1rem;
    }

    .home .form-cotiza {
        margin-top: 3rem;
        padding: 4rem 1rem;
    }

    .home .form-cotiza h2 {
        font-size: 1.2em;
    }

    .nosotros .nosotros-border {
        padding: 1rem;
    }

    .nosotros .nosotros-border a {
        margin-left: 18%;
    }

    #cursos, #eventos, .quienes-somos {
        padding: 2rem 1rem;
    }

    .swiper {
        height: auto;
    }

    #contacto {
        padding: 1rem;
    }

    .info-contacto {
        margin-bottom: 2rem;
    }
        
    .contact-form {
        order: 1;
    }

    .form-btn {
        width: 100%;
    }

}