/*
    description Of variables for build for theme layouts
        1) menu-caption-color
            List of color for sidebar menu caption

        2) brand-background
            List of color for logo background

        3) header-dark-background
            List of color for Dark Header

        4) header-light-background
            List of color for light Header

        5) menu-dark-background
            List of color for Dark sidebar menu

        6) menu-light-background
            List of color for light sidebar menu

        7) menu-active-color
            List of color for Active item highliter

        8) menu-icon-color
            List of color for sidebar menu items icon colors
*/
body {
    margin: 0;
    overflow-x: hidden;
    background: white;
}

a {
    outline: none;
    text-decoration: none;
}

a:focus, a:hover {
    outline: none;
    text-decoration: none;
}

.h1,
h1 {
    font-size: calc(1.35rem + 1.2vw);
}

@media (min-width: 1200px) {
    .h1,
  h1 {
        font-size: 2.25rem;
    }
}

.h2,
h2 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    .h2,
  h2 {
        font-size: 1.75rem;
    }
}

.h3,
h3 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    .h3,
  h3 {
        font-size: 1.5rem;
    }
}

.h4,
h4 {
    font-size: 1.25rem;
}

.h5,
h5 {
    font-size: 1rem;
}

.h6,
h6 {
    font-size: 0.9375rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.bg-dark {
    background: #343a40 !important;
    color: #fff;
}

.bg-dark p {
    color: #b5bdca;
}

.bg-dark .title h2 {
    color: rgba(255, 255, 255, 0.7);
}

.bg-dark .title h2 span {
    color: #fff;
}

.theme-alt-bg {
    background: #f8f9f9;
}

.title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.title h2 {
    margin-bottom: 15px;
    z-index: 3;
    color: #212529;
    margin-top: 15px;
}

.title h2 span {
    font-weight: 600;
}

.title i {
    font-size: 40px;
    padding-bottom: 4px;
    background-image: linear-gradient(-45deg, #19BCBF, #149698);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 992px) {
    .title {
        margin-bottom: 30px;
    }

    .title h2 {
        margin-bottom: 10px;
    }
}

.navbar {
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: -80px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #FFF;
    transition: all 0.3s linear;
    margin-bottom: 0;
    box-shadow: 0 8px 6px -10px rgba(0, 0, 0, 0.5);
}

.navbar .navbar-brand {
    background: transparent;
}

.navbar .btn-sm {
    padding: 5px 12px;
}

.navbar.default {
    top: 0;
}

@media (min-width: 767px) {
    .navbar .navbar-nav .nav-link {
        position: relative;
    }

    .navbar .navbar-nav .nav-link:after {
        content: "";
        position: absolute;
        height: 3px;
        bottom: 0;
        background: #004D9B;
        left: 51%;
        right: 51%;
    }

    .navbar .navbar-nav .nav-link.active:after {
        left: 15%;
        right: 15%;
    }
}

header {
    position: relative;
    color: #fff;
    min-height: 90vh;
    padding-top: 160px;
    padding-bottom: 90px;
    align-items: center;
    background-image: url("../../front/fondo.jpg");
}

header .header-img {
    border-radius: 5px;
    transform-origin: left;
}

header > * {
    position: relative;
    z-index: 5;
}

.feature-row > div[class*='col-']:nth-child(1) .feature-block, .feature-row > div[class*='col-']:nth-child(2) .feature-block, .feature-row > div[class*='col-']:nth-child(3) .feature-block {
    border-top-color: transparent;
}

.feature-row > div[class*='col-']:nth-child(4) .feature-block, .feature-row > div[class*='col-']:nth-child(5) .feature-block, .feature-row > div[class*='col-']:nth-child(6) .feature-block {
    border-bottom-color: transparent;
}

.feature-row > div[class*='col-']:nth-child(1) .feature-block, .feature-row > div[class*='col-']:nth-child(4) .feature-block {
    border-left-color: transparent;
}

.feature-row > div[class*='col-']:nth-child(3) .feature-block, .feature-row > div[class*='col-']:nth-child(6) .feature-block {
    border-right-color: transparent;
}

.feature-block {
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e2e5e8;
}

.feature-block .feature-icon {
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    width: 70px;
    height: 70px;
}

.feature-block .feature-icon .fas {
    font-size: 34px;
    transition: all 0.3s ease-in-out;
    color: rgba(0, 77, 155, 0.6);
}

.feature-block:hover .feature-icon {
    background-color: #004D9B;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

.feature-block:hover .feature-icon .fas {
    color: #fff;
}

.feature-block p {
    margin-bottom: 0;
}

.btn-filter {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e2e5e8;
    margin-bottom: 40px;
}

.btn-filter .btn {
    position: relative;
    margin: 5px 10px 0;
    padding: 8px 0;
}

.btn-filter .btn .badge {
    color: #fff;
    background: #E83E4A;
    padding: 3px 6px;
    display: inline-flex;
    height: 16px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 11px;
}

.btn-filter .btn:after {
    content: "";
    position: absolute;
    height: 3px;
    bottom: -2px;
    background: #004D9B;
    left: 51%;
    right: 51%;
    transition: all 0.3s ease-in-out;
    border-radius: 3px 3px 0 0;
}

.btn-filter .btn.active:after {
    left: 0;
    right: 0;
}

.btn-filter .btn:active, .btn-filter .btn:focus, .btn-filter .btn:hover {
    box-shadow: none;
}

.layout-block {
    padding: 5px;
    border-radius: 15px;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

.layout-block .layout-img {
    display: block;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.layout-block .layout-img img {
    transition: all 0.3s ease-in-out;
}

.layout-block .layout-img .overlay-action {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.layout-block .layout-img .overlay-action .fas {
    font-size: 45px;
    color: #fff;
}

.layout-block .layout-img:hover img {
    filter: blur(2px);
}

.layout-block .layout-img:hover .overlay-action {
    opacity: 1;
}

.layout-block > *:not(.layout-img) {
    padding-left: 20px;
    padding-right: 20px;
}

.call-to-action {
    position: relative;
}

.call-to-action > * {
    position: relative;
    z-index: 5;
}

.call-to-action:after, .call-to-action:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.call-to-action:before {
    background-image: url("../../front/home-bg.jpg");
    background-attachment: fixed;
    z-index: 1;
}

.call-to-action:after {
    background-color: rgba(0, 77, 155, 0.8);
    z-index: 2;
}

.cta-block {
    padding: 40px 45px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

.cta-block .fas {
    font-size: 60px;
    color: #E83E4A;
}

.testimonial-block {
    position: relative;
    padding: 48px 25px 30px;
    border-radius: 4px;
    background: #fff;
    margin: 45px 30px 45px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

.testimonial-block .test-quote {
    position: absolute;
    top: -30px;
    left: 20px;
    background: #004D9B;
    color: #fff;
    box-shadow: 0 5px 25px rgba(0, 77, 155, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.testimonial-block .test-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    padding: 3px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

.testimonial-block .test-img img {
    border-radius: 4px;
    width: 100%;
}

.test-indicators {
    position: relative;
    margin-top: 30px;
}

.test-indicators li {
    margin: 10px 5px;
    width: 15px;
    height: 5px;
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease-in-out;
    background-color: #7E858E;
}

.test-indicators li.active {
    background-color: #004D9B;
    box-shadow: 0 5px 25px rgba(0, 77, 155, 0.5);
    width: 35px;
}

.price-block {
    position: relative;
    padding: 45px 25px 40px;
    border-radius: 5px;
    background: #EFF3F6;
    overflow: hidden;
    text-align: center;
}

.price-block .price-icon {
    font-size: 40px;
    margin-bottom: 25px;
}

.price-block .price-package {
    font-size: 40px;
}

.price-block .price-package span {
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.price-block .price-list {
    text-align: left;
    margin: 30px 0;
}

.price-block .price-list li {
    margin: 8px 0;
    position: relative;
    padding-left: 30px;
}

.price-block .price-list li svg {
    position: absolute;
    top: 1px;
    left: 0;
    stroke: #004D9B;
    fill: rgba(0, 77, 155, 0.3);
}

.price-block .price-badge {
    background-color: #E83E4A;
    box-shadow: 0 3px 15px rgba(232, 62, 74, 0.3);
    color: #fff;
    font-size: 20px;
    transform: rotate(45deg);
    position: absolute;
    display: block;
    right: -45px;
    width: 158px;
    top: 20px;
}

.price-block.active {
    background: #004D9B;
    box-shadow: 0 5px 25px rgba(0, 77, 155, 0.5);
    color: #fff;
}

.price-block.active .h3 {
    color: #fff;
}

.price-block.active .price-list li svg {
    stroke: #fff;
    fill: rgba(255, 255, 255, 0.3);
}

.price-block .btn-light {
    color: #004D9B;
    background: #fff;
    border-color: #fff;
}

.faq-accordion .card {
    box-shadow: none;
    background: transparent;
    overflow: visible;
    margin-bottom: 8px;
}

.faq-accordion .card .card-header {
    background: #fff;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

.faq-accordion .card .card-header h5 {
    transition: all 0.3s ease-in-out;
}

.faq-accordion .card .card-header i {
    margin-right: 15px;
    color: #004D9B;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .card .card-header:not(.collapsed) i {
    color: #39465C;
    transform: rotate(45deg);
}

.faq-accordion .card .card-body {
    padding-left: 57px;
}

.faq-accordion .card p {
    margin-bottom: 0;
}

.footer-top {
    position: relative;
    padding: 90px 0;
    background: #343a40;
    transform: skewY(-4deg);
    transform-origin: right;
    border-radius: 90px 0 0 0;
}

footer {
    color: #fff;
    padding: 0;
    position: relative;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-in-out;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer h5 {
    position: relative;
    color: #fff;
    margin-bottom: 30px;
}

footer h5:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
}

footer .list-unstyled li a {
    font-size: 14px;
}

footer .sos-icon li {
    display: inline-block;
}

footer .sos-icon a {
    width: auto;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    margin-right: 12px;
    justify-content: center;
    font-size: 16px !important;
    transition: all 0.3s ease-in-out;
}

footer .sos-icon a:focus, footer .sos-icon a:hover {
    text-decoration: none;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

footer .b-footer {
    position: relative;
    padding-top: 100px;
}

footer .b-footer p {
    margin-bottom: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1;
    position: relative;
}

footer .b-footer .bottom-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 100px;
    opacity: 0.05;
    width: 100%;
    text-align: center;
    z-index: 1;
}

@media only screen and (max-width: 992px) {
    header,
  section {
        padding-bottom: 40px;
    }

    footer {
        padding: 40px 0 0;
    }

    footer .list-unstyled li a {
        font-size: 16px;
    }

    footer h5 {
        margin-top: 20px;
    }

    footer .b-footer {
        padding-top: 10px;
    }

    footer .b-footer p {
        padding: 10px 0;
    }

    footer .b-footer .bottom-tag {
        display: none;
    }
}

.boton-acceso {
    display: none;
}

@media only screen and (max-width: 768px) {
    .boton-acceso {
        display: inline;
    }

    .layouts .nav-pills .nav-link {
        margin-bottom: 15px;
    }

    .footer-top {
        padding: 50px 0;
    }

    .feature-block {
        border-bottom-color: transparent;
        border-left-color: transparent;
        border-right-color: transparent;
        border-top-color: #e2e5e8 !important;
    }

    .feature-row > div[class*='col-']:nth-child(1) .feature-block {
        border-top-color: transparent !important;
    }

    .navbar {
        height: auto;
    }
}

.footer-fab,
.menu-styler {
    display: none;
}

.boton-doc-interes {
    background-image: url("../../images/icons/boton_documentos_interes.png");
    height: 120px;
    background-position: center;
    background-repeat: no-repeat;
  /*background-color: #cccccc;


  background-size: cover;*/
    position: relative;
}

.boton-investigaciones {
    background-image: url("../../images/icons/boton_investigaciones.png");
    height: 120px;
    background-position: center;
    background-repeat: no-repeat;
  /*background-color: #cccccc;


  background-size: cover;*/
    position: relative;
}

.texto-botones {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
