:root {
    --primary-color: #e08337;
    --primary-color-light: #f0ab3c;
    --primary-color-dark: #965520;
    --secondary-color: #71bb56;
    --secondary-color-light: #73be57;
    --secondary-color-dark: #5a8f46;
    --third-color: #856d3e;
    --fourth-color: #5a8f46;
    --fourth-color-light: #5adb3a;
    --contrast-color: #20399d;
    --text-color: #231F20;
    --light-color: #F1F1F1;
}

.mainText {
    margin-top: -6em;
}

@media (max-width: 599px) {
    .mainText {
        margin-top: -4.3em;
    }
}

@media (max-width: 451px) {

    .row>* {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

.strip3 {
    padding: 0;
    color: #fff;
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .strip3 {
        margin-bottom: 0px;
    }
}

ul.strip3-list {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: no-wrap;
    margin: 0;
}

@media (max-width: 991px) {
    ul.strip3-list {
        padding-left: 0;
        gap: 20px;
    }
}

ul.strip3-list li {
    padding: 0 22px;
    position: relative;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    text-align: center;
    list-style: none;
    margin: 1rem 0;
}


@media (max-width: 991px) {
    ul.strip3-list li {
        font-size: 14px;
        line-height: 20px;
        padding: 0;
    }

    ul.strip3-list li:nth-child(1):after {
        display: block !important;
        height: 100%;
        top: 0;
        right: -20px;
    }
}

ul.strip3-list li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    height: 18px;
    background: #e6dede;
    width: 2px;
}

ul.strip3-list li:last-child::after {
    display: none;
}

ul.strip3-list li:nth-child(1):before {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 4px 0;
    width: 10px;
    height: 10px;
    background: #13ac41;
    border-radius: 50%;
    content: "";
    animation: fade 1s ease-in-out infinite;
}

@keyframes fade {
    0% {
        opacity: 100%;
    }

    50% {
        opacity: 30%;
    }

    70% {
        opacity: 100%;
    }

    100% {
        opacity: 100%;
    }
}

.hourglass {
    display: inline-block;
    vertical-align: middle;
    margin: -5px 8px 0 0;
    animation: rotateP 2.5s ease-in-out forwards infinite;
    max-width: 18px;
}

@keyframes rotateP {
    0% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clock {
    margin: 0 8px -5px 0;
    display: inline-block;
    animation: fade 1s ease-in-out infinite;
}

.timer {
    font-size: 1em !important;
    line-height: 1;
    font-weight: 600 !important;
    color: red !important;
    margin: 0.25em auto 0;
}


.offerExp {
    border-bottom: 4px solid red;
    color: #000;
    font-size: 1.5rem;
}

.up2bg {
    background:
        radial-gradient(ellipse at top center, #FFEB3B 0%, transparent 70%),
        radial-gradient(ellipse at bottom center, #FFEB3B 0%, transparent 70%),
        linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--primary-color) 45%, var(--third-color) 50%, var(--primary-color) 55%, var(--secondary-color) 60%, var(--primary-color));
}

.blinked-text {
    font-family: Arial, sans-serif;
    font-size: 3em;
    font-weight: bold;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        color: white;
        /* Cor inicial (vermelho) */
    }

    100% {
        color: red;
        /* Cor final (branco) */
    }
}