:root{
    --bg-color: #FAF9F9;
    --light-color: #fff;
    --main-color:#516AC3; 
    --main-color-85: rgb(81 106 195 / 85%);   
    --second-color: #5DEBBD;
    --dark-color: #1E2744;
    --gray-color: #757575;
    --max-width-container: 120rem; /* 1920px */
    --primary-font: 'Archivo', sans-serif;
    --secondary-font: 'Lato', sans-serif;
    --third-font: 'League Gothic', sans-serif;
    --padding-top-header: 72px;
    --padding-top-header-mobile: 77px;
}

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

body {
    font-family: var( --primary-font );
    line-height: 1.6;
    color: var(--gray-color);
    background-color: var(--bg-color);
    padding-top: var(--padding-top-header);    
}

.visible {display:block !important;}
.hidden {display:none !important;}

body.home {
    padding-top:0;
}

h1,h2,h3,h4,h5,h6 {
    font-family:var(--secondary-font);
    color:var(--dark-color);
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--max-width-container);
}

@media (min-width: 1200px) {
    .container {
        padding-left: 3.75rem;
        padding-right: 3.75rem;
    }
}

/* Header */
.header {
    background: var(--main-color);
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.header-top {
    padding:1rem;
}
.header-top-content {
    max-width: var(--max-width-container);
    display: flex;
    justify-content: end;
    gap:1rem;
    margin: auto;
}

.header-buttons {
    display: flex;
    gap:.5rem;
}
.header .btn {
    padding:.4rem 2rem !important;
    font-size:.9rem;
    line-height:1rem;
}

.header {
    transition: all .5s ease;
}
.header.invert {
    background:var(--main-color-85);
}

.page-template-page-aboutus .header.invert {
    background:var(--main-color-85);
}

.header .header-content .container {
    display: flex;    
    align-items: center;
    max-width: var(--max-width-container);
    margin: auto;
    padding-top:.8rem;
    padding-bottom:.8rem;
}

.header-navbar-desktop {
    background-color:rgba(255,255,255,0.1);
    border-radius:40px;
    padding:.2rem 2rem;
    display: flex;
    margin-left:2rem;
}

.header-navbar-desktop a {
    text-decoration: none;    
    padding: 5px 15px;
    border-radius:20px;
    color:var(--light-color);
    font-size:14px;
    font-family:var(--secondary-font);
    
}
.header-navbar-desktop a.active {
    color:var(--light-color);
    background-color:var(--main-color);
    font-family:var(--secondary-font);
}

.header .menu-trigger-container {    
    align-items: center;
}

.header-right {
    display: flex;
    width: 100%;
    justify-content: right;
}

.header__langchange {
    display: flex;
    align-items: center;
    gap: .3rem;
    color:var(--light-color);   
    padding:0 1rem;
}
.header__langchange a {
    text-decoration:none;
    text-transform:uppercase;
    padding:5px 0;
    font-size:14px;
    color:var(--light-color);
    border-radius:20px;
}
.header__langchange a:nth-child(1)::after{
    display: inline-block;
    content: '/';
    padding:0 0 0 6px;
    color:var(--light-color);    
}
.header__langchange a:hover{
    color: var(--second-color);
}
.header__langchange a.active {    
    color: var(--second-color);
}


.logo {
    width:100px;    
    margin-left:2rem;
}

.logo svg {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
}

.btn {
    font-family: var(--primary-font);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn--unete {
    border:1px solid var(--dark-color);
    background-color:var(--dark-color);
    color:var(--light-color);
    text-align: center;
    text-transform:uppercase;
}
.btn--unete:hover {
    background-color:var(--second-color);
    color:var(--dark-color);
    border:1px solid var(--second-color);
}

.btn--donar {
    background-color:var(--second-color);
    color:var(--dark-color);
    text-align: center;
    text-transform:uppercase;
}
.btn--donar:hover {
    background-color:var(--dark-color);
    color:var(--light-color);
}

.contact-btn {
    font-family: var(--primary-font);
    background: #4A90E2;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #357ABD;
}

/* Hero Section */
.hero {    
    background-color:var(--main-color);
    padding: 80px 0;
    text-align: left;
    position: relative;
    overflow: hidden;    
    margin:auto;
    padding-top: calc( var(--padding-top-header) + 20px );    
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width:var(--max-width-container); */
    margin:auto;
    text-align:left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-family:var(--third-font);
    text-transform: uppercase;
    font-size: 12.5rem;
    line-height: 1;
    color:var(--light-color);
    text-align:left;
    margin:0;
    transition: all 0.3s;
}

@media screen and (max-width: 1510px) {
    .hero h1 {
        font-size: 11.6rem;
    }
}

@media screen and (max-width: 1400px) {
    .hero h1 {
        font-size: 11rem;
    }
}

@media screen and (max-width: 1300px) {
    .hero h1 {
        font-size: 10rem;
    }
}


@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 9rem;
    }
}



.hero-subtitle {    
    font-size:4rem;
    letter-spacing:-.2rem;
    font-weight: 300;
    margin-top:0;
    margin-bottom: 30px;
    color:var(--light-color);
    font-family: var(--secondary-font);
    text-align:left;
    font-style: italic;
}

.hero-description {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    text-align:left;
    color:var(--light-color);
    line-height:2;
}

.hero-description a {
    font-weight: bold;;
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--light-color);
}
.hero-description a:hover {
    color: var(--second-color);
}

.hero .hero-image {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    background-image: url('../banners/LJU_Home_desktop.jpg');
    height:744px;
    margin-top: 40px;
}

.hero-cards-section {
    position:relative;
    height:600px;    
}
.hero-banner-mobile {
    display: none;
}
.hero-banner {
    width: 100%;
    position:absolute;
    top:100px;
}

.hero-cards {
    position:absolute;
    top:0;
    left:0;
    width:100%;    
    margin:auto;
    z-index:2;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.hero-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: var(--max-width-container);
    margin:auto;
}

.hero-card {    
    background-color: var(--main-color-90);    
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    transition: transform 0.3s, background 0.3s;
}

.hero-card:hover {
    transform: translateY(-5px);
    background-color: var(--main-color);
}
.hero-card .hero-card-icon {
    display: none;
}

.hero-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:var(--light-color);
}

.hero-card p {
    font-size: 1.2rem;    
    color:var(--light-color);
}

 .recaptcha-icon {
    display: none;
    background:#fff;
    width:70px;
    height:70px;
    position:fixed;
    right:0;
    bottom:10%;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding:1rem;
    z-index:100;
}



/* HOME NETWORK SECTION */
.network-section {
    position: relative;
    margin-bottom:4rem;
    background:url('../svg/LJU_Web_V6-05.svg') no-repeat;
    background-position: left top;
}

.network-content {
    display: flex;;
    position: relative;
    z-index: 2;    
    flex-direction:column;
    align-items:center;
    justify-content: center;
    height:100%;
}

.network-content h3 {
    font-size:2.3rem;
    line-height: 1.5;
    margin:6rem 0;
    font-weight: bold;
    text-align: justify;
}

.network-card {
    padding:1rem;
    border-radius:2rem;
    background-color:var(--main-color);
    display: flex;
    flex-direction: row;
    gap:1rem;

}
.network-card img {
    width: 50%;
    border-radius: 1rem;
}
.network-card .network-card-text {
    padding:2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.network-card h2.title {
    font-size: 2.5rem;    
    font-weight: 700;    
    color:var(--light-color);
    font-family: var(--secondary-font);
    line-height:1;
    margin:1rem 0 1rem 0;
}
.network-card p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color:var(--light-color)
}

.network-card .directory-btn {
    font-family:var(--primary-font );
    font-size:1.2rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    background: var(--dark-color);
    color: var(--light-color);
    padding: .6rem 2rem;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
}

.network-card  .directory-btn:hover {
    background: #45B7B8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}



/* VIDEOS SECTION */
.videos-header {
    background-image:url(../banners/LJU_Videos_desktop.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    height:336px;
    position: relative;    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.videos-header .container {
    width: 100%;;
    max-width: var(--max-width-container);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.videos-header h1 {    
    color:var(--light-color);
    font-size:4rem;
    font-weight: 700;
    font-style:italic;
    max-width: var(--max-width-container);
    padding:2rem 0;
}

.videos-section .section-title {
    text-align:left;
    font-size:2.5rem;
    font-weight: 700;    
    margin-top:2rem;
    font-style:italic;
}
.videos-section .section-subtitle {
    text-align:left;
    font-size:1.4rem;        
    margin:0 auto 2rem auto;
}
.videos-section .videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-direction:column;
    gap:1rem;
    margin-bottom:2rem;
}
.article-card {
    display: flex;
    gap:1rem;
    flex-direction:column;
    margin: 2rem 0;
    transition: all 0.3s;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.article-card:hover .play-button {
    fill:var(--second-color );
}
.videos-section .videos-grid .article-card .card-link {
    display: flex;
       
    flex-direction:column;
    text-decoration: none;
}
.videos-section .videos-grid .article-card .card-image {
    width: 100%;
}
.videos-section .videos-grid .article-card .card-content {
    width: 100%;
    padding:0;
}
.videos-section .videos-grid .article-card .card-content h3 {
    font-size:1.2rem;
    margin:0;
}


.immigration-home h2 {
    font-size:2rem;
    font-family:var(--first-font);
    
    margin-bottom:1rem;
}


/* Immigration Section */
.immigration-header {
    background-image:url(../banners/LJU_Historias_desktop.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    height:336px;
    position: relative;    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-position-x: center;

}

.immigration-header .container {
    width: 100%;;
    max-width: var(--max-width-container);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.immigration-header h1 {    
    color:var(--light-color);
    font-family:var(--third-font);
    font-size:6rem;
    text-transform:uppercase;
    max-width: var(--max-width-container);
    padding:2rem 0;
}

.immigration-section .section-title {
    text-align:left;
    font-size:2.5rem;
    font-weight: 700;  
    margin-top:2rem;
    font-style:italic;
}
.immigration-section .section-subtitle {
    text-align:left;
    font-size:1.4rem;        
    margin:0 auto 2rem auto;
}
.immigration-section a {
    text-decoration: none;;
}
.immigration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.immigration-card {
    overflow: hidden;
}
.immigration-card a {
    text-decoration: none;
}
.immigration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height:320px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {    
    fill: var(--light-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-button:hover {
    fill:var(--second-color );
}

.card-content {
    padding: 25px;
}

.card-content a {
    text-decoration: none;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.1;
}

.card-content p {
    font-family:var(--secondary-font);
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.2;
}
.card-content a.read-more {
    color:var(--dark-color);
    display: flex;
    width: 100%;
    align-items:flex-end;
    flex-direction:column;
    padding:1rem 0;
}
.card-content a.read-more:hover {
    text-decoration:underline;
}

.view-more-btn {
    display: block;
    width: fit-content;
    margin: 2.5rem auto;
    background: var(--main-color);
    color: var(--light-color);
    font-family: var(--primary-font);
    padding: 15px 60px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background: var(--second-color);
    transform: translateY(-2px);
    color:var(--dark-color);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.partners-section h2 {
    font-size: 3rem;    
    font-weight: 700;
    letter-spacing:-.2rem;
    color: var(--main-color);
    font-family: var(--secondary-font);
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: var(--max-width-container);
    margin: 0 auto;
}

.partner-logo {
    width: 150px;
    height: 150px;    
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.1);
}
.partner-logo img {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact-section {
    background: var(--main-color);
    color: white;
    padding: 80px 0;
    scroll-margin-top:88px;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width:var(--max-width-container);
    margin:auto;
    vertical-align: top;
    padding:0 6rem;
}

.contact-content .contact-text {
    width: 50%;
}

.contact-text h2 {
    color:#fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

.contact-text .highlight {
    font-weight: 700;
    display: block;
}

.contact-text p {
    font-size: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    padding: 0 40px;
    border-radius: 20px;
    width: 50%;
}

.gfield {
    margin-bottom: 20px;
}

.gfield_label {
    display: none;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;

}

.gfield input,
.gfield textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background: rgba(255,255,255,0.9);
    font-size: 16px;
    transition: all 0.3s;
    font-family: var(--primary-font); 
}

.gfield textarea {
    max-height: 120px;

}

.gfield input:focus,
.gfield textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.gfield textarea {
    resize: vertical;
    min-height: 120px;
}

.gfield_error input {
    border:1px solid red;
}
.gform_validation_errors {
    display: none;
}
.gform_validation_errors ol {
    display: none;
}

.gform_button {
    font-family: var(--primary-font);
    background: var(--second-color);
    font-weight: 600;
    font-size: 1rem;
    color: var(--light-color);
    padding: 15px 60px;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    display: block;;
}

.gform_button:hover {
    background: #45B7B8;
    transform: translateY(-2px);
}

#contacto .gform_button {
    background: var(--second-color);    
    color: var(--dark-color);
}

#contacto .gform_button:hover {
    background: var(--dark-color);
    color: var(--light-color);
}


/* Footer */
.footer {
    background-color:var(--dark-color);
    background-image: url(../banners/LJU_Footer_Desktop.png);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin:auto;
    max-width:var(--max-width-container);

}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4A90E2;
}
.footer-section ul {
    list-style:none;
}

.footer-section .footer-bottom-menu li a {
    font-size:.8rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.2rem;
}

.footer-section a:hover {
    color: var(--second-color);
}

.footer-logos {
    display: flex;
    align-items:center;
    justify-content: center;;
    gap:2rem;
    width: 100%;
}
.footer-logos .footer-logo {
    height:80px;
}

.footer-logos .footer-logo-lju {
    width: 100px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: white;
    text-decoration: none;
    transition: all 0.3s;
}


.social-link:hover {
    background: #4A90E2;
    transform: translateY(-2px);
}

.social-icon:hover {
    fill: var(--main-color);
    transform: translateY(-2px);
}

.single-page {
    margin: 50px auto;
    max-width: 800px;
}
.single-page h1 {
    text-transform: uppercase;
    font-size:2rem;
    margin-bottom:2rem;
}
.single-page h2 {
    font-size:1rem;
    margin-bottom:1rem;
}
.single-page h3,
.single-page h4 {
    font-size:1rem;
    margin:1rem 0;
}

.header .menu-trigger-container {
        display: flex;
        justify-content: start;
    }
    .menu-trigger {
        -webkit-appearance: button;
        padding: 0;
        border: none;
        background: none;
        cursor:pointer;
    }
    .menu-trigger .icon--menu {
        width:35px;
        fill: var(--light-color)
    }

    .nav {        
        position: fixed;
        top: 0;
        left: 0;        
        max-width: 100%;
        bottom: 0;
        z-index: 100;
        overflow: auto;
        background-color: rgba(0,0,0,.5);
        transition: transform .3s;
        transform: translate(-100%, var(--padding-top-header) );
        width:100vw;
        padding:0;
    }
    .nav.nav-active {
        transform: translate(0%, var(--padding-top-header));
    }
    .nav .nav-container{        
        margin:auto;
        height: 100%;
        position:relative;
    }
    .nav .btn-container {       
        margin-top:4rem;
        display: flex;
        border-bottom:0;
        flex-direction:column;
        justify-content: center;
        gap:1rem;  
        padding:2rem;  
        border-bottom:0 !important;
    }

    .nav .btn-container .btn {
        width: 100%;
        text-align: center;
        display: block;
        padding:.8rem 0 !important;
        font-size:1.2rem;
    }

    .nav .btn-container .btn--unete {
        border:1px solid var(--second-color);
        background-color:var(--dark-color);
        color:var(--light-color);
        text-align: center;
        text-transform:uppercase;
    }
    .nav .btn-container .btn--unete:hover {
        background-color:var(--second-color);
        color:var(--dark-color);
        border:1px solid var(--second-color);
    }
    .nav .btn-container .btn--donar {
        background-color:var(--second-color);
        color:var(--dark-color);
        text-align: center;
        text-transform:uppercase;
    }
    .nav .btn-container .btn--donar:hover {       
        color:var(--light-color);        
        background-color:var(--main-color);
        border:1px solid var(--main-color);
    }

    .nav .nav-close-container {
        display: flex;
        flex-direction: row;
        margin-bottom: 20px;
        justify-content: space-between;
        height: 100%;
    }
    .nav .nav-logo {
        width: 70px;
        display: block;
    }
    .nav-close {
        display: none;
        border-radius: 0;
        padding: 5px;
        width: 25px;
        height: 52px;        
        cursor: pointer;
        border:0;
        background:none;
    }    
    .nav-close svg {
        fill:var(--light-color);
    }
    .nav .main-menu-container {
        background-color:var(--dark-color);
        height:100%;
    }
    .nav .main-menu {        
        width: 20%;
        background-color:var(--dark-color);
        list-style:none;
        position: relative;    
        height:100%;    
    }
    .nav .main-menu > li {
        padding:1rem;
        border-bottom:1px solid #314677;
    }
    .nav .main-menu li a {
        display: flex;
        text-decoration: none;
        color: #fff;
        font-size: 1.3rem;
        padding: .5rem 0;
        gap:1.3rem;
        text-align: left;
        text-transform: uppercase;        
    }
    .nav .main-menu li a:hover {
        color: var(--second-color);
    }

    .main-menu li.menu-item-has-children > a::after {
        content:'→';
        display: block;
    }
    /* .main-menu li.menu-item-has-children:hover > ul {
        display: block;
    } */
    .main-menu li.menu-item-has-children > ul {
        position: absolute;
        left: 100%;
        top: 0;
        list-style:none;
        background-color: rgba(45,64,108,90%);        
        width: 100%;
        height: 100%;
        display: none;
    }
    .main-menu li.menu-item-has-children > ul > li{
        padding:1rem;
        border-bottom:1px solid #4b6aa4;
    }    





/* Animations */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



/* Page ABOUT US */
.page-template-page-aboutus {
    padding:0;
    margin:0;
}
.page-template-page-aboutus .header {
    background:transparent;
}
.hero-aboutus {
    background:url(../banners/LJU-V6-AboutUs.jpg) no-repeat center;    
    text-align: left;
    position: relative;
    overflow: hidden;    
    margin:auto;
    min-height:85vh;
    background-size:cover;
    padding-top:var(--padding-top-header)
}
.hero-aboutus .hero-aboutus--container {
    margin:0 auto;
    max-width:var(--max-width-container);
    padding:4rem 1rem 2rem 1rem;
}

.hero-aboutus h1 {
    color:var(--light-color);
    font-family: var(--third-font);
    font-size:6rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-aboutus p {
    color:var(--light-color);
    font-size:1.2rem;
    max-width:600px;
    margin-top:1rem;
}
.hero-aboutus strong {
    color: var(--second-color);
}

.aboutus-whoweare {
    background-color:var(--main-color);
    background-image:url(../svg/LJU_Web_V6-02.svg);
    background-repeat:no-repeat;
    background-position: left top;
    color:var(--light-color); 
    position: relative;  
    min-height: 400px;   
}
.aboutus-whoweare::before {
    content:'';
    display: block;
    position: absolute;
    right:0;
    top:0;
    width: 100%;
    height: 100%;
    background-image:url(../svg/LJU_Web_V6-03.svg);
    background-repeat: no-repeat; 
    background-position: right top;   
}
.aboutus-whoweare::after{
    content: '';
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg,rgba(17, 229, 181, 1) 0%, rgba(80, 106, 193, 1) 80%);
    position: absolute; 
    z-index: 1;
    bottom:0;
    left:0;
}
.aboutus-whoweare .aboutus-whoweare--container {
    max-width:600px;
    margin:auto;
    padding:4rem 2rem 7rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aboutus-whoweare h2 {
    font-size:3rem;
    color:var(--second-color);
    font-weight: 700;
}
.aboutus-whoweare p {
    font-size:1.4rem;
    margin-top:1rem;
    line-height: 1.4;
}


.aboutus-contactus {
    padding:2rem 0;
    position: relative;
    background-image:url(../svg/LJU_Web_V6-04.svg);
    background-repeat:no-repeat;
    background-position: left center;
    background-size:25%;
}
.aboutus-contactus::after{
    content:'';
    position:absolute;
    top: 0;
    right:0;
    background-image:url(../svg/LJU_Web_V6-05.svg);
    background-repeat:no-repeat;
    background-position: right center;
    background-size:100%;
    width:25%;
    height:100%;
    display: block;
}
.aboutus-contactus h2 {
    font-size:3rem;
    line-height: 1;
    color:var(--dark-color);
    font-weight: 700; 
    text-align: center;
    margin-bottom:2rem;
}

.aboutus-contactus p {
    text-align: center;
    font-size:1.4rem;    
    color:var(--dark-color);
    margin-bottom:2rem;
}

.aboutus-contactus .aboutus-contactus--content {
    max-width: 600px;
    margin:auto;
    padding:2rem;
}

.aboutus-contactus--form {
    max-width:600px;
    margin:0 auto;    
}
.aboutus-contactus--form input[type="text"],
.aboutus-contactus--form input[type="email"],
.aboutus-contactus--form input[type="tel"],
.aboutus-contactus--form textarea {
    font-size:1rem;
    border-radius: 1rem;
    border: 1px solid var(--main-color);
}

/* Responsive Design */

@media (max-width: 480px) {

    body {
        padding-top: var(--padding-top-header-mobile);
    }
    .hero {
        padding:100px 0 0 0;
    }
    .hero-cards-section {
        padding: 50px 0 0px;
        height: auto;        
    }
    .hero-banner-container {
        padding-top:50px;
    }
    

    .hero-subtitle {
        font-size: 20px;
    }

    .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}


@media screen and ( max-width:728px ) {

    .header .header-content .container{
        padding-left:10px;
        padding-right:10px;
    }
    .header .btn {
        padding:.4rem 1rem !important;
    }
    .header .header-buttons .btn--unete {
        display: none;
    }
    .header__trigger {
        display: block;
    }
    .header-navbar-desktop {
        display: none;
    }
    .header .logo {
        width: 150px;
        margin-left:1rem;
    }

    .nav {
        transform: translate(-100%, var(--padding-top-header-mobile) );
    }
    .nav.nav-active {
        transform:translate(0%, var(--padding-top-header-mobile));
    }
    .nav .main-menu { 
        width:50%;
    }
    .nav .main-menu li a {
        font-size:1rem;
    }
    .nav .nav-container .btn-container .btn{
        font-size:1rem !important;
    }
    
    .menu-trigger .icon--menu {
        width:25px;        
    }

    .header-right {
        flex-direction:row-reverse;
    }
    
    .hero .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing:.1rem;
    }
    .hero .hero-description {
        font-size: 1.2rem;
    }
    .hero .hero-description a {
        font-size: 1.2rem;
        margin:0;
    }

    .hero-cards-section {
        height:auto;
    }
    .hero-cards-container {
        gap:.5rem;
    }

    .hero-cards {
        flex-direction: row;
        align-items: center;
        gap:3px;
        padding:0 5px;
    }

    .hero-card {
        width: 33%;
        min-width:auto;
        padding:5px 0;
    }
    .hero-card h3 {
        font-size:.7rem;
    }
    .hero-card .hero-card-icon{
        width:50px;
        display: inline;
    }
    .hero-card p {
        display: none;
    }
    .hero-banner {
        display: none;
    }
    .hero-banner-mobile {
        display: block;        
        width:100%;
    }

    .directory-btn {
        font-size:1rem;
    }

    .immigration-header {
        background-image:url(../banners/LJU_Historias_mobile.jpg);
        height: 210px;
    }

    .videos-header {
        background-image:url(../banners/LJU_Videos_mobile.jpg);
        height: 210px;
    }
    .immigration-header .container {
        flex-direction: column;
        align-items: center;
    }

    .videos-header h1,
    .immigration-header h1 {
        font-size:4rem;
        text-align: center;
    }
    
    .videos-section .section-title,
    .immigration-section .section-title {
        font-size:2rem;
        line-height: 1.1;
    }
    .videos-section .section-subtitle,
    .immigration-section .section-subtitle {
        font-size:1rem;
        margin:1rem 0;
    }
    .contact-content {
        flex-direction: column;
        gap: 40px;
        padding:0;
    }

    .contact-content .contact-text {
        width: 100%;
        text-align: center;
    }

    .contact-text h2 {
        font-size:3rem;
        line-height: 1;    
    }
    .contact-text p{
        font-size:1.2rem;
    }
    .contact-form {
        padding:0;
        width: 100%;
    }

    .footer {
        background-image:url('../svg/LJU_Web_Assets_Footer_Mobile.svg');
        background-repeat:no-repeat;
        background-size:contain;
        background-position: bottom;
        padding:6rem 0 9rem 0;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align:center;
    }

    .footer-logos{
        justify-content: center;
    }

    .footer-content .social-icons {
        justify-content: center;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .immigration-grid {
        grid-template-columns: 1fr;
    }

    .hero-aboutus .hero-aboutus--container{
        padding:2rem 1rem;
    }

    .hero .hero-image {
        background:url(../banners/LJU_Home_mobile.jpg) no-repeat;
        border-radius: 3rem;
        height:345px;
        margin-bottom:2rem;
        background-size: cover;
    }
    .recaptcha-icon {
        width:80px;
        height:80px;
    }


    .videos-section .videos-grid {
        grid-template-columns: 1fr;
    }
    .article-card {
        margin:0;
        gap:0;
    }
    .videos-section .videos-grid .article-card .card-link{
        flex-direction:column;
    }
    .videos-section .section-subtitle {
        max-width: 100%;
    }
    .videos-section .videos-grid .article-card .card-image {
        width: 100%;
    }
    .article-card .card-content {
        width: 100%;
        padding: 1rem 0;        
    }

    .network-section {
        background-position: center top;
        border-radius:3rem;
        padding:0;
        margin-left:0;
        margin-right:0;
        min-height:400px;
    }

    .network-section .container {
        padding:0;
    }
    .network-section h3 {
        padding:0 2rem;
        font-size:1.8rem;
    }
    .network-card {
        border-radius:0;
        flex-direction: column;
        text-align:center;
        padding:0;
    }
    .network-card img {
        width: 100%;
        margin:auto;
        border-radius:0;
    }
    .network-card .network-card-text {
        padding:2rem 1rem;
    }
    .network-card h2.title {
        font-size: 2.8rem;        
    }
    .network-card p {
        font-size:1.5rem;
    }
    
}


@media screen and ( max-width: 1200px ) {
    .hero-cards-container {
        margin:0 15px;
    }
    .hero-card {
        padding: 20px 10px;
    }
    .hero-card h3 {
        font-size:1.3rem;
    }
    .hero-card p {
        font-size:1rem;        
    }    
}

    