/*#region Fonts*/

@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=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");

/*#endregion*/

/*#region General*/

* {
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: "Open Sans", sans-serif;
  color: white;
  min-height: 100vh;
  padding-bottom: 80px;
  background-color: black;
}

page{
  min-height: 100vh;
  position: relative;
  background-color: #303030 !important;
}

.page.is-active {
  pointer-events: all;
  opacity: 1 !important;
  background-color: #383838 !important;
}

#content-wrap{
  padding-bottom: 80px;
  min-height: 100vh;
  background-color: #383838 !important;
}

#privacyPolicyTitle{
  color: #f2771a;
}

/*#endregion*/

/*#region Media Breakpoint*/

@media only screen and (max-width: 800px) {
  h2 {
    font-size: clamp(40px, 10vw, 60px);
  }
}

@media only screen and (max-width: 400px) {
  h2 {
    font-size: clamp(30px, 12vw, 60px);
  }

  .links {
    padding-top: 30px;
  }

  img {
    width: 38px;
    height: 38px;
  }
}

/*Small devices (landscape phones, 576px and up)*/
@media (max-width: 768px) { 
    #privacyPolicyTitle{
      font-size: 2rem;
    }
 }

/*#endregion*/
