* {
	margin: 0;
	padding: 0;
}

/***	nav		***/

nav {
	padding: 0;
	margin: 0;
	width: 100%;
}

nav a {
	color: #FFFFFF;
	margin: 1%;
}

nav a span {
	text-align: center;
	font-size: 14px;
}

@media (min-width: 768px) {
	#menu {
		display: none !important;
	}
}

/***	end-nav		***/

/***	banner		***/

.imagen {
	max-height: 25.5em;
	width: 100%;
}

.container-fluid {
	background-color: white;
}

.shadow-lg {
	box-shadow: 0 1rem 3rem rgb(0, 0, 0,0.7) !important;
}

.banner {
	background-image: url(../../imgs/fondo.jpg);
	background-repeat: no-repeat;
    background-position: center center;
	background-size: cover;
	height: 100vh;
    display: flex;
    justify-content: center;
	align-items: start;
	width: 100%;
	flex-direction: column;
}

.banner:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(6, 7, 38, 0.95);
    top: 0;
    left: 0;
}

.banner h1 {
	color: #fff;
	font-size: 3em;
	z-index: 3;
	padding-left: 150px;
}

.banner h4 {
	color: #fff;
	font-size: 1.5em;
	z-index: 3;
	padding-left: 150px;
}

@media (max-width: 1100px) {
	
	.banner h4, .banner h1 {
		padding-left: 30px;
		padding-right: 30px;
	}

	.banner {
		align-items: center;
	}
}

/***	end-banner		***/

/*	botones sociales banner	*/

.banner .sociales {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 3;
	width: 100%;
	display: flex;
	justify-content: end;
	padding-left: 20px;
}

.banner .sociales a {
	color: #041853;
	font-size: 2em;
	margin: 15px;
	transition: all .5s;
}

.banner .sociales a:hover {
	color: #590404;
	transform: scale(1.2);
	transition: all .5s;

}

.banner .sociales a svg {
	font-size: 1.5em;
}

@media (max-width: 767.9px) {
	.banner .sociales {
		display: none;
	}
}

/*	end botones sociales banner	*/

/*	banner	banderas	*/
.banner .banderas {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	width: 100%;
	display: flex;
	justify-content: end;
	padding-right: 35px;
	padding-left: 35px;
	padding-top: 15px;
}
.banner .banderas a {
	margin-left: 15px;
}

@media (max-width: 767.9px) {
	.banner .banderas {
		display: none;
	}
}
/*	end banderas	*/


/***	menu-responsive		***/

nav a.labelmenu {
	color: #fff !important;
}

@media (min-width: 768px){
	.labelmenu {
		display: none;
	}

	nav {
		display: flex;
		justify-content: space-between;
	}

	.nav-position {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.nav-position svg.svg-inline--fa {
		width: 100%;
	}

}

@media (max-width: 768.1px){
	.nav-position {
		display: flex;
		align-items: center;
		margin: 20px auto;
	}

	a.nav-position span {
		width: auto;
		font-size: 2em;
		text-align: left;
		margin-left: 10px;
	}

	#menu-colapsado a {
		color: #fff;
		display: flex;
		justify-content: flex-start;
		margin-bottom: 30px;
		width: 210px;
	}

	#navbarSupportedContent a svg {
		margin: 5px;
		width: auto;
	}

	/*	diseño de botones sociales	*/
	#menu .boton-menu {
		margin-bottom: 15px;
	}

	#menu .efecto-nav {
		margin-top: 25px;
		margin-bottom: 25px;
	}

	#menu .efecto-nav svg {
		margin-right: 20px;
		font-size: 3rem;
	}
}

@media (max-width: 383px) {
	h1.title-main b span {
		text-align: left;
	}
}

.navbar-dark .navbar-toggler {
	border-color: rgba(223, 223, 223);
}

nav a:hover {
	text-decoration: none;
}

/* 	barras del boton del menu responsive */

.menu-container .bars {
	width: 70px;
	height: auto;
	position: relative;
	transition: transform 0.3s cubic-bezier(0.694,  0.048, 0.335, 1.000);
}

.menu-container .bars span {
	display: block;
	width: 100%;
	height: 5px;
	background-color: #d7d7d7;
	margin-top: 10px;
}

.menu-container .bars span:first-child {
	margin-top: 0;
	transform: scaleX(1);
	transition: transform 0.2s cubic-bezier(0.694,  0.048, 0.335, 1.000);
	transition-delay: 0.4s;
}

.menu-container .bars span:nth-child(3) {
	width: 100%;
	transition: width 0.2s cubic-bezier(0.694,  0.048, 0.335, 1.000);
	transition-delay: 0.4s;
}

.menu-container .bars .other-bar {
	width: 5px;
	height: 0;
	background-color: #d7d7d7;
	position: absolute;
	top: -16px;
	left: 50%;
	margin-left: -5px;
	transition: height 0.4s cubic-bezier(0.694,  0.048, 0.335, 1.000);
	z-index: 10;
}

.menu-container.is-menu-open .bars {
	transform: rotate(45deg);
	transition-delay: 0.4s;
}

.menu-container.is-menu-open .bars span:first-child {
	transform: scaleX(0);
    transition: transform 0.2s cubic-bezier(0.694,  0.048, 0.335, 1.000);
}

.menu-container.is-menu-open .bars span:nth-child(3) {
	width: 0;
    transition: width 0.2s cubic-bezier(0.694,  0.048, 0.335, 1.000);
}

.menu-container.is-menu-open .bars .other-bar {
	height: 70px;
	transition: height 0.2s cubic-bezier(0.694,  0.048, 0.335, 1.000);
	transition-delay: 0.3s;
}

@media (max-width: 767px) {
	#menu {
		z-index: 4;
		background: transparent;
		position: absolute;
		top: 0;
		right: 0;
		padding: 0;
		height: 100%;
		overflow: hidden;
	}
}

#menu-colapsado {
	display: flex;
	height: 100%;
	width: 100%;
	border-bottom	: 2px solid #b52626ed;
	background-color: #050c1a;
	justify-content: center;
	flex-direction: column;
	transform: translateX(100%); /* Inicia fuera de la vista, arriba */
    opacity: 0;
    visibility: hidden;
    transition: transform .5s, opacity .5s, visibility .5s;
} 

nav #menu-colapsado.show-menu {
	display: flex;
	transform: translateX(0); /* Vuelve a su posición original */
    opacity: 1;
    visibility: visible;
}

.expand-info {
	height: 100%;
} 

.fixed-screen {
	overflow: hidden;
}

#menu-colapsado img {
	width: 70px;
	height: 45px;
	border: 3px solid white;
	border-radius: 12px;
}

.text-lang {
	color: #fff;
	margin-top: 30px;
}

#menu-colapsado .lenguaje a {
	display: flex;
	justify-content: center;
}

/**	end-menu-responsive		***/

h1, h2, h3, h4, li, article p, footer p, p {
	font-family: 'Roboto Mono', monospace;
}

.margin-title {
	margin-top: 80px;
	margin-bottom: 80px;
}

.articles h3 {
	margin: 30px;
}

.articles article {
	margin: 10px;
	text-align: left;
}

.articles {
	margin: 10px;
}

.articles p {
	font-size: 25px;
	line-height: 45px;
	margin-bottom: 35px;
}

footer {
	background-color: rgb(221, 221, 221);
    border-top: 2px solid #b52626ed;
  	color: black;
}

footer p {
	margin-bottom: 0 !important;
	font-size: .9rem;
}

@media (max-width: 630px){
	.banner h1 span {
		display: block;
	}

	.title-main {
		margin-bottom: 20px;
	}
}

.proyectos .card .card-text small {
	font-size: 90% !important;
}

.proyectos .card .card-text {
	margin-top: 10px;
}

.btn-card {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

.btn-neg {
	background-color: #1642a8c7;
	color: #fff;
	font-weight: bold;
}

button.btn {
	width: 70%;
	transition: all 1.5s;
	border: 2px solid #1b2a64e3;
}

button.btn:hover {
	color: #fff;
	background-color: #1b2a64e3;
	transition: all 1s;
}

.boton-menu {
	z-index: 1;
	padding: 20px;
	position: absolute;
	top: 0;
	right: 0;
}

.col-img-d {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*	title responsive and desktop */

@media (max-width: 990.5px) {
	#title-desktop {
		display: none;
	}
}

@media (min-width: 991px) {
	#title-responsive {
		display: none;
	}
}


/*	end title responsive and desktop */

/*	loader	*/
.lds-roller {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;

}
.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgb(255, 255, 255);
	margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
	top: 63px;
	left: 63px;
}

.lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
	top: 68px;
	left: 56px;
}

.lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
	top: 71px;
	left: 48px;
}

.lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}

.lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
	top: 71px;
	left: 32px;
}

.lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
	top: 68px;
	left: 24px;
}

.lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
	top: 63px;
	left: 17px;
}

.lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
	top: 56px;
	left: 12px;
}

@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.oculto {
	overflow: hidden;
}

.centradoo {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgb(6, 7, 38);
}
/* end loader */

.article-first {
	margin-bottom: 60px;
}


/*<!-- triangle div -->*/
.custom-shape-divider-bottom-1675807867 {
    position: absolute;
    bottom: 0;
    left: 0;
	height: 100%;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
	z-index: 1;
}

.custom-shape-divider-bottom-1675807867 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1675807867 .shape-fill {
    fill: #FFFFFF;
}

/*--<!-- endn triangle div  -->--*/


/*-------- boton lenguaje-----------*/

.boton {
	display: inline-block;
	position: relative;
	padding: .5rem 1.25rem;
	background-color: #fff;
	color: #fff;
	font-family: Mosk,sans-serif;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: .02em;
	cursor: pointer;
}

.boton::after {
	position: absolute;
	content: attr(data-content);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgb(6, 7, 38);
	color: #fff;
	border: solid 2px #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-.3rem,-.3rem);
	transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}

.boton:hover::after {
	transform: translate(0,0);
}

/*-------- end boton lenguaje-----------*/


/*-------- Modall Language -----------*/

.modall {
	height: 100%;
	width: 100%;
	background-color: #020202ed;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 12;
	display: none;
	justify-content: center;
	align-items: center;
}

.box {
	height: 50%;
	width: 50%;
	background-color: rgb(87, 87, 87);
	border: 3.5px solid #ffff;
}

@keyframes modal-show {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.swing-in-top-fwd {
	-webkit-animation: swing-in-top-fwd 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: swing-in-top-fwd 1.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.swing-out-top-fwd {
	-webkit-animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) reverse both;
	        animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) reverse both;
}

@-webkit-keyframes swing-in-top-fwd {
	0% {
		-webkit-transform: rotateX(-100deg);
				transform: rotateX(-100deg);
		-webkit-transform-origin: top;
				transform-origin: top;
		opacity: 0;
	}

	100% {
		-webkit-transform: rotateX(0deg);
				transform: rotateX(0deg);
		-webkit-transform-origin: top;
				transform-origin: top;
		opacity: 1;
	}
}

@keyframes swing-in-top-fwd {
	0% {
	  -webkit-transform: rotateX(-100deg);
			  transform: rotateX(-100deg);
	  -webkit-transform-origin: top;
			  transform-origin: top;
	  opacity: 0;
	}
	100% {
	  -webkit-transform: rotateX(0deg);
			  transform: rotateX(0deg);
	  -webkit-transform-origin: top;
			  transform-origin: top;
	  opacity: 1;
	}
}

.close-modal svg{
	width: 40px;
	height: 40px;
}

.close-modal {
	position: absolute;
	top: 0;
	right: 0;
	font-weight: bold;
	font-size: 20px;
	padding-right: 10px;
	padding-top: 10px;
	color: #bfbfbf;
	text-decoration: none;
	transition: all .5s;
	cursor: pointer;
	fill: #fff;
}

.close-modal:hover {
	text-decoration: none;
	fill: #b52626ed;
	transition: all .5s;
}

.box .boton::after {
	background-color: rgb(87, 87, 87);
}

.lang-flex {
	flex-direction: column;
	align-items: center;
}

.lang-flex .boton {
	width: 150px;
	cursor: pointer;
}

.lang-flex img {
	width: 250px;
	height: 150px;
	margin-bottom: 20px;
	border: 5px solid #fff;
	transition: transform .5s;
}

.lang-flex img:hover {
	transform: scale(1.1);
	transition: all .5s;
}

.bandera-lang:hover ~ .boton::after {
	transform: translate(0,0);
}

@media (max-width: 1366px) {
	.box {
		height: 60%;
		width: 80%;	
	}
}

@media (max-width: 991px) {
	
	.lang-flex {
		flex-direction: row;
	}

	.lang-flex img {
		width: 200px;
		height: 120px;
		margin-bottom: 20px;
		margin-right: 30px;
		transition: all .5s;
	}

}



/*-------- Modall Language -----------*/

/*-------- Skills ------------*/


/*----------Triangle div--------------*/

.custom-shape-divider-top-1680983472 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1680983472 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 89px;
}

.custom-shape-divider-top-1680983472 .shape-fill {
    fill: #ffffff;
}

/*--------------------------------*/

.sec-3-color {
	background-color: rgb(6, 7, 38);
}

.title-2 {
	padding-bottom: 20px;
	color: #fff;
	font-weight: bold;
}

.box-skill {
	border: 3px solid #fff;
	min-height: 350px;
	background-color: #000a1c;
	margin-bottom: 50px;
	-webkit-box-shadow: 11px 11px 0px 0px rgb(255, 255, 255);
	-moz-box-shadow: 11px 11px 0px 0px rgb(255, 255, 255);
	box-shadow: 11px 11px 0px 0px rgb(255, 255, 255);
}

.box-skill svg {
	width: 250px;
	height: 250px;
	stroke: #fff;
	margin-bottom: 10px;
}

.skills {
	margin-top: 0;
}

.skills img {
	width: 55px;
}

.skills .just-start {
	justify-content: start;
	margin-left: 10%;
}

.skills .just-end {
	justify-content: end;
	margin-right: 10%;
}

.skills .title {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
	color: #fff;
	font-weight: bold;
}

.skills .sec2-skill {
	padding: 1.5rem;
	line-height: 1.9rem;
	font-size: 1.1rem;
}

.sec2-skill p, .sec2-skill ul li, .sec2-skill h4 {
	text-align: left;
	color: #fff;
	font-size: 21px;
}

.sec2-skill ul li {
	margin-bottom: 5px;
}

.sec2-skill ul {
	padding-left: 25px;
}

.sec2-skill p b {
	color: #b52626ed;
}
.box-skill {
	flex: 0 0 55%;
	max-width: 80%;
}

.box-skill {
	flex: 0 0 100%;
	max-width: 80%;
	margin-bottom: 120px;
}


@media (min-width: 1450px) {

	.box-skill {
		flex: 0 0 55%;
		max-width: 80%;
	}

}

@media (min-width: 992px) {

	.box-skill {
		flex: 0 0 50%;
		max-width: 80%;
	}

}

@media (max-width: 991px) {
	.skills .just-end, .skills .just-start {
		margin-left: 0;
		margin-right: 0;
	}

	.box-skill {
		flex: 0 0 100%;
		max-width: 90%;
		margin-bottom: 120px;
	}
	
	.skills div.row.responsive-align {
		display: flex;
		justify-content: center !important;
	}

}

@media (max-width: 768px){
	.reverse-rows {
		flex-wrap: wrap-reverse;
		padding-bottom: 10px;
	}
}

@media (max-width: px){

}

/*-------- end Skills section ------------*/


body::-webkit-scrollbar {
    -webkit-appearance: none;
}

body::-webkit-scrollbar:vertical {
    width:10px;
}

body::-webkit-scrollbar-button:increment, body::-webkit-scrollbar-button {
    display: none;
} 

body::-webkit-scrollbar:horizontal {
    height: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f3f3f1;
}

body::-webkit-scrollbar-track {
    border-radius: 10px;  
}

body {
    /*Estilos estándar experimentales (Principalmente Firefox)*/
    scrollbar-color: rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
    scrollbar-width: thin;
}