* {
    margin: 0;
    padding: 0;
  }
  html,
  body {
    height: 100%;
  }
  header {
    height: 65px;
    display: flex;
    align-items: center;
  }
  header .logo {
    margin-left: 25px;
  }
  header .logo img{
    height: 42px;
  }
  header nav ul {
    display: flex;
    list-style: none;
    height: 100%;
  }
  header nav ul li {
    height: 100%;
    margin: 0 25px;
  }
  header nav ul li a {
    text-decoration: none;
  }
  .privacy-content {
    padding: 10px 20px;
  }
  main {
    height: calc(100% - 130px);
  }
  .body {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .shadow {
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4); */
    z-index: 100;
    overflow: hidden;
  }
  .body .shadow .container {
    height: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    margin-top: 135px;
    /* align-items: center; */
    justify-content: center;
  }
 
  
  .body .shadow .container h1 {
    font-size: 3rem;
    font-weight: 400;
    padding: 0 0 10px 0;
  }
  .body .shadow .container p {
    
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 300;
  }
  .body .shadow .container .content_1{
    margin-bottom: 52px;
}

.m_h1 {
  margin-top: 60px;
}
.m_7 {
  margin-bottom: 25px;
}
.m_b {
  margin-bottom: 40px;
}
  footer {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    position: relative;
    bottom: 0;
  }
  footer a {
    text-decoration: none;
    /* float: right; */
  }
  footer span {
   margin-right:16px
  }
  @media screen and (max-width: 767px) {
    header .logo {
      margin-left: 10px;
    }
    header nav ul li {
      max-width: 60px;
      margin: 0 10px;
    }
  }