/*
Colores


Azul 1          #1a154f;   rgba(26, 21, 79, 1);
Azul claro 1    #ADD0D8;
Azul claro 2    #7EB3C1;
Azul claro 3    #ADD0D8;
Naranja         #ff9f2e;

*/


/*
Generales
*/
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}
::-moz-selection { 
    color: #fff;
    background: #0D054C;
    text-shadow: none;
}
::selection { 
    color: #fff;
    background: #0D054C;
    text-shadow: none;
}
html{
    background-color: #1a154f;
	font-size: 14px;
	overflow-x: hidden;
	
}
body{
    background-color: #1a154f;
    color: #1a154f;
	padding-top: 100px;
}
section{
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}
section.secc-azul{
    background-color: #1a154f;
}
section.secc-naranja{
    background-color: #ff9f2e;
}
section .container:nth-of-type(2n){
    margin-top: 100px;
}
.divisor-50{
    display: block;
    height: 50px;
    clear: both;
}
.divisor-100{
    display: block;
    height: 100px;
    clear: both;
}
.linea-50{
    background-color: #ff9f2e;
    display: block;
    height: 1px;
    clear: both;
    margin-top: 50px;
    margin-bottom: 50px;
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
/*
Tipografía
*/

h2{
    color: #1a154f;
    margin-bottom: 5rem;
    font-size: 1.7rem;
    line-height: 1.3em;
    font-weight: 300;
    /*letter-spacing: 0.01em;*/
    position: relative;
}
    .subtitulo span{
        background-color: #fff;
        padding-right: 1rem;
        position: relative;
        display: inline-block;
        z-index: 9;
    }
    .subtitulo:before{
        content: " ";
        background-color: #ff9f2e;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 16px;
        left: 0;
        z-index: 8;
    }
section.secc-azul h2,
.subtitulo.subtitulo-azul{
    color: #fff;
}
section.secc-azul .subtitulo span,
.subtitulo.subtitulo-azul span{
    background-color: #1a154f;
}
section.secc-naranja h2,
.subtitulo.subtitulo-naranja{
    color: #1a154f;
}
section.secc-naranja .subtitulo span,
.subtitulo.subtitulo-naranja span{
    background-color: #ff9f2e;
}

section.secc-naranja h2:before{
    background-color: #fff;
}

h1{
    line-height: 1.4em;
}
h3{
    font-size: 1.7rem;
    line-height: 1.3em;
    font-weight: 300;
    letter-spacing: 0.01em;
    position: relative;
}

h3 b, h3 strong, .balazo-txt b, .balazo-txt strong {
    font-weight: inherit;
    position: relative;
    border-bottom: 1px solid #ff9f2e;
}
h4{
    font-size: 1.2rem;
    line-height: 1.3em;
    font-weight: 500;
}
h5{
    font-size: 1.1rem;
    font-weight: 300;
}
h6{
    font-weight: 700;
}

section.secc-azul p{
    color: #fff;
}

.cont-balazo{
    position: relative;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.cont-balazo:before,
.cont-balazo:after{
    content: " ";
    background-color: #ff9f2e;
    display: block;
    position: absolute;
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
    z-index: 8;
}
.balazo{
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 0;
    font-size: 1.7rem;
    line-height: 1.5em;
    text-align: center;
    position: relative;
}
.cont-balazo .balazo:after,
.cont-balazo .balazo:before{
    content: " ";
    position: absolute;
    left: calc(50% - 10px);
    top: -10px;
    width: 20px; 
    height: 20px;
    background: #1a154f;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 9;
}
.cont-balazo:after{
    top: auto;
    bottom: 0;
}
.cont-balazo .balazo:after{
    top: auto;
    bottom: -10px;
}
b, strong{
    font-weight: 500;
}
strong em,
strong i{
    font-weight: 500;
    font-style: italic;
}

/*
links
y
botones
*/

a{
    color: #1a154f;
    display: inline-block;
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}
a:hover{
    color: inherit;
    text-decoration: none;
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}

.btn-ong{
	color: #1a154f;
	background-color: #ff9f2e;
	padding: 0 1rem;
	height: 56px;
    font-size: 1.5rem;
	line-height: 56px;
	border-radius: 10px;
	position: relative;
}
.btn-ong:hover{
    color: #fff;
    background-color: #1a154f;
    text-decoration: none;
}
.btn-ong-trian:after,
.btn-ong-trian:hover:after{
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}
.btn-ong.btn-ong-trian:after{
    content: " ";
    position: relative;
    display: inline-block;
    width: 0; 
    height: 0;
    margin-left: 30px;
    top: 3px; 
    border-left: 15px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
    .btn-ong.btn-ong-trian:hover:after{
        margin-left: 35px;
    }
.btn-ong.btn-ong-over-bco:hover{
    color: #1a154f;
    background-color: #fff;
}
    .btn-ong.btn-ong-over-bco:hover:after{
        border-left-color: #ff9f2e;
    }
/* LIGHT */
.btn-ong.btn-ong-light{
    background-color: #fff;
}
    .btn-ong.btn-ong-light:hover{
        background-color: #1a154f;
        color: #fff;
    }
    .btn-ong.btn-ong-light.btn-ong-trian:after{
        border-left-color: #ff9f2e;
    }
/* SM */
.btn-ong.btn-ong-sm{
	height: 28px;
	font-size: 0.9rem;
	line-height: 28px;
	border-radius: 5px;
}
/* MD */
.btn-ong.btn-ong-md{
    height: 40px;
    font-size: 1.1rem;
    line-height: 40px;
    border-radius: 7px;
}
    .btn-ong.btn-ong-md.btn-ong-trian:after{
        margin-left: 15px;
    }
    .btn-ong.btn-ong-md.btn-ong-trian:hover:after{
        margin-left: 20px;
    }

/*
listas
*/
ul,ol{
    list-style: none;
    padding-left: 0;
}

.navbar .btn-ong{
	top: 3px;
	margin-left: 8px;
}


.link-ong{
    color: #ff9f2e;
    font-size: 1.2rem;
    display: inline-block;
    
}
.link-ong span{
    display: inline-block;
    border-bottom: 1px solid #1a154f;
}
.link-ong:after{
    content: " ";
    position: relative;
    display: inline-block;
    width: 0; 
    height: 0;
    margin-left: 10px;
    top: 3px; 
    border-left: 10px solid #1a154f;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}
.link-ong:hover:after{
    margin-left: 15px;
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}

.link-ong.link-ong-dark span{
    border-bottom-color: #fff;
}
    .link-ong.link-ong-dark:hover{
        color: #fff;
    }
    .link-ong.link-ong-dark:after{
        border-left-color: #fff;
    }

.link-ong.link-ong-dark-2 span{
    color: #1a154f;
    border-bottom-color: #fff;
}
    .link-ong.link-ong-dark-2:hover span{
        color: #fff;
    }
    .link-ong.link-ong-dark-2:after{
        border-left-color: #fff;
    }
/* Icon social */
.icon-social{
    width: 37px;
    height: 37px;
    margin-right: 5px;
    text-align: center;
    display: inline-block!important;
    position: relative;
    z-index: 1;
}
    .icon-social:before{
        content: " ";
        position: absolute;
        left: 5px;
        top: -4px;
        width: 26px; 
        height: 26px;
        background-color: #ADD0D8;
        z-index: -1;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .icon-social:hover:before{
        background-color: #fff;
    }

/*
MENÚ
*/
.cont-menu{
    background:  #1a154f;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0px;
    z-index: 999;
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}
.navbar{
    padding: 17px 0;
}
.nav-item.active > a,
.nav-item > a:hover{
    color: #fff;
    border-bottom: 1px solid #ff9f2e;
}
.nav-item.dropdown a:hover{
	border-bottom: 1px solid transparent;
}
.nav-link{
	color: #fff;
    padding-left:0!important;
    padding-right: 0!important;
    padding-bottom: 0.1rem;
    margin: 0 8px;
    font-size: 0.9rem;
    font-weight: 300;
    position: relative;
    border-bottom: 2px solid #1a154f;
}
.navbar-brand{
    /* background: url('../img/sgi-consultores-logo-back.jpg') no-repeat left center;*/
    background-size: contain;
    width: 200px;
    /*margin-left: 20px;*/
    display: inline-block;
}
.navbar-nav img{

}
/* abir menu en hover */
.dropdown:hover>.dropdown-menu {
 display: block;
}
/*caret*/
.dropdown-toggle::after{
	border-top-color: #ff9f2e;
	margin-left: .1em;
	top: 2px;
    position: relative;
}
/* dropdown menu */
.dropdown-menu{
	background-color: #ff9f2e;
    padding: 0;
    margin: 0;
	border-radius: 0;
	top: 100%;
    left: 5px;
    border: none;
}
.dropdown-item{
    font-size: 0.9em;
    font-weight: 300;
    padding: .75rem 1rem;

}
.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active{
    color: #fff;
    background-color: #1a154f;
    border-bottom: none!important;
}


.cont-menu.scrolled{
    height: 70px;
    position: fixed;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid #ff9f2e;
}
.cont-menu.scrolled,
.cont-menu.scrolled *{
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}
.cont-menu.nop{
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}
.cont-menu.scrollUp{
    transform: translateY(-100px);
    -webkit-transition:all ease .5s;
    -o-transition:all ease .5s;
    transition:all ease .5s;
}
.cont-menu.scrolled .navbar{
    padding: 10px 0;
}
.cont-menu.scrolled .navbar-brand{
    width: 130px;
}
/*
menu movil
*/
.menu-ham{
    /*background-color: #fff;*/
    margin-right: 10px;
}
.menu-ham svg{
    color: red;
}
.mm-spn{
    color: #002f87!important;
    background-color: #fff!important;
}
.mm-spn li a{
    text-transform: uppercase;
    font-weight: 300;
}
.mm-ocd--open{
    background-color: rgba(26, 21, 79, 0.85);
}
.mm-spn li li a{
    text-transform: none;
}

/*
header
*/
header{
	/*margin-top: 100px;
	position: relative;*/
}
.slider-header .owl-stage-outer,
.slider-header .owl-stage,
.slider-header .owl-item,
.cont-slide-header{
    min-height: calc(100vh - 100px);
    position: relative;
}
.slider-header{
    background-color: #1a154f;
}
.cont-slide-header{
    background-size: cover;
}
.slider-header h3{
    color: #fff;
    margin-bottom: 4rem;
}
.slider-header h3:before{
    content: " ";
    position: absolute;
    left: -10px;
    top: -50px;
    width: 20px; 
    height: 20px;
    background: #ff9f2e;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.owl-carousel .owl-dots{
    width: 100%;
    position: absolute;
}
.slider-header.owl-carousel .owl-dots{
    bottom: 40px;
}
.slider-cards.owl-carousel .owl-dots{
    bottom: 20px;
}
.owl-theme .owl-dots .owl-dot span{
    background-color: #ADD0D8;
    width: 13px;
    height: 13px;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span{
    background-color: #ff9f2e;
}

header.interior{
    background-color: #fff;   
}
header.interior > [class^="container"]{
    padding: 0;
}
.cont-header-foto{
    background-color: #fff;
    background-size: cover;
    background-position: center;
}
header.interior .cont-titulo{
    background-color: #333;
    height: auto;
}
header.header-azul .cont-titulo{
    background-color: #1a154f;
}
header.header-naranja .cont-titulo{
    background-color: #ff9f2e;
}
header .cont-titulo .titulo{
    color: #fff;
    padding: 0 2rem 3rem;
    margin-bottom: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 300;
}
header.header-naranja  .cont-titulo .titulo{
    color: #1a154f;
}
.cont-titulo-inner{
    position: relative;
    width: 100%;

}
.cont-titulo-inner:after{
    content: " ";
    background-color: #fff;
    display: block;
    position: absolute;
    width: 50%;
    height: 1px;
    bottom: 0;
    left: 25%;
    z-index: 8;
}
.cont-titulo .titulo:after{
    content: " ";
    position: absolute;
    left: calc(50% - 10px);
    bottom: -10px;
    width: 20px; 
    height: 20px;
    background: #ff9f2e;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 9;
}
header.header-naranja .cont-titulo .titulo:after{
    background: #1a154f;
}

/*
Contenido
*/
.contenido h2{
    margin-bottom: 3rem;
}
.contenido h3{
    margin-bottom: 2rem;
}
.contenido h4{
    margin-bottom: 2rem;
}
.contenido p{
    margin-bottom: 2rem;
}
.contenido li{
    margin-bottom: 5px;
}
.contenido ol{
    list-style: decimal inside;
}
.contenido ol.roman{
    list-style: lower-roman inside;
}
.contenido ol.roman ol{
    list-style: decimal;
}
.contenido ol.roman ol ol{
    list-style: lower-roman;
}
.contenido ol.abc{
    list-style: lower-latin inside;
}
.contenido img{
    max-width: 100%;
    height: auto!important;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.contenido ul,
.contenido ol{
    margin-bottom: 2rem;
    font-size: 0.9rem;
}
.contenido ul li,
.contenido ol li{
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}
.contenido ul li{
    border-bottom: 1px solid #ff9f2e;
    position: relative;
}
    .contenido ul.no-raya li{
        border-bottom: none;
    }
    .contenido ul li:last-child{
        border-bottom: none;
    }
    .contenido ul li:before{
        content: " ";
        position: absolute;
        left: -20px;
        top: 7px;
        width: 7px; 
        height: 7px;
        background: #ff9f2e;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.contenido ol ol,
.contenido ul ul{
    padding-left: 20px!important;
    padding-right: 0!important;
    margin: 15px 0;
}
/*
Slider cards
*/

.slider-cards{
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 100px;
    position: relative;
}

.slider-cards.owl-carousel .owl-item{
   
}
.card-foto{
    background-color: #1a154f;
    height: 100%;
}
.card-foto.interior{
    margin-bottom: 5rem;
    height: auto;
}
.card-foto-img{
    width: 100%;
}

.card-foto-img a{
    overflow: hidden;
    display: block;
}
.card-foto-img a img{
    /*-webkit-transition:all ease .3s;
    -o-transition:all ease .3s;
    transition:all ease .3s;*/
    margin: 0;
    max-width: 100%!important;
}
.card-foto-img a:hover img{
    filter: grayscale(40%);
    transform: scale(101%);
    /*-webkit-transition:all ease .3s;
    -o-transition:all ease .3s;
    transition:all ease .3s;*/
}
.card-foto-img .fecha{
    background-color: #ff9f2e;
    padding: 7px;
    font-size: 0.85rem;
    text-transform: capitalize;
    position: absolute;
    top: 0px;
    left: 15px;
    z-index: 95;
    border-radius: 0;
}

.card-foto-txt{
    padding: 2rem 1rem 1rem;
    position: relative;
}
    .card-foto-txt:before{
        content: " ";
        position: absolute;
        left: calc(50% - 10px);
        top: -10px;
        width: 20px; 
        height: 20px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
.card-foto-txt h4{
    font-size: 1.1rem;
    text-align: center;
    min-height: 6em;
    padding: 0!important;
}
    .card-foto.interior .card-foto-txt h4{
        font-size: 1rem;
        min-height: 4em;
        padding: 0!important;
    }
.card-foto-txt h4 a{
    color: #fff;
}
    .card-foto-txt h4 a:hover{
        color: #ff9f2e;
    }
.card-foto-txt p{
    padding-left: 0!important;
    padding-right: 0!important;
}
.card-foto-txt .tags{
    text-align: center;
}
.card-foto-txt .tags{
    margin-bottom: 1rem;
}
.tags a{
    font-size: 0.9em;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}
    .tags a:hover{
        color: #ff9f2e;
    }
    .tags span:last-child{
        display: none;
    }
.card-foto-txt .tags a {
    color: #fff;
    font-size: 0.8em;
    padding: 0 5px;
    position: relative;
    display: inline;
    opacity: 0.5;
}
    .card-foto-txt .tags a:hover{
        color: #ff9f2e;
        opacity: 1;
    }
    /*.tags a:after{
        content: " ";
        position: absolute;
        background-color: #ff9f2e;
        right: -7px;
        top: 8px;
        width: 8px; 
        height: 8px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }*/
    .card-foto-txt .tags a:last-child:after{
        display: none;
    }


/* Card solo texto DIRECCIONES Dark*/

.cont-card-text{
    margin-bottom: 3rem;
}
.cont-card-text:nth-child(even) .card-txt{
    background-color: #7EB3C1;
}
.cont-card-text:nth-child(odd) .card-txt{
    background-color: #ADD0D8;
}
.cont-card-text.cont-card-dark .card-txt{
    background-color: #1a154f;
}
.card-txt{
    width: 100%;
    padding: 2rem 1rem 1rem;
    margin-top: 3rem;
    position: relative;
}
    .card-txt:before{
        content: " ";
        position: absolute;
        left: calc(50% - 10px);
        top: -10px;
        width: 20px; 
        height: 20px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .cont-card-text.cont-card-dark .card-txt:before{
        background-color: #ff9f2e;
    }
.card-txt h4{
    text-align: center;
    min-height: 6rem;
}
.card-txt h4 a:hover{
    color: #fff;
}
    .cont-card-text.cont-card-dark .card-txt h4 a{
        color: #fff;
    }
    .cont-card-text.cont-card-dark .card-txt h4 a:hover{
        color: #ff9f2e;
    }


/* Card foto grande */
.card-foto-lg{
    background-color: #1a154f;
}
.card-foto-lg .card-foto-txt{
    padding: 2rem 1.5rem 1rem;
}
.card-foto-lg p{
    color: #fff;
    max-width: 100%;
    margin-bottom: 2rem;
}
.card-foto-lg h2{
    margin-bottom: 2rem;
}

/*
Card UL
*/

.card-ul{
    margin-top: 4rem;
    margin-bottom: 6rem;
}
.card-ul div.cont-card-ul{
    height: 150px;
    padding: 3px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    position: relative;
}
    .card-ul div.cont-card-ul:before{
        content: " ";
        position: absolute;
        left: calc(50% - 10px);
        top: -4px;
        width: 15px; 
        height: 15px;
        background: #ff9f2e;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
.card-ul div.cont-card-ul > div{
    background-color: #1a154f;
    width: 100%;
    padding: 10px;
}
div.cont-card-ul > div > *{
    width: 100%;
    color: #fff;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}
/*
Card Text Full
*/
.card-text-full-tit{
    color: #fff;
    background-color: #1a154f;
    padding:  2rem;
    text-align: center;
    position: relative;
}
.card-text-full-tit:before{
    content: " ";
    position: absolute;
    left: calc(50% - 10px);
    bottom: -10px;
    width: 20px; 
    height: 20px;
    background: #ff9f2e;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.card-text-full-tit > *{
    font-weight: 300;
}
.card-text-full-txt{
    padding: 20px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height:fff;
    border:  1px solid #1a154f;
}
.card-text-full-txt ul{
    margin-bottom: 0;
}
/*
VIDEOS
*/
.video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; margin-bottom: 50px; } 
.video-container iframe, 
.video-container object, 
.video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
#related{
    margin-top: 100px;
}

/*
Ribbon
*/

.ribbon{
    background-color: #ADD0D8;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.ribbon h5{
    margin-bottom: 0;
    text-align: center; 
}
.ribbon a{
    margin-left: 1.5rem;
}

/*
Forma
*/
dt{
    display: none;
}
form dl,
form dd{
    margin-bottom: 0;
}
.form-control, .form-control::placeholder, .form-control:focus, .form-control:visited, .form-control:active {
    background-color: transparent;
    color: #1a154f;
    min-height: 40px;
    outline: none;
}
.secc-azul .form-control, 
.secc-azul .form-control::placeholder,
.secc-azul .form-control:focus,
.secc-azul .form-control:visited, 
.secc-azul .form-control:active {
    color: #fff;
}
.form-control {
    background-color: transparent;
    color: #1a154f;
    height: 50px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 300;
    border-radius: 0;
    border: 1px solid #ff9f2e;
    background-clip: unset;
}
    .form-control.input-error::placeholder{
        color: red;
        font-size: 0.9rem;
        font-weight: 500;
    }
.send-form {
    background: #1a154f url('../img/icon-flecha-naranja.svg') no-repeat 85% 55%;
    color: #fff;
    padding: 0 45px 0 30px;
    height: 56px;
    font-size: 1.2rem;
    border-radius: 10px;
    position: relative;
    border: none;
    outline: none;

}
    .send-form:hover{
        background-color: #ff9f2e;
        background-image: url('../img/icon-flecha-blanco.svg');
        color: #1a154f;
    }
section.secc-azul .send-form{
    background-color: #ff9f2e;
    background-image: url('../img/icon-flecha-blanco.svg');
    color: #1a154f;
}
    section.secc-azul .send-form:hover{
        background-color: #fff;
        background-image: url('../img/icon-flecha-naranja.svg');
    }

.secc-naranja .form-control{
    border-color: #fff;
}
.secc-azul .form-control{
    border-color: #7EB3C1;
}
.secc-naranja .send-form:hover{
    background-color: #fff;
    background-image: url('../img/icon-flecha-naranja.svg');
}

.datos-posts{
    margin-bottom: 80px;
}
.datos-posts *{
    text-transform: capitalize;
}
.datos-posts a{
    text-decoration: underline;
    text-underline-offset: 0.3em;
}
/* FOOTER */
footer{
    
    border-top: 5px solid #ff9f2e;
}
.footer-inner{
    padding-top: 5rem;
    padding-bottom: 2rem;
    background-color: #1a154f;
}
    .footer-inner h6{
        color: #fff;
        min-height: 4rem;
    }
    .footer-inner p{
        color: #ADD0D8;
        font-size: 0.85rem;
        line-height: 1.4em;
    }
    .footer-inner p a,
    .footer-inner p span{
        color: #ADD0D8;
        display: block;
        margin-bottom: .6rem;
    }
    .footer-inner p a:hover{
        color: #fff;
    }
    .cont-inner{
        margin-top: 70px;
    }

.footer-disclaimer{
    background-color: #ff9f2e;
    color: #1a154f;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}
    .footer-disclaimer p{
        margin-bottom: 0;
        font-size: 0.8rem;
    }

.edit{
    background-color: orange;
    color: #fff;
    position: fixed;
    width: 50px;
    height: 30px;
    right: 0;
    top: 50%;
    z-index: 99999;

}
    .edit p{
        font-size: 0.8rem;
        padding: 5px;
        text-align: center;
    }

/*
Colores


Azul 1          #1a154f;   rgba(26, 21, 79, 1);
Azul claro 1    #ADD0D8;
Azul claro 2    #7EB3C1;

Naranja         #ff9f2e;

*/


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) -- md -- */
@media (min-width: 768px) {
    header.interior .cont-titulo{
        height: 430px;
    }
    header.interior .cont-titulo.cont-titulo-tags{
        height: 250px;
    }
    .contenido p,
    .contenido h4,
    .contenido ul,
    .contenido ol,
    .contenido .card-text-full{
        padding-left: 90px;
        padding-right: 90px;
    }
    .contenido .card-text-full ul{
        padding-left: 20px;
        padding-right: 0;
    }
    .contenido img{
        max-width: calc(100% + 180px)!important;
        margin-left: -90px;
        margin-right: -90px;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    .cont-header-foto:before{
        content: " ";
        position: absolute;
        left: -10px;
        top: calc(50% - 10px);
        width: 20px; 
        height: 20px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
  
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    html{
        font-size: 15px;
    }
    h2{
        font-size: 1.8rem;
    }
    h3{
        font-size: 1.6rem;
    }
    .slider-header h3{
        margin-bottom: 0;
    }
    .card-foto-lg p{
        max-width: 66.6%;
    }
    .subtitulo:before{
        top: 20px;
    }
    

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    html{
        font-size: 16px;
    }

}


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {



}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    .slider-header.owl-carousel .owl-dots{
        bottom: 80px;
    }
    header.interior .cont-titulo > div:first-child{
        min-height: 200px;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    header.interior .cont-titulo > div:last-child{
        min-height: 200px;
    }
    .contenido ul{
        padding-left: 20px;
    }
    .cont-card-text{
        padding-right: 5px;
        padding-left: 5px;
    }
    .cont-card-foto-lg {
        margin-top: 2rem;
    }
    .ribbon a{
        margin-top: 1.5rem;
    }
    .footer-inner h6{
        min-height: 1rem;
        margin-bottom: 25px;
        margin-top: 20px;
    }
    .footer-inner h6,
    .footer-inner p{
        text-align: center;
    }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

    
}   

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

}





