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

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

:root {
  --primary: #ffffff;
  --secondary: #155439;
  --orange: #fb7c35;
  --para: #222222;
}

/* Nunito for legal body text */
.licence-desc p,
.licence-desc ul li {
  font-family: 'Nunito', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.section-privacy {
  background-image: url("../Assets/Images/privacypolicy-bg.jpg");
  width: 100%;
  height: 100%;
  padding: 150px 0 100px 0;
  background-size: 100% 100%;
}

.section-licence {
  padding: 50px 0;
  background: #f5f5f5;
}

.licence-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
}

.licence-heading h2 {
  color: var(--secondary);
}

.licence-desc p {
  color: var(--para);
}

.mt-40 {
  margin-top: 40px !important;
}

@media screen and (max-width: 768px) {
  .privacy-heading h2 {
    font-size: 45px !important;
    line-height: 1.2;
  }

  .privacy-desc p {
    font-size: 26px !important;
    line-height: 1 !important;
  }

  .licence-desc p {
    font-size: 26px !important;
    line-height: 1 !important;
  }

  .licence-heading h2 {
    font-size: 35px !important;
  }

  .mt-40 {
    margin-top: 20px !important;
  }

  .licence-desc ul li {
    font-size: 26px !important;
    line-height: 1 !important;
  }

}

@media screen and (max-width: 400px) {
  .section-privacy {
    padding: 100px 0;
  }

  .privacy-heading h2 {
    font-size: 40px !important;
  }

  .licence-content {
    padding: 15px;
  }
}

@media screen and (max-width: 600px) {
  .licence-content {
    padding: 0px 15px;
  }

  .licence-heading h2 {
    font-size: 30px !important;
  }
}