.header {
	position: relative;
	z-index: 20;
	padding-top: 76px;
}
.top-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	padding: 32px 0 16px;
}
.top-header .logo {
	-webkit-transition: fill linear 0.2s;
	-o-transition: fill linear 0.2s;
	transition: fill linear 0.2s;
}
.top-header .logo.logo-link {
	background: none;
}
.top-header .logo-cont {
	width: 150px;
	height: 32px;
}

.top-header {
	-webkit-transition: background-color linear 0.2s;
	-o-transition: background-color linear 0.2s;
	transition: background-color linear 0.2s;
}
body::before {
	content: "smartphone";
	display: none;
}

@keyframes baner-info {
	0% {
		transform: rotate3d(0, 0, 1, 0deg);
		animation-timing-function: linear;
	}
	50% {
		transform: rotate3d(0, 0, 1, -180deg);
		animation-timing-function: linear;
	}
	100% {
		transform: rotate3d(0, 0, 1, -360deg);
		animation-timing-function: linear;
	}
}

@-webkit-keyframes baner-info {
	0% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		-webkit-animation-timing-function: linear;
	}
	50% {
		-webkit-transform: rotate3d(0, 0, 1, -180deg);
		-webkit-animation-timing-function: linear;
	}
	100% {
		-webkit-transform: rotate3d(0, 0, 1, -360deg);
		-webkit-animation-timing-function: linear;
	}
}

.on-tablet,
.on-laptop {
	display: none;
}
.no-mobile {
	display: none;
}

@media screen and (min-width: 768px) {
	body::before {
		content: "tablet";
	}
	.no-tablet {
		display: none;
	}
	.no-mobile,
	.on-tablet {
		display: revert;
	}
}

@media screen and (min-width: 1024px) {
	.no-laptop {
		display: none;
	}
	.solo-logo {
		height: auto;
	}
	.on-laptop {
		display: revert;
	}
	body::before {
		content: "laptop";
	}
	.top-header {
		height: auto;
	}
	.top-header .logo {
		margin-bottom: 0;
	}

	.main-header {
		padding: 16px 0 0 0;
	}
}
