/* --------------------------------------------------------- general */
:root{
    --col-blue-dark: #182536;
    --col-blue-two: #325687;
    --col-blue-ligth: #e5f3fc;
    --col-grey: #f1f1f1;
    --col-txt-light: #989898;
    --col-txt-med: #696969 ;
    --col-txt-dark:#3f3f3f;
    --col-txt-white:#ffffff;
    --col-gold-dark:#a79580;
    --col-gold-light:#fff9f2;
    --col-green-dark:#548035;
    --col-green-med:#90ce50;
    --col-green-light:#e6f2ef;
    --col-red-dark:#de4f40;
    --col-red-light:#fff0ec;
    --animate-delay: 0.5s;
    --bs-navbar-active-color: #ffffff;
}

.navbar {
    --bs-navbar-active-color: #ffffff; /* Cambia el blanco por cualquier color que se adecue a tu diseño */
}

* {
    margin:0px;
    padding:0px;
    box-sizing:border-box;
}
@keyframes myAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.animated-element {
    animation: myAnimation 2s ease-in-out infinite; /* 3s es la duración, puedes ajustarlo */
}
body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #325687;
    border: 2px solid #325687;
    --bs-btn-border-color: #325687;
    --bs-btn-hover-color: #325687;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #325687;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #325687;
    --bs-btn-active-border-color: #325687;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #325687;
    --bs-btn-disabled-border-color: #325687;
    transition: 0.4s ease-in-out;
}
.btn-primary:hover {
    border: 2px solid #325687;
}
.btn-secundary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #a79580;
    --bs-btn-border-color: #a79580;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #a79580;
    --bs-btn-hover-border-color: #a79580;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #a79580;
    --bs-btn-active-border-color: #a79580;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #a79580;
    --bs-btn-disabled-border-color: #a79580;
    transition: 0.5s ease-in-out;
}
.section-title{
    font-family: 'Montserrat', sans-serif;
    color:var(--col-gold-dark);
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
}
.section-subtitle{
    color:var(--col-txt-med);
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 20px;
}
.bg-rentist{
    background-color:var(--col-blue-two);
}
/* ----------------------------------------------------------- navbar */
.nav.item {
    text-align: center;
    margin: 0 auto;
}
.nav-link{
    text-align: center;
    margin: 0 auto;
    transition: transform 0.2s ease-in;
}
.nav-link:hover{
    transform: scale(0.9);
    font-weight: 500;
}
.box-title-page{
    padding: 30px 0 20px 0;
    background-color: #182536;
    color: #fff;
    letter-spacing: 5px;
    margin: 0;
    margin-top: 69px;
    font-family:'Montserrat';
}
.box-title-page .title {
    font-size: 24px;
}
/* --------------------------------------------------- section banner */
.section-banner{
    margin-top: 80px;
    margin-bottom: 20px;
}
.section-banner-title{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}
.col-banner-uno .texto-uno,
.col-banner-uno .texto-dos,
.col-banner-uno .texto-tres{
    margin-top: 10px;
    margin-bottom: 20px;
}
.col-banner-uno .texto-uno-title,
.col-banner-uno .texto-dos-title,
.col-banner-uno .texto-tres-title{
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}
.col-banner-uno .texto-uno-subtitle,
.col-banner-uno .texto-dos-subtitle,
.col-banner-uno .texto-tres-subtitle{
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.col-banner-uno .texto-uno-title{
    font-size: 42px;
}
.col-banner-uno .texto-dos-title{
    font-size: 34px;
    margin-bottom: 20px;
}
.col-banner-uno .texto-tres-title{
    font-size: 42px;
}
.col-banner-uno .texto-dos-subtitle{
   text-align: center;
}
.img-banner-desktop{
    max-width: 30px;
}
.img-banner{
    max-width: 50px;
    margin-bottom: 10px;
}
.btn-banner{
    font-family: 'Montserrat',sans-serif;
    display: block;
    padding: 15px 10px 10px 10px;
    background-color: var(--col-txt-dark);
    border: 4px solid var(--col-txt-dark);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--col-txt-white);
    margin-top: 30px ;
    transition: 0.4s ease-in-out;
}
.btn-banner:hover{
    background-color: white;
    color :var(--col-txt-dark);
}
.btn-banner h4{
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
}
.btn-banner p{
    font-weight: 500;
    margin-bottom: 0;
    font-size: 14px;
}
/* ----------------------------------------------------- section zero */
.img-column {
    object-fit: cover;
    border-radius: 10px;
}
/* ----------------------------------------------------- section one */
.circle-number {
    width: 30px;
    height: 30px;
    background-color: var(--col-blue-two);
    color: var(--col-txt-white);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}
.title-parrafo-enumerado{
    display: inline;
    line-height: 20px;
    font-size: 1.2rem;
    color: var(--col-txt-med);
}
.txt-parrafo-enumerado{
    margin-right: 0 !important;
    color: var(--col-txt-med);
}
/* ------------------------------------------------------- section two */
.section-two{
    background-color:var(--col-blue-dark);
    /* border-bottom: 10px solid var(--col-gold-dark); */
    color: #fff;
}
.section-two-number {
    color:var(--col-txt-white);
    font-weight: bold;
    font-family: 'Montserrat';
}
.section-two-text {
    color:var(--col-txt-white);
}
/* ----------------------------------------------------- section three */
.section-three{
    background-color: var(--col-grey);
    padding-top: 120px;
    padding-bottom: 150px;
}
.card{
    border-radius: 10px;
}
.card img{
    border-radius: 10px 0px 0px 10px;
    max-height: 300px;
}
.card-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.span-box-one{
    font-size: 13px;
    padding: 2px 10px;
    background-color: var(--col-blue-ligth);
    color:var(--col-blue-two);
    border: 1px solid var(--col-blue-two);
    border-radius: 25px 25px 25px 25px;
    margin-left: 20px;
    line-height: 35px;
}
.span-box-two{
    font-size: 13px;
    padding: 2px 20px;
    background-color: var(--col-gold-light);
    color:var(--col-gold-dark);
    border: 1px solid var(--col-gold-dark);
    border-radius: 25px 25px 25px 25px;
    margin-left: 20px;
    line-height: 35px;
}
.ico-cards{
    width: 18px;
    margin-right: 10px;
}
.card-atributos{
    margin-right: 10px;
    font-size: 14px;
}
.card-atributos-ico{
    color: var(--col-gold-dark);
}
.card-data-box{
    background-color: var(--col-gold-light);
    border: 1px solid var(--col-gold-dark);
    border-radius: 10px;
    padding: 10px;
    font-family: 'Montserrat';
    color: var(--col-txt-med);
}
.txt-box-one{
    color: 1px solid var(--col-gold-dark);
    font-size: 1rem;
    line-height: 19px;
    display: inline-block;
    margin-bottom: 0px;
}
.content-card-one-col .card-atributos{
    font-size: 20px;   
}
.content-card-one-col .card-notes-box span{
    font-size: 17px;   
}
.content-card-one-col hr {
    margin-top: 12px;
    margin-bottom: 6px;
}
.txt-box-two{
    font-size: 1.5rem;
    font-weight: bold;
}
.progress-bar-text-one{
    margin: 0;
}
.progress-bar-text-two{
    margin: 0;
}
.progress-bar-text-three{
    text-align: right;
    margin: 0;
    margin-bottom: 5px;
}
.progress-bar-text-four{
    text-align: right;
    margin: 0;
    margin-bottom: 5px;
}
.progress-bar-text-five{
    margin: 0;
    margin-top: 5px;
}
.progress-bar-text-six{
    text-align: right;
    margin: 0;
    margin-top: 5px;
}
.container-card-btn{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    height: 100%;
}
.container-card-btn button {
    margin-top: auto;
    margin-left: auto;
    width: 100%;
}
.card-desktop {
    overflow: hidden;
}
.card-row {
    display: flex;
}
.image-card-container-tablet {
    width: 100%;
    max-width: 350px;
    height: 200px;
    overflow: hidden;
}
.image-card-container-tablet img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 10px 10px 0 0 !important;  
}
.image-card-container-mobile {
    width: 100%;
    max-width: 600px;
    height: 300px;
    overflow: hidden;
}
.image-card-container-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    border-radius: 10px 10px 0 0 !important; 
}
.btn-blue{
    background-color: var(--col-blue-two);
    border: 2px solid var(--col-blue-two);
    color:var(--col-txt-white);
    font-family: 'Montserrat';
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s ease-in-out !important;
}
.btn-blue:hover{ 
    background-color: transparent;
    border: 2px solid var(--col-blue-two);
    color: var(--col-blue-two);
}
.card-notes-box{
    margin-top: 2px;
    padding-left: 0;
}
.card-notes-box span{
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--col-txt-white);
}
.card-notes-green{
    background-color: var(--col-green-med);
}
.card-notes-blue{
    background-color: var(--col-blue-two);
}
.card-notes-gold{
    background-color: var(--col-gold-dark);
}
.display-tablet .progress-bar-text-five{
    font-size: 14px;
    margin-top: 5px;
}
.display-tablet .progress-bar-text-six{
    margin-top: 0px;
}
.section-three-detalles-card-one{
    margin-bottom: 4px;
}
.section-three-detalles-card-two{
    margin-bottom: 4px;
    text-align: right;
    font-weight: 500;
}
.bg-rentist-green{
    /* background-color: #90ce50; */
    background: linear-gradient(to right, #90ce50, #a7ed62);
}
.progress, 
.progress-stacked {
    --bs-progress-height: 12px;
}
.card-atributos-test{
    font-size: 17px !important;
}
/* ----------------------------------------------------- section four */
.section-four{
    background-color:var(--col-blue-dark);
    padding-top: 130px;
    padding-bottom: 130px;
    border-top: 10px solid var(--col-gold-dark);
    border-bottom: 10px solid var(--col-gold-dark);
}
.section-four .first-colmn{
    padding-right: 80px;
}
.section-four-title{
    color:var(--col-gold-dark) !important;
    letter-spacing: 6px;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.5em;
}
.txt-faq-one{
    color: var(--col-txt-white);
    font-size: 1.3rem;
}
.txt-faq-two{
    color: var(--col-txt-white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-top: 10px;
    text-decoration: none !important;
}
.txt-faq-two:hover + .ver-mas-link {
    transform: scale(1.3);
    margin-right: 10px;
}
.separador-faq{
    border: none; 
    border-top: 2px solid var(--col-gold-dark); 
    margin: 10px 0; 
}
.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}
.ver-mas-link {
    color: var(--col-gold-dark);
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}
.ver-mas-link:hover {
    transform: scale(1.3);
}
.ver-mas-link i {
    color: var(--col-gold-dark);
    text-decoration: none;
}

/* ---------------------------------------------------- section five */
.section-five {
    background-color:var(--col-blue-ligth);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    border-bottom: 5px solid var(--col-gold-dark);
}
.section-five-title{
    color:var(--col-gold-dark) !important;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 1.6em;
    text-align: center;
    padding: 5px 0 10px 0;
}
.title-box{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top:-11px;
    background-color: var(--col-blue-dark);
    max-width: 500px;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-five-row{
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-partner-trustpilot{
    max-width: 220px;
    height: 100%;
    margin: 10px;
}
.img-partner-coinbase{
    max-width: 200px;
    height: 100%;
    margin: 10px;
}
.img-partner-veriff{
    max-width: 150px;
    height: 100%;
    margin: 10px;
}
.img-partner-moonpay{
    max-width: 200px;
    height: 100%;
    margin: 10px;
}
.section-five-row-mobile{
    display: none;
}
.img-partner-container .col-12{
    padding-left: 0 !important;
    padding-right: 0 !important;
} 
.img-partner-container{
    background-color: #fff;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-partner-mobile{
    max-width: 130px;
}
.img-partner{
    max-width: 220px;
    transition: transform 0.3s ease-in-out;
}
.img-partner:hover{
    transform: scale(1.1);
}
/* ----------------------------------------------------- section six */
.section-six {
    padding-top: 0;
    background-color: #f1f1f1;
}
.testimonials{
    position: relative;
    padding:50px 0;
    font-family:'Montserrat', sans-serif
}
.testimonials::before{
    content:'';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--col-grey);
}
.testimonials .title img {
    margin-top: -10px;
}
.testimonials .testi .item {
    background: var(--col-txt-white);
    padding: 50px 30px;
    border-radius: 10px;
}
.testimonials .testi .item .profile {
    display: flex;
    padding-left: 15px;
}
.testimonials .testi .item .profile img {
    border-radius: 100%;
    width: 75px;
    height: 75px;
    object-fit: cover;
}
.testimonials .testi .item .profile .information {
    padding-left:20px;
    margin-bottom:15px;
}
.testimonials .testi .item .profile .information .stars i {
    color:#ffd832;
}
.testimonials .testi .item .profile .information p {
    font-size: 24px;
    margin: 0px auto 0px;
    color: var(--col-blue-two);
    font-weight: 600;
    line-height: 1;
}
.testimonials .testi .item .profile .information span {
    color: var(--col-gold-dark);
    font-weight: 600;
    margin-top: -4px;
    line-height: 1.6em;
    font-size: 14px;
}
.testimonials .testi .item>p {
    margin-bottom: 15px;
    font-size: 17px;
    display: block;
    z-index: 2;
    font-style: italic;
}
.testimonials .testi .item .icon {
    text-align: center;
}
.testimonials .testi .item .icon i {
    font-size: 40px;
    margin-top: 20px;
    color: var(--col-blue-two);
}
/* ---------------------------------------------------------- section seven */
.section-seven {
    padding-top: 0;
    background-color: #f1f1f1;
}
.news {
    padding: 50px 0;
    font-family: 'Montserrat', sans-serif;
}
.news .news-card {
    background-color: #ffffff;
    border-radius: 8px;
    border-color: transparent;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
    margin: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.news .news-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.news .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 0;
}
.news .news-card:hover .news-image img {
    transform: scale(1.05);
}
.news .news-card .card-body {
    padding: 20px;
}
.news .news-card .card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
.news .news-card .card-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 12px;
}
.news .news-card .card-text {
    color: #555;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}
.news .btn-read-more {
    background-color: #182536;;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}
.news .btn-read-more:hover {
    text-decoration: none;
}
.news .btn-general {
    font-size: 16px;
    color: #ffffff;
    background-color: var(--col-txt-dark);
    border: 4px solid var(--col-txt-dark);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.news .btn-general:hover {
    border: 4px solid var(--col-txt-dark);
    background-color: white;
    color: var(--col-txt-dark);
    transform: translateY(-3px);
}
/* ---------------------------------------------------------- footer */
.footer{
    border-top: 10px solid var(--col-gold-dark);
    background-color: #182536;
    color: #fff;
    padding: 50px 50px 28px 50px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.up-title-footer{
    font-family: 'Josefin+Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--col-gold-dark);
    margin-bottom: 50px;
}
.subtitle-footer{
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin: 0 400px 50px 400px;
}
.title-footer{
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 40px;
}
.hr-footer {
    border-color: #fff;
    margin: 20px 0;
}
.info-footer{
    text-align: left;
}
.link-footer{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.title-partners-footer{
    margin-bottom: 30px;
}
.partners-footer{
    display: none;
}
.partners-footer-mobile{
    display: flex;
    margin-bottom: 50px;
}
.btn-gold{ 
    background-color: var(--col-gold-dark);
    border: 2px solid var(--col-gold-dark);
    color: #fff;
    font-size: 24px;
    padding: 10px 50px;
    margin-bottom: 50px;
}
.btn-gold:hover{ 
    background-color: transparent;
    border: 2px solid var(--col-gold-dark);
    color: var(--col-gold-dark);
}
.header-mobile {
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 70px;
    background: #fff;
    border-bottom: 3px solid var(--col-grey);
    padding: 10px;
}
.header-mobile .toggle-btn {
    position: absolute;
    right: 10px;
    width: 45px;
    top: 7px;
    cursor: pointer;
}
.header-mobile span {
    position: relative;
    top: 0px;
    display: block;
    background: #8d8d8d;
    width: 80%;
    height: 5px;
    margin: 9px 0px;
    border-radius: 10px;
}
.header-mobile .toggle-btn.active span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
    transition: top 200ms ease-in-out 0ms,transform 250ms ease-in-out 150ms;
}
.header-mobile .toggle-btn.active span:nth-child(3) {
    top: -15px;
    transform: rotate(-45deg);
    transition: top 200ms ease-in-out 0ms,transform 250ms ease-in-out 150ms;
}
.header-mobile .toggle-btn.active span:nth-child(2) {
    opacity: 0;
    transition: opacity 50ms ease-in-out 150ms;
}
.header-mobile .toggle-btn span:nth-child(1),
.header-mobile .toggle-btn span:nth-child(3) {
    transition: transform 250ms ease-in-out 0ms,top 200ms ease-in-out 150ms;
}
.header-mobile .toggle-btn span:nth-child(2) {
    opacity: 1;
    transition: opacity 50ms ease-in-out 200ms;
}
.sidebar {
    position: fixed;
    top: 65px;
    right: -100%;
    width: 100%;
    height: calc(100% - 55px);
    background: #222222;
    padding: 15px;
    opacity: 0;
    transition: all 450ms ease-in-out;
    z-index: 10000000 !important;
}
.sidebar .item {
    font-size: 22px;
    color: #fafafa;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px 5px;
    border-bottom: 1px solid #4b4a4a;
    cursor: pointer;
}
.sidebar.active {
    opacity: 1;
    right: 0px;
}
/* .header-desktop {
    height: 150px;
    width: 100%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.header-desktop .navbar-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
}
.header-desktop .navbar-wrapper img{
    height: 120px;
}
.header-desktop .navbar-wrapper .menu-section{
    display: flex;
    flex-direction: column;
    align-items: end;
}
.header-desktop .navbar-wrapper .menu-section .primary-menu{
    font-size: 20px;
}
.header-desktop .navbar-wrapper .menu-section .secondary-menu{
    font-size: 16px;
}
 */
.header-desktop .nav-link.active{
    position: relative;
}
.header-desktop .nav-link.active::before {
    content: "";
    position: absolute;
    top: 90%; 
    left: 8px; 
    width: 40%;
    border-bottom: 3px solid #696969;
}

 section.about {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.5);
}

section.about p {
    color: white;
    line-height: 1.5;
    margin-bottom: 25px;
}

.title__big {
    font-size: 35px;
    font-weight: 500;
    color: white;
}







.rentist-logo{
    max-width: 120px;
}

/* --------------------------------------------------- */
/* ------------------- MEDIA QUERY ------------------- */
/* --------------------------------------------------- */


/* ---------------- MOBILE VERSION ---------------- */
@media (min-width: 300px) and (max-width: 575px) { 
    /* ---------------------------------------------------- navbar start */
    /* .navbar-brand img {
        max-width: 150px ;
    } */
    /* ---------------------------------------------------- section zero */
    .col-img-column-uno {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 4px !important;
    }
    .col-img-column-dos {
        padding-left: 0 !important;
        padding-top: 0 !important;
        padding-right: 2px !important;
    }
    .col-img-column-tres {
        padding-right: 0 !important;
        padding-top: 0 !important;
        padding-left: 2px !important;
    }
    .col-img-column-uno img {
        border-radius: 0 !important;
    }
    .col-img-column-dos img {
        border-radius: 0 !important;
    }
    .col-img-column-tres img {
        border-radius: 0 !important;
    }
    /* ----------------------------------------------------- section one */
    .section-one {
        margin-bottom: 0 !important;
    }
    .section-one .section-title {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .columna-enumerada {
        margin-bottom: 50px;
        padding: 0 !important;
    }
    .title-parrafo-enumerado{
        font-size: 1.1rem;
    }
    .txt-parrafo-enumerado{
        margin-left: 0px !important;
        font-size: 17px;
    }
    .circle-number {
        margin-left: 0px;
    }
    /* ----------------------------------------------------- section two */
    .section-two {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-two-columna{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .section-two-number{
        margin-bottom: 0;
    }
    /* --------------------------------------------------- section three */
    .section-three{
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .section-three .section-subtitle{
        font-size: 16px;
        margin-top: 10px;
    }
    /* --------------------------------------------------- section four */
    .section-four{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .first-colmn {
        padding-left: 0;
    }
    .txt-faq-one,
    .txt-faq-two{
        font-size: 16px;
    }
    .txt-faq-two{
        margin-right: 20px;
    }
    /* --------------------------------------------------- section five */
    .title-box{
        max-width: 380px;
    }
    .section-five-title{
        font-size: 18px;
    }
    .section-five-row{
        display: none;
    }
    .section-five-row-mobile{
        display: flex;
    }
    /* --------------------------------------------------------- section seven */
    .section-seven .section-title{
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }
    /* --------------------------------------------------------- footer */
    .footer{
        padding-left: 20px;
        padding-right: 20px;
    }
    .title-footer {
        font-size: 25px;
    }
    .subtitle-footer {
        margin:0 0 50px 0;
        font-size: 17px;
    }
    .info-footer,
    .link-footer{
        font-size: 14px;
    }
}

@media (min-width: 300px) and (max-width: 400px) {
    /* ------------------------------------------------------- general */
    /* -------------------------------------------------------- navbar */
    /* .navbar-brand img {
        max-width: 150px !important;
    } */
    /* --------------------------------------------------- section two */
    .section-two {
        text-align: center;
    }
    .section-two-columna img {
        display: block;
        margin: 0 auto;
        text-align: center;
    }  
    .section-two-number {
        text-align: center;
        font-size: 3rem;
    }
    .section-two-text {
        text-align: center;
        font-size: 1rem;
    }
    /* ------------------------------------------------ section three */
    .section-three .card-body{
        padding: 10px;
    }
    .section-three .card-title{
        font-size: 20px;
    }
    .display-mobile-col{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .progress-bar-text-one span {
        display: none;
    }
    .txt-box-one{
        font-size: 14px;
    }
    .txt-box-two{
        font-size: 20px;
    }
    .row-card-data-boxes{
        margin-bottom: 15px !important;
    }
    .section-three .btn-blue span{
        display: none;
    }
    /* ------------------------------------------------ section five */
    .title-box{
        max-width: 310px;
    }
    .section-five-title{
        font-size: 16px;
    }
}

@media (min-width: 400px){
    .section-five-title{
        letter-spacing: 6px;
    }
}

@media (min-width: 400px) and (max-width: 575px) {
    .section-title{
        font-size: 27px;
        line-height: 35px;
    }
    .section-banner{
        padding: 0 40px;
    }
    /* --------------------------------------------------- section two */
    .section-two-columna {
        overflow: hidden;
        position: relative;
    }
    .section-two-number {
        text-align: right;
        font-size: 3rem;
        margin-bottom: 0;
        margin-right: 140px;
    }
    .section-two-text {
        text-align: right;
        font-size: 1rem;
        margin-right: 140px; 
    }
    .section-two-columna img {
        float: right;
        margin-right: 5%;
        margin-left: 5%;
    }
    /* ---------------------------------------------------- section three */
    .display-mobile-col{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /* --------------------------------------------------- section five */

    /* --------------------------------------------------- section seven */
    .section-seven .section-title{
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }

    /* --------------------------------------------------- section banner */
    .section-banner-title{
        min-height: 260px;
    }
    .col-banner-uno .texto-uno-title{
        font-size: 43px;
    }
    .col-banner-uno .texto-dos-title{
        font-size: 39px;
    }
    .col-banner-uno .texto-dos-subtitle{
        font-size: 20px;
    }
    .col-banner-uno .texto-tres-title{
        font-size: 41px;
    }
    .box-banner-list ul {
        font-size: 18px;
    }
    .btn-banner h4{
        font-size: 20px;
    }
    /* ------------------------------------------------------- footer */
    .link-footer{
        font-size: 15px;
    }
}

/* --------------- TABLET VERSION --------------- */
@media (min-width: 576px) and (max-width: 767px) { 
    .section-title{
        font-size: 30px;
        line-height: 40px;
    }
    .section-subtitle {
        font-size: 19px;
    }
    /* --------------------------------------------------- section banner */
    .section-banner{
        margin-bottom: 0px;
    }
    .section-banner-title{
        min-height: 260px;
    }
    .col-banner-uno .texto-uno-title{
        font-size: 49px;
    }
    .col-banner-uno .texto-dos{
        font-size: 49px;
        line-height: 56px;
    }
    .col-banner-uno .texto-dos-title{
        font-size: 49px;
        line-height: 56px;
    }
    .col-banner-uno .texto-dos-subtitle{
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 28px;
    }
    .col-banner-uno .texto-tres-title{
        font-size: 41px;
    }
    .box-banner-list{
        border: 2px solid var(--col-gold-dark);
        border-radius: 10px;
        padding:30px 20px 20px 30px;
        margin-bottom: 40px;
    }
    .box-banner-list ul {
        font-size: 17px;
    }
    .box-banner-list ul li {
        margin-bottom: 20px;
    }
    .btn-banner{
        padding: 25px 10px 20px 10px;
        margin-top: 10px ;
    }
    .btn-banner h4{
        font-size: 24px;
    }
    .btn-banner p{
        font-size: 18px;
    }
    /* --------------------------------------------------- section zero */
    .section-zero{
        padding-top: 40px;
        padding-bottom: 30px;
    }
    /* ---------------------------------------------------- section one */
    .section-one .section-title {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .div-columnas-enumeradas{
        margin-top: 0px;
        margin-bottom: 80px;
    }
    .txt-parrafo-enumerado {
        font-size: 18px;
    }
    /* ---------------------------------------------------- section two */
    .section-two{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-two-columna {
        overflow: hidden;
        position: relative;
    }
    .section-two-number {
        text-align: right;
        font-size: 3rem;
        margin-bottom: 0;
        margin-right: 140px;
    }
    .section-two-text {
        text-align: right;
        font-size: 1rem;
        margin-right: 140px; 
    }
    .section-two-columna img {
        float: right;
        margin-right: 5%;
        margin-left: 5%;
    }
    /* -------------------------------------------------- section three */
    .section-three{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    /* --------------------------------------------------- section four */
    .section-four{
        padding-top: 80px;
        padding-bottom: 120px;
    }
    /* --------------------------------------------------- section five */
    .section-five{
        padding-top:120px
    }
    .section-five-row{
        display: none;
    }
    .section-five-row-mobile{
        display:flex;
    }
    /* ---------------------------------------------------- section six */
    .section-six .section-title{
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }
    /* ---------------------------------------------------- section six */
    .section-seven .section-title{
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }
    /* --------------------------------------------------------- footer */
    .title-footer {
        font-size: 30px;
    }
    .subtitle-footer {
        margin:0 0 50px 0;
    }
}

@media (max-width: 767px) {
    .img-card-desktop {
        height: 200px; 
    }
    
}

/* --------------- DESKTOP VERSION --------------- */
@media (min-width: 768px) { 
    .section-title{
        font-size: 30px;
        line-height: 40px;
    }
    .section-subtitle {
        margin-bottom: 60px;
    }
    /* --------------------------------------------------- section zero */
    .img-column {
        height: 500px;
    } 
    /* --------------------------------------------------- section one */
    .section-one .section-title {
        margin-top: 80px;
        margin-bottom: 50px;
    }
    .txt-parrafo-enumerado {
        font-size: 18px;
    }
    /* --------------------------------------------------- section two */
    .section-banner{
        margin-top: 100px;
    }
    /* --------------------------------------------------- section two */
    .section-two{
        background-color:var(--col-blue-dark);
        height: 250px;
        border-bottom: 10px solid var(--col-gold-dark);
        padding-top: 100px;
        padding-bottom: 160px;
        margin-top: 100px;
    }
    .section-two-columna {
        display: flex;
        justify-content: center;
        position: relative;
    }
    .section-two-columna img{
        position:absolute;
        top:-150px;
        margin: auto;
    }
    .section-two-number {
        position:absolute;
        top:-20px;
        text-align: center;
        font-size: 3rem;
    }
    .section-two-text {
        position:absolute;
        top:50px;
        text-align: center;
        font-size: 1rem;
    }
    /* -------------------------------------------------- section three */
    .img-card-desktop {
        height: 300px;
    }
    .image-card-container-mobile {
        max-width: 700px;
        height: 400px;
    }
    /* -------------------------------------------------- section six */
    .section-six .section-title{
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }
    /* -------------------------------------------------- section seven */
    .section-seven .section-title{
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) { 
    /* --------------------------------------------------- section banner */
    .section-banner-title{
        min-height: 230px;
    }
    .col-banner-uno .texto-uno-title{
        font-size: 56px;
    }
    .col-banner-uno .texto-dos{
        font-size: 47px;
        line-height: 56px;
    }
    .col-banner-uno .texto-dos-title{
        font-size: 47px;
        margin-bottom: 35px;
    }
    .col-banner-uno .texto-dos-subtitle{
        font-size: 24px;
        margin-bottom: 40px;
    }
    .col-banner-uno .texto-tres-title{
        font-size: 47px;
    }
    .box-banner-list{
        border: 2px solid var(--col-gold-dark);
        border-radius: 10px;
        padding:30px 30px 20px 30px;
        margin-bottom: 40px;
    }
    .box-banner-list ul {
        font-size: 22px;
    }
    .box-banner-list ul li {
        margin-bottom: 20px;
    }
    .btn-banner{
        padding: 25px 10px 20px 10px;
        margin-top: 10px ;
    }
    .btn-banner h4{
        font-size: 28px;
        letter-spacing: 4px;
    }
    .btn-banner p{
        font-size: 18px;
        letter-spacing: 4px;
    }
    /* --------------------------------------------------- OTHERS */
    .img-partner-trustpilot{
        max-width: 160px;
    }
    .img-partner-coinbase,
    .img-partner-moonpay{
        max-width: 140px;
    }
    .img-partner-veriff{
        max-width: 110px;
    }
    .title-footer {
        font-size: 40px;
    }
    .subtitle-footer {
        margin:0 0 50px 0;
    }
}

@media (max-width: 991px) {
    .section-four-title{
        margin-bottom: 55px;
    }
}

@media (max-width: 1199px){
    .rentist-logo {
        max-height: 45px;
    }
}

@media (min-width: 992px ) and (max-width: 1199px) {  
     /* --------------------------------------------------- section banner */
     .col-banner-uno .texto-uno-title{
        text-align: left;
        font-size: 52px;
    }
    .col-banner-uno .texto-dos-title{
        text-align: left;
        font-size: 45px;
        margin-bottom: 35px;
        margin-top: 0px;
    }
    .col-banner-uno .texto-dos-subtitle{
        text-align: left;
        font-size: 24px;
        margin-bottom: 40px;
    }
    .col-banner-uno .texto-tres-title{
        text-align: left;
        font-size: 43px;
    }
    .box-banner-list{
        margin-bottom: 40px;
    }
    .box-banner-list ul {
        font-size: 17px;
    }
    .box-banner-list ul li {
        margin-bottom: 20px;
    }
    .btn-banner{
        padding: 20px 10px 16px 10px;
        margin-top: 10px ;
    }
    .btn-banner h4{
        font-size: 21px;
    }
    .btn-banner p{
        font-size: 15px;
    }
    /* --------------------------------------------------- SECTION THREE */
    .card-atributos {
        font-size: 16px;
    }
    .section-three .btn-blue {
        padding: 22px 5px;
        font-size: 17px;
    }
    .section-three .btn-blue span{
        display: none;
    }
    /* --------------------------------------------------- OTHERS */
    .section-four .first-colmn{
        padding-right: 40px;
    }
    .subtitle-footer{
        font-size: 22px;
        margin: 0 100px 50px 100px;
    }
}

@media (min-width: 992px) {
    .col-banner-uno .texto-uno,
    .col-banner-uno .texto-dos,
    .col-banner-uno .texto-tres{
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    .section-banner-title{
        display: block;
        min-height: auto;
    }
    .info-row{
        margin-bottom: 0 !important;
    }
    .partners-footer{
        display: flex;
        justify-content: center;
        align-items: center;
        filter: grayscale(100%) brightness(0) invert(1);
        margin-bottom: 50px;
    }
    .partners-footer-mobile{
        display: none;
    }
}

@media (max-width: 1199px) {
    .btn-socios {
        display: none;
    }
    .display-desktop{
        display: none;
    }
    .div-btns{
        display: inline;
    }
    .section-four .first-colmn{
        padding-right: 0;
        margin-bottom: 50px;
    }
}

@media (min-width: 1200px) {
    /* --------------------------------------------------- section banner */
    .section-banner{
        margin-top: 50px;
        margin-bottom: 50px;
    }
     .col-banner-uno .texto-uno-title{
        text-align: left;
        font-size: 53px;
    }
    .col-banner-uno .texto-dos-title{
        text-align: left;
        font-size: 60px;
        margin-bottom: 35px;
        margin-top: 0px;
    }
    .col-banner-uno .texto-dos-subtitle{
        text-align: left;
        font-size: 24px;
    }
    .col-banner-uno .texto-tres-title{
        text-align: left;
        font-size: 51px;
    }
    .box-banner-list{
        margin-bottom: 40px;
    }
    .box-banner-list ul {
        font-size: 18px;
    }
    .box-banner-list ul li {
        margin-bottom: 20px;
        padding-left: 50px;
    }
    .btn-banner h4{
        font-size: 24px;
    }
    .btn-banner p{
        font-size: 18px;
    }
    /* --------------------------------------------------- OTHERS */
    .btn-blue {
        padding: 35px 5px;
    }
    .card-two .btn-blue{
        padding:10px 5px;
    }
    /* --------------------------------------------------- OTHERS */
    .btn-socios {
        display: block;
    }
    /* scrollbar start */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #f1f1f1; 
    }
    ::-webkit-scrollbar-thumb {
        background: #a79580; 
        border-radius: 10px;
    }    
    ::-webkit-scrollbar-thumb:hover {
        background: #555; 
    }
    /* scrollbar end */
    .box-title-page{
        margin-top: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) { 
    body{
        font-size: 17px;
    }
    .btn-banner{
        padding: 20px 10px 15px 10px;
        margin-top: 10px;
        margin-left: 65px;
        max-width: 490px;
    }
    .subtitle-footer{
        font-size: 22px;
        margin: 0 200px 50px 200px;
    }
    /* --------------------------------------------------- SECTION THREE */
    .section-three .btn-blue {
        padding:21px 0;
    }
}

@media (min-width: 1200px) { 
    .rentist-logo{
        max-width: 160px;
    }
    .col-banner-uno .texto-uno-title{
        font-size: 53px;
    }
    .txt-parrafo-enumerado {
        padding: 0 10px;
    }
    .section-two-text,
    .testimonials .testi .item>p{
        font-size: 17px;
    }
    .info-footer{
        font-size: 14px;
    }
}

@media (min-width: 1400px) { 
    body{
        font-size: 19px;
    }
    .btn-banner{
        margin-left: 74px;
        max-width: 500px;
    }
}

/* ------------------- DISPLAYS ------------------- */
@media (min-width: 300px ) and (max-width: 768px) { 
    .display-tablet{
        display: none;
    }
}

@media (min-width: 992px ) { 
    .display-mobile{
        display: none;
    }
    .display-tablet{
        display: none;
    }
    .display-desktop{
        display: block;
    }
    .img-card-desktop {
        height: 300px; 
    }
    .list-banner-p{
        padding-left: 15px;
    }
    .img-banner{
        margin: 0 auto;
        display: block;
        max-width: 40px;
    }
}

@media (max-width: 1199px ) { 
}

@media (min-width: 1200px ) { 
    .header-mobile{
        display: none !important;
    }
    .header-desktop{
        background-color: #fff;
    }
}

@media (max-width: 1199px ) { 
    .header-desktop{
        display: none !important;
    }
}

@media (min-width:1400px){
    .btn-blue {
        padding: 24px 5px;
    }
    .card-two .btn-blue{
        padding:10px 5px;
    }
}



.owl-item:hover{
    cursor: pointer;
}

.nav-link.activo {
    color: #325687;
    font-weight: 600;
}

.section-banner-title div {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.section-banner-title div.active {
  display: block;
  opacity: 1;
}


/* --------------------------------------------------- NOTICIAS DETALLE */
.news-detail {
    padding: 50px 0;
    font-family: 'Montserrat', sans-serif;
}
.news-detail .back {
    margin: 15px;
    color: var(--col-gold-dark);
    text-decoration: none;
}
.news-detail .news-card {
    background-color: #F1F1F1;
    border-radius: 8px;
    border-color: transparent;
    overflow: hidden;
    margin: 15px;
}

.news-detail .news-image {
    width: 100%;
    height: calc(80vh - 200px) ;
    overflow: hidden;
}
.news-detail .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.news-detail .news-card .card-body {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
}
.news-detail .news-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}
.news-detail .news-card .card-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 12px;
}
.news-detail .news-card .card-text {
    color: #555;
    margin-top: 1rem;
    font-size: 1rem;
    text-align: left;
    line-height: 25px;
}

/**** Whatsapp **/
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}

/* Estilo para la ventana emergente */
.popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #e5ddd5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.popup-header {
    background: #25d366;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.chat-title {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.popup-body {
    padding: 15px;
    background-color: #ffffff;
    overflow-y: auto;
    max-height: 150px;
    display: flex;
    flex-direction: column;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
    font-size: 14px;
}

.message.received {
    background-color: #dcf8c6;
    align-self: flex-start;
}

.popup-footer {
    background: #f1f1f1;
    padding: 10px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.chat-button {
    display: inline-block;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    transition: background 0.3s;
}

.chat-button:hover {
    background: #1da851;
}
#close-popup{
    cursor: pointer;
}

footer.footer-section {
    background: #202020;
    background-image: linear-gradient(to right, #252525 50%, #1C1C1C 50%);
    color: #fff;
}
footer.footer-section ul {
    padding-left: 0;
}

footer.footer-section ul li {
    list-style: none;
}

footer.footer-section ul li a {
    color: #969696;
    text-decoration: none;
}

footer .social {
    color: #969696 !important;
}

footer .social a {
    color: #969696 !important;
}

footer.footer-section .legal-section  {
    background-color: #121212;
    font-size: 18px;
}

footer.footer-section .newsletter  {
    background-color: #1C1C1C;
}

footer.footer-section .newsletter .form-check  {
    font-size: 13px;
    color: white;
}

footer.footer-section .newsletter a:link  {
    color: white;
}

@media only screen and (max-width: 767px) {
    footer.footer-section   {
        background: #1C1C1C;
    }
}








