@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=PT+Sans:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;1,600&family=Rubik+Puddles&family=Source+Sans+Pro:wght@300&family=Ubuntu:ital,wght@0,300;0,400;0,500;1,300&display=swap");

* {
  /* font-family: "Noto Sans", sans-serif; */
  /* font-family: "Nunito", sans-serif; */
  font-family: "Poppins", sans-serif;
  /* font-family: "PT Sans", sans-serif; */
}
:root {
  --primary: #145a7c;
  --secondary: #837448;
}
/* Default styles for all devices */
h1, .h1 {
  font-size: 32px;
}

h2, .h2 {
  font-size: 28px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
}
.text-primary {
  color: var(--primary) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
  color: white !important;
}
.bg-red {
  background-color: #b44e5d !important;
  color: white !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-secondary-bright {
  color: #cdb263 !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
  color: white !important;
}
.bg-secondary-bright {
  background-color: #cdb263 !important;
  color: black !important;
}
.nav-link {
  color: #ffffff !important;
  font-size: 17px;
}
.nav-link.active {
  color: var(--primary) !important;
}
.navbar-brand img {
  max-height: 12vh;
}
.rounded-border {
  border-radius: 25px;
}
.border-dotted {
  border: 2px solid #837448;
  border-style: dashed;
}
/* floating icons */
.float_whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px;
  left: 20px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 27px;
  padding-top: 10px;
  box-shadow: 0 0 0 0 rgba(#5a99d4, 0.5);
  z-index: 1;
  animation: pulse 1.5s infinite;
}
.float_call {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  padding-top: 10px;
  left: 20px;
  background-color: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 27px;
  box-shadow: 0 0 0 0 rgba(#5a99d4, 0.5);
  z-index: 1;
  animation: pulse 1.5s infinite;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.text-justify {
  text-align: justify !important;
}

.rounded-pill-icon {
  height: 60px;
  width: 60px;
  display: block;
  padding: 13px 15px !important;
  float: left;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: relative;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.w-25rem {
  width: 25rem !important;
}
.text-center {
  text-align: center !important;
}
/* @media(min-width: ) */
.banner-div {
  max-height: 76vh;
}

.navbar-toggler {
  background-color: #fff !important;
  border-color: #fff !important;
}
.blog-img{
  max-height: 550px;
}

@media (max-width: 480px) {
  /* For h1 */
  h1 {
    font-size: 28px;
  }

  /* For h2 */
  h2 {
    font-size: 24px;
  }

  /* For h3 */
  h3 {
    font-size: 20px;
  }

  /* For h4 */
  h4 {
    font-size: 18px;
  }

  /* For h5 */
  h5 {
    font-size: 16px;
  }

  /* For h6 */
  h6 {
    font-size: 14px;
  }

  /* For p */
  p {
    font-size: 14px;
  }
  /* For h1 */
  .h1 {
    font-size: 28px;
  }

  /* For h2 */
  .h2 {
    font-size: 24px;
  }

  /* For h3 */
  .h3 {
    font-size: 20px;
  }

  /* For h4 */
  .h4 {
    font-size: 18px;
  }

  /* For h5 */
  .h5 {
    font-size: 16px;
  }

  /* For h6 */
  .h6 {
    font-size: 14px;
  }
  .blog-img{
    max-height: 350px;
    width: 100%;
  }
}
