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

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

header {
  background: rgb(3,15,33);
  background: -moz-linear-gradient(148deg, rgba(3,15,33,1) 0%, rgba(6,123,240,1) 100%);
  background: -webkit-linear-gradient(148deg, rgba(3,15,33,1) 0%, rgba(6,123,240,1) 100%);
  background: linear-gradient(148deg, rgba(3,15,33,1) 0%, rgba(6,123,240,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#030f21",endColorstr="#067bf0",GradientType=1);
  padding: 50px 0 40px;
}

.title {
  color: #fff;
  margin: 30px 0 0;
  font-size: 38px;
  font-weight: 500;
}

.terms-content {
  max-width: 900px;
  margin: 30px auto;
}

.text {
  font-size: 16px;
  font-weight: 400;
  color: #030f21;
  line-height: 28px;
  margin: 30px 0;
}

.list {
  padding-left: 25px;
}

.list p {
  font-size: 16px;
  font-weight: 400;
  color: #030f21;
  line-height: 28px;
  margin: 20px 0;
}

.list p > b {
  font-weight: 600;
}

footer {
  padding: 40px 0;
}

footer > .logo > hr {
  border-top: 2px solid #0665c5;
  margin-bottom: 20px;
}

footer > .logo {
  text-align: center;
}