@media only screen and (min-width: 1024px) {
	.footer {
		height: 45vh;
		background-color: var(--primary-title);
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1px;
	}

	/* Footer Left */
	.footer__left {
		height: 100%;
		border-right: 1px solid var(--gray-on-black);
		flex-grow: 1;
		color: #FFFFFF;
		/* font-size: 1.04vw; */
		font-size: 0.83vw;
		font-family: 'BT Beau Sans Regular';
		/* height: 446px; */
		display: flex;
		flex-direction: column;
		align-items: center;
		/* justify-content: space-around; */
	}
	.footer__left > div:first-child {
		flex-grow: 1;
		display: flex;
		/* justify-content: center; */
		align-items: center;
		/* background-color: red; */
		/* display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around; */
		/* height: 100%; */
	}
	.footer__logo__wrapper {
		height: 100%;
		display: flex;
		justify-content: center;
	}
	.sgs__logo__wrapper img {
		height: auto;
		width: 20vw;
	}
	.gm__logo__wrapper img {
		height: 3vh;
	}
	.footer__left > div:last-child {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row;
		padding-bottom: 30px;
		width: calc(100% - 4vw);
		padding-left: 2vw;
		padding-right: 2vw;
	}
	.footer__left > div:last-child > div:last-child {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	/* End Footer Left */

	/* Footer Center */
	.footer__center {
		display: flex;
		height: 100%;
		justify-content: space-around;
		flex-grow: 4;
		overflow: hidden;
		/* padding-bottom: 20px; */
	}
	.footer__column {
		color: var(--gray-on-black);
		display: flex;
		flex-direction: column;
		gap: 30px;
		padding-top: 61px;
		padding-bottom: 61px;
	}
	.footer__center a {
		color: var(--white-on-black);
	}
	/* End Footer Center */

	/* Footer Right */
	.footer__right {
		height: 100%;
		border-left: 1px solid var(--gray-on-black);
		color: var(--white-on-black);
		font-family: 'BT Beau Sans Light';
		flex-grow: 1;
		text-align: center;
		display: flex;
		justify-content: center;
	}
	.footer__right__wrapper {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	#subscribe__form {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		width: 21vw;
		min-width: 234px;
	}
	#subscribe__form input {
		border-radius: 5px;
		padding: 16px 23px;
	}
	#subscribe__form input[type=text] {
		font-family: 'BT Beau Sans Light';
		font-size: 20px;
		color: var(--primary);
		margin-top: 22px;
		margin-bottom: 22px;
		width: calc(100% - 48px);
	}
	#subscribe__form input[type=submit] {
		background-color: var(--secondary);
		color: var(--white-on-black);
		letter-spacing: 1.0px;
		border: none;
		font-family: 'BT Beau Sans Bold';
	}
	.soc__med {
		display: flex;
		gap: 36px;
		margin-top: 29px;
	}
	.soc__med img {
		height: 35px;
		width: auto;
	}
}

/* Mobile view */
@media only screen and (max-width: 1023px) {
	.footer {
		background-color: var(--primary-title);
		display: flex;
		flex-direction: column;
		align-items: center;
		font-size: 16px;
		gap: 1px;
		padding: 30px;
	}

	/* Footer Left */
	.footer__left {
		border-bottom: 1px solid var(--gray-on-black);
		padding-top: 50px;
		padding-bottom: 100px;
		border-bottom: 1px solid var(--gray-on-black);
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}
	.sgs__logo__wrapper img {
		height: auto;
		width: 50vw;
		margin-bottom: 20px;
	}
	.gm__logo__wrapper img {
		height: 3vh;
	}
	/* .footer__left > div:last-child {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row;
		padding-bottom: 30px;
		width: calc(100% - 4vw);
		padding-left: 2vw;
		padding-right: 2vw;
	} */

	/* Footer Center */
	.footer__center {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-around;
		width: 100%;
		font-size: 20px;
		padding-bottom: 100px;
		border-bottom: 1px solid var(--gray-on-black);
	}
	.footer__column {
		color: var(--gray-on-black);
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px;
		padding-top: 61px;
		min-width: 200px;
	}
	.footer__center a {
		color: var(--white-on-black);
	}
	/* End Footer Center */

	/* Footer Right */
	.footer__right__wrapper {
		font-size: 20px;
		color: #ffffff;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px;
		padding-top: 80px;
		padding-bottom: 50px;
	}
	.soc__med {
		display: flex;
		gap: 36px;
		margin-top: 29px;
	}
	.soc__med img {
		height: 35px;
		width: auto;
	}
}
