/*--------------------------------------------------------------
# Ajustes generales
--------------------------------------------------------------*/
body {
    font-family: "Montserrat", sans-serif;
}

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

.w-23 {
    width: 23px;
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Boton "Volver a arriba"
--------------------------------------------------------------*/
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
    box-shadow: 0px 2px 15px #0000001a;
}

#header.fixed-top {
    height: 70px;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
}

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

.scrolled-offset {
    margin-top: 70px;
}

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

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

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #222222;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #0d0a4c;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #0d0a4c;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px #7f89a140;
    transition: 0.3s;
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.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: #106eea;
}

.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;
}

.navbar .dashboard{
    color: #0087d1!important;
}

.navbar .dashboard:hover{
    color: #006faa !important;
}

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

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

/*--------------------------------------------------------------
# Seccion de portada
--------------------------------------------------------------*/

/*
*   La portada
*/
.portada {
    width: 100%;
    height: 75vh;
    padding: 60px 0;
    background: url("../img/portada-bg.webp") top left;
    background-size: cover;
    position: relative;
}

.portada-mini {
    width: 100%;
    height: 35vh;
    background: url("../img/portada-bg.webp") top left;
    background-size: cover;
    position: relative;
}

.portada:before,
.portada-mini::before {
    content: "";
    background: #ffffff87;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.portada .container,
.portada-mini .container {
    position: relative;
}

.portada h2 {
    color: #555555;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
}

.portada-mini h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #0d0a4c;
}

.portada .port-logo {
    width: 600px;
    margin-left: 100px;
}

.portada .port-logo>img {
    width: 100%;
}

/*
*   seccion de noticias
*/
.not-sec {
    position: absolute;
    padding-top: 50px;
}

.card {
    font-size: 1rem;
}

.card .card-body {
    background: #fff;
    color: #000;
}

.card .card-text {
    font-weight: 400;
}

.card .card-title {
    font-weight: 600;
    font-size: 1.3rem;
    height: 73px;
    overflow: hidden;
}

.card .card-footer {
    background: #0d0a4c;
    color: #fff;
}

.card .card-footer__info {
    font-size: 1rem;
    font-weight: 300;
    position: relative;
}

.card .read-more {
    position: absolute;
    right: 0;
    font-weight: 600;
}

.card .read-more-3 {
    text-decoration: none;
    position: relative;
    color: #fff;
}

.card .read-more-3:hover {
    color: #fff;
    text-decoration: underline;
}

.not-info {
    padding-top: 350px !important;
}

/*--------------------------------------------------------------
# Seccion en general
--------------------------------------------------------------*/
section:not(.portada) {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg:nth-child(odd) {
    background-color: #f6f9fe;
}

.section-bg:nth-child(even) {
    background-color: #eef2f8;
}

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

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #e7f1fd;
    color: #0d0a4c;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span:nth-child(3n + 0) {
    color: #0d0a4c;
}

.section-title h3 span:nth-child(3n + 1) {
    color: #0087d1;
}

.section-title h3 span:nth-child(3n + 2) {
    color: #720b04;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}


.section-list {
    line-height: 1.5em;
    margin: 5px 0 15px;
    padding: 0;
}

.section-list li {
    list-style: none;
    position: relative;
    padding: 0 0 0 20px;
}


.section-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    display: block;
    border-top: 2px solid #000000;
}

.btn-info {
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    width: fit-content;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #0d0a4c;
}

.btn-info:hover {
    background: #181288;
}

.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Seccion de Preguntas
--------------------------------------------------------------*/
.faq {
    padding: 60px 0;
}

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

.faq .faq-list li {
    border-bottom: 1px solid #d4e5fc;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-family: #0d0a4c;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: #0d0a4c;
    transition: 0.3s;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

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

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

.faq .faq-list .collapsed {
    color: black;
}

.faq .faq-list .collapsed:hover {
    color: #0d0a4c;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}

/*--------------------------------------------------------------
# Seccion de Contacto
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px #d6d7d84d;
    padding: 20px 0 30px 0;
}

.contact .info-box i {
    font-size: 32px;
    color: #0d0a4c;
    border-radius: 50%;
    padding: 8px;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .email-form {
    box-shadow: 0 0 30px #d6d7d866;
    padding: 30px;
}

.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 input,
.contact .email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

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

.contact .email-form input {
    padding: 10px 15px;
}

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

.contact .email-form button[type=submit] {
    background: #0d0a4c;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #444444;
    font-size: 14px;
    background: #f1f6fe;
}

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

#footer .footer-top .foot-logo {
    width: 250px;
}

#footer .footer-top .foot-logo>img {
    width: 100%;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    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: #0d0a4c;
    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 {
    text-decoration: none;
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

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

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

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

#footer .copyright {
    text-align: center;
    float: left;
}

/*--------------------------------------------------------------
# Navegacion movil (o encogimiento de la pantalla en general)
--------------------------------------------------------------*/
/**
  * eliminar animacion AOS en movil
  */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/**
  * NavMenu
  */
.mobile-nav-toggle {
    color: #222222;
    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(9, 9, 9, 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;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

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

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.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 #7f89a140;
}

.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: #0d0a4c;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/**
  * Portada
  */

@media (min-width: 1024px) {

    .portada,
    .portada-mini {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    .portada {
        height: 100vh;
    }

    .portada-mini h1 {
        font-size: 28px;
        line-height: 36px;
    }

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

    .portada .port-logo {
        margin-left: 0;
    }
}

@media (max-height: 500px) {
    .portada {
        height: 120vh;
    }
}

/**
  * Seccion en general
  */

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .btn-info {
        font-size: 13px;
    }
}

/**
  * Footer
  */

@media (max-width: 768px) {

    #footer .copyright {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}