@import "normalize.css";

@font-face { 
    font-family: 'Gramatika';
    src: url(../assets/fonts/gramatika_bold.ttf);
    font-weight: 900;              
    font-style: bold;
}

@font-face { 
    font-family: 'Gramatika';
    src: url(../assets/fonts/gramatika_regular.ttf);
    font-weight: 400;              
    font-style: normal;
}

.header{   
    width: 100%; 
	position: fixed; 
    z-index: 1;
	transition: all 2s ease 0s;
	font-family: Gramatika;
	font-weight: bold;  
	background: #BBB8B5;
	opacity: 0.7;
}

.is_scrolled .header {
	opacity: 0.9;
	transition: all 2s ease 0s;  
	
}

img{
	object-fit: scale-down;
	height: 71px;
}

.header__content { 
	max-width: 1600px;
	display: flex;
    width: 100%;
	height: 91px;
	max-height: 100px;
	justify-content: space-around; 
	align-items: center; 
	margin: auto;
}

.header-logo{	
	display: flex;
	width: 30%;
	text-decoration: none;
	align-items: center;
	color: black;
	font-family: Gramatika;
	font-weight: normal;
	text-transform: uppercase; 	
	line-height: 1.2;
	@media(max-width: 1200px){
		width: 40%;
	}
	@media(max-width: 930px){
		width: 50%;
	}
}

.header-logo img{
	margin-right: 25px;
}


.header-navigation{
	float: right;
	display: flex;
	align-items: center;
	margin: 30px 15px;
	padding: 8px 10px;
	text-decoration: none;
	font-size: 16px;	
}


.header-navigation__item{
	display: inline;	
}

.header-navigation__link{
	color: var(--black);
	text-align: center;
	padding: 8px 10px;
	text-decoration: none;
	font-style: normal;
    font-weight: bold;
	font-size: 16px;
	transition: all 0.4s ease 0s; 
}

.header-navigation__link:hover, .header-navigation__link:focus {
	color: #707070;
}

.header-navigation__link:active{
	color: #707070;
}



