/*  */

.footer {
	background-color: #161b22;
	color: white;
	padding: 0.5rem 1rem;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-newsletter {
	border-bottom: 3px solid #333;
	padding-bottom: 3.5rem;
}

.footer-newsletter h2 {
	font-size: 40px;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.footer {
	padding-top: 2rem;
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.footer-newsletter .content {
	width: 69%;
}

.newsletter-form input {
	flex: 1;
	padding: 0.75rem;
	border: 1px solid #333;
	border-radius: .375rem;
	outline: none;
	font-size: 1rem;
}

.newsletter-form button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 1rem;
	border-radius: .375rem;
	font-size: 1rem;
	cursor: pointer;
}

.newsletter-form button:hover {
	background-color: #0056b3;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
}

.footer-links h4 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
	margin-bottom: 1rem;
}

.footer-links ul li a {
	text-decoration: none;
	color: white;
	font-size: 1rem;
}

.footer-links ul li a:hover {
	text-decoration: underline;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 1.6rem;
	font-size: 0.9rem;
}

.footer-language span {
	cursor: pointer;
	color: white;
}

.footer-socials a {
	color: white;
	margin-left: 0.5rem;
	font-size: 1.2rem;
	text-decoration: none;
}

.footer-socials a:hover {
	color: #007bff;
}

.second-line {
	padding: 5rem 1rem;

	border-bottom: 3px solid #333;
}

.footer-socials {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	/* Space between icons */
}

.footer-socials svg {
	height: 24px;
	width: 24px;
	fill: currentColor;
	transition: color 0.3s;
}

.footer-socials a:hover svg {
	color: white;
	/* Or desired hover color */
}

.form-text p {
	width: 70%;
	text-align: left;
	padding-top: 0.5rem;
}

.logo {
	width: 44px;
	height: 39px;
    margin-top: -2.5rem !important;
	margin: 0;
	padding: 0;
}

.lwrapper {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.logo svg {
	display: block;
	/* Prevent inline spacing */
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
.logo{
    margin: 0 !important;
}
	.newsletter-form {
        gap: 1rem;
        flex-direction: column;
	}

	.newsletter-form input,
	.newsletter-form button {
		width: 100%;
	}

	.footer-newsletter {
		display: block;
		padding-bottom: 2rem;
		text-align: center;
	}

	.footer-newsletter h2 {
		font-size: 1.5rem;
	}

	.footer-newsletter .content {
		width: 100%;
		margin-bottom: 1rem;
	}

	.form-text p {
		width: 100%;
		text-align: center;
	}

	.second-line {
		padding: 3rem 1rem;
		flex-direction: column;
		text-align: center;
	}

	.footer-links {
		gap: 1.5rem;
		display: block;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 1rem;
	}

	.footer-newsletter h2 {
		font-size: 1.2rem;
	}

	.newsletter-form button {
		padding: 0.75rem;
	}

	.footer-links h4 {
		font-size: 1rem;
	}

	.footer-links ul li a {
		font-size: 0.9rem;
	}

	.footer-socials {
		gap: 12px;
	}

	.footer-socials svg {
		height: 20px;
		width: 20px;
	}
}