* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/portal/home/resources/assets/privacy_background.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.content {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh !important;
    padding: 20px;
}

.text-box {
    max-width: 55%;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-color: grey transparent;
    margin: 0 0 0 5%;
}

.spacing-box{
    width: 40%;
}


h2 {
    font-size: 24px;
    color:#2C537F;
    margin-bottom: 20px;
}


p:not(.switch-language p, .item p, .consent-banner-text) {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}


.text-box::before, .text-box::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    pointer-events: none;
}


.text-box::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

.scroll-container{
    display: none !important;
}


@media (max-width: 1024px){
    .content {
        width: 80%;
    }
    
    .text-box {
        max-width: 100%;
        padding: 0 10%;
        margin: 0;
    }
    
    .spacing-box{
       display: none;
    }
}
  
@media (max-width: 440px){
    .content {
        width: 90%;
        height: 85vh !important;
    }
    
    .text-box {
        max-width: 100%;
        padding: 0 5%;
        margin: 0;
        max-height: 65vh;
    }
    
    .spacing-box{
       display: none;
    }
    .subtitle-privacy {
        font-size: 16px;
    }
    
}

@media(max-height: 700px) and (min-width: 600px){
    .text-box {
        max-height: 45vh;
    }
}

@media (max-width: 480px){
    body{
        background-position: 67%;
    }
}