*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
h1{
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 80px;
	font-weight: 600;
	position: relative;
}
h1::after{
	content: '';
	background: #FFA500;
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}
p{
	color: black;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	padding: 10px;
}

/*Header*/
.header{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(40,9,30,0.7),rgba(40,9,30,0.7)),url(images/header-1.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.header img{
	width: 80px;
	height: 80px;
}


@media(max-width: 700px){
	.header img{
		width: 100px;
		height: 100px;
		left: 20px;
	}
}

.sub-header img{
	width: 80px;
	height: 80px;
}
.header:hover{
	background-image: linear-gradient(rgba(40,9,40,0.7),rgba(40,9,30,0.7)),url(images/header-2.jpg);
}
nav{
	display: flex;
	padding: 2% 6%;
	justify-center: space-between;
	align-items: center;
}
nav img{
	width: 150px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #FFA500;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width: 100%;
}
.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 62px;
}
.text-box p{
	margin: 10px 0 40px;
	font-size: 14px;
	color: #fff;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid #FFA500;
	background: #FFA500;
	transition: 1s;
}
nav .fa{
	display: none;
}
@media(max-width: 700px){
	.text-box h1{
		font-size: 25px;
	}
	.text-box p{
		font-size: 10px;
	}
	.nav-links ul li{
		display: block;
	}
	.nav-links{
		position: absolute;
		background: #FFA500;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa{
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.nav-links ul{
		padding: 30px;
	}
	.hero-btn{
		padding: 10px 30px;
		font-size: 10px;
	}
}

/*---Courses---*/
.course{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}
.course-col{
	flex-basis: 31%;
	background: #FFDA86;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.course-col:hover{
	box-shadow: 0 0 20px 0px rgb(255, 218, 153);
}
@media(max-width: 700px){
	.row{
		flex-direction: column;
	}
	.course h1{
		font-size: 20px;
	}
	.course p{
		font-size: 10px;
	}
	.course-col h3{
		font-size: 18px;
	}
}

/* Galería de imágenes */

.title-gal{
  text-align: center;
  padding: 20px 0;
}


.galería{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  width: 55%;
  margin: auto;
  grid-gap: 10px;
  padding: 40px 0;
  overflow: hidden;
}

.galería img{
  width: 100%;
  vertical-align: top;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.galería > a{
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 6px rgb(255, 218, 153);
}

.galería a:hover img{
  transform: rotate(10deg) scale(1.3);
}

.light-box{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .4);
  transition: transform .3s ease-in-out;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
}

.light-box img{
  width: 75vw;
  max-height: 70vh;
}

.light-box:target{
  transform: scale(1);
}

.close{
  display: block;
  position: absolute;
  top: 40px;
  right: 40px;
  background: #FFA500;
  color: white;
  text-decoration: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}

.next{
  display: block;
  border-radius: 5px;
  margin-left: 5px;
  background: #FFA500;
  color: white;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
}

.prev{
  display: block;
  border-radius: 5px;
  margin-right: 5px;
  background: #FFA500;
  color: white;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
}

@media screen and (max-width:700px){
  .galería{
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  }

  .close{
    top: 20px;
    right: 20px;
  }

}

@media(max-width: 700px){
	.title-gal{
		font-size: 20px;
	}
}

/*Testimonials*/
.testimonials{
	width: 80%;
	margin: auto;
	padding-top: 100px;
	text-align: center;
}
.testimonial-col{
	flex-basis: 44%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	background: #FFDA86;
	cursor: pointer;
	padding: 25px;
	display: flex;
}
.testimonial-col img{
	height: 40px;
	margin-left: 5px;
	margin-right: 30px;
	border-radius: 50%;
}
.testimonial-col p{
	padding: 0;
}
.testimonial-col h3{
	margin-top: 15px;
	text-align: left;
}
.testimonial-col .fa{
	color: #FFA500;
}

@media(max-width: 700px){
	.testimonial-col img{
		margin-left: 0px;
		margin-right: 15px;
	}
}

/*--- testimonios ---*/

.testimonios{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	position: relative;
	max-width: 95%;
}

.swiper-slide {
	background-position: center;
	background-size: cover;
	width: 50px;
	min-height: 250px;
	margin: 0 10px;
	background: #fff;
}

.swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

.testimonios .card{
	position: relative;
	width: 100%;
	margin: 0 20px;
	background: #fff;
	padding: 30px 30px;
	text-align: center;
	overflow: hidden;
}

.testimonios .card .layer{
	position: absolute;
	top: calc(100% - 10px);
	width: 100%;
	height: 100%;
	background: linear-gradient(#FFA500, #FFDA86);
	z-index: 1;
	transition: 0.5s;
}

.testimonios .card:hover .layer{
	top: 0;
}

.testimonios .card .content{
	position: relative;
	z-index: 2;
}


.testimonios .card .content .imgBx{
	max-height: 400px;
	max-width: 700px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/*----- call to action -----*/

.cta{
	margin: 100px auto;
	width: 80%;
	background-image: linear-gradient(rgba(40,9,30,0.7),rgba(40,9,30,0.7)), url(images/cta-1.jpg);
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
}

.cta h1{
	color: #fff;
	margin-bottom: 40px;
	padding: 0;
}

@media(max-width: 700px){
	.cta h1{
		font-size: 20px;
	}
}

/*----- clients ----*/

.clients{
	width: 100%;
	height: 90vh;
	padding: 0;
	margin: auto;
	text-align: center;
}

.clients h1{
	text-align: center;
	padding-top: 4%;
	margin-bottom: 60px;
	font-weight: 600;
	position: relative;
}

.clients-img{
	overflow: hidden;
	position: relative;
	width: 100%;	
}

.clients ul{
	list-style: none;
	position: relative;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	float: left;
	margin-top: auto;
	margin-bottom: auto;

}
.clients ul li{
	display: inline-block;
	width: 30%;
	vertical-align: center;
	margin-top: auto;
	margin-bottom: auto;
}

.clients img{
	max-width: 25%;
	cursor: pointer;
	filter: grayscale(1);
	margin-top: auto;
	margin-bottom: auto;
}

.clients img:hover{
	transform: scale(1.3);
	cursor: pointer;
	filter: grayscale(0);
	transition: 1s;
}

@media(max-width: 700px){
	.clients h1{
		font-size: 20px;
	}
	.clients p{
		font-size: 10px;
	}
	.clients ul li{
		width: 40%
	}
	.clients{
		height: 60vh;
	}
}

/*-- clients (2nd)--*/

.gallery{
	height: 80%;
	width: 100%;
	display: flex;
	margin: 5% auto 0;
	box-sizing: border-box;
}

.image-box{
	margin: 0 1%;
	flex-grow: 1;
	flex-basis: 0;
	transition: .5s;
}

.image-box img{
	width: 60%;
	height: 60%;
	object-fit: cover;
	transition: .5s;
}

.image-box:hover{
	flex-basis: 50%;
}

.active{
	flex-basis: 50%;
}

.gallery:hover .active{
	flex-basis: 0;
}

.image-box:nth-child(1):hover{
	flex-basis: 50%;
}

/*----- footer -----*/

.footer{
	width: 100%;
	text-align: center;
	padding: 30px 0;
	background-color: rgb(233, 237, 245);
}

.footer h4{
	margin-bottom: 25px;
	margin-top: 20px;
	font-weight: 600;
}

.icons .fa-brands{
	color: #FFA500;
	margin: 0 13px;
	cursor: pointer;
	padding: 18px 0;
}

@media(max-width: 700px){
	.footer h4{
		font-size: 15px;
	}
	.footer p{
		font-size: 10px;
	}
}

/*------ about us page------*/

.sub-header{
	height: 50vh;
	width: 100%;
	background-image: linear-gradient(rgba(40,9,30,0.7),rgba(40,9,30,0.7)),url(images/cinnabonuno.jpg);
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
	color: #fff;
}
.sub-header h1{
	margin-top: 100px;
}

.about-us{
	width: 80%;
	margin: auto;
	padding-top: 80px;
	padding-bottom: 50px;
}

.about-col{
	flex-basis: 48%;
	padding: 30px 2px;
}

.about-col video{
	width: 100%;
}
.about-col h1{
	padding-top: 0;
}

.about-col p{
	padding: 15px 0 25px;
}

.red-btn{
	border: 1px solid #FFA500;
	background: transparent;
	color: #FFA500;
}

.red-btn:hover{
	color: #fff;
}

.our-team {
	position: relative;
}


.our-team::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#E2D2AE, #FFDA86);
	clip-path: circle(30% at right 70%);
}

.our-team::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#F6BE45, #C9B48B);
	clip-path: circle(20% at 10% 10%);
}

.team-container {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 40px 0;
}

.team-container .team-card {
	position: relative;
	width: 300px;
	height: 400px;
	background: rgba(255, 255, 255, 0, 0.05);
	margin: 20px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(10px);
}

.team-container .team-card .team-content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	opacity: 0.5;
	transition: 0.5s;

}

.team-container .team-card:hover .team-content {
	opacity: 1;
}

.team-container .team-card .team-content .imgBx {
	position: relative;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	border: 10px solid rgba(0,0,0,,.25);
}

.team-container .team-card .team-content .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-container .team-card .team-content .contentBx h3 {
	color: black;
	text-transform: uppercase;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 1.1em;
}

.team-container .team-card .team-content .contentBx h3 span {
	font-size: 12px;
	font-weight: 300;
	text-transform: initial;

}

.expectatives{
	display: flex;
	margin-top: 30px;
}
.text-exp{
	width: 100%;
	height: 100%;
	background: transparent;
	border: 2px solid #FFA500;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-right: 2%;
	margin-left: 2%;
	margin-bottom: 20px;
	border-radius: 6px;
	overflow: hidden;
	transition: transform 0.5s;
}

.text-exp h1{
	margin-top: 5%;
	margin-bottom: 5%;
}

.text-exp p{
	position: absolute;
	width: 100%;
	height: 100%;
	background: #FFDA86;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: 0.5s;
	margin: 5%;
}
.text-exp p:hover{
	opacity: 1;
}
.text-exp:hover{
	transform: translateY(-5px);
}

/*--- blog content ---*/
.blog-content{
	width: 80%;
	margin: auto;
	padding: 60px 0;
}
.blog-left{
	flex-basis: 65%;
}
.blog-left img{
	width: 100%;
}
.blog-left h2{
	color: #222;
	font-weight: 600;
	margin: 30px 0;
}
.blog-left p{
	color: black;
	padding: 0;
}
.blog-right{
	flex-basis: 32%;
}
.blog-right h3{
	background: #FFA500;
	color: #fff;
	padding: 7px 0;
	font-size: 16px;
	margin-bottom: 20px;
}
.blog-right div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #555;
	padding: 8px;
	box-sizing: border-box;
}
.blog-right div:hover{
	background: rgb(233, 237, 245);
}
.blog-right div a{
	text-decoration: none;
	color: #555;
}
.comment-box{
	border: 1px solid #ccc;
	margin: 50px 0;
	padding: 10px 20px;
}
.comment-box h3{
	text-align: left;
}
.comment-form input, .comment-form textarea{
	width: 100%;
	padding: 10px;
	margin: 15px 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	background: #f0f0f0;
}
.comment-form button{
	margin: 10px 0;
}

@media(max-width:700px){
	.sub-header h1{
		font-size: 24px;
	}
}

/*--- contact ---*/
.location{
	width: 80%;
	margin: auto;
	padding: 80px 0;
}
.location iframe{
	width: 100%;
}
.contact-us{
	width: 80%;
	margin: auto;
}
.contact-col{
	flex-basis:48%;
	margin-bottom: 30px;
}
.contact-col div{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.contact-col div .fa{
	font-size: 28px;
	color: #FFA500;
	margin: 10px;
	margin-right: 30px;
}
.contact-col div p{
	padding: 0;
}
.contact-col div h5{
	font-size: 20px;
	margin-bottom: 5px;
	color: #555;
	font-weight: 400;
}
.contact-col input, .contact-col textarea{
	width: 100%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

.whatsapp-btn-container{
	position: fixed;
	left: 10px;
	opacity: 0;
	bottom: -50px;
	padding: 24px;
	animation: fade-up 1000ms forwards;
	animation-delay: 2000ms;
}

@keyframes fade-up {
	100% {
		bottom: 24px;
		opacity: 1;
	}
}

.whatsapp-btn-container .whatsapp-btn{
	font-size: 35px;
	color: #25d366;
	display: inline-block;
	transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover{
	transform: scale(1.2);
}

.whatsapp-btn-container span{
	position: absolute;
	top: 0;
	left: 3px;
	font-weight: bold;
	color: #075e54;
	transform: rotateZ(20deg) translateX(10px);
	opacity: 0;
	transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover + span{
	transform: rotateZ(0deg) translateX(0px);
	opacity: 1;
}

@media(max-width:700px){
	.whatsapp-btn-container .whatsapp-btn{
		opacity: 1;
		font-size: 20px;
	}

}

.facebook-btn-container{
	position: fixed;
	left: 55px;
	opacity: 0;
	bottom: -50px;
	padding: 24px;
	animation: fade-up 1000ms forwards;
	animation-delay: 2000ms;
}

@keyframes fade-up {
	100% {
		bottom: 24px;
		opacity: 1;
	}
}

.facebook-btn-container .facebook-btn{
	font-size: 35px;
	color: #4267B2;
	display: inline-block;
	transition: all 400ms;
}

.facebook-btn-container .facebook-btn:hover{
	transform: scale(1.2);
}

.facebook-btn-container span{
	position: absolute;
	top: 0;
	left: 3px;
	font-weight: bold;
	color: #20396b;
	transform: rotateZ(20deg) translateX(10px);
	opacity: 0;
	transition: all 400ms;
}

.facebook-btn-container .facebook-btn:hover + span{
	transform: rotateZ(0deg) translateX(10px);
	opacity: 1;
}

@media(max-width:700px){
	.facebook-btn-container .facebook-btn{
		opacity: 0;
	}

}

.linkedin-btn-container{
	position: fixed;
	right: 10px;
	opacity: 0;
	bottom: -50px;
	padding: 24px;
	animation: fade-up 1000ms forwards;
	animation-delay: 2000ms;
}

@keyframes fade-up {
	100% {
		bottom: 24px;
		opacity: 1;
	}
}

.linkedin-btn-container .linkedin-btn{
	font-size: 35px;
	color: #0e76a8;
	display: inline-block;
	transition: all 400ms;
}

.linkedin-btn-container .linkedin-btn:hover{
	transform: scale(1.2);
}

.linkedin-btn-container span{
	position: absolute;
	top: 0;
	left: 3px;
	font-weight: bold;
	color: #20396b;
	transform: rotateZ(20deg) translateX(10px);
	opacity: 0;
	transition: all 400ms;
}

.linkedin-btn-container .linkedin-btn:hover + span{
	transform: rotateZ(0deg) translateX(10px);
	opacity: 1;
}

@media(max-width:700px){
	.linkedin-btn-container .linkedin-btn{
		opacity: 0;
	}

}

.instagram-btn-container{
	position: fixed;
	right: 55px;
	opacity: 0;
	bottom: -50px;
	padding: 24px;
	animation: fade-up 1000ms forwards;
	animation-delay: 2000ms;
}

@keyframes fade-up {
	100% {
		bottom: 24px;
		opacity: 1;
	}
}

.instagram-btn-container .instagram-btn{
	font-size: 35px;
	color: #833AB4;
	display: inline-block;
	transition: all 400ms;
}

.instagram-btn-container .instagram-btn:hover{
	transform: scale(1.2);
}

.instagram-btn-container span{
	position: absolute;
	top: 0;
	left: 3px;
	font-weight: bold;
	color: #20396b;
	transform: rotateZ(20deg) translateX(10px);
	opacity: 0;
	transition: all 400ms;
}

.instagram-btn-container .instagram-btn:hover + span{
	transform: rotateZ(0deg) translateX(10px);
	opacity: 1;
}

@media(max-width:700px){
	.instagram-btn-container .instagram-btn{
		opacity: 0;
	}

}

@keyframes fade-up {
	100% {
		bottom: 24px;
		opacity: 1;
	}
}

@media(max-width: 700px){
	.contact-us h1{
		font-size: 20px;
	}
	.contact-col div p{
		font-size: 10px;
	}
	.contact-col div h5{
		font-size: 15px;
	}
}

/*---services*/
.container-ser{
	width: 100%;
	height: 60vh;
	padding: 0;
	margin: auto;
	text-align: center;
}

.container-ser h1{
	text-align: center;
	padding-top: 4%;
	margin-bottom: 60px;
	font-weight: 600;
	position: relative;
}

.container-ser h1::after{
	content: '';
	background: #FFA500;
	width: 100px;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.row-ser{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 30px;
}
.service-ser{
	text-align: center;
	padding: 25px 10px;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
	background: transparent;
	transition: transform 0.5s, background 0.5s;
}
.service-ser i{
	font-size: 40px;
	margin-bottom: 10px;
	color: #FFA500;
} 
.service-ser h2{
	font-weight: 600;
	margin-bottom: 8px;
}
.service-ser:hover{
	background: #FFA500;
	color: #fff;
	transform: scale(1.05);
}
.service-ser:hover i{
	color: #fff;
}

@media(max-width: 700px){
	.container-ser h1{
		font-size: 20px;
	}
	.service-ser p{
		font-size: 8px;
	}
	.service-ser h2{
		font-size: 10px;
	}
	.service-ser i{
		font-size: 30px;
	}
	.container-ser{
		height: 130vh;
	}
}