/* phone + icon position */
@media (max-width: 979px) {
	.contact-number {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #888888;
		padding: 15px 20px 15px 70px;
		margin: 0 auto 10px auto;
		width: 200px;
		position: relative;
	}
	
	.contact-number {
		cursor: pointer;
	}

  /* pasek */
	.contact-number::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 60px;
		height: 100%;
		background: #DD3333;
	}

  /* ikonka – w pasku */
	.contact-number .fa-phone {
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		color: #fff;
		margin: 0;
	}
	
  /* przyklej menu do banera */
	.main-menu {
		margin-bottom: 0 !important;
	}

	/* FIX: ukryj zepsuty element */
	.contact-number .outer-strip {
		display: none !important;
	}
	
	/* mobile banner pos. */
	.page-head,
	.rh_banner,
	.header {
		margin-bottom: 10px !important;
		padding-bottom: 0px !important;
	}
}