@charset "UTF-8";

#site-footer {
	background: var(--sentry_grey);
	color: white;
	padding: 3% 6%;
	text-align: left;
	display: grid;
	grid-template-columns: max-content 1fr;

	.container>.container {
		justify-self: center;
	}
	a {
		color: white;
		transition: .5s;
		&:hover{
			color: var(--sentry_orange);
		}
	}

	address {
		font-weight: bold;
		font-style: normal;
		font-size: 1.2rem;
		margin-bottom: 1rem;
		*{
			margin: 0;
		}
		p:last-child {
			margin-top: 1rem;
		}
	}
	.socials {
		display: flex;
		flex-direction: row;
		li {
			svg {
				height: 2rem;
				width: 2rem;
			}
			margin: 0 .5rem;
			&:first-child { margin-left: 0; }
			&:last-child { margin-right: 0; }
		}
	}

	@media ( max-width: 32rem ) {
		grid-template-columns: 1fr;
		.container>.container {
			justify-self: initial;
			margin-top: 1rem;
		}
	}
}
.copy-right{
	background: black;
	color: white;
	font-size: .7rem;
	padding: .1em 1em 0;
	p{ text-align: right; }
}
