:root {
    --color-white: #FFFFFF;
    --color-main: #313632;
    --color-dark: #6D6F72;
    --color-light: #EDEDED;
    --color-green: #6FA935;
}

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

body {
    width: 100%;
    height: 100%;
    background-color: var(--color-main);
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    font-size: 15px;
}

body.home {
    background-color: var(--color-dark);
}

/* GENERAL */

.op {
    opacity: .7;
}

.content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bg-green {
    background-color: var(--color-green);
}

.bg-main {
    background-color: var(--color-main);
}

.bg-light {
    background-color: var(--color-light);
}

.bg-dark {
    background-color: var(--color-dark);
}

.verde-txt {
    color: var(--color-green);
}

.verdeoscuro-txt {
    color: var(--color-main);
}nav

.grisclaro-txt {
    color: var(--color-light);
}

.grisoscuro-txt {
    color: var(--color-dark) !important;
}

.border-white {
    border: 1px solid white;
}

.marginoso {
    margin: 10px auto;
}

/* ----------------------------------Banners---------------------------------- */

.banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: var(--color-main);
}

.banner-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 0 45px;
}

.banner-nav > a {
    margin: auto 0;
}

.banner-nav img {
    display: block;
    height: 90px;
    object-fit: contain;
}

.banner-nav nav {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 45px 0 30px 0;
}

.banner-nav nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.05em;
    font-weight: 700;
}

.banner-nav nav a:last-child {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 45px;
    background-color: var(--color-green);
    border-radius: 22.5px;
}

.banner-nav button {
    display: none;
    width: 45px;
    height: 45px;
    background-color: var(--color-green);
    outline: none;
    border: none;
    border-radius: 10px;
    color: var(--color-white);
    font-size: 1.4em;
    cursor: pointer;
}

/* Mobile Nav */
/* .mob-nav {
    position: fixed;
    display: block;
    top: 0;
    right: 0;
    z-index: 50;
    width: 280px;
    height: 100vh;
    background-color: var(--color-main);
    translate: 100%;
    transition: translate 0.4s;
} */

/* Banner Content */
.banner-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto min-content;
    margin: 0 20px 15px 20px;
    width: calc(100% - 40px);
    height: calc(100% - 15px);
    border-radius: 22px 22px 0 22px;
    overflow: hidden;
}

.banner-content > img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
}

.banner-title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 3rem;
    width: 100%;
    height: 100%;
    color: var(--color-white);
}

.banner-title.index {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    padding-left: 6rem;
}

.banner-title h1 {
    max-width: 950px;
    text-align: center;
    font-size: 3.6em;
}

.banner-title.index h1 {
    display: block;
    text-align: start;
    font-style: italic;
    font-size: 3em;
    line-height: 1.35em;
    text-shadow: 2px 2px 8px black;
}

.banner-title p {
    display: block;
    max-width: 700px;
    font-size: 1.17em;
    line-height: 1.5em;
    text-shadow: 2px 2px 8px black;
}

.banner-btns {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    position: relative;
    justify-self: end;
    display: flex;
    gap: 20px;
    padding: 20px 0 0 20px;
    background-color: var(--color-main);
    border-radius: 22px 0 0 0;
}

.banner-btns::before {
    content: "";
    position: absolute;
    display: block;
    left: -40px;
    bottom: 0;
    z-index: 0;
    width: 40px;
    height: 22px;
    background-color: transparent;
    border-radius: 0 0 22px 0;
    box-shadow: 22px 0 0 var(--color-main);
}

.banner-btns::after {
    content: "";
    position: absolute;
    display: block;
    top: -40px;
    right: 0;
    z-index: 0;
    width: 22px;
    height: 40px;
    background-color: transparent;
    border-radius: 0 0 22px 0;
    box-shadow: 0 22px 0 var(--color-main);
}

.banner-btns a {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    z-index: 1;
    padding: 20px 12px 12px 25px;
    width: 290px;
    height: 85px;
    background-color: var(--color-dark);
    border-radius: 14px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
}

.banner-btns a:last-child {
    background-color: var(--color-white);
    color: var(--color-main);
}

.banner-btns p {
    font-size: 1em;
    font-weight: 700;
}

.banner-btns span {
    font-size: 0.8em;
}

.banner-btns i {
    align-self: end;
    font-size: 24px;
}

.h1-centre {
    text-align: center;
}

.calltoaction-cont {
    text-align: left;
    width: 50%;
    margin: auto auto auto 5%;
    color: white;
}

.calltoaction-cont .btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 440px;
}

.logo {
    background: url(../img/logo-gads.svg) no-repeat center center;
    background-size: 60%;
    width: 200px;
    height: 70px;
}

.nav-btn i {
    font-size: 20px;
    margin: 5px 0;
}

.nav-btn:hover, .nav-btn.active {
    opacity: .7;
}

/* BUTTONS */

.uibtn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;
    text-align: center;
    border-radius: 8px;
    color: white;
    margin: 0;
    font-size: 1em;
    cursor: pointer;
    font-weight: normal;
}

.uibtn:hover {
    background-color: white;
    color: var(--color-main);
    border: 1px solid white;
    transition: .4s all ease;
}

.info-btn {
    font-family: itc-avant-garde-gothic-pro, sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 40px;
    text-align: center;
    border-radius: 8px;
    color: var(--color-green);
    background-color: transparent;
    margin: 25px auto;
    font-size: 1em;
    cursor: pointer;
    font-weight: normal;
    border: 1px solid var(--color-green)
}

.info-btn:hover {
    color: white;
    background-color: var(--color-green);
    transition: .4s all ease;
}

/* ---------------------Laboratorios--------------------- */
h2.home {
    position: relative;
    display: block;
    width: max-content;
    margin: 0 0 10px 0;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 2em;
    font-style: italic;
}

h2.home::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background-color: var(--color-green);
    border-radius: 3px;
}

.home-lab {
    display: grid;
    grid-template-columns: 5fr 8fr;
    align-items: center;
    justify-items: center;
    gap: 90px;
    padding: 70px 105px 35px 105px;
    width: 100%;
    background-color: var(--color-main);
}

.lab__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 450px;
    color: var(--color-white);
}

.lab__info > p {
    margin: 20px 0;
    max-width: 380px;
    font-size: 1.05em;
    font-weight: 600;
    line-height: 1.8em;
}

.lab__button {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 20px 12px 12px 25px;
    width: 100%;
    height: 85px;
    background-color: var(--color-dark);
    outline: none;
    border: none;
    border-radius: 14px;
    color: var(--color-white);
    text-align: start;
    font-size: 16px;
    transition: background-color 0.25s;
    cursor: pointer;
}

.lab__button.selected {
    background-color: var(--color-green);
}

.lab__button p {
    font-size: 1em;
    font-weight: 700;
}

.lab__button span {
    font-size: 0.8em;
}

.lab__button i {
    align-self: end;
    font-size: 24px;
}

.lab__button.selected i {
    opacity: 0.7;
}

.lab__ema {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
    gap: 10px;
    margin-top: 5px;
    padding: 0 12px 0 25px;
    width: 100%;
    height: 58px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-white);
    border-radius: 14px;
    color: var(--color-white);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.lab__ema i {
    font-size: 24px;
}

/* Swipers */
.lab__swipers-cont {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    max-height: calc(100vh - 6rem);
    aspect-ratio: 28 / 25;
    border-radius: 22px;
    overflow: hidden;
}

.lab__swipers-cont .swiper {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.lab__swipers-cont .visible {
    opacity: 1;
    pointer-events: all;
}

.lab__swipers-cont .swiper-slide {
    position: relative;
    display: flex;
    align-items: end;
    padding: 0 3rem 3rem 0;
    width: 100%;
    height: 100%;
}

.lab__swipers-cont img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lab__swiper-text {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 5;
    gap: 10px;
    padding: 20px 9px 9px 25px;
    width: 100%;
    max-width: 500px;
    background-color: #000000B2;
    border-radius: 0 14px 14px 0;
    color: var(--color-white);
}

.lab__swiper-text span {
    margin-left: auto;
    padding: 7px 20px;
    background-color: var(--color-green);
    border-radius: 10px;
    font-size: 0.75em;
    font-weight: 700;
}

.lab__swipers-btn {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    z-index: 10;
    width: 45px;
    aspect-ratio: 1 / 1;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    text-shadow: 0 0 10px #31363280;
    font-size: 35px;
    translate: 0 -50%;
    cursor: pointer;
}

.lab__swipers-btn:last-child {
    left: unset;
    right: 0;
}

/* ------------------------Servicios------------------------ */
.home-services {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    background-color: var(--color-main);
    width: 100%;
}

.serv__texts {
    padding: 0 105px;
}

.serv__texts p {
    display: block;
    margin: 3.2rem 0 4rem 0;
    width: 100%;
    max-width: 700px;
    color: var(--color-white);
    font-size: 1em;
    font-weight: 700;
    line-height: 1.86em;
}

/* Swiper */
.serv__swiper-grid {
    display: grid;
    grid-template-columns: 45px 1fr 45px;
    gap: 1rem;
    padding: 0 1rem;
    width: 100%;
}

.serv__swiper-cont {
    position: relative;
    display: block;
    overflow: hidden;
}

.serv__swiper-cont .swiper {
    width: 100%;
    height: auto;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    box-shadow: 0 0 16px rgba(49, 54, 50, .3);
    border-radius: 14px;
}

.card img {
    height: 75px;
    margin: 20px auto;
}

.card h3 {
    display: block;
    margin: 20px auto;
    color: var(--color-main);
    text-align: center;
}

.card p {
    margin: 20px 0;
    width: 100%;
    color: var(--color-dark);
    line-height: 1.4em;
}

.serv__swiper-btn {
    align-self: center;
    display: block;
    width: 45px;
    aspect-ratio: 1 / 1;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    text-shadow: 0 0 10px #31363280;
    font-size: 35px;
    cursor: pointer;
}


.descriptivo {
    width: 50%;
    text-align: center;
    color: white;
}

.lab-icons {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 0;
}

.lab-icons div {
    text-align: center;
}

.lab-icons div img {
    height: 105px;
    margin: 20px;
}

.lab-icons div p {
    color: white;
    font-size: 1em;
    padding: 0 20px;
    width: 100%;
}

.disclaimer {
    margin: 40px auto;
    color: white;
}

.disclaimer a {
    color: white;
}

.bi-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    padding: 45px 0;
}

.bi-container .top {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
}

.bi-container .bottom {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
}

.perosonservicios div {
    width: 25%;
    padding: 0 20px;
}

/* Footer */
.footer-cont {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-rows: 45px 205px 205px min-content;
    width: 100%;
}

.footer-cont .top-bg {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    display: block;
    width: 100%;
    height: 100%;
}

.footer-cont .bottom-bg {
    grid-column: 1 / 4;
    grid-row: 3 / 5;
    display: block;
    width: 100%;
    height: 100%;
}

.footer-links {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    padding: 80px 0 80px 80px;
}

.footer-links li {
    list-style: none;
}

.footer-links h3 {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 1.1em;
}

.footer-links a {
    text-decoration: none;
    color: white;
    margin: 10px 0;
    display: block;
    cursor: pointer;
    pointer-events: all;
    opacity: .7;
    z-index: 100;
}

.footer-links a:hover {
    opacity: 1;
}

.footerlogo {
    grid-column: 3 / 4;
    grid-row: 3 / 5;
    justify-self: center;
    display: block;
    margin: 80px 0;
    height: 90px;
    object-fit: contain;
}

.contacto-card {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 320px;
    height: 410px;
    background-color: var(--color-green);
    border-radius: 14px;
    color: var(--color-white);
    text-align: center;
}

.contacto-card a {
    width: 90%;
    font-size: .9em;
    margin: 5px auto;
}

.contacto-card h3 {
    font-weight: normal;
    margin: 10px auto;
}

.contacto-card p {
    margin: 20px auto;
    font-size: .8em;
}

.contacto-card i {
    margin: auto 10px auto 0;
}




.footer {
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.footer li {
    list-style: none;
}

.footer h3 {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 1.1em;
}

.footer a {
    text-decoration: none;
    color: white;
    margin: 10px 0;
    display: block;
    cursor: pointer;
    pointer-events: all;
    opacity: .7;
    z-index: 100;
}

.footer a:hover {
    opacity: 1;
}

.noesmipolitica {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    width: 50%;
    height: max-content;
    background-color: white;
    box-shadow: 0 0 16px rgba(49, 54, 50, .3);
    border-radius: 14px;
}

.noesmipolitica img {
    height: 75px;
    margin: 20px auto;
}

.noesmipolitica h3 {
    display: block;
    margin: 20px auto;
    color: var(--color-main);
    font-size: 1.5em;
}

.noesmipolitica p {
    color: var(--color-dark);
    margin: 20px auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.5em;
}

/* De admin.css */

.wrapwrap {
    width: 100%;
    background-color: var(--color-light);
    padding: 5%;
    margin-top: -1px;
}

.wrap-master {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: calc(100% - 80px);
    height: max-content;
    margin: auto;
}

.curso-card {
    margin: auto;
    padding: 15px 5px 5px 5px;
    width: 100%;
    background-color: white;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    text-align: center;
}

.curso-card .titulo {
    width: 90%;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1em;
    margin: 20px auto;
    color: var(--color-main);
}

.curso-card .img-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    width: 90%;
    height: 200px;
    margin: auto;
}

.curso-card .img-cont img {
    width: 150%;
    margin: auto;
    display: block;
    text-align: center;
}

.detalle-curso-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.informacion {
    grid-column: 1;
    grid-row: 1/3;
    line-height: 1.5;
    padding: 0 40px;
}

.informacion h3 {
    margin-bottom: 20px;
}

.informacion p {
    margin-bottom: 40px;
}

.temariodetail-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding: 40px;
    width: 90%;
    height: max-content;
    background-color: var(--color-white);
    box-shadow: 0 0 16px rgba(49, 54, 50, .3);
    border-radius: 14px;
}

.temariodetail-card h3 {
    text-align: center;
    /* margin: auto auto 20px auto; */
}

.temario {
    line-height: 2;
}

.detalles-curso table {
    border-collapse: collapse;
}

.detalles-curso table tr {
    height: 55px;
    border-bottom: 1px solid var(--color-light);
}

.nosotros {
    margin: 120px auto 60px auto;
    width: 50%;
    color: var(--color-white);
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6em;
}

.mision {
    line-height: 1.5;
    padding: 0 10%;
}

/* Contact */
.contact {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content auto;
    width: 100%;
    min-height: 100vh;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    padding: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--color-light);
}

.contact-form img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.contact-inputs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 60px 20px 0;
    width: 100%;
    height: 100%;
}

.contact-inputs h1 {
    position: relative;
    display: block;
    width: max-content;
    margin: 0 0 10px 0;
    color: var(--color-main);
    text-transform: uppercase;
    font-size: 2em;
    font-style: italic;
}

.contact-inputs h1::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background-color: var(--color-green);
    border-radius: 3px;
}

.contact-inputs p {
    margin: 20px 0 60px;
}

.contact-inputs div {
    display: grid;
    grid-template-columns: 2fr 5fr;
    align-items: center;
    row-gap: 1rem;
}

.contact-inputs label {
    font-size: 1.1em;
    font-weight: 700;
}

.contact-inputs input,
.contact-inputs textarea {
    display: block;
    padding: 0 25px;
    width: 100%;
    height: 50px;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--color-main);
    border-radius: 12px;
    color: var(--color-main);
    font-size: 17px;
    transition: border 0.25s, color 0.25s;
}

.contact-inputs textarea {
    padding: 15px 25px;
    height: 110px;
    font-family: inherit;
    font-size: 16px;
    resize: none;
}

.contact-inputs input:focus,
.contact-inputs textarea:focus {
    border: 2px solid var(--color-green);
    color: var(--color-green);
}

.contact-inputs button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 0 auto;
    padding: 0 25px;
    width: 170px;
    height: 60px;
    background-color: var(--color-main);
    border-radius: 14px;
    color: var(--color-white);
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.contact-inputs button i {
    font-size: 1.4em;
}


/* ----------------------------------------Card---------------------------------------- */
.card__cont {
    display: block;
    padding: 6rem 0;
    width: 100%;
    background-color: var(--color-main);
}

.p-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    background-color: var(--color-light);
    border-radius: 30px;
    overflow: hidden;
}

/* Intro */
.card__intro {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 59px 59px;
    width: 100%;
}

.card__banner {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 1.5rem;
    width: 100%;
    aspect-ratio: 13 / 8;
    background: url('../img/home-banner.png') center center no-repeat;
    background-size: cover;
}
.card__banner img {
    display: block;
    height: 55px;
    object-fit: contain;
}
.card__banner h4 {
    margin: 0.65rem 0;
    color: var(--color-white);
    text-align: end;
    font-size: 17px;
    font-weight: 900;
}

.card__photo {
    grid-column: 1 / 1;
    grid-row: 2 / 4;
    justify-self: center;
    position: relative;
    display: block;
    padding: 3px;
    height: 118px;
    aspect-ratio: 1 / 1;
    background-color: var(--color-light);
    border-radius: 50%;
}
.card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.card__photo button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
    width: 33px;
    height: 33px;
    background-color: var(--color-dark);
    outline: none;
    border: none;
    border-radius: 50%;
    color: var(--color-light);
    transition: background-color 0.3s ease;
}
.card__photo a:hover {
    background-color: var(--color-teal);
}

/* Contact */
.card__director {
    margin: 1.2rem 0;
    text-align: center;
    font-weight: 900;
    line-height: 1.5em;
}
.card__director h1 {
    margin: 0;
    color: var(--color-main);
    font-size: 1.1em;
}
.card__director h2 {
    color: var(--color-dark);
    font-size: 1.1em;
    font-weight: 400;
}

.card__links {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    align-items: center;
}
.card__links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 70px;
    height: 70px;
    background-color: var(--color-green);
    border-radius: 15px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.card__links i {
    font-size: 1.4em;
}
.card__links span {
    font-size: 0.7em;
}
.card__links a:hover {
    opacity: 0.75;
}

.card__sm {
    display: flex;
    justify-content: center;
    gap: 2.3rem;
    margin: 2.5rem 0;
}
.card__sm a {
    color: var(--color-main);
    font-size: 1.5em;
    transition:  color 0.3s ease;
}
.card__sm a:hover {
    color: var(--color-teal);
}

.card__save {
    display: block;
    height: 55px;
    width: calc(100% - 4rem);
    background-color: var(--color-main);
    outline: none;
    border: none;
    border-radius: 27.5px;
    color: var(--color-light);
    font-size: 1.1em;
    font-weight: 900;
}

.card__spacer {
    display: block;
    margin: 3rem 0;
    width: calc(100% - 2rem);
    height: 2px;
    background-color: #6FA93520;
    border-radius: 1px;
}

/* About */
.card__about {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    font-weight: 400;
    line-height: 1.5em;
}
.card__about h2 {
    margin: 0;
    color: var(--color-green);
    text-align: center;
    font-size: 1.3em;
    font-weight: 400;
}
.card__about h3 {
    margin: 1rem 0 0.6rem 0;
    color: var(--color-dark);
    font-size: 1em;
    opacity: 0.6;
}
.card__about > div {
    display: block;
    padding: 1.5rem;
    width: 100%;
    background-color: var(--color-light);
    box-shadow: 2px 2px 5px #00000014;
    border-radius: 15px;
}
.card__about div.img {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 1.5rem;
}
.card__about div.qr {
    padding: 0;
    overflow: hidden;
}
.card__about img {
    display: block;
    width: 100%;
    object-fit: contain;
}
.card__about .large {
    min-height: 160px;
}
.card__about p {
    color: var(--color-main);
    font-size: 1em;
}
.card__about span {
    color: var(--color-dark);
    font-size: 0.9em;
}
.card__about b {
    font-weight: 700;
}

/* Atlantian */
.card__atlantian {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 3rem 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    text-decoration: none;
}
.card__atlantian span {
    color: #6D6F72A0;
    font-size: 1.1em;
    font-weight: 900;
}
.card__atlantian img {
    display: block;
    height: 22px;
    object-fit: contain;
}


/* Responsive */

@media screen and (max-width: 1200px) {
    .banner-nav img {
        height: 80px;
    }
    .banner-nav nav {
        gap: 35px;
    }
    .home-lab {
        padding: 70px 30px 35px 30px;
    }
    .serv__texts {
        padding: 0 30px;
    }
}

@media screen and (max-width: 950px) {
    body {
        font-size: 14px;
    }
    .banner-nav {
        padding: 0 20px 0 30px;
    }
    .banner-nav img {
        height: 50px;
    }
    .banner-nav nav {
        gap: 30px;
    }
    .banner-title.index {
        padding-left: 3rem;
    }    
    h2.home {
        width: min-content;
        line-height: 1.3em;
    }
    .home-lab {
        gap: 70px;
    }
    .wrap-master {
        width: 100%;
    }
    .contact-form {
        grid-template-columns: 3fr 4fr;
    }
    .contact-inputs {
        padding-right: 30px;
    }
}

@media screen and (max-width: 768px) {
    /* Banner */
    .banner-nav {
        position: relative;
        align-items: center;
        z-index: 10;
        padding: 20px 20px 20px 30px;
    }
    .banner-nav button {
        display: block;
    }
    .mob-nav {
        position: absolute;
        display: block;
        right: 0;
        bottom: 0;
        z-index: 5;
        height: 0;
        border-radius: 0 0 0 14px;
        translate: 0 100%;
        transition: height 0.3s;
        overflow: hidden;
    }
    .banner-nav nav {
        flex-direction: column;
        padding: 2rem 1.5rem;
        background-color: var(--color-main);
        overflow: hidden;
    }
    .banner-btns {
        padding: 20px 0 0 0;
        width: 100%;
    }
    .banner-btns::before {
        top: -60px;
        left: 0;
        bottom: unset;
        width: 22px;
        height: 60px;
        border-radius: 0 0 0 22px;
        box-shadow: 0 40px 0 var(--color-main);
    }
    .banner-btns a {
        width: 100%;
    }
    .home-lab {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-form {
        grid-template-columns: 1fr;
        padding: 40px 30px 70px 30px;
    }
    .contact-form img {
        height: 300px;
    }
    .contact-inputs {
        padding-right: 0;
    }
    .contact-inputs button {
        margin-top: 2rem;
        width: 140px;
        height: 50px;
    }
    .footer-cont {
        grid-template-columns: 1fr 1fr;
    }
    .footer-links {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        padding: 40px 0 40px 40px;
    }
    .footerlogo {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        justify-self: end;
        margin: 40px 0;
        padding-right: 40px;
    }
    .contacto-card {
        grid-column: 1 / 3;
        grid-row: 2 / 4;
        justify-self: center;
        width: 90%;
    }
    /* Other */
    .calltoaction-cont {
        text-align: left;
        width: 70%;
    }
    .lab-icons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .bi-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        padding: 20px 0;
    }
    .perosonservicios div {
        width: 100%;
        padding: 0 20px;
    }
    .mobile-span {
        grid-column: 1/3;
        margin-top: 40px;
    }
    .wrap-master {
        grid-template-columns: 100%;
        width: 100%;
    }
    .detalle-curso-grid {
        grid-template-columns: 100%;
    }
    .calltoaction-cont {
        width: 90%;
        margin: auto;
    }
    .calltoaction-cont .btns {
        width: 100%;
        margin: auto;
    }
    .perosonservicios div {
        padding: 0;
    }
    .logo {
        background: url(../img/logo-gads.svg) no-repeat center center;
        background-size: 80%;
        width: 100px;
        height: 70px;
    }
    nav .btns-cont {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .btns-cont {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
        margin: 20px auto;
    }
    .nav-btn {
        font-size: .9em;
        margin: 0 10px 0 0;
    }
    .nav-btn i {
        font-size: 16px;
        margin: 5px 0;
    }
    .nav-btn:hover, .nav-btn.active {
        opacity: .7;
    }
    h1 {
        font-size: 1.4em;
    }
    .calltoaction-cont .btns {
        flex-direction: column;
        width: 100%;
        margin: auto;
    }
    .calltoaction-cont .btns .uibtn {
        margin-top: 20px;
    }
    .lab-icons div img {
        height: 70px;
        margin: 20px;
    }
    .nosotros {
        margin: 40px auto;
        width: 90%;
    }
    .noesmipolitica {
        padding: 20px;
        width: 90%;
    }
    .footer {
        padding: 240px 40px 40px 40px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        color: white;
        font-size: .8em;
    }
    .temariodetail-card {
        width: 100%;
    }
    .informacion {
        padding: 0 5%;
    }
}

@media screen and (max-width: 480px) {
    .banner {
        height: auto;
        min-height: 100vh;
    }
    .banner-title.index h1 {
        font-size: 2em;
    }
    .banner-title p {
        font-size: 1.07em;
    }
    .banner-btns {
        flex-direction: column;
    }
    .lab__swipers-cont {
        aspect-ratio: 25 / 28;
    }
    .lab__swipers-cont .swiper-slide {
        padding: 0;
    }
    .lab__swiper-text {
        gap: 16px;
        padding: 15px;
        border-radius: 0;
    }
    .serv__swiper-grid {
        padding: 0 0 2rem 0;
    }
    .card {
        padding: 20px 30px;
    }
    .card__cont {
        padding: 0;
    }
    .p-card {
        border-radius: 0;
    }
    .footerlogo {
        height: 60px;
    }
}

@media screen and (max-width: 320px) {
    body {
        font-size: 12px;
    }
    .banner {
        width: 100%;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-repeat: none;
        background-position: bottom center;
        background-size: cover;
    }
    .descriptivo {
        width: 90%;
    }
    .lab-icons {
        display: grid;
        grid-template-columns: 100%;
    }
    .mobile-span {
        grid-column: 1;
        margin: auto;
        }
}