@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Open Sans', sans-serif;
	scroll-behavior: smooth;
	
}
a{
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	
}
/*hero*/
#hero {
	background-image: url(../img/hero/1.jpg);
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;	
	animation: imghero 20s infinite linear ;
	
}

#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #1a194d;
	opacity: 0.6;
	z-index: -1;	
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: center;
	
	user-select: none;
}

#hero  h2 {
	
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
	font-size: 19rem;
	color: #fff;
}

#hero  h2 span{
	background: #28274b;   
	padding: 0px 20px;
    margin:-20px

}

.sl div div{
	margin-bottom: 195px;
	display: inline-block;
	padding: 4px 52px;
	
	
}

.sl div:nth-child(1){
	animation: ani 15s linear infinite;
}

.sl{
	overflow: hidden;
	height: 230px;
}

	
	
	@keyframes ani{
		0% {margin-top:-1040PX;}
		5% {margin-top:-1040PX;}

		15% {margin-top:-800PX;}
		30% {margin-top:-800PX;}

		45% {margin-top:-550PX;}
		60% {margin-top:-550PX;}

		75% {margin-top:-310PX;}
		100% {margin-top:-310PX;}	
        
	  }
#hero  h4 {
	display: block;
	font-size: 4.2rem;
	position: relative;
	color: #fff;
	font-family: 'Roboto', sans-serif;
}
#hero .cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid #1a194d;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	margin-top: 30px;
	transition: .3s ease;
	transition-property: background-color, color;	
}
#hero .cta:hover {
	color: white;
	background-color: rgba(255, 196, 0, 0.774);
}


@keyframes imghero{
	0%{
		background-image: url(../img/hero/1.jpg);
	}
	25%{
		background-image: url(../img/hero/1.jpg);
	}

	28%{
		background-image: url(../img/hero/2.jpg);
	}
	50%{
		background-image: url(../img/hero/2.jpg);
	}


	54%{
		background-image: url(../img/hero/4.jpg);
	}
	75%{
		background-image: url(../img/hero/4.jpg);
	}

	79%{
		background-image: url(../img/hero/5.jpg);
	}
	100%{
		background-image: url(../img/hero/5.jpg);
	}
	
}

/*end hero*/
/* Keyframes */
@keyframes menu_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: #fff;
	}
}
@keyframes text_reveal_name {
	100% {
		color: #fff;
		font-weight: 500;
	}
}
/* End Keyframes */

/* About Section */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 35px;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h1{
	font-size: 5rem;
	color: rgb(40, 40, 87);
	text-align: center;
	
}
#about .col-right p {
	margin-bottom: 20px;
	font-size: 2rem;
	text-align: left;
	
}

#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid rgba(255, 196, 0, 0.774);
	z-index: -1;
}
#about img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/* End About Section */



/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	
	h1.section-title {
		font-size: 6rem;
	}

	/* Hero */
	#hero h1 {
		font-size: 7rem;
	}
	/* End Hero */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid rgba(255, 196, 0, 0.774);
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
		
	}
	/* End About */
/* Services Section */
#services .service-bottom .service-item {
	flex-basis: 45%;
	margin: 1.5%;
}

/* End Services Section */

}
/* End Media Query For Tablet */



/* Services Section */
.services {
	flex-direction: column;
	min-height: 50vh;
	
	padding: 100px 68px;
	background: #28274b;        
}

.services .services-header {
	width: 100%;
	text-align: center;
}
.services .services-header .services-header-heading {
	font-size: 5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 196, 0, 0.774);
	
}
.services .services-header .services-header-desc {
	font-size: 1rem;
	line-height: 2rem;
	margin-top: 10px;
	
}

.services .services-info {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex-direction: column;	
  
}
.services .services-info .service {
	
	border-radius: 1rem;
	width: 100%;
	min-height: 558px;
	position: relative;
	transition: .3s ease transform;
	margin: 5px;
    background: #1a194d;
}
.services .services-info .service .service-card {
	position: absolute;
	height: 100%;
	width: 100%;
	transform-style: preserve-3d;
	transition: .3s ease transform;
	display: block;
}
.services .services-info .service .service-card .service-front,
.services .services-info .service .service-card .service-back {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	backface-visibility: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.13);
	padding: 30px;
}
.services .services-info .service .service-card .service-back {
	transform: rotateY(180deg);
}

.services .services-info .service .service-card .service-front i {
	font-size: 5rem;
	color: black;
	margin-bottom: 10px;
}
.services .services-info .service .service-card .service-front .service-front-heading{
	font-size: 4rem;
	text-transform: capitalize;
	
}
.services .services-info .service .service-card .service-back .service-back-heading {
	font-size: 4rem;
	text-transform: capitalize;
	color: rgba(255, 196, 0, 0.774);
}
.services .services-info .service:hover .service-card {
	transform: rotateY(180deg);
}
.services .services-info .service .service-card .service-back .service-back-desc {
	font-size: 1.5rem;
	
	text-align: left;
	justify-content: space-around;
	
	font-weight: bold;
	color: #fff;


	
   
    
}
/* imagen  */
.services .services-info .service .service-card .service-front {
	
	background-size: cover;
	position: relative;
	color: white;
}
.services .services-info .service.service-card .service-front::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.274);
	z-index: -1;
}
.services .services-info .service .service-card .service-front i {
	color: white;
}

.services .services-info .service1 {
	border-radius: 1rem;
	width: 100%;
	min-height: 558px;
	position: relative;
	transition: .3s ease transform;
	margin: 2px;
	background: #1a194d;
}
.services .services-info .service1 .service-card {
	position: absolute;
	height: 100%;
	width: 100%;
	transform-style: preserve-3d;
	transition: .3s ease transform;
	display: block;
	
}
.services .services-info .service1 .service-card .service-front,
.services .services-info .service1 .service-card .service-back {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	backface-visibility: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.13);
	padding: 20px;
}
.services .services-info .service1 .service-card .service-back {
	transform: rotateY(180deg);
}


.services .services-info .service1 .service-card .service-front .service-front-heading
 {
	font-size: 4rem;
	text-align: center;
	text-transform: capitalize;
}
.services .services-info .service1 .service-card .service-back .service-back-heading{
	font-size: 2rem;
	text-transform: capitalize;
	color: rgba(255, 196, 0, 0.774);
}
.services .services-info .service1:hover .service-card {
	transform: rotateY(180deg);
}
.services .services-info .service1 .service-card .service-back .service-back-desc {
	font-size: 1.5rem;
	margin-top: px;
	text-align: left;
	font-weight: bold;
	color: #fff;
}


.services .services-info .service:nth-child(1) .service-card .service-front {
	border-radius: 1rem;
	background-image: url(../img/nosotros/OBJETIVO.jpeg);
	background-size: cover;
	position: relative;
	color: white;
	opacity: 0.8;
}

.services .services-info .service:nth-child(2) .service-card .service-front {
	border-radius: 1rem;
	background-image: url(../img/nosotros/nos5.jpeg);
	background-size: cover;
	position: relative;
	color: white;
	opacity: 0.8;
}


.services .services-info .service:nth-child(3) .service-card .service-front {
	border-radius: 1rem;
	background-image: url(../img/nosotros/nos4.PNG);
	background-size: cover;
	position: relative;
	color: white;
	opacity: 0.8;
}


.services .services-info .service1 .service-card .service-front {
	border-radius: 1rem;
	background-image: url(../img/nosotros/nos6.jpeg);
	background-size: cover;
	position: relative;
	color: white;
	opacity: 0.8;
}


/* End Services Section */


/* caracteriza */
.contenedor1 {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    padding: 50px 0;
	
	
}

.caracteri {
    display: flex;
    justify-content: space-between;
}

.caracteri h1 {
    width: 630px;
	margin-right: 30px;
	align-items: center;
	text-align: center;
	margin-top: 130px;
	font-size: 9rem;
	color: rgba(255, 196, 0, 0.774);
	
	
	
}

.box-skills {
    margin: 29px 29px 0 0;
}

.box-skills h4 {
    font-size: 24px;
    background:  #28274b;   
    width: 340px;
    border-radius: 6px;
    padding: 13px 0 13px 15px;
    margin-bottom: 10px;
	font-size: 2rem;
	color: #fff;
	animation: boxcolor 30s infinite linear ;
	animation-delay: 10s infinite linear;	
	
}

.box-skills h4:nth-child(1) {
	animation-delay: 5.5s;
	
}
.box-skills h4:nth-child(2)  {
	animation-delay: 10.5s;
}
.box-skills h4:nth-child(3)  {
	animation-delay: 15.5s;
}
.box-skills h4:nth-child(4)  {
	animation-delay: 20.5s;
}
.box-skills h4:nth-child(5){
	animation-delay: 25.5s;
}
.box-skills h4:nth-child(6){
	animation-delay: 30.5s;
}

@keyframes boxcolor{
	0%{
		background: rgb(175, 175, 185);
	}
	20%{
		background: #28274b; 
	}	

	21%{
		background: #28274b; 
	}
	
	40%{
		background: #28274b; 
	}

	41%{
		background: #28274b; 
	}

	60%{
		background: #28274b; 
	}
	61%{
		background: #28274b; 
	}

	80%{
		background: #28274b; 
	}
	81%{
		background: #28274b; 
	}

	100%{
		background: #28274b; 
	}
	
}


.box-skills i {
    color: #fff;
    font-size: 30px;
	
}
/* end caracteriza */


/* nav */
nav {
    width: 100%;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid transparent;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .2);
    position: fixed;
    top: 0;
    z-index: 100;
    transition: ease-in-out 0.5s;
}

.nav {
    display: flex;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    align-items: center;
    padding: 0 40px;
}

.nav .logo {
    height: 70px;

}

.nav .logo img {
    height: 100%;
    
}

.enlaces-header {
    font-weight: 300;
    transition: ease-in-out 0.5s;
	margin-left: 550px;
}

.nav .enlaces-header a {
    color: darkblue;
    font-size: 2rem;
    margin-left: 30px;
	letter-spacing: 0.3rem;
}

.nav  .bt {
	display: inline-block;
	padding: 10px 7px;
	text-align: center;
	color: #28274b;
	background-color: transparent;
	border: 2px solid #1a194d;
	font-size: 1.5rem;
	
	border-radius: 4rem;
	align-items: center;
		
}
.nav  .bt:hover{
	background-color: #100c5f;
	color: #fff;
}


.hamburguer {
    width: 60px;
    height: 80px;
    display: none;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    transition: color   0.5s ease-in;

	
}

.hamburguer>i {
    font-size: 35px;
    line-height: 80px;
	
}

header::before {
    content: "";
    display: block;
    margin-bottom: 80px;
}
@keyframes animat {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

/* end nav */

/* service */
.ti h1{
	height: 30px;
	text-align: center;
	font-size: 5rem;
	color: rgba(255, 196, 0, 0.774);
}
.servi{
    margin: 0;
	padding: 0 50px;
    min-height: 115vh;
    background: #28274b;   
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.container4{
    width: 1170px;
    position: relative;
    display: flex;
    justify-content: space-between;
	font-family: 'Open Sans', sans-serif;
}

.container4 .card{
    position: relative;
    cursor: pointer;
}

.container4 .card .face{
    width: 360px;
    height: 300px;
    transition: 0.5s;
	
}
.container4 .card .face.face1{
    position: relative;
    background: #292861;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.container4 .card:hover .face.face1{
    background: #292861;
    transform: translateY(0);
}

.container4 .card .face.face1 .content{ 
    transition: 0.5s;
}

.container4 .card .face.face1 .content img{
    max-width: 360px;
}

.container4 .card .face.face1 .content h3{
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 2em;
}


.container4 .card .face.face2{
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    
    transform: translateY(-200px);
}

.container4 .card:hover .face.face2{
    transform: translateY(0);
}

.container4 .card .face.face2 .content p{
    margin: 0;
    padding: 0;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: left;
	
}

.servi .car_con {
	position: relative;
	
}

.carousel__anterior,
.carousel__siguiente {
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	top: calc(50% - 35px);
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	background: none;
	color: #fff;
	opacity: 20%;
	font-size: 3rem;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
	opacity: 100%;
}

.carousel__anterior {
	left: -40px;
}

.carousel__siguiente {
	right: -20px;
}

.container4 {
	overflow: hidden;
}

.card {
	text-align: center;
}

/* end service */

/* logos */
.contenedor5{
    width: 100%;
    overflow: hidden;
	align-items: center;
}
.contenedor5 h1{
	font-size: 5rem;
	text-align: center;
	color: rgba(255, 196, 0, 0.774);
}
.contenedor5 p{
padding: 0 300px;
	font-size: 2.5rem;
	text-align: center;
	
}

.slider-contenedor{
    width: 100%;
    display: flex;
}

.contenido-slider{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
   
}



.contenido-slider > img{
    width: 220px;
	margin: 120px;
	
}

.contenido-slider > div{
    width: 10%;
}
/* end logos  */




#btn-mas{
    display: none;
}
.container7{
    position: fixed;
    bottom: 20px;
    right: 10px;
}
.redes a, .btn-mas label{
    display: block;
    text-decoration: none;
    background:#1a194d;
    color: #fff;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
    transition: all 500ms ease;
	font-size: 3rem;
}
.redes a:hover{
    background: #fff;
    color: #1a194d;
}
.redes a{
    margin-bottom: -15px;
    opacity: 0;
    visibility: hidden;
}
#btn-mas:checked~ .redes a{
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}
.btn-mas label{
    cursor: pointer;
    background: #1a194d;
    font-size: 30px;
}
#btn-mas:checked ~ .btn-mas label{
    transform: rotate(135deg);
    font-size: 25px;
}


/* footer */

footer {
	background: #f2f2f2;
    padding: 40px 30px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.partFooter {
    width: 19%;
    text-align: center;
}

.partFooter h4 {
    color: #1d273b;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.partFooter a {
    display: block;
    text-decoration: none;
    color: #111111;
    font-weight: 300;
    transition: color .3s ease-in-out;
    margin-bottom: 13px;
	font-size: 1.8rem;
}


.partFooter a:hover {
    color: #1d2969;
}

.partFooter img {
	margin-top: 10px;
    width: 70%;
	height: 67%;
}

.social-media a {
    font-size: 25px;
    display: inline-block;
    color: #9a9b9c;
    border: 1px solid #adb6c7;
    border-radius: 50%;
    width: 35px;
    height: 38px;
    line-height: 36px;
    cursor: pointer;
    margin-top: 15px;
    text-align: center;
    transition: all ease-in-out .3s;
    margin-right: 5px;
}

.social-media i:hover {
    color: #fff;
    background-color: #1d2969;
    border-color: #1d2969;
}

/* end footer */
.aviso {
	width: 100%;
	height: 20px;
	
	background: #f2f2f2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.aviso a{
	margin-top: 5px;margin-top: 5px;
	text-align: center;
	font-size: 2rem;
	color: #111111;
	margin-top: 20px;
}
.aviso a:hover {
    color: #1d2969;
}

.creado {
	width: 100%;
	height: 20px;
	
	background: #f2f2f2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.creado a{
	margin-top: 5px;margin-top: 5px;
	text-align: center;
	font-size: 1.7rem;
	color: #111111;
	margin-top: 20px;
}
.creado a:hover {
    color: #1d2969;
}





@media screen and (max-width:900px){

	.contenedor5 h1{
		font-size: 4rem;
	}
	.contenedor5 p {
	padding: 0 60px;
	font-size: 2rem;
	text-align: justify;
	}
    .contenido-slider > img{
        width: 190px;
		margin: 100px;
	
    }

    .contenido-slider > div{
        width: 80%;
    }

    .contenido-slider h2{
        font-size: 23px;
    }

	.contenedor6 .articulo {
        width: 25%;
		height: 120px;
    }
	.contenedor6 .articulo i {
        font-size: 10rem;
		
    }
	.contenedor6 .articulo h3 {
        font-size: 1.7rem;
    }
	.contenedor6 .articulo:hover {
		box-shadow: none;
	}

	#hero  h2 span{
		position: relative;
		background: #100c5f;
		padding: 0px 15px;
		margin:-15px
	
	}
	#hero  h2 {
	
		font-family: 'Open Sans', sans-serif;
		font-weight: 800;
		font-size: 15rem;
		color: #fff;
	}
	#hero  h4 {
		display: block;
		font-size: 3rem;
		position: relative;
		color: #fff;
			
	}
	.ti h1{
		height: 30px;
		font-size: 6rem;
		
	}
	.servi{
		margin: 0;
		padding: 0 50px;
		min-height: 75vh;
	   
	}
	
	.container4{
		width: 550px;
	}
	
	
	.container4 .card .face{
		width: 250px;
		height: 300px;
		
	}
		
	.container4 .card .face.face1 .content img{
		max-width: 250px;
	}
	
	.container4 .card .face.face1 .content h3{
		margin: 10px 0 0;
		font-size: 2.5em;
	}
	
	
	.container4 .card .face.face2 .content p{
		font-size: 1.3rem;
		
	}
	.carousel__anterior {
		left: -40px;
	}
	
	.carousel__siguiente {
		right: -30px;
	}
	
}


@media screen and (max-width:600px){
	

	
	

	.services {
		padding: 100px 35px;
		       
	}
	#hero  h2 {
	
		font-family: 'Open Sans', sans-serif;
		font-weight: 800;
		font-size: 4.9rem;
		color: #fff;
	}
	
	#hero  h2 span{
		background: #100c5f;
		padding: 0px 8px;
		margin:-7px
	
	}
	
	.sl div:nth-child(1){
		animation: none;
	}

	.sl{
		overflow: hidden;
		height: 70px;
	}
	
	#hero  h4 {
		display: block;
		font-size: 1.2rem;
		position: relative;
		color: #fff;
			
	}

	.ti h1{
		height: 30px;
		font-size: 4rem;
		
	}
	.servi{
		margin: 0;
		padding: 0 10px;
		min-height: 115vh;
	   
	}
	
	.container4{
		width: 240px;
	}
	
	
	.container4 .card .face{
		width: 230px;
		height: 300px;
		
	}
	
	
	.container4 .card .face.face1 .content img{
		max-width: 220px;
	}
	
	.container4 .card .face.face1 .content h3{
		margin: 10px 0 0;
		font-size: 2em;
	}
	
	
	.container4 .card .face.face2 .content p{
		font-size: 1.3rem;
		
	}
	.carousel__anterior {
		left: -40px;
	}
	
	.carousel__siguiente {
		right: -30px;
	}
	
	.contenedor6 .articulo {
        width: 45%;
		height: 100px;
    }
	.contenedor6 .articulo i {
        font-size: 10rem;
		
    }
	.contenedor6 .articulo h3 {
        font-size: 1.7rem;
    }


	.contenedor5 h1{
		font-size: 4rem;
	}
	.contenedor5 p {
		padding: 0 50px;
	font-size: 1.7rem;
	text-align: justify;
	}
	.contenido-slider > img{
        width: 250px;
    }

    .contenido-slider{
       flex-direction: column-reverse;
    }

    .contenido-slider > div{
        width: 80%;
    }

}

@media screen and (max-width:800px) {
	.tit h1{
		font-size: 4rem;
	}

	.normas .container8{
		width: 650px;
		margin-top: 110px;
		justify-content: space-around;
		flex-wrap: wrap;
		display: flex;
	}
	
	.container8 .card-nor .face{
		width: 150px;
		height: 150px;
	}
	
	.container8 .card-nor .face.face1 .content> i{
		font-size: 15rem;
	}
	
	.container8 .card-nor .face.face1 .content img{
		margin-top: 15px;
		margin-left: 50px;
	}
	
	.container8 .card-nor .face.face1 .content h3{
		margin-top: 5px;
		font-size: 2rem;
	}

	.container8 .card-nor .face.face2{
		transform: translateY(-89px);
	}
	
	.container8 .card-nor .face.face2 .content p{
		font-size: 1rem;
	}
	
	



    /* About us */

    .articulo {
        width: 45%;
    }
	.caracteri {
        flex-direction: column;
        align-items: center;
    }

    .box-skills {
        margin: 0 0 40px 0;

    }

    .box-skills h4 {
        width: 300px;
		font-size: 1.9rem;
    }

    .caracteri h1 {
        width: 350px;
		font-size: 4rem;
		margin-top: 15px;
    }

	footer {
        justify-content: space-evenly;
    }

    
}



@media screen and (max-width:600px) {
	.nav  .bt {
   
		padding: 5px 3px;
		font-size: 1rem;      
	  }
	.tit h1{
		font-size: 4rem;
	}

	.normas .container8{
		width: 250px;
		margin-top: 110px;
		justify-content: space-around;
		flex-wrap: wrap;
		display: flex;
	}
	
	.container8 .card-nor .face{
		width: 120px;
		height: 120px;
	}
	
	.container8 .card-nor .face.face1 .content> i{
		font-size: 12rem;
	}
	
	.container8 .card-nor .face.face1 .content img{
		margin-top: 15px;
		margin-left: 40px;
	}
	
	.container8 .card-nor .face.face1 .content h3{
		margin-top: 5px;
		font-size: 1.8rem;
	}

	.container8 .card-nor .face.face2{
		transform: translateY(-89px);
	}
	
	.container8 .card-nor .face.face2 .content p{
		font-size: 1rem;
	}
	
	
	
	.norm h2{
		
		font-size: 4rem;
		
	}
	.services .services-header .services-header-heading {
		font-size: 4rem;
	
		
	}
    .nav {
        padding: 0 10px;
    }

    .enlaces-header {
        position: fixed;
       background: #f2f2f2;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        clip-path: circle(0.0% at 100% 0);
		
    }
	.nav .enlaces-header a {
		color: #1a194d;
		font-size: 3rem;
		
	  }
    .nav .menudos {

        -webkit-clip-path: circle(150% at 100% 0);
        clip-path: circle(150% at 100% 0);

    }

    .nav .hamburguer {
        display: block;
		color: #1a194d;	
    }

    /* Footer */
    .partFooter {
        width: 95%;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 800px){
	.services .services-header .services-header-desc {
		max-width: 500px;
		padding-top: 20px;
		margin: 0 auto;
	}

	
	.services .services-info {
		flex-direction: row;
		width: 100%;
	}
	.services .services-info .service {
		margin: 1.8px;
	}
	
}















