/* custom font  */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/*@font-face {*/
/*    font-family: 'dearheart';*/
/*    src: url('fonts/dearheart.woff2') format('woff2'),*/
/*        url('fonts/dearheart.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/

/* whatsapp style*/

.watsup-fixed {
  bottom: 40px;
  left: 40px;
  position: fixed;
  z-index: 9999;
}

.watsup-fixed a {
  position: relative;
  z-index: 99;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: pulsee;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}

.watsup-fixed a::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #49b15d;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.watsup-fixed img {
  max-width: 22px;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes pulsee {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* why us style*/

.why-us-block ul {
  display: block;
  margin-bottom: 50px;
  padding: 0;
}

.why-us-block ul li {
  color: #000000;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 30px;
  list-style: none;
  position: relative;
}

.why-us-block ul li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #062ab6;
}



ul.list-ul {
  display: block;
  margin-bottom: 50px;
  padding: 0;
}

ul.list-ul li {
  color: #7E7F82;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-left: 30px;
  list-style: none;
  position: relative;
}

ul.list-ul li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #062ab6;
}



/* form validation */

#contactForm label {
  display: none !important;
}

#contactForm label.error {
  color: #ff5656;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
input.error {
  border-bottom: 2px solid red !important;
}

div#formResult {
  margin-top: 30px;
}

div#formResult .form-error {
  background: #fbdfdf;
  color: rgb(209, 48, 48);
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
}

div#formResult .form-success {
  background: #dffbdf;
  color: green;
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
}
