/* header */
.navbar-brand img {
  height: 80px;
}

@media only screen and (max-width: 576px){
  .navbar-brand img {
    width: auto;
    height: auto;
  }
}

/* services */
.services-section {
  background-color: #f5f5f5;
}

.services-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.services-section ul li::before {
  content: '\f058';
  font-family: "Font Awesome 6 Free";
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}

.form-control::placeholder {
  color: #0f100f;
}

.form-select {
  color: #0f100f;
}

.fix-icon-call {
  display: inline-block;
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 999999;
  transition: all0.5s ease-in-out;
}

.fix-icon-whataap {
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 999999;
  transition: all0.5s ease-in-out;
}

.fix-icon-call-item {
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 1.5s infinite;
}

 .fix-icon-whataap-item {
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgb(60 60 60 / 40%);
  transition: box-shadow .2s;
  cursor: pointer;
  overflow: hidden;
  width: 55px !important;
  height: 55px !important;
  background: #25d366 !important;
}

.fix-icon-whataap-item:before {
    content: "";
    border: 20px solid rgba(37, 211, 102, .51);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    position: absolute;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    z-index: -1;
    top: -12px;
    left: -13px;
} 

.wp-icon-blink {
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
} 


.footer-links.footer-maps {
  padding-left: 0;
}