/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Introduction
- Project 1
- Project 2
- Details Modal
- Project 3
- Process
- Services
- About 
- Testimonials
- Team
- Contact
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f7f9fd
- Buttons, icons - green #555
- Headings text - black #ffffff
- Body text - dark gray #53575a
******************************************/
/* banner principal */

/**************************/
/*     Fuentes     */
/**************************/
@font-face {
	font-family: 'Product Sans' !important;
	src: url('../fonts/product_sans_full/ProductSans-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'Product Sans Bold', sans-serif !important;
	src: url('../fonts/product_sans_full/ProductSans-Bold.ttf') format('truetype');
}

/**************************/
/* Animación de entrada   */
/**************************/
@keyframes aparecerAnimacion {
	from {
		opacity: 0;
		transform: translateY(20px);
		/* Puedes ajustar la propiedad de transform según tus necesidades */
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animated,
.staticanimated {
	opacity: 0;
	transform: translateY(20px);
	/* Puedes ajustar la propiedad de transform según tus necesidades  */
}

/**************************/
/*     	  Cabecera	     */
/**************************/

.texto-animado {
	text-align: center;
	font-size: 4.5rem;
	z-index: 999;
	margin-top: 3rem;
}

#palabraCambiante {
	text-align: center;
	animation: cambiarPalabra 5s infinite;
	font-size: 5rem;
	z-index: 999;
}

@keyframes cambiarPalabra {

	0%,
	25% {
		opacity: 0;
		transform: translateY(-20px);
	}

	80% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(20px);
	}
}

@media screen and (max-width:576px) {
	.texto-animado {
		text-align: center;
		font-size: 2.5rem;
		z-index: 999;
		height: 20vh;
	}

	#palabraCambiante {
		text-align: center;
		animation: cambiarPalabra 3s infinite;
		font-size: 3rem;
		z-index: 999;
		min-height: 576px !important;
		line-height: 1.5;

	}
}

@media (min-width :577px) and (max-width:992px) {
	.texto-animado {
		text-align: center;
		font-size: 3.5rem;
		z-index: 999;
	}

	#palabraCambiante {
		text-align: center;
		animation: cambiarPalabra 3s infinite;
		font-size: 3.5rem;
		z-index: 999;
	}
}

/**************************/
/*     General Styles     */
/**************************/
body,
html {
	width: 100%;
	height: 100%;
	font-family: 'Product Sans', sans-serif !important;
}

body,
p {
	color: #53575a;
	/* font: 400 1rem/2rem "Product Sans", sans-serif; */
	font: 1rem/2rem "Product Sans", sans-serif;
	text-align: left;
}

p {
	padding-left: 2rem;
	padding-right: 2rem;
}

h1 {
	color: #1b1464;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: 'Product Sans', sans-serif !important;
}

h2 {
	color: #53575a;
	font-weight: 600;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: 'Product Sans', sans-serif !important;
}

h3 {
	/* color: #ffffff; */
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: 'Product Sans', sans-serif !important;
}

h4 {
	/* color: #ffffff; */
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: 'Product Sans', sans-serif !important;
}

h5 {
	/* color: #ffffff; */
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: 'Product Sans', sans-serif !important;
}

h6 {
	/* color: #ffffff; */
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: 'Product Sans', sans-serif !important;
}

img {
	width: 100%;
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: 'Product Sans', sans-serif !important;
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #53575a;
	text-decoration: underline;
}

a:hover {
	color: #53575a;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.read-more {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
}

.read-more .fas {
	margin-left: 0.625rem;
	font-size: 1rem;
	vertical-align: -8%;
}

.green {
	color: #555;
}

.bg-gray {
	background-color: #f7f9fd;
}

.hr-heading {
	display: block;
	width: 5rem;
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	opacity: 1;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #555;
	border-radius: 4px;
	background-color: #555;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #555;
	/* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #555;
	border-radius: 4px;
	background-color: #555;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #555;
	/* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #ffffff;
	border-radius: 4px;
	background-color: transparent;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #ffffff;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #ffffff;
	border-radius: 4px;
	background-color: transparent;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #ffffff;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #ffffff;
	border-radius: 4px;
	background-color: transparent;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #ffffff;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-control-input,
.form-control-textarea {
	width: 100%;
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	border-radius: 4px;
	background-color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.5rem;
	-webkit-appearance: none;
	/* removes inner shadow on form inputs on ios safari */
}

.form-control-textarea {
	display: block;
	height: 14rem;
	/* used instead of html rows to normalize height between Chrome and IE/FF */
}

.form-control-input:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none;
	/* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #555;
	border-radius: 4px;
	background-color: #555;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #555;
	background-color: transparent;
	color: #555;
}

#vacante-java {
	border-radius: 10px;
	padding: 5px;
	background-color: #1b1464;
	color: white;
	margin-bottom: 10%;
	font-size: 1rem;
	text-decoration: none;
}

/**********************/
/*     Navigation     */
/**********************/
/* .navbar {
	background-color: #58595b;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
} */

/* .navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
} */

/* .navbar .logo-image img,
.logo-nav {
	height: 60px;
} */

/* @media screen and (max-width: 576px) {

	.navbar .logo-image img,
	.logo-nav {
		height: 40px;
	}
} */

/* .navbar .logo-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
} */

/* .offcanvas-collapse {
	position: fixed;
	top: 4.5rem;
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #58595b;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	opacity: 90%;
} */

/* .offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
} */

/* .navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
} */

/* .navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #eeeeee;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 1.2rem;
	margin: 5px;
} */

/* .navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #eeeeee;
} */

/* Dropdown Menu */
/* .navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s;
} */

/* @keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
} */

/* .navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: #58595b;
} */

/* .navbar .dropdown-item {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #eeeeee;
	font-weight: 600;
	font-size: 1rem;
	line-height: 0.875rem;
	text-decoration: none;
} */

/* .navbar .dropdown-item:hover {
	background-color: #555;
	color: #eeeeee;
} */

/* .navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #525296;
} */
/* .navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
} */

/* .navbar .fa-stack-2x {
	color: #7dc22b;
	transition: all 0.2s ease;
} */

/* .navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
} */

/* .navbar .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
} */

/* .navbar .fa-stack:hover .fa-stack-1x {
	color: #7dc22b;
} */

/* .navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
} */

/* .accordion-item .accordion-button {
	font-size: large;
} */

.bg-success {
	background-color: white !important;
}

.bg-success a {
	color: #58595b !important;

}

.nav-link {
	color: white !important;
	text-decoration: none !important;
	font-size: 1.5rem !important;
}

.bg-success a:hover {
	color: #1b1464;
}

.dropdown-item {
	text-decoration: none !important;
}


.fixed-top.bg-success {
	-webkit-box-shadow: 0px 5px 19px -5px rgba(0, 0, 0, 0.44);
	-moz-box-shadow: 0px 5px 19px -5px rgba(0, 0, 0, 0.44);
	box-shadow: 0px 5px 19px -5px rgba(0, 0, 0, 0.44);
}

.fixed-top {
	transition: all .3s ease;
}

/* .fixed-top .nav-link {
    color: white;
} */
.fixed-top .active {
	background-color: #752f97 !important;
}

.navbar-brand {
	font-size: 1.8rem;
	font-weight: 400;
}

.navbar-brand img {
	max-width: 225px;
}

.navbar-brand span {
	font-weight: 700;
}

.navbar-brand:hover {
	color: white;
}

.dropdown-item {
	color: white !important;
}

/*****************/
/*    Header     */
/*****************/
.header {
	padding-top: 8rem;
	padding-bottom: 8rem;
	/* background: url('../images/contact-background.jpg') center center no-repeat; */
	background-size: cover;
	text-align: center;
	/* opacity: .5; */
}

.header-acercade {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background: url('../images/oficinas/op/oficina1.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
	/* opacity: .5; */
}

.header-capa {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background: url('../images/Material\ para\ pagina/andres codigo.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
	/* opacity: .5; */
}

.header-soft {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background: url('../images/slider/tres/3.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
	/* opacity: .5; */
}

.header-admin {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background: url('../images/slider/dos/2.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
	/* opacity: .5; */
}

.header-mark {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background: url('../images/clientes/Gen_team/IMG_6938.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
	/* opacity: .5; */
}

.header-vaca {
	padding-top: 8rem;
	padding-bottom: 8rem;
	/* background: url('../images/Material\ para\ pagina/andres codigo.jpg') center center no-repeat; */
	background-size: cover;
	text-align: center;
	/* opacity: .5; */
}

@media screen and (max-width:576px) {
	.header-vaca {
		padding-top: 2rem;
	}
}

.header-login {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background: url('../images/contact-background - copia.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
	/* opacity: .5; */
	margin-bottom: 2rem;
}

.header .h1-large {
	margin-bottom: 2.5rem;
	color: #ffffff;
	font-size: 4rem;
	line-height: 4.5rem;
}

.header .btn-solid-lg {
	display: block;
	margin-bottom: 1.375rem;
}

.header .btn-outline-lg {
	display: block;
	border-color: #ffffff;
	color: #ffffff;
}

.header .btn-outline-lg:hover {
	background-color: #ffffff;
	color: #444444;
}


/************************/
/*     Introduction     */
/************************/

#intro {
	padding-top: 8rem;
	padding-bottom: 8rem;
	/* background: url('../images/Material para pagina/andres codigo.jpg') center center no-repeat; */
	background: url('../images/Material para pagina/Andres.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
	min-height: -webkit-fill-available;
}


@media screen and (max-width:576px) {
	#intro {
		min-height: unset;
	}
}

.basic-1 {
	padding-top: 9.5rem;
	padding-bottom: 9rem;
}

.basic-1 h1 {
	margin-bottom: 2.5rem;
}

.inscribite {
	padding-top: 25rem;
}

@media screen and (max-width:576px) {
	.inscribite {
		padding-top: 0rem;
	}
}


/*********************/
/*     Project 1     */
/*********************/
.basic-2 {
	padding-top: 4rem;
	padding-bottom: 10rem;
}

.basic-2 .text-container {
	margin-bottom: 4rem;
}

.basic-2 h2 {
	margin-bottom: 1.875rem;
}

.basic-2 p {
	margin-bottom: 1.25rem;
}


/*********************/
/*     RUTA AL EXITO     */
/*********************/
.ruta-title {
	text-align: center;
	margin-left: 10rem;
}

.Ruta-titulo {
	color: #1b1464;
	font-size: 4rem
}

#ruta {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
	margin-bottom: 75px;
	align-items: center;
}

#ruta>div {
	text-align: center;
}

#ruta img {
	width: 100%;
	/* Ancho al 100% del contenedor */
	height: 500px;
	/* Altura fija */
	object-fit: cover;
	/* Escala la imagen para cubrir completamente el contenedor manteniendo la proporción */
	object-position: center;
	/* Centra la imagen */
	border-radius: 10px;
	/* Bordes redondeados (opcional) */
}

#ruta-est {
	display: flex;
	justify-content: space-around;
	/* Ajusta el espacio entre las columnas */
	align-items: center;
	/* Centra verticalmente los elementos */
	margin-top: 0px;
	flex-wrap: wrap;
}

#ruta-est div {
	display: flex;
	flex-direction: row;
	/* Alinea los íconos y el texto en una fila */
	align-items: center;
	/* Centra verticalmente los íconos y el texto */
	/* margin-left: 50px; */
	padding: 25px;
}

.ruta-est-border {
	/* border-right: solid #cccccc .5px; */
	height: 204px;
}

#ruta-est h3 {
	font-size: 1.8rem;
}

#ruta-est span {
	/* color: #FF8B00; */
	color: #1b1464;
	font-size: 4rem;
}

.ruta-separador {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

@media screen and (max-width:576px) {
	.ruta-title {
		text-align: center;
		margin-left: unset;
		width: 100%;
	}

	.Ruta-titulo {
		color: #1b1464;
		font-size: 2.5rem
	}

	#ruta {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 20px;
		margin-bottom: 75px;
		align-items: center;
		margin-top: unset;
	}

	#ruta-est {
		display: flex;
		justify-content: space-around;
		align-items: center;
		margin-top: 0px;
		flex-direction: column;
	}

	#ruta img {
		width: 350px;
	}
}

@media (min-width :577px) and (max-width:992px) {
	.ruta-title {
		text-align: center;
		margin-left: unset;
		width: 100%;
	}

	.Ruta-titulo {
		color: #1b1464;
		font-size: 2.5rem
	}

	#ruta {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 20px;
		margin-bottom: 75px;
		align-items: center;
		margin-top: unset;
	}

	#ruta-est {
		display: flex;
		justify-content: space-around;
		align-items: center;
		margin-top: 0px;
		flex-direction: column;
	}
}

@media (min-width :993px) and (max-width:1500px) {
	#ruta-est {
		display: grid;
		grid-template-columns: repeat(2, 1fr);

	}
}

.svg {
	height: 85px;
	width: 85px;
	color: #cccccc;
}

/*
.svg2 {
    height: 100px;
    width: 100px;
    color: #cccccc;
} */


/************************/
/*     Acerca De     */
/************************/
#acercade {
	padding-top: 8rem;
	padding-bottom: 8rem;
	background: url('../images/Material\ para\ pagina/IMG_7026.jpg') center center no-repeat;
	background-size: contain;
	text-align: center;
	min-height: -webkit-fill-available;
	border-radius: 25px;
	/* Aplica el border-radius al contenedor #acercade */
}

#acercade h1 {
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 25px;
	/* Puedes ajustar este valor según tus preferencias */
	margin-top: -7rem;
	padding: 20px;
	/* Añade padding para que el borde redondeado sea visible en el texto */
}


@media screen and (max-width:576px) {
	#acercade {
		min-height: unset;
	}
}

/**************************/
/*     Vacantes		      */
/**************************/


.contenedor {
	position: relative;
	display: inline-block;
	text-align: center;
}

.texto-encima {
	position: absolute;
	text-align: left;
	top: 10px;
	left: 10px;
	width: 60%;
}

.texto-encima {
	position: absolute;
	text-align: left;
	top: 10px;
	left: 10px;
	width: 60%;
}

.texto-encima h2 {
	color: white;
}

.texto-encima h3 {
	color: white;
}

.texto-encima h4 {
	color: white;
}

.texto-encima h5 {
	color: white;
}

.texto-encima h6 {
	color: white;
}

.texto-encima p {
	color: white;
}

.centrado {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*********************/
/*     Project 2     */
/*********************/
/* .basic-3 {
	padding-top: 10rem;
	padding-bottom: 10rem;
} */

.basic-3 .image-container {
	margin-bottom: 4rem;
}

.basic-3 h2 {
	margin-bottom: 1.875rem;
}

.basic-3 p {
	margin-bottom: 2rem;
}

.basic-3 .btn-solid-reg {
	margin-right: 0.75rem;
}

.basic-3 .btn-solid-reg {
	cursor: pointer;
}


/*************************/
/*     Details Modal     */
/*************************/
.modal-dialog {
	max-width: 500px;
	margin-right: 1rem;
	margin-left: 1rem;
	pointer-events: all;
}

.modal-content {
	padding: 2.75rem 1.25rem;
}

.modal-content .btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
}

.modal-content .image-container {
	margin-bottom: 3rem;
}

.modal-content img {
	border-radius: 6px;
}

.modal-content h3 {
	margin-bottom: 0.5rem;
}

.modal-content hr {
	width: 44px;
	margin-top: 0.125rem;
	margin-bottom: 1.25rem;
	margin-left: 0;
	height: 2px;
	border: none;
	background-color: #53575a;
}

.modal-content h4 {
	margin-top: 2rem;
	margin-bottom: 0.625rem;
}

.modal-content .list-unstyled {
	margin-bottom: 2rem;
}

.modal-content .list-unstyled .fas {
	color: #555;
	font-size: 0.75rem;
	line-height: 1.75rem;
}

.modal-content .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.modal-content .btn-solid-reg {
	margin-right: 0.75rem;
}

.modal-content .btn-outline-reg {
	cursor: pointer;
}


/*********************/
/*     Project 3     */
/*********************/
.basic-4 {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.basic-4 .text-container {
	margin-bottom: 4rem;
}

.basic-4 h2 {
	margin-bottom: 1.875rem;
}

.basic-4 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.basic-4 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}


/*******************/
/*     Process     */
/*******************/
.basic-5 {
	padding-top: 9.5rem;
	padding-bottom: 9rem;
	background: url('../images/process-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.basic-5 h2 {
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.basic-5 .hr-heading {
	background-color: #ffffff;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
}

.basic-5 .step-container {
	margin-bottom: 2.5rem;
}

.basic-5 .step {
	display: block;
	margin-bottom: 1.5rem;
	padding: 1.75rem 3.25rem;
	border: 1px solid #ffffff;
	border-radius: 4px;
	color: #ffffff;
	font-size: 2rem;
}

.basic-5 .fas {
	display: none;
}

.basic-5 p {
	color: #ffffff;
	opacity: 0.9;
}


/********************/
/*     Services     */
/********************/
.cards-1 {
	padding-top: 9.5rem;
	padding-bottom: 7rem;
}

.cards-1 .h2-heading {
	margin-bottom: 1.125rem;
	text-align: center;
}

.cards-1 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.cards-1 .card {
	margin-bottom: 3rem;
	padding: 3.5rem 1.5rem;
	border: none;
	border-radius: 6px;
}

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-icon {
	width: 90px;
	height: 90px;
	margin-bottom: 2rem;
	border-radius: 50%;
	background-color: #555;
	text-align: center;
}

.cards-1 .card-icon .far,
.cards-1 .card-icon .fas {
	color: #ffffff;
	font-size: 2.125rem;
	line-height: 90px;
}

.cards-1 .card-title {
	margin-bottom: 0.625rem;
}


/*****************/
/*     About     */
/*****************/
.counter {
	padding-top: 9.5rem;
	padding-bottom: 5rem;
	background: url('../images/about-background.jpg') center center no-repeat;
	background-size: cover;
}

.counter h2 {
	margin-bottom: 1.5rem;
	color: #ffffff;
	text-align: center;
}

.counter .hr-heading {
	background-color: #ffffff;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
}

.counter .list-unstyled {
	margin-bottom: 6rem;
}

.counter .list-unstyled li {
	margin-bottom: 2.5rem;
}

.counter .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.counter .list-unstyled h5,
.counter .list-unstyled .text {
	color: #ffffff;
}

.counter .list-unstyled .text {
	opacity: 0.9;
}

.counter .counter-container {
	text-align: center;
}

.counter .counter-cell {
	margin-bottom: 5rem;
}

.counter .purecounter {
	margin-bottom: 1.5rem;
	color: #555;
	font-weight: 600;
	font-size: 6rem;
	line-height: 4rem;
}

.counter .counter-info {
	color: #ffffff;
	/* font-size: 0.875rem;
	line-height: 1.5rem; */
}

/* Java */
.counterJ {
	padding-top: 9.5rem;
	padding-bottom: 5rem;
	background: url('../images/contact-background.jpg') center center no-repeat;
	background-size: cover;
}

.counterJ h2 {
	margin-bottom: 1.5rem;
	color: #ffffff;
	text-align: center;
}

.counterJ .hr-heading {
	background-color: #ffffff;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
}

.counterJ .list-unstyled {
	margin-bottom: 6rem;
}

.counterJ .list-unstyled li {
	margin-bottom: 2.5rem;
}

.counterJ .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.counterJ .list-unstyled h5,
.counterJ .list-unstyled .text {
	color: #ffffff;
}

.counterJ .list-unstyled .text {
	opacity: 0.9;
}

.counterJ .counter-container {
	text-align: center;
}

.counterJ .counter-cell {
	margin-bottom: 5rem;
}

.counterJ .purecounter {
	margin-bottom: 1.5rem;
	color: #555;
	font-weight: 600;
	font-size: 6rem;
	line-height: 4rem;
}

.counterJ .counter-info {
	color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.5rem;
}

/* acercade */
.counterAcerca {
	padding-top: 9.5rem;
	padding-bottom: 5rem;
	background: url('../images/contact-background.jpg') center center no-repeat;
	background-size: cover;
}

.counterAcerca h2 {
	margin-bottom: 1.5rem;
	color: #ffffff;
	text-align: center;
}

.counterAcerca .hr-heading {
	background-color: #ffffff;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
}

.counterAcerca .list-unstyled {
	margin-bottom: 6rem;
}

.counterAcerca .list-unstyled li {
	margin-bottom: 2.5rem;
}

.counterAcerca .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.coucounterAcercanterJ .list-unstyled h5,
.counterAcerca .list-unstyled .text {
	color: #ffffff;
}

.counterAcerca .list-unstyled .text {
	opacity: 0.9;
}

.counterAcerca .counter-container {
	text-align: center;
}

.counterAcerca .counter-cell {
	margin-bottom: 5rem;
}

.counterAcerca .purecounter {
	margin-bottom: 1.5rem;
	color: #555;
	font-weight: 600;
	font-size: 6rem;
	line-height: 4rem;
}

.counterAcerca .counter-info {
	color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.5rem;
}

/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	position: relative;
	padding-top: 9.75rem;
	padding-bottom: 9.75rem;
}

.slider-1 .quotes-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 240px;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 86%;
	text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .testimonial-image {
	/* width: 50%; */
	/* height: 25%; */
	margin-bottom: 2.25rem;
	border-radius: 25px;
}

@media screen and (max-width:576px) {
	.slider-1 .testimonial-image {
		width: 100%;
		/* height: 500px; */
		margin-bottom: 2.25rem;
		border-radius: 25px;
	}
}

.slider-1 .testimonial-text {
	margin-bottom: 1.75rem;
	font-size: 1.25rem;
	line-height: 2rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0.25rem;
	/* color: #ffffff; */
}


/****************/
/*     Team     */
/****************/
.cards-2 {
	padding-top: 9.5rem;
	padding-bottom: 6rem;
	text-align: center;
}

.cards-2 .h2-heading {
	margin-bottom: 1.125rem;
}

.cards-2 .p-heading {
	margin-bottom: 4rem;
}

.cards-2 .card {
	margin-bottom: 4rem;
	border: none;
	background: transparent;
}

.cards-2 .card-image {
	margin-bottom: 2rem;
}

.cards-2 .card-image img {
	border-radius: 4px;
}

.cards-2 .card-body {
	padding: 0;
}

.cards-2 .card-title {
	margin-bottom: 0.25rem;
}

.cards-2 .card-text {
	margin-bottom: 0.875rem;
}

.cards-2 .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	margin-left: 0.25rem;
}

.cards-2 .fa-stack-2x {
	color: #1b1464;
	transition: all 0.2s ease;
}

.cards-2 .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.cards-2 .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}

.cards-2 .fa-stack:hover .fa-stack-1x {
	color: #555;
}


/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 9.5rem;
	padding-bottom: 8.75rem;
	background: url('../images/contact-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.form-1 .h2-heading {
	margin-bottom: 1.125rem;
	color: #ffffff;
}

.form-1 .p-heading {
	margin-bottom: 0.375rem;
	color: #ffffff;
}

.form-1 .list-unstyled {
	margin-bottom: 3.5rem;
	color: #ffffff;
}

.form-1 .list-unstyled a {
	color: #ffffff;
}

.form-1 .list-unstyled .fas {
	color: #555;
}

.form-1 .map-responsive {
	position: relative;
	overflow: hidden;
	height: 0;
	margin-bottom: 5rem;
	padding-bottom: 70%;
	border-radius: 4px;
}

.form-1 .map-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.form-1 .form-control-input,
.form-1 .form-control-textarea {
	border-color: #655f74;
	background-color: #4d475c;
	color: #ffffff;
}

.form-1 .form-control-input::placeholder,
.form-1 .form-control-textarea::placeholder {
	color: #ffffff;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.5rem;
	padding-bottom: 2rem;
	background-color: #58595b;
}

.footer a {
	text-decoration: none;
}

.footer .footer-col {
	margin-bottom: 3rem;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: #bfc4cd;
}

.footer p,
.footer a,
.footer ul {
	color: #bfc4cd;
}

.footer .li-space-lg li {
	margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
	color: #4d475c;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
	color: #d3caca;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
	color: #555;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	background-color: #121015;
	text-align: center;
}

.copyright p,
.copyright a {
	color: #bfc4cd;
	text-decoration: none;
}

/******************************/
/*     WA Button     */
/******************************/
#myBtn2 {
	position: fixed;
	z-index: 99;
	bottom: 80px;
	right: 20px;
	opacity: 0;
	/* Inicialmente transparente */
	visibility: hidden;
	/* Inicialmente invisible */
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	outline: none;
	background-color: green;
	cursor: pointer;
	transition: opacity 0.5s, visibility 0.5s;
	/* Transición para animar cambios en opacity y visibility */
}

#myBtn2.mostrar {
	opacity: 1;
	visibility: visible;
}

#myBtn2:hover {
	background-color: #0f0f11;
}

#myBtn2 img {
	margin-bottom: 0.25rem;
	margin-left: 0.125rem;
	width: 18px;
}

/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed;
	z-index: 99;
	bottom: 20px;
	right: 20px;
	opacity: 0;
	/* Inicialmente transparente */
	visibility: hidden;
	/* Inicialmente invisible */
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	outline: none;
	background-color: #323137;
	cursor: pointer;
	transition: opacity 0.5s, visibility 0.5s;
	/* Transición para animar cambios en opacity y visibility */
}

#myBtn.mostrar {
	opacity: 1;
	visibility: visible;
}

#myBtn:hover {
	background-color: #0f0f11;
}

#myBtn img {
	margin-bottom: 0.25rem;
	margin-left: 0.125rem;
	width: 18px;
}



/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: #ffffff;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #1b1464;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		padding-top: 11rem;
		padding-bottom: 9rem;
	}

	.header .btn-solid-lg {
		display: inline-block;
		margin-bottom: 0;
	}

	.header .btn-outline-lg {
		display: inline-block;
	}

	.header .btn-solid-lg,
	.header .btn-outline-lg {
		margin-right: 0.5rem;
		margin-left: 0.5rem;
	}

	/* end of header */


	/* Process */
	.basic-5 .step {
		display: inline-block;
	}

	.basic-5 .fas {
		display: inline-block;
		margin-right: 1rem;
		margin-left: 1rem;
		color: #ffffff;
		font-size: 1.5rem;
		vertical-align: 10%;
	}

	.basic-5 p {
		width: 40rem;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of process */


	/* About */
	.counter .counter-cell {
		display: inline-block;
		width: 210px;
		margin-right: 1rem;
		margin-left: 1rem;
		vertical-align: top;
	}

	/* end of about */


	/* Contact */
	.form-1 .list-unstyled li {
		display: inline-block;
		margin-right: 1rem;
	}

	/* end of contact */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}

	/* end of extra pages */
}

/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {

	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 46rem;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of general styles */


	/* Navigation */
	/* .navbar {
		padding-top: 0.5rem;
		box-shadow: none;
		transition: all 0.2s;
	} */

	/* .navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #58595b;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	} */

	/* .offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	} */

	/* .offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	} */

	/* .navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	} */

	/* .navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	} */

	/* .navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	} */

	/* .navbar .dropdown-divider {
		width: 90%;
	} */

	/* .navbar .social-icons {
		margin-left: 0.5rem;
	} */

	/* .navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	} */

	/* end of navigation */


	/* Header */
	.header {
		padding-top: 15rem;
		padding-bottom: 13rem;
		text-align: left;
	}

	.header .h1-large {
		font-size: 6rem;
		line-height: 6.5rem;
	}

	.header .button-container {
		margin-top: 7rem;
		margin-left: 2rem;
	}

	/* end of header */


	/* Introduction */
	.basic-1 h1 {
		margin-bottom: 0;
	}

	/* end of introduction */


	/* Project 1 */
	.basic-2 .text-container {
		/* margin-top: 1.75rem; */
		/* margin-right: 2rem; */
		margin-bottom: 0;
	}

	/* end of project 1 */


	/* Project 2 */
	.basic-3 .text-container {
		/* margin-left: 2rem; */
		padding-top: unset !important;
	}

	.basic-3 .image-container {
		margin-bottom: 0;
	}

	/* end of project 2 */


	/* Details Modal */
	/* Stops body and navbar shift on modal open */
	body.modal-open {
		overflow-y: scroll !important;
		padding-right: 0 !important;
	}

	body.modal-open .navbar {
		padding-right: 0 !important;
	}

	/* end of stops body and navbar shift on modal open */

	.modal {
		padding-right: 0 !important;
	}

	.modal-dialog {
		margin-top: 120px;
		margin-right: auto;
		margin-left: auto;
	}

	.modal-content .image-container {
		margin-bottom: 0;
	}

	/* end of details modal */


	/* Project 3 */
	.basic-4 .text-container {
		margin-right: 2rem;
		margin-bottom: 0;
	}

	/* end of project 3 */


	/* Services */
	.cards-1 .card {
		display: inline-block;
		width: 290px;
		vertical-align: top;
	}

	.cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1.5rem;
		margin-left: 1.5rem;
	}

	/* end of services */


	/* Contact */
	.form-1 .map-responsive {
		margin-bottom: 0;
	}

	/* end of contact */


	/* Footer */
	.footer .footer-col {
		margin-bottom: 2rem;
	}

	.footer .footer-col.first {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}

	.footer .footer-col.second {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}

	.footer .footer-col.third {
		display: inline-block;
		width: 224px;
		text-align: right;
		vertical-align: top;
	}

	.footer .footer-col.third .fa-stack {
		margin-right: 0;
		margin-left: 0.375rem;
	}

	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	/* end of extra pages */
}

/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

	/* General Styles */
	.container {
		max-width: 1140px;
	}

	/* end of general styles */


	/* Navigation */
	/* .navbar .container {
		max-width: 1430px;
		max-width: 100%;
	} */

	/* end of navigation */


	/* Header */
	.header {
		padding-top: 18.5rem;
		padding-bottom: 15.5rem;
	}

	.header .h1-large {
		font-size: 7rem;
		line-height: 7.25rem;
	}

	.header .button-container {
		margin-top: 8.75rem;
		margin-left: 3rem;
	}

	.header .btn-solid-lg,
	.header .btn-outline-lg {
		margin: 0;
		padding: 1.875rem 3rem;
		font-size: 1rem;
	}

	.header .btn-solid-lg {
		margin-right: 0.75rem;
	}

	/* end of header */


	/* Introduction */
	.basic-1 h1 {
		margin-top: 1.125rem;
		margin-right: 2.5rem;
	}

	/* end of introduction */


	/* Project 1 */
	.basic-2 .text-container {
		/* margin-top: 4.25rem; */
	}

	.basic-2 .image-container {
		margin-left: 3.375rem;
	}

	/* end of project 1 */


	/* Project 2 */
	.basic-3 .text-container {
		/* margin-top: 2.75rem; */
		padding-top: unset !important;
	}

	/* end of project 2 */


	/* Details Modal */
	.modal-content {
		padding-right: 2rem;
		padding-left: 2rem;
	}

	/* end of details modal */


	/* Project 3 */
	.basic-4 .text-container {
		margin-top: 3.25rem;
	}

	.basic-4 .image-container {
		margin-left: 3.375rem;
	}

	/* end of project 3 */


	/* Services */
	.cards-1 .card {
		width: 352px;
		padding: 3.875rem 2.75rem;
	}

	/* end of services */


	/* About */
	.counter {
		padding-bottom: 6rem;
	}

	.counter .list-unstyled {
		margin-bottom: 0;
	}

	.counter .counter-container {
		margin-top: 1rem;
		margin-left: 3.5rem;
	}

	/* end of about */


	/* Testimonials */
	.slider-1 .quotes-decoration {
		left: 170px;
	}

	.slider-1 .slider-container {
		width: 82%;
		margin-right: auto;
		margin-left: auto;
	}

	/* end of testimonials */


	/* Team */
	.cards-2 .card {
		display: inline-block;
		width: 256px;
		vertical-align: top;
	}

	.cards-2 .card:nth-of-type(4n+2) {
		margin-left: 1.5rem;
		margin-right: 0.75rem;
	}

	.cards-2 .card:nth-of-type(4n+3) {
		margin-left: 0.75rem;
		margin-right: 1.5rem;
	}

	/* end of team */


	/* Contact */
	.form-1 .map-responsive {
		margin-right: 0.5rem;
		padding-bottom: 81%;
	}

	.form-1 form {
		margin-left: 0.5rem;
	}

	/* end of contact */


	/* Footer */
	.footer .footer-col.first {
		width: 352px;
		margin-right: 6rem;
	}

	.footer .footer-col.second {
		margin-right: 6.5rem;
	}

	.footer .footer-col.third {
		text-align: right;
	}

	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}

	/* end of extra pages */
}

/* end of min-width 1200px */

.img-ruta {
	border-radius: 25px;
}

.testimonial-content-container {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}


/* Video Embebed */
/* .embed-responsive {
	position: relative;
	background-image: url("../images/Material para pagina/Oscar lee.jpg");
	background-size: cover;
	background-position: center center;
	height: 50rem;
	
} */
.embed-responsive {
	display: flex;
	position: relative;
	background-image: url("../images/Material para pagina/Oscar lee.jpg");
	background-size: cover;
	background-position: center center;
	height: 50rem;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;

}

@media (min-width: 992px) {
	.embed-responsive {
		background-image: unset;
		height: auto;
	}

}

.embed-responsive::after {
	height: 100%;
	width: 100%;
	position: absolute;
	content: '';
	display: block;
	top: 0;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a90329+0,000000+51,6b6b6b+100&0.7+0,0.7+100 */
	background: -moz-linear-gradient(-45deg, rgba(27, 20, 100, 0.7) 0%, rgba(88, 89, 91, 0.7) 51%, rgba(88, 89, 91, 0.7) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, rgba(27, 20, 100, 0.7) 0%, rgba(88, 89, 91, 0.7) 51%, rgba(88, 89, 91, 0.7) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, rgba(27, 20, 100, 0.7) 0%, rgba(88, 89, 91, 0.7) 51%, rgba(88, 89, 91, 0.7) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3a90329', endColorstr='#b36b6b6b', GradientType=1);
	/* IE6-9 fallback on horizontal gradient */
}

.informacion-concierto {
	position: absolute;
	z-index: 100;
	top: 20%;
	text-align: center;
}

.informacion-concierto h1 {
	font-size: 3rem;
	line-height: 6rem;
	color: white;
}

@media (min-width: 768px) {
	.informacion-concierto {
		top: 70%;
		left: 20%;
		text-align: right;
	}

	.informacion-concierto h1 {
		font-size: 4rem;
		line-height: unset;
	}
}


.informacion-concierto h1 span,
.informacion-concierto p {
	font-weight: 700;
	-webkit-box-shadow: 0px 17px 24px -13px rgba(0, 0, 0, 0.34);
	-moz-box-shadow: 0px 17px 24px -13px rgba(0, 0, 0, 0.34);
	box-shadow: 0px 17px 24px -13px rgba(0, 0, 0, 0.34);
}

.informacion-concierto p {
	font-size: 2rem;
}

.informacion-concierto .text-dark,
.contenido-principal .text-dark {
	color: #1b1464 !important;
	font-weight: 700;
}

.navbar-expand-lg .navbar-collapse {
	/* display: flex;
	flex-basis: auto; */
	flex-direction: row-reverse !important;
}

.nav-item {
	text-decoration: none !important;
	text-align: end !important;
}

.show {
	background-color: #58595b;
	border-radius: 25px;
}

.bg-success .show {
	background-color: white !important;
}

.accordion-collapse {
	background-color: white !important;
}


@media screen and (max-width:700px) {

	.informacion-concierto .text-dark,
	.contenido-principal .text-dark {
		color: white !important;
		font-weight: 700;
	}
	.bg-light{
		background-color: unset !important;
	}
	.p-5{
		padding: 1rem !important;
		padding-bottom: 1.5rem !important;
		padding-top: 1.5rem !important;
	}
	#ruta-est span {
		font-size: 3.5rem;
	}

	.svg {
		height: 80px;
		width: 80px;
		color: #cccccc;
	}
	#ruta-est div {
		padding-left: 25px;
		text-align: right;
	}
	h3 {
		line-height: normal;
		
	}
}