@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
	--bs-body-font-family: 'Roboto Condensed', sans-serif;
	--bs-body-color: #363431;
	--bs-primary-rgb: 235, 124, 18;
	/* --bs-secondary-rgb: 255, 238, 0; */
	--bs-success-rgb: 92, 124, 27;
	--bs-info-rgb: 25, 47, 93;
	--bs-warning-rgb: 235, 124, 18;
	--bs-border-color: #dddddd;
	--bs-light-rgb: 235, 235, 235;
	--bs-border-radius-xxl: 1.4rem;
	--c1: #eb7c12;
	--c2: #363431;

	--bs-blue: #0d6efd;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #dc3545;
	--bs-orange: #fd7e14;
	--bs-yellow: #ffc107;
	--bs-green: #198754;
	--bs-teal: #20c997;
	--bs-cyan: #0dcaf0;
	--bs-black: #000;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #343a40;
	--bs-gray-100: #f8f9fa;
	--bs-gray-200: #e9ecef;
	--bs-gray-300: #dee2e6;
	--bs-gray-400: #ced4da;
	--bs-gray-500: #adb5bd;
	--bs-gray-600: #6c757d;
	--bs-gray-700: #495057;
	--bs-gray-800: #343a40;
	--bs-gray-900: #212529;
	--bs-primary: #0d6efd;
	--bs-secondary: #6c757d;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #ffc107;
	--bs-danger: #dc3545;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
}

html[data-bs-theme="grey"] {
	filter: grayscale(1) !important;
}

::selection {
	background-color: #222222;
	color: #fff;
}

/* ------ mainBanner ------ */
.logo {
	height: 75px;
}
#mainBanner {
	height: calc(100svh - 130px);
}
#mainBanner.inside {
	height: 38svh;
    z-index: 0;
}
#mainBanner::after {
	background-color: rgba(22, 22, 22, .5);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
#mainBanner .rowBanner {
	left: 0;
	top: 0;
	z-index: 10;
}
.mainImg {
	object-position: center;
	height: 100%;
	width: 100%;
}

.banner {
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	height: 500px;
}
@media (max-width:800px) {
	#mainBanner {
		height: 100svh;
	}
}
@media (max-width:768px) {
	.logo {
		height: 60px;
	}
}


/* ------ navBar ------ */
#navBarMain {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 16;
}
#navBarMain .nav-link {
	--bs-nav-link-color: #fff;
	--bs-nav-link-hover-color: var(--c1);
	font-size: 1.15rem;
	font-weight: 700;
	padding-left: 1rem;
	padding-right: 1rem;
	text-transform: uppercase;
}
#navBarMain .nav-link:hover {
	color: var(--c1);
}
#navBarMain .navbar-nav .nav-link.active,
#navBarMain .navbar-nav .nav-link.show {
	background-color: rgba(46, 44, 41, .75);
	color: var(--c1);
}


/* ------ btn ------ */
.btn {
	border-radius: 0;
	font-size: 1.15rem;
	font-weight: 500;
	padding: .6rem 1.1rem;
}
.btn-primary {
  --bs-btn-bg: var(--c1);
  --bs-btn-border-color: var(--c1);
  --bs-btn-hover-bg: #db6a00;
  --bs-btn-hover-border-color: #db6a00;
  --bs-btn-active-bg: #db6a00;
  --bs-btn-active-border-color: #db6a00;
}
.btn-outline-primary {
	--bs-btn-color: var(--c1);
	--bs-btn-border-color: var(--c1);
	--bs-btn-hover-bg: var(--c1);
	--bs-btn-hover-border-color: var(--c1);
	--bs-btn-active-bg: var(--c1);
	--bs-btn-active-border-color: var(--c1);
	--bs-btn-disabled-color: var(--c1);
	--bs-btn-disabled-border-color: var(--c1);
}
.btn-info {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--c4);
	--bs-btn-border-color: var(--c4);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--c4);
	--bs-btn-hover-border-color: var(--c4);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--c4);
	--bs-btn-active-border-color: var(--c4);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--c4);
	--bs-btn-disabled-border-color: var(--c4);
  }
.btn-outline-info {
	--bs-btn-color: var(--c4);
	--bs-btn-border-color: var(--c4);
	--bs-btn-hover-bg: var(--c4);
	--bs-btn-hover-border-color: var(--c4);
	--bs-btn-active-bg: var(--c4);
	--bs-btn-active-border-color: var(--c4);
	--bs-btn-disabled-color: var(--c4);
	--bs-btn-disabled-border-color: var(--c4);
}
.btn-outline-warning {
	--bs-btn-color: #f3e2b4;
	--bs-btn-border-color: #f3e2b4;
	--bs-btn-hover-bg: #f3e2b4;
	--bs-btn-hover-border-color: #f3e2b4;
	--bs-btn-active-bg: #f3e2b4;
	--bs-btn-active-border-color: #f3e2b4;
	--bs-btn-disabled-color: #f3e2b4;
	--bs-btn-disabled-border-color: #f3e2b4;
}
.btn-outline-success {
	--bs-btn-color: var(--c2b2);
	--bs-btn-border-color: var(--c2b2);
	--bs-btn-hover-bg: var(--c2b2);
	--bs-btn-hover-border-color: var(--c2b2);
	--bs-btn-active-bg: var(--c2b2);
	--bs-btn-active-border-color: var(--c2b2);
	--bs-btn-disabled-color: var(--c2b2);
	--bs-btn-disabled-border-color: var(--c2b2);
}


/* ------ misc ------ */
.fs-5b {
	font-size: 1.18rem;
}
.fs-5c {
	font-size: 1.25rem;
}
.pad0 p:last-child {
	margin-bottom: 0;
}
.mainPad {
	padding-bottom: 6rem;
	padding-top: 6rem;
}
[data-bs-theme="dark"] .mainPad {
	color: #f5f5f5!important;
}
.borderImg {
	border-right: 9px solid var(--c1);
}
.borderImg2 {
	border-left: 9px solid #41403f;
}
@media (max-width:1400px) {
	.fs-5 { font-size: 1.2rem !important }
	.fs-5b { font-size: 1.14rem !important }
}

[data-bs-theme="dark"] .mainPad .card-body p {
	color: #f5f5f5!important;
}
[data-bs-theme="dark"] .servicesBg {
	display:none;
}
[data-bs-theme="dark"] footer a {
	color: #f5f5f5!important;
}
[data-bs-theme="dark"] .copyrights,
[data-bs-theme="dark"] .copyrights a{
	background-color: #1c1e20!important;
	color: #f5f5f5!important;
}
@media (max-width:992px) {
	.mainPad {
		padding-bottom: 3rem;
		padding-top: 3rem;
	}
}


/* ------ mainCols ------ */
.mainCols {
	height: 100%;
	height: 100svh;
	left: 0;
	mix-blend-mode: multiply;
	/* mix-blend-mode: difference; */
	pointer-events: none;
	position: absolute;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}
.mainCols > div {
	position: relative;
}
.mainCols > div::after {
	background-color: #3a3a3a;
	content: "";
	height: 100px;
	position: absolute;
	mix-blend-mode: multiply;
	right: -1px;
	opacity: .75;
	/* top: -60px; */
	bottom: -10%;
	width: 1px;
	z-index: 1000;
	animation: slideDown 4s ease-in-out infinite;
}
@keyframes slideDown {
    0% {
        bottom: -10%; /* Empieza fuera de la vista, arriba */
        height: 0;
    }
    50% {
        bottom: 1200px; /* PosiciÃ³n final (ajusta segÃºn lo que necesites) */
        height: 250px; /* La altura final de la lÃ­nea */
    }
    100% {
        bottom: -10%; /* PosiciÃ³n final (ajusta segÃºn lo que necesites) */
        height: 0; /* La altura final de la lÃ­nea */
    }
}


/* ------ projectBg ------ */
.projectBg {
	left: 0;
	height: 100%;
	opacity: .2;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	overflow: hidden; /* Evita espacios en blanco en los bordes */
}
.projectBg img {
	height: 100%;
    left: 0;
	position: absolute;
	top: 0;
	transition: left 0.1s ease;
	/* width: 110%; */
	width: 120%; /* Asegura que la imagen cubra el ancho */
    min-width: 100vw; /* Mantiene el ancho mínimo del viewport */
}


/* ------ servicesBg ------ */
.servicesBg {
	background-image: url(../img/servicesbg.png);
	bottom: 0;
	height: 180px;
	left: 0;
	position: absolute;
	width: 100%;
}
.insideBg {
	background-image: url(../img/prbg2.png);
	background-attachment: fixed;
	background-position: right;
	background-repeat: no-repeat;
	top: 0;
	height: 100%;
	opacity: .25;
	position: absolute;
	pointer-events: none;
	right: 0;
	width: 100%;
	z-index: 1;
}


/*----------- mainText -----------*/
.mainContent .mainText,
.mainContent .mainWrap {
	padding: 40px 44px;
}
.mainContent.login .mainWrap {
	background-color: #fff;
	border-radius: 0 10px 10px 0;
}
.mainContent .mainText::before,
.mainContent .mainWrap::before {
	background: linear-gradient(345deg, rgba(255,255,255,1) 76%, rgba(255,255,255,.85) 100%);
	border-radius: 10px 10px 0 0;
	content: "";
	height: 400px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.mainContent.login .mainWrap::before {
	display: none;
}
.mainContent h1 {
	color: var(--fifth);
	display: table;
	font-size: 2.5em;
	font-weight: 700;
	line-height: 1.1em;
	margin: -6px 0 5px 0;
	text-transform: uppercase;
}
.mainContent h1 span {
	font-weight: 500;
	padding-left: 4px;
}
.mainContent h1.lower {
	font-size: 2.2em;
	line-height: 1.2em;
	text-transform: initial;
}
.mainContent h1.lower2 {
	font-size: 1.9em;
	text-transform: initial;
}
.mainContent h1 .back {
	color: #273b7a;
	margin-right: 7px;
	top: 2px;
}
.mainContent .date {
	color: #3c3c3c;
	display: table;
	font-size: 1.05em;
	font-weight: 500;
	margin-bottom: 22px;
}
.mainContent .date i {
	margin-right: 7px;
	top: 1px;
}
.mainText h2 {
	color: var(--fourth);
	display: table;
	font-size: 1.8em;
	font-weight: 700;
	margin-bottom: 2px;
	margin-top: 26px;
	text-transform: uppercase;
}
.mainText h2 + .sideImg,
.mainText h2 + h3 {
	margin-top: 30px
}
.mainText h2 + .sideImg.imgLeft,
.mainText h2 + .sideImg.imgRight {
	margin-top: 0;
}
.mainText h3 {
	font-size: 1.5em;
	font-weight: 700;
	margin: 18px 0 6px 0;
}
.mainText h4 {
	font-size: 1.25em;
	font-weight: 700;
	margin: 10px 0 10px 0;
}
.mainText p {
	line-height: 1.5em;
	margin: 0 0 20px 0;
}
.mainText p:last-of-type {
	margin-bottom: 0;
}
.mainText p:last-of-type + ul,
.mainText p:last-of-type + ol,
.mainText p:last-of-type + h3 {
	margin-top: 20px
}
.mainText p:last-of-type + .embedContainer,
.mainText p:last-of-type + .question,
.mainText p:last-of-type + label,
.mainText p:last-of-type + .col50,
.mainText p:last-of-type + .col33 {
	margin-top: 24px;
}
.mainText p:last-of-type + .sideImg,
.mainText p:last-of-type + h6,
.mainText p:last-of-type + form,
.mainText p:last-of-type + fieldset,
.mainText p + h2,
.mainText .sideImg + h2 {
	margin-top: 30px;
}
.mainText p a {
	color: var(--fifth);
	font-weight: 400;
	text-decoration: underline;
	transition:all 0.3s ease;
}
.mainText p a:hover { color: #33a6e8 }

.mainText > ul,
.mainText blockquote > ul,
.mainText ol {
	counter-reset: myCounter;
	margin-bottom: 24px;
}
.mainText > ul + .question,
.mainText ol + .question {
	margin-top: 22px;
}
.mainText h2 + ul,
.mainText h2 + ol {
	margin-top: 16px;
}
.mainText h3 + ul,
.mainText h3 + ol {
	margin-top: 12px;
}
.mainText > ul:last-of-type,
.mainText blockquote > ul:last-of-type,
.mainText ol:last-of-type {
	margin-bottom: 0
}
.mainText ul:last-of-type + p,
.mainText ol:last-of-type + p {
	margin-top: 20px
}
.mainText ul:last-of-type + .sideImg,
.mainText ol:last-of-type + .sideImg {
	margin-top: 30px
}
.mainText ul:last-of-type + h2,
.mainText ol:last-of-type + h2,
.mainText ul:last-of-type + h3,
.mainText ol:last-of-type + h3,
.embedContainer + h2 {
	margin-top: 30px
}
.mainText ul:last-of-type + .embedContainer,
.mainText ol:last-of-type + .embedContainer {
	margin-top: 24px
}
.mainText > ul > li,
.mainText blockquote > ul > li {
	font-size: 1.2em;
	line-height: 1.5em;
	padding: 0 0 6px 32px;
}
.mainText > ul > li a,
.mainText blockquote > ul > li a {
	color: var(--fourth);
	text-decoration: underline;
	transition:all 0.3s ease;
}
.mainText > ul > li a:hover,
.mainText blockquote > ul > li a:hover { color: #e28223 }
.mainText > ul > li p,
.mainText blockquote > ul > li p {
	font-size: 1em;
}
.mainText > ul > li:before,
.mainText blockquote > ul > li:before {
	background-color: var(--fifth);
	border-radius: 3px;
	content: "";
	height: 8px;
	left: 12px;
	position: absolute;
	top: 10px;
	width: 8px;
}
.mainText ol > li {
	counter-increment: myCounter;
	font-size: 1.2em;
	hyphens: auto;
	line-height: 1.5em;
	list-style: none;
	padding: 0 0 6px 32px;
}
.mainText ol > li:before {
	content: counter(myCounter)".";
	left: 0;
	position: absolute;
	text-align: right;
	top: 0;
	width: 22px;
}
.mainText ol > li a {
	color: #005688;
	font-weight: 400;
	text-decoration: underline;
	transition:all 0.3s ease;
}
.mainText ol > li a:hover { color: #33a6e8 }
.mainText ol > li > ul {
	margin-top: 12px;
}
.mainText ol > li > ul > li {
	font-size: 1em;
}
.mainText .embedContainer {
	border: 10px solid #dbdbdb;
	border-radius: 10px;
	margin-bottom: 24px;
	width: 100%;
}
.mainText iframe {
	width: 100%;
}

.mainText .highlight {
	border-bottom: 3px solid var(--fifth);
	border-top: 3px solid var(--fifth);
	font-weight: 700;
	margin-top: 12px;
	padding: 16px 20px;
}
.mainText .highlight strong {
	color: var(--fifth);
}

.mainText .sideImg {
	margin: 38px 0 24px 0;
}
.mainText .sideImg span {
	background-color: #dbdbdb;
	border-radius: 12px;
	display: block;
	margin: 12px 0 0 12px;
	transition:all 0.3s ease;
}
.mainText .sideImg img {
	border-radius: 10px;
	box-shadow: 0 0 0 2px #fff;
	left: -10px;
	top: -10px;
	width: 100%;
}
.mainText .sideImg:hover span {
	background-color: #cbcbcb;
}
.mainText .question {
	border: 2px solid #e3e3e3;
	border-radius: 10px;
	margin-bottom: 16px;
	margin-top: 24px
}
.property .mainText .question {
	border: 2px solid #dedede;
}
.mainText .question + h2 {
	margin-top: 46px;
}
.mainText .question .title a {
	color: var(--text);
	display: block;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.5em;
	padding: 12px 26px 14px 50px;
	text-decoration: none;
	transition:all 0.3s ease;
}
.mainText .question .title2 {
	color: var(--text);
	display: block;
	font-size: 1.44em;
	font-weight: 700;
	line-height: 1.5em;
	margin-bottom: 0;
	padding: 12px 26px 14px 26px;
	text-decoration: none;
	transition:all 0.3s ease;
}
.mainText .question .title:hover a {
	color: var(--fifth);
}
.mainText .question .title3 {
	color: var(--text);
	display: block;
	font-size: 1.44em;
	font-weight: 700;
	line-height: 1.5em;
	padding: 4px 0 6px 0;
	text-decoration: none;
}
.mainText .question > .title:after {
	font: var(--fa-font-solid);
	content: "\f067";
	color: var(--fifth);
	cursor: pointer;
	font-size: 1.1em;
	left: 19px;
	position: absolute;
	top: 19px;
}
.mainText .question > .title.symbol:after {
	content: "\f068";
}
.mainText .question > .title.symbol a { color: var(--fifth) }
.property .mainText .question > .title.symbol a { color: var(--text) }
.mainText blockquote {
	display: none;
	padding: 0 26px 20px 50px;
}
.mainText blockquote.show {
	display: block;
}
.property .mainText blockquote {
	padding: 0 26px 4px 26px;
}
.mainText blockquote p:first-child { margin-top: 0 }

.mainText table {
	margin-bottom: 24px;
	width: 100% !important;
}
.mainText table th {
	background-color: var(--fifth);
	border: 1px solid var(--fifth);
	color: #fff;
	height: auto !important;
	padding: 9px 12px;
	width: auto !important;
}
.mainText table td {
	border: 1px solid var(--fifth);
	height: auto !important;
	padding: 9px 12px;
	width: auto !important;
}
@media only screen and (max-width:650px) {
	.mainContent h1 { font-size: 2.1em; text-transform: initial }
	.mainContent h1.lower { font-size: 1.8em; margin: -6px 0 6px 0 }
	.mainText h2 { font-size: 1.6em }
	.mainText h3 { font-size: 1.3em }
	.mainText > ul > li,
	.mainText blockquote > ul > li { font-size: 1.15em }
	.mainText ol > li { font-size: 1.15em }
	.sideImg.imgLeft,
	.sideImg.imgRight { width: 100% }
	.sideImg.imgLeft { float: initial; margin: 6px 0 24px 0 }
	.sideImg.imgRight { float: initial; margin: 6px 0 24px 0 }
	.mainText h2 + .sideImg.imgLeft,
	.mainText h2 + .sideImg.imgRight { margin-top: 30px }
	.mainText table { display: grid; overflow-x: scroll }
	.mainText .question .title a { font-size: 1.1em }
	.mainText .question .title2 { font-size: 1.26em }
	.mainText .question > .title::after { font-size: 1em; top: 18px }
}
@media only screen and (max-width:540px) {
	.mainContent .mainText,
	.mainContent .mainWrap { padding: 20px 21px 15px 21px }
}
.mainText figure img {
	border-radius: 1rem;
	height: auto;
	width: 100%;
}

.mainText figcaption {
	font-size: .875em;
	font-style: italic;
	margin-top: .3rem;
}
.mainText ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mainText ul li {
	padding: 5px 0 5px 20px;
	position: relative;
}
.mainText ul li::before {
    content: "\f0da"; /* Código Unicode del chevron-right */
    font-family: "Font Awesome 6 Free"; /* FUENTE CORRECTA */
    font-weight: 900; /* Asegura que se use la versión sólida del icono */
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 5px;
	color: var(--c1);
}
html[data-bs-theme="dark"] .mainText ul li::before {
	color: var(--c1);
}
.mainText figure {
	position: relative;
}
.mainText figure::after {
	border-radius: 1rem;
	content: "";
	height: 100%;
	left: -7px;
	position: absolute;
	top: 7px;
	width: 100%;
	z-index: -1;
}
@media (max-width:768px) {
	.mainText .w-50 { width: 100% !important }
}
.mainText strong {
	font-weight: 500;
}

/*---------------------- side -----------------------------------*/

.sideImg.imgLeft,
.sideImg.imgRight {
	border: none;
	width: 43%;
}
.sideImg.imgLeft {
	float: left;
	margin: 6px 20px 20px 0;
}
.sideImg.imgRight {
	float: right;
	margin: 6px 0 20px 20px;
}
.sideImg.imgLeft + p:after,
.sideImg.imgRight + p:after {
	content: "";
	clear: both;
	display: block;
}
.sideImg a {
	display: block;
	z-index: 20;
}


/* **************************************** */
/* FIX CSS  */
/* **************************************** */

/*---------------------- aboutPad -----------------------------------*/

.aboutPad {
	padding-left: 6rem;
}
.aboutPad2 {
	padding-right: 6rem;
}
@media (max-width:1400px) {
	.aboutPad {
		padding-left: 3rem;
	}
	.aboutPad2 {
		padding-right: 3rem;
	}
}
@media (max-width:800px) {
	.aboutPad {
		padding-left: 0rem;
	}
	.aboutPad2 {
		padding-right: 0rem;
	}
}

/*---------------------- Fix: submenu -----------------------------------*/

#navbarNavAltMarkup .dropdown-menu {
    border-top-left-radius: 0px !important;
}

/* Fix: submenu: responsive */
@media (max-width: 991px) {
    .dropdown-menu {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
}

/* Fix: boton menu responsive */
.navbar-toggler {
    color: white !important;
    border-color: white !important;
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* Fix: boton facebook menu responsive */
@media (max-width: 991px) {
    .navbar-nav .nav-link.ps-5 {
        padding-left: 15px !important;
    }
}

/* Fix: break menu responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }
    .navbar-toggler {
        display: block !important;
    }
    .navbar-collapse.show {
        display: block !important;
        width: 100%;
    }
}

/* Fix: Responsive - Section #1 */
@media (max-width: 1740px) {
	.p-xxl-5 {
	  padding: 2.50rem!important;
	}
}
@media (max-width: 1700px) {
	.p-xxl-5 {
		padding: 2rem!important;
	}
}
@media (max-width: 1600px) {
	.display-4 {
		font-size: 3.3rem!important;
	}
}
@media (max-width: 1540px) {
	.display-4 {
		font-size: 3rem!important;
	}
}
@media (max-width: 1420px) {
	.display-4 {
		font-size: 2.9rem!important;
	}
}
@media (max-width: 1380px) {
	.display-4 {
		font-size: 2.6rem!important;
	}
}
@media (max-width: 1260px) {
	.display-4 {
		font-size: 2.4rem!important;
	}
}
@media (max-width: 1240px) {
	.display-4 {
		font-size: 2rem!important;
	}
}
@media (max-width: 1140px) {
	.display-4 {
		font-size: 1.9rem!important;
	}
}
@media (max-width: 890px) {
	.p-xxl-5 {
	  padding: 1.8rem !important;
	}
}
@media (max-width: 860px) {
	.p-xxl-5 {
	  padding: 1.5rem !important;
	}
}
@media (max-width: 830px) {
	.p-xxl-5 {
	  padding: 1.2rem !important;
	}
}
@media (max-width: 990px) {
	.display-4 {
		font-size: 1.5rem!important;
	}
}
@media (max-width: 820px) {
	.display-4 {
		font-size: 1.3rem!important;
	}
}

/* Fix: Responsive Main Banner */
@media (max-width: 800px) {
	.hide800{
		display: none!important;
	}
	.w100{
		flex: none!important;
	}
	#mainBanner .rowBanner h1 {
		font-size: 3rem!important;
		text-align: center!important;
	}
	.p-xxl-5 {
		padding: 2rem !important;
	}
}

@media (max-width: 400px) {
	#mainBanner .rowBanner h1 {
		font-size: 3rem!important;
	}
}
@media (max-width: 380px) {
	#mainBanner .rowBanner h1 {
		font-size: 2.2rem!important;
	}
}
@media (max-width: 300px) {
	#mainBanner .rowBanner h1 {
	  font-size: 2.1rem!important;
	}
}
@media (max-width: 290px) {
	#mainBanner .rowBanner h1 {
	  font-size: 1.5rem!important;
	}
	.p-xxl-5 {
		padding: 2rem !important;
	}
}



/* carousel responsive */
@media (max-width: 800px) {
	.d-flex.ps-xxl-4 {
        justify-content: center !important;
        width: 100%;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .d-flex.ps-xxl-4 button {
        font-size: 1.8rem;
        padding: 8px 12px;
    }
    .carousel-item .row {
        flex-direction: column;
        text-align: center;
    }
    .carousel-item .col:nth-child(1) {
        display: none;
    }
    .carousel-item .col:nth-child(2) {
        order: 1;
        display: flex;
        justify-content: center;
		padding: 0 20px!important;
    }
    .carousel-item .col:nth-child(3) {
        order: 2;
        padding: 20px;
    }
    .carousel-item img {
        width: 100% !important;
        height: auto;
        position: relative;
        left: 0 !important;
		margin: 0 20px;
    }
    .carousel-item h2 {
        display: block;
        font-size: 2rem;
        text-transform: uppercase;
        color: white;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Fix: Responsive -  Tips */
@media (max-width: 800px) {
    .tips-container .row {
        flex-direction: column;
        text-align: center;
    }
    .tips-container .col {
        width: 100%;
        padding-bottom: 15px;
    }
    .tips-container h3 {
        text-align: center;
    }
    .tips-container .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .tips-container p {
        max-width: 80%;
        font-size: 1.1rem;
    }
    .tips-container .btn {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
}

/* Fix: Responsive -  Services */
.titleLeft{
	padding-left: 67%;
}
.img-custom-width {
    max-width: unset !important;
    width: calc(100% + 26%) !important;
}
@media (max-width: 800px) {
    .serviceCols .col:first-child {
        display: flex;
        justify-content: center;
    }
    .serviceCols {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .serviceCols .col {
        width: 100%;
        padding-bottom: 20px;
    }
	.titleLeft{
		padding-left: 0%;
	}
    .serviceCols h2 {
        transform: none !important;
        writing-mode: horizontal-tb !important;
        text-align: center;
        font-size: calc(1.375rem + 1.5vw) !important;
        margin-bottom: 15px;
		font-weight: 500!important;
		line-height: 1.2;
		color: var(--bs-heading-color);
    }
	.serviceCols .col:first-child {
        display: flex;
        justify-content: center;
    }
    .serviceCols .card {
        max-width: 90%;
        margin: 0 auto 20px;
    }
    .serviceCols .card img {
        width: 100% !important;
        height: auto;
        position: relative;
        left: 0 !important;
    }
}

/* Fix: Responsive -  Nosotros */
.imgAboutBanner{
	width: 240px;
	margin-top: 130px;
	display: inline-block !important;
}
@media (max-width: 800px) {
    .banner {
        min-height: auto !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: 20px 0;
    }
    .banner .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto !important;
    }
    .banner .col:first-child {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .imgAboutBanner {
        max-width: 80% !important;
        height: auto !important;
        margin: 0 auto 15px !important;
        display: block;
    }
    .banner h3 {
        font-size: calc(1.375rem + 1.5vw) !important;
        text-align: center;
        padding: 10px 20px;
        width: 90%;
        max-width: 700px;
    }
    .banner .col:nth-child(3) {
        order: 3;
        display: flex;
        justify-content: center;
    }
    .banner .text-center {
        margin-top: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .banner .btn {
        display: inline-block;
        margin: 15px auto;
    }
}

/* Fix: Responsive -  Footer */
@media (max-width: 800px) {
    footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .col {
        width: 100%;
        padding-bottom: 15px;
    }
    footer img[alt="Logotipo"] {
        margin: 0 auto !important;
        display: block;
    }
    footer .d-flex.flex-column {
        align-items: center;
    }
    footer .d-flex.gap-3 {
        justify-content: center;
    }
    footer ul.nav {
        align-items: center;
        padding: 0;
    }
    footer .row div.col {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    footer img {
        margin: 5px;
    }
}


/*---------------------- Paginas Internas -----------------------------------*/

#mainBanner .rowBanner .internal-page h1 {
	font-size: 3.5rem !important;
	padding: 3rem !important;
}
@media (max-width: 1300px) {
	#mainBanner .rowBanner .internal-page h1 {
		padding: 2rem !important;
	}
}
@media (max-width: 800px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 3.5rem !important;
		padding:2rem!important;
	}
}
@media (max-width: 590px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 3rem !important;
		padding:2rem!important;
		text-align: left !important;
	}
}
@media (max-width: 570px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 2.9rem !important;
	}
}
@media (max-width: 560px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 2.8rem !important;
	}
}
@media (max-width: 480px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 2.7rem !important;
		margin-bottom: 0!important;
	}
}
@media (max-width: 500px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 2.5rem !important;
		margin-bottom: 0!important;
		padding-left: 0!important;
		padding-right: 0!important;
	}
}
@media (max-width: 460px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 2.4rem !important;
		margin-bottom: 0!important;
	}
}
@media (max-width: 360px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 2.3rem !important;
	}
}
@media (max-width: 320px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 2rem !important;
	}
}
@media (max-width: 290px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 1.8rem !important;
	}
}
@media (max-width: 260px) {
	#mainBanner .rowBanner .internal-page h1 {
		font-size: 1.5rem !important;
	}
}
#mainBanner .rowBanner h2.h1{
	font-size: 2.5rem!important;
}
#mainBanner .rowBanner .fs-5c {
	font-size: 1.25rem!important;
}

@media (max-width: 800px) {
    .about-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
    .about-section .col-3 {
        order: -1;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .about-section .col-3 img {
        max-width: 75%;
        margin-bottom: 3rem;
    }
    .about-section .col-6 {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width:600px) {
	.about-section .col-6 {
        width: 90%;
    }
}

@media (max-width: 800px) {
	.aboutPad2{
		display: none;
	}
    .border-end {
        display: none !important;
    }
	.mainCols{
		display: none;
	}
}

.boxesWhite{
	left: -20%;
}
@media (max-width: 800px) {
	.boxesWhite{
		left: 0%;
	}
}

@media (max-width: 800px) {
    .valores-section {
        text-align: center;
        padding: 2rem 1rem;
    }
    .valores-section .row {
        flex-direction: column;
        align-items: center;
    }
    .valores-section .col {
        width: 70% !important;
        padding: 1rem;
    }
    .valores-section h2 {
		font-size: calc(1.375rem + 1.5vw);
        text-align: center;
    }
    .valores-section .d-flex {
        flex-direction: row !important;
        align-items: top;
        text-align: left;
    }
    .valores-section i {
        font-size: calc(1.375rem + 1.5vw);
        margin-right: 0px;
    }
    .valores-section p {
        font-size: 1.1rem;
        max-width: 90%;
    }
	.valores-section .bi::before{
		font-size: 1.25rem;
		position: relative;
		top: -15px;
	}
	.boxesBorderWhite{
		width: 100%!important;
	}

}

/*---------------------- Contacto -----------------------------------*/

.internal-page .container-internal{
	max-width: 700px!important;
}
.internal-page .embedContainer {
    position: relative;
    width: 100%;
	padding-bottom: 450px;
    height: 0;
    overflow: hidden;
}
.internal-page .embedContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*---------------------- Form -----------------------------------*/
.formComment {
	margin: 45px 0px;
}
.formComment.v2 {
	background-color: #fff!important;
	box-shadow: 0 0 1px rgb(37, 70, 121);
	border-radius: 10px;
	box-shadow: 0 0 14px rgba(40,40,40,.2);
	padding: 25px 35px;
}
.formComment label {
	border-radius: 2px;
	display: block;
	position: relative;
}
.formComment label p {
	margin-bottom: 5px;
	text-align: left;
}
.formComment label input[type="text"],
.formComment label input[type="email"],
.projectDetail .formComment label textarea,
#contacto .formComment label > textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--c2);
	border-radius: 6px;
	transition: all 0.5s ease-in-out;
	margin-bottom: 12px;
	background-color: #f5f5f5 !important;
}
.formComment select,
.formComment textarea {
	width: 100%;
	padding: 10px 9px 9px 9px;
	border-radius: 6px;
	border: 1px solid var(--c2);
	transition: all 0.8s ease-in-out;
	margin-bottom: 12px;
	background-color: #f5f5f5 !important;
}
.formComment .btnSend {
	background-color: var(--c2);
	color: #fff;
	padding: 12px 27px;
	border-radius: 6px;
	font-size: 1.2em;
}
.formComment .btnSend:hover,
.formComment .btnSend:focus {
    background-color: var(--c1)!important;
    color: #fff;
}
.captcha {
	background-position: right top;
	background-repeat: no-repeat;
	background-size: contain;
}
.errors { background-color: #eb3e2e }
.success { background-color: #69a242;  }
.errors, .success {
	margin: 10px 0; color: #fff;
	font-size: 1em;
	line-height: 1.4em;
	margin-top: 8px;
	border-radius: 3px;
	padding: 5px 8px ;
}
@media only screen and (max-width:768px) {
	.formComment.v2 { padding: 22px 26px }
}

/* inputs */
input, textarea, select {
    border: 1px solid #ccc;
    color: #333;
    padding: 8px;
    border-radius: 5px;
    background-color: #fff;
    appearance: none;
}

/* focus */
input:focus, textarea:focus, select:focus {
    outline: none !important;
    border: 1px solid #ff6600 !important;
    background-color: #fff !important;
    box-shadow: none !important;
}

@media (max-width: 800px) {
    .internal-page .rowBanner .col-3 {
        display: none
    }
    .internal-page .rowBanner .col-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
	.internal-page .mainPad .col-3 {
        display: none;
    }
    .internal-page .mainPad .col-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* btn */
.btn-cta{
	border: #fff solid 1px!important;
	background-color: transparent!important;
}
.btn-cta:hover{
	background-color: #fff!important;
	color: #db6a00!important;
}

.text-orange{
	color: #db6a00!important;
}


/*---------------------- Accordion -----------------------------------*/

.accordion-button:not(.collapsed) {
	color: #FFF;
	background-color: #fd7e14;
	border: #c75f0b solid 1px;
}
.accordion-body ul {
    list-style: none;
    padding-left: 0;
}
.accordion-body ul li {
    position: relative;
    padding-left: 20px;
}
.accordion-body ul li::before {
    /* content: "●"; */
    color: #ff6600;
    font-size: 1em;
    position: absolute;
    left: 0;
    top: 5px;
}
.accordion-button:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.5) !important;
    border-color: rgba(255, 165, 0, 0.8) !important;
}
.accordion-button:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.5) !important;
    border-color: rgba(255, 165, 0, 0.8) !important;
}
.accordion-button::after {
    filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-button::after {
    filter: none !important;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) !important;
}
.accordion-item h2{
	width: 100%;
}

/*---------------------- insideNav -----------------------------------*/

.insideNav {
	background-color: var(--c1);
	padding: 24px 30px 20px 30px;
}
.insideNav .title {
	color: #fff;
	font-size: 1.6em;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.insideNav > ul {
	margin-bottom: 0;
	padding-left: 0;
}
.insideNav > ul > li {
	list-style-type: none!important;
}
.insideNav > ul > li > a {
	color: #fff;
	display: block;
	font-weight: 400;
	padding: 5px 0 5px 0;
	text-decoration: none;
}
.insideNav > ul > .accordion > a {
	padding: 8px 28px 8px 0;
}
.insideNav > ul > li > a span {
	border-bottom: 1px solid transparent;
	padding-bottom: 1px;
	transition:all 0.3s ease;
}
.insideNav > ul > li > a:hover span,
.insideNav > ul > li > a.current span {
	border-bottom: 1px solid #fff;
}
.insideNav > ul > li > a.current::before {
	content: "\f0da";
	font: var(--bs-blue);
	font-size: 1.3em;
	left: -34px;
	position: absolute;
	top: 8px;
	text-rendering: auto;
    -webkit-font-smoothing: antialiased;
	list-style-type: none!important;
}
.insideNav > ul > li > ul {
	display: none;
	padding: 10px 0;
	list-style-type: none!important;
}
.insideNav > ul > li > ul li a {
	border-left: 1px solid #ff7453;
	color: #fff;
	display: block;
	font-size: 1.08em;
	padding: 3px 0 3px 16px;

}
.insideNav > ul > li > ul li a.current {
	border-color: #fff;
	font-weight: 600;
}
.insideNav > ul > li > .plus {
	cursor: pointer;
	color: #fff;
	font-size: 1.14em;
	height: 38px;
	line-height: 38px;
	position: absolute;
	right: -13px;
	text-align: center;
	top: 0;
	transition:all 0.3s ease;
	width: 38px;
}
.insideNav > ul > li > .plus:after {
	font: var(--fa-font-solid);
	content: "\f107";
	text-rendering: auto;
	transition:all 0.3s ease;
	-webkit-font-smoothing: antialiased;
}
.insideNav > ul > li > .plus:hover:after {
	color: #ff9f89;
}
.insideNav > ul > li > .plus.symbol:after {
	content: "\f106";
	color: #ff9f89;
}
@media only screen and (max-width:970px) {
	.insideNav { display: none }
}

/*---------------------- WhatsApp -----------------------------------*/
#waBtn {
	background: rgb(37, 211, 102) none repeat scroll 0% 0% !important;
	box-shadow: 0 0 0 3px rgba(255,255,255,.9);
	border-radius: 50%;
	bottom: 70px;
	height: 50px;
	overflow: hidden;
	position: fixed;
	padding: 5px;
	right: 15px;
	transition: all 0.5s ease 0s;
	width: 50px;
	z-index: 200;
}
@media (max-width:1200px) {
	#waBtn {
		bottom: 14px;
		height: 42px;
		right: 13px;
		width: 42px;
	}
}

/*---------------------- Accesabilidad -----------------------------------*/

#accessBtn {
	box-shadow: 0 0 0 2px rgba(255, 255, 255,.9);
	border: none;
	color: var(--c1);
	font-size: 3rem;
	height: 48px;
	left: 14px;
	line-height: 0;
	margin: 6px 0 0 0;
	outline: none;
	padding: 0;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	transition:all 0.3s ease;
	width: 48px;
	z-index: 100001;
}
html[data-bs-theme="dark"] #accessBtn {
	background-color: var(--bs-body-bg) !important;
	box-shadow: 0 0 0 2px rgba(40, 40, 40,.9);
}
#accessBtn:hover {
	color: var(--c2);
}
html[data-bs-theme="dark"] #accessBtn:hover {
	background-color: var(--bs-body-bg) !important;
	box-shadow: 0 0 0 2px rgba(40, 40, 40,.9);
	color: #FFF;
}
#optionsMenu {
	background-color: #fff;
	border-radius: 1rem 1rem 0 0;
	box-shadow: 0 0 15px rgba(52,52,52,.2);
	left: -470px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	transition:all 0.3s ease;
	width: 310px;
	z-index: 1000000;
}
html[data-bs-theme="dark"] #optionsMenu {
	background-color: #1c1e20;
	color: #FFF;
}
html[data-bs-theme="dark"] #optionsMenu .text-white {
	color: #FFF !important;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item i.fas {
	color: #FFF!important;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item.active i.fas {
	color: #222!important;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item.active span {
	color: #222!important;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item {
	color: #cbcbcb!important;
}

#optionsMenu .list-group-item:hover {
	background-color: #f8f2ef;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item:hover {
	background-color: #484848!important;
	color: #FFF!important;
}
#optionsMenu .list-group-item.active {
	--bs-list-group-active-bg: #f5efed;
	--bs-list-group-active-color: var(--c1);
	--bs-list-group-active-border-color: #efd3cb;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item.active {
	--bs-list-group-active-bg: #FFF;
	--bs-list-group-active-color: #f7f4ee;
	--bs-list-group-active-border-color: #767a7c;
	color:#222222;
}
[data-bs-theme="dark"] #optionsMenu .list-group-item.active:hover,
[data-bs-theme="dark"] #optionsMenu .list-group-item.active:hover span,
[data-bs-theme="dark"] #optionsMenu .list-group-item.active:hover i.fas {
    color: #CCC !important;
}

@media only screen and (max-width:1200px) {
	#accessBtn {
		bottom: 12px;
		top: initial;
		transform: initial;
	}
	#optionsMenu {
		bottom: 12px;
		top: initial;
		transform: initial;
	}
}

@media only screen and (max-width:1200px) {
	#accessBtn {
		bottom: 12px;
		top: initial;
		transform: initial;
	}
	#optionsMenu {
		bottom: 12px;
		top: initial;
		transform: initial;
	}
}

/*---------------------- Google Translate -----------------------------------*/

.modalWindow {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modalContent {
    background-color: var(--c1);
    padding: 45px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
	color: #fff;
}
.modalContent h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.modalContent .close-btn {
	position: absolute;
	top: 0px;
	right: 10px;
	background: none;
	border: none;
	font-size: 34px;
	cursor: pointer;
	color: #fff;
}

/* ----------- google translate -----------*/
.goog-te-banner-frame.skiptranslate { display: none !important }
#google_translate_element .goog-te-gadget { font-size: 0px; text-align: center }
#google_translate_element .goog-te-gadget > div > div { display: none }
#google_translate_element .goog-te-gadget span { display: none }
#google_translate_element .goog-te-combo {
	background-color: #fff;
	background-image: url(../img/arrow.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 24px;
	border: 1px solid #166897;
	border-radius: 5px;
	color: #3a3d4f;
	cursor: pointer;
	font-family: 'Encode Sans', sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding: 11px 26px 12px 12px;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
}


/*---------------------- gallery / multimedia -----------------------------------*/

#Multimedia {
	margin-top: 20px;
}
#Multimedia .card {
	border: none;
	transition: transform 0.2s ease;
	text-decoration: none !important;
	background-color: transparent;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform 0.5s ease, filter 0.5s ease;
}
#Multimedia .card img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	filter: brightness(0.6);
}
#Multimedia .card:hover img {
	filter: brightness(1);
}
#Multimedia .play-icon-overlay {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 575px){ #Multimedia .play-icon-overlay { top: 45%; } }
@media (max-width: 390px){ #Multimedia .play-icon-overlay { top: 38%; } }
@media (max-width: 330px){ #Multimedia .play-icon-overlay { top: 36%; } }

#Multimedia .card:hover .play-icon-overlay i {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    transition: transform 0.2s ease;
}
#Multimedia .card:hover {
	transform: scale(1.05);
}
#Multimedia .card-body {
	padding: 10px 0 10px 0!important;
}
#Multimedia h6.card-date {
	margin-top: 10px;
	font-size: 0.6em!important;
	text-align: left;
	color: #999;
}
#Multimedia h5.card-title {
	margin-top: 10px;
	font-size: 0.9em!important;
	text-align: left;
}
#Multimedia .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-weight: bold;
    z-index: 1;
	font-size: 0.5em;
    border-radius: 5px;
	color: #FFF;
	background-color: #0e0f0f;
}
#Multimedia h6{
	color: #666;
}


/*---------------------- Share -----------------------------------*/

#share {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
	position: relative;
	top: 0px;
	left: 0px;
}
#share a {
    color: #6d718e;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
#share a:hover {
    color: #4a5266;
}

.share-icons {
    display: flex;
    gap: 10px;
    background-color: transparent;
    border: 1px solid #ddd;
    padding: 5px 15px;
}

#share i {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
}

button.btn-regresar {
    background-color: #fdd835;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
@media (max-width: 575px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start;
    }
    #share {
        order: 1;
        justify-content: flex-start;
        margin-bottom: 10px;
    }
    button.btn-regresar {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}


/* ------ extras ------ */
.dropdown-menu .dropdown-item:hover {
	background-color: #eb7c12;
	color: #fff !important;
}
[data-bs-theme="dark"] footer .footLogo {
	filter: invert(1) grayscale(1);
}
[data-bs-theme="dark"] .fLog {
	filter: invert(1);
	mix-blend-mode: luminosity;
}
.link-primary:hover {
	color: var(--c2) !important;
}


/* ------ form-control ------ */
.form-control {
	border-color: #9c9c9c;
	border-radius: 0 !important;
	font-size: 1.06rem;
	padding: .6rem 1.1rem;
}
.form-label {
	font-weight: 500;
	margin-bottom: .3rem;
}
.form-control:focus {
	border-color: var(--c1);
	box-shadow: 0 0 0 .25rem rgba(235, 124, 18, .22);
}