/*GENERALES*/

@font-face {
    font-family: worksans;
    src: url(../fonts/worksans.ttf);
}

@font-face {
    font-family: opensans;
    src: url(../fonts/opensans.ttf);
}

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

a {
    text-decoration: none;
}

h1,
h3 {
    font-family: worksans;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 50px;
}

h2 {
    font-family: opensans;
    letter-spacing: 6px;
    font-weight: 600;
    font-size: 28px;
}

h4 {
    letter-spacing: 6px;
}

hr {
    border: 0;
    height: 0;
    margin: 0;
}


section .section-container {
    margin-top: 32px;
    padding: 0;
}

section .section-container .row {
    margin: 0;
}

/*NAV*/

.navbar {
    width: 100%;
    z-index: 9;
    position: fixed;
    padding: 16px 89px;
    background: rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(9.3px);
    -webkit-backdrop-filter: blur(9.3px);
}

.navbar a {
    color: #1A1A1A;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.navbar a:hover {
    color: #05088F;
}

.navbar-brand {
    font-size: 18px;
}


/* Dropdown menu styling */

.navbar .dropdown-menu {
    border: none;
    background: rgba(255, 255, 255, 0.21);
    backdrop-filter: blur(9.3px);
    -webkit-backdrop-filter: blur(9.3px);
    margin-top: 8px;
}

.navbar .dropdown-item {
    color: #1A1A1A;
    padding: 8px 16px;
    border-radius: 4px;
    margin: 4px 8px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    color: #05088F;
    background-color: rgba(255, 255, 255, 0.21);
}

.navbar .dropdown-item.active {
    color: #05088F;
    background-color: rgba(255, 255, 255, 0.21);
}

.navbar .dropdown-divider {
    margin: 8px 16px;
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-brand-bold {
    font-weight: bold;
}

/*HEADER*/

.header-main-about,
.header-main {
    position: relative;
    background-image: url(../images/bg-glass-1080.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    color: #1A1A1A;
    overflow: hidden;
}

.glass {
    background: rgba(255, 255, 255, 0.21);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.3px) !important;
    -webkit-backdrop-filter: blur(9.3px) !important;
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.header-content-main {
    padding-top: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-content-main-chevron {
    margin-top: 400px;
}

.header-content-main-chevron i {
    font-size: 32px;
}


/*PROJECT*/

.project-item {
    margin: 80px 0 140px 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.section-proyectos-title {
    margin-top: 96px;
    padding-left: 10%;
}

.project-item-left-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
}

.project-item-img {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.project-item-img-bg-right {
    box-sizing: border-box;
    margin-left: 100px;
    width: 100%;
    min-height: 500px;
    background: linear-gradient(90deg, rgba(221, 221, 221, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 40px 0px 0px 380px;
}

.project-item-img-bg-left {
    box-sizing: border-box;
    margin-right: 100px;
    width: 100%;
    min-height: 500px;
    background: linear-gradient(180deg, rgba(221, 221, 221, 0.7) -25.52%, rgba(255, 255, 255, 0.5) 77.6%);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0px 40px 380px 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.project-item-img-bg-right img {
    margin-top: 80px;
    margin-left: -100px;
    width: 400px;
}

.project-item-img-bg-left img {
    margin-top: 80px;
    margin-right: -100px;
    width: 400px;
}

.project-item-text-content {
    padding-left: 20%;
    padding-right: 10%;
    height: 100%;
    display: flex;
    word-wrap: break-word;
    flex-direction: column;
    justify-content: space-around;
}

.project-item-text-content-btn {
    display: flex;
    width: fit-content;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: #42A8FB;
    border-radius: 100px;
    color: white;
    padding: 8px 8px 8px 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.project-item-text-content-btn a {
    color: white;
}

.project-item-text-content-btn i,
.about-content-btn i {
    color: #42A8FB;
    background: #F2F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 16px;
}

/* PROJECTS PAGE */

.projects-item-title {
    display: none;
}

.projects-item-left-text {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    min-height: 700px;
    background: linear-gradient(180deg, rgba(221, 221, 221, 0.7) -25.52%, rgba(255, 255, 255, 0.5) 77.6%);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0px 40px 380px 0px;
    padding-right: 400px;
}


.projects-item-right-text {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    min-height: 700px;
    background: linear-gradient(180deg, rgba(221, 221, 221, 0.7) -25.52%, rgba(255, 255, 255, 0.5) 77.6%);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 40px 0px 0px 380px;
    padding-left: 400px;
}

.projects-item-left-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: .5;
}

.projects-item-right-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: .5;

}

.projects-item-img {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.projects-item-img-right {
    flex-direction: row;
    margin-left: -400px;
    margin-right: 32px;
}

.projects-item-img-left {
    flex-direction: row-reverse;
    margin-left: 32px;
    margin-right: -400px;
    z-index: 1;
}

.projects-item-img img {
    width: 600px;
    height: 600px;
    object-fit: scale-down;
}

/*COMMUNITY*/

.header-comunidad {
    padding-top: 120px;
}

.header-comunidad h1 {
    display: none;
}

.community-bg {
    background-image: url(../images/bg-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.section-community-title h2 {
    padding-top: 96px;
}

.section-community-title h3 {
    padding-top: 48px;
}

.community-item-text-content-btn {
    margin-top: 32px;
    margin-left: 16px;
    margin-right: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #dddddd;
    border-radius: 100px;
    color: #1a1a1a;
    padding: 0px 0px 0px 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.community-item-text-content-btn.btn-1to1 {
    width: fit-content;
    justify-content: space-evenly;
    margin-top: 32px;
}

.community-item-text-content-btn.btn-1to1 a {
    margin-right: 32px;
}

.community-item-text-content-btn a {
    color: #1a1a1a;
}

.community-item-text-content-btn i {
    color: #ddd;
    background: #42A8FB;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 0;
    font-size: 12px;
    margin: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-container {
    margin: 40px 0 0 0;
    padding: 40px 0;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    width: 100%;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer and Edge */
}


/* Cards */

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    flex: 0 0 300px;
    white-space: normal;
    display: flex;
    flex-direction: column;
}



/* Cards */

.card-community {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    flex: 0 0 420px;
    white-space: normal;
    display: flex;
    flex-direction: column;
}

.card-project-usuarios {
    min-width: 924px;
}



.card-project-usuarios-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.card-project-usuarios-title-italic {
    font-style: italic;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.card-project-usuarios-title-bold {
    font-weight: 900;
    font-size: 30px;
    letter-spacing: normal;
}

.card-project-usuarios-content-semi-bold {
    font-weight: 500;
    font-size: 20px;
}

.card-project-usuarios-content-regular {
    font-weight: 400;
    font-size: 20px;
}

.card-project-usuarios-asesor {
    min-width: 450px;
}

.card-project-soluciones {
    min-width: 942px;
    background-color: #F2F2F2;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.3px) !important;
    -webkit-backdrop-filter: blur(9.3px) !important;
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.dialog-container {
    display: flex;
    flex-direction: column;
    justify-items: end;
    margin: 20px 0;
}

.chat-bubble {
    background: linear-gradient(135deg, #42A8FB 0%, #5BB3FF 100%);
    color: #ffffff;
    padding: 16px 20px;
    margin: -24px 32px 64px 0;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0 4px 12px rgba(66, 168, 251, 0.3);
}

.chat-bubble-left {
    background: #05088F;
    border-radius: 50%;
    align-self: flex-end;
    align-items: center;
    text-align: center;
    padding: 16px;
    width: 56px;
    z-index: 3;
}

.chat-text {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    font-style: italic;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #1A1A1A;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 32px 16px 0 16px;
    line-height: 1.3;
    text-align: center;
}

.cards-container .card-body {
    padding: 16px 12% 30px 12%;
}

.cards-container .card-text {
    color: #1A1A1A;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.cards-container .card-text.small {
    font-size: 12px;
    color: #1A1A1A;
}


/* Hide scrollbar for webkit browsers */

.cards-container::-webkit-scrollbar {
    display: none;
}


/* Ensure cards maintain proper height */

.cards-container .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cards-container .card-body .btn {
    margin-top: auto;
}

/*PROJECTS PAGE*/

.projects-detail {
    padding: 90px 0 0 0;
}

#contexto-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*ABOUT PAGE*/

.header-about {
    margin-top: 72px;
    padding: 48px 0;
}

.header-about-text {
    padding-bottom: 350px;
}

.img-about {
    text-align: center;
}

.img-circular {
    height: 500px;
    width: 500px;
    border-radius: 50%;
}

.ic-about {
    font-size: 2.5rem;
}

.p-about {
    font-size: 1.2rem;
    margin: 0 4% 24px 0;
}

.text-blue-soft-about {
    color: #42A8FB;
    font-size: 40px;
}

.about-cv-container {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    align-items: center;
}

.about-content-btn {
    display: flex;
    width: fit-content;
    flex-direction: row;
    background: #42A8FB;
    border-radius: 100px;
    color: white;
    padding: 8px 8px 8px 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.about-content-btn a {
    color: #F2F2F2;
    align-self: center;
    margin-right: 32px;
}

/* MEDCLICK PAGE */

.project-detail-section {
    margin-top: 140px;
}

.project-detail-section h2,
#usuarios-section h2,
#section-soluciones h2 {
    font-family: opensans;
    font-weight: 800;
    font-size: 38px !important;
    letter-spacing: 1px;
}

.project-detail-section-text {
    font-size: 20px;
    line-height: 1.5;

}

.project-details-medclick {
    background-image: url(../images/medclick/project-cover-medclick.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 0px 0px 300px 0px;
    height: 100%;
}


.project-detail-item-img-bg-left {
    box-sizing: border-box;
    margin-right: 100px;
    min-height: 500px;
    background: #F2F2F2;
    border-radius: 0px 400px 40px 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.project-detail-header-mobile {
    display: none;
}


.proyect-detail-next-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
}

#proyect-detail-next {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#proyect-detail-button-prev {
    padding-left: 8px;
}

#proyect-detail-button-prev a {
    margin-right: 0;
    margin-left: 16px;
}

#proyect-detail-button-prev i {
    margin-left: 0;
}

.title-cv {
    margin-top: 64px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-cv-italic {
    font-style: italic;
    color: #AD54E9;
}

/* USUARIOS SECTION */

#usuarios-section {
    background: linear-gradient(180.01deg, rgba(5, 8, 143, 0.06) 14.64%, rgba(255, 255, 255, 0.15) 99.99%);
}

#section-soluciones {
    margin-bottom: 96px;
}

.aprendizajes-animation {
    width: auto;
    height: 400px;
}


/*FOOTER*/

footer {
    background: #F2F2F2;
    padding: 50px 5%;
    color: #1A1A1A;
}

footer h3 {
    margin-bottom: 40px;
}

footer h4 {
    font-family: opensans;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

footer h5 {
    font-family: opensans;
    letter-spacing: 2px;
    font-size: 16px;
}

footer p {
    font-family: opensans;
    font-size: 12px;
}

footer .social {
    justify-content: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.f-mail {
    margin: 30px 0;
}

.mail {
    color: #1A1A1A;
    font-family: opensans;
    font-size: 18px;
    font-weight: 600;
}

.social-m a {
    color: #AD54E9;
    transition: color 0.3s ease;
}

.social-m a:hover {
    color: #05088F;
}

.social-lin a {
    color: #42A8FB;
    transition: color 0.3s ease;
}

.social-lin a:hover {
    color: #05088F;
}


/* Utilities */

.text-blue-soft {
    color: #42A8FB;
}

.text-blue-hard {
    color: #05088F;
}


/*INICIAN MEDIA QUERIES*/

@media (max-width: 1100px) {

    .img-circular {
        height: 400px;
        width: 400px;
    }

}


@media (max-width:991.98px) {


    .navbar-toggler,
    .navbar-brand {
        z-index: 9;
        border: none;
    }

    .navbar-collapse {
        background-color: #ffffff;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .navbar-collapse.show {
        transition: all 0.6s ease;
    }

    .text-blue-soft-about {
        font-size: 34px;
    }

    .projects-item-left-text {
        padding-right: 0;
    }

    .projects-item-img-right {
        flex-direction: row-reverse;
        margin-left: -300px;
    }

    .projects-item-img-left {
        margin-right: -300px;
    }

    .p-about {
        font-size: 1rem;
    }

    .project-item-img img,
    .projects-item-img img {
        width: 400px;
        height: 400px;
        object-fit: scale-down;
    }

    .project-item-text-content-btn {
        justify-content: space-between;
        margin-bottom: 32px;
    }

    .community-item-text-content-btn.btn-1to1 a {
        margin-right: 64px;
    }

    .header-about-text {
        padding-bottom: 250px;
    }

    .about-content-btn {
        width: 70%;
        justify-content: space-between;
        margin-bottom: 32px;
    }

    .project-detail-header {
        display: none;
    }

    .project-details-medclick {
        min-height: 312px;
        border-radius: 0px 0px 160px 0px;
    }

    .project-detail-section-title,
    .project-detail-section-text {
        margin-top: 32px;
    }

    .project-detail-section h2,
    #usuarios-section h2,
    #section-soluciones h2 {
        margin-top: 32px;
        padding: 0 16px;
    }

    .project-detail-item-img-bg-left {
        margin-right: 16px !important;
        justify-content: center;
        align-items: end;
        border-radius: 0px 250px 20px 0px;

    }

    .project-detail-item-img-bg-left img {
        width: auto;
        height: 400px;
    }

    .project-detail-header-mobile {
        display: block;
    }

    .project-detail-header-mobile h3 {
        font-size: 35px;
        padding: 0 16px;
        word-wrap: break-word;
    }

    .project-detail-header-mobile h4 {
        font-size: 18px;
        padding: 0 16px;

    }

    .project-detail-section-text {
        font-size: 28px;
    }

    p,
    .project-detail-header-mobile p {
        font-size: 28px;
        padding: 0 16px;
    }

    #usuarios-section {
        margin-top: 78px;
    }

    #proyect-detail-next {
        align-items: center;
    }

    .proyect-detail-next-title {
        font-size: 24px;
    }

    footer h3 {
        font-size: 32px;
    }
}

@media (max-width:767.98px) {

    .header-main {
        background-image: url(../images/bg-glass-320.svg);
        background-position: center bottom;
    }

    .header-main h2 {
        font-size: 22px;
        padding: 0 32px;
    }


    .header-main p {
        font-size: 20px;
        padding: 0 32px;
    }


    .header-content-main {
        padding-top: 200px;
    }

    .header-content-main-chevron {
        margin-top: 300px;
        padding-bottom: 72px;
    }

    .header-about {
        margin-top: 64px;
        padding: 0;
    }

    .header-about-text {
        padding-top: 56px;
    }

    .img-circular {
        width: 300px;
        height: 300px;
    }

    .img-about {
        text-align: left;
        margin: inherit;
    }

    .project-item {
        flex-direction: column;
        margin-left: 10%;
        margin-right: 10%;
    }

    .project-item-text-content {
        padding-top: 230px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .project-item-text-content-bkg-right {
        box-sizing: border-box;
        background: linear-gradient(180.12deg, rgba(221, 221, 221, 0.7) 0.11%, rgba(255, 255, 255, 0.5) 99.9%);
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 150px 20px 20px 20px;
    }

    .project-item-text-content-bkg-left {
        box-sizing: border-box;
        background: linear-gradient(180.12deg, rgba(221, 221, 221, 0.7) 0.11%, rgba(255, 255, 255, 0.5) 99.9%);
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 20px 150px 20px 20px;
    }

    .projects-title {
        display: none
    }

    .projects-item-title {
        display: block;
        margin-bottom: 32px;
    }

    .projects-item-right-text {
        box-sizing: border-box;
        background: linear-gradient(180.12deg, rgba(221, 221, 221, 0.7) 0.11%, rgba(255, 255, 255, 0.5) 99.9%);
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 20px 150px 20px 20px;
        flex-direction: column;
        padding: 170px 16px 16px 16px;
        justify-content: flex-end;
    }

    .projects-item-left-text {
        box-sizing: border-box;
        background: linear-gradient(180.12deg, rgba(221, 221, 221, 0.7) 0.11%, rgba(255, 255, 255, 0.5) 99.9%);
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 150px 20px 20px 20px;
        flex-direction: column;
        margin-right: 0;
        padding: 170px 16px 16px 16px;
        justify-content: flex-end;
    }

    .projects-item-right-text-container,
    .projects-item-left-text-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }


    .project-item-left-text,
    .projects-item-left-text {
        order: 1;
    }

    .project-item-img,
    .projects-item-img {
        display: flex;
        order: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .section-proyectos-title {
        padding-left: 10%;
    }

    .projects-item-img-right,
    .projects-item-img-left,
    .project-item-img-bg-right,
    .project-item-img-bg-left {
        background: none;
        box-shadow: none;
        border-radius: 0;
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .projects-item-img-right,
    .projects-item-img-left {
        margin: 0 0 -150px 0;
    }

    .project-item-img-bg-right,
    .project-item-img-bg-left {
        margin: 0 0 -200px 0;

    }


    .project-item-img img,
    .projects-item-img img {
        width: 360px;
        height: 360px;
        margin: 0;
    }

    .project-item-left-text p {
        display: none;
    }

    .project-item-text-content h3,
    .project-item-text-content h4,
    .project-item-text-content-btn {
        margin-top: 16px;
    }

    .project-item-text-content-btn {
        width: 100%;
    }

    .project-detail-header-mobile h3 {
        font-size: 48px;
    }

    .project-detail-header-mobile h4 {
        font-size: 28px;
    }

    .cards-container {
        margin-top: 0px;
    }

    .section-community-title h3 {
        padding-top: 72px;
    }


    .about-content-btn {
        width: 80%;
    }

    .about-section-title {
        font-size: 20px;
    }

    .p-about-final {
        padding-bottom: 100px;
    }

    footer h3 {
        margin-bottom: 0px;
    }

    footer .social {
        justify-content: left;
        margin: 30px 0;
    }

}

@media (max-width: 575.98px) {

    h1,
    h3 {
        font-size: 36px;
    }

    .navbar {
        padding: 16px 24px;
    }

    .text-blue-soft-about {
        font-size: 26px;
    }

    .header-about-text {
        background-image: url(../images/bg-glass-320.svg);
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .header-main-about {
        background: none;
    }

    .p-about {
        padding: 0;
    }

    .p-about-final {
        padding-bottom: 80px;
    }

    .header-content-main-chevron {
        margin-top: 200px;
        padding-bottom: 72px;
    }

    .project-detail-section-title {
        font-size: 32px !important;
    }

    .project-detail-section-text {
        font-size: 24px;
    }

    p,
    .project-detail-header-mobile p {
        font-size: 24px;
        padding: 0 16px;
    }

    .project-item-img img,
    .projects-item-img img {
        width: 280px;
        height: 280px;
        margin: 0;
    }

    .project-detail-item-img-bg-left {
        min-height: 350px;
    }

    .project-detail-item-img-bg-left img {
        width: auto;
        height: 350px;
    }

    .aprendizajes-animation {
        width: auto;
        height: 350px;
    }

}

@media (max-width: 321px) {

    h1,
    h3 {
        font-size: 30px;
    }

    footer h3 {
        font-size: 26px;
    }

    .project-item-img img,
    .projects-item-img img {
        width: 220px;
        height: 220px;
        margin: 0;
    }


    .project-detail-item-img-bg-left {
        min-height: 250px;
    }

    .project-detail-item-img-bg-left img {
        width: auto;
        height: 250px;
    }

    .aprendizajes-animation {
        width: auto;
        height: 250px;
    }

}