section.privacy-policy {
    min-height: calc(100vh - 52px);
    display: flex;
    align-items: center;

    padding: 0 12px;
}


.privacy-policy .container {
    position: relative;
    z-index: 1;
}


.privacy-policy .container::before {
    content: '';
    background: rgb(6, 141, 157, 0.45);
    filter: blur(108.5px);
    width: 186px;
    height: 186px;
    position: absolute;
    top: 208px;
    left: 7%;
    z-index: -1;
}

.privacy-policy.container::after {
    content: '';
    background: rgba(13, 34, 52, 0.35);
    filter: blur(108.5px);
    width: 186px;
    height: 186px;
    position: absolute;
    top: 70px;
    right: 0px;
    z-index: -1;
}

.jump_to_next {
    display: none;
}

.privacy-policy-content__container {
    padding: 0 12px;
}

.privacy-policy h6 {
    line-height: 26px;
    color: #068D9D;
}

.privacy-policy-content p {
    width: 100%;
}

.privacy-policy-content__paragraph__wrapper ul {
    list-style-type:square;
}

.privacy-policy-content__paragraph__wrapper ul li::marker {
    color: #068D9D;
}

.privacy-policy-content__paragraph__wrapper ul li {
    color: #1e1e1e;
}


.privacy-policy-content__paragraph__wrapper {
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;

    align-items: center;
}

.privacy-policy-content__paragraph__wrapper p {
    margin-bottom: 0;
}
.mt-70 {
    margin-top: 70px;
}

.mb-100 {
    margin-bottom: 100px;
}

.privacy-policy-content__paragraph a {
    color: #068D9D;
    text-decoration: none;
}

.privacy-policy-content__paragraph a:hover {
    color: #068D9D;
    text-decoration: underline;
}

.privacy-policy-content__paragraph ol li {
    margin-bottom: 1rem;
    font-weight: 300;
}

.privacy-policy-content__paragraph ul li {
    margin-bottom: 0.5rem;
}

@media only screen and (min-width: 768px) {
    section.privacy-policy {
        min-height: calc(100vh - 88px);
        display: flex;
        align-items: center;

        padding: 0px;
    }

    .privacy-policy .container::before {
        content: '';
        background: rgb(6, 141, 157, 0.45);
        filter: blur(108.5px);
        width: 186px;
        height: 186px;
        position: absolute;
        top: -208px;
        left: 7%;
        z-index: -1;
        -webkit-animation: hero_before_rotate 15s infinite linear;
        -moz-animation: hero_before_rotate 15s infinite linear;
        animation: hero_before_rotate 15s infinite linear;
    }

    .privacy-policy .container::after {
        content: '';
        background: rgba(13, 34, 52, 0.35);
        filter: blur(108.5px);
        width: 186px;
        height: 186px;
        position: absolute;
        top: 70px;
        right: -50px;
        z-index: -1;
        -webkit-animation: hero_after_rotate 15s infinite linear;
        -moz-animation: hero_after_rotate 15s infinite linear;
        animation: hero_after_rotate 15s infinite linear;
    }

    .jump_to_next {
        position: relative;
        display: flex;
        justify-content: end;

        margin-top: 0rem;
    }

    .privacy-policy-content__container {
        padding: 0px;
    }

    .privacy-policy-content p {
        width: 60%;
    }
}