
* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	/* scroll-behavior: smooth; */
}

body {
	height: 100%;
}

.wrapper {
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}


header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10000;
}

header .logo {
	color: black;
	font-weight: 700;
	text-decoration: none;
	font-size: 2em;
	text-transform: uppercase;
	letter-spacing: 2px;
}

header ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

header ul li {
	list-style: none;
	margin-left: 20px;
}

header ul li a {
	text-decoration: none;
	padding: 6px 15px;
	color: black;
	border-radius: 20px;
}

header ul li a.active {
	background: #fff;
	color: #2b1050;
}


.fourth {
  border-color: #f1c40f;
  color: #fff;
  background-image: -webkit-linear-gradient(45deg, #f1c40f 50%, transparent 50%);
  background-image: linear-gradient(45deg, #f1c40f 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.fourth:hover {
  background-position: 0;
}

.page {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.parallax {
	position: relative;
	height: 100%;
}

.parallax_montain {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.parallax_montain_1 {
	background: url('../img/m_1.png') 0 0 / cover no-repeat;
}

.parallax_montain_2 {
	z-index: 1;
	background: url('../img/m_2.png') bottom right / 45% no-repeat;
}

.parallax_montain_3 {
	z-index: 1;
	background: url('../img/m_3.png') left bottom  / 100% no-repeat;
}

.parallax_fog {
	background: url('../img/fog_1.png') bottom / 100% no-repeat;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.content {
	position: relative;
}

.contaent_body {
	max-width: 1170px;
	margin: 0 auto;
}

.content_header {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding: 0 20px;
}

.content_title {
	font-size: 200px;

}

.content_subtitle {
	font-size: 120px;
}

.content_article {
	background-color: rgba(255, 2555, 255, 0.5);
	padding: 25px;
	font-size: 18px;
	line-height: 24px;
}

.content_article p {
	margin-bottom: 20px;
}