/* policies styling */

.policy_sect1{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 400px;
    padding: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy_sect1_content{
    width: fit-content;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    color: var(---background);
    font-family: var(---font);
}

.policy_sect1_content h1{
    font-size: 2.5rem;
    font-weight: 600;
    margin: 10px;
    padding: 0;
}



.content_sect{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    height: fit-content;
    color: var(---text_color);
    font-family: var(---font);
    background: var(---background_sect);
}

.update-date{
    font-size: 0.90rem;
    box-sizing: border-box;
    color: var(---text_light);
    font-weight: 500;
}

.content{
    width: 85%;
    height: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    margin: auto auto;
}

.content h2{
    font-size: 2.3rem;
    box-sizing: border-box;
    overflow: hidden;
    font-weight: 700;
}

.content p{
    font-size: 15px;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 1.8rem;
    letter-spacing: .5px;
    font-weight: 500;
    opacity: .8;
}

.content h3{
    font-size: 1.7rem;
    box-sizing: border-box;
    overflow: hidden;
    font-weight: 700;
}

.content ul{
    font-size: 15px;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 1.8rem;
    letter-spacing: .5px;
    font-weight: 500;
    opacity: .8;
}

.content p a{
    color: var(---button_background);
    font-size: 15px;
    box-sizing: border-box;
}

@media screen and (max-width:1000px) {
    .content{
        width: 95%;
    }
}

@media screen and (max-width:750px) {
    .policy_sect1{
        min-height: 250px;
    }
    .policy_sect1_content h1{
        font-size: 2rem;
    }
    .content{
        width: 100%;
    }

    .content h2{
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .content h3{
        font-size: 1.3rem;
        line-height: 2rem;
    }
    .content p{
        font-size: 14px;
        line-height: 1.7rem;
    }
    .content ul{
        font-size: 14px;
        line-break: 1.7rem;
    }
    .content p > a{
        font-size: 14px;
    }
}

@media screen and (max-width:400px) {
    .content_sect{
        padding: 20px 10px !important;
    }
}