@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&display=swap");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
}

img {
  width: 100%;
  height: 100%;
}

section {
  padding: 100px 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 24px;
  margin: 0 auto;
}
.commonHeading h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 47px;
  color: #ffffff;
}
.commonBtn {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 24px;
  background: #ea860b;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.navLinks {
  display: flex;
  gap: 32px;
}
.mobile {
  display: none;
}
.navActive {
  color: #ea860b !important;
}
.small-container {
  max-width: 960px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.small-container {
  max-width: 960px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
  .commonHeading h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .commonBtn {
    font-size: 14px;
  }
  .mobile {
    display: block;
  }
}
