body {
    margin: 0;
    font-family: 'Urbanist', sans-serif;
    text-align: center;
}

h1,
h2 {
    margin: 0;
}

section {
    margin-bottom: 100px;
}

.title-heading {
    font-family: 'Playfair Display', serif;
}

/* NAVBAR */
nav {
    border-bottom: 1px solid rgba(243, 244, 246);
}

.nav-brand {
    color: black;
    margin: 0 auto;
    padding: 0.5rem;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

/* HERO */
#hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_container {
    display: flex;
}

.text_box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    text-align: left;
}

.tag_line {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -.03em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo_text {
    color: rgba(0, 0, 0, .8);
    font-size: 1.2rem;
    line-height: 1.75rem;
    font-weight: 400;
}

li {
    margin-bottom: 10px;
}

.sub_btn {
    color: white;
    border: 0px;
    border-radius: 0.375rem;
    font-size: 1.5rem;
    padding: 14px 30px;
    margin-top: 1.2rem;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.gradient_bg {
    content: "";
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    animation: animatedgradient-fac1f164 5s ease-in-out infinite alternate;
    background-size: 300% 300%;
}

@keyframes animatedgradient-fac1f164 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.image_box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image {
    width: 60%;
    border-radius: 8px;
}

.query_box {
    width: 90%;
    max-width: 750px;
    background: #f4ecff;
    padding: 40px;
    border-radius: 20px;
    margin: 0 auto;
}

.query_box p {
    text-align: left;
}


/* CTA */
.cta_box {
    width: 30%;
    margin: auto;
}

/* FOOTER */
#footer {
    background-color: #212529;
    padding: 1%;
    color: white;
    margin-bottom: 0;
}

#footer p {
    margin: 0;
}

#footer a {
    color: white;
    text-decoration: none;
}

/* Small screens (mobile) */
@media only screen and (max-width: 600px) {

    section {
        margin-bottom: 50px;
    }

    /* Adjust the styles for the navbar */
    .nav-brand h1 {
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Adjust the styles for the hero section */
    #hero {
        height: auto;
        padding: 30px 5px;
    }

    .hero_container {
        flex-direction: column;
    }

    .text_box {
        text-align: center;
        margin-bottom: 30px;
    }

    .tag_line {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .sub_tag_line {
        font-size: 1.1rem;
    }

    .promo_text {
        font-size: 0.99rem;
        line-height: 1.5rem;
        text-align: left;
    }

    .sub_btn {
        font-size: 1.2rem;
        padding: 10px 15px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .image_box {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .image {
        width: 80%;
    }

    .query_box {
        width: 80%;
        padding: 20px;
    }

    .cta_box {
        width: 100%;
    }
}
