/*==========================================================
FOOTER
Premium White + Green
==========================================================*/

.footer{

width:100%;

margin:0;

padding:24px 35px;

display:flex;

justify-content:space-between;

align-items:center;

background:#FFFFFF;

border-top:1px solid #E8EDF3;

box-sizing:border-box;

flex-wrap:wrap;

gap:20px;

}

.footer-left{

font-size:14px;

color:#64748B;

font-weight:500;

}

.footer-right{

display:flex;

align-items:center;

gap:24px;

flex-wrap:wrap;

}

.footer-right a{

text-decoration:none;

color:#64748B;

font-size:14px;

font-weight:600;

transition:.3s;

}

.footer-right a:hover{

color:#17B34A;

}

@media(max-width:768px){

.footer{

padding:20px 16px;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

}

.footer-right{

justify-content:center;

flex-direction:column;

gap:12px;

}

}