@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Ubuntu:ital,wght@0,400;1,300&display=swap');

/* Colors
PRIMARY COLOR   #E40024
TEXT COLORS     #08172B
*/

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

/* body {
    font-family: 'Ubuntu';
    font-size: 16px;
    line-height: 1.5;
} */



.h1 {
    font-family: 'Bebas Neue';
    font-size: 264px;
    font-style: bold;
    line-height: 100%;
    font-weight: 700;
    color: #c90220;

}

.lead {
    font-size: 0.75rem;
    margin: 11px 0;
}

.primary-text {
    color: #E40024;
}

.rapper {
    width: 100%;
}

.container {
    max-width: 350px;
    margin: 0 auto;
}

.nav {
    margin: 20px 0;
}

.showcase-content h1 {
    font-family: 'Ubuntu';
    font-size: 1.75rem;
}

.showcase-content h2 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.showcase-content .desc {
    font-size: 0.87rem;
}

.showcase-img .rapper {
    display: none;
}

.showcase-img .countdown {
    display: none;
}

.countdown {
    display: flex;
    justify-content: space-between;
    margin: 18px 0 36px 0;
}

.countdown h2 {
    font-size: 1.5rem;
}

.countdown p {
    font-size: 0.8125rem;
}

.day-container,
.hour-container,
.min-container,
.sec-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 70px;
    height: 70px;
    background: #D0DDE9;
    border-radius: 4px;
}

form.validate {
    margin: 11px 0;
}

.sbs {
    display: flex;
    justify-content: space-between;
}

.sbs input[type=text] {
    width: 170px;
    margin-bottom: 11px;
}

.input {
    display: inline-block;
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    background: #cad6e0;
    outline: none;
    border: none;
}

form.validate>.form-group {
    margin-bottom: 7px;
}

form.validate .fineprint {
    font-size: 0.56rem;
    margin-bottom: 20px;
}


form .btn {
    display: inline-block;
    font-family: 'Ubuntu';
    font-size: 16px;
    background-color: #E40024;
    color: #fff;
    width: 100%;
    margin: 10px 0 44px 0;
    padding: 15px 30px;
    border: none;
}

form .btn:hover {
    background-color: #c90220;
}

.footer {
    display: flex;
    justify-content: space-evenly;
    margin: 45px 0 49px 0;
}

.footer img {
    width: 90%;
}

/* Thank You Page */
.flex {
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding: 10rem 0;

}

.thankyou-card {
    background: #14253C;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.thankyou-card h1 {
    font-family: 'Ubuntu';
    font-size: 1.5rem;
    padding: 20px;
    line-height: 1.2em;
}

.arrows {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.thankyou-card .lead {
    font-size: 1.2rem;
    line-height: 1.9rem;
}


/* Tablet */
@media screen and (min-width: 768px) {
    .container {
        max-width: 650px;
    }

    .lead {
        font-size: 1.3rem;
    }

    .showcase-content h1 {
        font-size: 2.62rem;
    }

    .showcase-content h2 {
        font-size: 1.5rem;
    }

    .showcase-content .desc {
        font-size: 1.2rem;
    }

    .showcase-content .rapper {
        margin-top: 15px;
    }

    .sbs input[type=text] {
        width: 320px;
    }

    form.validate .fineprint {
        font-size: 0.75rem;
    }


}

/* Laptops */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1100px;
    }

    .showcase {
        display: flex;
    }

    /* Showcase content */
    .showcase-content {
        width: 60%;
    }

    .showcase-content .lead {
        font-size: 0.875rem;
    }

    .showcase-content .rapper {
        display: none;
    }

    .showcase-content .desc {
        font-size: 0.75rem;
    }

    .showcase-content h2 {
        font-size: 1rem;
    }

    /* Form */
    .sbs input[type=text] {
        width: 170px;
        justify-content: space-between;

    }

    /* Showcase image content  */
    .showcase-img {
        margin-left: 45px;
    }

    .showcase-img .rapper {
        display: inline;
    }

    .showcase-content .countdown {
        display: none;
    }

    .showcase-img .countdown {
        display: flex;
        justify-content: flex-end;
    }

    .showcase-img .day-container,
    .showcase-img .hour-container,
    .showcase-img .min-container,
    .showcase-img .sec-container {
        margin-left: 20px;
    }

    .footer {
        justify-content: flex-end;
        padding: 0;
    }


}