.footer {
	background-color: #212121;
	padding: 100px 0 0 0;
	color: #FFF;
	font-size: 15px;
}

.footer-content {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 26% 16% 26% 1fr;
	gap: 40px;
	padding: 0 0px 40px 0px;
	font-weight: 300;
}

.footer-section h3 {
	color: #fff;
	font-size: 25px;
	margin-bottom: 20px;
	font-weight: 500;
}

.logo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.logo img {
	width: 100%;
	max-width: 300px;
}

.logo-icon {
	width: 30px;
	height: 30px;
	background-color: #c4965f;
	margin-right: 10px;
	position: relative;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.logo-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background-color: #2c2c2c;
	border-radius: 50%;
}

.brand-name {
	color: #fff;
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 1px;
}

.brand-subtitle {
	color: #999;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-left: 40px;
}

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

.footer-section ul li {
	margin-bottom: 3px;
}

.social-links ul li a {
	width: 35px;
	height: 35px;
	border: 1px solid #FFF;
	border-radius: 5px;
	justify-content: center;
	align-items: center;
}

.social-links ul li a img {
	width: 17px !important;
}

.footer-section ul li a {
	color: #FFF;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
}

.footer-section ul li a:hover {
	color: var(--theme-color);
}


.footer-section ul li a::before {
	/* content: ''; */
	width: 6px;
	height: 6px;
	background-color: #c4965f;
	border-radius: 50%;
	margin-right: 10px;
}

.social-links ul {
	display: flex;
	gap: 30px;
	margin-top: 15px;
}

.footer-section .social-links li {
	list-style: none;
	margin-left: 0;
}

.social-links a {
	width: 40px;
	height: 40px;
	/* background-color: #404040; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-links a:hover {
	color: #fff;
}

.contact-info {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-info .icon {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background-color: #c4965f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}

.newsletter-form {
	margin-top: 20px;
	position: relative;
	border: 1px solid transparent;
}

.newsletter-form input[type="email"] {
	width: 100%;
	padding: 15px 30px;
	background-color: #303030;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 15px;
	border: 1px solid #FFF;
}

.newsletter-form input[type="email"]::placeholder {
	color: #999;
}

.newsletter-form button {
	background-color: var(--theme-color);
	border: 1px solid var(--theme-color);
	color: #fff;
	padding: 15px 20px 11px;
	cursor: pointer;
	font-size: 15px;
	transition: background-color 0.3s ease;
	width: 100%;
	margin-top: 15px;
	border-radius: 4px;
	text-transform: uppercase;
	font-size: 18px;
	font-family: "Old Standard TT", sans-serif;
}

.newsletter-form button:hover {
	background-color: transparent;
}

.newsletter-form .checkbox-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.newsletter-form input[type="checkbox"] {
	margin-right: 10px;
}

.newsletter-form label {
	font-size: 12px;
	color: #999;
}

.footer-bottom {
	padding: 20px 0;
	text-align: center;
	font-size: 12px;
	border-top: 1px solid #BDBDBD;
}

.footer-bottom-content {
	padding: 0 20px;
	font-size: 14px;
}

.footer-section h2 {
	color: #fff;
	margin-bottom: 15px;
	font-weight: 400;
	font-size: 19px;
	text-transform: uppercase;
	font-family: "Old Standard TT", sans-serif;
}

.footer-section p {
	padding-bottom: 3px;
}

.social-links {
	margin-top: 10px;
}

.footer-section p a {
	color: #ADADAD;
	margin-left: 10px;
	display: inline-block;
}

.footer-section ul li {
	/* display: flex; */
	gap: 0px 5px;
}

.footer-section ul li {
	list-style: disc;
	margin-left: 15px;
}

.footer-section.section3 ul li {
	align-items: start;
}

.footer-section.section3 ul li img {
	margin-top: 5px;
}

.footer-section ul li img {
	object-fit: contain;
}

@media(max-width:990px) {
	.footer-section .logo img {
		height: 54px;
	}

	.footer {
		padding-top: 30px;
	}
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.footer-section {
	font-size: 15px;
}

.brand-name img {
	padding: 0px 20px 0px;
}

.contact-info span {
	flex: 1;
}


.backtotop {
    cursor: pointer;
    background: #339a5e;
    bottom: 60px;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    padding: 2px;
    position: fixed;
    right: 20px;
    text-align: center;
    text-transform: uppercase;
    width: 40px;
    z-index: 90;
    border-radius: 4px;
    height: 45px;
}

.backtotop svg {
    width: 22px;
    height: 22px;
    margin-bottom: -10px;
}

.backtotop svg path {
    stroke: #fff;
}