/* GENERAL */
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body, html{
	overflow-x: hidden;
	width: 100%;
}

/* PRINCIPAL PAGE */
.principal{
	width: 100vw;
	height: 100vh;
	background-image: url("images/header-bg.png");
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
}

.principal .navbar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.principal .navbar .logo{
	font-size: 25px;
	color: whitesmoke;
	font-weight: bold;
}

.principal .navbar .nav-links{
	display: flex;
	align-items: center;
}

.principal .navbar .nav-links li{
	list-style: none;
	margin: 0 30px;
}

.principal .navbar .nav-links li a{
	text-decoration: none;
	color: whitesmoke;
	transition: .2s linear;
}

.principal .navbar .nav-links li .ctn{
	color: whitesmoke;
	background: #fc036b;
	padding: 8px 15px;
	border-radius: 50px;
}

.principal .navbar .menu .menu-btn{
	position: absolute;
	right: 30px;
	top: 30px;
	cursor: pointer;
	display: none	;
}

.principal .principal-text{
	display: inline-block;
	align-items: flex-end;
	justify-content: center;
	position: absolute;
	left: 50%;
	bottom: 150px;
	transform: translateX(-50%);
	color: whitesmoke;
	text-align: center;
}

.principal .principal-text h2{
	font-size: 38px;
	margin: 15px auto;
}

.principal .principal-text .line{
	width: 150px;
	height: 3px;
	background: #fc036b;
	margin: 0 auto;
}

.principal .principal-text h1{
	font-size: 68px;
	margin: 40px auto;
}

.principal .principal-text a{
	text-decoration: none;
}

.principal .principal-text .ctn{
	color: whitesmoke;
	background: #fc036b;
	padding: 8px 15px;
	border-radius: 50px;
}

/* ANIMATIONS PRINCIPAL*/
.principal .navbar ul li a:hover{
	color: #fc036b;
	text-decoration: underline;
}

.principal .navbar ul li .ctn:hover{
	background: #fff;
	color: #fc036b;
	text-decoration: none;
}

.principal .principal-text .ctn:hover{
	background: #fff;
	color: #fc036b;
}

/* EVENTS */
.events{
	width: 80%;
	margin: 80px auto;
}

.events .title{
	text-align: center;
	font-size: 38px;
	color: #49497e;
}

.events .title .line{
	width: 150px;
	height: 3px;
	background: #fc036b;
	margin: 0 auto;
	margin-top: 10px;
}

.events .row{
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	margin-top: 50px;
}

.events .row .col{
	display: flex;
	align-items: center;
	flex-direction: column;
}

.events img{
	transition: .4s ease;
}

.events .row .col h3{
	margin: 20px auto;
	color: #484872;
	font-size: 28px;
}

.events .row .col p{
	color: #7c7c7c;
	padding: 0px 40px;
}

.events .row .col .ctn{
	color: whitesmoke;
	background: #fc036b;
	padding: 8px 15px;
	border-radius: 50px;
	text-decoration: none;
	margin-top: 28px;
}

/* ANIMATIONS EVENTS*/
.events img:hover{
	transform: scale(1.1);
}

.events .row .col .ctn:hover{
	background: #fff;
	color: #fc036b;
	box-shadow: 2px 2px 5px #00000056;
}

/* EXPLORE */
.explore{
	width: 100%;
	height: 100vh;
	background-image: url("images/bg2.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	color: whitesmoke;
}

.explore .explore-content{
	width: 50%;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 85px;
}

.explore .explore-content h3{
	font-size: 65px;
	margin-bottom: 10px;
}

.explore .explore-content .line{
	width: 150px;
	height: 3px;
	background: #fc036b;
	margin: 0 auto;
	margin-bottom: 50px;
}

.explore .explore-content p{
	color: rgb(221, 221, 221);
}

.explore .explore-content .ctn{
	color: whitesmoke;
	background: #fc036b;
	padding: 8px 15px;
	border-radius: 50px;
	text-decoration: none;
	margin-top: 50px;
}

/* ANIMATIOS EXPLORE */
.explore .explore-content .ctn:hover{
	background: #fff;
	color: #fc036b;
}

/* TOURS */
.tours{
	width: 100%;
}

.tours .row{
	margin: 80px auto;
	display: flex;
	width: 80%;
}

.tours .row .col-content{
	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	
}

.tours .row .col-content h3{
	font-size: 68px;
	color: #484872;
}

.tours .row .col-content .line{
	width: 150px;
	height: 3px;
	background: #fc036b;
	margin: 10px 0;
	margin-bottom: 50px;
}

.tours .row .col-content p{
	color: #7c7c7c;
}

.tours .row .col-content .ctn{
	color: whitesmoke;
	background: #fc036b;
	padding: 8px 15px;
	border-radius: 50px;
	text-decoration: none;
	margin: 30px auto;
}

.tours .row .col-images{
	width: 60%;
	display: flex;
	flex-direction: column;
}

.tours .row .col-images .image-gallery{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.tours .row .col-images .image-gallery img{
	margin: 10px;
	max-width: 300px;
	transition: .4s ease;
}

/* ANIMATIONS TOURS */
.tours .row .col-content .ctn:hover{
	background: #fff;
	color: #fc036b;
	box-shadow: 2px 2px 5px #00000056;
}

.tours .row .col-images .image-gallery img:hover{
	transform: scale(1.1);
}

/* FOOTER */
.footer{
	width: 100%;
	height: 150px;
	padding: 20px 80px;
	text-align: center;
	background: #484872;
}

.footer p{
	color: #f5f5f5;
	margin: 20px auto;
}

/* RESPONSIVE */
@media only screen and (max-width: 850px){
	/* PRINCIPAL */
	.principal .principal-text h2{
		font-size: 26px;
	} 

	.principal .principal-text h1{
		font-size: 30px;
	} 
	/* MENU RESPONSIVE */
	.principal .navbar .menu .menu-btn{
		display: block;
		position: absolute;
		z-index: 15;
		width: 30px;
	}

	.principal .navbar{
		padding: 0;
	}

	.principal .navbar .logo{
		position: absolute;
		z-index: 20;
		top: 30px;
		left: 30px;
	}

	.nav-links{
		flex-direction: column;
		width: 100%;
		height: 100vh;
		justify-content: center;
		background: #484872;
		margin-top: -1000px;
		transition: all .5s ease;
		position: absolute;
		z-index: 10;
	}

	.principal .navbar .menu .nav-links li{
		margin: 30px auto;
	}

	.menu-btn{
		margin-top: 0px;
	}

	.mobile-menu{
		margin-top: 0px;
		border-bottom-right-radius: 30%;
	}

	.nav-links li{
		margin: 30px auto;
	}

	/* Events */
	.events h2{
		font-size: 30px;
	}

	.events .row .col{
		margin: 20px auto;
	}

	.events .col img{
		max-width: 90%;
	}

	/* Explore */
	.explore .explore-content{
		width: 100%;
	}

	.explore .explore-content h3{
		font-size: 30px;
	}

	.explore .explore-content .line{
		margin-left: 0px;
	}
	/* TOURS */
	.tours .row .col h3{
		font-size: 30px;

	}

	.tours .row{
		flex-direction: column;
	}

	.tours .row .col{
		margin: 20px auto;
	}

	.tours .row .col img{
		max-width: 90%;
	}
	.tours .row .col{
		width: 100%;
	}
	.image-gallery{
		justify-content: center;
		align-items: center;
	}
	.image-gallery img{
		width: 90%;
	}

	/* FOOTER */
	.footer{
		padding: 10px;
	}
}

@media  screen and (max-width: 1425px){
	.events .row{
		flex-direction: column;
	}

	.events .row .col{
		margin: 20px auto;
	}
}