/* INTRO ========================================================= */
#intro {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#intro .box {
    border-radius: var(--radiusXV);
    padding: 80px 60px;
    padding: var(--innerPadding);
    position: relative;
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #fff;
    min-height: 520px;
}

#intro h1 {
    font-weight: 800;
    font-size: clamp(1.7rem, 7vw, 4.1rem);
    text-transform: uppercase;
    line-height: 1.1em;
    margin-bottom: 0.1em;
    max-width: 40%;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    color: var(--coral-1);
}

#intro p {
    font-weight: 600;
    font-size: clamp(0.9rem, 3.6vw, 1.7rem);
    line-height: 1.3em;
    margin-bottom: .8em;
    position: relative;
    z-index: 10;
}

#intro a {
    border-radius: 1em;
    padding: 0.3em 1em;
    font-weight: 700;
    font-size: clamp(0.7rem, 6vw, 1.3rem);
    background-color: var(--dorado-2);
    color: var(--marino);
    transition: all 0.2s;
}

#intro a:hover {
    background-color: var(--dorado-1);
}

#intro picture {
    position: absolute;
    right: 10px;
    left: auto;
    height: 107%;
    bottom: 0;
    overflow: hidden;
    display: flex;
}

#intro picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
}

@media screen and (max-width: 950px) {
    #intro .box {
        min-height: auto;
        padding-bottom: 0;
    }

    #intro h1 {
        max-width: 100%;
    }

    #intro p {
        max-width: 100%;
        margin-bottom: 2em;
    }

    #intro picture {
        position: relative;
        max-width: 400px;
        margin: 0 auto;
    }

    #intro picture img {
        object-fit: contain;
    }
}

/* DEVELOPMENT ======================= */
#development {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#development h2 {
    font-size: clamp(1.3rem, 5.3vw, 3.8rem);
    line-height: 1.3em;
    margin: 0 auto 2em auto;
    text-align: center;
}

#development .videoWrapper {
    max-width: min(1100px, calc(100% - 20px));
    margin: 0 auto 0 auto;
    overflow: hidden;
    display: flex;
    border-radius: var(--radiusV);
}

#development .videoWrapper video {
    width: 100%;
    height: auto;
}

/* APRENDIZAJE ======================= */
#learning {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#learning h2 {
    font-size: clamp(1.3rem, 5.3vw, 3.6rem);
    line-height: 1.3em;
    margin: 0 auto 2em auto;
}

#learning .caracteristicas {
    /*     background: red; */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#learning .caracteristicas .clientes, #learning .caracteristicas .finnencers, #learning .caracteristicas .partners, #learning .caracteristicas .comunidad {
    display: flex;
}

#learning .caracteristicas .data {
    padding: 40px 57px;
    border-radius: var(--radiusV);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#learning .caracteristicas picture {
    border-radius: var(--radiusV);
    overflow: hidden;
    display: flex;
}

#learning .caracteristicas picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
}

#learning .caracteristicas .clientes .data {
    background-color: var(--purpura-4);
    width: calc(60% - 15px);
    margin-right: 15px;
}

#learning .caracteristicas .clientes picture {
    width: calc(40% - 15px);
    margin-left: 15px;
}

#learning .caracteristicas .finnencers .data {
    background-color: var(--verde-1);
    width: calc(80% - 30px);
    margin-left: 30px;
}

#learning .caracteristicas .icon {
    font-weight: 700;
    font-size: clamp(5.3rem, 14.5vw, 15.5rem);
    /*     width: calc(20% - 15px);
    margin-right: 15px; */
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#learning .caracteristicas .finnencers .icon {
    color: var(--verde-1);
}

#learning .caracteristicas .partners .data {
    background-color: var(--azul-3);
    width: calc(60% - 15px);
    margin-left: 15px;
}

#learning .caracteristicas .partners picture {
    width: calc(40% - 15px);
    margin-right: 15px;
}

#learning .caracteristicas .comunidad .data {
    background-color: var(--dorado-3);
    width: calc(80% - 30px);
    margin-left: 30px;
}

#learning .caracteristicas .comunidad .icon {
    font-weight: 700;
    font-size: clamp(5.3rem, 14.5vw, 15.5rem);
    color: var(--dorado-3);
    padding-top: 20px;
}

#learning .caracteristicas h4 {
    font-weight: 700;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    line-height: 1.3em;
    margin-bottom: .6em;
    text-transform: uppercase;
}

#learning .caracteristicas p {
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.7rem);
    line-height: 1.3em;
}

@media screen and (max-width: 750px) {
    #learning .caracteristicas {
        gap: 15px;
    }

    #learning .caracteristicas .data {
        padding: 20px 30px;
    }

    #learning .caracteristicas .clientes .data {
        width: calc(60% - 7px);
        margin-right: 7px;
    }

    #learning .caracteristicas .partners picture {
        width: calc(40% - 8px);
        margin-right: 8px;
    }

    #learning .caracteristicas .partners .data {
        width: calc(60% - 7px);
        margin-left: 7px;
    }

    #learning .caracteristicas .clientes picture {
        width: calc(40% - 8px);
        margin-left: 8px;
    }

    #learning .caracteristicas .finnencers .data {
        width: calc(80% - 15px);
        margin-left: 15px;
    }

    #learning .caracteristicas .comunidad .data {
        width: calc(80% - 15px);
        margin-left: 15px;
    }
}

@media screen and (max-width: 500px) {
    #learning .caracteristicas .clientes, #learning .caracteristicas .partners {
        flex-direction: column;
    }

    #learning .caracteristicas .clientes .data {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    #learning .caracteristicas .clientes picture {
        width: 100%;
        margin-left: 0;
        max-height: 200px;
    }

    #learning .caracteristicas .partners .data {
        width: 100%;
        margin-left: 0;
    }

    #learning .caracteristicas .partners picture {
        width: 100%;
        margin-right: 0;
        max-height: 200px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 400px) {
    #learning .caracteristicas .finnencers .data {
        width: 100%;
        margin-left: 0;
    }
    #learning .caracteristicas .comunidad .data {
        width: 100%;
        margin-left: 0;
    }

    #learning .caracteristicas .icon {
        display: none;
    }
}

/* CAMPUS ========================================================= */
#campus {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#campus h2 {
    font-size: clamp(1.3rem, 5.3vw, 3.6rem);
    line-height: 1.3em;
    margin: 0 auto 1.5em auto;
    text-align: center;
    max-width: 600px;
}

#campus .videoWrapper {
    max-width: min(640px, calc(100% - 20px));
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 50px auto;
}

#campus .videoWrapper video {
    width: 100%;
    display: flex;
}

#campus .create {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#campus h3 {
    color: #fff;
    background-color: var(--purpura-2);
    text-align: center;
    border-radius: 1em;
    padding: 0.3em 2em;
    font-weight: 700;
    font-size: clamp(0.9rem, 7vw, 1.9rem);
    margin-bottom: 0.6em;
}

#campus p {
    color: var(--purpura-2);
    text-align: center;
    padding: 0.2em 2em;
    font-weight: 700;
    font-size: clamp(0.4rem, 7vw, 1.7rem);
    display: flex;
}

/* KNOWLEDGE ========================================================= */
#knowledge {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#knowledge h2 {
    font-size: clamp(1.3rem, 5.3vw, 3.6rem);
    line-height: 1.3em;
    margin: 0 auto 1.5em auto;
    text-align: center;
    max-width: 840px;
}

#knowledge img {
    width: 100%;
    height: auto;
    /* object-fit: contain; */
    /* object-position: 100% 100%; */
}

/* ACCESS ========================================================= */
#access {
    padding: 0 0 var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#access .pageWidth {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#access h3 {
    font-size: clamp(1.9rem, 4.9vw, 2.2rem);
    line-height: 1.3em;
    margin: 0 auto 2em auto;
    font-weight: 600;
    text-align: center;
}

#access ul {
    margin-bottom: var(--paddingMedium);
}

#access ul li {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#access ul li i {
    font-weight: 700;
    font-size: clamp(2.1rem, 3.2vw, 3.3rem);
    color: var(--marino);
    padding: 20px;
    background-color: var(--purpura-2);
    text-align: center;
    border-radius: 100%;
    margin-bottom: 10px;
}

#access ul li p {
    font-weight: 600;
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
    color: var(--marino);
    text-align: center;
}

#access ul li:nth-child(1) i {
    background-color: var(--verde-3);
}

#access ul li:nth-child(2) i {
    background-color: var(--azul-3);
}

#access ul li:nth-child(3) i {
    background-color: var(--purpura-3);
}

#access ul li:nth-child(4) i {
    background-color: var(--coral-2);
}

#access a {
    border-radius: 1em;
    padding: 0.3em 1em;
    font-weight: 700;
    font-size: clamp(0.7rem, 6vw, 1.3rem);
    background-color: var(--dorado-2);
    color: var(--marino);
    transition: all 0.2s;
}

#access a:hover {
    background-color: var(--dorado-1);
}

/* WORKSHOPS ========================================================= */
#workshops {
    padding: var(--paddingMedium) 0;
    background-color: var(--gris-2);
}

#workshops .pageWidth {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#workshops h2 {
    font-size: clamp(1.1rem, 4.3vw, 3.1rem);
    line-height: 1.3em;
    margin: 0 auto 2em auto;
    text-align: center;
    max-width: 800px;
}

#workshops p {
    font-weight: 600;
    font-size: clamp(1.1rem, 3.5vw, 2.25rem);
    line-height: 1.3em;
    margin-bottom: 2em;
    text-align: center;
}

#workshops picture {
    border-radius: var(--radiusV);
    overflow: hidden;
    display: flex;
    margin-bottom: 50px;
    max-width: min(1100px, calc(100% - 20px));
}

#workshops picture img {
    width: 100%;
}

#workshops a {
    border-radius: 1em;
    padding: 0.3em 1em;
    font-weight: 700;
    font-size: clamp(0.7rem, 6vw, 1.3rem);
    background-color: var(--purpura-3);
    color: #fff;
    transition: all 0.2s;
}

#workshops a:hover {
    background-color: var(--purpura-2);
}

/* TRABAJAMOS */
#weWork {
    background-color: #f8f8f9;
    position: relative;
}

#weWork .pageWidth {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 170px 0px;
    /* margin-top: 89px; */
}

#weWork .pageWidth p {
    font-weight: 200;
    font-size: 35px;
    line-height: 1.5em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #49505B;
    padding: 0 10px;
}

#weWork .pageWidth p strong {
    color: #E63B3B;
    font-weight: 200;
}

#weWork .texture {
    background: url("../../resources/texture_go_top_left.svg") no-repeat right 0;
    background-size: 100% auto;
    width: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}

@media screen and (max-width: 650px) {
    #weWork .pageWidth p {
        font-size: 30px;
    }
}

/* learn ==================================================== */
#learn {
    background-color: #FFF;
    padding: 100px 0 140px 0;
    position: relative;
    align-items: center;
}

#learn .pageWidth {
    z-index: 1;
}

#learn .pageWidth .photo {
    background: url(learn_concept.svg) no-repeat center center;
    background-size: contain;
    /* 	box-shadow: 0 0 20px rgba(0,0,0,.5); */
    max-width: 960px;
    margin: 0 auto 30px auto;
    height: 0;
    padding-top: 30%;
}

#learn .pageWidth h3 {
    font-weight: 200;
    font-size: 29px;
    text-align: center;
    margin-bottom: 5px;
    color: #6A67CE;
    text-transform: uppercase;
}

#learn .pageWidth h2 {
    font-weight: 200;
    font-size: 48px;
    text-align: center;
    color: #6A67CE;
    max-width: 750px;
    margin: 0 auto 40px auto;
}

#learn .pageWidth ul {
    display: flex;
    font-weight: 200;
    font-size: 20px;
    color: #273347;
}

#learn .pageWidth ul li {
    width: 25%;
    box-sizing: border-box;
    padding: 0px 15px 0 15px;
    position: relative;
    /* 	display: flex; */
}

#learn .pageWidth ul li img {
    width: 100%;
    margin-bottom: 10px;
}

#learn .pageWidth ul li i {
    font-size: 40px;
    color: #e63b3b;
}

#learn .pageWidth h4 {
    font-weight: 300;
    font-size: 26px;
    line-height: 22px;
    padding: 0;
    margin: 0 0 5px 0;
    color: #e63b3b;
    transition: all .4s;
}

#learn .pageWidth p {
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    padding: 0;
    margin: 0;
    color: #A1A4AA;
}

#learn .pageWidth a {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    color: #e63b3b;
    opacity: 0;
    transition: all .4s;
}

@media screen and (max-width: 1100px) {
    #learn .pageWidth {
        padding: 0 10px;
    }
}

@media screen and (max-width: 930px) {
    #learn .pageWidth h2 br {
        display: none;
    }
}

@media screen and (max-width: 860px) {
    #learn {
        padding: 140px 0 120px 0;
    }

    #learn .pageWidth ul {
        flex-wrap: wrap;
        margin: 0 auto;
    }

    #learn .pageWidth h2 {
        font-size: 30px;
    }

    #learn .pageWidth h3 {
        font-size: 23px;
    }

    #learn .pageWidth ul li {
        width: 50%;
        box-sizing: border-box;
        padding: 0px 15px 20px 15px;
        text-align: center;
    }

    #learn .pageWidth ul li img {
        width: 50%;
    }
}

@media screen and (max-width: 800px) {
    #learn .texture {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    #learn .pageWidth ul li {
        width: 50%;
    }
}

@media screen and (max-width: 450px) {
    #learn .pageWidth ul li {
        width: 100%;
    }
}

/* EXPERSTISE =======================================================================  */
#expertise {
    background-color: #f8f8f9;
    position: relative;
    padding: 120px 0;
}

#expertise .pageWidth {
    align-items: center;
    /* color: #eff0f1; */
    text-align: center;
    z-index: 1;
}

#expertise img {
    width: calc(100% - 40px);
    max-width: 850px;
    margin: 0 20px
}

#expertise h2 {
    color: #e63b3b;
    font-weight: 200;
    font-size: 39px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 10px;
}

#expertise .texture {
    background: url("../../resources/texture_go_bottom_right.svg") no-repeat right bottom;
    background-size: 100% auto;
    width: 44%;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}

@media screen and (max-width: 900px) {
    #expertise h2 {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 550px) {
    #expertise h2 {
        font-size: 39px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 450px) {
    #expertise .photo {
        margin: 0 20px;
        height: 362px;
    }

    #expertise h2 {
        font-size: 27px;
        margin-bottom: 10px;
    }
}

/* SCREENSHOT =======================================================================  */
#screenshot {
    background-color: #FFFFFF;
    padding: 120px 0 180px 0;
    position: relative;
}

#screenshot .texture {
    background: url("../../resources/texture_go_top_right.svg") no-repeat right 0;
    background-size: 100% auto;
    width: 44%;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}

#screenshot .wrapper {
    position: relative;
    min-height: 492px;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    z-index: 1;
}

#screenshot .wrapper p {
    width: 50%;
    font-size: 21px;
    line-height: 34px;
    font-weight: 300;
    box-sizing: border-box;
    padding-right: 30px;
}

#screenshot h2 {
    color: #6A67CE;
    font-weight: 200;
    font-size: 39px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 10px;
}

#screenshot h3 {
    width: 50%;
    font-weight: 400;
    font-size: 27px;
    line-height: 34px;
    margin-bottom: 20px;
    margin-top: 0;
}

#screenshot .photo.notebook {
    background: url(notebook.png) no-repeat center center;
    background-size: auto 100%;
    display: block;
    position: absolute;
    right: auto;
    left: auto;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 492px;
}

#screenshot .photo.tablet {
    background: url(tablet.png) no-repeat center center;
    background-size: auto 100%;
    display: block;
    position: absolute;
    right: auto;
    left: auto;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 492px;
}

#screenshot .pageWidth div ul {
    width: 50%;
}

#screenshot .pageWidth div ul li {
    margin-top: 40px;
    font-size: 20px;
    font-weight: 300;
    color: #1b2432;
}

#screenshot .pageWidth div ul li strong {
    margin-bottom: 7px;
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
}

#screenshot .pageWidth div ul li:first-child {
    margin-top: 0;
}

#screenshot .actions {
    margin-top: 40px;
    text-align: center;
}

#screenshot .actions a {
    font-weight: 300;
    font-size: 20px;
    display: inline-block;
    color: #FFFFFF;
    background-color: #37C597;
    padding: 15px 25px;
    border-radius: 6px;
    transition: all .2s;
}

#screenshot .actions a:hover {
    background-color: #299b76;
}

@media screen and (max-width: 1100px) {
    #screenshot .pageWidth {
        /* padding: 0 40px; */
    }
}

@media screen and (max-width: 1010px) {
    #screenshot h2 br {
        display: none;
    }
}

@media screen and (max-width: 950px) {
    #screenshot .pageWidth div .photo {
        width: 50%;
        margin-right: 40px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 800px) {
    #screenshot h2 {
        font-size: 34px;
        margin-bottom: 50px;
    }

    #screenshot .texture {
        width: 50%;
    }

    #screenshot .wrapper {
        position: relative;
        min-height: auto;
        display: block;
        align-items: center;
        height: 350px;
    }

    #screenshot h3 {
        width: 100%;
    }

    #screenshot .wrapper p {
        width: 100%;
    }

    #screenshot .photo.notebook {
        right: auto;
        left: auto;
        width: 100%;
        height: 350px;
        background-position-x: center;
        background-size: contain;
    }

    #screenshot .photo.tablet {
        right: auto;
        left: auto;
        width: 100%;
        height: 350px;
        background-position-x: center;
        background-size: contain;
    }

    #screenshot .wrapper .pageWidth {
        padding-top: 392px;
    }
}

@media screen and (max-width: 640px) {
    #screenshot {
        padding: 130px 0 150px 0;
    }

    #screenshot .pageWidth div {
        flex-direction: column;
    }
}

@media screen and (max-width: 550px) {
    #screenshot h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {
    #screenshot .wrapper, #screenshot .photo.notebook, #screenshot .photo.tablet {
        height: 220px;
    }

    #screenshot .wrapper .pageWidth {
        padding-top: 240px;
    }
}

@media screen and (max-width: 450px) {
    #screenshot h2 {
        font-size: 33px;
    }

    #screenshot .pageWidth {
        padding: 0 20px;
    }

    #screenshot h3 {
        font-size: 21px;
        line-height: 30px;
    }

    #screenshot .wrapper p {
        font-size: 17px;
        line-height: 26px;
    }

    #screenshot {
        padding: 120px 0 140px 0;
    }
}

@media screen and (max-width: 450px) {
    #screenshot h2 {
        font-size: 30px;
    }
}
