:root {
    /* Colores globales */
    --bs-primary: #59587a;
    --bs-primary-rgb: 89, 88, 122;
}

/* =====================
   Botones primarios
===================== */
.btn-primary {
    --bs-btn-bg: #a6cbdc;
    --bs-btn-border-color: #a6cbdc;
    --bs-btn-hover-bg: #92b7c9;
    --bs-btn-hover-border-color: #8aafc1;
    --bs-btn-active-bg: #7da4b6;
    --bs-btn-active-border-color: #7399aa;
    color: #fff !important;
}

/* =====================
   Colores globales
===================== */
.text-primary {
    color: var(--bs-primary) !important;
}
.bg-primary {
    background-color: var(--bs-primary) !important;
}
.border-primary {
    border-color: var(--bs-primary) !important;
}

/* Badges */
.badge.bg-primary {
    --bs-badge-color: #fff;
    --bs-badge-bg: var(--bs-primary);
}

/* Alerts */
.alert-primary {
    --bs-alert-color: #fff;
    --bs-alert-bg: var(--bs-primary);
    --bs-alert-border-color: var(--bs-primary);
}

/* Nav links activos */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--bs-primary);
}

/* Progress bars */
.progress-bar {
    background-color: var(--bs-primary) !important;
}

/* Pagination */
.page-item.active .page-link {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Spinners */
.spinner-border,
.spinner-grow {
    color: var(--bs-primary);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import "/node_modules/bootstrap-icons/font/bootstrap-icons.css";
.table-responsive {
    overflow-x: auto;
}

/* --------------------------------------- */
.digital {
    padding-bottom: 1rem;
    font-size: 12px;
    color: #59587a;
}
.listtitle {
    font-size: 18px;
    padding-bottom: 2rem;
}
.hero-img2 {
    width: 20%;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #47b2e4;
    text-decoration: none;
}

a:hover {
    color: #73c5eb;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #59587a;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #37517e;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #47b2e4;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    background: #59587ad7;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: #59587ad7;
}

#header .logo {
    font-size: 40px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #31a9e1;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #47b2e4;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #37517e;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
    visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    /* background: #37517e; */
    /* background: #59587a; */
    background: #ffffff;
}

#hero .container {
    padding-top: 72px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #59587a;
}

#hero h2 {
    color: #59587a;
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #47b2e4;
}

#hero .btn-get-started:hover {
    background: #59587a;
}

#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #47b2e4;
    line-height: 1;
}

#hero .btn-watch-video i {
    line-height: 0;
    color: #59587a;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    color: #59587a;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .animated {
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
    text-align: center;
}

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.clients img:hover {
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
    margin-top: 5rem;
    padding-left: 2rem;
    padding-bottom: 7rem;
}
.aboutparrafo2 {
    padding-top: 2rem;
}
.about .content h3 {
    font-weight: 600;
    font-size: 20px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li + li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #47b2e4;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #47b2e4;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
    background: #47b2e4;
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #37517e;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li + li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #47b2e4;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
    color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1024px) {
    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #37517e;
    font-family: "Poppins", sans-serif;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #47b2e4;
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #37517e;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #4668a2;
}
.skills .progress-bar-wrap2 {
    background: #e8edf5;
    height: 10px;
}
.skills .progress-bar2 {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #46a24b;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: #47b2e4;
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #37517e;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    color: #47b2e4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)),
        url("../img/cta-bg.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #47b2e4;
    border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #47b2e4;
    color: #fff;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 3;
    right: 15px;
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #f9fcfe;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #47b2e4;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
    height: 100%;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #37517e;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .member .social a i {
    color: #37517e;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #47b2e4;
}

.team .member .social a:hover i {
    color: #fff;
}

.team .member .social a + a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #37517e;
}

.pricing h4 {
    font-size: 48px;
    color: #37517e;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #47b2e4;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #47b2e4;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
    background: #47b2e4;
    color: #fff;
}

.pricing .featured {
    border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
    background: #47b2e4;
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background: #23a3df;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #37517e;
    transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
    color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #47b2e4;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #47b2e4;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #47b2e4;
    color: #fff;
}

.contact .email-form {
    width: 100%;
    border-top: 3px solid #47b2e4;
    border-bottom: 3px solid #47b2e4;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .email-form .form-group {
    padding-bottom: 8px;
}

.contact .email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .email-form .error-message br + br {
    margin-top: 25px;
}

.contact .email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .email-form .form-group {
    margin-bottom: 20px;
}

.contact .email-form label {
    padding-bottom: 8px;
}

.contact .email-form input,
.contact .email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .email-form input:focus,
.contact .email-form textarea:focus {
    border-color: #47b2e4;
}

.contact .email-form input {
    height: 44px;
}

.contact .email-form textarea {
    padding: 10px 12px;
}

.contact .email-form button[type="submit"] {
    background: #47b2e4;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .email-form button[type="submit"]:hover {
    background: #209dd8;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f3f5fa;
    min-height: 40px;
    margin-top: 72px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #37517e;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4668a2;
    content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: #59587a;
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #f3f5fa;
    text-align: center;
    font-size: 15px;
    color: #444444;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #37517e;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #47b2e4;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #209dd8;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #37517e;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #5e5e5e;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #37517e;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #47b2e4;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #47b2e4;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #47b2e4;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #209dd8;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

#footer .copyright {
    float: left;
}

#footer .credits {
    float: right;
    font-size: 13px;
}

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

/*

TemplateMo 578 First Portfolio

https://templatemo.com/tm-578-first-portfolio

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color: #ffffff;
    /* --primary-color: #37517e; */
    --primary-color: #59587a;
    --secondary-color: #6bc1e9;
    --section-bg-color: #f9f9f9;
    --dark-color: #2c2b2b;
    --p-color: #717275;
    --border-color: #e9eaeb;
    --featured-border-color: #727aab;
    --gris-color: #f7f7f7;

    --body-font-family: "Source Sans Pro", sans-serif;
    --h1-font-family: "Libre Franklin", sans-serif;

    --h1-font-size: 32px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --h4-font-size: 32px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 16px;
    --menu-font-size: 15px;
    --copyright-font-size: 14px;

    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}
*/

/* body {
  background: var(--white-color);
  font-family: var(--body-font-family);
} */

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
/* 
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  color: var(--secondary-color);
}

h1 {
  font-family: var(--body-font-family);
  font-size: var(--h1-font-size);
  color: var(--white-color);
}

h2 {
  font-family: var(--body-font-family);
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: 0px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--primary-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
} */

/***
Video responsive
*/

.video-responsive {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

.azul {
    background: var(--primary-color);
    padding: 10px;
    text-align: center;
    font-size: 18px;
    width: 400px;
    margin: 0px auto;
    border-radius: 10px;
}

.section-title-wrap {
    background: var(--primary-color);
    border-radius: var(--border-radius-small);
    padding: 10px 30px;
}

/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
    border-radius: var(--border-radius-large);
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.avatar-image-large {
    width: 90.4px;
    height: 90.4px;
}

/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
    border: 1px solid transparent;
    border-radius: var(--border-radius-small);
    position: relative;
}

.spinner:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    border-top-color: var(--white-color);
    animation: spinner 0.9s linear infinite;
}

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

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
/* .navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
} */

/* .is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.form-check-icon {
  color: var(--secondary-color);
} */

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
/* .custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 8px 22px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
} */

/* .custom-btn {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
  background-color: var(--primary-color);
}

.custom-link:hover {
  background-color: var(--secondary-color);
} */

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
/* .sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  background: var(--secondary-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
} */

/*
    Botón verde de inicio 
/* */

/* .boton-verde {
  background: var(--secondary-color);
  -webkit-border-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-radius: 10px;
  border-top-left-radius: 10px;
  text-align: center;
  margin-top: -10px;
  margin-left: 20px;
  margin-bottom: 5px;
  padding: 5px 10px;
} */
*/

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
    background: var(--gris-color);
    position: relative;
    overflow: hidden;
    padding-top: 300px;
    padding-bottom: 330px;
}

@media screen and (min-width: 991px) {
    .hero {
        height: 60vh;
    }
}

.hero-title,
.hero h2 {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border-radius: var(--border-radius-large);
    display: inline-block;
    padding: 8px 24px;
}

.hero-title {
    font-size: 44px;
}

.hero h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.hero-text {
    position: relative;
    z-index: 22;
    top: 70px;
}

.hero-text p {
    text-align: center;
    padding: 10px;
    background-color: #f7f7f7;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: var(--primary-color);
}

.hero-image-wrap {
    position: absolute;
    z-index: 22;
    right: 0;
    left: 0;
    margin: 20% auto;
}

.hero-image {
    position: absolute;
    z-index: 22;
    top: 0;
    width: 100%;
    min-width: 550px;
}

.hero svg {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
    pointer-events: none;
}

/* ------------------- */

.container_conter {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--dark-color);
}

.container_conter h5 {
    color: var(--gris-color);
}

.counter {
    text-align: center;
    padding: 20px;
}

.counter .counter-icon {
    color: #828282;
}

.counter .counter-timer {
    font-weight: 400;
    font-size: 54px;
}

.counter .counter-title {
    letter-spacing: 1.5px;
    font-weight: 400;
    font-size: 18px;
}

.counter #percent::after {
    content: "%";
    font-size: 35px;
    font-weight: 600;
}

.counter-icon img {
    height: 80px;
    filter: invert(79%) sepia(17%) saturate(6219%) hue-rotate(23deg)
        brightness(104%) contrast(106%);
}

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

.our-service-sass .service-block .title a {
    font-size: 22px;
    line-height: 32px;
    color: #253d5f;
    margin-bottom: 30px;
}

.icon-img {
    border-radius: 50%; /* para hacerla redonda */
    width: 100px;
}

.projects-info h3 {
    font-size: 1.4em;
    margin: 0px;
}

.icon-img div {
    width: 100px; /* tamaño del icono */
    height: 100px; /* tamaño del icono */
    border-radius: 50%; /* para hacerlo redondo */
    overflow: hidden; /* para ocultar cualquier exceso */
    display: flex; /* para centrar el contenido */
    align-items: center; /* para centrar el contenido */
    justify-content: center; /* para centrar el contenido */
    background: #fff;
    border: var(--secondary-color) 5px solid;
}

.our-service-sass .inner-wrapper:after {
    position: absolute;
    bottom: -165px;
    right: -165px;
    z-index: -1;
}

.our-service-sass .service-block {
    background: #fff;
    border: 1px solid #eff7ff;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    padding: 180px 30px 25px 40px;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 10px 0px rgba(12, 0, 46, 0.06);
    border: 1px solid #e6e4e4;
    margin-top: 45px;
}

.our-service-sass .service-block:before {
    content: "";
    width: 273px;
    height: 273px;
    background: #393ff0;
    border-radius: 50%;
    position: absolute;
    top: -148px;
    left: -83px;
    transform: scale(0);
}

.our-service-sass .service-block:hover:before {
    transform: scale(1);
    transition: all 0.5s linear;
    transition-delay: 0.1s;
}

.our-service-sass .service-block:hover {
    border-color: transparent;
}
.our-service-sass .service-block .icon-s {
    position: absolute;
    font-size: 65px;
    left: 40px;
    top: 52px;
}

.our-service-sass .single-block:nth-child(1) .service-block .icon-s {
    color: #4146d3;
}

.our-service-sass .single-block:nth-child(2) .service-block .icon-s {
    color: #262983;
}

.our-service-sass .single-block:nth-child(3) .service-block .icon-s {
    color: var(--secondary-color);
}

.our-service-sass .service-block .title a {
    font-size: 22px;
    line-height: 32px;
    color: #253d5f;
    margin-bottom: 30px;
}

.our-service-sass .service-block p {
    color: #000361;
    padding-bottom: 20px;
}

.our-service-sass .service-block .detail-button {
    font-size: 40px;
    color: #cad5e5;
}

.our-service-sass .service-block .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000361;
    z-index: -3;
    opacity: 0;
    transition: all 0.3s linear;
}

.our-service-sass .service-block:hover .hover-content {
    opacity: 1;
}

.our-service-sass .service-block .hover-content:before {
    content: "";
    width: 493px;
    height: 493px;
    background: #000b86;
    border-radius: 50%;
    position: absolute;
    top: -250px;
    left: -180px;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.our-service-sass .service-block:hover .hover-content:before {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 0.9s linear;
}

.our-service-sass .service-block .hover-content:after {
    content: "";
    width: 602px;
    height: 602px;
    background: #59587a;
    border-radius: 50%;
    position: absolute;
    top: -196px;
    left: -180px;
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.our-service-sass .service-block:hover .hover-content:after {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 1.3s linear;
}

/* Servicios caracteristicas */

.nuestrosclientes {
    text-align: center;
    color: var(--primary-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

.imagecenter {
    position: relative;
    padding: 10px;
    margin: 0px auto;
}

.imagecenter img {
    position: absolute; /* para posicionar la imagen de manera absoluta dentro del div */
    top: 50%; /* para centrar la imagen verticalmente */
    left: 50%; /* para centrar la imagen horizontalmente */
    transition: all ease 0.2s;
    transform: translate(
        -50%,
        -50%
    ); /* para mover la imagen hacia arriba y a la izquierda medio de su ancho y alto*/
    max-width: 100%; /*para limitar el ancho de la imagen al 100% del ancho del div*/
    max-height: 100%; /*para limitar el alto de la imagen al 100% del alto del div*/
}

.size300x100 {
    width: 300px;
    height: 100px;
}

.rounder-primary {
    border: 1px solid var(--primary-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.rounder-secondary {
    border: 1px solid var(--secondary-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.size250x100 {
    width: 250px;
    height: 100px;
}

.nuestrosclientes h3 {
    padding: 0px;
    margin: 0px !important;
}

.servicios p {
    font-size: var(--p-font-size);
    /*width: 180px;*/
}

.servicios .services-icon-wrap img {
    transform: rotate(40deg) translateY(-80px) translateX(-70px) !important;
    max-width: 70px;
}

.services-icon-wrap img {
    max-width: 90px;
    filter: invert(79%) sepia(17%) saturate(6219%) hue-rotate(23deg)
        brightness(104%) contrast(106%);
}

.servicios .services-icon-wrap {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 95%;
    transform: rotate(-45deg) translateY(180px) translateX(-80px);
    transition: all ease 0.5s;
}

.servicios .projects-info {
    min-height: 294px;
}

.logos .texto-centrado div {
    width: 90px !important;
    height: 90px !important;
    display: flex; /* adds flex container */
    align-items: center; /* centers the image vertically */
    justify-content: center; /* centers the image horizontally */
    margin: 0px auto;
}

.paddinginrow {
    padding-top: 5% !important;
}

.logos .texto-centrado div img {
    margin: auto; /* centers the element horizontally */
    width: 90px !important;
}

.texto-centrado {
    font-size: 16px;
    text-align: center;
    padding: 0px 5%;
}

.icon-img img {
    object-fit: cover; /* para que no se recorten los bordes */
    object-position: center; /* para mantenerla centrada */
    filter: invert(79%) sepia(17%) saturate(6219%) hue-rotate(23deg)
        brightness(104%) contrast(106%);
    padding: 10px;
    width: 100%;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.profile-thumb {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.profile-title {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 30px;
}

.profile-small-title {
    border-right: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    min-width: 140px;
    margin-right: 10px;
    padding: 13px 30px;
    display: inline-block;
}

.profile-body p {
    margin-bottom: 0;
}

.profile-body p:nth-of-type(even) {
    background: var(--white-color);
}

.about-image {
    border-radius: var(--border-radius-medium);
}

.about-thumb {
    padding-right: 20px;
    padding-left: 20px;
}

/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
    font-size: var(--h1-font-size);
    line-height: normal;
    display: block;
}

.featured-text {
    color: var(--secondary-color);
}

.featured-border-bottom {
    border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
    border-left: 1px solid var(--border-color);
}

/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
    height: 120px;
}

.clients-image {
    display: block;
    max-width: 100px;
    margin: auto;
    transition: all ease 0.2s;
}

.clients-image:hover {
    transform: scale(1.3);
}

/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
    background: var(--section-bg-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-thumb {
    background: var(--white-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    padding: 40px 40px 240px 40px;
    transition: all 0.5s;
}

.services-thumb-up {
    position: relative;
    bottom: 50px;
}

.services-thumb:hover {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.services-thumb:hover .services-icon-wrap {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.services-icon-wrap {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 55%;
    transform: rotate(-35deg) translateY(55px);
    transition: all ease 0.5s;
}

.services-icon {
    font-size: 90px;
    position: relative;
    bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
    background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
    background: var(--primary-color);
}

.services-price-wrap {
    background: var(--primary-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 6px 20px 6px 15px;
    transition: all ease 0.5s;
}

.services-price-text {
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    font-weight: var(--font-weight-bold);
}

.services-price-overlay {
    background: var(--secondary-color);
    border-bottom-left-radius: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
    background: var(--section-bg-color);
    border: 2px solid var(--white-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 40px;
    transition: all ease 0.5s;
}

.projects-thumb:hover {
    border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
    transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
    display: block;
    width: 100%;
    height: 100%;
}

.projects-image {
    border-radius: var(--border-radius-medium);
    display: block;
    width: 100%;
    transform: rotate(10deg) translateY(80px);
    transition: all ease 0.5s;
}

.projects-title {
    margin-bottom: 20px;
    color: #000b86;
}

.projects-tag {
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
    background: var(--section-bg-color);
}

.contact-info {
    background: var(--white-color);
    border-top-right-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
    padding: 60px 30px 30px 30px;
    height: 100%;
}

.contact-info-border-start {
    border-right: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
    margin-left: 10px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
    background: var(--white-color);
    box-shadow: none;
    border: 2px solid var(--border-color);
    color: var(--p-color);
    margin-bottom: 24px;
    padding-top: 13px;
    padding-bottom: 13px;
    outline: none;
}

.form-floating > label {
    color: var(--p-color);
}

.form-check-inline {
    vertical-align: middle;
    width: 100%;
    position: relative;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 24px;
    padding: 0;
}

.custom-form .form-check-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.form-check-label-text {
    color: var(--p-color);
    display: block;
    font-size: copyright-font-size;
    margin-top: 5px;
}

.form-check-input[type="checkbox"] {
    background: var(--white-color);
    border: 2px solid var(--border-color);
    box-shadow: none;
    outline: none;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    padding: 40px 50px;
}

.form-check-input:checked[type="checkbox"] {
    background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
    background: transparent;
    border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
    height: 150px;
}

.custom-form button[type="submit"] {
    background: var(--secondary-color);
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    transition: all 0.3s;
    margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--primary-color);
    border-color: transparent;
}
.accordion-body {
    background-color: var(--primary-color);
    color: var(--gris-color);
}
.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: #e7f1ff;
    font-weight: 600;
    /* box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%); */
}
/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.site-footer-title {
    font-size: var(--menu-font-size);
    color: var(--dark-color);
    text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
    font-size: var(--copyright-font-size);
}

.copyright-text {
    border-right: 1px solid var(--border-color);
    padding-right: 25px;
    margin-right: 20px;
}

.copyright-text-wrap a {
    font-weight: var(--font-weight-bold);
}

.footer-menu {
    margin: 0;
    padding: 0;
}

.footer-menu-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.footer-menu-link {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    font-size: var(--copyright-font-size);
    font-weight: var(--font-weight-medium);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 6px 14px;
    min-width: 70px;
}

.footer-menu-link:hover {
    background: var(--secondary-color);
    border-color: transparent;
    color: var(--white-color);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    font-size: var(--copyright-font-size);
    color: var(--dark-color);
    display: inline-block;
    vertical-align: top;
    margin: 2px 2px 5px 2px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.social-icon-link:hover {
    background: var(--secondary-color);
    border-color: transparent;
    color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
    .hero {
        padding-top: 380px;
        padding-bottom: 380px;
    }

    .hero-image-wrap {
        top: -50px;
        width: 400px;
        height: 400px;
    }

    .hero-image {
        min-width: 650px;
    }

    .hero-title,
    .hero h2 {
        font-size: var(--h2-font-size);
    }
}

@media screen and (max-width: 991px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: var(--white-color);
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }
  .navbar {
    position: fixed;
    z-index: 999;
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  } */

    .hero {
        padding-top: 200px;
        padding-bottom: 400px;
    }

    .hero-text {
        top: 0;
        margin-bottom: 120px;
    }

    .about-thumb {
        padding-right: 0;
        padding-left: 0;
    }

    .about-numbers {
        font-size: 42px;
    }

    .services-thumb-up {
        bottom: 0;
        margin-bottom: 32px;
    }

    .services-thumb {
        margin-bottom: 32px;
        padding-bottom: 270px;
    }

    .services-icon-wrap {
        width: 45%;
        height: 60%;
    }

    .services .col-lg-10 .row .col-lg-6:last-child,
    .projects .col-lg-4:last-child {
        margin-bottom: 0;
    }

    .projects-thumb {
        margin-top: 0;
        margin-bottom: 32px;
    }

    .contact-info {
        border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
        padding: 40px 30px;
    }

    .contact-info-border-start {
        border-right: 0;
        border-bottom: 1px solid var(--border-color);
        border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
    }
    .services-thumb:hover,
    .services-thumb.hover-activo {
        border: 2px solid var(--secondary-color);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        transition: all 1s ease-in-out;
    }
    .services-thumb:hover .services-icon-wrap,
    .services-thumb.hover-activo .services-icon-wrap {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: var(--white-color);
        transition: all 1s ease-in-out;
    }
    .info-contact {
        text-align: center;
    }
    .contacto {
        text-align: center;
    }
}

@media screen and (max-width: 575px) {
    /* .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  } */

    p {
        font-size: var(--p-font-size);
        font-weight: var(--font-weight-normal);
    }
    .services-thumb:hover,
    .services-thumb.hover-activo {
        border: 2px solid var(--secondary-color);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        transition: all 1s ease-in-out;
    }
    .services-thumb:hover .services-icon-wrap,
    .services-thumb.hover-activo .services-icon-wrap {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: var(--white-color);
        transition: all 1s ease-in-out;
    }
    .info-contact {
        text-align: center;
    }
    .contacto {
        text-align: center;
        font-size: 25px;
    }
}
.counter-number {
    color: white;
}
.custom-link {
    margin-top: 0px;
    font-size: 25px;
}
.projects {
    margin-top: 25px;
}

@media screen and (max-width: 480px) {
    /*  
  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }
  .custom-link {
    margin-top: 30px;
    font-size: 25px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  } */

    .hero-image-wrap {
        width: 300px;
        height: 300px;
    }

    .hero-image {
        min-width: inherit;
    }
    /* .services-thumb {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  }
  
  .services-thumb .services-icon-wrap {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
  } */

    /* .services-thumb:hover {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  } */

    .services-thumb:hover,
    .services-thumb.hover-activo {
        border: 2px solid var(--secondary-color);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        transition: all 1s ease-in-out;
    }
    .services-thumb:hover .services-icon-wrap,
    .services-thumb.hover-activo .services-icon-wrap {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: var(--white-color);
        transition: all 1s ease-in-out;
    }
}

@-webkit-keyframes scale-upOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
    }
}

@keyframes scale-upOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
    }
}
.social-container {
    text-align: center;
    margin-top: 10px;
}
.redes {
    width: 120px;
    display: inline-flex;
    align-self: start;
    justify-content: space-between;
}

.redes i {
    border: 1px solid var(--primary-color);
    text-decoration: none;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    padding-top: 7px;
}
.redes i:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    cursor: pointer;
}
.icono {
    width: 100px;
    height: 80px;
    align-items: flex-start;
    margin-right: 20px;
}

.info-contact {
    margin-bottom: 1rem;
}
.contacto {
    margin-bottom: 2rem;
}
textarea {
    resize: none;
}
/* -------------------CSS DEL BANNER------------------ */
#banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#banner.show {
    visibility: visible;
    opacity: 1;
}

#banner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

#close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 10001;
}

.banner-fade-in {
    animation-name: fade-in;
    animation-duration: 4s;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 10001;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 20px;
    background-color: red;
    border-radius: 5px;
    padding: 5px;
    font-family: var(--body-font-family);
}
#close-btn:hover {
    background-color: rgb(158, 42, 42);
}

.outer-container {
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinear elementos al inicio horizontal */
    margin-bottom: 20px; /* Espacio inferior */
}
.custom-container input[type="checkbox"] {
    margin-right: 10px; /* Añadir espacio a la derecha del checkbox */
}

/* form User Registration */
.register-form {
    width: 500px;
    margin: 0 auto;
    padding: 0px 20px 60px 20px;
    margin-top: 35px;
    border-radius: 10px;
    font-family: "Open Sans", sans-serif;
    text-align: left !important;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.register-form h1 {
    text-align: left;
    color: midnightblue;
    font-size: 22px;
    padding: 70px 0 10px 0;
}
.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"],
.register-form select {
    width: 100%;

    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.register-form select {
    appearance: none;
    background-color: #95b9e9;
}

.register-form .btn-cancel {
    text-decoration: none;
    background-color: #ccc;
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
}

.register-form .btn-save {
    background-color: midnightblue;
    color: #fff;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.register-form .btn-save:hover {
    background-color: #001f3f;
}

input#enlace {
    width: 400px; /* Puedes ajustar el valor según tus preferencias */
}

/* GRAFICOS */
.grafico3 {
    flex-direction: row;
    display: flex;
    justify-content: center;

    margin: auto;
    height: 55vh;
    width: 70vw;
}
table {
    text-align: center; /* Alinea el texto horizontalmente al centro en toda la tabla */
}

td {
    vertical-align: middle; /* Alinea el contenido verticalmente al centro en todas las celdas */
}

.hidden {
    display: none;
}

.fecha-limite {
    margin-bottom: 1rem;
}

.bi-info-circle {
    font-size: 16px;
    color: #dc3545;
}

/* --------------------ACORDEON-------------------------------- */

/* Estilos personalizados */
.accordion-item {
    background-color: #3498db; /* Fondo azul */
    color: #fff; /* Texto blanco */
    border-radius: 5px;
    margin-bottom: 10px;
}

.accordion-item.active {
    background-color: #2980b9; /* Nuevo color de fondo cuando el acordeón está abierto */
}

.accordion-button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    outline: none;
    order: 1; /* Cambia el orden del botón */
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 10px 20px;
    background-color: #0000007c;
}

/* Icono */
.accordion-button::after {
    color: white;
    font-size: 13px;
}

.accordion-button.collapsed::after {
    color: white;
}

/* Mueve el ícono al final */
.accordion-button.collapsed::after {
    order: 2; /* Cambia el orden del ícono */
}
.chart-container {
    width: 500px; /* Ancho del contenedor */
    height: 500px; /* Altura del contenedor */
    margin: auto; /* Centrar horizontalmente */
    padding: 10px; /* Espaciado alrededor del gráfico */
}

a[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.tooltip-info {
    position: relative;
    cursor: pointer;
    color: #0d6efd;
    font-weight: bold;
    text-decoration: underline;
}

/* Caja del tooltip */
.tooltip-box {
    position: absolute;
    top: 125%; /* 👈 debajo */
    left: 0%;
    transform: translateX(-50%);
    background-color: #f8f9fa;
    color: #212529;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    max-width: 400px;
    max-height: 250px;
    overflow-y: auto;
    padding: 12px 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 999;
    text-align: left;
}

.tooltip-info:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
}

/* Estilos internos */
.tooltip-box strong {
    color: #47b2e4; /* azul principal */
    font-size: 15px;
}

.tooltip-box em {
    color: #555;
    font-style: italic;
}

.tooltip-box ul {
    margin: 8px 0;
    padding-left: 18px;
}

.tooltip-box li {
    margin-bottom: 6px;
}

/* Scrollbar moderno */
.tooltip-box::-webkit-scrollbar {
    width: 8px;
}

.tooltip-box::-webkit-scrollbar-thumb {
    background: #47b2e4;
    border-radius: 6px;
}

.form-section-disabled {
    background-color: #f1f1f1; /* gris claro */
    padding: 10px;
    border-radius: 5px;
    opacity: 0.6; /* semitransparente */
    cursor: not-allowed; /* ícono de prohibido */
    pointer-events: none; /* evita interacción con el bloque */
}

#fecha-limite[readonly] {
    background-color: #f1f1f1;
    cursor: not-allowed;
}
  td.verdadero {
    background-color: #70aa7a !important; /* verde suave */
    color: rgb(0, 0, 0);
  }

      /* ====== ESTILOS ESPECÍFICOS PARA LA TABLA DE VALIDACIONES ====== */
    .tabla-validaciones {
        font-size: 0.9rem;
        width: 100%;
    }

    .tabla-validaciones td,
    .tabla-validaciones th {
        padding: 0.4rem;
        vertical-align: middle;
        text-align: center;
    }

    .tabla-validaciones .verdadero {
        background-color: #78b678 !important;
    }

    .tabla-validaciones-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
    }

    /* ====== RESPONSIVE ====== */
    @media (max-width: 768px) {
        .tabla-validaciones thead {
            display: none;
        }

        .tabla-validaciones,
        .tabla-validaciones tbody,
        .tabla-validaciones tr,
        .tabla-validaciones td {
            display: block;
            width: 100%;
        }

        .tabla-validaciones tr {
            margin-bottom: 1rem;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .tabla-validaciones td {
            text-align: right;
            padding-left: 50%;
            position: relative;
        }

        .tabla-validaciones td::before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 50%;
            padding-left: 1rem;
            font-weight: bold;
            text-align: left;
            color: #495057;
        }

        /* Hace que el botón ocupe todo el ancho en móvil */
        .tabla-validaciones .btn-ver-pdf {
            width: 100%;
            margin-top: 0.5rem;
        }
    }

 


  td.falso {
    background-color: #cf2121 !important; /* verde suave */
    color: rgb(255, 255, 255);
  }