:root {
	--card-border: #d7e0ea;
	--text-primary: #142033;
	--text-muted: #66758a;
	--transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html, body{
    padding: 0!important;
    margin: 0!important;
    height: 100%;
}
body {
	background:#fff url(../images/bg.jpg) center bottom no-repeat;
	background-attachment: fixed;
	background-size: cover;
	color: var(--text-primary);
	font-family: 'Roboto', sans-serif !important;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.terms-container{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 0;
    box-sizing: border-box;
    text-align: center;
    flex: 1;
}   
  .terms-container h1 {
      margin: 0 30px 20px;
      font-size: 40px;
  }
  .terms-container hr{
    margin: 10px auto;
    padding: 0 10px;
    width: calc(100% - 20px);
    height: 1px;
    border: 0;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.85) 50%,
      transparent 100%
    );
  }
  .tc-box {
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      padding: 30px;
      margin: 0 0 20px;
  }
  
  .tc-box h2 {
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 20px;
      border-bottom: 1px dashed #555;
      padding-bottom: 10px;
  }
  .tc-box h4 {
      font-size: 24px;
      margin: 0 0 20px;
  }
  .tc-box h5 {
      font-size: 16px;
      margin: 0 0 20px;
  }
  
  .tc-box p {
      font-size: 18px;
      line-height: 30px;
      margin-bottom: 20px;
      /* word-break: break-all */
  }
  .tc-box p a{color: #000;}
  .tc-box ul{
    margin: 20px 30px;
  }
  .tc-box li{
    font-size: 16px;
    margin: 10px;
  }


  .site-footer {
	border-top: 1px solid rgba(20, 32, 51, 0.08);
	background-color: rgba(0, 0, 0, 0.82);
	padding: 32px 0;
	text-align: center;
	font-size: 14px;
	color: #fff;
	margin-top: auto;
}

.site-footer a {
	color: #fff;
	text-decoration: underline;
	transition: var(--transition-standard);
}

.site-footer a:hover {
	text-decoration: none;
}

