.footer-section {
  background: var(--lightblack);
}
.footer-section .footer-col .footer_title {
  font-size: var(--font26);
  line-height: 36px;
}
.footer-logo img{
  max-width: 150px;
}
.footer-section .footer-col .footer-list li {
  position: relative;
  line-height: 20px;
}
.footer-section .footer-col .footer-list li:not(:last-child) {
  padding-bottom: 16px;
}
.footer-section .footer-col .footer-list li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  font-size: var(--font16);
  font-weight: 400;
}
.footer-section .footer-col .footer-list li a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  pointer-events: none;
  background: url('../img/double-arrow.svg')no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}
.footer-section .footer-col .footer-list li.mail a::before{
  width: 14px;
  height: 11px;
   background: url('../img/mail.svg')no-repeat; 
}

.footer-section .footer-col .footer-list li.call a::before{
  width: 11px;
  height: 15px;
   background: url('../img/call.svg')no-repeat; 
}
.footer-section .footer-col .footer-list li a:hover {
  padding-left: 4px;
  /* color: var(--main); */
}
.footer-section .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1;
  font-size: var(--font18);
  color: var(--white);
  background: transparent;
  transition: all 0.4s ease-in-out;
}
.footer-section .social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  transform: scale(0);
  z-index: -1;
  transition: transform 0.4s ease-in-out, background 0.4s ease-in-out;
}
.footer-section .social-icon:hover::before {
  transform: scale(1);
}
.footer-section .social-icon.facebook::before {
  background: #0766FF;
}
/* .footer-section .social-icon.youtube::before {
  background: red;
} */
 .footer-section .social-icon.linkedin::before {
  background: #0A66C2;
}
.footer-section .social-icon.insta::before {
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.footer-section .social-icon.twitter:hover img{
  filter: brightness(1) invert(1);
}
.footer-section .social-icon.twitter::before {
  background: #fff;
}
.footer-section .social-icon:hover {
  color: #fff;
  border-color: transparent;
}


/* footer bottom */
.footer-bottom{
  border-top: 1px solid #343232;
  padding-top: 30px;
}
.copyright-box p{
  font-size: var(--font16);
  line-height: 28px;
}

/* dowload-link */
.dowload-link{
    background: var(--white);
    display: flex;
    align-items: center;
    font-weight: 600;
    padding-inline: 15px;
    padding-block: 15px;
    gap: 10px;
    color: var(--black);
    transition: all 0.5s ease-in-out;
      border: 1px solid var(--white);
}
.dowload-link.btn-transparent{
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.dowload-link:hover{
  background: transparent;
  color: var(--white);
}
.dowload-link.btn-transparent:hover{
  background: var(--white);
      color: var(--black);
}
.dowload-link:hover span{
  filter: brightness(0) invert(1);
}
.dowload-link.btn-transparent:hover span{
   filter: brightness(1) invert(0); 
}


@media only screen and (max-width:1050px){
  .dowload-link {
    padding-inline: 10px;
    gap: 6px;
}
}

@media only screen and (max-width:992px){
    .copyright-box p{
    text-align: center;
  }
}

@media only screen and (max-width:768px){
  .footer-section .footer-col .footer-list li a,.footer-section  .footer-list li{
    font-size: var(--font12);
    line-height: 18px;
  }
  .footer-section .footer-col .footer-list  li:not(:last-child){
    padding-bottom: 8px;
  }
  .footer-section .footer-col .footer_title{
    font-size: var(--font20);
    line-height: 30px;
  }
  .footer-section .footer_middle_area .email_text .email_link,.copyright-box p{
    font-size: var(--font12);
    line-height: 18px;
  }

  .footer-bottom{
    padding-block: 10px;
  }
  .dowload-link {
    font-size: var(--font12);
    line-height: 18px;
    padding-inline: 8px;
    padding-block: 6px;
    gap: 6px;
}
}