

.footer {
  position: relative;
}

.footer svg {
  position: absolute;
  right: 0;
  left: 0;
  height: 20px;
  width: 100%;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer {
  background: var(--helperColor);
  color: var(--white);
  padding: 0 20px 20px;
}

.footer-grid {
  margin-top: 60px;
  padding: 50px 0 10px 0 !important;
  display: grid;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* .footer-grid::after {
  content: "";
  background-image: url("../img/logo.png");
  background-size: 250px;
  opacity: .09;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -10;
} */

.logo-name {
  display: flex;
  align-items: center;
  gap: 10px;
  
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primaryColor);
  margin-bottom: 15px;
}

.logo-name img {
  width: 25%;
}

.footer-about p {
  font-size: 18px;
  line-height: 1.7;
}

.footer-right {
  display: flex;
  margin-block: 40px;
  justify-content: start;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  margin-left: 10px;
  color: var(--lightHelper);
  background-color: var(--white);
  padding: 3px 10px;
  border-radius: 50%;
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--white);
  background-color: var(--lightHelper);
}

.footer-links h4 {
  display: inline-block;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 15px;
  border-bottom: var(--white) 3px solid;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  color: var(--white);
  transition: color .3s ease;
  font-size: 20px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
 right: 34px; 
  width: calc(100% - 34px);
  height: 2px;
  background: rgb(255, 255, 255);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.footer-links a:hover {
  color:#fff;
  text-shadow: 0 4px 6px rgba(0,0,0,.3);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}


.footer-links a:before {
  content: '\f060';
  font-weight: 700;
  font-size: 12px;
  font-family: "Font Awesome 6 Free";
  vertical-align: middle;
  margin-left: 10px;
  color: var(--white);
  border: var(--white) 2px solid;
  border-radius: 50%;
  padding: 4px;
}
.footer-links-en a:before {
  content: '\f061';
  font-weight: 700;
  font-size: 12px;
  font-family: "Font Awesome 6 Free";
  vertical-align: middle;
  margin-right: 10px;
  color: var(--white);
  border: var(--white) 2px solid;
  border-radius: 50%;
  padding: 4px;
}

.footer-links a:hover {
  color:#fff;
}

/* =================== */
.tagsCloud {
  padding: 15px 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.tagWord {
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  padding: 5px 8px;
  background-color: var(--primaryColor);
  color: var(--white);
  border-radius: 15px;
  margin: 2px;
  line-height: 1;
  flex-grow: 1;
}

.footer-bottom {
  border-top: var(--white) 1px dashed;
  padding-top: 25px;
  padding-bottom: 50px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 17px;
  color: var(--white);
}

.footer-bottom a {
  color: var(--white);
}

.floating-icons {
    position: fixed;
    bottom: 20px;
    left: 70px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    z-index: 1000;
}

.floating-icons a {
    width: 70px;
    height: 70px;
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: var(--text-md);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.floating-icons .fa-whatsapp {
    font-size: 25px;
}

.floating-icons .fa-phone {
    font-size: 25px;
}

.floating-icons .phone-icon {
    background-color: var(--whatsappColor);
}

.floating-icons .whatsapp-icon {
    background-color: var(--whatsappColor);
}

.floating-icons a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .floating-icons {
        left: 10px;
        bottom: 10px;
      gap: 10px;
    }
}
/* ===================================== */


#scrollBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  padding: 0px;
  margin: 0px;
  box-shadow: 4px 4px 8px var(--shadow);
  cursor: pointer;
  z-index: 99;
  transition: background 0.3s ease;
}


.btn-inner {
    border: 5px solid var(--white);
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin: 0%;
  padding: 0%;
  align-content: center;
  text-align: center;
  overflow: hidden;
}


.arrow {
  font-size: 20px;
  color: var(--lightHelper);
  font-weight: 700;
}


.progress-ring {
  position: absolute;
  top: 0px;
  left: 0px;

  padding: 0px;
  margin: 0px;
}

.progress-ring__circle {
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 0.2s linear;
  /* transform-origin: center; */
}

@media (max-width: 768px) {

  .floating-icons {
      left: 10px;
      bottom: 10px;
  }


}


@media (max-width: 576px) {
  .footer-socials a {
    margin-left: 8px;
    padding: 2px 8px;
  }

}



