@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

*{
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

body{
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
}

.header--thank{
    display: flex;
    justify-content: center;

    padding-top: 30px;
    padding-bottom: 30px;

    width: 100%;

    background-color: #c0c0c0;
}

.privacy{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    padding-top: 100px;
    padding-bottom: 100px;

    width: 100%;

    background-color: #f9f9f9;
}

.privacy__container{
   padding-left: 357px;
   padding-right: 317px;
}

.privacy__container h1{
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;

    color: #000000;

    margin-top: 36px;
}

.privacy__container p{
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;

    color: #000000;

    margin-top: 36px;
}

.privacy-footer{
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #c0c0c0;

    padding-top: 30px;
    padding-bottom: 30px;

}

.footer__button-back{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 150px !important; 
    height: 60px;

    font-weight: 700;
    background-color: #1512b8;
    color: #fff;

    border-radius: 30px;
}

.footer__button-back:hover{
    background-color: #070577;

    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}


@media screen and (max-width: 1400px){
    .privacy__container{
        padding-left: 10%;
        padding-right:  10%;
     }
}

@media screen and (max-width: 991px){
    .privacy{
        padding-top: 50px;
    }
}

@media screen and (max-width: 768px){
    .privacy__container p{
        font-size: 14px;
        line-height: 20px;
    }
}

@media screen and (max-width: 530px){
    .privacy{
        padding-top: 16px;
    }

    .privacy__container{
        padding-left: 16px;
        padding-right: 16px;
    }
}


@media screen and (max-height: 800px) and (min-width: 991px){
    .privacy{
        padding-top: 50px;
    }
}
