@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Fasthand&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


html {
  scroll-behavior: smooth;
}


.roboto {
  font-family: "Roboto", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.encode {
  font-family: "Encode Sans Semi Condensed", sans-serif;
}

.fasthand {
  font-family: "Fasthand", cursive;
}

.frank {
  font-family: "Frank Ruhl Libre", serif;
}

.lora{
    font-family: "Lora", serif;
}

.inter{
    font-family: "Inter", sans-serif;
}

/* <-- Common Color Start --> */

/* .text-orange {
  color: #C15427;
}

.bg-orange {
  background-color: #C15427;
} */

/* <-- Common Color End --> */


/* <-- Text Gradient Color Start --> */

.gradient-border-box {
  position: relative;
  background-clip: padding-box;
  border-radius: 0.5rem;
  padding: 0.2rem;
  border: 4px solid transparent; /* This creates the space for the pseudo-element to show through */
}

.gradient-border-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -4px; /* Matches the border-width to make the gradient appear */
  border-radius: inherit;
  background: linear-gradient(
    to right,
    #ffb700,
    #2a7aa4
  ); /* The gradient colors from the image */
}

.schedule {
  box-shadow: 0px 5px 0px #008e31;
  /* box-shadow: 3px 3px 0px #008e31; */
}

/* <-- Text Gradient Color End --> */


.random-boxshadow{
   box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.072);
}


/* Simple spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader {
  border-width: 4px;
  border-color: #ccc transparent #ccc transparent;
  animation: spin 1s linear infinite;
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 33px;
  height: 33px;
}


@media (max-width:575px) {
  .backbone-industrial {
    line-height: 50px !important;
  }
}