body, html {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

.header {
	background-color: #000000;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	display: flex;
	flex-direction: column;
}

.logo {
	display: flex;
	align-items: center;
	width: 40%;
	max-width: 300px;
}

.logo img {
	width: 130px;
	height: auto;
	transition: all 0.3s ease;
}

.sidebar-logo img {
	width: 100px;
	height: auto;
	transition: all 0.3s ease;
}

.nav-menu {
	display: flex;
	flex-grow: 1;
	justify-content: flex-end;
}

.nav-menu a {
	color: #d3b160;
	text-decoration: none;
	margin-left: 20px;
	white-space: nowrap;
	font-family: "Barlow Semi Condensed", serif;
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1.2;
	text-transform: none;
	font-size: 23px;
}

.nav-menu a:hover {
	color: #d7a531;
	/* transform: translateY(5px); */
	transition: .3s all ease-in-out;
}

.nav-menu a:after {
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -2px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	content: "";
	-webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
	transition: all .3s cubic-bezier(.645, .045, .355, 1);
	background-color: #d3b160;
}

.hamburger {
	display: none;
	cursor: pointer;
	background: none;
	border: none;
	padding: 10px;
	transition: all 0.3s ease;
}

.hamburger svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
	transition: all 0.3s ease;
}

.hamburger:focus {
	outline: 2px solid #0066cc;
	border-radius: 5px;
}

.sidebar {
	position: fixed;
	top: 0;
	left: -300px;
	width: 100%;
	height: 100%;
	background-color: #000000;
	/* background-image: linear-gradient(45deg, #0051C6 86%, #0A1A31 75%); */
	z-index: 10003;
	transform: translateX(-100%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .5s all ease-in-out;
	transition: .5s all ease-in-out;
	display: flex;
	flex-direction: column;
}

.sidebar.open {
	transform: translateX(0) !important;
	left: 0;
	opacity: 1;
	visibility: visible;
}

.sidebar a:not(.sidebar-logo a) {
	display: block;
	padding: 20px;
	text-decoration: none;
	font-family: "Poppins", Sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #d3b160;
	border-bottom: 1px solid white;
}

.sidebar .page-mobile-menu-header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 0 30px;
	height: 85px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #171717 !important;
}

.close-btn {
	color: white;
	font-size: 36px;
	position: absolute;
	top: 3%;
	right: 5%;
	padding: 0 9px;
	z-index: 10000;
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	gap: 5px;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 30px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.close-btn>i {
	color: #ffffff;
}

.sidebar-links {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-grow: 1;
	padding-top: 75px;
	text-align: center;
	margin: 0px 10%;
}

.nav-slide-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backface-visibility: hidden;
	background: rgba(0, 0, 0, .6);
	z-index: 10002;
	opacity: 0;
	visibility: hidden;
	transition: .3s all ease-in-out;
}

.nav-slide-overlay.open {
	opacity: 1;
	visibility: visible;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.nav-header-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	width: 1140px;
	margin-top: 10px;
}

.header-phone-links {
	display: flex;
	flex-direction: row;
	gap: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	width: 1140px;
	border-bottom: 1px solid #fff;
}

.info-icon {
    font-size: 16px;
    margin-right: 2px;
    background: #d7a531;
    border-radius: 50px;
    height: 26px;
    width: 26px;
    padding: 5px 0px;
    text-align: center !important;
}

.phone-call-link, .phone-call-link:hover {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 10px;
	color: white !important;
	text-decoration: none !important;
}

@media ( max-width : 1024px) {
	.logo {
		width: 35%;
	}
	.hamburger svg {
		width: 28px;
		height: 28px;
	}
}

@media ( max-width : 768px) {
	.header {
		padding: 10px;
	}
	.logo {
		width: 60%;
		max-width: none;
	}
	.nav-menu {
		display: none;
	}
	.nav-phone-flex {
		display: none;
	}
	.hamburger {
		display: block;
	}
	.hamburger svg {
		width: 32px;
		height: 32px;
	}
}

@media ( max-width : 480px) {
	.logo {
		width: 70%;
	}
	.logo img {
		width: 130px;
		height: auto;
		transition: all 0.3s ease;
	}
	.hamburger svg {
		width: 28px;
		height: 28px;
	}
	
	
	.header-phone-links {
		width: 300px;
	}
	
	.nav-header-center {
		width: 300px;
	}
}

/* Footer */
.footer {
	background-color: #000;
	color: #fff;
	padding: 40px 20px;
	margin-top: 20px;
}

.footer-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.footer-section {
	flex: 1;
	min-width: 200px;
	margin-bottom: 20px;
	/*text-align: center;*/
}

.footer-logo img {
	max-width: 150px;
	height: auto;
	margin-bottom: 1em;
	display: flex;
}

body>footer>div.footer-container>div.footer-section.footer-logo>p {
	text-align: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 13px;
}

.footer-nav, .footer-contact, .footer-download {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.footer-nav ul {
	list-style: none;
}

.footer-nav li {
	margin-bottom: 30px;
}

.footer-nav a {
	text-decoration: none;
	color: #333;
}

.footer-contact p {
	margin-bottom: 30px;
}

.footer-phone {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.footer-social a {
	display: inline-block;
	margin-right: 10px;
	font-size: 24px;
	color: #333;
}

.footer-download h3 {
	margin-bottom: 10px;
	color: #0A0F19;
	font-family: "TangoSans", Sans-serif;
	font-size: 30px;
	font-weight: 600;
}

.footer-download img {
	max-width: 150px;
	height: 50px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.footer-bottom {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ccc;
}

.footer-download {
	text-align: left;
}

.footer-download-buttons {
	display: flex;
	flex-direction: row;
}

.subheading-download-app {
	margin-bottom: 30px;
	font-size: 12px;
}

.invert-phone {
	transform: rotate(90deg);
}

.footer-section h2 {
	font-size: 31px;
	font-family: "Barlow Condensed", serif;
}

@media ( max-width : 768px) {
	.footer-section {
		flex: 100%;
		text-align: center;
	}
	.footer-download img {
		max-width: 120px;
	}
	.footer-download-buttons {
		flex-direction: column;
	}
	.footer-download {
		text-align: center;
	}
	.footer-logo img {
		display: inline;
	}
	.footer-container {
		flex-direction: column;
		align-items: center;
	}
	.footer-section {
		margin-bottom: 40px;
	}
	body>footer>div.footer-container>div.footer-section.footer-logo>p {
		text-align: center;
	}
}