@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
                SECTION
========================================================= */

.ttp-policy-section{

    padding:
        110px 0;

    background:
        #f6fafc;

    font-family:
        'Outfit',
        sans-serif;

}

/* =========================================================
                CONTAINER
========================================================= */

.ttp-policy-container{

    width: 100%;

    max-width: 1050px;

    margin: auto;

    padding: 0 28px;

}

/* =========================================================
                HERO
========================================================= */

.ttp-policy-hero{

    text-align: center;

    margin-bottom: 70px;

}

.ttp-policy-hero span{

    display: inline-block;

    margin-bottom: 18px;

    color:
        #044569;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.ttp-policy-hero h1{

    color:
        #102131;

    font-size:
        clamp(52px, 7vw, 90px);

    line-height: 1;

    letter-spacing: -4px;

    font-weight: 800;

    margin-bottom: 24px;

}

.ttp-policy-hero p{

    color:
        #647381;

    font-size: 16px;

    line-height: 1.9;

}

/* =========================================================
                CONTENT
========================================================= */

.ttp-policy-content{

    display: flex;

    flex-direction: column;

    gap: 40px;

}

/* =========================================================
                NOTICE
========================================================= */

.ttp-policy-notice{

    padding:
        24px 28px;

    border-radius: 20px;

    background:
        rgba(4,69,105,0.05);

    color:
        #647381;

    font-size: 14px;

    line-height: 1.9;

}

/* =========================================================
                BLOCK
========================================================= */

.ttp-policy-block{

    padding-bottom: 40px;

    border-bottom:
        1px solid rgba(4,69,105,0.08);

}

/* =========================================================
                TITLE
========================================================= */

.ttp-policy-block h2{

    color:
        #102131;

    font-size: 34px;

    line-height: 1.2;

    letter-spacing: -1px;

    font-weight: 700;

    margin-bottom: 24px;

}

/* =========================================================
                TEXT
========================================================= */

.ttp-policy-block p{

    color:
        #647381;

    font-size: 15px;

    line-height: 2;

    margin-bottom: 18px;

}

/* =========================================================
                LIST
========================================================= */

.ttp-policy-block ul{

    padding-left: 18px;

}

.ttp-policy-block ul li{

    color:
        #647381;

    font-size: 15px;

    line-height: 2;

    margin-bottom: 8px;

}

/* =========================================================
                TABLE
========================================================= */

.ttp-policy-table{

    border:
        1px solid rgba(4,69,105,0.08);

    border-radius: 22px;

    overflow: hidden;

}

/* ROW */

.ttp-policy-row{

    display: grid;

    grid-template-columns:
        280px
        1fr;

}

.ttp-policy-row:not(:last-child){

    border-bottom:
        1px solid rgba(4,69,105,0.08);

}

/* HEAD */

.ttp-policy-row.head{

    background:
        #f7fbfd;

}

/* COLUMN */

.ttp-policy-row div{

    padding:
        20px 24px;

    color:
        #647381;

    font-size: 14px;

    line-height: 1.9;

}

.ttp-policy-row.head div{

    color:
        #102131;

    font-weight: 700;

}

/* =========================================================
                CONTACT
========================================================= */

.ttp-policy-contact{

    padding:
        40px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #044569,
            #0b5c89
        );

}

/* LABEL */

.ttp-policy-contact span{

    display: inline-block;

    margin-bottom: 16px;

    color:
        rgba(255,255,255,0.72);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* TITLE */

.ttp-policy-contact h2{

    color:
        #ffffff;

    font-size: 44px;

    line-height: 1.1;

    letter-spacing: -2px;

    font-weight: 700;

    margin-bottom: 20px;

}

/* TEXT */

.ttp-policy-contact p{

    color:
        rgba(255,255,255,0.82);

    font-size: 15px;

    line-height: 2;

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:768px){

    .ttp-policy-section{

        padding:
            90px 0;

    }

    .ttp-policy-container{

        padding: 0 20px;

    }

    .ttp-policy-row{

        grid-template-columns: 1fr;

    }

}

@media(max-width:500px){

    .ttp-policy-section{

        padding:
            80px 0;

    }

    .ttp-policy-container{

        padding: 0 16px;

    }

    .ttp-policy-hero h1{

        font-size: 44px;

        letter-spacing: -2px;

    }

    .ttp-policy-block h2{

        font-size: 28px;

    }

    .ttp-policy-contact{

        padding: 24px;

        border-radius: 22px;

    }

    .ttp-policy-contact h2{

        font-size: 32px;

    }

}