*,
*::before,
*::after{
	margin: 0;
	padding: 0;
}
.container{
	max-width: 98rem;
	margin: 0 auto;
}
header{
	position: fixed;
	top: 0;
	z-index: 1400;
	height: 2.45rem;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
	background:rgba(0,0,0,0.92);
	backdrop-filter: blur(2rem);
}
.nav-list{
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 10%;
	padding-right: 10%;
	margin: 0 -1rem;
}
.nav-list-mobile{
	display: none;
}
.nav-item-hidden-web{
	display: none;
}
.nav-item-hidden-mobile{
	display: flex;
}
.nav-link{
	font-size: 14px;
	text-decoration: none;
	line-height: 2.5rem;
	transition: opacity .5s;
	z-index: 2000;
	font-weight: 400;
    letter-spacing: -.01em;
    font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
    color: #f5f5f7;
    opacity: .8;
}
.nav-link-logo{
    margin: 0;
    z-index: 2000;
}
@media screen and (max-width: 1200px){
    .nav-link-logo img{
        margin-top: 15%;
    }
}
.nav-link-title{
	font-size: 14px;
	color: #f5f5f7;
	font-weight: 400;
    letter-spacing: -.01em;
    font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
	text-decoration: none;
	line-height: 2.5rem;
	opacity: .8;
}
.nav-link-active{
    font-size: 14px;
	color: #f5f5f7;
	font-weight: 400;
    letter-spacing: -.01em;
    font-family: "SF Pro Text","Myriad Set Pro","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
	line-height: 2rem;
	opacity: 0.56;
	text-decoration: none;
	transition: opacity .5s;
}
.nav-link:hover{
	opacity: 1;
	text-decoration: none;
}
.nav-link-active:hover{
	text-decoration: none;
}
.nav-link-title:hover{
	opacity: 1;
	text-decoration: none;
}
@media screen and (max-width: 1200px){
	header {
		height: 2.8rem;
		transition: background .36s cubic-bezier(0.32,0.08,0.24,1),
					height .56s cubic-bezier(0.32,0.08,0.24,1);
	}
	header .container{
		padding: 0;
	}
	.nav-list-larger{
		display: none;
	}
	.nav-list{
		margin-top: 0;
	}
	.nav-list-mobile{
		display: flex;
	}
	.nav-item{
		width: 4rem;
		height: 2.8rem;
		display: flex;
		justify-content: center;
		color: #fff;
	}
	.nav-item-hidden-web{
		display: flex;
	}
		.nav-item-hidden-mobile{
		display: none;
	}
	.mobile-menu{
		position: relative;
		z-index: 1500;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}
	.line{
		position: absolute;
		width: 1.2rem;
		height: 1px;
		background-color: #fff;
	}
	.line-top{
		margin-top: 3px;
		color: #fff;
		transition: transform .3s;
	}
	.line-bottom{
		margin-top: -.4rem;
		color: #fff;
		transition: transform .3s;
	}
	.active .line-top{
		margin-top: 0;
		color: #fff;
		transform: rotate(45deg);
		transition: transform .3s;
	}
	.active .line-bottom{
	margin-top: 0;
	color: #fff;
	transform: rotate(-45deg);
	transition: transform .3s;
	}
	header.active{
		height: 100%;
		background-color: #000;
	}
	.nav{
		position: relative;
	}
	.nav-link{
		font-size: 1.1rem;
		padding: 0;
		margin: auto 0;
		color: #ffffff;
	}
	.nav-link-active{
		font-size: 1.1rem;
		font-weight: 400;
		padding: 0;
		margin: auto 0;
	}
		.nav-link-mobile-title{
	font-size: 1.1rem;
	color: #bfbfbf;
	font-weight: 400;
	text-decoration: none;
	
    }
    .nav-link-mobile-title:hover{
	color: #bfbfbf;
	text-decoration: none;
    }
	.nav-list-larger{
		position: fixed;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		display: block;
		padding: 10.5rem 5rem;
		z-index: 1000;
		box-sizing: border-box;
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s;
	}
	.active .nav-link-call{
		opacity: 0;
		transition: opacity .3s;
	}
	.active .nav-list-larger{
		width: 100%;
		height: 100vh;
		opacity: 1;
		visibility: visible;
	}
	.nav-list-larger .nav-item{
		width: 100%;
		justify-content: flex-start;
		border-bottom: 2px solid rgba(255,255,255,.1);
	}
	.active .nav-list-larger .nav-item{
		animation: fadeIn 1s ease-in;
	}
	@keyframes fadeIn{
		from{
			opacity: 0;
		}
		to{
			opacity: 1;
		}
	}
}
