/*-----------------------------------------------------------------------------------
    Project: CUMULO
-------------------------------------------------------------------------------------
    01. Family font principal
    02. Colors ID
    03. General
    04. Buttons
    05. Header
    06. Inicio
    07. Footer
    08. Servicios
    09. Blog
    10. Blog Detail
    11. Menu carrito de compras
    12. Términos & condiciones
-------------------------------------------------------------------------------------*/


*,
body {
    font-family: 'Cera-pro';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* * * 01. Family font principal * * * * * * * * * * * * * */
@font-face {
    font-family: 'Cera-pro';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Cerapro/Cera-Pro-Light.otf');
}

@font-face {
    font-family: 'Cera-pro';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Cerapro/Cera-Pro-Regular.otf');
}

@font-face {
    font-family: 'Cera-pro';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Cerapro/Cera-Pro-Medium.otf');
}

@font-face {
    font-family: 'Cera-pro';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Cerapro/Cera-Pro-Bold.otf');
}

@font-face {
    font-family: 'Cera-pro';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Cerapro/Cera-Pro-Black.otf');
}

/*ITALIC*/
@font-face {
    font-family: 'Cera-pro';
    font-style: italic;
    font-weight: 300;
    src: url('../fonts/Cerapro/Cera-Pro-Light-Italic.otf');
}

@font-face {
    font-family: 'Cera-pro';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/Cerapro/Cera-Pro-Regular-Italic.otf');
}

@font-face {
    font-family: 'Cera-pro';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/Cerapro/Cera-Pro-Medium-Italic.otf');
}

@font-face {
    font-family: 'Cera-pro';
    font-style: italic;
    font-weight: 800;
    src: url('../fonts/Cerapro/Cera-Pro-Bold-Italic.otf');
}

@font-face {
    font-family: 'Cera-pro';
    font-style: italic;
    font-weight: 900;
    src: url('../fonts/Cerapro/Cera-Pro-Black-Italic.otf');
}

/* * * 02. Colors ID * * * * * * * * * * * * * * * * * * */
:root {
    --cml-white: #FFFFFF;
    --cml-blue-light: #30C3EA;
    --cml-aqua: #56c2bb;
    --cml-green-light: #8BC97E;
    --cml-yellow: #FFD007;
    --cml-blue: #2B92D0;
    --cml-navy-blue: #20224A;
    --cml-gradient: linear-gradient(90deg, rgba(48, 195, 234, 1) 9%, rgba(253, 221, 9, 1) 100%);
}

/* * * 03. General * * * * * * * * * * * * * * * */
.mv-brand {
    display: none;
}

.ht-100 {
    height: 100%;
}

.cml_title_default h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cml-navy-blue);
}

.cml_title_default p {
    color: rgb(32 34 74 / 50%);
}

.cml_tag_gral {
    color: var(--cml-aqua);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: inline-block;
}

.cml_title_default.italic_aqua h1 span {
    font-style: italic;
    color: var(--cml-aqua);
}

.cml_title_default.italic_green h1 span {
    font-style: italic;
    color: var(--cml-green-light);
}

.cml_tag_blog {
    color: var(--cml-white);
    text-transform: uppercase;
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 50px;
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 1;
}

.cml_tag_blog.aqua {
    background-color: var(--cml-aqua);
    line-height: normal;
}

.cml_tag_blog.blue {
    background-color: var(--cml-blue);
    line-height: normal;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cml_overflow {
    overflow: hidden;
}

/* * * 04. Buttons * * * * * * * * * * * * * * * */
.cml_btn_default {
    color: var(--cml-white);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 50px;
    padding: 5px 7px 5px 26px;
    font-size: 14px;
    font-weight: 500;
    transition: all 450ms ease-in-out;
}

.cml_btn_default .cml_btn_arrow_icon .icons_box {
    display: flex;
    align-items: center;
    transform: translate(calc(-110% + 24px), 0);
    -webkit-transform: translate(calc(-110% + 24px), 0);
    -moz-transform: translate(calc(-110% + 24px), 0);
    -ms-transform: translate(calc(-110% + 24px), 0);
    -o-transform: translate(calc(-110% + 24px), 0);
    transition: all 320ms ease-in-out;
    -webkit-transition: all 320ms ease-in-out;
    -moz-transition: all 320ms ease-in-out;
    -ms-transition: all 320ms ease-in-out;
    -o-transition: all 320ms ease-in-out;
}

.cml_btn_default:hover .cml_btn_arrow_icon .icons_box {
    transform: translate(0, calc(-110% + 0px));
    -webkit-transform: translate(0, calc(-110% + 0px));
    -moz-transform: translate(0, calc(-110% + 0px));
    -ms-transform: translate(0, calc(-110% + 0px));
    -o-transform: translate(0, calc(-110% + 0px));
}

.cml_btn_default .cml_btn_arrow_icon span {
    font-weight: 300;
    font-size: 22px;
}

.cml_btn_arrow_icon {
    background-color: var(--cml-white);
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    height: 42px;
    width: 42px;
}

.cml_btn_default .cml_btn_arrow_icon .icons_box span:first-child {
    transform: rotate(45deg) translate(30px, -16px);
    -webkit-transform: rotate(45deg) translate(30px, -16px);
    -moz-transform: rotate(45deg) translate(30px, -16px);
    -ms-transform: rotate(45deg) translate(30px, -16px);
    -o-transform: rotate(45deg) translate(30px, -16px);
}

.cml_btn_default .cml_btn_arrow_icon .icons_box span:last-child {
    transform: rotate(45deg) translate(16px, 33px);
    -webkit-transform: rotate(45deg) translate(16px, 33px);
    -moz-transform: rotate(45deg) translate(16px, 33px);
    -ms-transform: rotate(45deg) translate(16px, 33px);
    -o-transform: rotate(45deg) translate(16px, 33px);
}

/*Colors*/
.cml_btn_default.blue {
    background-color: var(--cml-blue);
}

.cml_btn_default.blue:hover {
    background-color: var(--cml-blue-light);
}

.cml_btn_default.blue:hover .cml_btn_arrow_icon {
    color: var(--cml-blue-light);
}

.cml_btn_default.blue .cml_btn_arrow_icon {
    color: var(--cml-blue);
}

.cml_btn_default.aqua {
    background-color: var(--cml-aqua);
}

.cml_btn_default.aqua:hover {
    background: var(--cml-blue);
}

.cml_btn_default.aqua:hover .cml_btn_arrow_icon {
    color: var(--cml-blue);
}

.cml_btn_default.aqua .cml_btn_arrow_icon {
    color: var(--cml-aqua);
}

.cml_btn_default.low-blue {
    background-color: var(--cml-blue-light);
}

.cml_btn_default.low-blue .cml_btn_arrow_icon {
    color: var(--cml-blue-light);
}

.cml_btn_default.low-green {
    background-color: var(--cml-green-light);
}

.cml_btn_default.low-green:hover {
    background: var(--cml-aqua);
}

.cml_btn_default.low-green:hover .cml_btn_arrow_icon {
    color: var(--cml-aqua);
}

.cml_btn_default.low-green .cml_btn_arrow_icon {
    color: var(--cml-green-light);
}

.cml_btn_default.navy {
    background-color: var(--cml-navy-blue);
}

.cml_btn_default.navy .cml_btn_arrow_icon {
    color: var(--cml-navy-blue);
}

/* * * 05. Header * * * * * * * * * * * * * * * */

.cml_header {
    position: fixed;
    top: 0;
    padding: 14px 0;
    width: 100%;
    z-index: 99;
    transition: background-color 300ms ease-in-out;
    -webkit-transition: background-color 300ms ease-in-out;
    -moz-transition: background-color 300ms ease-in-out;
    -ms-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
}

.cml_header.--solid {
    background-color: var(--cml-navy-blue);
}

.cml_header.h_fixed {
    background-color: var(--cml-white);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 4%);
}

.cml_header .cml_brand .text path {
    transition: fill 300ms ease-in-out;
    -webkit-transition: fill 300ms ease-in-out;
    -moz-transition: fill 300ms ease-in-out;
    -ms-transition: fill 300ms ease-in-out;
    -o-transition: fill 300ms ease-in-out;
}

.cml_header.h_fixed .cml_brand .text path {
    fill: var(--cml-navy-blue);
}

.cml_header .cml_cont_header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 10px;
}

.cml_header .cml_cont_header .cml_brand {
    width: fit-content;
    display: block;
}

.cml_header .cml_link_menu {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin: 0;
}

.cml_header .cml_link_menu .cml_link {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 0.2px;
    color: var(--cml-white);
    transition: color 300ms ease-in-out;
    -webkit-transition: color 300ms ease-in-out;
    -moz-transition: color 300ms ease-in-out;
    -ms-transition: color 300ms ease-in-out;
    -o-transition: color 300ms ease-in-out;
}

.cml_header .cml_link_menu .cml_link.active,
.cml_header.h_fixed .cml_link_menu .cml_link.active {
    color: var(--cml-blue-light);
    font-weight: 600;
}

.cml_header.h_fixed .cml_link_menu .cml_link {
    color: var(--cml-navy-blue);
}

.cml_header .cml_cart_user .cml_cont_tab {
    width: fit-content;
    background-color: var(--cml-white);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    padding: 12px 22px;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
}

.cml_header .cml_cart_user .cml_cont_tab:hover {
    background-color: #eff5fe;
}

.cml_header.h_fixed .cml_cart_user .cml_cont_tab {
    background-color: var(--cml-navy-blue);
    transition: background-color 300ms ease-in-out;
    -webkit-transition: background-color 300ms ease-in-out;
    -moz-transition: background-color 300ms ease-in-out;
    -ms-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
}

.cml_header .cml_cart_user .cml_cont_tab svg path {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.cml_header.h_fixed .cml_cart_user .cml_cont_tab svg path {
    stroke: var(--cml-white);
}

.cml_header .cml_cart_user .cml_cont_tab .divisor {
    width: 1.5px;
    height: auto;
    background-color: var(--cml-navy-blue);
    opacity: 0.4;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.cml_header.h_fixed .cml_cart_user .cml_cont_tab .divisor {
    background-color: var(--cml-white);
}

.cml_header .cml_cart_user {
    margin-left: auto;
}

/* * * 06. Inicio * * * * * * * * * * * * * * * */
/* * Banner * */
.cml_banner {
    position: relative;
    overflow: hidden;
    height: 100dvh;
}

.cml_banner .cml_img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
}

.cml_banner.mask .cml_img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 45%);
}

.cml_banner.mask_blog .cml_img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(32 34 74 / 25%);
}

.cml_banner .cml_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cml_banner .cml_img .simpleParallax {
    height: 100%;
}

.cml_banner .cml-title-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--cml-white);
    z-index: 2;
    position: relative;
    text-align: center;
    gap: 8px;
}

.cml_banner .cml-title-banner h1 {
    font-size: clamp(2rem, 5vw, 4.3rem);
    font-weight: 800;
}

.cml_banner .cml-title-banner h1 span {
    font-style: italic;
    background: var(--cml-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cml_banner .cml-title-banner p {
    max-width: 500px;
    font-size: 14px;
    font-weight: 500;
}

.cml_banner .cml_btn_default {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    z-index: 3;
}

.cml_banner .cml_scroll {
    position: absolute;
    right: 23px;
    bottom: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cml-white);
    font-size: 14px;
    writing-mode: vertical-rl;
    font-weight: 500;
}

.cml_banner .cml_scroll span {
    font-weight: 300;
    font-size: 22px;
}

/* * Clientes * */
.cml_clients {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 70px 0;
}

.cml_clients .cml_cont_client {
    margin-bottom: 50px;
}

.cml_timeline_brands {
    position: relative;
    overflow-x: clip;
}

.cml_timeline_brands .cml_timeline_cont {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 22px;
    flex-shrink: 0;
    margin-right: 22px;
}

.cml_timeline_brands .cml_timeline_cont .cml_item_card {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    background-color: #F8F9FA;
    display: grid;
    place-content: center;
    box-shadow: 0 0 16px rgb(0 0 0 / 10%);
}

.cml_timeline_brands .cml_timeline_cont .cms_timeline_item {
    display: flex;
    gap: 22px;
    flex-direction: column;
    justify-content: center;
}

.cml_timeline_brands .autoplay_smooth {
    display: flex;
    animation: smoothScrollBrand 5s linear infinite;
    -webkit-animation: smoothScrollBrand 5s linear infinite;
    width: max-content;
}

@keyframes smoothScrollBrand {
    0% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
}

/* * Servicios * */
.cml_services {
    background-color: var(--cml-navy-blue);
    padding: 70px 0;
    color: var(--cml-white);
    background-image: url('../img/background/background-servicio.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cml_cont_services {
    position: relative;
    overflow: hidden;
}

.cml_services .cml_cont_client {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    padding: 0 0 40px;
}

.cml_services .cml_cont_client .cml_title_default h1 {
    color: var(--cml-white);
}

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

.cml_cont_services .cml_item_service .cml-img {
    height: 110dvh;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.cml_cont_services .cml_item_service .cml-img>.simpleParallax {
    height: 100%;
}

.cml_cont_services .cml_item_service .cml-img img {
    height: 100%;
    width: 100%;
    object-position: center center;
    object-fit: cover;
    display: block;
}

.cml_cont_services .cml_item_service .cml_info_services {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
    padding-left: 50px;
    position: relative;
    overflow: hidden;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow .cml_text_title {
    position: relative;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow .cml_text_title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cml-navy-blue);
    font-weight: 900;
    font-style: italic;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow .cml_text_title h1 {
    font-size: clamp(6rem, 12vw, 10.6rem);
    font-weight: 900;
    color: rgb(86 194 187 / 20%);
    text-transform: uppercase;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: -1;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow .cml_arrow_card {
    display: flex;
    gap: 8px;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow .cml_arrow_card .cml_arrow_item {
    width: 48px;
    height: 48px;
    background-color: #262626;
    border-radius: 50px;
    color: var(--cml-white);
    display: grid;
    place-content: center;
    cursor: pointer;
    transition: background-color 300ms ease-in-out;
    -webkit-transition: background-color 300ms ease-in-out;
    -moz-transition: background-color 300ms ease-in-out;
    -ms-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow .cml_arrow_card .cml_arrow_item:hover {
    background-color: rgb(38 38 38 / 90%);
}

.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow .cml_arrow_card .cml_arrow_item span {
    font-weight: 300;
}

.cml_card_service>.swiper {
    overflow: visible;
}

.cml_card_service .cml_item_card_service {
    height: calc(430px - 0px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(0deg, rgba(43, 146, 208, 1) 0%, rgba(86, 194, 187, 1) 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
    color: var(--cml-white);
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}


.cml_cont_services .cml_item_service .cml_info_services .cml_card_service .cml_item_card_service::after {
    font-family: 'Material Symbols Rounded';
    position: absolute;
    font-size: 390px;
    left: -120px;
    bottom: -178px;
    z-index: 0;
    color: var(--cml-navy-blue);
    opacity: 0.05;
    font-weight: 500;
    pointer-events: none;
}

.cml_cont_services .cml_item_service:nth-child(1) .cml_info_services .cml_card_service .cml_item_card_service::after {
    content: "database_upload";
}

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services .cml_card_service .cml_item_card_service::after {
    content: "cloud_lock";
}

.cml_cont_services .cml_item_service:nth-child(3) .cml_info_services .cml_card_service .cml_item_card_service::after {
    content: "shield_locked";
}

.cml_card_service .cml_item_card_service .cml_tag_sv .tag_service {
    font-size: 12px;
    background-color: var(--cml-navy-blue);
    color: var(--cml-white);
    text-transform: uppercase;
    width: fit-content;
    padding: 5px 18px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.cml_card_service .cml_item_card_service .cml_tag_sv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cml_card_service .cml_item_card_service .cml_tag_sv .icon-service {
    width: 28px;
    height: 28px;
    display: grid;
    place-content: center;
    background-color: var(--cml-white);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.cml_card_service .cml_item_card_service .cml_tag_sv .icon-service::after {
    font-family: 'Material Symbols Rounded';
    font-size: 20px;
    font-weight: 300;
}

.cml_cont_services .cml_item_service:nth-child(1) .cml_info_services .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service::after {
    content: "database_upload";
    color: var(--cml-aqua);
}

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service::after {
    content: "cloud_lock";
    color: var(--cml-blue-light);
}

.cml_cont_services .cml_item_service:nth-child(3) .cml_info_services .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service::after {
    content: "shield_locked";
    color: var(--cml-green-light);
}

.cml_card_service .cml_item_card_service .cml_tag_sv .icon-service span {
    font-size: 20px;
}

.cml_card_service .cml_item_card_service .cml_name_service {
    text-transform: uppercase;
    font-weight: 600;
    margin: 5px 0 0;
}

.cml_card_service .cml_item_card_service .cml_list_price h2 {
    font-weight: 800;
    margin-bottom: 18px;
}

.cml_card_service .cml_item_card_service .cml_list_price h2 span {
    font-size: 16px;
    font-weight: 500;
}

.cml_card_service .cml_item_card_service .cml_list_price .list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: grid;
    gap: 10px;
}

.cml_card_service .cml_item_card_service .cml_list_price .list .icon-check {
    width: 22px;
    height: 22px;
    border-radius: 50px;
    background-color: var(--cml-white);
    display: grid;
    place-content: center;
    color: var(--cml-aqua);
}

.cml_card_service .cml_item_card_service .cml_list_price .list .icon-check span {
    font-size: 20px;
}

.cml_card_service .cml_item_card_service .cml_list_price .list li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cml_card_service .cml_item_card_service .cml_list_price .list li p {
    margin: 0;
    font-size: 14px;
}

.cml_card_service .cml_item_card_service .cml_btn_default {
    width: 100%;
    justify-content: flex-end;
    gap: 30px;
}

.cml_card_service .cml_item_card_service .cml_leyenda {
    font-size: 12px;
    display: block;
    line-height: normal;
    font-weight: 300;
}

.cml_card_service .cml_item_card_service .sv-bottom {
    display: grid;
    gap: 10px;
}

.cml_card_service .cml_item_card_service .sv-bottom,
.cml_card_service .cml_item_card_service .sv-top,
.cml_card_service .cml_item_card_service .cml_list_price {
    z-index: 1;
}

.cml_card_service .cml_item_card_service .back-icon {
    position: absolute;
    font-size: 390px;
    left: -120px;
    bottom: -80px;
    z-index: 0;
    color: var(--cml-navy-blue);
    opacity: 0.05;
    font-weight: 500;
    pointer-events: none;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_text_aviso {
    font-size: 13px;
    color: var(--cml-navy-blue);
    opacity: 0.7;
    line-height: normal;
    margin: 0;
    margin-top: 25px;
}

.cml_cont_services .cml_item_service .cml_info_services .cml_text_aviso,
.cml_cont_services .cml_item_service .cml_info_services .cml_title_arrow {
    width: calc(100% - 11%);
}

/* * Servicio Direction * */

.cml_cont_services .cml_item_service:nth-child(2) {
    direction: rtl;
}

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services {
    padding-left: 0;
    padding-right: 50px;
}

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services .cml_title_arrow {
    direction: ltr;
}

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services .cml_card_service .cml_item_card_service {
    direction: ltr;
    background: linear-gradient(0deg, rgba(139, 201, 126, 1) 0%, rgba(48, 195, 234, 1) 100%);
}

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services .cml_text_aviso {
    direction: ltr;
}

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services .cml_title_arrow .cml_text_title h1 {
    font-size: clamp(4.4rem, 9vw, 8rem);
    color: rgb(48 195 234 / 20%);
}

/* * End * */

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service span {
    color: var(--cml-blue-light);
}

.cml_cont_services .cml_item_service:nth-child(2) .cml_info_services .cml_card_service .cml_item_card_service .cml_list_price .list .icon-check {
    color: var(--cml-green-light);
}

.cml_cont_services .cml_item_service:nth-child(3) .cml_info_services .cml_title_arrow .cml_text_title h1 {
    color: rgb(139 201 126 / 20%);
}

.cml_cont_services .cml_item_service:nth-child(3) .cml_info_services .cml_card_service .cml_item_card_service {
    background: linear-gradient(0deg, rgba(239, 185, 3, 1) 0%, rgba(139, 201, 126, 1) 100%);
}

.cml_cont_services .cml_item_service:nth-child(3) .cml_info_services .cml_card_service .cml_item_card_service .cml_list_price .list .icon-check {
    color: var(--cml-yellow);
}

.cml_cont_services .cml_item_service:nth-child(3) .cml_info_services .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service span {
    color: var(--cml-green-light);
}

/* * Promocional * */

.cml_promocional {
    background-image: url('../img/background/banner-promocinal-cumulo.webp');
    padding: 70px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cml_promocional .cml_title_promocional {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--cml-white);
}

.cml_promocional .cml-cont-grid {
    display: grid;
    grid-template-columns: 90px 90px 1fr 90px 90px;
    padding: 50px 0 20px;
    gap: 15px 0;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(1) {
    grid-column: 1 / 4;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(2) {
    grid-column: 2 / 5;
    direction: rtl;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(3) {
    grid-column: 3 / 6;
}

.cml_promocional .cml-cont-grid .cml_cont_item {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 17px;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_number,
.cml_promocional .cml-cont-grid .cml_cont_item .cml_text_img {
    background-color: var(--cml-white);
    width: 100%;
    height: 100%;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_text_img {
    display: flex;
    align-items: center;
    gap: 55px;
    padding: 8px 8px 8px 34px;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(2) .cml_text_img {
    direction: ltr;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_text_img .cml-img {
    min-width: calc(250px - 0px);
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_text_img .cml-img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_text_img .cml_text h4 {
    font-weight: 800;
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    margin-bottom: 12px;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(1) .cml_text_img .cml_text h4 {
    color: #49C5CF;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(2) .cml_text_img .cml_text h4 {
    color: #37B9E0;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(3) .cml_text_img .cml_text h4 {
    color: #71C098;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(1) .cml_number h1 {
    color: #45BBD0;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(2) .cml_number h1 {
    color: #40AFE8;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(3) .cml_number h1 {
    color: #7EC48A;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(1) .cml_text_img .cml_btn_default {
    background-color: #49C5CF;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(2) .cml_text_img .cml_btn_default {
    background-color: #37B9E0;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(3) .cml_text_img .cml_btn_default {
    background-color: #71C098;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_text_img .cml_btn_default {
    margin-left: 0;
    transition: all 350ms ease-in-out;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_text_img .cml_btn_default:hover {
    opacity: 0.85;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(1) .cml_text_img .cml_btn_default .cml_btn_arrow_icon .icons_box span {
    color: #49C5CF;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(2) .cml_text_img .cml_btn_default .cml_btn_arrow_icon .icons_box span {
    color: #37B9E0;
}

.cml_promocional .cml-cont-grid .cml_cont_item:nth-child(3) .cml_text_img .cml_btn_default .cml_btn_arrow_icon .icons_box span {
    color: #71C098;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_text_img .cml_text p {
    font-size: 15px;
    line-height: 1.3;
    color: var(--cml-navy-blue);
    opacity: 0.8;
    font-weight: 500;
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_number h1 {
    position: absolute;
    left: -55px;
    bottom: -92px;
    font-weight: 600;
    font-size: clamp(3rem, 16vw, 13.8rem);
}

.cml_promocional .cml-cont-grid .cml_cont_item .cml_number img {
    position: absolute;
    top: -130px;
    right: -100px;
    opacity: 0.2;
    pointer-events: none;
}

/* * About Init * */

.cml_about_pm {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cml_about_pm .cml_tag_gral {
    color: var(--cml-green-light);
}

.cml_about_pm .cml_cont_client {
    display: grid;
    grid-template-columns: 36% auto;
    gap: 130px;
    align-items: center;
}

.cml_about_pm .cml_about_img {
    height: calc(430px - 0px);
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.cml_about_pm .cml_about_img .simpleParallax {
    height: 100%;
}

.cml_about_pm .cml_about_img .cml_btn_default {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.cml_about_pm .cml_about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.cml_about_pm .cml-shape>img {
    position: absolute;
    top: -30px;
    right: 50px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.cml_about_pm .cml_cont_client,
.cml_about_pm .cml_about_img {
    z-index: 1;
    position: relative;
}

/* * Blog * */
.cml_promotional_blog {
    padding: 90px 0;
    background-image: url('../img/background/fondo-cumulo-blog-promocional.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cml_promotional_blog .cml_item_blog {
    display: block;
}

.cml_promotional_blog .cml_item_blog .cml-img {
    margin: 0;
    position: relative;
    overflow: hidden;
    height: calc(420px - 0px);
}

.cml_promotional_blog .cml_item_blog .cml-img img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
    -webkit-transition: transform 0.4s ease-in-out;
    -moz-transition: transform 0.4s ease-in-out;
    -ms-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.cml_promotional_blog .cml_item_blog:hover .cml-img img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.cml_promotional_blog .cml_item_blog .cml_card_info_blog {
    background-color: var(--cml-white);
    padding: 24px;
    color: var(--cml-navy-blue);
}

.cml_promotional_blog .cml_item_blog .cml_card_info_blog h5 {
    font-weight: 800;
    margin-bottom: 14px;
    transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
}

.cml_promotional_blog .cml_item_blog:hover .cml_card_info_blog h5 {
    color: var(--cml-aqua);
}

.cml_promotional_blog .cml_item_blog .cml_card_info_blog p {
    font-size: 14px;
    opacity: 0.9;
    line-height: normal;

}

.cml_promotional_blog .cml_item_blog .cml_card_info_blog .cml_date_cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.8;
    font-weight: 500;
}

.cml_promotional_blog .cml-grid {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 35px;
    align-items: center;
}

.cml_promotional_blog .cml_min_blog .cml_item_blog .cml-img {
    height: calc(180px - 0px);
}

.cml_promotional_blog .cml_min_blog .cml_item_blog .cml_card_info_blog h5 {
    font-size: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
}

.cml_promotional_blog .cml_min_blog .cml_item_blog .cml_card_info_blog p {
    display: none;
}

.cml_promotional_blog .cml_min_blog .cml_item_blog .cml_card_info_blog .cml_date_cta {
    font-size: 12px;
}

.cml_promotional_blog .cml_min_blog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cml_promotional_blog .cml-grid .cml_title_default {
    text-align: center;
    margin-bottom: 60px;
}

.cml_promotional_blog .cml-grid .cml_title_default h1 {
    color: var(--cml-white);
    font-size: clamp(2rem, 4.8vw, 3.8rem);
    font-style: italic;
}

.cml_promotional_blog .cml-grid .cml_title_default p {
    font-size: 14px;
    color: var(--cml-white);
    width: 55%;
    margin: 0 auto;
}

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

.cml_promotional_blog .cml_cont_promotional_blog .cml_btn_default {
    grid-column: 2;
}

/* * Pregntas frecuentes * */
.cml_questions {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cml_questions .cml_title_default {
    text-align: center;
    margin-bottom: 50px;
}

.cml_questions .cml-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 100px;
}

.cml_questions .cml-grid .cml_cont_img {
    margin: 0;
    height: 604px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.cml_questions .cml-grid .cml_cont_img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.cml_questions .cml-grid .cml_cont_img .simpleParallax {
    height: 100%;
}

.cml_questions .cml_cont_questions .accordion {
    display: grid;
    gap: 10px;
}

.cml_questions .cml_cont_questions .accordion-item,
.cml_questions .cml_cont_questions .accordion-item .accordion-button {
    background-color: var(--cml-blue);
    color: var(--cml-white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-size: 14px;

}

.cml_questions .cml_cont_questions .accordion-item .accordion-button:not(.collapsed),
.accordion-button:focus {
    box-shadow: none;
}

.cml_questions .cml_cont_questions .accordion-item .accordion-button {
    padding: 22px 24px;
}

.cml_questions .cml_cont_questions .accordion-item .accordion-body {
    opacity: 0.8;
    padding-top: 0;
}

.cml_questions .cml_cont_questions .accordion-item .accordion-button::after {
    width: 34px;
    height: 34px;
    background-color: var(--cml-navy-blue);
    border-radius: 50px;
    display: grid;
    place-content: center;
    content: "add";
    font-family: 'Material Symbols Rounded';
    font-size: 20px;
    color: var(--cml-white);
    background-image: unset;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cml_questions .cml_cont_questions .accordion-item .accordion-button:not(.collapsed)::after {
    background-color: var(--cml-aqua);
    content: "remove";
}

.cml_questions .cml-shape img {
    position: absolute;
    top: -240px;
    left: 0;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

/* * * 07. Footer * * * * * * * * * * * * * */
.cml_footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(32, 59, 138, 1) 0%, rgba(32, 34, 74, 1) 100%);
}

.cml_footer .wrapper {
    height: calc(650px - 0px);
    margin: 0;
}

.cml_footer .wrapper .simpleParallax {
    height: 100%;
}

.cml_footer .wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cml_footer .cml_footer_wrapper {
    padding: 40px 0;
    display: grid;
    gap: 34px;
    position: relative;
    z-index: 1;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cont-ft p {
    font-size: 14px;
    color: var(--cml-blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cont-ft ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cont-ft .link {
    color: var(--cml-white);
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: 0.35s ease-in-out;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -ms-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cont-ft .link:hover {
    opacity: 0.5;
}

.cml_footer .cml_footer_wrapper .cml_links_footer {
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.8fr;
    gap: 12px;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_ft_rrss {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_ft_rrss a {
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background-color: var(--cml-white);
    display: grid;
    place-content: center;
    transition: background-color 0.35s ease-in-out;
    -webkit-transition: background-color 0.35s ease-in-out;
    -moz-transition: background-color 0.35s ease-in-out;
    -ms-transition: background-color 0.35s ease-in-out;
    -o-transition: background-color 0.35s ease-in-out;
    flex-shrink: 0;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cont-ft~.cont-ft {
    margin-top: 25px;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_ft_rrss a:hover {
    background-color: var(--cml-aqua);
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_ft_rrss a path {
    transition: fill 0.35s ease-in-out;
    -webkit-transition: fill 0.35s ease-in-out;
    -moz-transition: fill 0.35s ease-in-out;
    -ms-transition: fill 0.35s ease-in-out;
    -o-transition: fill 0.35s ease-in-out;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_ft_rrss a:hover path {
    fill: var(--cml-white);
}

.cml_footer .cml_footer_wrapper .cml_brand_location {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.cml_footer .cml_footer_wrapper .cml_brand_location a {
    font-size: 14px;
    color: var(--cml-white);
    opacity: 0.6;
    text-decoration: underline;
    width: fit-content;
    transition: opacity 0.35s ease-in-out;
    -webkit-transition: opacity 0.35s ease-in-out;
    -moz-transition: opacity 0.35s ease-in-out;
    -ms-transition: opacity 0.35s ease-in-out;
    -o-transition: opacity 0.35s ease-in-out;
}

.cml_footer .cml_footer_wrapper .cml_brand_location a:hover {
    opacity: 1;
}

.cml_footer .cml_footer_wrapper .cml_footer_copyright {
    align-items: center;
    display: flex;
    justify-content: space-between;
    color: var(--cml-white);
    font-size: 12px;
    opacity: 0.8;
}

.cml_footer .cml_footer_wrapper .cml_footer_copyright .cml_copyright {
    margin: 0;
}

.cml_footer .cml_footer_wrapper .cml_footer_copyright ul {
    display: flex;
    gap: 22px;
    align-items: center;
}

.cml_footer .cml_footer_wrapper .cml_footer_copyright a {
    color: var(--cml-white);
    display: block;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.35s ease-in-out;
    -webkit-transition: opacity 0.35s ease-in-out;
    -moz-transition: opacity 0.35s ease-in-out;
    -ms-transition: opacity 0.35s ease-in-out;
    -o-transition: opacity 0.35s ease-in-out;
}

.cml_footer .cml_footer_wrapper .cml_footer_copyright a:hover {
    opacity: 1;
}

.cml_footer .cml-shape img {
    position: absolute;
    right: -20px;
    bottom: -170px;
    z-index: 0;
    width: 910px;
    opacity: 0.02;
}

/* * Newsletter * */
.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter {
    background-color: var(--cml-blue);
    padding: 35px 30px;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    background-image: url('../img/background/newsletter-cumulo.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    gap: 40px;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_cont_newsletter {
    grid-column: 3;
    margin-top: -60%;
}

.cml_form_news .cml-submit {
    position: relative;
    display: flex;
    align-items: center;
}

.cml_form_news .cml-submit .cml_mail {
    font-size: 14px;
    background: var(--cml-white);
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    color: var(--cml-navy-blue);
    height: 52px;
    padding: 10px 50px 10px 30px;
    border-radius: 50px;
}

.cml_icon_news {
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background-color: var(--cml-green-light);
    display: grid;
    place-content: center;
    color: var(--cml-white);
    flex-shrink: 0;
    position: absolute;
    right: 6px;
}

.cml_icon_news span {
    font-size: 21px;
}

.cml_form_news .cml-submit .cml_mail::placeholder {
    color: var(--cml-navy-blue);
}

.cml_btn_news {
    padding: 15px 40px;
    background-color: var(--cml-green-light);
    border-radius: 50px;
    border: none;
    font-size: 14px;
    color: var(--cml-white);
    width: 100%;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter .cml_form_news {
    display: grid;
    gap: 18px;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter .cont-text h2 {
    color: var(--cml-white);
    font-weight: 800;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter .cont-text h2 span {
    color: var(--cml-green-light);
    font-style: italic;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter .cont-text p {
    font-size: 14px;
    color: var(--cml-white);
    width: 80%;
    margin: 0 auto;
    line-height: normal;
    font-weight: 300;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter .cml_terminos_bottom .line {
    border-top: 1px solid;
    color: var(--cml-white);
    opacity: 0.2;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter .cml_terminos_bottom p {
    font-size: 12px;
    color: var(--cml-white);
    font-weight: 300;
    margin: 0;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter .cml_terminos_bottom p a {
    color: var(--cml-white);
    text-decoration: underline;
    opacity: 0.8;
}

.cml_footer .cml_footer_wrapper .cml_links_footer .cml_newsletter .cml_terminos_bottom {
    display: grid;
    gap: 25px;
}

/* * * 08. Servicios * * * * * * * * * * * * * */
.cml_clients.background {
    background-image: url(../img/background/grandient-nuestros-clientes-cumulo.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cml_clients.background .cml_title_default h1 {
    color: var(--cml-white);
}

.cml_servicios {
    padding: 100px 0;
}

.cml_servicios .cml-grid {
    display: grid;
    grid-template-columns: 0.28fr 1fr;
    gap: 70px;
}

.cml_servicios .cml_sticky_info .cml_info {
    position: sticky;
    top: 100px;
}

.cml_servicios .cml_info>h6 {
    margin-bottom: 17px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--cml-navy-blue);
    opacity: 0.5;
}

.cml_servicios .cml_info .accordion .accordion-button {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--cml-navy-blue);
    font-weight: 600;
    background-color: rgb(32 34 74 / 2%);
    box-shadow: none;
}

.cml_servicios .cml_info .accordion .accordion-button::after {
    content: "keyboard_arrow_down";
    color: var(--cml-navy-blue);
    font-family: 'Material Symbols Rounded';
    background-image: none;
    font-size: 26px;
    font-weight: 300;
}

.cml_servicios .cml_info .accordion .accordion-item {
    border: none
}

.cml_servicios .cml_info .accordion .accordion-item:nth-child(2),
.cml_servicios .cml_info .accordion .accordion-item:nth-child(3) {
    border-top: 1px solid rgb(0 0 0 / 20%);
}

.cml_servicios .cml_info .accordion .accordion-body {
    font-size: 14px;
    color: var(--cml-navy-blue);
    font-weight: 600;
    opacity: 0.6;
}

.cml_servicios .cml_cont_item {
    display: grid;
    gap: 70px;
}

.cml_servicios .cml_cont_item .cml_info_services .cml_card_service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cml_servicios .cml_title_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 3rem;
    align-items: center;
}

.cml_servicios .cml_title_info .cml_text_title {
    position: relative;
}

.cml_servicios .cml_title_info .cml_text_title h1 {
    font-size: clamp(6rem, 12vw, 10.6rem);
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: -1;
}

.cml_servicios .cml_title_info .cml_text_title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cml-navy-blue);
    font-weight: 900;
    font-style: italic;
}

.cml_servicios .cml_title_info .cml_text_info {
    font-size: 13px;
    color: var(--cml-navy-blue);
    line-height: 1.4;
    opacity: 0.7;
}


.cml_servicios .cml_cont_item .cml_info_services:nth-child(2) .cml_card_service .cml_item_card_service {
    direction: ltr;
    background: linear-gradient(0deg, rgba(139, 201, 126, 1) 0%, rgba(48, 195, 234, 1) 100%);
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(1) .cml_title_info .cml_text_title h1 {
    color: rgb(86 194 187 / 20%);
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(2) .cml_title_info .cml_text_title h1 {
    font-size: clamp(4.4rem, 9vw, 8rem);
    color: rgb(48 195 234 / 20%);
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(3) .cml_card_service .cml_item_card_service {
    background: linear-gradient(0deg, rgba(239, 185, 3, 1) 0%, rgba(139, 201, 126, 1) 100%);
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(3) .cml_title_info .cml_text_title h1 {
    color: rgb(139 201 126 / 20%);
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(3) {
    margin-top: 30px;
}

.cml_servicios .cml_cont_item .cml_info_services .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service::after {
    font-family: 'Material Symbols Rounded';
    font-size: 20px;
    font-weight: 300;
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(1) .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service::after {
    content: "database_upload";
    color: var(--cml-aqua);
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(2) .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service::after {
    content: "cloud_lock";
    color: var(--cml-blue-light);
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(3) .cml_card_service .cml_item_card_service .cml_tag_sv .icon-service::after {
    content: "shield_locked";
    color: var(--cml-green-light);
}


.cml_servicios .cml_cont_item .cml_info_services .cml_card_service .cml_item_card_service::after {
    font-family: 'Material Symbols Rounded';
    position: absolute;
    font-size: 390px;
    left: -120px;
    bottom: -178px;
    z-index: 0;
    color: var(--cml-navy-blue);
    opacity: 0.05;
    font-weight: 500;
    pointer-events: none;
}


.cml_servicios .cml_cont_item .cml_info_services:nth-child(1) .cml_card_service .cml_item_card_service::after {
    content: "database_upload";
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(2) .cml_card_service .cml_item_card_service::after {
    content: "cloud_lock";
}

.cml_servicios .cml_cont_item .cml_info_services:nth-child(3) .cml_card_service .cml_item_card_service::after {
    content: "shield_locked";
}


/* * Compromiso * */
.cml_compromiso {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cml_compromiso::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 20%);
    position: absolute;
    left: 0;
    bottom: 0;
    backdrop-filter: blur(300px);
    z-index: -1;
}

.cml_compromiso .cml_cont_client {
    text-align: center;
    margin-bottom: 60px;
}

.cml_compromiso .cml_grid_icon .cml_icon_compomiso {
    width: 90px;
    height: 90px;
    border-radius: 50px;
    background-color: rgb(86 194 187 / 20%);
    display: grid;
    place-content: center;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 20px;
}

.cml_compromiso .cml_grid_icon {
    display: grid;
    gap: 45px 45px;
    grid-template-columns: repeat(6, 1fr);

}

.cml_compromiso .cml_grid_icon .cml_item_compromiso h4 {
    font-size: 22px;
    font-weight: 900;
    color: var(--cml-navy-blue);
}

.cml_compromiso .cml_grid_icon .cml_item_compromiso p {
    font-size: 14px;
    opacity: 0.7;
    line-height: normal;
}

.cml_compromiso .cml_grid_icon .cml_item_compromiso {
    text-align: center;
    color: var(--cml-navy-blue);
}

.cml_compromiso .cml_grid_icon .cml_item_compromiso:nth-child(1),
.cml_compromiso .cml_grid_icon .cml_item_compromiso:nth-child(6) {
    grid-column: 2 / 4;
}

.cml_compromiso .cml_grid_icon .cml_item_compromiso:nth-child(2),
.cml_compromiso .cml_grid_icon .cml_item_compromiso:nth-child(7) {
    grid-column: 4 / 6;
}

.cml_compromiso .cml_grid_icon .cml_item_compromiso:nth-child(3) {
    grid-column: 1 / 3;
}

.cml_compromiso .cml_grid_icon .cml_item_compromiso:nth-child(4) {
    grid-column: 3 / 5;
}

.cml_compromiso .cml_grid_icon .cml_item_compromiso:nth-child(5) {
    grid-column: 5 / 7;
}

.cml_compromiso .cml-shape img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* * Misión & Visión * */

.cml_vision_mision {
    position: relative;
}

.cml_vision_mision .sticky-image {
    position: sticky;
    top: 0;
    height: 100vh;
    background-image: url('../img/resources/mision-y-vision-cumulo.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-blend-mode: multiply;
    background-color: rgb(32 34 74 / 90%);
}

.cml_vision_mision .text-panels {
    position: relative;
    z-index: 2;
    margin-top: -160vh;
    padding: 100vh 100px 0;
    color: var(--cml-white);
}

.cml_vision_mision .panel {
    min-height: 100vh;
    display: flex;
    gap: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cml_vision_mision .text-panels .cml_text_mv {
    position: relative;
}

.cml_vision_mision .text-panels .cml_text_mv h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
}

.cml_vision_mision .text-panels .cml_text_mv h1 {
    font-size: clamp(5rem, 14.5vw, 12.5rem);
    text-transform: uppercase;
    font-weight: 900;
    color: rgb(255 255 255 / 10%);
    position: absolute;
    display: grid;
    place-content: center;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.cml_vision_mision .text-panels .cml_text_mv h2 span {
    color: var(--cml-aqua);
    font-style: italic;
}

.cml_vision_mision .text-panels p {
    font-size: 30px;
    text-align: center;
    opacity: 0.8;
    font-weight: 600;
}

/* * Historia * */

.cml_historia {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cml_historia .cml_grid_historia {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-left: 30px;
}

.cml_historia .cml_grid_historia .cml_item_historia {
    background-color: var(--cml-green-light);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    display: grid;
    gap: 50px;
    place-content: center;
}

.cml_historia .cml_grid_historia .cml_item_historia .cml_number {
    width: 58px;
    height: 58px;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 700;
    background-color: var(--cml-white);
    display: grid;
    place-content: center;
    color: var(--cml-navy-blue);
}

.cml_historia .cml_img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
}

.cml_historia .cml_img img {
    height: 100%;
    width: 100%;
    object-position: center center;
    object-fit: cover;
}

.cml_historia .cml_img .simpleParallax {
    height: 100%;
}

.cml_historia .cml_grid_historia .cml_item_historia .cml_info {
    color: var(--cml-navy-blue);
}

.cml_historia .cml_grid_historia .cml_item_historia .cml_info p {
    font-size: 14px;
    line-height: normal;
}

.cml_historia .cml_grid_historia .cml_item_historia .cml_info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cml_historia .cml-shape img {
    position: absolute;
    right: -270px;
    top: 0;
    z-index: -1;
    opacity: 0.12;
}

.cml_historia .cml_cont_client {
    margin-bottom: 40px;
}

/* * * 09. Blog * * * * * * * * * * * * * * * */

.cml_blog {
    padding: 100px 0;
    margin-top: 70px;
    position: relative;
}

.cml_blog::before {
    content: "";
    position: absolute;
    top: -15rem;
    right: -46rem;
    display: inline-block;
    width: 80rem;
    height: 85rem;
    background: url('../img/shape/shape-secondary-cumulo-c.svg') no-repeat center center;
    background-size: contain;
    z-index: -1;
    opacity: 0.07;
    pointer-events: none;
}

.cml_blog::after {
    content: "";
    position: absolute;
    bottom: 5rem;
    left: -53rem;
    display: inline-block;
    width: 100rem;
    height: 110rem;
    background: url('../img/shape/shape-secondary-cumulo-c.svg') no-repeat center center;
    background-size: contain;
    z-index: -1;
    opacity: 0.07;
    pointer-events: none;
    transform: scaleX(-1);
}

.cml_blog .cml_cont_client {
    text-align: center;
    margin-bottom: 60px;
}

.cml_blog .cml_content_blog .cml_item_blog_view {
    display: block;
}

.cml_blog .cml_content_blog .cml_item_blog_view .cml-img {
    margin: 0;
    position: relative;
    overflow: hidden;
    height: calc(400px - 0px);
}

.cml_blog .cml_content_blog .cml_item_blog_view .cml-img .simpleParallax {
    height: 100%;
}

.cml_blog .cml_content_blog .cml_item_blog_view .cml-img img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.cml_blog .cml_content_blog .cml_item_blog_view:hover .cml-img img {
    transition: transform 0.4s ease-in-out !important;
    -webkit-transition: transform 0.4s ease-in-out !important;
    -moz-transition: transform 0.4s ease-in-out !important;
    -ms-transition: transform 0.4s ease-in-out !important;
    -o-transition: transform 0.4s ease-in-out !important;
    transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
}

.cml_blog .cml_content_blog {
    display: grid;
    gap: 70px 20px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto) 20px auto;
}

.cml_blog .cml_content_blog .cml_item_blog_view .cml_card_info_blog {
    padding: 24px;
    color: var(--cml-navy-blue);
    padding-left: 0;
}

.cml_blog .cml_content_blog .cml_item_blog_view .cml_card_info_blog h5 {
    font-weight: 800;
    color: var(--cml-blue);
    margin-bottom: 14px;
    transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.cml_blog .cml_content_blog .cml_item_blog_view:hover .cml_card_info_blog h5 {
    color: var(--cml-navy-blue);
}

.cml_blog .cml_content_blog .cml_item_blog_view .cml_card_info_blog p {
    font-size: 14px;
    opacity: 0.7;
    line-height: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.cml_blog .cml_content_blog .cml_item_blog_view .cml_card_info_blog .cml_date_cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.8;
    font-weight: 500;
}

.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(1) {
    grid-column: 1/7;
}

.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(2) {
    place-content: end;
}

.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(2),
.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(4) {
    grid-column: 8/13;
}

.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(2) .cml-img,
.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(3) .cml-img,
.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(4) .cml-img {
    height: calc(320px - 0px);
}

.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(2) .cml_card_info_blog h5,
.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(3) .cml_card_info_blog h5,
.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(4) .cml_card_info_blog h5 {
    font-size: 18px;
}

.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(3) {
    grid-column: 3/8;
}

.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(5) {
    grid-column: 1/7;
    margin-right: 45px;
    grid-row: 3 / 5;
}

.cml_blog .cml_content_blog .cml_item_blog_view:nth-child(6) {
    grid-column: 7/13;
    grid-row: 4 / 5;
}

/* * Paginador Blog * */

.cml_blog .cml_blog_pagination {
    margin-top: 50px;
}

.cml_blog .cml_blog_pagination .pagination {
    gap: 10px;
    justify-content: center;
}

.cml_blog .cml_blog_pagination .pagination>li.active>span {
    color: var(--cml-blue);
    background-color: var(--cml-white);
}

.cml_blog .cml_blog_pagination .pagination>li>a:hover {
    background-color: rgb(32 34 74 / 20%);
    border: 1px solid rgb(32 34 74 / 10%);
}

.cml_blog .cml_blog_pagination .pagination>li>a,
.cml_blog .cml_blog_pagination .pagination>li>span {
    font-weight: 800;
    color: var(--cml-white);
    border-radius: 50px;
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    justify-content: center;
    background-color: var(--cml-blue);
    border: 1px solid var(--cml-blue);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.gs_main_blogs .gs_blog_pagination .pagination>li:first-child>a,
.gs_main_blogs .gs_blog_pagination .pagination>li:last-child>a,
.gs_main_blogs .gs_blog_pagination .pagination>li:first-child>span,
.gs_main_blogs .gs_blog_pagination .pagination>li:last-child>span {
    font-size: 18px;
}

.gs_main_blogs .gs_blog_pagination .pagination>li:first-child>a,
.gs_main_blogs .gs_blog_pagination .pagination>li:last-child>a,
.gs_main_blogs .gs_blog_pagination .pagination>li:first-child>span,
.gs_main_blogs .gs_blog_pagination .pagination>li:last-child>span {
    color: var(--gs-black);
    background-color: var(--gs-white-two);
    border: transparent;
    padding: 11px 21px;
}

/* * * 10. Blog Details * * * * * * * * * * * * * * * */

.cml_blog_detail {
    position: relative;
    overflow: hidden;
}

.cml_blog_detail .cml_information_blog {
    margin: 0 auto;
    width: 60%;
}

.cml_blog_detail .cml_article_header {
    background-image: url('../img/background/gradient-title-article.webp');
    background-position: center;
    background-size: cover;
    color: var(--cml-white);
    padding: 50px 70px;
    display: grid;
    gap: 30px;
    position: relative;
    margin-top: -20%;
    grid-column: 3 / 13;
    overflow: hidden;
}

.cml_blog_detail .cml_article_header::before {
    content: "";
    position: absolute;
    top: -17rem;
    left: 10rem;
    display: inline-block;
    width: 85rem;
    height: 80rem;
    background: url('../img/shape/shape-cumulo-nuestra-historia.svg') no-repeat center center;
    background-size: contain;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
}

.cml_blog_detail .cml_article_header .cml_info_user {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cml_blog_detail .cml_article_header .cml_info_user .cml_item {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.cml_blog_detail .cml_article_header .cml_info_user .cml_item span {
    font-size: 18px;
    font-variation-settings: 'FILL'1;
}

.cml_blog_detail .cml_article_header .cml_info_user .cml_item h6 {
    margin: 0;
    font-size: 14px;
    text-decoration: underline;
}

.cml_blog_detail .cml_article_header .cml_article_title {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.cml_blog_detail .cml_article_header .cml_article_text {
    font-weight: 300;
}

.cml_blog_detail .cml_article_header .cml_article_share .cml_icon_share {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.cml_blog_detail .cml_article_header .cml_article_share .cml_icon_share h6 {
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: underline;
    margin: 0;
    font-weight: 300;
}

.cml_blog_detail .cml_article_header .cml_article_share .cml_icon_share span {
    font-variation-settings: 'FILL'1;
}

.cml_blog_detail .cml_article_header .cml_article_share .cml_rrss_article_share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cml_blog_detail .cml_article_header .cml_article_share .cml_rrss_article_share .cml_btn_default {
    margin: 0;
}

.cml_blog_detail .cml_article_header .cml_article_share .cml_rrss_article_share .cml_btn_default .cml_btn_arrow_icon {
    display: grid;
    place-content: center;
}

.cml_blog_detail .cml_article_header .cml_article_share .cml_rrss_article_share .cml_btn_default .cml_btn_arrow_icon span {
    font-weight: 400;
}

.cml_blog_detail .cml_article_header .cml_article_share {
    display: grid;
    gap: 20px;
}

.cml_blog_detail .cml_wrapper_article {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
}

.cml_blog_detail .cml_article_header .cml_info_user,
.cml_blog_detail .cml_article_header .cml_article_title,
.cml_blog_detail .cml_article_header .cml_article_text,
.cml_blog_detail .cml_article_header .cml_article_share {
    max-width: calc(100% - 30%);
}

.cml_blog_detail .cml_information_blog .cml_article_content {
    padding: 50px 0;
}

.cml_blog_detail .cml_information_blog .cml_article_content p {
    color: var(--cml-navy-blue);
    line-height: 26px;
}

.cml_blog_detail .cml_information_blog .cml_article_content img {
    margin: 20px 0 40px;
}

.cml_blog_detail .cml_last_article {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    border-top: 1px solid rgb(32 34 74 / 10%);
}

.cml_blog_detail .cml_last_article .cml_cont_client {
    margin-top: 100px;
}

.cml_blog_detail .cml_last_article .cml_item_blog_view {
    display: block;
}

.cml_blog_detail .cml_last_article .cml_item_blog_view .cml-img {
    margin: 0;
    position: relative;
    overflow: hidden;
    height: calc(430px - 0px);
}

.cml_blog_detail .cml_last_article .cml_item_blog_view .cml-img .simpleParallax {
    height: 100%;
}

.cml_blog_detail .cml_last_article .cml_item_blog_view .cml-img img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.cml_blog_detail .cml_last_article .cml_item_blog_view .cml_card_info_blog {
    padding: 24px;
    color: var(--cml-navy-blue);
    padding-left: 0;
}

.cml_blog_detail .cml_last_article .cml_item_blog_view .cml_card_info_blog h5 {
    font-weight: 800;
    color: var(--cml-blue);
    margin-bottom: 14px;
    transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
}

.cml_blog_detail .cml_last_article .cml_item_blog_view .cml_card_info_blog p {
    font-size: 14px;
    opacity: 0.7;
    line-height: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.cml_blog_detail .cml_last_article .cml_item_blog_view .cml_card_info_blog .cml_date_cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.8;
    font-weight: 500;
}

.cml_blog_detail .cml_last_article .cml_item_blog_view:hover .cml_card_info_blog h5 {
    color: var(--cml-navy-blue);
}

.cml_blog_detail .cml_last_article .cml_item_blog_view:hover .cml-img img {
    transition: transform 0.4s ease-in-out !important;
    -webkit-transition: transform 0.4s ease-in-out !important;
    -moz-transition: transform 0.4s ease-in-out !important;
    -ms-transition: transform 0.4s ease-in-out !important;
    -o-transition: transform 0.4s ease-in-out !important;
    transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
}

.cml_blog_detail .cml_last_article::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 60px;
    display: inline-block;
    width: 70rem;
    height: 55rem;
    background: url('../img/shape/shape-last-blog.svg') no-repeat center center;
    background-size: contain;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}


/* * * 11. Menu carrito de compras  * * * * * * * * * * * * * */

.cml_cart_shopping {
    width: 410px;
    position: fixed;
    background-color: var(--cml-white);
    padding: 30px 20px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    -ms-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
}

.cml_cart_shopping.view {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
}

#overlay_bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

#overlay_bg.view {
    opacity: 1;
    visibility: visible;
}

.cml_cart_shopping .cml_header_shopping {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cml_cart_shopping .cml_header_shopping h4 {
    font-size: 26px;
    font-weight: 800;
    color: var(--cml-navy-blue);
    margin: 0;
    display: flex;
    align-items: start;
}

.cml_cart_shopping .cml_header_shopping h4>span {
    font-size: 20px;
}

.cml_cart_shopping .cml_header_shopping>span {
    font-size: 35px;
    cursor: pointer;
    color: var(--cml-navy-blue);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.cml_cart_shopping .cml_header_shopping>span:hover {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    color: rgb(32 34 74 / 80%);
}

.cml_cart_shopping .cml_cart_empty h2 {
    font-weight: 800;
    font-style: italic;
    width: calc(100% - 20%);
    text-align: center;
}

.cml_cart_shopping .cml_cart_empty {
    height: calc(100dvh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.cml_cart_shopping .cml_cart_empty .cml_btn_default {
    width: 100%;
    justify-content: end;
    gap: 50px;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cml-navy-blue);
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_wrapper_img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_wrapper_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_info_cart .cml_tag_cart {
    background-color: var(--cml-navy-blue);
    color: var(--cml-white);
    font-size: 11px;
    padding: 3px 12px;
    text-transform: uppercase;
    border-radius: 50px;
    width: fit-content;
    line-height: normal;
    margin-bottom: 4px;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_info_cart .cml_name_item_cart {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_info_cart .cml_price_item_cart {
    font-weight: 800;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_info_cart .cml_price_item_cart span {
    font-size: 14px;
    font-weight: 600;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_content_item_cart {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_item_actions_cart>span {
    font-size: 22px;
    color: #1C1B1F;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_item_actions_cart>span:hover {
    color: rgb(28 27 31 / 60%);
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_item_actions_cart {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_item_actions_cart .cml_counter_card_item {
    display: inline-flex;
    align-items: center;
    background-color: rgb(32 34 74 / 10%);
    border: 1px solid rgb(32 34 74 / 10%);
    border-radius: 50px;
    padding: 4px 10px;
    gap: 10px;
    width: 80px;
    justify-content: center;
    cursor: pointer;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_item_actions_cart .cml_counter_card_item button {
    background: none;
    border: none;
    cursor: pointer;
    display: grid;
    place-content: center;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_item_actions_cart .cml_counter_card_item #quantity {
    font-size: 12px;
    font-weight: bold;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_item_actions_cart .cml_counter_card_item button span {
    font-size: 15px;
    font-weight: 600;
}

.cml_cart_shopping .cml_body_shopping {
    display: grid;
    gap: 24px;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_info_cart .cml_name_item_cart {
    position: relative;
    color: var(--cml-navy-blue);
    text-decoration: none;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart .cml_info_cart .cml_name_item_cart::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
    -webkit-transition: width 0.3s ease-in-out;
    -moz-transition: width 0.3s ease-in-out;
    -ms-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
}

.cml_cart_shopping .cml_body_shopping .cml_item_cart:hover .cml_info_cart .cml_name_item_cart::after {
    width: 100%;
}

.cml_cart_shopping .cml_continue_shopping .cml_subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--cml-navy-blue);
}

.cml_cart_shopping .cml_continue_shopping .cml_subtotal>h5,
.cml_cart_shopping .cml_continue_shopping .cml_subtotal .cml_price_total {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.cml_cart_shopping .cml_continue_shopping .cml_subtotal .cml_price_total {
    text-decoration: underline;
}

.cml_cart_shopping .cml_content_cart {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100dvh - 145px);
}

.cml_cart_shopping .cml_continue_shopping .cml_leyenda_pay {
    font-size: 12px;
    text-align: center;
    display: block;
    line-height: normal;
    width: calc(100% - 10%);
}

.cml_cart_shopping .cml_continue_shopping {
    display: grid;
    gap: 10px;
}

.cml_cart_shopping .cml_continue_shopping .cml_btn_default {
    width: 100%;
    border: none;
    justify-content: end;
    gap: 55px;
}

/* * * 12. Términos & condiciones * * * * * * * * * * * * * * * */
.df_terminos {
    padding: 100px 0;
    margin-top: 75px;
}

.df_terminos .df_terminos_content {
    width: 80%;
    margin: 0 auto;
}

.df_terminos .df_terminos_content .text_title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--cml-navy-blue);
    font-weight: 900;
    padding-bottom: 4rem;
    margin: 0 auto;
}

.df_terminos .df_terminos_content .df_terminos_body {
    display: grid;
    gap: 30px;
}

.df_terminos .df_terminos_content .df_terminos_body p {
    font-weight: 400;
    color: var(--cml-navy-blue);
    font-size: clamp(0.9rem, 1.1vw, 1rem);
}

.df_terminos .df_terminos_content .df_terminos_body h4 {
    font-size: clamp(0.8rem, 4vw, 1.4rem);
    color: var(--cml-green-light);
    font-weight: bold;
}

@media (max-width: 1200px) {
    .df_terminos {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .df_terminos .df_terminos_content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .df_terminos .df_terminos_content .text_title {
        width: 100%;
        padding-bottom: 50px;
    }

    .df_terminos {
        padding: 60px 0;
    }
}

/* * * 13. Menu Móvil * * * * * * * * * * * * * * * */

.cml_header .navbar-hamburger {
    display: none;
    cursor: pointer;
    width: fit-content;
}

.cml_header .navbar-hamburger .item-navbar {
    background: var(--cml-white);
    height: 1.8px;
    transition: transform .8s cubic-bezier(.18, .71, .11, 1), background 1s cubic-bezier(.18, .71, .11, 1);
    width: 34px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.cml_header .navbar-hamburger .item-navbar:first-child {
    margin-bottom: 5px;
}


.cml_navbar_menu {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
    height: 100dvh;
    left: 0;
    padding: 15vh 15px 20vh;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate(-100%);
    transition: transform .8s cubic-bezier(.18, .71, .11, 1);
    width: 100%;
    z-index: 70;
}

.cml_navbar_menu.show {
    pointer-events: inherit;
    transform: translate(0);
}

.cml_navbar_menu .navbar_menu_list {
    flex-direction: column;
    gap: 1.2rem;
    display: flex;
}

.cml_navbar_menu .navbar_menu_list li .navbar_link {
    font-size: 28px;
    color: var(--cml-navy-blue);
    font-weight: 600;
}

.cml_header.menu .navbar-hamburger .item-navbar {
    background: var(--cml-navy-blue);
}

.cml_header.menu .navbar-hamburger .item-navbar:first-child {
    transform: translateY(0) scaleX(.8) rotate(40deg);
    margin-bottom: 0px;
}

.cml_header.menu .navbar-hamburger .item-navbar:last-child {
    transform: translateY(-2px) scaleX(.8) rotate(-40deg);
}

.cml_navbar_menu .cml_ft_rrss {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 1rem;
}

.cml_navbar_menu .cml_ft_rrss a {
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background-color: var(--cml-blue);
    display: grid;
    place-content: center;
    transition: background-color 0.35s ease-in-out;
    -webkit-transition: background-color 0.35s ease-in-out;
    -moz-transition: background-color 0.35s ease-in-out;
    -ms-transition: background-color 0.35s ease-in-out;
    -o-transition: background-color 0.35s ease-in-out;
    flex-shrink: 0;
}

.cml_navbar_menu .cml_ft_rrss a svg {
    width: 20px;
}

.cml_navbar_menu .cml_ft_rrss a svg path {
    fill: var(--cml-white);
}

.cml_header.menu {
    background-color: transparent;
    box-shadow: none;
}

.cml_header.menu .cml_cart_user .cml_cont_tab svg path {
    stroke: var(--cml-navy-blue);
}

.cml_header.menu .cml_cart_user .cml_cont_tab .divisor {
    background: var(--cml-navy-blue);
}

.cml_navbar_menu .cont-ft-cta {
    margin-top: 1rem;
}

.cml_navbar_menu .cont-ft-cta p {
    font-size: 14px;
    color: var(--cml-blue);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.cml_navbar_menu .cont-ft-cta ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.cml_navbar_menu .cont-ft-cta .link {
    color: var(--cml-navy-blue);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: 0.35s ease-in-out;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -ms-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
}
