/* Fuentes: 
    Poppins 400 regular, 600 semi, 700 negrita (Títulos y encabezados)
    Roboto  400 regular, 600 semi, 700 negrita (Texto general)
*/

.regular {
    font-weight: 400;
}

.semi {
    font-weight: 600;
}

.negrita {
    font-weight: 700;
}

/* Colores:
    naranja:          #F1621C
    gris:             #4A4A4A
    negro:            #1D1D1B
    blanco:           #FFFFFF
    fondo-gris:       #F5F5F5
    fondo-gris-claro: #FAF8F6
    fondo-gris-oscuro:  linear-gradient(102.11deg, #4A4A4A -13.27%, #1D1D1B 103.4%);
*/

.naranja {
    color: #F1621C !important;
}

.gris {
    color: #4A4A4A !important;
}

.negro {
    color: #1D1D1B !important;
}

.blanco {
    color: #FFFFFF !important;
}

.fondo-gris {
    background-color: #F5F5F5 !important;
}

.fondo-gris-claro {
    background-color: #FAF8F6 !important;
}

.fondo-gris-claro-landing {
    background: linear-gradient(to bottom, #FFFFFF 0px, #FFFFFF 200px, #FAF8F6 200px, #FAF8F6 100%);
}

.fondo-gris-landing {
    background: linear-gradient(to bottom, #FFFFFF 0px, #FFFFFF 200px, #F5F5F5 200px, #F5F5F5 100%);
}

.fondo-gris-claro-features {
    background: linear-gradient(to right, #FFFFFF 0px, #FFFFFF 200px, #FAF8F6 200px, #FAF8F6 100%);
}

.fondo-gris-features {
    background: linear-gradient(to right, #FFFFFF 0px, #FFFFFF 200px, #F5F5F5 200px, #F5F5F5 100%);
}

.img-feature-landing {
    max-height: 320px;
    padding-bottom: 30px;
}

.fondo-gris-oscuro {
    color: #FFFFFF;
    background: linear-gradient(102.11deg, #4A4A4A -13.27%, #1D1D1B 103.4%);
}

.fondo-gris-claro-encabezado {
    background-color: #FAF8F6 !important;
    background-image: url('../img/anagrama_naranja.png');
    background-repeat: no-repeat;
    background-position: right 0px top -48px;
}

.fondo-blanco-anagrama {
    background-image: url('../img/anagrama_gris.png');
    background-repeat: no-repeat;
    background-position: right 0px top -48px;
}

.fondo-testimonio {
    background-color: #FFFFFF !important;
    background-image: url('../img/quotes.png');
    background-repeat: no-repeat;
    background-position: right 0px top 0px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Global */

body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #4A4A4A;
}

/* Títulos */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #1D1D1B;
}

h1 {
    font-size: 68px;
    line-height: 76px;
}

h2 {
    font-size: 44px;
    line-height: 58px;
}

h3 {
    font-size: 28px;
    line-height: 42px;
}

h4 {
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    /* or 114% */
    letter-spacing: 0.02em;
}

.subtitulo-seccion::after {
    content: "";
    display: block;
    width: 5rem;
    height: 4px;
    background: #F1621C;
    margin: 8px 0 8px;
}

/* Para la barra de antes de los encabezados */

.titulo-seccion::before {
    content: "";
    display: block;
    width: 5rem;
    height: 4px;
    background: #F1621C;
    margin: .5px 0 8px;
}

main > .content {
    padding: 96px 0 0 0;
}

.section-v100 {
    min-height: calc(100vh - 163px);
}

/* Cabecera */

.main-navbar {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
    -webkit-box-shadow: 0 8px 6px -6px #CCC;
    -moz-box-shadow: 0 8px 6px -6px #CCC;
    box-shadow: 0 8px 6px -6px #CCC;
}

.main-menu {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #444444;
}

    .main-menu li a {
        color: #444444;
    }

        .main-menu li a:hover {
            color: #F1621C;
        }

    .main-menu .active {
        font-weight: 600;
        color: #F1621C !important;
    }

.btn-main {
    background: linear-gradient(110.5deg, #F8A94D 6.86%, #FF671D 82.25%);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    /*display: flex;*/
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 42px;
}

    .btn-main:hover {
        background: linear-gradient(0deg, rgba(167, 70, 0, 0.3), rgba(167, 70, 0, 0.3)), linear-gradient(110.5deg, #F8A94D 6.86%, #FF671D 82.25%);
        color: #FFFFFF;
    }

.btn-alt {
    background: #1D1D1B;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    /*display: flex;*/
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 42px;
}

    .btn-alt:hover {
        background: #4A4A4A;
        color: #FFFFFF;
    }

.custom-toggler .navbar-toggler-icon {
    color: #1D1D1B !important;
}

.navbar-light .navbar-toggler {
    color: #1D1D1B !important;
    border-color: rgba(0,0,0,0) !important;
}

.list-group-item {
    padding: 0 !important;
    border: none !important;
}

/* Contenido */

.encabezado-blog {
    background-image: url('../img/news_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 320px; /**/
}

.p-encabezado {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}

.breadcrumb {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #4A4A4A;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #4A4A4A;
}

.breadcrumb-item.active {
    font-weight: 600 !important;
    color: #1D1D1B !important;
}

.fondo-oscuro {
    background-image: url('../img/bg_dark.png');
    color: #FFFFFF !important;
    font-size: 16px !important;
}

    .fondo-oscuro h4 {
        color: #FFFFFF !important;
    }

/* Formulario */

.formulario-contacto {
    background: #1D1D1B;
    box-shadow: -2px -3px 100px rgba(51, 51, 51, 0.16), 0px 4px 26px rgba(132, 132, 132, 0.18);
    border-radius: 18px;
    color: #FFFFFF;
}

    .formulario-contacto input, .formulario-contacto textarea, .formulario-contacto select {
        background: rgba(255, 255, 255, 0.36);
        border: 1px solid #CCCCCC;
        border-radius: 4px;
    }

.banner-contacto {
    background: #FAF8F6;
    border-radius: 8px;
}

/* Listas */

.lista-check {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style-image: url('../img/check.png');
}

.lista-check-simple {
    list-style-image: url('../img/check.png');
}

.lista-flecha {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style-image: url('../img/arrow.png');
}

    .lista-flecha a {
        color: #F1621C !important;
        font-weight: 600;
        text-decoration: none;
    }

/* Caarousel */

.carousel-image {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

    .carousel-image:hover {
        -webkit-filter: none; /* Safari 6.0 - 9.0 */
        filter: none;
    }

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f1621c'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f1621c'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next {
    padding-left: 8rem;
}

.carousel-control-prev {
    margin-left: -6rem;
}

/* Pie */

.footer-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    padding-right: 10px;
}

.footer-menu {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

    .footer-menu li a {
        color: #FFFFFF;
    }

        .footer-menu li a:hover {
            color: #9D9D9D;
        }

/* Login */
.login-container {
    background: #FFFFFF;
    /* ft */
    box-shadow: 0px 4px 41px rgba(117, 117, 117, 0.19);
    border-radius: 18px;
}

/* Manual */

.menu-manual {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #9D9D9D;
    list-style: none;
    padding-left: 0;
}

    .menu-manual .active {
        font-weight: 600;
        color: #000000;
    }

        .menu-manual .active:before {
            content: "";
            display: block;
            background: url('../img/sidebar_menu_selected.png') no-repeat;
            width: 20px;
            height: 2px;
            float: left;
            margin: 15px 8px 0 0;
        }

    .menu-manual .selected {
        font-weight: 600;
        color: #000000;
    }

        .menu-manual .selected:before {
            content: "";
            display: block;
            background: url('../img/sidebar_submenu_selected.png') no-repeat;
            width: 20px;
            height: 20px;
            float: left;
            margin: 2px 8px 0 0;
        }

    .menu-manual .submenu {
        display: none;
    }

    .menu-manual a {
        color: #9D9D9D;
        text-decoration: none;
    }

    .menu-manual li ul {
        list-style: none;
    }

        .menu-manual li ul li {
            padding-left: 10px;
            padding-bottom: 5px;
            margin-top: 10px;
            margin-bottom: 10px;
            border-bottom: 1px solid #DCDCDC;
        }

            .menu-manual li ul li a {
                color: #1D1D1B;
            }

.article-envelope {
    background: #FFFFFF;
    box-shadow: 0px 4px 111px rgba(27, 33, 90, 0.09);
}

.search-box {
    background: #FFFFFF;
    box-shadow: 0px 6px 32px rgba(114, 114, 114, 0.25);
    border-radius: 4px;
}

    .search-box .form-control {
        border: 1px solid #FFFFFF;
    }

.search-result {
    text-decoration: none;
    color: #1D1D1B;
}

/* Manual Images */
.well-in img {
    max-width: 100%;
    height: auto;
}

.subtittle {
    padding-top: 6px;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    line-height: 19px;
    color: #4A4A4A;
}

.modal-body img {
    max-width: 100%;
    height: auto;
}

blockquote {
    background: #F8A94D;
    border-left: 10px solid #FF671D;
    margin: 20px 0px;
    padding: 10px 20px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 400;
}

/* Blog */
.card-blog {
    border-radius: 18px;
    box-shadow: 0px 4px 41px rgba(117, 117, 117, 0.19);
    /*min-height:420px;*/
}

    .card-blog .card-text {
        font-size: 14px;
    }

.blog-category {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    /* NaranjaNuevo */
    color: #F1621C;
}

.blog-date {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #B6B6B6;
}

.blog-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    /* or 156% */
    /* NegroNuevo */
    color: #1D1D1B;
}

.card-blog a {
    font-family: 'Poppins';
    font-style: normal;
    /*font-weight: 600;*/
    font-size: 14px;
    line-height: 141.5%;
    /* or 20px */
    text-align: right;
    text-decoration-line: underline;
    /* NaranjaNuevo */
    color: #F1621C;
}
