﻿/**
 * Involucra los estilos de toda la página.
 *
 * @author Cristian Campos
 */


/*--------------------------------------------------------------
                            General                      
 --------------------------------------------------------------*/
body {
    font-family: 'Source Sans Pro', Quicksand;
    color: #444444;
}

a {
    color: #074286;
    text-decoration: none;
}

    a:hover {
        color: #aacd6b;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mukta', Century;
}

p {
    text-align: justify;
    font-family: 'Source Sans Pro', Quicksand;
}

#main {
    
    z-index: 3;
    position: relative;
}

.rotate {
    animation: rotation 8s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #074286;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    height: 44px;
    padding: 0;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 996;
}

    #topbar.topbar-scrolled {
        top: -44px;
    }

    #topbar .contact-info i {
        font-style: normal;
        color: #B4C875; /* Cambia el tono de los logos del topbar*/
    }

        #topbar .contact-info i a, #topbar .contact-info i span {
            padding-left: 5px;
            color: #fff;
        }

        #topbar .contact-info i a {
            line-height: 0;
            transition: 0.3s;
        }

            #topbar .contact-info i a:hover {
                color: #B4C875;
            }

    #topbar .social-links a {
        color: #62787d;
        padding: 4px 12px;
        display: inline-block;
        line-height: 1px;
        transition: 0.3s;
        border-left: 1px solid #e9e9e9;
    }

        #topbar .social-links a:hover {
            color: #B4C875;
        }

        #topbar .social-links a:first-child {
            border-left: 0;
        }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 70px;
    z-index: 997;
    transition: all 0.5s;
    background: #fff;
    top: 44px;
}

    #header.header-scrolled {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        top: 0;
    }

    #header .logo h1 {
        font-size: 28px;
        margin: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
    }

        #header .logo h1 a, #header .logo h1 a:hover {
            color: #354144;
            text-decoration: none;
        }

            #header .logo h1 a span, #header .logo h1 a:hover span {
                color: #01b1d7;
            }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 180px;
    }

/*--------------------------------------------------------------
# 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-family: "Raleway", sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #404f52;
        white-space: nowrap;
        text-transform: uppercase;
        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: #074286;
        }
    
        .navbarActive{
            color: #074286 !important;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 30px;
        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;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            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: #074286;
            }

    .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: #354144;
    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(31, 38, 39, 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: #354144;
    }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: #074286;
        }

    .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 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: #074286;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 0;
}

#breadcrumbs a {
    color: #074286;
}

#breadcrumbs a:hover {
    color: #B4C875;
    text-decoration: none;
}
.breadcrumbs .breadcrumb-hero {
    text-align: center;
    background: #074286;
    padding: 20px 0;
    color: #fff;
    background: url(Assets/images/blog-3.png) top center;
}

        .breadcrumbs .breadcrumb-hero h2 {
            font-size: 32px;
            font-weight: 500;
        }

        .breadcrumbs .breadcrumb-hero p {
            font-size: 14px;
            margin-bottom: 0;
        }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #B4C875;
                content: "/";
            }



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #074286;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}


    #footer .footer-top {
        background: #E8F6EF;
        /*#9AB2CC   #6D8299 */
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 26px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 600;
                letter-spacing: 3px;
                color: #B4C875;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: "Raleway", sans-serif;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            display: inline-block;
            background: #3c4133;
            color: #fff;
            line-height: 1;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            #footer .footer-top .social-links a i {
                line-height: 0;
                font-size: 16px;
            }

            #footer .footer-top .social-links a:hover {
                background: #B4C875;
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 14px;
            font-weight: bold;
            color: #747576;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
        }

            #footer .footer-top h4::before, #footer .footer-top h4::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                height: 2px;
            }

            #footer .footer-top h4::before {
                right: 0;
                background: #969b99;
            }

            #footer .footer-top h4::after {
                background: #074286;
                width: 60px;
            }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 5px 0 0 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul li {
                    padding: 0 0 15px 0;
                }

                #footer .footer-top .footer-links ul a {
                    color: #747576;
                    transition: 0.3s;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: #074286;
                    }

        

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

    


a {
    color: #B4C875;
    text-decoration: none;
}

    a:hover {
        color: rgba(69, 186, 192, 0.7);
        text-decoration: none;
    }



