@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

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

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

:root {
    --font-headings: "Exo 2", sans-serif;
    --font-body: "Nunito Sans", sans-serif;

    --blue-principal: #003049;
    --blue-secundary: linear-gradient(86deg, rgba(26, 74, 156, 1) 0%, rgba(26, 61, 121, 1) 26%, rgba(25, 52, 97, 1) 63%, rgba(9, 26, 54, 1) 100%);
    /* #0E5E8A */
    --blue-third: #3f87af;
    --white: #ffffff;
    --red-principal: #B20023 !important;
    --red-wine: #780000;
    --green-principal: #58852E;
    --gray-principal: #808080;
    --gray-secundary: #f5f5f5;
    --black: #181818;

    --h1: 2.986rem;
    --h2: 2.488rem;
    --h3: 2.074rem;
    --h4: 1.728rem;
    --h5: 1.44rem;
    --h6: 1.2rem;

    --300-rem: 3rem;
    /* 48px */
    --200-rem: 2rem;
    /* 32px */
    --100-rem: 1rem;
    /* 16px */
    --080-rem: .8rem;
    /* 12.8px */
    --064-rem: .64rem;
    /* 10.24px */

    --075-rem: .75rem;
    /* 12px */
    --125-rem: 1.25rem;
    /* 20px */
    --156-rem: 1.563rem;
    /* 25px */

    --radious-pill: 100rem;
    --radious-general: .5rem;
    --radious-container: 1rem;

    --transition-all-03: all .3s ease-in-out;

    --bg-opacity-blue-principal: rgba(0, 48, 73, 0.6);

    --shadow-solid: 0 0 0 .25rem rgba(0, 0, 0, 0.3);
    --shadow-transparent-white: 0 0 0 .375rem rgba(250, 250, 250, 0.2);
    --shadow-solid-img: 20px 18px 0 0 rgb(250, 250, 250);
    --shadow-general: 0 0 24px 2px rgba(0, 0, 0, 0.3);

}

/* 
    Reglas de las declaraciones de propiedades

    -- P --      >     Posicionamiento
    -- BM --     >     Display y Modelo de Caja (Box Model)
    -- T --      >     Texto / Tipografía
    -- S --      >     Colores / Visual
    -- O --      >     Misc (Misceláneos, es decir todas las demás propiedades)


*/

body {
    /* -- T --  */
    font-family: var(--font-body);
    font-size: var(--100-rem);
    /* -- T --  */
}

.bg-- {
    background-color: #002f49;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* -- T --  */
    font-weight: 700
        /* !important */
    ;
    font-family: var(--font-headings);
    line-height: 1.25
        /* !important */
    ;
    /* -- T --  */
}

h1 {
    /* -- T --  */
    font-size: var(--h1)
        /* !important */
    ;
    /* -- T --  */
}

h2 {
    /* -- T --  */
    font-size: var(--h2)
        /* !important */
    ;
    /* -- T --  */
}

h3 {
    /* -- T --  */
    font-size: var(--h3)
        /* !important */
    ;
    /* -- T --  */
}

h4 {
    /* -- T --  */
    font-size: var(--h4)
        /* !important */
    ;
    /* -- T --  */
}

h5 {
    /* -- T --  */
    font-size: var(--h5)
        /* !important */
    ;
    /* -- T --  */
}

h6 {
    /* -- T --  */
    font-size: var(--h6)
        /* !important */
    ;
    /* -- T --  */
}

p,
a,
div,
strong,
b,
section,
aside,
article {
    /* -- T --  */
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.5;
    /* -- T --  */
}


.bg-blue-principal {
    /* -- S --  */
    background-color: var(--blue-principal);
    /* -- S --  */
}

.bg-blue-secundary {
    /* -- S --  */
    background: var(--blue-secundary);
    /* -- S --  */
}

.bg-blue-principal h1,
.bg-blue-principal h2,
.bg-blue-principal h3,
.bg-blue-principal h4,
.bg-blue-principal h5,
.bg-blue-principal h6,
.bg-blue-principal p,
.bg-blue-secundary h1,
.bg-blue-secundary h2,
.bg-blue-secundary h3,
.bg-blue-secundary h4,
.bg-blue-secundary h5,
.bg-blue-secundary h6,
.bg-blue-secundary p {
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

.divider-blue {
    /* -- P --  */
    margin-top: -.1rem;
    /* -- P --  */
    /* -- BM --  */
    width: 100%;
    height: 8rem;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--blue-principal);
    /* -- S --  */
    /* -- O --  */
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    /* -- O --  */
}

.divider-blue.alternative {
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}

.container-padding {
    /* -- BM --  */
    padding-top: 6rem;
    padding-bottom: 6rem;
    /* -- BM --  */
}

.bg-texture-particles {
    /* -- S --  */
    background-image: url('../img/bg/bg-particles-01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* -- S --  */
}

.bg-texture-particles-right {
    /* -- S --  */
    background-image: url('../img/bg/bg-particles-02.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* -- S --  */
}

.bg-texture-particles-2 {
    /* -- S --  */
    background-image: url('../img/bg/bg-particles-02-01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* -- S --  */
}

.bg-texture-particles-2-right {
    /* -- S --  */
    background-image: url('../img/bg/bg-particles-02-02.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* -- S --  */
}

.bg-mod-data {
    /* -- S --  */
    background-image: url('../img/bg/bg-recomendacion.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* -- S --  */
}

.bg-moded {
    /* -- S --  */
    background-image: url('../img/bg/bg-moded.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* -- S --  */
}

.bg-mod-data>*,
.bg-mod-data h3 {
    color: var(--white);
}

.bg-moded>*,
.bg-moded h3 {
    color: var(--white);
}

.bg-blue-gradiance {
    background: rgb(0, 48, 73);
    background: linear-gradient(180deg, rgba(0, 48, 73, 1) 0%, rgba(6, 104, 155, 1) 49%, rgba(8, 64, 94, 1) 81%);
}

.bg-blue-gradiance h2,
.bg-blue-gradiance h3,
.bg-blue-gradiance h6,
.bg-blue-gradiance strong,
.bg-blue-gradiance p {
    color: var(--white);
}

#particles-js {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pleca {
    background-color: var(--white);
    height: 5rem;
}

.bg-blue-gradiance.superposition {
    /*  padding-bottom: 24rem; */
    /* margin-bottom: -15rem; */
    padding-bottom: 28rem;
    margin-bottom: -22rem;
}

.button-fixed{
    position: fixed;
    bottom: 3% !important;
    right: 1% !important;
    z-index: 50;
    padding: .8rem;
    display: flex
;
    border: .15rem solid var(--white);
    font-size: var(--200-rem);
    border-radius: var(--radious-pill);
    background-color: #25D366;
    color: var(--white);
    box-shadow: var(--shadow-general);
    transition: var(--transition-all-03);
}

.button-fixed:hover {
    /* -- S -- */
    background-color: var(--white);
    color: #25D366;
    /* -- S -- */
}

/***************** HEADER *****************/

header {
    /* -- S --  */
    background-color: var(--white);
    /* -- S --  */
}

.nav-item .nav-link {
    /* -- BM --  */
    border-bottom: 2px solid transparent;
    /* -- BM --  */
    /* -- S --  */
    color: var(--blue-principal);
    /* -- S --  */
    transition: var(--transition-all-03);
}

.nav-item .nav-link:hover,
.nav-item .nav-link:active,
.nav-item .nav-link.active {
    /* -- BM --  */
    border-bottom: 2px solid var(--blue-third);
    /* -- BM --  */
    /* -- T --  */
    /*  text-decoration: underline; */
    /* -- T --  */
    /* -- S --  */
    /* border-radius: var(--radious-pill); */
    /* background: rgba(15,97,138,.2); */
    color: var(--blue-third);
    /* -- S --  */
    /* -- O --  */
    /* box-shadow: 0 0 0px 2px rgba(15, 97, 138, 0.4); */
    /* -- O --  */
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--blue-third);
}

.navbar .nav-btn-input,
.btn-input-sumit {
    /* -- BM --  */
    border: 2px solid transparent;
    padding-left: var(--100-rem);
    padding-right: var(--100-rem);
    /* -- BM --  */
    /* -- S --  */
    color: var(--white);
    background-color: var(--green-principal);
    border-radius: var(--radious-pill);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.navbar .nav-btn-input:hover,
.navbar .nav-btn-input:active,
.navbar .nav-btn-input:focus,
.btn-input-sumit:hover,
.btn-input-sumit:active,
.btn-input-sumit:focus {
    /* -- S --  */
    box-shadow: var(--shadow-solid);
    /* -- S --  */
}

.navbar .navbar-toggler {
    /* -- S --  */
    color: var(--blue-principal);
    /* outline: 2px solid var(--blue-principal); */
    /* -- S --  */
    border: 2px solid var(--blue-principal);
}

.navbar .navbar-toggler:hover,
.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    /* -- S --  */
    box-shadow: var(--shadow-transparent-white);
    /* -- S --  */
}

.dropdown-menu.show {
    padding: 0;
    border: 0;
}

header .navbar-nav .nav-link.show {
    color: var(--blue-principal);
}

/***************** HEADER *****************/

/***************** MAIN *****************/

/*--------- HOME ---------*/

/* BUTTONS */
.button-disabled {
    background-color: var(--gray-principal) !important;
    color: var(--white) !important;
    border: 2px solid var(--gray-principal) !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transition: none !important;
}

.button-disabled i {
    opacity: 1 !important;
    filter: none !important;
    color: var(--gray-principal) !important;
}

.button-disabled:hover {
    background-color: var(--gray-principal) !important;
    color: var(--white) !important;
    border: 2px solid var(--gray-principal) !important;
}

.button-primary,
.button-secundary,
.button-thirty,
.button-alt {
    /* -- BM --  */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .4rem;
    padding: .8rem 1.6rem;
    border: 2px solid var(--red-principal);
    width: max-content;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--red-principal);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radious-general);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.button-secundary,
.button-thirty {
    /* -- BM --  */
    border: 2px solid var(--white);
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--white);
    color: var(--red-principal);
    /* -- S --  */
}

.button-primary i,
.button-secundary i,
.button-thirty i,
.button-primary ion-icon,
.button-secundary ion-icon,
.button-thirty ion-icon {
    /* -- T --  */
    font-size: var(--125-rem);
    /* -- T --  */
    /* -- S --  */
    background-color: var(--white);
    border-radius: var(--radious-pill);
    color: var(--red-principal);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.button-secundary i,
.button-secundary ion-icon {
    /* -- S --  */
    background-color: var(--red-principal);
    color: var(--white);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.button-primary:hover {
    /* -- S --  */
    background-color: var(--white);
    color: var(--red-principal);
    /* -- S --  */
}

.button-primary:hover i,
.button-primary:hover ion-icon {
    /* -- S --  */
    background-color: var(--red-principal);
    color: var(--white);
    /* -- S --  */
    /* -- O --  */
    transform: translateX(.6rem);
    /* -- O --  */
}

.button-secundary:hover {
    /* -- S --  */
    background-color: var(--red-principal);
    color: var(--white);
    /* -- S --  */
}

.button-secundary:hover i,
.button-secundary:hover ion-icon {
    /* -- S --  */
    background-color: var(--white);
    color: var(--red-principal);
    /* -- S --  */
    /* -- O --  */
    transform: translateX(.6rem);
    /* -- O --  */
}

.button-thirty:hover {
    /* -- BM --  */
    border: 2px solid var(--gray-principal);
    /* -- BM --  */
    /* -- S -- */
    background-color: var(--gray-principal);
    color: var(--white);
    /* -- S -- */
}

.button-thirty:hover i,
.button-thirty:hover ion-icon {
    /* -- S --  */
    color: var(--gray-principal);
    /* -- S --  */
    /* -- O --  */
    transform: translateX(-.6rem);
    /* -- O --  */
}

/* BUTTONS */

/* Banner */

.banner-main {
    /* -- O --  */
    clip-path: polygon(100% 0, 100% 90%, 70% 100%, 0 90%, 0 0);
    /* -- O --  */
}

.banner-main img {
    /* -- BM --  */
    width: 100%;
    /* -- BM --  */

}

.group-buttons-carrousel {
    /* -- BM --  */
    display: flex;
    gap: 1rem;
    margin-top: .8rem;
    margin-bottom: .8rem;
    /* -- BM --  */
}

.group-buttons-carrousel .swiper-button-next,
.group-buttons-carrousel .swiper-button-prev {
    /* -- P --  */
    position: relative;
    height: auto;
    top: inherit;
    left: inherit;
    right: inherit;
    padding: .5rem;
    /* -- P --  */
    /* -- BM --  */
    width: auto;
    margin: 0;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--red-principal);
    border-radius: var(--radious-pill);
    color: var(--white);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.group-buttons-carrousel i {
    /* -- T --  */
    font-size: var(--200-rem);
    /* -- T --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}


.group-buttons-carrousel .swiper-button-next:hover,
.group-buttons-carrousel .swiper-button-prev:hover {
    /* -- S --  */
    background-color: var(--white);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
    color: var(--red-principal);
}

.banner-main .swiper-button-next::after,
.banner-main .swiper-button-prev::after,
.swiper-button-next.card-services-button-next::after,
.swiper-button-prev.card-services-button-prev::after {
    /* -- O --  */
    content: none;
    /* -- O --  */
}

.banner-main .banner-button-carrousel {
    /* -- BM --  */
    width: var(--200-rem);
    height: var(--200-rem);
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--white);
    border-radius: var(--radious-pill);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.banner-button-carrousel i {
    /* -- T --  */
    font-size: var(--200-rem);
    /* -- T --  */
    /* -- S --  */
    color: var(--red-principal);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.banner-main .banner-button-carrousel:hover {
    background-color: var(--red-principal);
}

.banner-main .banner-button-carrousel:hover i {
    color: var(--white);
}

.banner-main .swiper-slide {
    /* -- P --  */
    position: relative;
    /* -- P --  */
}

.banner-main .banner-content-detail {
    /* -- P --  */
    position: absolute;
    left: 10rem;
    /* -- P --  */
    /* -- BM --  */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 32px;
    height: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
    width: 100%;
    max-width: 44rem;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--bg-opacity-blue-principal);
    /* -- S --  */
}

.banner-content-detail h1,
.banner-content-detail p {
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

.banner-content-detail .banner-title {
    /* -- P --  */
    position: relative;
    z-index: 10;
    /* -- P --  */
}

.banner-content-detail .banner-title::before {
    /* -- P --  */
    position: absolute;
    left: -16px;
    top: -6px;
    z-index: -1;
    /* -- P --  */
    /* -- O --  */
    content: url("../img/banners-main/hero-deco.svg");
    /* -- O --  */
}

/* Banner */

.modal-content.modal-search {
    background-color: var(--blue-principal);
}

.modal-content.modal-search .btn-form {
    background-color: var(--green-principal);
    color: var(--white);
}

/* Sections */

.section-secundary {
    /* -- P --  */
    position: relative;
    /* -- P --  */
    /* -- BM --  */
    padding-top: 16rem;
    margin-top: -10rem;
    padding-bottom: 6rem;
    /* -- BM --  */
}

.section-secundary.mod {
    padding-top: 5rem;
    margin-top: 0;
}

.container-detail-section {
    /* -- BM --  */
    padding-left: 1rem;
    padding-right: 1rem;
    /* -- BM --  */
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

.container-detail-section .subtitle,
.section-headings .subtitle {
    /* -- BM --  */
    display: inline-block;
    /* width: max-content; */
    padding: .8rem 1.6rem;
    /* -- BM --  */
    /* -- S --  */
    border-radius: var(--radious-general);
    background-color: var(--green-principal);
    color: var(--white);
    /* -- S --  */
}

.section-content.alternative {
    /* -- BM --  */
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--white);
    border-radius: var(--radious-container);
    /* -- S --  */
    /* -- O --  */
    box-shadow: var(--shadow-general);
}

.section-headings.alternative h2 {
    /* -- S --  */
    color: var(--blue-principal);
    /* -- S --  */
}


.section-headings.alternative .subtitle {
    /* -- BM --  */
    padding: 0;
    /* -- BM --  */
    /* -- S --  */
    color: var(--red-principal);
    background-color: inherit;
    /* -- S --  */
}

.section-content.alternative p {
    /* -- S --  */
    color: var(--gray-principal);
    /* -- S --  */
}

.img-deco-container {
    /* -- P --  */
    position: relative;
    /* -- P --  */
    /* -- BM --  */
    display: flex;
    justify-content: space-between;
    /* -- BM --  */
}

.img-deco-container .img-deco,
.img-deco-one {
    /* -- BM --  */
    border-radius: .5rem;
    width: 46%;
    /* -- BM --  */
    /* -- O --  */
    box-shadow: var(--shadow-solid-img);
    /* -- O --  */
}

.img-deco-one {
    /* -- BM --  */
    width: 95%;
    /* -- BM --  */
}

.img-deco-container .circle-text-container {
    /* -- P --  */
    position: absolute;
    top: 50%;
    left: 50%;
    /* -- P --  */
    /* -- O --  */
    transform: translate(-50%, -50%);
    /* -- O --  */
}

.img-deco-container .circle-text {
    /* -- P --  */
    position: relative;
    /* -- P --  */
    /* -- BM --  */
    width: 190px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 50%;
    /* -- S --  */
}

.circle-text .deco {
    /* -- P --  */
    position: absolute;
    /* -- P --  */
    /* -- O --  */
    animation: rotate 10s linear infinite;
    /* -- O --  */
}

.circle-text h1 {
    /* -- BM --  */
    margin: 0;
    /* -- BM --  */
    /* -- T --  */
    font-size: 56px;
    /* -- T --  */
    /* -- S --  */
    color: var(--blue-principal);
    /* -- S --  */
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        ;
    }
}

/* Sections */

/* Sections Cards Services */

.card-services .cards-services {
    /* -- S --  */
    background-color: var(--white);
    border-radius: var(--radious-general);
    /* -- S --  */
    /* -- O --  */
    overflow: hidden;
    /* -- O --  */
}

.cards-services .card-head {
    /* -- BM --  */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: var(--100-rem);
    padding-right: var(--100-rem);
    gap: var(--064-rem);
    padding-top: var(--075-rem);
    padding-bottom: var(--075-rem);
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--blue-principal);
    color: var(--white);
    /* -- S --  */
}

.cards-services .card-body {
    /* -- BM --  */
    padding-left: var(--100-rem);
    padding-right: var(--100-rem);
    padding-top: var(--100-rem);
    padding-bottom: var(--100-rem);
    /* -- BM --  */
}

.cards-services .card-body-text {
    /* -- S --  */
    color: var(--gray-principal);
    /* -- S --  */
}

/* Sections Cards Services */

/* Section Testimonial */

.testimonials-bg {
    /* -- P --  */
    position: relative;
    z-index: 1;
    /* -- P --  */
    /* -- BM -- */
    padding-top: 5rem;
    padding-bottom: 8.75rem;
    /* -- BM -- */
    /* -- S --  */
    background-image: url("../img/testimonios/bg.png");
    background-size: cover;
    background-position: center center;
    color: var(--white);
    /* -- S --  */
}

.testimonials-bg::before {
    /* -- P --  */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    /* -- P --  */
    /* -- BM -- */
    width: 100%;
    height: 100%;
    /* -- BM -- */
    /* -- S --  */
    background: #002f49a5;
    /* -- S --  */
    /* -- O --  */
    content: "";
    opacity: .7;
    /* -- O --  */
}

.testimonials-container {
    /* -- BM -- */
    margin-top: -5.6rem;
    /* -- BM -- */
}

.testimonial-swiper {}

.testimonial-swiper .card.testimonials {
    /* -- BM -- */
    border: none;
    padding: var(--125-rem);
    /* -- BM -- */
    /* -- S -- */
    border-radius: var(--125-rem);
    background-color: var(--white);
    box-shadow: var(--shadow-general);
    /* -- S -- */
}

.card.testimonials h5,
.card.testimonials h6 {
    /* -- S -- */
    color: var(--blue-principal);
    /* -- S -- */
}

.card.testimonials p {
    /* -- S -- */
    color: var(--gray-principal);
    /* -- S -- */
}

.card.testimonials .testimonial-name {
    /* -- BM -- */
    display: flex;
    flex-direction: row;
    gap: var(--156-rem);
    /* -- BM -- */
}

.testimonial-name img {
    /* -- BM -- */
    border-radius: var(--radious-pill);
    width: var(--300-rem);
    height: var(--300-rem);
    object-fit: cover;
    /* -- BM -- */
}

.card.testimonials .card-body {
    /* -- BM -- */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: var(--200-rem);
    /* -- BM -- */
}

.testimonial-swiper .testimonial-pagination {
    /* -- P -- */
    top: 94%;
    /* -- P -- */
}

.testimonial-pagination .swiper-pagination-bullet {
    /* -- P -- */
    opacity: 1;
    /* -- P -- */
    /* -- BM -- */
    width: var(--064-rem);
    height: var(--064-rem);
    /* -- S -- */
    background-color: var(--white);
    /* -- S -- */
}

.testimonial-pagination .swiper-pagination-bullet-active {
    /* -- S -- */
    background-color: var(--red-principal);
    /* -- S -- */
}

/* Section Testimonial */

.default-list {
    /* -- BM -- */
    margin-left: 0;
    padding-left: 2.5rem;
    /* -- BM -- */
    /* -- S -- */
    list-style-type: none;
    /* -- S -- */
}

.default-list li {
    /* -- BM -- */
    margin-bottom: 24px;
    /* -- BM -- */
}

.default-list li::before {
    /* -- P -- */
    position: absolute;
    /* -- P -- */
    /* -- BM -- */
    margin: 0 .3rem 0 -2.5rem;
    color: var(--green-principal);
    height: var(--156-rem);
    width: var(--156-rem);
    justify-content: center;
    align-items: center;
    display: flex;
    /* -- BM -- */
    /* -- T -- */
    font-family: 'FontAwesome';
    /* -- T -- */
    content: "\f00c";
    /* -- S -- */
    background-color: var(--white);
    border-radius: var(--radious-pill);
    /* -- S -- */
    /* -- O -- */
    content: "\f00c";
    /* -- O -- */
}

.container-imgdeco-one {
    /* -- P -- */
    position: relative;
    /* -- P -- */
    /* -- O -- */
    overflow: hidden;
    /* -- O -- */
}

.container-imgdeco-one span {
    /* -- P -- */
    position: absolute;
    right: 50%;
    bottom: 50%;
    /* -- P -- */
    /* -- BM -- */
    display: inline-block;
    width: 100%;
    padding: 0.6rem 1rem;
    /* -- BM -- */
    /* -- T -- */
    text-align: center;
    /* -- T -- */
    /* -- S -- */
    color: var(--white);
    background-color: var(--red-principal);
    /* -- S -- */
    /* -- O -- */
    rotate: -90deg;
    transform: translateY(50%);
    /* -- O -- */
}

/* Section Evaluación */

.bg-assessment {
    /* -- P --  */
    position: relative;
    z-index: 1;
    /* -- P --  */
    /* -- BM -- */
    padding-top: 5rem;
    padding-bottom: 8.75rem;
    /* -- BM -- */
    /* -- S --  */
    background-image: url("../img/home/bg-evaluacion.jpg");
    background-size: cover;
    background-position: center center;
    color: var(--white);
    /* -- S --  */
}

.bg-assessment::before {
    /* -- P --  */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    /* -- P --  */
    /* -- BM -- */
    width: 100%;
    height: 100%;
    /* -- BM -- */
    /* -- S --  */
    background: #002f49;
    /* -- S --  */
    /* -- O --  */
    content: "";
    opacity: .8;
    /* -- O --  */
}

.bg-assessment .section-content.alternative {
    margin-left: -4rem;
}

/* Section Evaluación */

/* Section Blog */

.card.card-blog {
    /* -- BM -- */
    border: none;
    padding: 0;
    /* -- BM -- */
    /* -- S -- */
    border-radius: var(--radious-container);
    background-color: var(--white);
    box-shadow: var(--shadow-general);
    text-decoration: none;
    /* -- S -- */
}

.card-blog img {
    /* -- BM -- */
    width: 100%;
    /* -- BM -- */
    /* -- S -- */
    border-radius: 1rem 1rem 0 0;
    /* -- S -- */
}

.card-blog .card-body {
    /* -- BM -- */
    padding: 1.9rem 1.25rem;
    /* -- BM -- */
}

.card-blog.horizontal {
    /* -- BM -- */
    display: flex;
    flex-direction: row;
    border: none;
    padding: 0;
    /* -- BM -- */
    /* -- S -- */
    border-radius: 20px;
    background-color: var(--white);
    /* -- S -- */
}

.card-blog.horizontal img {
    /* -- BM -- */
    height: 100%;
    width: 100%;
    max-width: 514px;
    /* -- BM -- */
    /* -- S -- */
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    /* -- S -- */
}

.card.card-blog h4,
.card.card-blog h6 {
    /* -- BM -- */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* -- BM -- */
    /* -- S -- */
    color: var(--blue-principal);
    /* -- S -- */
    /* -- O -- */
    overflow: hidden;
    /* -- O -- */
}

.card.card-blog .blog-date-label {
    /* -- BM -- */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    /* -- BM -- */
}

.blog-date-label small {
    /* -- S -- */
    color: var(--gray-principal);
    /* -- S -- */
}

.card.card-blog .badge {
    /* -- BM -- */
    padding: 10px 16px;
    /* -- BM -- */
    /* -- S -- */
    background-color: var(--red-principal);
    border-radius: 8px;
    /* -- S -- */
}

.blog-tags-container span {
    /* -- S -- */
    color: var(--red-principal);
    /* -- S -- */
}

/* Section Blog */

/*--------- HOME ---------*/

.container-breadcrumb {
    /* -- S -- */
    background-color: var(--gray-secundary);
    /* -- S -- */
}

.container-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    /* -- S -- */
    color: var(--blue-principal);
    /* -- S -- */
    /* -- O -- */
    content: var(--bs-breadcrumb-divider, ">");
    /* -- O -- */
}

.container-breadcrumb a {
    /* -- T -- */
    font-weight: 300;
    /* -- T -- */
    /* -- S -- */
    color: var(--blue-principal);
    text-decoration: none;
    /* -- S -- */
}

.container-breadcrumb .breadcrumb-item.active {
    /* -- T -- */
    font-weight: 700;
    /* -- T -- */
    /* -- S -- */
    color: var(--blue-principal);
    /* -- S -- */
}

/*--------- NOSOTROS ---------*/

.card.counter-up {
    /* -- BM -- */
    width: 240px;
    border: none;
    padding: 20px;
    border-radius: 20px;
    /* -- BM -- */
    /* -- T -- */
    text-align: center;
    background-color: var(--white);
    box-shadow: var(--shadow-general);
}

.card.counter-up h1,
.card.counter-up h6 {
    color: var(--blue-principal);
}

.card.card-detail-nosotros {
    border: 0;
    box-shadow: var(--shadow-general);
    background-color: var(--blue-principal);
    border-radius: var(--radious-general);
    height: 100%;
    padding: 25px 0 0 10px;
}

.card.card-detail-nosotros h6 {
    margin-bottom: 0;
}

.card.card-detail-nosotros .mark {
    background-color: var(--red-principal);
    padding: 0 12px;
    color: var(--white);
    border-radius: 6px;
    font-weight: 300;
}

.card.card-detail-nosotros .card-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    border-bottom: 0;
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.card.card-detail-nosotros ul,
.card.card-detail-nosotros ol {
    color: var(--white);
}

.card.card-detail-nosotros li {
    margin-bottom: .6rem;
}

.card.card-detail-nosotros.h-content {
    height: max-content;
}

.card.card-detail-nosotros ion-icon {
    color: var(--red-principal);
    background-color: var(--white);
    border-radius: var(--radious-pill);
    padding: .4rem;
    font-size: 1.5rem;
}

.img-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    max-width: 100px;
    background-color: var(--white);
    border-radius: 10000px;
    padding: 1rem;

}

.img-card img {
    width: 100%;
}

.dec-line {
    display: block;
    height: .2rem;
    background-color: var(--white);
    position: relative;
    width: 100%;
}

.dec-line::after,
.dec-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    border-radius: var(--radious-pill);
    background-color: var(--white);
}


.dec-line::before {
    left: 92%;
}

.alternative-list {
    /* -- BM -- */
    margin-left: 0;
    padding-left: 2.5rem;
    /* -- BM -- */
    /* -- S -- */
    list-style-type: none;
    /* -- S -- */
}

.alternative-list li {
    /* -- BM -- */
    margin-bottom: 24px;
    /* -- BM -- */
}

.alternative-list li::before {
    /* -- P -- */
    position: absolute;
    /* -- P -- */
    /* -- BM -- */
    margin: 0 .3rem 0 -2.5rem;
    color: var(--green-principal);
    height: var(--156-rem);
    width: var(--156-rem);
    justify-content: center;
    align-items: center;
    display: flex;
    /* -- BM -- */
    /* -- T -- */
    font-family: 'icomoon';
    /* -- T -- */
    /* -- S -- */
    background-color: #58852e10;
    border-radius: var(--radious-pill);
    /* -- S -- */
    /* -- O -- */
    content: "\e932";
    /* -- O -- */
}

/*--------- NOSOTROS ---------*/

/*--------- PRODUCTOS ---------*/

.card.card-product {
    /* -- BM -- */
    border: 0;
    height: 100%;
    /* -- BM -- */
    /* -- T -- */
    text-align: center;
    /* -- T -- */
}

.card.card-product .card-header {
    /* -- BM -- */
    border-bottom: 0;
    /* -- BM -- */
    /* -- S -- */
    background-color: var(--white);
    /* -- S -- */
}

.card.card-product .card-body {
    /* -- BM -- */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* -- BM -- */
}

.card.card-product p {
    /* -- T -- */
    text-align: start;
    /* -- T -- */
    /* -- S -- */
    color: var(--gray-principal);
    /* -- S -- */
}

.card.card-product a {
    /* -- BM -- */
    margin-top: 1rem;
    /* -- BM -- */
}

.card.card-product img {
    /* -- BM -- */
    width: 100%;
    max-width: 20rem;
    /* -- BM -- */
}

/*--------- PRODUCTOS ---------*/

/*--------- ANEXO 30 ---------*/

.accordion-flush .accordion-button.collapsed {
    /* -- BM -- */
    border-bottom: .2rem solid var(--green-principal);
    /* -- BM -- */
    /* -- S -- */
    background-color: #F2F5EE;
    color: var(--green-principal);
    box-shadow: none;
    outline: 0;
    /* -- S -- */
}

.accordion-flush>.accordion-item {
    /* -- BM -- */
    border: 0;
    margin-bottom: var(--156-rem);
    /* -- BM -- */
    /* -- S -- */
    border-radius: var(--radious-general) !important;
    overflow: hidden;
    /* -- S -- */
}

.accordion-flush .accordion-button {
    /* -- T -- */
    font-size: var(--125-rem);
    /* -- T -- */
}

.accordion-flush .accordion-button:not(.collapsed) {
    /* -- BM -- */
    border-bottom: 4px solid var(--green);
    /* -- BM -- */
    /* -- T -- */
    font-weight: 700;
    /* -- T -- */
    /* -- S -- */
    background-color: var(--green-principal);
    color: var(--white);
    box-shadow: none;
    outline: 0;
    /* -- S -- */
}

.accordion-flush .accordion-button::after {
    /* -- BM -- */
    height: auto;
    /* -- BM -- */
    /* -- T -- */
    font-family: 'FontAwesome';
    /* -- T -- */
    /* -- S -- */
    background-image: none;
    /* -- S -- */
    /* -- O -- */
    content: "\f078";
    /* -- O -- */
}

.accordion-flush .accordion-button:not(.collapsed)::after {
    /* -- S -- */
    background-image: none;
    /* -- S -- */
}

/*--------- ANEXO 30 ---------*/

/*--------- FORM ---------*/

.label-input {
    /* -- BM -- */
    margin-bottom: .8rem;
    /* -- BM -- */
    /* -- T -- */
    font-weight: 700;
    /* -- T -- */
    /* -- S -- */
    color: var(--white);
    /* -- S -- */
}

.form-select .form-control option{
    color: #3d3d3d !important;
}

.form-group .form-control,
.form-group .form-select {
    /* -- P -- */
    position: relative;
    /* -- P -- */
    /* -- BM -- */
    padding: 1rem .8rem;
    /* -- BM -- */
    /* -- S -- */
    border: none;
    box-shadow: none;
    outline: none;
    background-color: rgba(102, 155, 188, .4);
    color: var(--white);
    /* -- S -- */
}

.form-group .form-select {
    /* -- P -- */
    position: relative;
    /* -- P -- */
    /* -- S -- */
    --bs-form-select-bg-img: url('../img/Arrow-Down.png');
    background-size: 1.2rem 1.2rem;
    /* -- S -- */
}

.form-group .input-group {
    /* -- S --  */
    overflow: hidden;
    border-radius: var(--radious-general);
    /* -- S --  */
    /* -- O --  */
    overflow: hidden;
    /* -- O --  */
}

.form-group .input-group::before {
    /* -- P --  */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    /* -- P --  */
    /* -- BM --  */
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: var(--064-rem);
    padding-right: var(--064-rem);
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--white);
    /* -- S --  */
    /* -- O --  */
    content: 'Seleccionar archivo';
    pointer-events: none;
    /* -- O --  */
}

.form-group .form-control[type=file] {
    /* -- BM --  */
    padding-left: 7px;
    /* -- BM --  */
}

/*--------- FORM ---------*/

/*--------- CONTACTO ---------*/

.card.card-detail {
    /* -- BM --  */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--125-rem);
    padding: var(--156-rem);
    height: 100%;
    border: none;
    /* -- BM --  */
    /* -- T --  */
    text-align: left;
    /* -- T --  */
    /* -- S --  */
    background-color: var(--blue-principal);
    color: var(--white);
    /* -- S --  */
    /* -- O --  */
    box-shadow: var(--shadow-general);
    /* -- O --  */
}

.card.card-detail .icon-card {
    /* -- BM --  */
    height: 5rem;
    width: 5rem;
    padding: var(--125-rem);
    display: flex;
    justify-content: center;
    align-items: center;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--white);
    border-radius: var(--radious-pill);
    /* -- S --  */
}

.card.card-detail .icon-card ion-icon {
    /* -- T --  */
    font-size: 2.5rem;
    /* -- T --  */
    /* -- S --  */
    color: var(--red-principal);
    /* -- S --  */
}

.card.card-detail a {
    /* -- T --  */
    text-decoration: none;
    /* -- T --  */
    /* -- S --  */
    color: currentColor;
    /* -- S --  */
}

.card.card-detail a:hover {
    /* -- T --  */
    text-decoration: underline;
    /* -- T --  */
}

/*--------- CONTACTO ---------*/

/*--------- BOLSA DE TRABAJO ---------*/

.icon-text {
    /* -- BM --  */
    display: flex;
    flex-direction: row;
    gap: var(--075-rem);
    width: 100%;
    max-width: 22rem;
    padding: 1rem 2rem;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    margin-bottom: var(--100-rem);
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--green-principal);
    color: var(--white);
    border-radius: var(--radious-general);
    /* -- S --  */
}

.icon-text i {
    /* -- T --  */
    font-size: var(--200-rem);
    /* -- T --  */
}

/*--------- BOLSA DE TRABAJO ---------*/

/*--------- CALENDARIO ---------*/


.tags-calengar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin: .6rem 0 2rem;
}

.tags-calengar .item-calendar {
    color: var(--white);
    font-size: .8rem;
    padding: .2rem .6rem;
    border-radius: .25rem;
    text-align: center;
}

.tags-calengar .item-calendar.green {
    background-color: var(--green-principal);
}

.tags-calengar .item-calendar.red {
    background-color: var(--red-principal);
}

.tags-calengar .item-calendar.blue {
    background-color: var(--blue-principal);
}

/*--------- CALENDARIO ---------*/

/*--------- BLOG ---------*/

.sections-blogs .card-body,
.sections-blogs h4.card-blog-title,
.sections-blogs small {
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

.sections-blogs span {
    /* -- S --  */
    color: var(--blue-third);
    /* -- S --  */
}

.sections-blogs span.badge {
    /* -- S --  */
    color: var(--white);
    background-color: var(--green-principal);
    /* -- S --  */
}

.sections-blogs .card.card-blog {
    /* -- S --  */
    background-color: var(--blue-principal);
    /* -- S --  */
}

.badge-container .badge {
    /* -- BM --  */
    padding: 0.7rem 1rem;
    margin-bottom: .5rem;
    /* -- BM --  */
    /* -- S --  */
    border-radius: var(--064-rem);
    /* -- S --  */
}

.badge-blue {
    /* -- S --  */
    background-color: var(--blue-principal);
    /* -- S --  */
}

.badge-lightblue {
    /* -- S --  */
    background-color: var(--blue-third);
    /* -- S --  */
}

.aside-content .banner {
    /* -- P --  */
    position: relative;
    z-index: 0;
    /* -- P --  */
    /* -- BM --  */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 1.2rem 0 1.2rem;
    /* -- BM --  */
    /* -- S --  */
    background-image: url("../img/nosotros/certificaciones.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1.2rem;
    /* -- S --  */
    /* -- T --  */
    text-align: center;
    /* -- T --  */
}

.pagination {
    /* -- BM --  */
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    gap: .6rem;
    /* -- BM --  */
}

.pagination .page-link {
    /* -- BM --  */
    border: 0;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--red-principal);
    border-radius: var(--radious-general);
    color: var(--white);
    /* -- S --  */
}

.page-item:first-child a.page-link,
.page-item:last-child a.page-link {
    /* -- BM --  */
    display: flex;
    height: 100%;
    align-items: center;
    /* -- BM --  */
    /* -- S --  */
    border-top-left-radius: var(--radious-general);
    border-top-right-radius: var(--radious-general);
    border-bottom-left-radius: var(--radious-general);
    border-bottom-left-radius: var(--radious-general);
    /* -- S --  */
}

.page-item .page-link span {
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

.page-item .page-link:hover,
.page-link:hover span {
    /* -- S --  */
    color: var(--red-principal);
    /* -- S --  */
}

/*--------- BLOG ---------*/

.blog-img img {
    /* -- BM --  */
    width: 100%;
    /* -- BM --  */
    /* -- S --  */
    border-radius: var(--radious-container);
    /* -- S --  */
}

.blog-img .badge {
    /* -- BM --  */
    padding: 0.7rem 1rem
        /* -- BM --  */
}

.blog-img .date-label {
    /* -- BM --  */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--200-rem);
    margin-top: var(--200-rem);
    margin-bottom: var(--125-rem);
    /* -- BM --  */
}

.blog-content .title-blog {
    /* -- BM --  */
    color: var(--blue-principal);
    /* -- T -- */
    font-size: 2.4rem !important;
    /* -- S --  */
    margin-bottom: var(--200-rem);
}

.blog-content .subtitle-blog {
    /* -- T -- */
    font-size: 1.6rem !important;
}

.blog-content p {
    /* -- S --  */
    color: var(--gray-principal);
}

.aside-content .banner::before {
    /* -- P --  */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    opacity: .7;
    /* -- P --  */
    /* -- BM --  */
    width: 100%;
    height: 100%;
    /* -- BM --  */
    /* -- S --  */
    background: #455B68;
    border-radius: var(--radious-container);
    /* -- S --  */
    /* -- O --  */
    content: "";
    /* -- O --  */
}

.tags-sources .tags {
    /* -- S --  */
    color: var(--blue-third);
    /* -- S --  */
}

.tags-sources {
    /* -- S --  */
    color: var(--gray-principal);
    /* -- S --  */
}

.tags-sources .sources {
    /* -- S --  */
    color: var(--red-principal);
    /* -- S --  */
}

.tags-sources .link-sources {
    /* -- T --  */
    text-decoration: none;
    /* -- T --  */
    /* -- S --  */
    color: var(--gray-principal);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.tags-sources .link-sources:hover {
    /* -- S --  */
    color: var(--blue-principal);
    /* -- S --  */
}

.social-icon {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--red-principal);
    border-radius: 50%;
    transition: all 0.2s ease-out;
    text-decoration: none;
    color: var(--white);
}

/*--------- EVALUACIÓN DE ESTACIONES ---------*/

.question-complete {
    /* -- BM --  */
    height: auto;
    margin-bottom: var(--300-rem);
    /* -- BM --  */
    /* -- T --  */
    text-align: left;
    /* -- T --  */
}

.question-alignment {
    /* -- BM --  */
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: space-between;
    /* -- BM --  */
}

.question-container {
    /* -- BM --  */
    display: flex;
    align-items: center;
    gap: var(--200-rem);
    max-width: 39rem;
    /* -- BM --  */
}

.question-container .number {
    /* -- P --  */
    position: relative;
    /* -- P --  */
    /* -- BM --  */
    height: 2.1rem;
    width: 2.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--red-principal);
    border-radius: .25rem;
    color: var(--white);
    /* -- S --  */
}

.question-container .question {
    /* -- S --  */
    color: var(--blue-principal);
    /* -- S --  */
}

.toggle {
    /* -- BM --  */
    box-sizing: border-box;
    display: inline-block;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    /* -- BM --  */
    /* -- T --  */
    font-size: 0;
    /* -- T --  */
}


.toggle input+label:first-of-type {
    /* -- S --  */
    border-radius: .37rem 0 0 .37rem;
    border-right: 2px solid #eaeaea;
    /* -- S --  */
}

.toggle input+label:last-of-type {
    /* -- BM --  */
    border-left: none;
    /* -- BM --  */
    /* -- S --  */
    border-radius: 0 .37rem .37rem 0;
    /* -- S --  */
}

.toggle input {
    /* -- P --  */
    position: absolute;
    /* -- P --  */
    /* -- BM --  */
    width: 0;
    height: 0;
    /* -- BM --  */
}

.toggle input:checked+label {
    /* -- P --  */
    z-index: 1;
    /* -- P --  */
    /* -- BM --  */
    background-color: var(--blue-principal);
    color: var(--white);
    border-color: var(--blue-principal);
    /* -- BM --  */
}

.toggle input+label {
    /* -- P --  */
    position: relative;
    /* -- P --  */
    /* -- BM --  */
    margin: 0;
    padding: .62rem 1.25rem;
    box-sizing: border-box;
    display: inline-block;
    /* -- BM --  */
    /* -- T --  */
    font-size: var(--100-rem);
    line-height: 140%;
    font-weight: 600;
    text-align: center;
    /* -- T --  */
    /* -- S --  */
    background-color: #F0F5F9;
    color: var(--blue-principal);
    /* -- S --  */
    /* -- O --  */
    box-shadow: 0 0 0 transparent;
    transition: var(--transition-all-03);
    cursor: pointer;
    /* -- O --  */
}

/*--------- EVALUACIÓN DE ESTACIONES ---------*/

.nav-docs {
    /* -- BM --  */
    justify-content: center;
    gap: var(--075-rem);
    /* -- BM --  */
}

.nav-docs .nav-link {
    color: var(--red-principal);
    background-color: var(--white);
}

.nav-docs .nav-item .nav-link.active {
    background-color: var(--red-principal);
    border-bottom: 2px solid var(--red-principal);
    color: var(--white);
}


.content-docs {
    width: 100%;
    height: 1200px;
}

/*--------- RECOMENDACIONES ---------*/

.bg-mod-data h3 {
    font-size: var(--156-rem);
    margin-bottom: 0;
}

.bg-blue-principal ul {
    color: var(--white);
}

.bg-mod-data .card.card-detail-nosotros,
.tab-content .two .card.card-detail-nosotros {
    /* outline: 2px solid rgb(250 250 250 / 10%); */
    background-color: var(--blue-third);
}

.two .card.card-detail-nosotros .card-header {
    /*  flex-wrap: wrap; */
    /* gap: .2rem */
}

.two .card.card-detail-nosotros .img-card {
    margin: auto .2rem;
}

.two .card.card-detail-nosotros .div-header {
    display: flex;
    flex-direction: column;
}

.two .card.card-detail-nosotros h6 {
    width: 100%;
    margin-bottom: .2rem;
    /* display: inline-flex; */
}

/* .two .card.card-detail-nosotros h6 span:first-child{
    width: 100%;
    display: inline-flex;
} */

.text-bg-green {
    color: var(--white);
    background-color: var(--green-principal);
    margin-right: auto;
    padding: 2px 8px;
    border-radius: .4rem;
    max-height: 30px;
}

/* 
.bg-mod-data .card.card-detail-nosotros > *,
.bg-mod-data .card.card-detail-nosotros > h3{
    color: var(--blue-principal);
} 
    */

.cont-line-dec {
    display: flex;
    align-items: center;
}

.line-dec-right,
.line-dec-left {
    position: relative;
    margin: 0 auto;
}

.line-dec-left::before,
.line-dec-right::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    background-color: var(--red-principal);
    width: 100px;
    height: 4px;
}

.line-dec-right::before {
    left: inherit;
    right: 100%;
}

.line-dec-inf {
    width: 100%;
    height: 3px;
    position: relative;
    background-color: var(--red-principal);
    display: inline-flex;
    margin: auto 0;
}

.order-2 .line-dec-inf {
    width: 90%;
    margin: auto 0 auto auto;
}

.line-dec-inf::after,
.line-dec-inf::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border: 3px solid var(--red-principal);
    border-radius: 100px;
    background-color: rgb(250 250 250 / 20%);
}

.line-dec-inf::before {
    left: 100%;
    top: 50%;
}

.detail-complement .text-1 {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
}

.detail-complement .text-2 {
    font-weight: 900;
    font-size: 32px;
    text-align: center;
}

.input-mail {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 420px;
    /* 
    overflow: hidden;
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 0.375rem;
    */
}

.input-mail input {
    width: 100%;
    padding: .4rem .8rem;
    border-top: 1px solid rgb(0 0 0 / 20%);
    border-bottom: 1px solid rgb(0 0 0 / 20%);
    border-left: 1px solid rgb(0 0 0 / 20%);
    border-right: none;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
    transition: var(--transition-all-03);
    /* box-shadow: 0px 0px 15px 2px rgb(0 0 0 / 10%) inset; */
}

.input-mail input:focus {
    outline: 4px solid rgb(120 0 0 / 10%);
    border-top: 1px solid rgb(120 0 0 / 100%);
    border-bottom: 1px solid rgb(120 0 0 / 100%);
    border-left: 1px solid rgb(120 0 0 / 100%);
}

.input-mail button {
    background-color: var(--green-principal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .2rem .6rem;
    border: none;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    gap: .4rem;
    transition: var(--transition-all-03);
}

.input-mail button:hover,
.input-mail button:active {
    background-color: var(--red-wine);
}



/* 
.line-dec-inf::before,
.line-dec-inf::after{
    content: '';
    position: absolute;
    background-color: var(--white);
    width: 100%;
    height: 2px;
    top: 0;
    left: 100%;
}

.line-dec-inf::after{
   top: inherit;
   left: inherit;
   bottom: 0;
   right: 100%;
} */

/*--------- RECOMENDACIONES ---------*/

.title-tree,
.subtitle-tree {
    background-color: var(--blue-principal);
    padding: .6rem 1rem;
    border-radius: var(--radious-general);
    width: 100%;
    max-width: 645px;
    margin: 0 auto 1.6rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.subtitle-tree {
    background-color: var(--blue-third);
}

.title-tree .number,
.subtitle-tree .number {
    background-color: var(--green-principal);
    border-radius: var(--radious-general);
    padding: .2rem 1rem;
    margin: 0 auto;
    color: var(--white);
    display: inline-flex;
    align-items: center;
}

.title-tree.alternative,
.subtitle-tree.alternative {
    flex-direction: row;
    max-width: max-content;
    margin: 0;
    gap: .6rem;
}

.group-dflex .default-list {
    width: 100%;
    /*  max-width: 767px; */
    margin-left: auto;
    margin-right: auto;
}

.map-concept>* {
    color: var(--white);
    text-align: center;
}

.map-concept .level {
    border-radius: var(--radious-general);
    position: relative;
    padding: 1rem .8rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 20;
    border: 3px solid #6e91a4;
}

.map-concept .level p {
    max-width: 880px;
}

.map-concept .level.level-one::before {
    content: none;
}

/* .map-concept .level .link-ref{
    background-color: var(--white);
    color: var(--red-principal);
    text-decoration: none;
} */

.map-concept .level-one {
    background-color: var(--blue-principal);
}

.map-concept .level-two {
    background-color: #104b6a;
}

.map-concept .level-three {
    background-color: #316c8c;
}

.map-concept .level-four {
    background-color: var(--blue-third);
}

.map-concept .level::before {
    content: "";
    width: 6px;
    height: 100px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    background-color: #6e91a4;
    opacity: 1;
    border-radius: 100px;
}

.map-concept .row .col-md-5:first-child .level.level-three::before {
    transform: translateX(-50%) rotate(45deg) translateY(40px);
    bottom: 104%;
    left: 65%;
}

.map-concept .row .col-md-5:last-child .level.level-three::before {
    transform: translateX(-50%) rotate(-45deg) translateY(40px);
    bottom: 104%;
    left: 35%;
}

.link-img {
    display: inline-flex;
}

.link-img img {
    width: 100%;
    border-radius: var(--radious-general);
    transition: var(--transition-all-03);
}

.link-img:hover img {
    opacity: .8;
}

/*--------- MODAL SEARCH ---------*/

.modal-form .modal-content {
    /* -- BM --  */
    border: none;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--blue-principal);
    /* -- S --  */
}

.modal-form .modal-title {
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

.modal-form .icon-form {
    /* -- BM --  */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    margin-left: .4rem;
    border: none;
    /* -- BM --  */
    /* -- S --  */
    color: var(--white);
    background-color: var(--green-principal);
    border-radius: var(--radious-general);
    /* -- S --  */
    /* -- O --  */
    transition: var(--transition-all-03);
    /* -- O --  */
}

.modal-form .icon-form:hover {
    /* -- S --  */
    background-color: var(--white);
    color: var(--green-principal);
    /* -- S --  */
}

/*--------- MODAL SEARCH ---------*/

/***************** MAIN *****************/

/***************** FOOTER *****************/

footer {
    /* -- P --  */
    position: relative;
    /* -- P --  */
    /* -- BM --  */
    padding-top: 5rem;
    padding-bottom: 4rem;
    margin-top: auto;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--blue-principal);
    color: var(--white);
    /* -- S --  */
}

footer p {
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

footer .footer-title {
    /* -- P --  */
    position: relative;
    /* -- P --  */
    /* -- BM --  */
    margin-bottom: 2.375rem;
    /* -- BM --  */
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

footer .footer-title::before {
    /* -- P --  */
    position: absolute;
    bottom: -0.625rem;
    /* -- P --  */
    /* -- BM --  */
    width: 15%;
    height: .25rem;
    /* -- BM --  */
    /* -- S --  */
    background-color: var(--white);
    border-radius: var(--radious-pill);
    /* -- S --  */
    /* -- O --  */
    content: "";
    /* -- O --  */
}

footer .footer-list {
    /* -- BM --  */
    padding: 0;
    columns: 2;
    /* -- BM --  */
    /* -- S --  */
    list-style: none;
    /* -- S --  */
}

.footer-list .footer-list-items {
    /* -- BM --  */
    margin-bottom: var(--075-rem);
    /* -- BM --  */
}

.footer-list-items a {
    /* -- BM --  */
    margin-bottom: var(--075-rem);
    /* -- BM --  */
    /* -- T --  */
    text-decoration: none;
    /* -- T --  */
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

.footer-quick-contact .footer-contact-items {
    /* -- BM --  */
    display: flex;
    flex-direction: row;
    gap: var(--075-rem);
    margin-bottom: var(--075-rem);
    /* -- BM --  */
}

.footer-contact-items a {
    /* -- T --  */
    text-decoration: none;
    /* -- T --  */
    /* -- S --  */
    color: var(--white);
    /* -- S --  */
}

.footer-contact-items .icon-contact {
    /* -- BM --  */
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--156-rem);
    width: var(--156-rem);
    gap: var(--075-rem);
    /* -- BM --  */
    /* -- T --  */
    font-size: 18px;
    padding: 3px;
    /* -- T --  */
    /* -- S --  */
    background-color: var(--white);
    color: var(--darkBlue);
    border-radius: var(--radious-pill);
    /* -- S --  */
}

.icon-contact i {
    /* -- S --  */
    color: var(--blue-principal);
    /* -- S --  */
}

footer .footer-social-list {
    /* -- BM --  */
    display: inline-flex;
    flex-direction: row;
    gap: var(--125-rem);
    padding: 0;
    margin: 0;
    /* -- BM --  */
    /* -- S --  */
    list-style: none;
    /* -- S --  */
}

.footer-social-list i {
    /* -- S --  */
    color: var(--white);
    font-size: 28px;
    /* -- S --  */
}

/***************** FOOTER *****************/