/*
 * rtl by morteza lotfi nejad
 *  */
/*footer*/
.footer {
  padding: 0.5rem 0;
  line-height: 2.5;
  border-top: none;
}

.footer a:not(.btn) {
  color: #a7a7a7;
}

.footer .title{
  color: #ededed;
  font-weight:600;
}

.footer #back-top_btn{
  background-color: rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .2rem 1rem;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: .3s ease;
  border: none;
  outline: none;
  cursor: pointer;
}

.footer_top.dark{
  background-color: #111 !important;
}

.footer_top.dark #back-top_btn:hover{
  background-color: rgba(255,255,255,.3);
  color: #fff;
}


.footer_top.dark .site-logo img{
  max-height: 40px;
  filter: drop-shadow(0 0 10px rgb(206, 14, 62));
}

.footer_top.dark .quick-link li a{
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  font-weight: normal;
  padding-right: .75rem;
  z-index: 1;
}

.footer_top.dark .quick-link li a::before{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%) scale(0);
  height: 100%;
  width: 3px;
  border-radius: 100px;
  background-color: #e561ff;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  z-index: -1;
}

.footer_top.dark .quick-link li a:hover{
  color: #e561ff;
  text-shadow: 0 0 3px , 0 0 10px ;
}
.footer_top.dark .quick-link li a:hover::before{
  transform: translateY(-50%) translateX(0) scale(1);
  opacity: 1;
}

.footer_bottom.dark{
  background-color: #000;
  color: #aaa;
}
.footer_bottom.dark p > a{
  color: #fff;
  font-weight: normal;
}

.footer-lang-selector{
  margin-right: .5rem;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0);
  padding: .1rem .5rem;
  border-radius: 5px;
  outline: none;
  background-color: #222;
  color: #fff;
  font-size: .9rem;
  line-height: 1;
  cursor: pointer;
  transition: .3s ease;
}
.footer-lang-selector:focus{
  box-shadow: 0 0 1px 5px rgba(241, 241, 241, .2);
}



@media (max-width: 576px){
  section.banner .content{
    text-align: center;
  }
  section.banner .content h1{
    font-size: 30px;
  }

  .header-top .navbar-nav.list-inline{
    display: none;
  }

  nav.header-top .link{
    margin-right: auto;
  }

  footer {
    border-top: none;
  }

  footer .col-auto {
    -ms-flex: 0 0 auto;
    width: 100%;
    text-align: center;
  }

}

@media (min-width:1440px){
  .footer_top.dark .site-logo img{
    height: 3.5vw;
    max-height: 3.5vw;
  }
}
