@charset "utf-8";
/* CSS CUSTOM LINK SISTEMAS WEB  */
/* color oscuro: 24272A */
/* color verde: 546122 - evitar */
/* color medio: ACA199 */
/* color claro: E5E1E6 */

/* fixes para scroll del header 3d */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    margin: 0;
}



/* header con texto 3d con loop para moviles */
#header {
    height: 100vh; /* 100% de la altura del viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
/* Efecto 3D */
#ex1-layer {
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
}

/* letras y tamaños para texto 3D */
#header h1, #header a {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: lowercase;
    color: #161223;
    /* color: #ACA199; */
}
#header h1 {
    font-size: clamp(2rem, 10vw, 120px);
    font-weight: 800;
    line-height: 1.1; /* 110% del tamaño de la fuente */
}
#header a {
    font-size: clamp(1rem, 10vw, 30px);
    font-weight: 500;
    line-height: 1.1; /* 110% del tamaño de la fuente */
    text-decoration: none;
}

/* boton y bg */

#header-fondo {
	position: absolute;
    background-image:url("../images/header-background-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100; 
}

@keyframes fadeIn {
  from {
    opacity: 0; /* Start completely transparent */
  }
  to {
    opacity: 1; /* End fully opaque */
  }
}

.header {
  opacity: 0; /* Ensures the element is hidden initially */
  animation-name: fadeIn; /* Links to the keyframe rule */
  animation-duration: 5s; /* How long the animation takes */
  animation-fill-mode: forwards; /* Keeps the final state after animation */
}


.header .header-content {
    background: none;
}
.btn-solid-lg {
    border: 1px solid #ACA199;
    background-color: #ACA199;
	border-radius: 0px;
}
.btn-solid-lg:hover {
    color: #ACA199;
}


/* estado inicial, logo blanco escondido, menu oscuro */
#logo-blanco {
	display: none;
}

/* menu */
.navbar .logo-image img {
    width: 100%;
    height: 32px;
}
.navbar .fa-stack-2x {
    color: #ACA199;
}
.navbar .fa-stack:hover .fa-stack-1x {
    color: #ACA199;
}
.navbar .dropdown-item:hover {
    color: #ACA199;
}


/* Menu colores blancos */
.navbar .nav-item .nav-link {
	color: #24272A;
}
.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show>.nav-link {
	color: red;
}
.navbar .nav-item.dropdown.show .nav-link, .navbar .nav-item .nav-link:hover, .navbar .nav-item .nav-link.active {
	color: #ACA199;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
	color: #ACA199;
}
/* movil */
.offcanvas-collapse {
    background-color: #FFFFFF;
	width: 70%;
}


/* MENU FIX SPM! */
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{   }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}
.dropdown-menu {
    min-width: 7rem;
}


/* buscar en menu */
.buscar {
	padding-left: 20px;
}
.buscar a:hover {
	color: #ACA199;
	transition: all 0.2s ease;
}
#search {
	z-index: 9999;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
}
#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
}
#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}
@media (max-width: 768px){
	#search input[type="search"] {
		font-size: 7.5vw;
	}
}
#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -57px;
	background-color: #ACA199;
	border-color: #ACA199;
	border-radius: 0;
	color: #24272A;
	font-size: 2rem;
}
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
	background-color: transparent;
	border-color: transparent;
	opacity: 1;
	padding: 10px 10px;
}

/* clears the 'X' from Internet Explorer */
#search input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
#search input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
#search input[type="search"]::-webkit-search-decoration,
#search input[type="search"]::-webkit-search-cancel-button,
#search input[type="search"]::-webkit-search-results-button,
#search input[type="search"]::-webkit-search-results-decoration { display: none; }









/* the world slider */
#the-world .swiper-slide .card {
	max-width: 80%;
}





/* clientes */
.cliente-image {
	max-width: 180px;
}


/* acerca */
.bg-gray {
    background-color: #E5E1E6;
}
@media (min-width: 992px) {
	.split .area-1 {
		float: left;
	}
}


/* servicios */
.green {
    color: #ACA199;
}
.filter .button:hover, .filter .button.is-checked {
    background-color: #ACA199;
}
/* proyectos */
.proyecto-info p {
	margin-bottom: 0px;
}


/* team */
.slider-1 .testimonial-image {
    object-fit: cover;
}
.centrado {
	margin: auto;
}
.team .swiper-slide .card {
	max-width: 20rem;
}


/* noticias */
.noticias {
	text-align: left;
	margin-bottom: 60px;
}
.noticias img {
    margin-bottom: 1.125rem;
    border-radius: 8px;
}


/* border radius imagen */
.basic-1 .image-container img, .basic-2 .image-container img, .basic-3 .image-container img, .filter .element-item img, .noticias img {
    border-radius: 0px;
}
.card-img, .card-img-top {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.card {
    border-radius: 0px;
	border: 1px solid #E5E1E6;
}

#myBtn {
    border-radius: 0px;
}


/* LISTA DE CONTENIDOS */
/* header interiores */
.ex-header {
    background-color: #FFFFFF;
}
.ex-header h1 {
    color: #24272A;
	font-size: 4.5rem;
	line-height: 4.5rem;
}
@media (max-width: 768px) {
	.ex-header h1 {
		font-size: 3rem;
		line-height: 3rem;
	}
}

/* lista contenidos video thumb responsive 16:9 */
.contenido-item {
	margin-bottom: 6rem;
}
.contenido-item h2 a {
	text-decoration: none;
	transition: all 0.2s ease;
}
.contenido-item h2 a:hover {
	color: #ACA199;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.2%;
}
.video-wrapper img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* catego, tags y vistas */
.blog-info-link {
	padding-left: 0;
	display: inline-block;
}
.blog-info-link li {
	float:left;
	font-size: .8rem;
	list-style: none;
}
.blog-info-link li a{
	color:#999999;
	text-decoration: none;
}
.blog-info-link li i, .blog-info-link li span {
	font-size:13px;
	margin-right:5px
}
.blog-info-link li::after { 
	content:"|";
	padding-left:10px;
	padding-right:10px
}
.blog-info-link li:last-child::after {
	display:none
}
/* paginacion */
#SoloMovil {
    display: none;
}
@media (max-width: 768px) {
	#hide {
	display:none;
	}
	#SoloMovil {
	display:inline;
    padding: 10px;
    margin-left: -10px;		
	}
}
/* paginacion estilo de esta plantilla */
.blog-pagination {
	margin-top:80px;
}
.page-link:hover {
	text-decoration: none;
    background-color: #E5E1E6;
    border-color: #E5E1E6;
}
.blog-pagination .page-link {
	font-size:14px;
	position:relative;
	display:block;
	padding:0;
	text-align:center;
	margin-left:-1px;
	line-height:45px;
	width:45px;
	height:45px;
	border-radius:0 !important;
	color:#8a8a8a;
	border:1px solid #f0e9ff;
	margin-right:10px;
}
.blog-pagination .page-link i, .blog-pagination .page-link span {
	font-size:13px;
}
.blog-pagination .page-item.active .page-link {
    background-color: #ACA199;
    border-color: #ACA199;
    color: white;
}
.blog-pagination .page-item:last-child .page-link {
	margin-right:0;
}


/* CONTENIDOS */

.ex-basic-1 a, .compartir a, .ex-basic-1 a h4, .media-body a h3  {
    text-decoration: none;
	transition: all 0.2s ease;	
}

.ex-basic-1 a:hover, .compartir a:hover, .ex-basic-1 a h4:hover, .media-body a h3:hover {
    color: #ACA199;
}

@media (max-width: 768px){
	.wa-contenido {
		text-align: center;
	}
}
.compartir {
	font-weight: bold;
}
/* navegador contenidos */
.navigation-area {
    border-top: 1px solid #E5E1E6;
    border-bottom: 1px solid #E5E1E6;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.navigation-area .nav-left {
    text-align: left;
}
.navigation-area .nav-left .thumb {
    margin-right: 20px;
    background: #000;
}
.navigation-area .nav-left .thumb img {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.miniatura-60-60 {
    object-fit: cover;
    width: 60px;
    height: 60px;
}
.navigation-area p {
    margin-bottom: 0px;
}
.navigation-area h4 {
    font-size: 18px;
    line-height: 25px;
}
.navigation-area .arrow {
    position: absolute;
}
.navigation-area .nav-left .lnr {
    margin-left: 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.navigation-area .arrow .lnr {
    font-size: 20px;
}
.navigation-area .nav-left:hover .lnr {
    opacity: 1;
}
.navigation-area .nav-left:hover .thumb img {
  opacity: .5;
}
@media (max-width: 767px) {
  .navigation-area .nav-left {
    margin-bottom: 30px;
  }
}
.navigation-area .nav-right {
  text-align: right;
}
.navigation-area .nav-right .thumb {
  margin-left: 20px;
  background: #000;
}
.navigation-area .nav-right .thumb img {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navigation-area .nav-right .lnr {
  margin-right: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navigation-area .nav-right:hover .lnr {
  opacity: 1;
}
.navigation-area .nav-right:hover .thumb img {
  opacity: .5;
}


/* mapa iframe responsivo */
.mapa-responsivo {
	height: 500px;
}
.mapa-responsivo iframe {
    /*
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
    */
	width: 100%;
}
.mapa-ratio-1-1 {
    padding-bottom: 100%;
}
.mapa-ratio-4-3 {
    padding-bottom: 75%;
}
.mapa-ratio-16-9 {
    padding-bottom: 56.25%;
}
.mapa-ratio-21-9 {
    padding-bottom: 42.85%;
}


/* formularios */
.form-contact input, .form-contact textarea {
	border-radius: 0px;
}
.alert button {
    background: transparent;
    border: none;
}
.alert {
    border-radius: 0px;
}



/* SIDEBAR LISTAS Y CONTENIDO */
/* cajas color */
.blog_right_sidebar .single_sidebar_widget {
  background: #E5E1E6;
  padding: 30px;
  margin-bottom: 30px;
}
/* ICO buscar ok */
.blog_right_sidebar .search_widget .input-group button {
	background: #ACA199;
	border: 1px solid #ACA199;
	padding: 4px 15px;
	height: 50px;
}
/* BOTON buscar ok */
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.boxed-btn {
    background: #fff;
    color: #ACA199 !important;
    display: inline-block;
    padding: 18px 44px;
    font-size: 14px;
    font-weight: 400;
    border: 0;
    border: 1px solid #ACA199;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}
.boxed-btn:hover {
    background: #ACA199;
    border: 1px solid #ACA199;
	color: #ffffff!important;
}
/* titulos */
.blog_right_sidebar .widget_title {
    margin-bottom: 40px;
}
.blog_right_sidebar .widget_title::after {
    content: "";
    display: block;
    padding-top: 15px;
    border-bottom: 1px solid #ACA199;
}
/* lista categorias */
.blog_right_sidebar .post_category_widget ul {
    margin: 0px;
    padding: 0px;
}
.blog_right_sidebar .post_category_widget .cat-list li {
    border-bottom: 1px solid #ACA199;
    transition: all 0.3s ease 0s;
	list-style: none;
}
.blog_right_sidebar .post_category_widget .cat-list li + li {
  padding-top: 15px;
}
.blog_right_sidebar .post_category_widget .cat-list li:last-child {
  border-bottom: 0;
}
.blog_right_sidebar .post_category_widget .cat-list li a {
    justify-content: space-between;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
}
.blog_right_sidebar .post_category_widget .cat-list li a:hover p {
	color: #ACA199;
}
/* ultimas notas y notas relacionadas */
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.blog_right_sidebar .popular_post_widget .post_item + .post_item {
    margin-top: 20px;
}
.miniatura-80-80 {
    object-fit: cover;
    width: 80px;
    height: 80px;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body {
    justify-content: center;
    align-self: center;
    padding-left: 20px;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 0px;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
    transition: all 0.3s linear;
}
/* etiquetas populares */
.blog_right_sidebar .tag_cloud_widget ul li {
    display: inline-block;
}
.blog_right_sidebar .tag_cloud_widget ul li a {
    display: inline-block;
    border: 1px solid #ACA199;
    background: #fff;
    padding: 4px 20px;
    margin-bottom: 8px;
    margin-right: 3px;
    transition: all 0.3s ease 0s;
    color: #888888;
    font-size: 13px;
}
.blog_right_sidebar .tag_cloud_widget ul li a:hover {
    background: #ACA199;
	color:#FFFFFF;
}



/* CONTACTO */
.media {
	margin-bottom: 30px;
}
.contact-info__icon {
    margin-right: 20px;
	color: #ACA199;
}
.media-body a, .media-body span {
    font-size: 1.5rem;
    line-height: 1.5rem;
}
.media-body i {
    margin-left: 8px;
}



/* footer */
.footer {
    background-color: #24272A;
}
.footer a, .copyright a {
    color: #E5E1E6;
}
.footer a:hover, .copyright a:hover {
    color: #ACA199;
}
.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
    color: #ACA199;
}
.copyright {
    background-color: #24272A;
}
#myBtn:hover {
    background-color: #ACA199;
}









