/* header */
.navbar-brand img {
  height: 110px;
}

@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;
}

/* commitment section */
.about-us.commitment {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* contact form below hero section */
.hero-quote-form{
    margin-top: -60px;
    position: relative;
    z-index: 99;
}

.quote-form-wrapper{
    background: var(--primary-color);
    padding: 50px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quote-form-wrapper .form-control{
    height: 55px;
    border: none;
    border-radius: 10px;
}

.quote-form-wrapper .btn-default{
    width: 100%;
    height: 55px;
    border: none;
    cursor: pointer;
}

.quote-badge{
    background:#fff;
    color:#000;
    padding:12px 35px;
    border-radius:30px 30px 0 0;
    font-weight:600;
    display:inline-block;
    margin-top: -15px;
}

@media(max-width:991px){
    .hero-quote-form{
        margin-top: 30px;
    }
}