/* TransTrade Footer SCF */
.tt-footer{
  --ttf-navy:#081533;
  --ttf-blue:#086cf4;
  --ttf-muted:#57627a;
  --ttf-line:#e4e8ef;
  width:100%;
  background:#fff;
  color:var(--ttf-navy);
  font-family:Poppins,Arial,sans-serif;
  border-top:1px solid #f0f2f6;
}
.tt-footer__inner{
  width:calc(100% - 40px);
  max-width:1200px;
  margin:0 auto;
}
.tt-footer__top{
  display:grid;
  grid-template-columns:1.55fr .9fr 1.1fr 1.1fr 1.5fr;
  gap:0;
  padding:56px 0 48px;
}
.tt-footer__col{
  min-width:0;
  padding:0 30px;
  border-left:1px solid var(--ttf-line);
}
.tt-footer__col:first-child{
  border-left:0;
  padding-left:0;
  padding-right:38px;
}
.tt-footer__col:last-child{padding-right:0}

.tt-footer__brand{
  display:flex;
  align-items:center;
  gap:13px;
  text-decoration:none;
}
.tt-footer__logo{
  width:58px;
  height:52px;
  object-fit:contain;
  flex:0 0 58px;
}
.tt-footer__logo-fallback{
  width:58px;height:52px;
  flex:0 0 58px;
  display:flex;align-items:center;justify-content:center;
  border-radius:10px;
  color:#fff;
  font-size:22px;
  font-weight:700;
  background:linear-gradient(145deg,#0c74fb,#0866e9);
}
.tt-footer__brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.tt-footer__title{
  color:var(--ttf-navy);
  font-size:23px;
  font-weight:650;
  letter-spacing:-.5px;
}
.tt-footer__title span{color:var(--ttf-blue)}
.tt-footer__subtitle{
  margin-top:6px;
  color:#657087;
  font-size:11px;
  font-weight:400;
}
.tt-footer__description{
  max-width:270px;
  margin:22px 0 18px;
  color:#33405a;
  font-size:12.5px;
  line-height:1.75;
}
.tt-footer__socials{
  display:flex;
  align-items:center;
  gap:10px;
}
.tt-footer__social{
  width:35px;height:35px;
  border-radius:50%;
  background:#f2f5f9;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#26344c;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}
.tt-footer__social:hover{
  color:#fff;
  background:var(--ttf-blue);
}

.tt-footer__heading{
  margin:0 0 18px;
  color:var(--ttf-navy);
  font-size:13px;
  font-weight:650;
}
.tt-footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.tt-footer__links a{
  display:flex;
  align-items:center;
  gap:9px;
  color:#35425c;
  text-decoration:none;
  font-size:12px;
  font-weight:400;
}
.tt-footer__links a::before{
  content:"›";
  color:#263b61;
  font-size:20px;
  line-height:.8;
  font-weight:300;
}
.tt-footer__links a:hover{color:var(--ttf-blue)}

.tt-footer__contact-list{
  display:flex;
  flex-direction:column;
  gap:11px;
  margin-bottom:17px;
}
.tt-footer__contact-row{
  display:flex;
  align-items:center;
  gap:10px;
  color:#33405a;
  font-size:12px;
}
.tt-footer__icon{
  width:16px;height:16px;
  color:var(--ttf-blue);
  flex:0 0 16px;
}
.tt-footer__newsletter-title{
  margin:0 0 5px;
  color:var(--ttf-navy);
  font-size:12.5px;
  font-weight:650;
}
.tt-footer__newsletter-text{
  margin:0 0 10px;
  color:#657087;
  font-size:11px;
}
.tt-footer__newsletter-form{
  display:flex;
  align-items:stretch;
  width:100%;
  max-width:240px;
  height:42px;
  border:1px solid #d8dee8;
  border-radius:7px;
  overflow:hidden;
  background:#fff;
}
.tt-footer__newsletter-form input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  padding:0 12px;
  font:400 11px/1 Poppins,Arial,sans-serif;
  color:#24334e;
}
.tt-footer__newsletter-form button{
  width:44px;
  border:0;
  background:linear-gradient(180deg,#0873fa,#0067e9);
  color:#fff;
  font-size:20px;
  cursor:pointer;
}
.tt-footer__newsletter-shortcode form{
  margin:0!important;
}
.tt-footer__bottom{
  border-top:1px solid var(--ttf-line);
}
.tt-footer__bottom-inner{
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.tt-footer__copyright{
  color:#566177;
  font-size:11.5px;
}
.tt-footer__payments{
  display:flex;
  align-items:center;
  gap:22px;
}
.tt-footer__secure{
  display:flex;
  align-items:center;
  gap:8px;
  color:#566177;
  font-size:11.5px;
}
.tt-footer__payment-logo{
  max-height:24px;
  max-width:68px;
  width:auto;
  object-fit:contain;
}
.tt-footer__payment-placeholder{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:52px;
  height:24px;
  padding:0 8px;
  border-radius:4px;
  background:#f3f5f8;
  color:#18233a;
  font-size:10px;
  font-weight:700;
}

@media(max-width:1050px){
  .tt-footer__top{
    grid-template-columns:1.4fr 1fr 1fr;
    row-gap:35px;
  }
  .tt-footer__col:nth-child(4){border-left:0;padding-left:0}
}
@media(max-width:760px){
  .tt-footer__top{
    grid-template-columns:1fr 1fr;
    padding:38px 0;
  }
  .tt-footer__col{
    border-left:0;
    padding:0 18px 0 0;
  }
  .tt-footer__bottom-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:18px 0;
  }
}
@media(max-width:520px){
  .tt-footer__inner{width:calc(100% - 28px)}
  .tt-footer__top{grid-template-columns:1fr}
  .tt-footer__col{padding:0}
  .tt-footer__payments{flex-wrap:wrap;gap:12px}
}

.tt-footer__icon--headset{width:17px;height:17px;stroke-linecap:round;stroke-linejoin:round;}
