@media screen and (min-width: 1080px) {
	
    /***** Structure *****/
    .legal {
        position: relative;
        padding: 50px 15%;
    }
    .legal {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .legal div {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .legal div div {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /***** Text *****/
    .legal h2, .legal h6  {
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #fff;
    }
    .legal h2 {
        font-family: 'title-font';
        font-size: 28px;
    }
    .legal h6 {
        font-family: 'content-font';
        font-size: 12px;
        font-weight: 100;
    }
    .legal h3 {
        font-family: 'bold-font';
        font-size: 18px;
        font-weight: 400;
        text-align: left;
        text-transform: uppercase;
        line-height: 18px;
        letter-spacing: 4px;
        color: #fff;
    }
    .legal p, .legal ul {
        font-family: 'content-font';
        font-size: 14px;
        font-weight: 400;
        text-align: justify;
        line-height: 23px;
        color: #fff;
    }
    .legal p b {
        font-weight: 600;
    }
    .legal ul {
        text-align: left;
    }
    .legal a {
        font-weight: 600;
        color: var(--secondary);
    }
    .legal a:hover {
        text-decoration: underline !important;
    }

    /***** Tab *****/
    .legal table {
        background-color: #00000020;
        border-radius: 5px;
        padding: 20px;
    }
    .legal table tr {
        background-color: var(--primary);
    }
    .legal table tr th {
        padding: 10px;
    }
    .legal table tr th {
        font-family: 'content-font';
        font-size: 14px;
        font-weight: 400;
        text-align: justify;
        line-height: 23px;
        color: #fff;
    }
    
        

}