/*
Theme Name:     MyTheme Design
Theme URI:      https://mythemedesign.com/
Author:         MyTheme Design
Author URI:     https://mythemedesign.com/
Description:    Dedicated Theme Designed by MyTheme
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
menu,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

body {
	line-height: 1.3;
}

menu,
ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	--main-bg: #f5efe4;
	--second-bg: #fff;
	--primary: #15130f;
	--secondary: #bfa77a;
	--tertiary: #714431;
	--normal-text-color: #686662;
	--border: #ada7a0;
	--footer-bg: #15130f;
	--footer-text: #a7a7a6;
	--btn-bg: #15130f;
	--btn-text: #fff;
	--font-main: "PTSerif", serif;
	--font-title: "PlayfairDisplay-Bold", serif;
}

* {
	box-sizing: border-box;
}

@font-face {
	font-family: "PTSerif";
	src: url(fonts/PTSerif-Regular.woff2) format("woff2"),
		url(fonts/PTSerif-Regular.woff) format("woff");
	font-style: normal;
	font-weight: 400;
}
@font-face {
	font-family: "PTSerif";
	src: url(fonts/PTSerif-Bold.woff2) format("woff2"),
		url(fonts/PTSerif-Bold.woff) format("woff");
	font-style: normal;
	font-weight: 700;
}
@font-face {
	font-family: "PlayfairDisplay-Bold";
	src: url(fonts/PlayfairDisplay-Bold.woff) format("woff"),
		url(fonts/PlayfairDisplay-Bold.woff2) format("woff2");
}

body {
	margin: 0;
	font-family: var(--font-main);
	background: var(--main-bg);
	color: var(--primary);
	font-weight: 400;
}
strong,
b {
	font-weight: 700;
}
a {
	color: inherit;
	text-decoration: none;
}
p {
	color: var(--normal-text-color);
}
.grecaptcha-badge{
	display:none !important;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 3vw;
	background: var(--main-bg);
	min-height: 150px;
}

.nav-logo img {
	width: 140px;
	height: auto;
}
.nav-left {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding-top: 5px;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.nav-left a {
	font-size: 1rem;
	color: var(--primary);
}
.nav-left a::after {
	content: "";
	display: block;
	width: 0px;
	height: 1px;
	background: var(--primary);
	transition: all 0.5s;
	margin-top: 5px;
	opacity: 0;
}
.nav-left a:hover::after {
	opacity: 1;
	width: 100%;
	transition: all 0.5s;
}

.search-form {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border);
	overflow: hidden;
	background: none;
}

.search-form input {
	border: none;
	padding: 0.5rem;
	outline: none;
	font-size: 0.8rem;
	background: transparent;
	font-family: var(--font-main);
}

.search-form button {
	background: none;
	border: none;
	padding: 0 0.5rem;
	cursor: pointer;
}

.lang-select, .gt_selector {
	margin-left: 1rem;
	padding: 0.4rem 0.5rem;
	border: 1px solid var(--border);
	background: none;
	font-size: 0.9rem;
	font-family: var(--font-main);
}

.hero {
	min-height: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
}
.slider {
	position: relative;
	width: 100%;
	height: 800px;
	margin: auto;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slides {
	display: flex;
	transition: transform 2.5s ease-in-out;
	width: 100%;
}

.next,
.prev {
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	background: #f5efe440 url(./images/next.svg) no-repeat center left 20px;
	cursor: pointer;
	width: 50px;
	height: 70px;
	background-size: 15px;
	opacity: 0;
	transition: all 1s;
}
.prev {
	left: 0px;
	background: #f5efe440 url(./images/prev.svg) no-repeat center right 20px;
}

.slide {
	flex: 0 0 100%;
	height: 800px;
	position: relative;
}
.slider:hover .next,
.slider:hover .prev {
	opacity: 1;
}
.slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.slide-caption {
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 60%;
	max-width: 500px;
	color: var(--primary);
	display: flex;
	flex-direction: column;
}
.slide-caption-text {
	background-color: var(--main-bg);
	padding: 2rem;
}
.slide-caption-text span {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.slide-caption-text h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-family: var(--font-title);
}

.bullets {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.bullet.active {
	background: var(--primary);
}

.btn-top {
	margin-top: 2rem;
}

.btn {
	background: var(--btn-bg);
	color: var(--btn-text);
	border: none;
	border-radius: 2rem;
	padding: 0.4rem 2rem;
	font-size: 0.8rem;
	cursor: pointer;
	margin-top: 1rem;
	transition: all 0.2s;
}

.btn:hover {
	background: var(--secondary);
	color: var(--primary);
}
.wpcf7-submit {
	background: var(--btn-bg) !important;
	color: var(--btn-text) !important;
	border: none !important;
	border-radius: 2rem !important;
	padding: 0.4rem 2rem !important;
	font-size: 0.8rem !important;
	cursor: pointer !important;
	margin-top: 1rem !important;
	transition: all 0.2s !important;
	width:auto !important;
	margin-left:35% !important;
}

.wpcf7-submit:hover{
	background: var(--secondary) !important;
	color: var(--primary) !important;
}

.btn-2 {
	background: var(--main-bg);
	color: var(--primary);
	border: none;
	border-radius: 2rem;
	padding: 0.4rem 2rem;
	font-size: 0.8rem;
	cursor: pointer;
	margin-top: 1rem;
	transition: all 0.2s;
}

.btn-2:hover {
	background: var(--secondary);
	color: var(--primary);
}
.horizontal-line {
	width: 50px;
	height: 1px;
	background: var(--primary);
	margin: 1.5rem auto;
}

.features {
	display: flex;
	justify-content: space-around;
	gap: 8rem;
	padding: 7rem 3vw;
	text-align: center;
	max-width: 1440px;
	margin: 0 auto;
}
.feature {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.top-title {
	font-size: 1rem;
	color: var(--tertiary);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}
.top-title-2 {
	font-size: 1rem;
	color: var(--tertiary);
	margin: 0.1rem 0;
	text-transform: uppercase;
}
.title {
	font-size: 1.7rem;
	margin: 1rem 0;
	font-family: var(--font-title);
}
.title-2 {
	font-size: 1.7rem;
	margin: 0.1rem 0;
	font-family: var(--font-title);
}
.line-1 {
	flex: 1;
	border-bottom: 1px solid var(--border);
	margin-bottom: 1.2rem;
}
.feature p {
	font-size: 1rem;
	color: #555;
}

.products-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.products-header h2 {
	font-size: 1.7rem;
	font-weight: bold;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.product-card {
	overflow: hidden;
	position: relative;
	height: 450px;
	display: flex;
	align-items: center;
	background-color: var(--primary);
	justify-content: center;
}
.product-card img{
	width:100%;
	height:auto
}
.product-card:hover .featured-content {
	opacity: 1;
	bottom: 0;
}
.featured-content h3 {
	text-align: center;
}
.product-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}
.product-card:hover img {
	filter: blur(1px);
}

.featured-content {
	position: absolute;
	bottom: -1rem;
	left: 0rem;
	z-index: 2;
	background: #000000;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0) 100%
	);
	padding: 5rem;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.featured-content h3 {
	color: var(--main-bg);
	font-size: 1.7rem;
	margin: 1rem 0;
	font-family: var(--font-title);
}
.featured-content .top-title {
	color: var(--main-bg);
}
.featured-label {
	font-size: 0.9rem;
	color: var(--main-bg);
	margin-bottom: 0.3rem;
}

.featured h3 {
	margin: 0.3rem 0 0.7rem 0;
	font-size: 1.3rem;
}

.support {
	text-align: center;
	padding: 7rem 0;
}

.support p {
	color: #555;
	margin-bottom: 3rem;
}

.vision {
	display: flex;
	align-items: center;
	background: var(--second-bg);
	align-items: stretch;
}

.vision-img {
	width: 50%;
	min-height: 400px;
}
.vision-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vision-content {
	flex: 1;
	min-width: 250px;
	padding: 4rem 10vw 2rem 4vw;
	align-self: flex-start;
}
.vision-content h4 {
	font-size: 1rem;
	color: var(--tertiary);
	text-transform: uppercase;
}
.sym-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
}
.sym-title-2 {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding: 0.3rem 2rem 0 1rem;
}
.symbol {
	background: url(images/and.svg) no-repeat center center;
	background-size: contain;
	width: 60px;
	height: 60px;
	margin: 0.5rem;
}

footer {
	background: var(--footer-bg);
	color: var(--footer-text);
	padding: 4rem 5vw 1rem 5vw;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.footer-logo {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	width: 50%;
	padding: 0 1rem;
}
.footer-logo a {
	margin-top: 10px;
	width: 35%;
	text-align: center;
}
.footer-logo img {
	width: 140px;
	height: auto;
}

.footer-logo p {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	padding: 0 2rem;
	width: 65%;
}

.footer-contact {
	width: 50%;
	padding: 0 1rem;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.footer-contact-info {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	width: 65%;
}
.footer-contact-info p {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	flex-direction: row;
}

.location-icon {
	background: url(images/location.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 1rem;
}
.time-icon {
	background: url(images/time.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 1rem;
}
.tel-icon {
	background: url(images/tel.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 1rem;
}
.email-icon {
	background: url(images/email.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 1rem;
}

.footer-nav h4,
.footer-contact h4 {
	font-size: 1.3rem;
	color: var(--main-bg);
	font-family: var(--font-title);
	width: 35%;
	text-align: center;
}
.footer-2 {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin: 2rem 0;
}
.footer-nav {
	width: 50%;
	padding: 0 1rem;
	display: flex;
	flex-direction: row;
}

.footer-nav ul {
	list-style: none;
	padding: 0 2rem;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	width: 65%;
}

.footer-nav li {
	padding-top: 5px;
	margin-right: 1rem;
	width: auto;
}

.footer-nav a {
	transition: color 0.2s;
	font-size: 0.9rem;
}

.footer-nav a:hover {
	color: var(--secondary);
}

.footer-social {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 1rem;
	flex-direction: row;
	margin: 0 1rem;
}

.footer-social img {
	width: 24px;
}
.footer-social a {
	transition: all 0.2s;
	opacity: 0.7;
}

.footer-social a:hover {
	opacity: 1;
}

.footer-bottom {
	width: 100%;
	text-align: center;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.page-top {
	margin: 2px 3vw;
	text-align: center;
	border-top: 1px solid var(--border);
	padding: 4rem 0;
}

.page-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 3vw;
	width: 100%;
}
.page-title {
	font-size: 1.7rem;
	margin: 1rem 0;
	font-family: var(--font-title);
}
.categories {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin: 2rem 0 2rem 0;
}
.btn-3 {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 3rem;
	padding: 0.4rem 2rem;
	font-size: 0.8rem;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}
.btn-3:hover {
	background: var(--secondary);
	border: 1px solid var(--secondary);
	color: var(--btn-text);
}

.products-grid-2,
.related-products-grid {
	gap: 3rem;
	padding: 0 3vw 4rem 3vw;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-direction: row;
	max-width: 1440px;
	margin: 0 auto;
}
.product-card-2 {
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: flex-start;
	width: 260px;
	flex-direction: column;
}

.product-card-2-image {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 360px;
	transition: all 0.3s ease-in-out;
}
.product-card-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: all 0.3s ease-in-out;
	background: #fff;
}
.product-card-2:hover img {
	transform: scale(1.1);
	filter: contrast(120%);
}
.product-info {
	padding: 0.5rem 0.5rem 0.5rem 0.5rem;
	width: 100%;
	border-bottom: 1px solid var(--border);
}
.product-title {
	font-size: 1rem;
	margin-bottom: 0.3rem;
	text-align: left;
	color: var(--primary);
}
.product-detail {
	font-size: 0.9rem;
	color: var(--normal-text-color);
	text-align: right;
}

.product-details-section , .product{
	background: var(--second-bg);
	padding: 3rem 0 2rem 0;
}
.tabs, .woocommerce-Tabs-panel h2, form.cart, .price{
	display:none;
}
.woocommerce-product-gallery__wrapper{
	display:flex;
	flex-direction:row;
	flex-wrap: wrap;
	gap:1rem;
	justify-content: center;
	
}
.related h2{
	display:none;
}
.woocommerce-product-gallery__image img{
	border: 1px solid var(--border);
	max-width:100%;
	height:auto;
}
.wp-post-image{
	border:none !important;
}

.product-details-main {
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
.product-details-images {
	width: 50%;
	text-align: right;
}
.product-details-title {
	width: 100%;
	text-align: left;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: row;
}
.product-details-info {
	width: 50%;
	padding: 0 0 0 3rem;
}
.product-details-label {
	color: var(--secondary);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	letter-spacing: 1px;
}
.product-details-info h2 {
	margin: 0 0 1rem 0;
	font-size: 2rem;
}
.product-details-info ul {
	list-style: disc;
	padding: 0;
	margin: 0 0 3rem 1rem;
	color: var(--normal-text-color);
	font-size: 1rem;
	text-indent: 0.5rem;
}
.product-details-info li {
	margin-bottom: 0.3rem;
}

.product-attributes {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.product-attributes > div {
	background: var(--main-bg);
	padding: 0.7rem 2rem;
	text-align: center;
	font-size: 0.9rem;
	min-width: 180px;
}
.product-attributes > div b {
	font-weight: black;
}
.product-details-desc p {
	margin: 1rem 0;
}
.related-products {
	padding: 3rem 0;
	text-align: center;
}

.related-products-grid, .related ul.products {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}
.page-header-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.page-full {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.page-50 {
	width: 50%;
}
.page-50-content {
	padding: 4rem 10vw 2rem 4vw;
	align-self: flex-start;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2rem 4rem;
	flex-wrap: wrap;
}
.contact-form input,
.contact-form textarea {
	border: none;
	border-bottom: 1px solid var(--border);
	padding: 0.5rem;
	font-size: 0.9rem;
	font-family: var(--font-main);
	width: 100%;
	outline: none;
	background: transparent;
	margin: 0 auto;
}
.contact-form form {
	width: 70%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.contact-form button {
	clear: both;
	font-family: var(--font-main);
	display: block;
	margin: 0 auto;
}
	.menu,
	.menu-mobile {
		display: none;
	}
@media (max-width: 1200px) {
	.product-attributes > div {
		min-width: 150px;
	}
	.products-grid-2,
	.related-products-grid {
		gap: 1rem;
		padding: 0 0 4rem 0;
	}
	.contact-form form {
		width: 90%;
	}
	footer {
		padding: 4rem 3vw 1rem 3vw;
	}
	.footer-logo {
		padding: 0;
	}
	.footer-nav ul {
		padding: 0 1rem;
	}
	.footer-logo p {
		padding: 0 1rem;
	}
	.vision-content {
		padding: 4rem 4vw 2rem 4vw;
	}
}

@media (max-width: 1024px) {
	html {
		font-size: 90%;
	}
	.features {
		gap: 4rem;
	}
	.product-attributes {
		gap: 1rem;
	}
	.nav-logo img {
		width: 130px;
	}
}

@media (max-width: 768px) {
	.features {
		gap: 5rem;
		padding: 5rem 0;
		flex-direction: column;
	}
	.products-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.vision {
		flex-direction: column;
	}
	.vision-img {
		width: 100%;
		height: 400px;
	}
	.categories {
		gap: 0.5rem;
	}
	.page-top {
		padding: 4rem 0 1rem 0;
	}
	.btn-3 {
		padding: 0.4rem 1.5rem;
	}
	.products-grid-2,
	.related-products-grid {
		gap: 2rem;
	}
	.product-card-2 {
		max-width: 260px;
		width: 45%;
	}
	.product-details-images {
		width: 100%;
	}
	.product-details-info {
		width: 100%;
		padding: 3rem 0;
	}
	.product-attributes {
		justify-content: center;
	}
	.page-50 {
		width: 100%;
	}
	.contact-form {
		padding: 2rem 3vw;
	}
	.contact-form form {
		margin: 2rem auto;
	}
	.navbar {
		justify-content: center;
	}
	.nav-left,
	.nav-right {
		display: none;
	}
	.page-wrapper {
		padding: 0 4vw;
	}
	footer {
		padding: 4rem 4vw 1rem 4vw;
	}
	.footer-logo {
		width: 100%;
	}
	.footer-contact {
		width: 100%;
	}
	.footer-logo {
		margin-bottom: 3rem;
	}
	.footer-contact {
		padding: 0;
	}
	.footer-logo p {
		padding: 0 2rem;
	}
	.footer-nav {
		width: 100%;
	}
	.footer-social {
		width: 100%;
	}
	.footer-2 {
		flex-direction: column;
		gap: 4rem;
	}
	.footer-logo img {
		width: 120px;
	}
	.menu {
		display: block;
		position: absolute;
		top: 3.5rem;
		left: 2rem;
		width: 40px;
		height: 40px;
		cursor: pointer;
		background: url(./images/menu.svg) no-repeat center center;
		background-size: 25px 25px;
		border: 1px solid var(--border);
		border-radius: 3px;
		transform: scale(1);
		transition: all 0.3s ease-in-out;
	}
	.menu-x {
		display: block;
		position: absolute;
		top: 3.5rem;
		left: 2rem;
		width: 40px;
		height: 40px;
		cursor: pointer;
		background: url(./images/menu-x.svg) no-repeat center center;
		background-size: 25px 25px;
		border: 1px solid var(--border);
		border-radius: 3px;
		transform: scale(0);
		transition: all 0.3s ease-in-out;
	}
	.menu-mobile {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: var(--main-bg);
		padding: 1rem;
		z-index: 10000001;
		overflow: auto;
		align-items: center;
		justify-content: center;
		gap: 2rem;
		transition: all 0.3s ease-in-out;
		transform: translateY(-100%);
	}
	.menu-item {
		font-size: 1.2rem;
		text-transform: uppercase;
	}
	.hero {
		min-height: 500px;
	}
	.slider {
		height: 500px;
	}
	.next,
	.prev {
		width: 30px;
		height: 50px;
		background-size: 12px;
		background-position: center right 10px;
	}
	.slide-caption-text h2 {
		font-size: 1.5rem;
	}
	.slide-caption-text {
		padding: 1.5rem;
	}
	.btn-top {
		margin-top: 1rem;
	}
	.slide-caption {
		bottom: 35%;
	}
	.footer-nav ul {
		flex-wrap: wrap;
	}
}
