@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.fw-100 {
	font-weight: 100;
}
.fw-200 {
	font-weight: 200;
}
.fw-300 {
	font-weight: 300;
}
.fw-400 {
	font-weight: 400;
}
.fw-500 {
	font-weight: 500;
}
.fw-600 {
	font-weight: 600;
}
.fw-700 {
	font-weight: 700;
}
.fw-800 {
	font-weight: 800;
}
.fw-900 {
	font-weight: 900;
}
h1 {
	font-size: 2.75rem;
	font-weight: 500;
	text-transform: uppercase;
}
h2 {
	font-size: 2.25rem;
	font-weight: 500;
	text-transform: uppercase;
}
h3 {
	font-size: 2rem;
	font-weight: 500;
}
h4 {
	font-size: 1.8rem;
	font-weight: 400;
}
h5 {
	font-size: 1.35rem;
	font-weight: 300;
}
h6 {
	font-size: 1.1rem;
	font-weight: 300;
}
@media (max-width: 820px) {
	h1 {
		font-size: 2.25rem;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.75rem;
	}
	h4 {
		font-size: 1.5rem;
	}
	h5 {
		font-size: 1.25rem;
	}
	h6 {
		font-size: 1rem;
	}
}
.spaced {
	letter-spacing: 6px;
}
.italic {
	font-style: italic;
}
.alt-font {
}
.norm {
	font-family: "Overpass", sans-serif;
	font-style: unset;
}
/* Admin Styles */
body {
	font-family: "Overpass", sans-serif;
}
.accessdenied,
.incorrect,
.noaccountfound {
	background-color: #ffb9b9;
}
.loggedout {
	background-color: #bbffb9;
}
.passwordupdated,
.passwordreset {
	background-color: #ffe882;
}
#admin-grid {
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: min-content auto min-content;
	grid-template-areas:
		"admin-nav"
		"main"
		"admin-footer";
	height: 100vh;
}
#admin-grid-2-top-bar {
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: min-content min-content auto min-content;
	grid-template-areas:
		"admin-nav"
		"buttons"
		"main"
		"admin-footer";
	height: 100vh;
}
#sidebar {
	display: none;
	grid-area: sidebar;
	background-color: #484848;
	overflow-y: auto;
}
#buttons {
	background-color: #efefef;
	border-radius: 0.5rem;
	padding: 0.5rem;
	border: 1px solid rgb(206, 212, 218);
	margin-left: auto;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
#main {
	grid-area: main;
	padding: 1rem;
	overflow-y: auto;
}
#admin-nav {
	grid-area: admin-nav;
}
#admin-footer {
	grid-area: admin-footer;
}

/* MCE */
.mce-fullscreen {
	z-index: 1050 !important;
}

/* Carousel Logo placement */
.mini-logo {
	position: absolute;
	top: 5%;
	left: 5%;
	width: 25%;
	z-index: 100;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.74);
}

/* General Stuff */
.vh-100 {
	height: 100vh !important; /* Fallback for browsers that do not support Custom Properties */
	height: calc(var(--vh, 1vh) * 100) !important;
}
a {
	text-decoration: none;
}
.img-left {
	float: left;
	max-width: 50%;
	padding: 10px 10px 10px 0px;
	height: auto;
}
.img-right {
	float: right;
	max-width: 50%;
	padding: 10px 0px 10px 10px;
	height: auto;
}

/* Toasty! */
#liveToast.show {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1021;
}
.toast {
	width: 300px;
	margin-left: auto;
	margin-right: 5rem;
	margin-top: 5rem;
}

/* Gallery stuff */
.galpreview {
	overflow: hidden;
	height: 10rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* Table stuff */
table.dataTable tbody td {
	vertical-align: middle;
}

/* Sidebar nav styling */
.sidebar-nav > a.list-group-item.list-group-item-action {
	background-color: #484848;
	border-color: #909090;
	color: white;
}

.sidebar-nav > a.list-group-item.list-group-item-action:focus,
.sidebar-nav > a.list-group-item.list-group-item-action:hover {
	background-color: #000000;
	border-color: #909090;
	color: white;
}
.sidebar-nav > a.list-group-item.list-group-item-action.active {
	background-color: #bbbbbb;
	color: black;
	border-color: #909090;
}

/* Testimonial stuff */
.testimonial-panel {
	width: 100%;
	min-height: 350px;
	background-color: #dddddd;
}
@media only screen and (max-width: 576px) {
	.testimonial-panel {
		min-height: 600px;
	}
	footer .text-start,
	footer .text-end {
		text-align: center !important;
	}
}
.testimonial-overlay {
	text-align: center;
	width: 100%;
	height: 100%;
	position: relative;
}
.testimonial-overlay .blockquote {
	font-size: 22px;
	line-height: 1.67;
	color: black;
	font-style: italic;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.testimonial-overlay .blockquote-footer {
	font-size: 18px;
	line-height: 1.67;
	font-weight: bold;
}
.testimonial-overlay cite {
	font-style: normal;
}
.fade {
	transition: opacity 0.4s linear !important;
}
.show {
	opacity: 1 !important;
}
.hide {
	opacity: 0 !important;
}
@media (min-width: 768px) {
	#admin-grid {
		grid-template-columns: 12rem auto;
		grid-template-rows: min-content auto min-content;
		grid-template-areas:
			"admin-nav admin-nav"
			"sidebar main"
			"admin-footer admin-footer";
	}
	#admin-grid-2-top-bar {
		grid-template-columns: 12rem auto;
		grid-template-rows: min-content min-content auto min-content;
		grid-template-areas:
			"admin-nav admin-nav"
			"sidebar main"
			"admin-footer admin-footer";
	}
	#sidebar {
		display: grid;
		grid-template-rows: min-content auto min-content;
	}
}
.bg-light {
	background-color: white !important;
}
.nav-size {
	position: relative;
}
.custom-car {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	height: 85vh;
}

label {
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.off-canvas {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: end;
	text-align: end;
	top: 62px;
	width: 400px;
	right: -400px;
	height: calc(100vh - 62px);
	background-color: var(--info-color);
	border-left: 2px solid white;
	transition: 0.75s ease;
	padding: 2rem 5rem;
}
#nav-vis:checked ~ .off-canvas {
	right: 0;
	transition: 0.4s ease;
}
@media (max-width: 575px) {
	.nav-burg {
		padding: 0.5rem;
		height: 45px;
		border-left: 0;
		border-top: 2px solid white;
	}
	.off-canvas {
		top: 122px;
		width: 100vw;
		right: -100vw;
		text-align: center;
		border: 0;
		height: calc(100vh - 122px);
		justify-content: center;
	}
	#nav-vis:checked ~ .off-canvas {
		right: 0;
		transition: 1s ease;
	}
	.nav-marg {
		margin-top: 129px;
	}
	.full {
		min-height: calc(100vh - 129px);
	}
}
input.nav-button-check {
	position: fixed;
	opacity: 0%;
	top: -100%;
}
.contact-image {
	height: 100%;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(/images/wallpaperdisplay.jpg);
}

.custom-forms::placeholder {
	color: rgba(255, 255, 255, 0.6);
	opacity: 1; /* Firefox */
}

.custom-forms::-ms-input-placeholder {
	/* Edge 12 -18 */
	color: rgba(255, 255, 255, 0.6);
}

.l-pad {
	padding: 2rem 0;
}
.xl-pad {
	padding: 5rem 0;
}
.home-desc {
	position: absolute;
	z-index: 9999999;
	bottom: 80px;
	left: 0;
	right: 0;
	margin: auto;
}
.nav-fill {
	min-height: 60px;
}

.g1-container {
	width: 100%;
	height: 350px;
	cursor: pointer;
	overflow: hidden;
}
.g1-container:hover .g1-content-hover {
	display: block;
}
.g1 {
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s ease-in-out;
}
.g1-content-hover {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	display: none;
	padding: 1rem;
	background: var(--info-color);
	font-weight: 400;
	margin-top: 1.25rem;
	margin-left: -2rem;
}
.g1-content {
	display: none;
}

@media screen and (max-width: 1024px) {
	.g1:hover {
		transform: none;
	}
	.g1-container {
		height: 100%;
	}
	.g1-container:hover .g1-content-hover {
		display: none;
	}
	.g1-content {
		display: block;
		padding: 1rem 0;
	}
}
.custom-container {
	width: 850px;
	margin: auto;
}
.b-white {
	border: 1px solid white;
}
.bb-2 {
	border-bottom: 2px solid white;
}
.bb-0 {
	border-bottom: 0 !important;
}
.contact-img {
	min-height: 750px;
}
.contact-bg {
	background-image: url(/images/contact.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.bg-trans {
	background-color: #00000011;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	color: white;
}
.text-trans {
	opacity: 60%;
}
.bar {
	background-color: #00000011;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	color: white;
	padding: 0.5rem 1rem;
	border-top: 2px solid white;
	border-bottom: 2px solid white;
	position: absolute;
	bottom: 0;
	width: 100%;
}
.bs-2 {
	border-left: 2px solid white;
}
.be-2 {
	border-right: 2px solid white;
}
.bt-2 {
	border-top: 2px solid white;
}
.bb-2 {
	border-bottom: 2px solid white;
}
@media (max-width: 767px) {
	.be-2 {
		border-right: 0;
	}
	.bs-2 {
		border-left: 0;
	}
}
.custom-forms {
	background: none !important;
	outline: 0 !important;
	border: 0;
	width: 100%;
	border-bottom: 2px solid white;
	color: rgb(20, 20, 20) !important;
	font-weight: 500;
}
::placeholder {
	color: white;
	opacity: 1;
	font-weight: 500;
}

:-ms-input-placeholder {
	color: white;
	font-weight: 500;
}

::-ms-input-placeholder {
	color: white;
	font-weight: 500;
}
.hero {
	width: 100%;
	height: 700px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
}
.hero.about-hero {
	background-image: url(/images/about-new4.jpg);
}
.hero.portfolio-hero {
	background-image: url(/images/portfolio3.jpg);
}
@media (max-width: 700px) {
	.hero.portfolio-hero {
		background-image: url(/images/portfolio-small.jpg);
	}
}
.hero.faq-hero {
	background-image: url(/images/faq-new2.jpg);
}
@media (max-width: 700px) {
	.hero.faq-hero {
		background-image: url(/images/faq-small5.jpg);
	}
}
.hero-image {
	width: 100%;
	max-height: 75vh;
	object-fit: cover;
	padding-top: var(--nav-height);
	background-color: var(--secondary-color);
}
.col-img {
	width: 100%;
}
.color-block {
	background-color: var(--info-color);
	height: 5vw;
}
.home {
	width: 100%;
	height: 100vh;
	position: relative;
	background-image: url(/images/cutting.jpeg);
	background-position: center;
	background-size: cover;
}
.home-right {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 35vw;
	height: 100vh;
	border-left: 2px solid white;
	background-color: #273d2727;
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.circle {
	width: 50px;
	height: 50px;
	border-radius: 500px;
	border: 2px solid white;
}
.home-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 10vh;
	width: calc(100% - 35vw);
	background-color: #273d2727;
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border-top: 2px solid white;
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 0 2rem;
}
.home-right-vis {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 35vw;
	height: 100vh;
	border-left: 2px solid white;
	background-image: url(/images/hanging.jpg);
	background-size: cover;
	opacity: 0%;
	transition: 0.6s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-right-vis:hover {
	opacity: 100%;
}

.home-bottom-vis {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 10vh;
	width: calc(100% - 35vw);
	border-top: 2px solid white;
	background-image: url(/images/wall.JPG);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: end;
	padding: 0 2rem;
	opacity: 0%;
	transition: 0.6s;
}
.home-bottom-vis:hover {
	opacity: 100%;
	transition: 0.6s;
}

.marquee {
	--gap: 2rem;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	padding: 0;
}
.marquee::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 15%;
	background: linear-gradient(90deg, #ebefed 0%, #ffffff00 100%);
	z-index: +1;
}
.marquee::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 15%;
	background: linear-gradient(-90deg, #ebefed 0%, #ffffff00 100%);
	z-index: +1;
}
.hero-marquee {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
}
.marquee li {
	width: 7rem;
	margin: 0 1rem;
	max-width: 100%;
	min-width: auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.marquee li img {
	width: 100%;
}
.marquee__content {
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: auto;
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
	min-width: 100%;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

@media (prefers-reduced-motion: reduce) {
	.marquee__content {
		animation-play-state: paused !important;
	}
}
.marquee__content {
	animation: scroll 50s linear infinite;
}

/* Reverse animation */
.marquee--reverse .marquee__content {
	animation-direction: reverse;
}
.marquee--fit-content {
	max-width: fit-content;
}
.marquee--pos-absolute .marquee__content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}
.marquee--pos-absolute .marquee__content:last-child {
	animation-name: scroll-abs;
}

@keyframes scroll-abs {
	from {
		transform: translateX(calc(100% + var(--gap)));
	}
	to {
		transform: translateX(0);
	}
}
.wwd-car {
	border-bottom: 2px solid white;
	position: relative;
}
.wwd-left {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #2833293d;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border-right: 2px solid white;
	width: 50%;
	padding: 1rem 3vw;
	display: flex;
	align-items: center;
}
.wwd-left button {
	background: none !important;
	color: white !important;
	border: 0 !important;
	text-align: start;
}
.wwd-img {
	height: 700px;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(/images/home2.jpg);
}
.grayscale {
	filter: grayscale(100%);
}
.home-img {
	height: 100vh;
	width: 100%;
	background-image: url(/images/new-home.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 700px) {
	.home-img {
		background-image: url(/images/home-small2.JPG);
	}
}
.home-img-text {
	text-align: center;
	width: 100%;
	font-size: 3vw;
	color: white;
	text-shadow: 0px 0px 50px rgba(0, 0, 0, 1);
	text-transform: uppercase;
}
.shadow {
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
	box-shadow: none;
}
#fade1 {
	-webkit-animation: fadein 5s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 5s; /* Firefox < 16 */
	-ms-animation: fadein 5s; /* Internet Explorer */
	-o-animation: fadein 5s; /* Opera < 12.1 */
	animation: fadein 5s;
}

@keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

/* Firefox < 16 */
@-moz-keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

/* Internet Explorer */
@-ms-keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

/* Opera < 12.1 */
@-o-keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

.portfolio {
	display: flex;
	align-items: center;
	justify-content: center;
}
.portfolio-block {
	position: relative;
	height: 600px;
	width: 440px;
	margin: 1rem;
}
@media (max-width: 475px) {
	.portfolio-block {
		width: 90vw;
		height: 125vw;
	}
}
.portfolio-img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.portfolio-overlay {
	background-color: #00000025;
	height: 100%;
	width: 100%;
	backdrop-filter: blur(1px);
	-webkit-filter: blur(1px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.portfolio-text {
	color: white;
}
.portfolio-text-block {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0%;
	transition: 0.5s;
}
.portfolio-text-block:hover {
	opacity: 100%;
	transition: 0.5s;
}
.seperator {
	width: 2px;
	height: 50px;
	background-color: var(--primary-color);
}
#page-container {
	position: relative;
	min-height: 100vh;
}
.page-positioning {
	flex-grow: 1;
}

footer.footer-new {
	display: grid;
	grid-template-columns: calc(60% - 2px) 40%;
	grid-template-rows: auto auto;
	grid-template-areas:
		"menu contact"
		"marquee contact";
	padding: 0;
	grid-gap: 2px;
	background-color: white;
	overflow: hidden;
	border-top: 2px solid white;
}
.footer-new .footer-top {
	grid-area: menu;
	background-color: #e1e6e3;
	padding: 1rem 0 2rem 0;
}
.footer-new .footer-top img {
	width: 20rem;
	max-width: 100%;
	margin-bottom: 1rem;
}
.footer-new .footer-top h2 {
	color: var(--primary-color);
	font-size: 1.2rem;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 0;
	padding: 0 1rem;
}
.footer-new .footer-top p {
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0;
	padding: 0 1rem;
}
.footer-new .footer-accreditations {
	grid-area: marquee;
	background-color: #ebefed;
	flex-grow: 1;
	padding-top: 1.5rem;
}
.footer-new .footer-accreditations h5 {
	color: var(--primary-color);
	font-size: 1.2rem;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 0;
	padding: 0 1rem;
}
.footer-new .footer-accreditations .marquee {
	width: 100%;
	--gap: 2rem;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	padding: 1rem 0;
	border: 0;
}
.footer-new .footer-accreditations .marquee img {
	width: 10rem;
}
.footer-new .footer-accreditations .marquee__content {
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: var(--gap);
	min-width: 100%;
	list-style: none;
	text-align: center;
	margin: 0;
}
@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}
@media (prefers-reduced-motion: reduce) {
	.footer-new .footer-accreditations .marquee__content {
		animation-play-state: paused !important;
	}
}
.footer-new .footer-accreditations .marquee__content {
	animation: scroll 50s linear infinite;
}
/* Reverse animation */
.footer-new .footer-accreditations .marquee--reverse .marquee__content {
	animation-direction: reverse;
}
.footer-new .footer-accreditations .marquee--fit-content {
	max-width: fit-content;
}
.footer-new .footer-accreditations .marquee--pos-absolute .marquee__content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}
.footer-new .footer-accreditations .marquee--pos-absolute .marquee__content:last-child {
	animation-name: scroll-abs;
}
@keyframes scroll-abs {
	from {
		transform: translateX(calc(100% + var(--gap)));
	}
	to {
		transform: translateX(0);
	}
}
.footer-new .footer-contact {
	padding: 2rem 1rem 0.5rem 1rem;
	grid-area: contact;
	background-color: var(--primary-color);
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: end;
	text-align: end;
}
.footer-new .footer-contact ul {
	display: flex;
	padding: 0;
	margin: 0;
	gap: 1rem;
	list-style: none;
}
.footer-new .footer-contact ul li {
	font-size: 1.5rem;
	margin: 0;
	padding: 0;
}
.footer-new .footer-contact h4 {
	font-size: calc(1.2rem + 1.5vw);
	line-height: calc(1.2rem + 1.5vw);
	font-weight: 400;
	margin-bottom: 0;
}
.footer-new .footer-contact h4:first-of-type {
	margin-top: 1rem;
}
.footer-new .footer-contact h4:last-of-type {
	margin-bottom: 1rem;
}
.footer-new .footer-contact p {
	font-size: 0.9rem;
	font-weight: 400;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.5);
}
.footer-new .footer-contact a {
	color: rgba(255, 255, 255, 0.8);
}
.footer-new .footer-contact a:hover {
	color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1400px) {
	footer.footer-new {
		display: grid;
		grid-template-columns: 100%;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			"menu"
			"marquee"
			"contact";
		padding: 0;
		grid-gap: 2px;
		background-color: white;
	}
	.footer-new .footer-contact {
		padding: 2rem 1rem 0.5rem 1rem;
		grid-area: contact;
		background-color: var(--primary-color);
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		text-align: left;
	}
}
