* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
@font-face {
  font-family: "ccrunning";
  font-style: normal;
  font-weight: 400;
  /* Браузер сначала попробует найти шрифт локально */
  src: local("ccrunning"),
       /* Если не получилось, загрузит woff2 */
       url("/fonts/ccrunning.woff") format("woff"),
       /* Если браузер не поддерживает woff2, загрузит woff */
       url("/fonts/ccrunning.woff") format("woff");
}

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 20;
	height:80px;
	background: #fff;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
    display: flex;
    padding: 5px 0;
    align-items: center;
    justify-content: space-between;
	font-size: 14px;

}
.head-news{
    background-image: url(../images/bg1ss.jpg);
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
    position: relative;
}
@media (max-width: 480px) {
    .head-news{

        height:260px;

    }
  }


.logo_header{
    width: 100%;
    display: flex;
	justify-content: space-between;
    align-items: center;
}
.logo-img{
    display: flex;
    list-style: none;
    color: rgb(255, 0, 0);
    font-size: 4em;
    font-family: "ccrunning";

    font-weight: bold;
    
}

.tel{
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    font-size: 25px;
}

.header__nav {
  
    
    width: 100%;
    display: flex;
    justify-content: flex-end;

}
.header__menu {
    display: flex;
	position: relative;
	z-index: 2;
    align-items: center;
}
.header__menu li {
	list-style: none;
	margin: 0px 0px 0px 36px;
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
}
.content-wrapper{
    margin-top: 78px;
    padding: 10px;
    line-height: 34px;
}


.auth-img{
	display: flex;
    justify-content: center;
    border-radius: 100%;
    background-color: aliceblue;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}
.login-form{
	display: flex;
    flex-direction: column;
    padding: 10px;
}
.login-form input{
	font-size: 15px;
    padding: 5px;
	margin-bottom: 10px;

}


.mob-form{
    display: none;
}

@media(max-width: 768px){

.header__nav {
	display: block;
	position: absolute;
    top: 50px;
  
    background: rgb(245, 246, 246);
    box-shadow: #ccc;
    width: 100%;
    box-shadow: 0 4px 2px -2px rgba(36, 36, 36, 0.37);
    transition: all 0.4s ease;
	left:-200%;
}
.tel{

    font-size: 15px;
}
.pc-form{
    display: none;
}
.mob-form{
    display: block;
}
.logo-img{
    font-size: 2em;
}
.header__menu {
	display: block;
}
.header__nav.open-menu{
    left:0;
}
.header__menu li {
	margin: 40px 0px 40px 33px;
    font-size: 14px;
	}
.menu-burger__header {
    position: relative;
    width: 40px;
    height: 35px;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
   }
.menu-burger__header span, .menu-burger__header:after, .menu-burger__header:before{
	height: 3px;
	width: 100%;
	position: absolute;
	background: #515758;
	margin: 0 auto;
}
.menu-burger__header span{
	top: 16px;
}
.menu-burger__header:after, .menu-burger__header:before{
	content: '';
}
.menu-burger__header:after{
	bottom: 5px;
}
.menu-burger__header:before{
	top: 5px;
}
.menu-burger__header.open-menu span {
	opacity:0; 
    transition: 0.5s; 
}
.menu-burger__header.open-menu:before {
	transform: rotate(38deg);
    top: 16px;
    transition: 0.4s;
}
.menu-burger__header.open-menu:after {
	transform: rotate(-38deg);
    bottom: 16px;
    transition: 0.4s;
}

header {
	height: 60px;
}
.content-wrapper {
    margin-top: 48px;
}
.fixed-pade {
    overflow: hidden;
}


}
