/* =========================================
   WLTARA FOOTER
========================================= */

.wlt-footer{
  width: 100%;
  background: #002135;
}

.wlt-footer__main{
  width: 100%;
  padding: 120px 20px;
  box-sizing: border-box;
}

.wlt-footer__inner{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 200px 220px 200px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* Brand column */

.wlt-footer__logo-link{
  display: inline-flex;
  text-decoration: none;
}

.wlt-footer__socials{
  display: flex;
  justify-content: center;
  width: 50%;
  margin-top:20px;
}

.wlt-footer__logo{
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.wlt-footer__description{
  margin: 24px 0 20px;
  max-width: 340px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #DDDDDD;
}

/* Social icons */
.wlt-footer__socials{
  display: flex;
  align-items: center;
  gap: 10px;
}

.wlt-footer__social{
  width: 28px;
  height: 28px;
  border: 0.6px solid #DDDDDD;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.wlt-footer__social:hover{
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.wlt-footer__social img{
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

/* Headings */
.wlt-footer__heading{
  margin: 0 0 20px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #FFFFFF;
}

/* Menus */
.wlt-footer__menu{
  margin: 0;
  padding: 0;
  list-style: none;
}

.wlt-footer__menu li{
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.wlt-footer__menu li:last-child{
  margin-bottom: 0;
}

.wlt-footer__menu a{
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #DDDDDD;
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.25s ease;
}

.wlt-footer__menu a:hover{
  color: #FFFFFF;
}

/* Contact */
.wlt-footer__contact-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wlt-footer__contact-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #DDDDDD;
  text-decoration: none;
}

.wlt-footer__contact-item:hover{
  color: #FFFFFF;
}

.wlt-footer__contact-item img{
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.wlt-footer__contact-item span{
  color: inherit;
}

/* Bottom copyright area */
.wlt-footer__bottom{
  width: 100%;
  background: #001927;
  padding: 0 20px;
  box-sizing: border-box;
}

.wlt-footer__bottom-inner{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wlt-footer__bottom p,
.wlt-footer__bottom a{
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #BBBBBB;
  text-decoration: none;
}

.wlt-footer__bottom p{
  line-height: 24px;
}

.wlt-footer__bottom a{
  line-height: 22px;
}

.wlt-footer__bottom a:hover{
  color: #FFFFFF;
}

/* =========================================
   LAPTOP
========================================= */

@media (min-width: 1025px) and (max-width: 1366px){
  .wlt-footer__inner{
    grid-template-columns: 320px 180px 220px 200px;
    gap: 40px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) and (max-width: 1024px){
  .wlt-footer__inner{
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (min-width: 320px) and (max-width: 767px){

  .wlt-footer__main{
    padding: 50px 20px;
  }

  .wlt-footer__inner{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wlt-footer__col{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wlt-footer__logo-link{
    justify-content: center;
  }

  .wlt-footer__logo{
    margin: 0 auto;
  }

  .wlt-footer__description{
    max-width: 100%;
    text-align: center;
  }

  .wlt-footer__socials{
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .wlt-footer__menu{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wlt-footer__contact-list{
    align-items: center;
  }

  .wlt-footer__bottom-inner{
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 16px 0;
  }

}