@import "/_assets/styles/global.css";

main{
    padding: 0px;
}

.privacy-policy__header{
    width: 100%;
    /* height: 60px; */
    border-bottom: 1px solid #cecece;
    padding: 16px;

    display: flex;
    justify-content: center;
}

.privacy-policy__header img{
    width: 150px;
}

.privacy-policy__container h1{
    text-align: center;
    font-size: 35px;
    color: var(--dark-grey);
    font-weight: 700;

    margin-top: 40px;
    margin-bottom: 40px;
}

.privacy-policy__container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.privacy-policy__content{
    color: var(--font);
    width: 70%;
    padding: 16px 30px;
}

.privacy-policy__content table{
    color: var(--font);
    border: 1px solid var(--dark-grey);
}

.privacy-policy__content a{
    color: var(--font);
}

.privacy-policy__content p{
    margin-bottom: 16px;
}

.medium_margin{
    margin-bottom: 32px !important;
}

@media(max-width: 750px){
    .privacy-policy__content{
        width: 100%;
        padding: 16px 30px;
    }
}