.footer {
    background: var(--footer-bg);
    color: var(--text-color-heading);
}
.footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 auto;
}
.footer .footer-content .footer-section p{
    font-size: 16px;
    color: var(--text-color-sub-heading);
    margin-bottom: 16px;
    line-height: 1.6;
}
.footer .footer-content .footer-section .social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.footer .footer-content .footer-section .social-links .social-link {
    width: 40px;
    height: 40px;
    background: var(--text-color-heading);
    border-radius: 50%;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer .footer-content .footer-section .social-links .social-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.footer .footer-content .footer-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-color);
}
.footer .footer-content .footer-section ul{
	list-style-type: none;
	padding-left: 0;
    margin: 0;
}
.footer .footer-content .footer-section ul li {
    line-height: 1.6;
}
.footer .footer-content .footer-section ul li a {
    font-size: 16px;
    color: var(--text-color-sub-heading);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer .footer-content .footer-section ul li a:hover {
    color: var(--primary-color);
}
.footer .footer-content .footer-section .newsletter-form {
    display: flex;
    /* gap: 8px; */
    margin-top: 16px;
}
.footer .footer-content .footer-section .newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 0px solid var(--border-color);
    /* border-radius: 3px; */
    background: var(--text-color-heading);
    color: var(--white-color);
    width: 100px;
    outline: none;
}
.footer .footer-content .footer-section .newsletter-form input:focus{
    border: 0px solid var(--border-color);
}
.footer .footer-content .footer-section .newsletter-form input::placeholder {
    color: var(--white-color);
}
.footer .footer-content .footer-section .newsletter-form button,
.footer .footer-content .footer-section .newsletter-form button:hover,
.footer .footer-content .footer-section .newsletter-form button:active,
.footer .footer-content .footer-section .newsletter-form button:focus {
    padding: 12px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    /* border-radius: 3px; */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.footer .footer-contact ul{
	list-style-type: none;
	margin:0;
	padding:0;
    display: block;
}
.footer .footer-contact ul li,
.footer .footer-contact ul li a{
	font-size: 16px;
    color: var(--text-color-sub-heading);
	margin-right: 10px;
	text-decoration: none;
}
.footer .footer-contact ul li:last-child{
	margin-right: 0px;
}
.footer .footer-contact ul li .label{
    display: block;
    font-weight: 600;
}
.footer .footer-contact .label{
	color: var(--text-color-heading);
}
.footer .footer-value-props {
    border-top: 1px solid var(--footer-border);
    text-align: center;
    color: var(--text-color-heading);
}
.footer .footer-value-props ul{
	list-style-type: none;
	margin:0;
	padding:0;
	display: block;
}
.footer .footer-value-props ul li{
	font-size: 16px;
    color: var(--primary-color);
	margin-right: 10px;
	text-decoration: none;
}
.footer .footer-value-props ul li:last-child{
	margin-right: 0px;
}
.footer .footer-value-props ul li::after{
    content: "";
}
.footer .footer-value-props ul li:last-child:after{
    content: "";
    margin-left: 0px;
}
.footer .footer-bottom {
    border-top: 1px solid var(--footer-border);
    text-align: center;
    color: var(--text-color-heading);
}
.footer .footer-bottom p{
    font-size: 14px;
    color: var(--text-color-sub-heading);
}
.footer .footer-bottom ul{
    list-style-type: none !important;
}
.footer .footer-bottom ul li{
    display: inline-block;
}
.footer .footer-bottom ul li a{
    font-size: 14px;
    color: var(--text-color-sub-heading);
    text-decoration: none;
}
.footer .footer-bottom ul li a:hover{
    color: var(--primary-color);
}







@media (min-width: 425px) { 

}
@media (min-width: 768px) { 
    .footer .footer-contact ul{
        gap: 12px;
    }
    .footer .footer-contact ul,
    .footer .footer-value-props ul{
        display: inline-flex;
    }
    .footer .footer-contact ul li, 
    .footer .footer-contact ul li a{
        font-size: 14px;
    }
    .footer .footer-content {
        display: flex;
    }
}
@media (min-width: 992px) { 
    .footer .footer-contact ul li .label{
        display: inline-flex;
    }
    .footer .footer-value-props ul li::after{
        content: "|";
        font-weight: 400 !important;
        color: var(--footer-pipeline-color) !important;
        margin-left: 10px;
    }
    .footer .footer-contact ul li, 
    .footer .footer-contact ul li a{
        font-size: 16px;
    }
}
@media (min-width: 1024px) { 
	
}
@media (min-width: 1440px) { 
	.footer .footer-content {
        display: grid;
    }
}