

body {
  font: 1rem/1.7 "Inter", sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrap {
  position: relative;
}

::-moz-selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

::selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

a {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  color: var(--bs-primary);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
.bg-main{
  background: #007DBD;
}
.text-main{
  color: #007DBD;
}

.container {
  max-width: 1140px;
}
.list-none{
  list-style: none;
}
.w-22px{
  width: 22px;
}
.fs-15{
  font-size: 15px;
}
.fs-14{
  font-size: 14px;
}
.fs-13{
  font-size: 13px;
}
.pl-0{
  padding-left: 0 !important;
}
.br-5{
  border-radius: 5px;
}

 /*====================
             Fixed Call Button 
          ===========================*/
      
      .callStringNew {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  background-color: #0a6fa9 !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.callStringNew.footerNumShow {
  display: flex;
}

.callStringNew .rightCall {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding-right: 7px;
  padding-left: 47px;
}

.callStringNew .fulclk {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.callStringNew a {
  padding-top: 2px;
  color: #fff;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  display: block;
  padding-bottom: 1px;
  line-height: 10px;
  position: relative;
  top: -1px;
}

        .ringing-icon {
  animation: ring 1s infinite;
  transform-origin: center;
  display: inline-block;
}

@keyframes ring {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(-5deg); }
  70% { transform: rotate(2deg); }
  80% { transform: rotate(-2deg); }
  90% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}





