/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global variables */
:root {
    --white-color: #fff;
    --black-color: #000;
    --blue-color: #0b0989;
    --red-color: #cc0000;
    --orange-color: #fa5a38;
}

/* Design */
body {
    font-family: "Lato", sans-serif;
}

p:not(footer p) {
    font-size: 24px;
}

.body-bgr {
    background: #F2F2F2 url(https://www.fixbadback.com/tsl/img/backpain_bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

.custom-bgr {
    background: #F2F2F2 url(https://www.fixbadback.com/tsl/img/backpain_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
    padding-bottom: 90px;
}


/* Headline Section */
.wait-title {
    font-family: "Roboto", sans-serif;
    font-size: 100px;
    color: var(--red-color);
    font-weight: 900;
    text-align: center;
    margin-top: 16px;
}

.main-title {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: var(--blue-color);
    font-size: 48px !important;
    text-align: center;
    /* margin-top: 40px; */
}

.timer {
    color: var(--orange-color);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
}

/* TSL Section */
.tsl-section {
    background-color: var(--white-color);
    max-width: 1140px !important;
    padding: 50px 65px;
    margin: 0 auto;
}

.mx-center {
    margin: 0 auto;
}

figcaption {
    text-align: center;
    font-size: 13px;
}

.title-above-button {
    font-size: 38px;
    text-align: center;
    font-weight: 700;
    margin-top: 10px;
}

.custom-list-item {
    margin-top: 35px;
}

.custom-list .custom-list-bullet,
.custom-list .custom-list-p {
    display: inline;
}

.custom-list-bullet {
    max-width: 40px;
}

.custom-list-p {
    font-size: 26px;
    font-weight: 700
}

.badge-p {
    font-size: 28px;
}

/* Text Transform */
.text-bold {
    font-weight: bold;
}

.text-italic {
    font-style: italic;
}

.text-strike {
    text-decoration: line-through;
}

.text-underline {
    text-decoration: underline;
}

/* Media Queries */
@media only screen and (max-width: 768px) {

    .body-bgr,
    .custom-bgr {
        background: var(--white-color);
    }
}

@media (max-width:420px) {
    .tsl-section {
        padding: 0px 50px;
    }
}

@media (max-width: 991px) {
    .wait-title {
        font-size: 90px;
    }

    .main-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .wait-title {
        font-size: 80px;
    }

    .title-above-button {
        font-size: 36px;
    }

    .custom-list-p {
        font-size: 24px;
    }

    .custom-list-bullet {
        width: 38px;
    }

    .badge-p {
        font-size: 26px;
    }
}

@media (max-wdith: 420px) {
    .wait-title {
        font-size: 65px;
    }

    .main-title {
        font-size: 32px;
    }

    .timer {
        font-size: 24px;
    }

    .custom-list-p {
        font-size: 22px;
    }

    .custom-list-bullet {
        width: 34px;
    }

    p:not(footer p) {
        font-size: 22px;
    }
}