/* FOOTER */
.tm-footer{
  background: linear-gradient(180deg, #0b1f3a, #0e2b54);
  color: #ffffff;
  padding-top: 60px;
  margin-top: 80px;
}

.tm-footer-container{
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.tm-footer-col h3{
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 900;
}

.tm-footer-col h4{
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: .85;
}

.tm-footer-col p{
  font-size: 14px;
  line-height: 1.8;
  opacity: .85;
}

.tm-footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm-footer-col li{
  margin-bottom: 10px;
}

.tm-footer-col a{
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}

.tm-footer-col a:hover{
  opacity: 1;
  transform: translateX(2px);
}

.tm-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  padding: 18px;
  font-size: 13px;
  opacity: .7;
}

/* Responsive */
@media (max-width: 980px){
  .tm-footer-container{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px){
  .tm-footer-container{
    grid-template-columns: 1fr;
  }

  .tm-footer{
    padding-top: 40px;
  }
}
