@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
                SECTION
========================================================= */

.ttc-section{

    padding:
        110px 0;

    background:
        #f6fafc;

    font-family:
        'Outfit',
        sans-serif;

}

/* =========================================================
                CONTAINER
========================================================= */

.ttc-container{

    width: 100%;

    max-width: 1050px;

    margin: auto;

    padding: 0 28px;

}

/* =========================================================
                HERO
========================================================= */

.ttc-hero{

    text-align: center;

    margin-bottom: 70px;

}

.ttc-hero span{

    display: inline-block;

    margin-bottom: 18px;

    color:
        #044569;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.ttc-hero h1{

    color:
        #102131;

    font-size:
        clamp(52px, 7vw, 90px);

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 800;

    margin-bottom: 24px;

}

.ttc-hero p{

    color:
        #647381;

    font-size: 16px;

    line-height: 1.9;

}

/* =========================================================
                CONTENT
========================================================= */

.ttc-content{

    display: flex;

    flex-direction: column;

    gap: 40px;

}

/* =========================================================
                NOTICE
========================================================= */

.ttc-notice{

    padding:
        24px 28px;

    border-radius: 20px;

    background:
        rgba(4,69,105,0.05);

    color:
        #647381;

    font-size: 14px;

    line-height: 1.9;

}

/* =========================================================
                BLOCK
========================================================= */

.ttc-block{

    padding-bottom: 40px;

    border-bottom:
        1px solid rgba(4,69,105,0.08);

}

/* =========================================================
                TITLE
========================================================= */

.ttc-block h2,
.ttc-highlight h2{

    color:
        #102131;

    font-size: 34px;

    line-height: 1.2;

    letter-spacing: -1px;

    font-weight: 700;

    margin-bottom: 24px;

}

/* =========================================================
                TEXT
========================================================= */

.ttc-block p,
.ttc-highlight p{

    color:
        #647381;

    font-size: 15px;

    line-height: 2;

    margin-bottom: 18px;

}

/* =========================================================
                LIST
========================================================= */

.ttc-block ul,
.ttc-highlight ul{

    padding-left: 18px;

}

.ttc-block ul li,
.ttc-highlight ul li{

    color:
        #647381;

    font-size: 15px;

    line-height: 2;

    margin-bottom: 8px;

}

/* =========================================================
                HIGHLIGHT
========================================================= */

.ttc-highlight{

    padding:
        38px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #044569,
            #0b5c89
        );

}

.ttc-highlight 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;

}

.ttc-highlight h2{

    color:
        #ffffff;

}

.ttc-highlight p,
.ttc-highlight ul li{

    color:
        rgba(255,255,255,0.82);

}

/* =========================================================
                CONTACT
========================================================= */

.ttc-contact{

    padding:
        40px;

    border-radius: 30px;

    background:
        #ffffff;

    border:
        1px solid rgba(4,69,105,0.06);

    box-shadow:
        0 15px 40px rgba(4,69,105,0.05);

}

.ttc-contact span{

    display: inline-block;

    margin-bottom: 16px;

    color:
        #044569;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.ttc-contact h2{

    color:
        #102131;

    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -2px;

    font-weight: 700;

    margin-bottom: 20px;

}

.ttc-contact p{

    color:
        #647381;

    font-size: 15px;

    line-height: 2;

}

/* =========================================================
                RESPONSIVE
========================================================= */

@media(max-width:768px){

    .ttc-section{

        padding:
            90px 0;

    }

    .ttc-container{

        padding: 0 20px;

    }

}

@media(max-width:500px){

    .ttc-section{

        padding:
            80px 0;

    }

    .ttc-container{

        padding: 0 16px;

    }

    .ttc-hero h1{

        font-size: 44px;

        letter-spacing: -2px;

    }

    .ttc-block h2,
    .ttc-highlight h2{

        font-size: 28px;

    }

    .ttc-highlight,
    .ttc-contact{

        padding: 24px;

        border-radius: 22px;

    }

    .ttc-contact h2{

        font-size: 32px;

    }

}