/*** Small Screen ***/
@media only screen and (max-width: 560px) {
	.social-contacts {
	    justify-content: center;
	}
	.registration {
	    justify-content: center;
	    justify-items: center;
	}
	.ss-grid{
		display: grid;
	}
}

/*** Big Screen ***/
@media only screen and (min-width: 560px) {
	.bs-flex {
	    display: -webkit-box;
	    display: -webkit-flex;
	    display: -ms-flexbox;
	    display: flex;
	}
}