/* header section */

.privacy-header .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-header .container h1 {
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 88px;
    letter-spacing: -3.2px;
    text-align: center;
    padding: 0 0 24px 0;
}


.privacy-header .privacy-quote {
    color: #fff;
    font-size: calc(18rem / 16);
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    opacity: 0.6;
    max-width: 800px;
}

@media screen and (max-width: 1024px) {
    .privacy-header .container {
        padding: 50px 16px;
        align-items: start;
    }

    .privacy-header .container h1 {
        font-size: calc(40rem / 16);
        font-style: normal;
        font-weight: 700;
        line-height: 40px;
        letter-spacing: -1.2px;
        text-align: left;
        padding: 0 0 10px 0;
    }

    .privacy-header .privacy-quote {
        font-size: 1rem;
        line-height: 24px;
        text-align: left;
    }

}


/* content section */

.privacy-content h1, 
.privacy-content h2, 
.privacy-content h3 {
    padding: 48px 0 0 0;
} 


.privacy-content .container {
    max-width: 1440px;
    margin: 80px auto;
}

.privacy-content .container .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.privacy-content h1 {
    color: #111;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -1.92px;
    padding-bottom: 24px;
}

.privacy-content h2 {
    color: #111;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
    padding-bottom: 16px
}

.privacy-content h3 {
    color: #111;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 125% */
    letter-spacing: -0.64px;
    padding-bottom: 16px;
    padding-top: 24px;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-content ul li {
    position: relative;
    padding-left: 1.8em;
}

.privacy-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;      
    height: 8px;
    background-color: black;
}

.privacy-content ol {
  list-style: none;
  padding-left: 0;
  counter-reset: my-counter;
}

.privacy-content ol li {
  position: relative;
  padding-left: 1.8em;
  counter-increment: my-counter; /
}

.privacy-content ol li::before {
  content: counter(my-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: black;
  text-align: right;
}

.privacy-content p, .privacy-content li  {
    color: #111;
    font-size: calc(18rem / 16);
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.18px;
}

@media screen and (max-width: 1024px) {
    .privacy-content h1, 
    .privacy-content h2, 
    .privacy-content h3 {
        padding: 50px 0 0 0;
    }
    
    .privacy-content .container {
        margin: 0;
        padding: 0 16px 50px 16px ;
    }

    .privacy-content h1 {
        font-size: calc(40rem / 16);
        line-height: 48px;
        letter-spacing: -1.6px;
        padding-bottom: 25px;
    }

    .privacy-content h2 {
        font-size: calc(24rem / 16);
        line-height: 32px;
        letter-spacing: -0.48px;
        padding-bottom: 10px;
    }

    .privacy-content p, .privacy-content li  {
        font-size: 1rem;
        line-height: 24px;
        letter-spacing: -0.16px;
    }

}