body {
    margin: 0 !important;
    padding: 0 !important;
}

body,
html {
    font-family: Montserrat, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
div,
button,
input,
textarea {
    font-family: inherit;
}

header {
    background: white !important;
    color: white;
    padding: 1rem;
    text-align: center;
}


#logoHeader {
    width: 175px;
    height: 65px;
}

.navbar {
    background-color: none !important;
}

#navbarNav {
    justify-content: end;
}

.navbar-nav {
    gap: 20px;
}


/* .nav-link {
    color: white !important;
} */

.nav-link.active {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: #B92425;
    text-underline-offset: 5px;
}


.main-page {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

section {
    padding: 10px 0px;
}


footer {
    background: #474747 !important;
    color: white;
    text-align: center;
    padding: 60px 80px;
    bottom: 0;
    width: 100%;
    /* position: fixed; */
}

#logoFooter {
    width: 168px;
    height: 55px;
    text-align: left;
}


.footerText {
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.29px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.whiteLine {
    margin-right: 10px;
}


.vertical-menu {
    width: 200px;
    padding: 20px;
    border-radius: 10px;
}

.vertical-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vertical-nav-item {
    text-align: left;
}

.vertical-nav-link {
    display: block;
    color: gainsboro;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 1px 20px;
    /*border-radius: 5px;*/
    transition: all 0.3s ease;
    margin-left: 10px;
    border-left: 3px solid #fff;
}


    .vertical-nav-link.active,
    .vertical-nav-link:hover {
        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-decoration-color: white;
        color: white;
        text-underline-offset: 5px;
    }


.image-container {
    height: 300px; /* Set desired height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .image-container img {
        height: 100%;
        width: auto;
    }

.socialIcon {
    width: 47px;
    height: 47px;
}


.footerIconsContainer {
    padding: 10px 0px;
    justify-content: center;
}

.socialTitle {
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    text-align: left;
    align-items: center;
    color: white;
    padding: 30px 40px 10px;
}

.textarea-no-resize {
    resize: none;
}

.carousel-indicators button {
    width: 15px !important;
    height: 15px !important;
    background-color: #ccc;
    border-radius: 100% !important;
    border: none;
    margin: 0px 0px;
}

.carousel-indicators .active {
    background-color:white;
    /* Customize the active indicator color */
}

.carousel-caption {
    position: absolute;
    /*bottom: 10%;*/
    /*left: 50%;*/
    transform: translateY(-30%);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

    .carousel-caption > h5 {
        font-size: 2.2rem;
        font-weight: bold;
    }

    .carousel-caption > p {
        font-size: 2rem;
    }

.carousel-item > img {
    object-fit: cover;
}


.sideLeft {
    margin-left: 0px !important;
    padding-left: 0px !important;
    margin-right: 0px !important;
    padding-right: 0px !important;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100vh;
}

.leftContent {
    padding: 40px !important;
}

.leftCards {
    /*padding: 90px 0px 40px 0px !important;*/ /*top-right-bottom-left*/
    padding: 0px 0px 40px 0px !important; /*top-right-bottom-left*/
    /*min-height: 400px;*/
    margin: 0px !important;
}

.cardContent {
    padding: 6px !important;
    min-height: 260px;
}

.cardContactForm {
    padding: 6px !important;
}

/*.containerLogos {
    padding: 0px 130px;

}*/
.cardsRow {
    position: relative;
}

.card-container {
    perspective: 1000px;
}


.card {
    border: none !important;
    border-radius: 25px !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px !important;
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.cardOurCompany {
    border: none !important;
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.card-front {
    background-color: #ffffff;
    color: #000;
    padding: 30px;
}

.card-back {
    background-color: white;
    color: #fff;
    transform: rotateY(180deg);
    padding: 30px;
}


.card-container:hover .card,
.card-container:focus .card,
.card-container:active .card {
    transform: rotateY(180deg);
}

/* Flip the card */
.card-container.flip .card {
    transform: rotateY(180deg);
}


.cardsTitles {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 18.41px;
    text-align: center;
    align-items: center;
    color: black;
    text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2) !important;
}

    .cardsTitles.down {
        padding: 10px;
    }

.cardsParagraphs {
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 15.41px;
    text-align: center;
    align-items: center;
    color: black;
    text-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.cardsParagraphsRed {
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 0px;
    text-align: center;
    align-items: center;
    color: #B92425;
    margin-top: 10px;
}

.cardsParagraphs {
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 15.41px;
    text-align: center;
    align-items: center;
    color: black;
    text-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.cardsIcons {
    width: 70px;
    height: 70px;
}

.cardIconContainer {
    padding: 10px 0px 25px !important;
}

.redLine {
    width: 12px;
    height: 2px;
}


.redLineContainer {
    padding: 10px 0px !important;
}

/*.sliderLogos {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}*/

/*.logos {
    display: flex;
    animation: slide 60s linear infinite;
}*/

/*.logos img {
    max-height: 50px;
    margin: 0 20px;
}*/

/*.logos.duplicate {
    margin-left: -1%;
}*/


@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/**/

.logos {
    overflow: hidden;
    padding: 0px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

    .logos:before,
    .logos:after {
        position: absolute;
        top: 0;
        width: 250px;
        height: 100%;
        content: "";
        z-index: 2;
    }

    .logos:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    }

    .logos:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    }

    .logos:hover .logos-slide {
        animation-play-state: paused;
    }

.logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
}

    .logos-slide img {
        height: 50px;
        margin: 0 40px;
    }

/**/

.logos-red {
    overflow: hidden;
    padding: 0px 0;
    background: #b92425;
    white-space: nowrap;
    position: relative;
}

    .logos-red:before,
    .logos-red:after {
        position: absolute;
        top: 0;
        width: 250px;
        height: 100%;
        content: "";
        z-index: 2;
    }

    .logos-red:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), #b92425);
    }

    .logos-red:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), #b92425);
    }

    .logos-red:hover .logos-slide-red {
        animation-play-state: paused;
    }

.logos-slide-red {
    display: inline-block;
    animation: 35s slide infinite linear;
}

    .logos-slide-red img {
        height: 50px;
        margin: 0 40px;
    }

.InformacionServiciosTitle {
    font-family: inherit;
    font-size: 19px;
    font-weight: 600;
    line-height: 15px;
    text-align: center;
    align-items: center;
    color: #B92425;
}

.InformacionServiciosTexto {
    font-family: inherit;
    font-size: 13px;
/*    font-weight: 600;
    line-height: 15px;
    text-align: center;
    align-items: center;
    color: #B92425;*/
}

/**/

.clientsTitle {
    font-family: inherit;
    font-size: 19px;
    font-weight: 600;
    line-height: 15px;
    text-align: center;
    align-items: center;
    color: #B92425;
    padding: 0px 0px 45px;
}

.contactHome {
    padding: 0px !important;
    margin: 0px !important;
    max-width: inherit !important;
    padding: 30px !important;
}

.contactFormHome {
    padding: 30px !important;
    background-color: #7C7C7C !important;
    border-radius: 0px 25px 25px 0px; /*top-left corner, second value applies to top-right corner, third value applies to bottom-right corner, and fourth value applies to bottom-left corner*/
}

.ourCompany {
    /*    margin-top: -50px !important;*/
    margin: 0px !important;
    max-width: inherit !important;
    padding: 30px !important;
}

.textAboutCont {
    padding: 30px !important;
    /*background-color: #7C7C7C !important;*/
    border-radius: 0px 25px 25px 0px; /*top-left corner, second value applies to top-right corner, third value applies to bottom-right corner, and fourth value applies to bottom-left corner*/
}

.controlContact {
    border-radius: 25px !important;
    background-color: #AAAAAA !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px !important;
    font-size: 12px !important;
}

    .controlContact::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: white !important;
        opacity: 1;
        /* Firefox */
    }

.formTitle {
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    line-height: 15px;
    text-align: left;
    align-items: center;
    /* color: #B92425; */
    color: white;
    padding: 20px 0px 20px;
}

.contactButtonContainer {
    padding: 30px 0px;
}

.btnContactForm {
    width: 50%;
    background-color: #B92425 !important;
    border: none !important;
    border-radius: 25px !important;
    font-family: inherit;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 10px !important;
}

.sideRight {
    background-color: #474747;
    height: 100vh;
    overflow-y: hidden;
    padding: 0px 25px !important;
    align-content: center;
}

.rightIcons {
    width: 25px;
    height: 25px;
}

.rightIconsContainer {
    padding: 30px 0px 0px;
}

.btnRightSideContainer {
    padding-top: 25px;
}

.btnRightSide {
    font-family: inherit;
    font-size: 15px !important;
    font-weight: 500 !important;
    background-color: #B92425 !important;
    width: 50%;
    border: none !important;
    border-radius: 25px !important;
}

.rightText {
    font-family: inherit;
    font-size: 10px;
    font-weight: 500;
    line-height: 13.41px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    display: flex;
    align-items: center;
    gap: 5px;
    /* padding-top: 5px; */
    color: white;
}

.rightTitle {
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    line-height: 26.82px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-align: center;
    color: white;
    padding: 40px 0px 30px 0px;
}

/*@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}*/

.imgContactForm {
    position: relative;
    background-image: url('../Imagen/contact/home.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.controlContact {
    border-radius: 20px !important;
    border: none !important;
}

.controlRight {
    border-radius: 25px !important;
    background-color: #7C7C7C !important;
    border: none !important;
    color: white !important;
    padding: 10px 20px !important;
    font-size: 12px !important;
}

    .controlRight::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: white !important;
        opacity: 1;
        /* Firefox */
    }

.formGroupContact {
    padding: 5px 0px;
}

.formGroupContactRL {
    padding: 5px 12px 5px 12px;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;
}


    select.form-control::-ms-expand {
        display: none;
    }


select.form-control {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path fill="none" stroke="%23ccc" stroke-width="2" d="M1 1 L5 5 L9 1"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}

.ourTeam {
    background-color: #7C7C7C;
    padding-top: 33px;
    padding-bottom: 33px;
    margin-bottom: 100px;
    margin-top: 150px !important;
}

.imgContactFormServices {
    position: relative;
    background-image: url('../Imagen/contact/services.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.imgContactFormAbout {
    position: relative;
    background-image: url('../Imagen/contact/about.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.imageAboutCont {
    position: relative;
    background-image: url('../Imagen/about/about.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 500px;
}

.aboutTitle {
    font-family: inherit;
    font-weight: 400 !important;
    font-size: 23px;
    color: #B92425;
    padding-left: 30px;
}

.aboutTitleSub {
    font-family: inherit;
    font-weight: 800 !important;
    font-size: 23px;
    color: #B92425;
    padding-left: 30px;
}

.aboutText {
    font-family: inherit;
    font-weight: 400 !important;
    font-size: 16px;
    color: #7C7C7C;
    padding-left: 30px;
    padding-top: 25px;
    padding-right: 90px;
}

.btnInformacionServicios {
    padding: 6px !important;
}

.centered-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 200px; /* Adjust size as needed */
}

    .centered-button img {
        max-height: 100%;
    }


/* SERVICES */

.sliderCustomerServices {
    /*    margin-left: -20px;
    margin-right: -20px;*/
    background-color: #B92425;
}

.clientsTitle.services {
    color: white;
}


/*.leftCards.services {
    padding-top: 10px;
}*/


.card-services {
    border: none !important;
    border-radius: 25px !important;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px !important;
    width: 100%;
    padding: 30px;
    height: 100%;
    min-height: 500px;
}


.card-services-img {
    height: 174px;
    margin: -30px;
    margin-bottom: 30px;
    border-radius: 20px 20px 0px 0px;
    background-size: cover;
}

.cardsParagraphs.services {
    padding-top: 20px;
    padding-bottom: 20px;
}

.card-services-button {
    width: 100%;
    background-color: #B92425 !important;
    border: none !important;
    border-radius: 24px !important;
    font-size: 13px !important;
    padding: 10px !important;
}




/* ABOUT US */



.teamImage {
    text-align: center;
}

.personImage {
    width: 185px;
    height: 185px;
}

.teamLinkedinIcon,
.teamName,
.teamDescription {
    padding-left: 35px;
    padding-top: 15px;
}

.teamName {
    font-family: inherit;
    font-size: 19px !important;
    font-weight: 600;
    text-align: left;
    color: white;
}

.teamDescription {
    font-family: inherit;
    font-size: 16px !important;
    font-weight: 400;
    text-align: left;
    color: white;
}

.newsContainer {
    height: 430px;
    background-color: #B92425;
    color: white;
}

.textNews {
    padding-left: 60px !important;
}

.colNews {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsInner {
    display: flex;
    width: 100%;
    padding: 80px;
}

.imageNews {
    width: 225px;
    height: 250px;
}

.titleNews {
    font-family: inherit;
    font-size: 23px !important;
    line-height: 20px;
    font-weight: 600;
    text-align: left;
    color: white;
}

.newsP {
    font-family: inherit;
    font-size: 16px !important;
    line-height: 20px;
    font-weight: 400;
    text-align: left;
    color: white;
    padding-top: 40px;
}


/* MODALS SERVICES */

.modalServicesDrop {
    display: flex !important;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

.modalServices {
    margin: 0px !important;
    max-width: 100vw !important;
    justify-content: center;
    flex-direction: column;
}

.modal-content.services {
    width: 70vw;
}

.modal-body.services {
    padding: 30px 30px 50px 30px;
}

.btnModalServices {
    position: relative;
    left: 95%;
    top: 5% !important;
}

.btn-close {
    top: 2% !important;
}

.smallServicesCards {
    width: 70vw;
}

.callModalServices {
    background-color: white;
    border-radius: 20px;
    padding: 22px 65px;
    position: relative;
}

.iconModalServices {
    width: 40px;
    height: 40px;
}

.smallCardsText {
    font-family: inherit;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
    color: #7C7C7C;
}

.betweenCardsText {
    font-family: inherit;
    font-size: 19px;
    line-height: 20px;
    font-weight: 800;
    text-align: center;
    color: white;
    padding: 50px 0px;
}

.modalServicesTitle {
    font-family: inherit;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-align: left;
    color: #B92425;
    padding: 0px 0px 16px;
}

.modalServicesText {
    font-family: inherit;
    font-size: 10px;
    line-height: 20px;
    font-weight: 400;
    text-align: left;
    color: #474747;
    padding: 0px 250px 0px 0px;
}

.btnContactForm.services {
    width: 30%;
}


/* SMALL MODALL CONTACT */


.modal-content.contact {
    width: 30vw;
    border-radius: 25px;
}

.modalContactText {
    font-family: inherit;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    color: #474747;
    padding: 10px 30px 40px;
}

.logoSmallContact {
    width: 170px;
    height: 67px;
}

.logoSmallContactContainer {
    text-align: center;
}

.contactButtonContainer.small {
    text-align: center;
    width: 100%;
    padding-bottom: 0px;
}


/* SMALL SUCCESS */

.modalSuccessTitle {
    font-family: inherit;
    font-size: 23px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    color: #7C7C7C;
    padding: 10px 30px 30px;
}

.modalSuccessText {
    font-family: inherit;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    color: #474747;
    padding: 10px 30px 10px;
}


/* MODAL SANTANDER */


.leftSideText {
    padding: 25px 130px !important;
}

.debtHeader.logosModal {
    display: flex;
}

    .debtHeader.logosModal.right {
        justify-content: right;
        padding: 0px 50px;
    }

    .debtHeader.logosModal.left {
        justify-content: left;
        padding: 0px 50px;
    }

.debtHeader {
    width: 100%;
}

.logoModalDebt {
    width: 175px;
    height: 65px;
}

.modal-content.services.debt {
    width: 90vw;
}

.modal-header.santander {
    background-color: #ED0000;
}

.modal-body.services.santander {
    position: relative;
    background-image: url('../assets/modalSantander/bg.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.colDebt {
    text-align: center;
    justify-content: center;
    display: flex;
}

.debtTitleRow {
    justify-content: center;
    margin-bottom: -20px;
}

.debtTitleCont {
    background-color: #7C7C7C;
    padding: 10px 30px !important;
    width: fit-content !important;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: white;
    border-radius: 15px;
}

.debtBodyCont {
    background-color: white;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: black;
    padding: 35px 0px 10px 0px;
    border-radius: 25px;
}

.btnContactForm.santander {
    background-color: #ED0000;
    width: 100%;
}


.modalDebtContainer {
    background-color: #474747;
    padding: 40px;
    border-radius: 25px;
    width: 60%;
}


.contactButtonContainer.debt {
    padding: 10px 0px;
}

.btnContactForm.santander {
    background-color: #ED0000 !important;
    width: 70%;
}


.debtOffer {
    font-family: inherit;
    color: white;
}

.debtOfferTitle {
    font-size: 23px;
    font-weight: 800;
}

.debtOfferTitleSub {
    font-size: 23px !important;
    font-weight: 600;
}

.debtOfferBody {
    font-size: 15px;
    font-weight: 400;
}

.debtOfferBodyBold {
    font-size: 15px;
    font-weight: 600;
}

.debtTextSmall {
    color: white;
    font-size: 14px;
}

.debtTextSmallBold {
    color: white;
    font-size: 15px;
    font-weight: 600px;
}



/* MODAL ITAU */

.modal-body.services.itau {
    position: relative;
    background-image: url('../assets/modalItau/bg.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btnContactForm.itau {
    background-color: #FF6200 !important;
    width: 70%;
}

.modal-header.itau {
    background-color: #FF6200;
}

.colDebt.itau {
    align-items: center;
}

.debtTextSmallBold.itau {
    font-family: inherit;
    font-weight: 800px !important;
    line-height: 18px;
    padding-bottom: 30px;
}

.logoModalDebtItau {
    width: 77px;
    height: 77px;
}

.smallModalIconsRed {
    width: 25px;
    height: 25px;
}

.smallModalIconsRedRow {
    text-align: center;
    padding: 50px 20px 30px;
}

.wspIcon {
    width: 80px;
    height: 45px;
    position: absolute;
    bottom: 40px;
    right: 30px;
    z-index: 9999 !important;
    transition: transform 0.3s ease-in-out;
}

    .wspIcon:hover {
        transform: scale(1.2);
    }

/*.leftCards {
    display: flex;
    flex-wrap: wrap;
}*/

/*.cardContent {
    display: flex;
    flex-direction: column;
    height: 100%;
}*/

.card-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-services-button-container {
    margin-top: auto;
}

/*******************************************************/

.modal-pop1 {
    z-index: 2000 !important;
    overflow: hidden;
    overflow-y: scroll !important;
}

.card-landing {
    z-index: 1;
    background-color: white;
    box-shadow: 0px 4px 20px #00000040;
    position: relative;
    margin: auto;
    max-width: 80%;
}

.card-landing-login {
    width: 350px !important;
}

.boton-cover {
    font-family: inherit;
    font-size: 15px !important;
    font-weight: 500 !important;
    background-color: #B92425 !important;
    border: none !important;
    border-radius: 25px !important;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(200,200,200,1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #dc534f;
    -webkit-box-shadow: inset 0 0 6px rgba(185, 36, 37,0.7);
}

/*******************************************************/

/*CUANDO section ACHICA LA PANTALLA*/
@media (min-width: 992px) { /*768px*/
    .navMobile {
        display: none !important;
        visibility: hidden;
        height: 0px;
    }

    .ourTeam {
        margin-top: 150px !important;
    }

    .teamRow {
        justify-content: center;
        padding: 32px 120px !important;
    }
}

@media (max-width: 992px) {

    .navWeb {
        display: none !important;
    }

    .leftContent {
        padding: 0px !important;
    }

    .navMobile {
        display: block;
        position: relative;
        top: -65px;
        background: none !important;
    }

    #navbarSupportedContent {
        padding-top: 20px !important;
    }

    .sideRight {
        height: 100%;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .nav-link {
        color: white !important;
    }

    .navbar-nav.me-auto {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    #carouselExampleIndicators {
        margin-top: -70px;
    }

    #carouselExampleIndicatorsAbout {
        margin-top: -70px;
    }

    .carousel-item > img {
        height: 250px;
        object-fit: cover;
    }


    .carousel-caption {
        position: absolute;
        /*bottom: 20%;
        left: 50%;*/
        transform: translateY(-30%);
        font-size: 15px !important;
    }

        .carousel-caption > h5,
        .carousel-caption > p {
            font-size: 25px !important;
        }

    .leftCards {
        max-width: inherit !important;
        /*margin: 0 auto;*/ /* Center the section */
        padding: 30px !important; /*top right bottom left*/
        min-height: 400px;
    }

    /*    .containerLogos {
        padding: 0px 30px;
    }*/

    .btnContactForm {
        width: 100%;
    }

    /*    .contactHome {
        max-width: inherit !important;
        padding: 30px !important;
    }
*/

    .imgContactForm,
    .imgContactFormServices,
    .imgContactFormAbout,
    .imageAboutCont {
        display: none;
    }

    .contactFormHome {
        border-radius: 25px 25px 25px 25px; /*top-left corner, second value applies to top-right corner, third value applies to bottom-right corner, and fourth value applies to bottom-left corner*/
    }

    .textAboutCont {
        border-radius: 25px 25px 25px 25px; /*top-left corner, second value applies to top-right corner, third value applies to bottom-right corner, and fourth value applies to bottom-left corner*/
    }

    footer {
        padding: 60px 40px;
    }

    .footerText {
        text-align: center !important;
    }

    .socialTitle {
        line-height: 0px;
        padding: 30px 40px 0px;
    }

    .socialIcon {
        width: 42px;
        height: 42px;
    }

    /* SERVICES */

    /*    .leftCards.services {
        margin-top: -80px;
        padding-left: 10px !important;
        padding-right: 5px !important;
    }*/

    .card-services {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .card-services-img {
        height: 174px;
        margin: -30px -10px -10px -10px !important;
        margin-bottom: 30px !important;
        border-radius: 20px 20px 0px 0px;
    }

    /*    .sliderCustomerServices {
        padding: 30px 0px 30px 0px !important;
    }*/

    .modalServicesText {
        padding: 0px !important;
    }

    .smallServicesCards,
    .betweenCardsText,
    .modalImageContainer {
        display: none !important;
    }

    /*    .btnContactForm.services {
        width: 100% !important;
    }
*/
    .btn-close.btnModalServices {
        left: 90%;
    }

    .modal-content.services,
    .modal-content.contact {
        width: 90vw !important;
    }

    .ourTeam {
        margin-top: 50px !important;
    }

    /*    .textAboutCont,*/
    .aboutText {
        text-align: center;
    }

    /*    .textAboutCont {
        padding-top: 50px;
    }*/

    .aboutText {
        padding: 50px !important;
    }


    .teamRow {
        padding-right: 30px !important;
    }

        .teamRow > div {
            padding-bottom: 30px !important;
        }

            .teamRow > div > div {
                text-align: center;
            }

    .newsContainer {
        height: auto !important;
    }

    .newsInner {
        padding: 30px !important;
    }

    .newsImageDiv {
        justify-content: center !important;
        display: flex;
        padding-bottom: 30px;
    }

    .modalDebtContainer {
        width: 100% !important;
    }

    .logosModal {
        padding: 0px !important;
    }
}
