footer{background:var(--navy-ink); color:rgba(255,255,255,.7);}
.foot-top{
  display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:60px;
  padding:50px 28px 50px !important; border-bottom:1px solid var(--line-dark);
}
.foot-brand img{height:60px; margin-bottom:22px;}
.foot-brand p{font-size:14px; line-height:1.95; color:rgba(255,255,255,.55); max-width:340px; text-align:justify;}
.soc-row{display:flex; gap:12px; margin-top:24px;}
.soc-row a{
  width:38px; height:38px; border:1px solid var(--line-dark); display:flex; align-items:center; justify-content:center;
  transition:all .25s var(--ease); background: var(--line-dark);
}
.soc-row a svg{width:20px; height:20px; stroke:var(--white); fill:none;}
.soc-row a:hover{background:var(--teal); border-color:var(--teal);}
.soc-row a:hover svg{stroke:var(--white);}

.foot-col h5{color:var(--white); font-size:15px; font-weight:700; margin-bottom:22px;}
.foot-col ul li{margin-bottom:14px;}
.foot-col ul li a{font-size:14px; color:rgba(255,255,255,.6); transition:color .2s;}
.foot-col ul li a:hover{color:var(--teal-soft);}
.foot-contact li{font-size:14px; color:rgba(255,255,255,.6); line-height:1.8;}
.foot-contact a{color:rgba(255,255,255,.6); transition:color .2s;}
.foot-contact a:hover{color:var(--teal-soft);}

.foot-bottom{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
  padding:26px 28px; font-size:13px; color:rgba(255,255,255,.45);
}

@media (max-width:800px){
  .foot-top{grid-template-columns:1fr; gap:40px; padding:70px 24px 40px;}
}