/* fgarridop */
/* Variables */
:root {
    --primary-color-hex: #236AB2;
    --primary-color-rgb: 35, 106, 178;
    --footer-bg-color: #2369b2;
    --bottom-slider-bg-color: #c2d6ee;
    --gob-ribbon-red: #f66568;
    --gob-ribbon-blue: #256fb4;
}

/* Reset y estilos base */
body {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

p {
    font-size: 1em;
}

.logo-header{
	width:220px;
	height:auto !important;
}

/* Utilidades */
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--primary-color-rgb), var(--bs-bg-opacity)) !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--primary-color-rgb), var(--bs-text-opacity)) !important;
}

.small {
    font-size: 0.7em !important;
}

.date {
    font-size: 0.7em;
    font-weight: 300;
}

.title {
    font-size: 1.1em;
    font-weight: 600;
}

.title-sm {
    font-size: 1em;
    font-weight: 600;
}

.featured-post-single,
#homeCarousel {
    position: relative;
    overflow: hidden;
}

/* Componentes */
/* Carousel */
.featured-post-single::after,
#homeCarousel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.8)
    );
}

#homeCarousel .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 1320px;
    min-height: 743px;
    overflow: hidden;
}

#homeCarousel .carousel-caption {
    position: absolute;
    z-index: 9;
}

#homeCarousel .carousel-control-next,
#homeCarousel .carousel-control-prev,
#homeCarousel .carousel-indicators {
    z-index: 9;
}

/* Navigation */
.container.nav-menu {
    position: absolute;
    top: 0 !important;
    z-index: 999999 !important;
}

.container.nav-menu .nav-link {
    font-size: 0.8em !important;
    color: #fff;
    padding: 1em 2em;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    inset: 0 auto auto 0;
    margin: 0;
    transform: translate(0, 47px);
    border-radius: 0;
    border: none;
    font-size: 0.75em;
}

#navbarNav .dropdown-menu.show {
    display: flex;
    flex-direction: column;
    width: fit-content;
    min-width: 100%;
}

#navbarNav .dropdown-menu[data-bs-popper] {
    top: 0 !important;
}

/* Featured Post */
.container.featured-post {
    position: relative;
    top: 0 !important;
}

.container.featured-post.single .post-img-featured,
#homeCarousel .carousel-item {
    width: 100%;
    height: 100%;
    max-width: 1320px;
    height: 743px;
    overflow: hidden;
    position: relative;
}

.container.featured-post.single .post-img-featured img,
#homeCarousel .carousel-item img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Bottom Slider */
.bottom-slider {
    background-color: var(--bottom-slider-bg-color);
}

/* Footer */
.footer {
    background-color: var(--footer-bg-color) !important;
    color: #fff;
}

.footer a {
    color: #fff;
    font-size: 0.8em;
}

.footer .disclamer {
    font-size: 0.7em;
}

/* Gob Ribbon */
.gob-ribbon {
    height: 3px;
}

.gob-ribbon-bold {
    height: 12px;
}

.gob-ribbon .red,
.gob-ribbon-bold .red {
    background-color: var(--gob-ribbon-red);
}

.gob-ribbon .blue,
.gob-ribbon-bold .blue {
    background-color: var(--gob-ribbon-blue);
}

/* Icons */
.icon::before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    font-size: 1.6em;
    color: #fff;
    display: inline-block;
    padding-right: 5px;
}

.icon-facebook::before { content: "\f09a"; }
.icon-twitter::before { content: "\e61a"; }
.icon-flickr::before { content: "\f16e"; }
.icon-youtube::before { content: "\f167"; }
.icon-instagram::before { content: "\f16d"; }
.icon-pinterest::before { content: "\f0d2"; }
.icon-vimeo::before { content: "\f40a"; }
.icon-linkedin::before { content: "\f08c"; }
.icon-slideshare::before { content: "\f1e7"; }
.icon-scribd::before { content: "\f28a"; }
.icon-soundcloud::before { content: "\f1be"; }

.pswp{
	z-index: 999999 !important;
}

.featured-post .card-body p{
	margin-bottom:1em;
	font-size:18px;
}

/* Media Queries */
@media screen and (max-width: 919px) {
    #menu-menu-principal {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: nowrap;
    }
	
	.featured-post .card-body p{
	margin-bottom:1em;
	font-size:16px;
}
	
}