@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  list-style: none;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.nav-link {
  border-radius: 20px;
  border: 1px solid #c2c2c2;
  margin: 5px 10px 5px 10px;
  padding: 5px 20px 5px 20px !important;
  font-weight: 500;
  color: #000 !important;
}
.bttn {
  background-color: #1F73DC;
  color: #ffffff;
  border-radius: 20px;
  padding: 6px 20px 6px 20px;
}
.navbar-nav .nav-link.active {
  background-color: #1F73DC;
  color: #fff !important;
}
.shadows {
  box-shadow: 1px 1px 9px 1px rgb(233, 232, 232);
}
.bg-black {
  background-color: #000;
}
.text-black{
    color: #000;
}
.round {
  border-radius: 20px !important;
}
.contain-h {
  height: 460px;
}
.hero-img {
  position: absolute;
  top: -102px;
}
.margin-top{
    margin-top: 90px;
}
.cards {
  padding: 10px 30px 10px 30px;
}
.card-para {
  font-size: 13px;
}
.price {
  font-size: 2.5rem;
  font-weight: bold;
}
.price .cents {
  font-size: 1.5rem;
  font-weight: normal;
}
.text-red{
    color: #1F73DC;
}
.font-14{
    font-size: 14px;
}
.font-45{
  font-size: 45px;
}
.font-30{
  font-size: 35px;
}
.card-grey{
    background-color: #F1F1F1;
}
.accordion-button:not(.collapsed)
 {
    color: #ffffff;
    background-color: #000;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-button::after {
    width: 1.50rem;
    height: 1.50rem;
    background-image: url("../images/plus.svg");
    background-size: 1.50rem;
}
.accordion-button:not(.collapsed)::after
 {
    background-image: url("../images/sub.svg");
    transform: rotate(-180deg);
 }
 .phone-call {
  width: 60px;
  height: 60px;
  right: 20px;
  bottom: 20px;
  background: #1F73DC;
  position: fixed;
  cursor: pointer;
  border-radius: 50%;
  z-index: 99;

}

.phone-call:before {
  position: absolute;
  content: " ";
  z-index: -1;
  top: -15px;
  left: -15px;
  background-color: #1F73DC;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes pulse {
  0% {
      -webkit-transform: scale(0);
      opacity: 0;
  }
  25% {
      -webkit-transform: scale(0.3);
      opacity: 1;
  }
  50% {
      -webkit-transform: scale(0.6);
      opacity: .6;
  }
  75% {
      -webkit-transform: scale(0.9);
      opacity: .3;
  }
  100% {
      -webkit-transform: scale(1);
      opacity: 0;
  }
}

@media screen and (min-width: 280px) and (max-width: 700px) {
  .hero-img {
    position: relative;
    top: 0px;
    height: auto !important;
  }
  .contain-h {
    height: auto;
  }
  .font-45{
    font-size: 30px;
  }
  .row-reverse{
    display: flex;
    flex-direction: column-reverse;
  }
}
