/* ========================= */
/* FOOTER GENERAL */
/* ========================= */

.footer{

background:#f5f5f5;

font-family:Arial, Helvetica, sans-serif;

margin-top:40px;

}

/* ========================= */
/* NEWSLETTER */
/* ========================= */

.footer-newsletter{

border-bottom:1px solid #ddd;

padding:20px 0;

}

.newsletter-box{

display:flex;

align-items:center;

justify-content:space-between;

flex-wrap:wrap;

gap:15px;

}

.newsletter-box span{

font-size:16px;

color:#333;

font-weight:600;

}

/* FORM */

.newsletter-form{

display:flex;

gap:10px;

flex-wrap:wrap;

}

.newsletter-form input{

padding:10px 14px;

border:1px solid #ccc;

border-radius:6px;

font-size:14px;

min-width:200px;

}

.newsletter-form button{

background:linear-gradient(
90deg,
#7b2cff,
#c433ff
);

border:none;

color:#fff;

padding:10px 16px;

border-radius:6px;

cursor:pointer;

font-size:14px;

font-weight:600;

transition:.2s;

}

.newsletter-form button:hover{

opacity:.9;

}

/* ========================= */
/* SOCIAL */
/* ========================= */

.social{

display:flex;

align-items:center;

gap:10px;

}

.social i{

color:#666;

font-size:16px;

cursor:pointer;

transition:.2s;

}

.social i:hover{

color:#b720eb;

}


/* ========================= */
/* LINKS */
/* ========================= */

.footer-links{

display:flex;

justify-content:space-between;

padding:30px 0;

flex-wrap:wrap;

gap:20px;

}

.footer-links .col{

min-width:200px;

}

.footer-links h4{

font-size:14px;

margin-bottom:10px;

color:#000;

font-weight:700;

}

.footer-links a{

display:block;

font-size:13px;

color:#555;

margin-bottom:6px;

text-decoration:none;

transition:.2s;

}

.footer-links a:hover{

color:#b720eb;

}


/* ========================= */
/* FOOTER BOTTOM */
/* ========================= */

.footer-bottom{

border-top:1px solid #ddd;

padding:20px 0;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}

.footer-text p{

font-size:12px;

color:#555;

margin:5px 0;

}

.footer-logo img{

height:40px;
width:auto;

object-fit:contain;

}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:768px){

.newsletter-box{

flex-direction:column;

align-items:flex-start;

}

.newsletter-form{

width:100%;

}

.newsletter-form input{

width:100%;

}

.footer-links{

flex-direction:column;

}

.footer-bottom{

flex-direction:column;

align-items:flex-start;

}

}