/***************************/

.footer {
clip-path: url("#footer");
	width: 98%;
	height: auto;
	background-color: #513D34;
	aspect-ratio: 5 / 1;
	margin: auto;
    margin-top: 30px;
	background: #9B795D;
    background: linear-gradient(350deg, rgba(155, 121, 93, 1) 0%, rgba(194, 174, 151, 1) 100%);
	padding: 10px;
	padding-top: 50px;
	position: relative;
	bottom: 0;
}

.footer .footer-text {
	font-size: 1rem;
	color: white;
	letter-spacing: 8px;
	    text-transform: uppercase;
	font-weight: bold;
	font-variation-settings: "wght" 700;
	text-align: center;
	line-height: 50px;
	display: block;
	position: absolute;
	top: 0;
	right: 50%;
	transform: translateX(50%);
}

.footer .footer-row {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    color: white;
    font-weight: bold;
	font-variation-settings: "wght" 700;
    font-size: 0.9rem;
    margin-top: 20px;
    align-items: start;
    justify-items: stretch;
}

.footer .footer-row> div:first-child {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	align-items: center;
	justify-items: center;
}

.footer .footer-row div p {
	grid-column: 1 / -1;
}

.footer .footer-row div ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-row div> a {
	margin-right: auto;
}

.footer .footer-row div> a img {
	width: 110px;
	height: auto;
	mix-blend-mode: multiply;
}

.footer .footer-row div ul li {
	direction: ltr;
}

.footer .footer-row div ul li a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	flex-direction: row-reverse;
	gap: 5px;
	margin-top: 5px;
}

.footer .footer-row div .social {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	transition: .4s;
}

.footer .footer-row div .social:not(:hover) a svg *:not(:last-child) {
	fill: white !important;
	stop-color: white !important;
	transition: .4s;
}

.footer .other-links {
	display: flex;
	flex-direction: column;

}

.footer .other-links h4 {
	margin: 0 auto;
	margin-bottom: 10px;
	font-size: 1rem;
}

.footer .other-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px;
	justify-items: center;
    align-items: center;
	justify-content: center;
    align-content: center;
}

.footer .footer-row> div:last-child iframe {
	border-radius: 30px;
	border: none;
	margin-right: auto;
	margin-left: auto;
}

@media not all and (max-height: 899px) and (min-resolution:.1dpi) {
	.hidden-svg {
		display: none;
	}
}



@media (max-width:900px) {
	.footer {
		clip-path: url("#footer2");
		border-radius: 10px;
		margin-bottom: 50px;
	}

	.footer .footer-text {
		font-size: 0.7rem;
		letter-spacing: 2px;
			text-transform: uppercase;
		font-weight: bold;
		font-variation-settings: "wght" 700;
		text-align: center;
		line-height: 35px;
		display: block;
		position: absolute;
		top: 0;
		right: 50%;
		transform: translateX(50%);
	}

	.footer .footer-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.footer .footer-row> div:first-child {
		padding-bottom: 7px;
	}

	.footer .footer-row> div:first-child .social {
		margin-top: 10px;
	}

	.footer .footer-row> .other-links {
		display: none;
	}

	.footer .footer-row> div:last-child {
		display: none;
	}
	
	.footer .footer-row> div:last-child iframe {
		width: 90%;
		height: 200px;
	}
}

