/*
Theme Name: Proyectate Pyme
Theme URI: https://www.proyectatepyme.pe
Author: Julio Celestino
Author URI: jguillermo.cel@gmail.com
Description: Tema personalizado para Proyectate Pyme
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0.0
Text Domain: ProyectatePyme
Tags: custom-theme, blog
*/
/*-- Variables --*/
/*-- Colors --*/
/*-- Primary Colors --*/
:where(.wp-site-blocks)>* {
    margin-block-start: 0;
    margin-block-end: 0;
}
:root :where(.is-layout-flow)>* {
    margin-block-start: revert;
    margin-block-end: revert;
}
:root :where(.is-layout-flow)> :first-child {
    margin-block-start: revert;
}
:root :where(.is-layout-flow)> :last-child {
    margin-block-end: revert;
}
:where(.wp-block-post-excerpt) {
    box-sizing: revert;
    margin-bottom: revert;
    margin-top: revert;
}
:where(figure) {
    margin: revert;
}
:root {
    --primary-color: #0E923E;
    --secondary-color: #013916;
    --black-color: #000000;
    --white-color: #ffffff;
    --text-color-primary: #ffffff;
    --text-color-secondary: #000000;
    --text-color-footer-secondary: #9D9595;
    --bg-black-80: rgba(0, 0, 0, 0.8);
    --bg-white-100: rgba(255, 255, 255, 1);
    --bg-orange-100: #FF890E;
    --bg-primary-color: var(--primary-color);
    --bg-footer-site-map: #1e3d11;
    --bg-blog: #ECECEC;
    --font-size-primary: 'Flexo', sans-serif;
}
:root {
    color: var(--text-color-primary);
    font-family: var(--font-size-primary);
}
header {
    background-color: var(--primary-color);
    /*position: sticky;*/
    top: 0;
    z-index: 10;
    @media (width > 1300px) {
        display: flex;
    }
}
.space-margin {
    padding: 1rem 2rem;
    width: calc(100% - 4rem);
}
.space-margin-internal {
    padding: 1rem 2rem;
    width: calc(100% - 4rem);
    @media(width > 1000px) {
        max-width: calc(1000px - 4rem);
        margin: 0 auto;
    }
    @media (width > 1300px) {
        max-width: calc(1370px - 4rem);
        margin: 0 auto;
    }
}
.header__container {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    @media (width > 1300px) {
        max-width: calc(1370px - 4rem);
        margin: 0 auto;
        justify-content: space-evenly;
    }
}
.header__logo {
    height: 6rem;
    @media (width > 900px) {
        height: 4.5rem;
    }
}
.header__img-logo {
    height: 6rem;
    @media (width > 900px) {
        height: 4.5rem;
    }
}
.header__desktop-menu {
    display: none;
    @media (width > 1000px) {
        display: initial;
        width: 70%;
    }
}
.header__nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}
.header__nav-links .active {
    border-bottom: 3px solid rgb(255 255 255 / 45%);
    margin-bottom: -3px;
}
.header__nav-links li a {
    text-decoration: none;
    color: var(--text-color-primary);
    font-size: 1.3rem;
    font-weight: bolder;
    line-height: 2.3rem;
}
.header__burger-icon {
    cursor: pointer;
    font-size: 3.5rem;
    height: 3.5rem;
    @media (width > 900px) {
        font-size: 2.7rem;
        height: 2.7rem;
    }
    @media (width > 1000px) {
        display: none;
    }
}
.mobile-menu {
    background-color: var(--primary-color);
    width: 100%;
    height: 100dvh;
    position: fixed;
    transition-property: all;
    transition-duration: 0.5s;
    transform: translateX(-100%);
    z-index: 10;
}
.mobile-menu.active {
    transform: translateX(0%);
    @media (width > 1000px) {
        display: none;
        transform: translateX(-100%);
    }
}
.mobile-menu__container {
    padding: 1rem 2rem;
}
.mobile-menu__nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    min-height: 350px;
}
.mobile-menu__nav-links a {
    text-decoration: none;
    color: var(--text-color-primary);
}
.campaing-main__container {
    height: 50dvh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    @media(width > 800px) {
        background-size: 110%;
    }
    @media (orientation: landscape) and (width > 1000px) {
        height: 70dvh;
    }
    @media (orientation: portrait) and (width > 800px) {
        background-size: auto 100%;
    }
}
.campaing-main__bg-img {
    background-image: url('../promype/assets/images/main-theme/main-campaing.webp');
}
.campaing-main__text h1 {
    margin: 3rem 2.5rem;
    font-size: 2.5rem;
    color: var(--text-color-secondary);
    @media (width > 800px) {
        br:nth-last-child(1) {
            display: none;
        }
        max-width: 1200px;
        margin: 3rem auto;
    }
}
.main-services__container {
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-color: #ffa421;
    @media (width > 800px) {
        background-repeat: repeat-x;
    }
}
.main-services__bg-img {
    background-image: url('../promype/assets/images/main-theme/bg-services.webp');
}
.main-services__header {
    text-align: center;
    padding-bottom: 2.5rem;
}
.main-services__header h2 {
    font-size: 2.5rem;
}
@media (width > 700px) {
    .main-services__header {
        width: 70%;
        margin: 0 auto;
        max-width: 800px;
    }
}
.main-services__cards-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    @media (width > 800px) {
        flex-direction: row;
        justify-content: space-evenly;
    }
    @media (width > 1000px) {
        max-width: 1000px;
        margin: 0 auto;
    }
}
.card-service {
    background-color: var(--bg-white-100);
    border-radius: 15px;
    padding-bottom: 1rem;
    max-width: 350px;
    margin-bottom: 4rem;
}
.card-service__content {
    padding: 0.5rem 1rem;
}
.card-service__img img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.card-service__tittle {
    color: var(--text-color-secondary);
    text-align: center;
    font-size: 1.2rem;
    margin: 0;
    padding: 1rem 0;
    display: inline-flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    .icop {
        font-size: 2.2rem;
        color: var(--primary-color);
    }
}
.card-service__text {
    width: 225px;
}
.card-service__skills {
    color: var(--text-color-secondary);
}
.card-service__skills ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.skill-card {
    display: inline-flex;
    padding-bottom: 0.7rem;
}
.skill-card .icop {
    font-size: 1rem;
    color: var(--primary-color);
    padding-right: 0.5rem;
}
.skill-card__text {
    font-size: 0.70rem;
}
.card-service__button-view-more {
    text-align: center;
}
.button-main {
    width: 150px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-color-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 1rem 0;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}
.button-main .icop {
    font-size: 1.3rem;
    padding-left: 0.5rem;
    margin-bottom: -1px;
}
.button-main.color-inverted {
    background-color: var(--text-color-primary);
    color: var(--primary-color);
}
.feat-post {
    background-color: var(--bg-primary-color);
    text-align: center;
    background-image: url('../promype/assets/images/main-theme/bg-feat-post.png');
    background-position: center;
    background-size: 100%;
    overflow-x: hidden;
}
.feat-post h3 {
    font-size: 1.8rem;
    margin-bottom: 0rem;
}
.feat-post p {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}
@media (width > 800px) {
    .feat-post {
        text-align: left;
    }
}
.feat-post__container {
    @media(width > 800px) {
        display: grid;
        grid-template-areas: 'feat-post__title feat-post__images'
            'feat-post__btn feat-post__images';
    }
    @media(width > 1000px) {
        max-width: calc(1000px - 4rem);
        margin: 0 auto;
    }
}
.feat_post__title {
    grid-area: feat-post__title;
}
.feat-post__images {
    grid-area: feat-post__images;
}
.feat_post__btn {
    grid-area: feat-post__btn;
}
@media (width > 800px) {
    .feat_post__btn {
        display: flex;
        align-items: flex-start;
    }
    .feat_post__btn button {
        margin-top: 0rem;
        font-weight: bold;
    }
}
.feat-post__images {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% + 6rem);
    transform: translate(-3rem, 0px);
}
.feat-post__images img:nth-child(2n) {
    width: 90px;
}
.feat-post__images img:nth-child(2n+1) {
    width: 123px;
}
@media (width > 700px) {
    .feat-post__images {
        width: 100%;
        transform: translate(0px, 0px);
    }
    .feat-post__images:nth-child(2n) {
        /*width: 130px;*/
    }
    .feat-post__images:nth-child(2n+1) {
        /*width: 180px;*/
    }
}
.blog-posts {
    background-color: var(--bg-white-100);
    padding: 2rem 0 1rem 0;
}
.blog-posts__container {
    @media (width > 1000px) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        max-width: calc(1000px - 4rem);
        margin: 0 auto;
    }
}
.post-card {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    @media (width > 1000px) {
        max-width: 450px;
    }
}
-card__img {
    min-width: 170px;
}
.post-card__img img {
    width: 100%;
    border-radius: 15px;
}
.post-card__content {
    color: var(--text-color-secondary);
    padding-left: 1rem;
}
.post-card__content h4 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}
.post-card__content p {
    font-size: 0.8rem;
    margin: 0.2rem 0 0.5rem 0;
}
.post-card__content a {
    color: var(--primary-color);
    font-weight: bold;
}
.contact-types {
    background-color: var(--secondary-color);
    padding: 1rem 0 1.4rem 0;
    @media (width > 1000px) {
        padding-bottom: 1rem;
    }
}
.contact-types__container {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    @media (width > 700px) {
        width: 80%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
    @media (width > 1000px) {
        width: calc(100% - 4rem);
        max-width: calc(1200px - 4rem);
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
    }
}
.contact-type {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.6rem;
}
@media (width > 700px) {
    .contact-type:nth-last-child(1) {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}
@media (width > 1000px) {
    .contact-type:nth-last-child(1) {
        grid-column-start: inherit;
        grid-column-end: inherit;
        margin-bottom: 0rem;
    }
}
.contact-type__icon {
    font-size: 2.2rem;
}
.contact-type__label {
    font-size: 1.1rem;
    margin-top: -3px;
    margin-left: 1rem;
}
.contact-type__label a {
    color: var(--text-color-primary);
    text-decoration: none;
}
@media (width > 700px) {
    .contact-type__label {
        display: inline;
    }
    .contact-type__label br {
        display: none;
    }
}
.site-map {
    background-color: var(--bg-footer-site-map);
    background-image: url('../promype/assets/images/main-theme/bg-trama-footer.png');
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.site-map__container {
    @media (width > 1000px) {
        display: flex;
        max-width: calc(1000px - 4rem);
        margin: 0 auto;
    }
    @media (width > 1300px) {
        max-width: calc(1370px - 4rem);
    }
}
.site-map__logo {
    max-width: 220px;
    margin: 0 auto;
}
.site-map__logo img {
    width: 100%;
}
@media (width > 1000px) {
    .site-map__logo {
        width: 200px;
        margin: 0;
        text-align: left;
    }
    .site-map__logo img {
        width: 80%;
    }
}
@media (width > 1300px) {
    .site-map__logo {
        max-width: 250px;
        width: 250px;
    }
    .site-map__logo img {
        width: 100%;
    }
}
.site-map__nav ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.site-map__nav ul li {
    font-weight: bold;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}
.site-map__nav ul li a {
    text-decoration: none;
}
.footer-link__item {
    display: none;
}
.footer-link__head a {
    color: var(--text-color-primary);
}
@media (width > 1000px) {
    .site-map__nav {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .site-map__nav-links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    .footer-link {
        max-width: 200px;
        text-align: left;
    }
    .footer-link__head {
        margin-bottom: 1.5rem;
    }
    .footer-link__item {
        display: block;
        font-weight: normal;
        margin-bottom: 1rem;
        width: 150px;
    }
    .footer-link__item a {
        color: var(--text-color-footer-secondary);
    }
}
@media (width > 1300px) {
    .site-map__nav ul li {
        margin-right: 2rem;
    }
}
/*
.site-map__nav {
    ul {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
        li {
            font-weight: bold;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
            a {
                text-decoration: none;
            }
            .footer-link__head a {
                color: var(--text-color-primary);
            }
        }
    }
    .footer-link__item {
        display: none;
    }
    @media (width > 1000px) {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        .site-map__nav-links {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: flex-start;
        }
        .footer-link {
            max-width: 200px;
            text-align: left;
        }
        .footer-link__head {
            margin-bottom: 1.5rem;
        }
        .footer-link__item {
            display: block;
            font-weight: normal;
            margin-bottom: 1rem;
            width: 150px;
        }
        .footer-link__item a {
            color: var(--text-color-footer-secondary);
        }
    }
    @media (width > 1300px) {
        ul li {
            margin-right: 2rem;
        }
    }
}*/
.site-map__claim-book {
    max-width: 190px;
    margin: 0 auto;
}
.site-map__claim-book img {
    width: 100%;
}
@media (width > 1000px) {
    .site-map__claim-book {
        margin: 0;
    }
}
.sub-footer {
    background-color: var(--secondary-color);
}
.sub-footer__copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    text-align: center;
}
@media (width > 1000px) {
    .sub-footer__copyright {
        font-size: 0.9rem;
        height: 20px;
        line-height: 0.9rem;
    }
}
.sub-footer__container {
    @media (width > 1000px) {
        position: relative;
    }
}
.sub-footer__social-networks {
    text-align: center;
    margin-top: 1rem;
}
.sub-footer__social-networks ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 240px;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
}
.sub-footer__social-networks ul li {
    background-color: var(--bg-white-100) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 27px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (width > 1000px) {
    .sub-footer__social-networks ul li {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}
.sub-footer__social-networks ul li a {
    color: var(--secondary-color);
    width: 27px;
    height: 27px;
}
@media (width > 1000px) {
    .sub-footer__social-networks ul li a {
        width: 20px;
        height: 20px;
    }
}
/*-- Page Prestamos --*/
.top-banner {
    background-color: var(--bg-orange-100);
}
.top-banner__container {
    text-align: center;
    @media (width > 700px) {
        display: flex;
        text-align: left;
        flex-direction: row;
        align-items: center;
    }
}
.top-banner__title {
    @media (width > 700px) {
        width: 45%;
    }
    @media (width > 1000px) {
        width: inherit;
    }
}
.top-banner__img {
    display: flex;
    justify-content: space-between;
}
.top-banner__img img {
    height: 100px;
}
@media (width > 700px) {
    .top-banner__img {
        width: 55%;
        max-width: 550px;
    }
}
.form-contact {
    min-height: 60dvh;
    background-position: center;
    background-size: auto 100%;
    @media (width > 700px) and (orientation: portrait) {
        background-size: 100%;
        min-height: inherit;
    }
    @media (width > 1000px) {
        background-size: 100%;
        background-position: initial;
    }
}
.form-prestamo {
    margin-top: 13rem;
    @media(width > 1000px) {
        max-inline-size: 600px;
        margin-left: auto;
        margin-top: 5rem;
        margin-bottom: 1rem;
    }
    @media (width > 1000px) and (orientation: portrait) {
        margin-bottom: 0rem;
    }
}
.form-contact--prestamos {
    background-image: url('../promype/assets/images/main-theme/page-prestamos/bg-movile-form-presta.png');
    @media (width > 1000px) {
        background-image: url('../promype/assets/images/main-theme/page-prestamos/bg-desktop-form-presta.png');
    }
}
.form__title {
    text-align: center;
}
.form__title h2 {
    color: var(--text-color-secondary);
    -webkit-text-stroke: 1.8px rgba(255, 255, 255, 0.90);
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 0.5rem;
}
.form__title p {
    margin: 0;
}
.form__inputs {
    margin-top: 1rem;
}
.form__inputs input {
    width: calc(100% - 2rem);
    height: 40px;
    border: none;
    border-radius: 10px;
    padding: 0 1rem;
    margin-bottom: 1rem;
}
@media (width > 700px) {
    .form__inputs {
        width: 400px;
        margin: 1.5rem auto;
    }
}
.form__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form__buttons a {
    text-decoration: none;
}
@media (width > 700px) {
    .form__buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        max-width: 400px;
        margin: 0 auto;
    }
}
.form__btn {
    width: 250px;
    height: 60px;
    color: var(--text-color-primary);
    outline: 3px solid rgba(255, 255, 255, 0.50);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--secondary-color);
    border: 0;
}
.form__btn .icop {
    font-size: 2.5rem;
}
.form__btn .text-btn {
    line-height: 2.5rem;
}
@media (width > 700px) {
    .form__btn {
        width: 190px;
        height: 50px;
        font-size: 1.2rem;
    }
}
.form__btn--wspp {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    background-color: var(--primary-color);
}
.requeriments {
    background-color: var(--primary-color);
    background-position: center;
    background-size: auto 100%;
}
.req__prestamos {
    background-image: url('../promype/assets/images/main-theme/page-prestamos/bg-requisitos-prestamo.png');
}
.requeriments__title {
    text-align: center;
}
.requeriments__title h2 {
    font-size: 2.7rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}
@media (width > 700px) {
    .requeriments__title p {
        width: 500px;
        margin: 0 auto 2rem;
    }
}
.requeriments__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    @media(width > 1000px) {
        flex-direction: row;
        align-items: center;
        margin-bottom: 2rem;
    }
}
.requeriments__skills {
    @media (width > 700px) {
        min-width: 50%;
    }
}
.req__skills-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    @media (width > 700px) {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}
.req__skill {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    @media (width > 700px) {
        width: 350px;
    }
    @media (width > 1000px) {
        width: 450px;
    }
}
.req__skill-icon {
    border: 3px solid white;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    min-width: 25px;
    text-align: center;
    line-height: 25px;
}
.req__skill-icon .icop {
    font-size: 1rem;
    line-height: 25px;
}
.req__skill-text {
    margin-left: 0.5rem;
}
.req__skill-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.req__skill-text p {
    margin: 0;
}
.requeriments__img-galery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-items: start;
    justify-content: start;
    column-gap: 12px;
    align-content: start;
}
.galery-main-img img {
    width: 100%;
}
.galery-secondary-img {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.galery-secondary-img img {
    width: 100%;
}
/*
.requeriments__desktop {
    display: none;
    @media (width > 1000px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        justify-items: start;
        justify-content: start;
        column-gap: 12px;
        align-content: start;
    }
}
.requeriments__movil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    justify-content: space-between;
    column-gap: 12px;
    @media (width > 1000px) {
        display: none;
    }
}*/
.benefit {
    color: var(--text-color-secondary);
}
.benefit__top {
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 2rem;
    @media(width > 1000px) {
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        margin-top: 2rem;
    }
}
.benefit__main-img img {
    width: 100%;
}
@media (width > 700px) {
    .benefit__main-img img {
        width: 80%;
        max-width: 500px;
    }
}
.benefit__title h2 {
    color: var(--primary-color);
}
@media (width > 700px) {
    .benefit__title p {
        width: 400px;
        margin: 0 auto 2rem;
    }
}
.benefit__skills-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
    @media (width > 700px) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
    }
}
.benefit__skill {
    text-align: center;
    margin-bottom: 1.5rem;
    @media (width > 700px) {
        width: 312px;
    }
}
.benefit__skill-icon img {
    width: 55px;
}
.benefit__skill-text h3 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
}
.benefit__skill-text p {
    margin: 0;
}
.top-banner__inversiones {
    background-color: var(--bg-footer-site-map);
}
.form-contact--inversiones {
    background-image: url('../promype/assets/images/main-theme/page-inversiones/bg-movil-form-inversiones.webp');
    background-position: right;
}
.requeriments.req_inversiones {
    background-color: var(--bg-orange-100);
}
.requeriments__list {
    text-align: center;
    @media (width > 700px) {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: stretch;
    }
}
.requeriments__item {
    margin-bottom: 2rem;
    @media (width > 700px) {
        width: 300px;
    }
}
.requeriments__title h2 {
    font-size: 2rem;
}
.requeriments__img img {
    width: 60px;
}
.requeriments__title {
    font-size: 1.2rem;
    font-weight: bold;
}
.requeriments__title p {
    font-weight: normal;
}
.benefit__bot {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    @media (width > 700px) {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }
}
.benefit__skills.sec-inversiones {
    text-align: center;
}
.benefit__item {
    margin-bottom: 2rem;
    @media (width > 700px) {
        width: 300px;
        display: flex;
    }
    @media (width > 1000px) {
        width: 380px;
        text-align: left;
    }
}
.benefit__icon img {
    width: 60px;
}
@media (width > 700px) {
    .benefit__icon {
        margin-top: 1rem;
        margin-right: 1rem;
    }
}
.benefit__text h3 {
    color: var(--primary-color);
}
.benefit__main-img {
    margin-bottom: 2rem;
    text-align: center;
}
/*-- Page Blog --*/
.pro-blog {
    background-color: var(--bg-blog);
    padding: 2rem 0 1rem 0;
}
.pro-blog__title {
    color: var(--secondary-color);
    font-size: 2rem;
    h1 {
        margin-top: 0.5rem;
    }
}
.post-blog {
    max-width: 500px;
    background-color: var(--bg-white-100);
    color: var(--text-color-secondary);
    border-radius: 15px;
    margin-bottom: 2rem;
}
.pro-blog__posts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    align-content: center;
}
.pro-blog__posts ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    align-content: center;
    width: 100%;
}
.post-blog__img img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.post-blog__content {
    padding: 1rem 1rem 2rem 1rem;
    text-align: right;
}
.post-blog__content a {
    color: var(--primary-color);
    font-weight: bold;
}
.post-blog__content .wp-block-post-excerpt__more-text {
    text-align: right;
}
.wp-block-post-excerpt__excerpt {
    height: 100px;
}
.post-blog__tittle {
    color: var(--primary-color);
    text-align: left;
    font-size: 1.5rem;
    margin: 20px 0;
}
.wp-block-post-excerpt {
    text-align: left;
}
.post-blog__text {
    text-align: left;
}
/*-- Internal blog --*/
.solo-post {
    color: var(--text-color-secondary);
}
.go-back__container {
    padding-top: 2rem;
}
.go-back__button {
    background-color: var(--primary-color);
    color: var(--text-color-primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.go-back__button .text-btn {
    line-height: 2.5rem;
}
.solo-post__title {
    margin-top: 0.5rem;
}
.solo-post__date {
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.solo-post__img {
    text-align: center;
    img {
        max-width: 100%;
        border-radius: 15px;
        @media (width > 700px) {
            max-width: 80%;
        }
    }
}
.solo-post__content {
    text-align: justify;
    margin: 2rem auto;
    @media (width > 700px) {
        width: 80%;
    }
}
/*-- Quienes somos --*/
.title-we-are {
    background-image: url('../promype/assets/images/main-theme/bg-services.jpg');
    text-align: center;
}
.we-are {
    background-color: var(--bg-blog);
    color: var(--text-color-secondary);
    h2 {
        text-align: center;
    }
}
.we-are__content {
    @media (width > 700px) {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: nowrap;
    }
}
.we-are__content-text {
    @media (width > 700px) {
        p {
            margin: 0 0.5rem 1.5rem;
            width: 350px;
        }
    }
}
.we-are__content-image img {
    width: 100%;
    border-radius: 15px;
}
@media (width > 700px) {
    .we-are__content-image {
        /*max-width: 400px;*/
        text-align: center;
    }
    .we-are__content-image img {
        width: 90%;
    }
}
.vision-mision {
    background-color: var(--primary-color);
    background-image: url('../promype/assets/images/main-theme/we-are/bg-obj.png');
}
.vision-mision__container h2 {
    text-align: center;
}
.vision-mision__skills {
    @media (width > 700px) {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: stretch;
        flex-wrap: wrap;
    }
}
.vision-mision__skill {
    text-align: center;
    margin-bottom: 2.5rem;
    @media (width > 700px) {
        max-width: 350px;
    }
}
.vision-mision__skill-icon {
    font-size: 4.5rem;
}
.values {
    color: var(--primary-color);
}
.values__title h2 {
    text-align: center;
}
@media (width > 1000px) {
    .values__title {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }
}
.values__skills {
    @media (width > 700px) {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
}
.values__skill {
    @media (width > 700px) {
        max-width: 350px;
    }
    @media (width > 1000px) {
        max-width: 300px;
    }
}
.values__skill-icon .req__skill-icon {
    border-color: var(--primary-color);
}
.values__imgs {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.values__img {
    text-align: center;
}
.values__img img {
    width: 80%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}
@media (width > 700px) {
    .values__img {
        max-width: 350px;
    }
}
.ubication {
    background-image: url('../promype/assets/images/main-theme/we-arebg-services.jpg');
}
.ubication__title {
    @media (width > 700px) {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }
}
.ubication__content {
    height: 65dvh;
    @media (width > 700px) {
        height: 450px;
    }
}
.work-us {
    background-color: var(--primary-color);
    color: var(--text-color-primary);
}
.work-us__content {
    @media (width > 700px) {
        min-width: 50%;
    }
}
.work-us__title {
    h2 {
        text-align: center;
    }
}
.work-us__title p {
    text-align: center;
    @media (width > 700px) {
        max-width: 500px;
        margin: 1rem auto 2rem;
    }
}
.work-us__container {
    @media (width > 700px) {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: nowrap;
    }
}
.work-us__skill {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.2rem;
}
.work-us__skill-icon {
    margin-right: 1rem;
}
.work-us__contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.2rem;
}
.work-us__contact-icon {
    font-size: 2rem;
    margin-right: 1.2rem;
}
.work-us__img {
    text-align: center;
}
.work-us__img img {
    width: 90%;
    border-radius: 15px;
}
.pagination__blog {
    text-align: center;
}
.post-blog__title, .post-blog__excerpt {
    text-align: left;
}
.form__btn br {
    display: none !important;
}

.form__btn .icop {
    color: #fff !important;
}