:root {
  --white: #ffffff;
  --black: #000000;
  --dark-grey: #4A4A4A;
  --primary-color: #091733;
  --yellow-color: #DAA520;
  --light-yellow-color: #F4F0E7;
  --heading-yellow-color: #DCC5A2;
  --dark-yellow-color: #B9A082;

}

/*---------- Privacy Policy start -----------*/

.privacy-policy hr {
    width: 1px;
    height: 35px;
    display: inline-block;
    background-color: var(--dark-grey);
}

table{
    border-collapse: separate !important;
    border-spacing: 0 60px;
    margin-top: -60px;
    margin-bottom: -60px;
}

table, tr, td{
    border: none;
    width: 100% !important;
}

table tr h2{
    font-size: 45px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 20px 0;
}

table tr h3{
    font-size: 32px;
    margin: 15px 0;
    font-weight: 400;
}

table tr h4{
    font-size: 24px;
    margin: 10px 0;
    font-weight: 400;
}

table tr a{
    color: #D9A346;
    word-break: break-all;
}

table tr ul{
    list-style-type: disc;
    margin: 15px 0;
    padding-left: 20px;
}

table tr{
    position: relative;
    margin-bottom: 50px;
    background-color: #F9F8F8;
}

table tr::before{
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background-color: #F9F8F8;
    z-index: -1;
}

table tr td{
        padding-right: 50px;
        padding-top: 50px;
        padding-bottom: 50px;
}

table tr td p{
    margin-top: 10px;
}


table tr h5{
        color: var(--heading-yellow-color);
    font-size: 101px;
    font-family: 'herr_von_muellerhoffregular';
    line-height: 35px;
    letter-spacing: 0;
}

table tr td{
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}



/*---------- Media Css Start -----------*/
@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 767px) {
    table{
        border-spacing: 0 75px;
        margin-top: -75px;
        margin-bottom: -75px;
    }


    table tr td h2{
        font-size: 30px;
        line-height: 33px;
    }

     table tr td h3{
        font-size: 25px;
        line-height: 33px;
    }

     table tr td h4{
        font-size: 20px;
        line-height: 30px;
    }
}