/* Poppins */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Inter */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

p {
  font-family: "Poppins", sans-serif;
}

textarea {
  height: auto !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
header.scrolled {
  background-color: white;
}
header .logo {
  width: 13vw;
}
header .nabh-logo {
  width: 3vw;
}
@media (max-width: 768px) {
  header .logo {
    width: 40vw;
  }
  header .nabh-logo {
    width: 10vw;
  }
}

.section-title {
  font-weight: bold;
}

.flip-horizontal {
  transform: scaleX(-1);
  display: inline-block;
}

footer {
  background-color: #333;
}
footer .footer-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
footer .footer-links ul li {
  display: inline-block;
}
footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
footer .footer-links ul li a:hover {
  color: white;
}
footer .footer-links ul li:not(last-child)::after {
  content: "|";
  color: white;
  margin: 0 1.5rem;
}
footer .footer-links.social ul li a {
  font-size: 1.2rem;
}
footer .footer-links.social ul li:not(last-child)::after {
  content: "";
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
  footer .footer-links ul {
    text-align: start;
  }
  footer .footer-links ul li:not(last-child)::after {
    margin: 0 0.5rem;
  }
}

.bottom-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 100px;
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  z-index: 999;
  bottom: -40%;
}
.bottom-bar .price {
  font-weight: bold;
}
.bottom-bar .btn-cta {
  border: none;
  background-color: #4374b3;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}
.bottom-bar .btn-cta:hover {
  opacity: 0.9;
}
.bottom-bar.visible {
  bottom: 3%;
}

.bottom-bar.desktop {
  width: 80%;
  padding: 1.5rem 2rem;
}
.bottom-bar.desktop .price {
  font-size: 1.5rem;
}
.bottom-bar.desktop .btn-cta {
  padding: 1rem 2rem;
}

.bottom-bar.mobile {
  width: 95%;
  padding: 20px 15px;
  border-radius: 50px;
}
.bottom-bar.mobile .price {
  font-size: 1.25rem;
}
.bottom-bar.mobile .btn-cta {
  padding: 0.8rem 1.5rem;
}
.bottom-bar.mobile.visible {
  bottom: 2%;
}/*# sourceMappingURL=main.css.map */