
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/
body{
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.wrapper{
	min-height: 100%;
	display: grid;
	grid-template: minmax(100px, auto) 1fr minmax(70px, auto) / 1fr;
}
.header{
	margin: 36px 0px 36px 0px;
}
.container{
	max-width: 1280px;
	margin: 0 auto;
}
.header__body{
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-height: 198px;
	padding: 36px 0px;
	flex-wrap: wrap;
	gap: 15px;
	
}
.header__text{
	font-size: 58px;
	font-weight: bold;
	margin-left: 6%;
}
.header__text-content{
	color: #143535;
}
.header__text-decor{
	color: red;
}
.header__link-image{
	max-width: 90px;
}
.header__back{
	display: block;
	max-width: 80px;
	max-height: 80px;
}
.header__back img{
	width: 100%;
}

@media (max-width:768px){
	.header__link-image{
		max-width: 80px;
	}
	.header{
		margin: 0px;
	}
	.header__text{
		font-size:36px;
		margin: 0;
	}
	.header__back{
		max-width: 70px;
		max-height: 70px;
	}
}

@media (max-width:492px){
	.header__link-image{
		max-width: 70px;
	}
	.header__text{
		font-size: 34px;
		margin: 0;
	}
	.header__back{
		max-width: 50px;
		max-height: 50px;
	}
}



.main{
	background-color: #143535;
	
}
.perfomance-mod{
	max-width: 1280px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.perfomance{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	color: #fff;
	font-size: 80px;
	line-height: 110px;
}
.information{
	background-color: #143535;
	margin: 150px 0px 0px 0px;
}

.information__content{
	padding: 36px 0px;
	max-width: 717px;
	color: #fff;
	margin: 0 auto;
	font-size: 25px;
}
.information__phone{
	color: #fff;
}
.information__content p{
	margin-bottom: 36px;
}
.information__content p:last-child{
	margin-bottom: 0px;
}

@media (max-width:768px){
	.information__content{
		margin: 0 auto;
		padding: 28px 15px 28px 15px;
	}
	.information__content p{
		margin-bottom: 32px;
	}
	.perfomance{
		font-size: 75px;
		line-height: 90px;
	}
}	
@media (max-width:492px){
	.information__content{
		margin: 0 auto;
		font-size: 18px;
		padding: 28px 15px 28px 15px;
	}
	.information__content p{
		margin-bottom: 28px;
		line-height: 25px;
	}
	.perfomance{
		font-size: 50px;
		line-height: 65px;
	}
}



