.footerSection {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  background: #07038d;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
}
.actionBtnGroup {
  position: fixed;
  width: 100%;
  bottom: 0;
  display: none;
  height: 60px;
  z-index: 100000;
  background: #fff;
}
.actionBtnGroup a {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.actionBtnGroup a img {
  height: 26px;
}
.callBtn {
  background: #004c83;
  color: #fff;
}
.applyBtn {
  color: #fff;
  background: #e25525;
}
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}
.whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: whatsappBlink 1.8s infinite;
}
@keyframes whatsappBlink {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .footerSection {
    padding: 0 2.5%;
    font-size: 16px;
    line-height: 140%;
  }
}
@media screen and (max-width: 600px) {
  .footerSection {
    margin-bottom: 60px;
  }
  .actionBtnGroup {
    display: flex;
  }
  .whatsapp {
    position: fixed;
    right: 10px;
    bottom: 70px;
  }
}
@media screen and (max-width: 450px) {
  .actionBtnGroup a {
    font-size: 18px;
  }
  .actionBtnGroup a img {
    height: 24px;
  }
  .footerSection {
    font-size: 14px;
  }
}
