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

:root {
    /* Cores */
    --theme-color: #5200FF;
    --theme-light-color: #DFDFF9;
    --theme-dark-color: #47464A;
    --text-neutral-color: #9F9EA1;
    --danger-color: #FE513D;
    --theme-hover-color: #330e81;

    /* Gradients */
    --theme-gradient: linear-gradient(318deg, var(--theme-light-color), transparent);
    /* --theme-transparent-color: rgba(119, 208, 73, .24);
    --theme-bg-color: #cee5c4;
    --theme-dark-color: #065021;
    --text-color: #313934;
    --bg-neutral-color: #F5F5F5;
    --border-color: #eaeaea;
    --error-color: #F86B62;
    --error-transparent-color: #f86c621c;*/

    /* Fonts */
    --primary-font: 'Outfit', sans-serif;
    --secondary-font: 'Lato', sans-serif;

    /* Radius */
    --default-radius: 5px;
}

.section {
    display: flex;
    justify-content: center;
    padding: 50px 0px;
}

.content {
    display: flex;
    width: 95%;
    height: 100%;
    max-width: 1200px;
    flex-direction: column;
}

/* Flex Container */

/* Theme style guide */
.flex {
    display: flex;
}

.fx-col {
    flex-direction: column;
}

.al-center {
    align-items: center;
}

.al-start {
    align-items: flex-start;
}

.al-end {
    align-items: flex-end;
}

.jus-start {
    justify-content: start;
}

.jus-center {
    justify-content: center;
}

.jus-between {
    justify-content: space-between;
}

.jus-around {
    justify-content: space-around;
}

.jus-end {
    justify-content: flex-end;
}

.center {
    align-items: center;
    justify-self: center
}

/* Hightlight text */
.hero-hightlight {
    position: relative;
    z-index: 1;
    color: var(--theme-color);
    perspective: 100px;
}

.danger-hightlight {
    color: var(--danger-color);
}

/* Buttons */
.theme-btn {
    background-color: var(--theme-color) !important;
    color: #fff !important;
    text-decoration: none;
}

.theme-btn:hover {
    background-color: #330e81 !important;
}

/* Navbar */
.navbar {
    position: relative;
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    font-family: var(--primary-font);
    background-color: var(--theme-light-color);
}

.navbar-content {
    display: flex;
    width: 95%;
    height: 100%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    height: 50px;
}

.navbar-span-beta {
    width: auto;
    height: auto;
    padding: .1rem .25rem;
    font-family: var(--primary-font);
    font-size: 12px;
    color: #fff;
    background-color: var(--theme-color);
    border-radius: var(--default-radius);
}

.navbar-container-mobile {
    position: absolute;
    overflow: hidden;
    z-index: 10;
    left: 0px;
    top: 100%;
    width: 100%;
    height: auto;
    max-height: 0px;
    box-sizing: border-box;
    font-size: 1.5em;
    font-weight: bold;
    background-color: #fff;
    border: 1px solid var(--theme-light-color);
    box-shadow: 0px 10px 30px rgba(70, 70, 100, .2);
    transition: .4s;
    /* opacity: 0; */
}

.navbar-container-mobile.show {
    max-height: 100vh !important;
    /* opacity: 1 !important;*/
}

.navbar-toggler {
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
}

.navbar-mobile {
    padding: 1.5rem;
    list-style: none;
}

.navbar-wrapper {
    display: none;
    width: auto;
    list-style: none;
    padding: .25rem;
    font-size: 1.2em;
}

.nav-item {
    margin: 1rem 30px;
}

.nav-link {
    text-decoration: none;
    color: #000;
}

.nav-link:hover {
    color: var(--theme-color);
}

/* Footer Section */
.footer-section {
    height: 300px;
}

.footer-container {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-brand-text {
    margin-top: -15px;
    font-family: var(--primary-font);
    font-size: 18px;
    color: var(--theme-dark-color);
}

.footer-block {
    display: flex;
    width: 100%;
    padding: 2rem 0px;
    justify-content: center;
    align-items: center;
}

.footer-navbar {
    display: flex;
    width: 300px;
    justify-content: space-around;
    list-style: none;
}

.footer-navbar li a {
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: bold;
    color: var(--text-neutral-color);
    text-decoration: none;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .hero-block {
        width: 80%;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .navbar-container-mobile,
    .navbar-toggler {
        display: none;
    }

    .navbar-wrapper {
        display: flex;
    }

    .footer-container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .footer-navbar {
        width: 400px;
    }
}

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

    .navbar {
        height: 60px;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}