/*---------- Webfonts -START ----------*/
@font-face {
    font-family: 'HP Simplified Light';
    src: url('../rsc/webfonts/hpsimplified_lt-webfont.woff2') format('woff2'),
        url('../rsc/webfonts/hpsimplified_lt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HP Simplified Regular';
    src: url('../rsc/webfonts/hpsimplified_rg-webfont.woff2') format('woff2'),
        url('../rsc/webfonts/hpsimplified_rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sharp Grotesk Book';
    src: url('../rsc/webfonts/SharpGroteskBook-25.woff2') format('woff2'),
        url('../rsc/webfonts/SharpGroteskBook-25.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*---------- Webfonts -END ----------*/

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

*:focus {
    outline: none !important;
}

*:link,
*:visited,
*:hover,
*:active {
    text-decoration: none;
    color: inherit;
}

body {
    background-color: #ffffff;
    height: 100%;
}

.title_hp_txt {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    color: #666666;
    font-size: 26px;
}

.normal_hp_txt {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    color: #666666;
    font-size: 20px;
}

@media only screen and (max-width: 600px) {
    .title_hp_txt {
        font-size: 20px;
    }

    .normal_hp_txt {
        font-size: 16px;
    }
}

/*---------- Header -START ----------*/
.header {
    background-color: #0e0905;
    height: 80px;
    width: auto;
    padding: 0 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    transition: 1s;
}

.logo_hp-emp {
    height: 36px;
    width: 260px;
    background-image: url(../rsc/logos/hp_emp.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.header_menu_cont {
    display: block;
    width: auto;
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    color: #eff1f9;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
}

.header_menu_mobile_btn {
    display: none;
    height: 40px;
    width: 40px;
    color: #eff1f9;
    font-size: 40px;
    font-weight: bolder;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.header_menu_btn {
    margin: 0 10px;
    transition: .5s;
}

.header_menu_btn:first-child {
    margin: 0 10px 0 0;
}

.header_menu_btn:last-child {
    margin: 0 0 0 10px;
}

.header_menu_btn:hover {
    color: #469bd4;
}

.sticky {
    background-color: #0b435c;
    height: 50px;
    position: fixed;
    top: 0;
    transition: 1s;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1024px) {
    .header {
        padding: 0 50px;
    }

    .logo_hp-emp {
        height: 80px;
        width: 200px;
    }

    .header_menu_cont {
        display: none;
    }

    .header_menu_mobile_btn {
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .header {
        height: 40px;
        padding: 0 25px;
    }

    .logo_hp-emp {
        height: 40px;
        width: 150px;
    }
}

@media only screen and (max-width: 375px) {
    .header {
        padding: 0 25px;
    }
}

/*---------- Header -END ----------*/

/*----------  Header Mobile Menu -START  ----------*/
.menu_mobile_overlay {
    height: 100%;
    width: 0%;
    max-width: 50%;
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    background-color: rgba(14, 9, 5, .75);
    box-shadow: -5px 0px 15px 0px rgba(0, 0, 0, 0.25);
    overflow-x: hidden;
    transition: 1s;
}

.menu_mobile_overlay_cont {
    display: flex;
    flex-direction: column;
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    color: #eff1f9;
    font-size: 20px;
    padding: 10px;
    margin: 50px 0 0 0;
}

.menu_mobile_overlay_cont a {
    padding: 10px;
    border-bottom: solid 2px #666666;
}

.menu_mobile_overlay_cont a:first-child {
    border-top: solid 2px #666666;
}

.closebtnmob {
    position: absolute;
    border: solid 2px #666666;
    border-radius: 2px;
    box-sizing: border-box;
    top: 10px;
    left: 10px;
    height: 40px;
    width: 40px;
    font-size: 40px;
    text-align: center;
    line-height: 36px;
    color: #eff1f9;
}

@media only screen and (max-width: 600px) {
    .menu_mobile_overlay {
        max-width: 100%;
        transition: .5s;
        background-color: rgba(14, 9, 5, 1);
    }
}

@media only screen and (max-width: 375px) {
    .menu_mobile_overlay_cont {
        text-align: center;
        font-size: 18px;
    }

    .closebtnmob {
        left: unset;
        right: 10px;
    }
}

/*----------  Header Mobile Menu -END  ----------*/

/*---------- Banner -START ----------*/
.banner {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    background: rgba(0, 0, 0, .25) url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAF0lEQVQIW2NkYGD4z8DAwMgAI0AMDA4AI3EBBCKrOnQAAAAASUVORK5CYII=');
}

.banner_logo_hp_wolf {
    position: absolute;
    top: 0;
    left: 50px;
    height: 245px;
    width: 110px;
    background-color: #2c2e30;
    background-image: url(../rsc/logos/hp_wolf.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 85px;
}

.banner_logo_hp_wolf_rwork {
    position: absolute;
    top: 0;
    left: 50px;
    height: 82px;
    width: 82px;
    background-image: url(../rsc/logos/hp_wolf.svg);
    background-repeat: no-repeat;
    background-position: center 10px;
    background-size: 85px;
}

.banner_logo_hp-emp {
    position: absolute;
    top: 175px;
    right: 50px;
    height: 90px;
    width: 680px;
    background-image: url(../rsc/logos/hp_emp.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.banner_logo_intel {
    position: absolute;
    bottom: 50px;
    right: 50px;
    height: 38px;
    width: 100px;
    background-image: url(../rsc/logos/intel.svg);
    background-repeat: no-repeat;
    background-position: center;

}

.banner_txt {
    color: #eff1f9;
    text-align: right;
    position: absolute;
    top: calc(50% - 44.5px);
    right: 50px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

.banner_title {
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    font-size: 40px;
    text-transform: uppercase;
}

.banner_subtitle {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 30px;
}

.banner_gradient {
    background: rgb(14, 9, 5);
    background: linear-gradient(0deg, rgba(14, 9, 5, 1) 0%, rgba(14, 9, 5, 0) 25%, rgba(14, 9, 5, 0) 75%, rgba(14, 9, 5, 1) 100%);
    min-height: 640px;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner_video,
.banner_image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}

@media only screen and (max-width: 1024px) {
    .banner {
        min-height: 480px;
    }

    .banner_logo_hp-emp {
        top: 202px;
        height: 53px;
        width: 375px;
    }

    .banner_gradient {
        min-height: 480px;
    }

    .banner_txt {
        width: 90vw;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .banner_title {
        font-size: 30px;
    }

    .banner_subtitle {
        font-size: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .banner {
        min-height: 320px;
    }

    .banner_logo_hp_wolf {
        height: 175px;
        width: 80px;
        right: 25px;
        left: unset;
        background-size: 70px;
    }

    .banner_logo_hp-emp {
        top: 195px;
        height: 40px;
        width: 300px;
        right: 25px;
    }

    .banner_logo_intel {
        bottom: 25px;
        right: 25px;
        height: 30px;
        width: 80px;
    }

    .banner_txt {
        width: 100%;
        box-sizing: border-box;
        padding: 0 130px 0 25px;
        top: 50%;
        text-align: left;
    }

    .banner_title {
        font-size: 26px;
    }

    .banner_subtitle {
        font-size: 16px;
    }

    .banner_gradient {
        min-height: 320px;
    }

    .banner_video {
        height: 340px;
    }

    .banner_logo_hp-emp {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width: 375px) {
    .banner_logo_hp-emp {
        height: 34px;
        width: 250px;

    }
}

/*---------- Banner -END ----------*/

/*---------- Intro Secction -START ----------*/
.intro_secc {
    padding: 50px 0 0 0;
    text-align: center;
    margin: 0 0 25px 0;
}

.intro_secc p {
    width: 75vw;
    max-width: 1200px;
    margin: auto;
}

@media only screen and (max-width: 600px) {
    .intro_secc {
        padding: 25px 0 0 0;
    }
}

/*---------- Intro Secction -END ----------*/

/*---------- Intro Message -START ----------*/
.intro_message {
    background-color: #a3a3a3;
    color: #eff1f9;
    padding: 25px 0 25px 0;
    text-align: center;
}

/*---------- Intro Message -END ----------*/

/*---------- Journey -START ----------*/
.journey_cont {
    position: relative;
    margin: 50px auto 0 auto;
    max-width: 1200px;
    padding: 20px;
    box-sizing: content-box;
    border: solid 1px #e3e1dc;
    border-radius: 10px;
}

.journey_map_cont {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.map_flag {
    height: auto;
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    align-items: center;
    margin: 10px;
}

.mf01,
.mf02,
.mf03,
.mf04,
.mf05,
.mf06 {
    width: 100px;
    height: 100px;
    margin: 0 0 10px 0;
}

.mf01 {
    background-image: url(../rsc/imgs/solco/icon_journey/01_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.mf02 {
    background-image: url(../rsc/imgs/solco/icon_journey/02_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.mf03 {
    background-image: url(../rsc/imgs/solco/icon_journey/03_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.mf04 {
    background-image: url(../rsc/imgs/solco/icon_journey/04_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.mf05 {
    background-image: url(../rsc/imgs/solco/icon_journey/05_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.mf06 {
    background-image: url(../rsc/imgs/solco/icon_journey/06_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.tooltip_journey {

    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.tooltip_journey strong {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
}

.map_flag:hover .tooltip_journey {
    opacity: 1;
    visibility: visible;
}

.map_section {
    background-image: url(../rsc/imgs/solco/icon_journey/07_icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}

.map_section p {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #666666;
    text-align: center;
}

.section_line {
    background-color: #e3e1dc;
    height: 6px;
    width: 100%;
    border-radius: 3px;
}

.linetip_journey {
    display: none;
}

@media only screen and (max-width: 1200px) {
    .journey_cont {
        margin: 50px 25px 0 25px;
        max-width: unset;
    }

    .journey_map_cont {
        justify-content: center;
    }
}

@media only screen and (max-width: 600px) {
    .hp_icon_legend {
        margin: 0 0 15px 0;
        text-align: center;
        font-size: 16px;
    }

    .map_flag {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .mf01,
    .mf02,
    .mf03,
    .mf04,
    .mf05,
    .mf06 {
        width: 80px;
        height: 80px;
        min-width: 80px;
        margin: 0 10px 0 0;
    }

    .tooltip_journey {
        font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
        font-size: 14px;
    }

    .journey_cont {
        margin: 25px 10px 0 10px;
        padding: 5px;
    }
}

/*---------- Journey -END ----------*/

/*---------- General Info -START ----------*/
.gen_info_cont {
    margin: 25px auto 0 auto;
    max-width: 1200px;
}

.gen_info_title {
    background-color: #f2a94a;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #ffffff;
}

@media only screen and (max-width: 1200px) {
    .gen_info_title {
        margin: 0 10px;
    }
}

/*---------- General Info -END ----------*/

/*---------- Lifecycle -START ----------*/
.lifecycle_cont {
    background: rgb(17, 147, 207);
    background: linear-gradient(90deg, rgba(17, 147, 207, 1) 0%, rgba(16, 90, 159, 1) 100%);
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
}

.lifecycle_inner {
    margin: auto;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.lifecycle_logo {
    background-image: url(../rsc/logos/hp_logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 80px;
    height: 80px;
    margin: 25px 50px;
}

.lifecycle_text {
    max-width: 586px;
    color: #ffffff;
}

.lifecycle_title {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    font-size: 30px;
}

.lifecycle_subtitle {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 26px;
}

.lifecycle_desc {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.lifecycle_div {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
    width: 100%;
    height: 2px;
}

.lifecycle_icon {
    background-image: url(../rsc/imgs/solco/lifecycle_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 80px;
    height: 80px;
    margin: 25px 50px;
}

.lifecycle_cta {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 25px auto 0 auto;
    width: 150px;
}

@media only screen and (max-width: 1024px) {
    .lifecycle_icon {
        margin: 25px 25px;
    }

    .lifecycle_logo {
        margin: 25px 25px;
    }

    .lifecycle_text {
        max-width: 50vw;
    }
}

@media only screen and (max-width: 600px) {
    .lifecycle_inner {
        flex-direction: column;
        text-align: center;
    }

    .lifecycle_text {
        max-width: 90vw;
    }

    .lifecycle_title {
        font-size: 26px;
    }

    .lifecycle_subtitle {
        font-size: 20px;
    }

    .lifecycle_desc {
        font-size: 16px;
    }

    .lifecycle_div {
        width: 75%;
        margin: 10px auto;
    }
}

/*---------- Lifecycle -END ----------*/

/*---------- Soluciones de Cómputo - Menu -START ----------*/
.solco_menu {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.solco_menu_btn {
    overflow: hidden;
    height: auto;
    max-width: 300px;
    flex-grow: 1;
    border-radius: 10px;
    margin: 0 20px 0 20px;
}

.solco_btn_title {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.66);
    padding: 10px;
}

.solco_btn_title h1 {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin: 0;
}

.solco_btn_title h2 {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    font-size: 24px;
    margin: 0;
}

.solco_btn_img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.solco_btn_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.solco_btn_icons_cont {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-grow: 2;
}

.solco_btn_icon {
    height: 50px;
    width: 50px;
    margin: 10px;
    position: relative;
}

.solco_btn_icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.smb01 {
    background-color: cornflowerblue;
}

.smb01 h1,
.smb01 h2 {
    color: cornflowerblue;
}

.smb02 {
    background-color: gold;
}

.smb02 h1,
.smb02 h2 {
    color: goldenrod;
}

.smb03 {
    background-color: mediumaquamarine;
}

.smb03 h1,
.smb03 h2 {
    color: mediumaquamarine;
}

@media only screen and (max-width: 1024px) {
    .solco_menu {
        flex-direction: column;
        align-items: center;
    }

    .solco_menu_btn {
        width: 90vw;
        max-height: 150px;
        max-width: unset;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .solco_btn_title {
        height: 150px;
        text-align: center;
        display: flex;
        flex-grow: 2;
        flex-direction: column;
        justify-content: center;
    }

    .solco_btn_img {
        position: relative;
        overflow: hidden;
        height: 150px;
        width: 100%;
        max-width: 260px;
    }

    .solco_btn_icons {
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        flex-grow: 2;
    }

    .solco_btn_icons img {
        height: 40px;
        width: 40px;
        margin: 5px;
    }
}

@media only screen and (max-width: 1024px) {
    .solco_btn_title h1 {
        font-size: 16px;
    }

    .solco_btn_title h2 {
        font-size: 20px;
    }
}

/*---------- Soluciones de Cómputo - Menu -END ----------*/

/*---------- Contedido Interno -START ----------*/
.solco_div {
    height: 1px;
    width: 100%;
    max-width: 1200px;
    background-color: #e3e1dc;
    margin: 15px auto 15px auto;
}

.solco_div_alt {
    height: 1px;
    width: 100%;
    max-width: 1200px;
    background-color: #e3e1dc;
    margin: 25px auto 25px auto;
}

.cont_solco_int {
    max-width: 1200px;
    margin: 50px auto 25px auto;
    overflow: hidden;
    border-radius: 10px;
    /* border: solid 1px #e3e1dc; */
}

.title_solco_int {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    font-size: 26px;
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.resumen_solco_int {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 20px;
    padding: 10px;
    color: #666666;
}

.resumen_solco_int_alt {
    width: 100%;
    height: 400px;
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    background-image: url(../rsc/imgs/solco/solco_active_care.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.active_care_cont {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    padding: 10px 30px 30px 30px;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 50%);
}

.active_care_int {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.active_care_int img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.sub_cont_solco_int {
    margin: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.title_sub_solco_int {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    color: #469bd4;
}

.title_sub_solco_int h1 {
    font-size: 20px;
}

.title_sub_solco_int h2 {
    font-size: 16px;
}

.resumen_sub_solco_int {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    color: #999999;
    font-size: 16px;
}

.solco_slide_cont {
    margin: 20px 0;
}

@media only screen and (max-width: 1200px) {
    .cont_solco_int {
        margin: 25px 25px 0 25px;
    }
}

@media only screen and (max-width: 600px) {
    .cont_solco_int {
        margin: 25px 10px 0 10px;
    }

    .resumen_solco_int {
        font-size: 16px;
    }

    .sub_cont_solco_int {
        margin: 5px;
    }
}

/*---------- Contenido Interno -END ----------*/

/*---------- Contenido Ciclo -START ----------*/
.ciclo_title {
    color: cornflowerblue;
    background-color: #cbdbfa;
}

.admin_title {
    color: goldenrod;
    background-color: gold;
}

.servicio_title {
    color: mediumaquamarine;
    background-color: #ceeee2;
}

.exito_title {
    color: #ffffff;
    background-color: #0096D6;
}

/*---------- Contenido Ciclo -END ----------*/

/*---------- Casos de Éxito -START ----------*/
.upper_exito_cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.exito_logo {
    width: 150px;
    height: 150px;
}

.exito_logo img {
    width: auto;
    height: 100%;
}

.exito_quote {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 20px;
    padding: 0 25px;
    color: #666666;
}

.upper_exito_title {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    font-size: 26px;
}

.down_exito_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px 0 0 0;
    background-color: #e3e1db;
    border-radius: 10px;
    overflow: hidden;
}

.exito_video {
    height: 56.25%;
    width: 100%;
    max-width: 800px;
    ;
}

@media only screen and (max-width: 600px) {
    .upper_exito_cont {
        display: flex;
        flex-direction: column;
    }

    .upper_exito_title {
        font-size: 20px;
    }

    .exito_quote {
        font-size: 16px;
    }
}

/*---------- Casos de Éxito -END ----------*/

/*---------- Sustentabilidad -START ----------*/
.susty_cont {
    text-align: center;
    width: 75vw;
    max-width: 1200px;
    margin: 25px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.susty_title {
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    color: #000000;
    text-transform: uppercase;
    font-size: 20px;
    margin: 0 0 25px 0;
}

.susty_txt {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 18px;
    margin: 0 0 25px 0;
}

.susty_alt_txt {
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.susty_cont img {
    width: 100%;
    margin: 20px 0 20px 0;
}

.susty_video {
    width: 80%;
    border-radius: 5px;
    margin: 0 auto 25px auto;

}

.susty_button {
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    color: #ffffff;
    background-color: #000000;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    min-width: 230px;
}

@media only screen and (max-width: 768px) {
    .susty_cont {
        width: unset;
        margin: 25px 25px 0 25px;
    }
}

@media only screen and (max-width: 600px) {
    .susty_cont {
        width: unset;
        margin: 20px 20px 0 20px;
    }

    .susty_title {
        margin: 0 0 10px 0;
    }

    .susty_txt {
        margin: 0 auto 10px auto;
    }

    .susty_video {
        width: 100%;
        margin: 0 auto 15px auto;
    }
}

/*---------- Sustentabilidad -End ----------*/

/*----------  Article -START  ----------*/
.article_secc {
    background-color: #e3e1dc;
    padding: 40px 0;
}

.article_cont {
    width: 75vw;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column-reverse;

}

.video_slide_main {
    justify-content: center;
}

.video_slide {
    width: 100%;
}

.art_txt_cont {
    position: absolute;
    bottom: 0;
}

.art_main_desc {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    padding: 20px 150px 10px 150px;
}

.art_main_title {
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    font-size: 18px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.art_main_txt {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #333333;
}

.art_main_footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 150px 20px 150px;
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

.art_main_footer button {
    margin: 20px 0 0 0;
    background-color: #469bd4;
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    letter-spacing: .25px;
    color: #ffffff;
    font-size: 18px;
    border: none;
    padding: 8px 30px;
    border-radius: 2px;
    cursor: pointer;
}

.slide_main_bg {
    height: 800px;
}

.slide_main_bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}

.slide_mini {
    position: relative;
    min-height: 400px !important;
    margin: 0 20px 0 20px;
    overflow: hidden;
    border-radius: 5px;
}

.art_mini_desc {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 10px 30px 30px 30px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

.art_mini_title {
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    color: #0B435C;
}

.art_mini_title h1 {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    text-transform: none;
    font-size: 16px;
    color: #0B435C;
}

.art_mini_title h2 {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    text-transform: none;
    font-size: 14px;
    color: #0B435C;
}

.art_mini_txt {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #666666;
}

.art_mini_btn {
    margin: 20px auto 0 auto;
    border-radius: 5px;
    background-color: #469bd4;
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    padding: 5px;
    max-width: 200px;
}

.slide_mini_img {
    height: 40px;
    margin: 10px 0 0 0;

}

.slide_mini_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.slick-prev,
.slick-next {
    height: 40px !important;
    width: 40px !important;
}

.slick-next {
    right: 0px !important;
}

.slick-prev {
    left: 0px !important;
    z-index: 1;
}

.slick-next:before {
    font-size: 40px !important;
    color: #469bd4 !important;
}

.slick-prev:before {
    font-size: 40px !important;
    color: #469bd4 !important;
}

@media only screen and (max-width: 1024px) {
    .article_cont {
        width: calc(100vw - 80px);
    }

    .art_main_desc {
        padding: 20px 80px 10px 80px;
    }

    .art_main_footer {
        padding: 20px 80px;
    }

    .art_mini_desc {
        padding: 10px 20px 20px 20px;
    }

    .slide_mini {
        margin: 0 10px 0 10px;
    }

}

@media only screen and (max-width: 768px) {
    .article_secc {
        padding: 20px;
    }

    .article_cont {
        width: calc(100vw - 40px);
    }
}

@media only screen and (max-width: 600px) {
    .article_secc {
        padding: 20px 0;
    }

    .article_cont {
        width: 100%;
    }

    .art_main_desc {
        padding: 20px 20px 10px 20px;
    }

    .art_main_footer {
        padding: 20px 20px 10px 20px;
    }

    .art_main_title {
        font-size: 16px;
    }

    .art_main_txt,
    .art_main_footer,
    .art_main_footer button,
    .art_mini_title,
    .art_mini_txt {
        font-size: 14px;
    }
}

/*----------  Article -END  ----------*/

/*---------- Intro Menu -START ----------*/
.intro_menu {
    padding: 50px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
}

.intro_menu_desc {
    width: 600px;
    padding: 0 0 24px 0;
    border-bottom: solid 2px #cccccc;
}

.intro_menu_buttons {
    width: 600px;
    padding: 24px 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.intro_menu_button {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
    font-size: 26px;
    color: #666666;
    padding: 10px 20px;
    min-width: 200px;
    box-sizing: border-box;
    border: solid 2px #cccccc;
    border-radius: 4px;
    cursor: pointer;
    transition: .5s;
}

.intro_menu_button:hover {
    color: #469bd4;
    border-color: #469bd4;
}

@media only screen and (max-width: 1024px) {
    .intro_menu_desc {
        width: 90%;
        max-width: 600px;
    }

    .intro_menu_buttons {
        width: 90%;
        max-width: 600px;
    }
}

@media only screen and (max-width: 600px) {
    .intro_menu {
        padding: 25px 0 0 0;
    }

    .intro_menu_desc {
        padding: 0 0 11px 0;
    }

    .intro_menu_buttons {
        padding: 13px 0 0 0;
    }

    .intro_menu_button {
        font-size: 20px;
        min-width: 140px;
    }
}

@media only screen and (max-width: 375px) {
    .intro_menu_buttons {
        flex-direction: column;
    }

    .intro_menu_button {
        min-width: 100%;
        margin: 0 0 25px 0;
    }

    .intro_menu_button:last-child {
        margin: 0;
    }
}

/*---------- Intro Menu -END ----------*/

/*---------- Intro Menu Overlay -START ----------*/
.intro_menu_overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .85);
    overflow-y: hidden;
    transition: .5s;
}

.intro_menu_overlay_cont {
    position: absolute;
    padding: 20px 20px 0 20px;
    border: solid 10px #469bd4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    color: #eff1f9;
    font-size: 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro_menu_overlay_cont a {
    margin: 0 0 20px 0;
    opacity: .5;
    transition: .5s;
}

.intro_menu_overlay_cont a:hover {
    opacity: 1;
}

.intro_menu_title {
    width: 100%;
    font-size: 36px;
    color: #469bd4;
    margin: 0 0 20px 0;
    border-bottom: solid 5px;
    padding: 0 0 20px 0;
}

.closebtn {
    height: 40px;
    width: 40px;
    color: #eff1f9;
    border: solid 5px #eff1f9;
    font-size: 50px;
    line-height: 40px;
    position: absolute;
    top: -10px;
    right: -70px;
}

@media only screen and (max-width: 600px) {
    .intro_menu_overlay_cont {
        padding: 10px 10px 0 10px;
        font-size: 20px;
    }

    .intro_menu_title {
        font-size: 26px;
        margin: 0 0 10px 0;
        padding: 0 0 10px 0;
    }
}

@media only screen and (max-width: 375px) {
    .closebtn {
        top: unset;
        bottom: -90px;
        right: -10px;
    }
}

/*---------- Intro Menu Overlay -END ----------*/

/*----------  HP Help -START  ----------*/
.help_overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .85);
    overflow-y: hidden;
    transition: .5s;
}

.closebtnhelp {
    height: 30px;
    width: 30px;
    box-sizing: border-box;
    color: #eff1f9;
    border: solid 2px #eff1f9;
    border-radius: 4px;
    font-size: 49px;
    line-height: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.help_overlay::-webkit-scrollbar {
    width: 10px;
}

.help_overlay::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.25);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.help_overlay::-webkit-scrollbar-thumb {
    background-color: #469bd4;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.help_button {
    background-color: #469bd4;
    position: fixed;
    z-index: 1;
    top: calc(100% - 124px);
    right: 30px;
    height: auto;
    max-width: 250px;
    padding: 10px 30px 12px 30px;
    font-family: 'Sharp Grotesk Book';
    text-transform: uppercase;
    text-align: center;
    color: #eff1f9;
    font-size: 14px;
    line-height: 20px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 5px 5px -2px rgba(0, 0, 0, 0.33);
    transition: 1s;
}

.help_button p {
    margin: 0;
}

.help_button:hover {
    transform: scale(1.1);
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.66);
}

.help_big_text {
    font-size: 23px;
}

.help_overlay_cont {
    width: 75vw;
    position: relative;
    margin: 50px auto;
    box-sizing: border-box;
    background-color: #469bd4;
    border: solid 2px #eff1f9;
    border-radius: 4px;
    padding: 20px;
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    color: #eff1f9;
    font-size: 18px;
    transition: 1s;
}

.help_title_main {
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    font-size: 30px;
}

.help_form_upper {
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.help_input {
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #666666;
    padding: 0 20px;
    height: 50px;
    width: calc(50% - 10px);
    min-width: 300px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    border: none;
    border-radius: 2px;
    text-overflow: ellipsis;
}

.help_form_lower p {
    margin: 10px 0 10px 0;
}

.checkbox_cont {
    display: flex;
    align-items: center;
}

.checkbox_cont input {
    margin: 0 10px 0 0;
}

.checkbox_cont label {
    margin: 0 40px 0 0;
}

.help_priv_link,
.help_form_lower label {
    font-family: 'HP Simplified Regular', Arial, Helvetica, sans-serif;
}

.form_btn {
    background-color: #469bd4;
    border: solid 2px #eff1f9;
    border-radius: 4px;
    font-family: 'Sharp Grotesk Book', Arial, Helvetica, sans-serif;
    color: #eff1f9;
    font-size: 26px;
    padding: 10px 30px;
    margin: 20px 0 0 0;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .help_overlay_cont {
        width: unset;
        margin: 25px;
    }

}

@media only screen and (max-width: 768px) {
    .help_form_upper {
        flex-direction: column;
    }

    .help_input {
        width: 100%;
    }

}

@media only screen and (max-width: 600px) {
    .help_button {
        right: 0px;
        padding: 6px 15px 7px 15px;
        font-size: 10px;
        line-height: 12px;
        border-radius: 0px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    .help_big_text {
        font-size: 16.5px;
    }

    .closebtnhelp {
        top: 10px;
        right: 10px;
    }

    .help_overlay_cont {
        font-size: 14px;
        margin: 0 2px 0 0;
        border-radius: 0;
        border: unset;
        padding: 10px;
    }

    .form_btn {
        font-size: 18px;
    }

    .help_title_main {
        font-size: 24px;
    }

    .help_input {
        padding: 0 10px;
        margin: 0 0 10px 0;
        height: 40px;
        min-width: unset;
        font-size: 14px;
    }

    .help_overlay::-webkit-scrollbar-track {
        border-top-left-radius: unset;
        border-bottom-left-radius: unset;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .help_overlay::-webkit-scrollbar-thumb {
        border-top-left-radius: unset;
        border-bottom-left-radius: unset;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

}

/*----------  HP Help -END  ----------*/

/*---------- HP Icons Footer -START ----------*/
.hp_icons_footer {
    padding: 50px 0 0 0;
    width: 75vw;
    max-width: 1200;
    margin: auto;
}

.yt_cont {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.yt_cont_solco {
    margin-top: 25px;
}

.hp_icon_yt {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    margin: auto;
}

.hp_icon_yt iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hp_icon_legend {
    margin: 0 0 25px 0;
    text-align: center;
    font-size: 24px;
}

.hp_icon_cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hp_icon {
    margin: 0 10px 50px 10px;
    text-align: center;
    width: 120px;
    font-size: 10px;
    color: #666666;
    cursor: pointer;
    position: relative;
}

.instale_icon {
    background: url(../rsc/imgs/icon_footer/instale_icon.svg) no-repeat center / contain;
    height: 90px;
    margin: 0 0 5px 0;
}

.mantenga_icon {
    background: url(../rsc/imgs/icon_footer/mantenga_icon.svg) no-repeat center / contain;
    height: 90px;
    margin: 0 0 5px 0;
}

.proteja_icon {
    background: url(../rsc/imgs/icon_footer/proteja_icon.svg) no-repeat center / contain;
    height: 90px;
    margin: 0 0 5px 0;
}

.optimice_icon {
    background: url(../rsc/imgs/icon_footer/optmice_icon.svg) no-repeat center / contain;
    height: 90px;
    margin: 0 0 5px 0;
}

.colabore_icon {
    background: url(../rsc/imgs/icon_footer/colabore_icon.svg) no-repeat center / contain;
    height: 90px;
    margin: 0 0 5px 0;
}

.renueve_icon {
    background: url(../rsc/imgs/icon_footer/renueve_icon.svg) no-repeat center / contain;
    height: 90px;
    margin: 0 0 5px 0;
}

.hp_icon p {
    font-family: 'Sharp Grotesk Book';
    letter-spacing: 1px;
}

.tooltiptext {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #eff1f9;
    height: auto;
    width: 200px;
    left: -50px;
    margin: 5px 0 0 0;
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 14px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
    border: solid 1px #999999;
    transition: .5s;
    z-index: 1;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.33);
}

.hp_icon:hover .tooltiptext {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 600px) {
    .hp_icons_footer {
        width: 90vw;
        padding: 25px 0 0 0;
    }
}

/*---------- HP Icons Footer -END ----------*/

/*---------- Sections Outro Text -START ----------*/
.section_outro {
    background-color: #0B435C;
    font-family: 'HP Simplified Light', Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-align: center;
    color: #eff1f9;
    padding: 25px;
}

.section_outro p {
    max-width: 900px;
    margin: auto;
}

@media only screen and (max-width: 600px) {
    .section_outro {
        font-size: 14px;
    }
}

/*---------- Sections Outro Text -END ----------*/

/*---------- Footer -START ----------*/
.footer {
    background-color: #0e0905;
    height: auto;
    width: auto;
    padding: 20px 0;
    font-family: 'HP Simplified Light';
    color: #eff1f9;
    text-align: center;
    font-size: 14px;
}

.footer p {
    width: 50vw;
    margin: auto;
}

@media only screen and (max-width: 1024px) {
    .footer {
        font-size: 12px;
    }

    .footer p {
        width: 75vw;
    }
}

/*---------- Footer -END ----------*/