/* ================================================================

	STATS

================================================================ */

.stats .stt-con {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px -5px rgba(0,0,0,.7);
}

.stats .stt-btns {
    margin-top: 30px;
}

.stats .stt-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.stats .stt-stt {
    display: flex;
    column-gap: 40px;
    margin-top: 40px;
}

.stats .stt-stt-num {
    font-size: 40px;
    font-weight: 700;
}

.stats .stt-stt-txt {
    font-size: 13px;
}

.stats .stt-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}



/* ================================================================

	RESPONSE TABLET

================================================================ */

@media only screen and (min-width: 768px) {

    .stats .stt-con {
        max-width: 500px;
        padding: 20px 30px;
    }

    .stats .stt-h,
    .stats .stt-p {
        text-align: left;
    }

    .stats .stt-btns {
        display: flex;
        column-gap: 10px;
    }

    .stats .stt-stt-num {
        font-size: 50px;
    }
}



/* ================================================================

	RESPONSE LAPTOP

================================================================ */

@media only screen and (min-width: 1200px) {

    .stats,
    .stats .stt-bg {
        height: 700px;
    }

    .stats .stt-bg {
        max-width: 1440px;
        left: calc(50% - 720px);
        border-radius: 20px;
    }

    .stats .stt-con {
        max-width: 540px;
        padding: 40px;
    }

    .stats .stt-btn {
        width: auto;
        padding-inline: 30px;
    }

    .stats .stt-stt {
        column-gap: 60px;
    }

    .stats .stt-stt-num {
        font-size: 52px;
    }
}



/* ================================================================

	RESPONSIVE

================================================================ */

@media only screen and (min-width: 1600px) {

    .stats .container {
        width: 1200px;
    }
}