.privacy{
    display: flex;
    justify-content: center;

    margin-top: 100px;

    position: relative;

    width: 100%;
}

.privacy__container {
    width: 54.6875%;
}

.privacy__bg{
    position: absolute;
    top: -100px;
    right: 0;

    opacity: 0.2;
    z-index: -4;
}


.privacy__container h1{
    font-family: 'bebasneue';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    
    letter-spacing: 0.642005px;
    text-transform: uppercase;
    
    color: #FFFFFF;
}

.privacy__container p{
    font-family: 'Segoe UI';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    
    color: #FAFAFA;

    margin-top: 36px;
}

@media screen and (max-width: 1400px){
    .privacy__container{
        width: 80%;
     }
}


@media all and (max-width: 800px) {
    .privacy__bg{
        display: none;
    }
    
}

