.copyRight {
  color: var(--Gray-70);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

footer {
  background-color: var(--secondar-10);
  padding-block: 4.5rem 3.25rem;
  position: relative;
}

.footer__Top .container {
  border-bottom: 1px solid rgba(239, 239, 239, 0.2);
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
}

.footer__Top .container::before{
  content: "";
  position: absolute;
  background-image: url(../assets/images/water.png);
  background-repeat: no-repeat;
  right: 0;
  bottom: 2px;
  height: 56;
  width: 206;
}

body.rtl .footer__Top .container::before{
  right: unset;
  left: 0;
}

@media (max-width:992px){
  .footer__Top .container::before{
    right: 14px;
  }
  body.rtl .footer__Top .container::before{
    left: 14px;
  }
}

.footer_Links_Wrapper_Ttl {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

body.rtl .footer_Links_Wrapper_Ttl{
  font-size: 16px;
  font-weight: 600;
}

.footer_Links_Wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer_Links_List {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer_Links_Item {
  color: var(--Gray-70) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.10rem;
  transition: 0.3s;
}

.footer_Links_Item:hover {
  color: var(--secondar-40) !important;
}

.footer_Links_Item:hover .ezIcon {
  /* transform: translateX(6px) rotate(45deg); */
  background: var(--secondar-40);
}

.footer_Links_Item .ezIcon {
  --icon: 1rem;
  background: var(--Gray-90);
}

body.rtl .footer_Links_Item .ezIcon{
  rotate: -90deg;
}

/* *------------------------------- footer socials Start ------------------------------- */

.footer__Social_Wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.footer__Social_Item {
  background: transparent;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--Gray-100);
  transition: var(--transition);
}

.footer__Social_Item .ezIcon {
  --icon: 0.75rem;
  background: #fff;
}

.footer_Social_Ttl {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 24px;
  margin-top: 42px;
}

.footer__Social_Item:hover {
  border-color: var(--secondar-60) !important;
}

.footer__Social_Item:hover .ezIcon {
  background: var(--secondar-60) !important;
}

/* !------------------------------- footer socials End --------------------------------- */

/* !------------------------------- footer Contact End --------------------------------- */

.footer_Contact_List {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_Contact_ListItem{
  display: flex;
  gap: 8px;
}

.footer_Contact_ListItem img{
  width: 24px;
  height: 24px;
}

.footer_Contact_ListItem p{
  color: var(--Gray-60);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  /* text-align: left !important; */
}

.footer_Contact_ListItem a{
  font-size: 14px;
  color: var(--Gray-60) !important;
  line-height: normal;
  font-weight: 400;
  transition: var(--transition);
  direction: ltr;
}

.footer_Contact_ListItem span{
  font-size: 14px;
  color: var(--Gray-60) !important;
  line-height: normal;
  font-weight: 400;
  direction: ltr;
}

.footer_Contact_ListItem a:hover{
  color: var(--secondar-40) !important;
}

@media (max-width:992px){
  .footer_Contact_List{
    margin-block: 64px 1rem;
  }

  .footer_Links_List{
    gap: 1.5rem;
  }

  .footer__Logo_Wrapper img{
    width: 128px;
    height: auto;
  }
  .qr_Code img{
    margin-inline-start: 28px;
  }
}

.qr_Code img{
  width: 66px;
  height: 66px;
  margin-top: 20px;
}

.qr_Code{
  display: flex;
  justify-content: start;
  align-items: end;
}