#home__nav--container {
    position: fixed;
    width: 100%;
    z-index: 99;
}

#home__landing--container {
    height: fit-content;
    width: 100%;
}

#home__landing--container h1 {
    font-weight: 500;
    font-size: 4rem;
    padding: 2rem 9rem;
    color: #ffffff;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    z-index: 1;
}

#home__button--container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    height: 3rem;
    z-index: 1;
}

#home__principal--default {
    background-color: #ffffff;
    width: 100%;
    height: 93vh;
    margin: 0 auto;
    padding: 40px 20px 70px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#home__div--background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#home__div--background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home__button--container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
    height: 3rem;
}

.home__option--simple {
    flex: 1;
    height: 100%;
    padding: 0 1rem;
    border: 2px solid rgb(22, 137, 202);
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    box-shadow:
            0 24px 24px -12px rgba(14, 63, 126, 0.0392157),
            0 12px 12px -6px rgba(14, 63, 126, 0.0392157),
            0 6px 6px -3px rgba(42, 51, 70, 0.0392157),
            0 3px 3px -1.5px rgba(42, 51, 70, 0.0392157),
            0 1px 1px -0.5px rgba(42, 51, 69, 0.0392157),
            0 0 0 1px rgba(14, 63, 126, 0.0392157);
}

.home__option--simple:hover {
    border: transparent;
    transition: all 0.4s ease-in-out;
}

#home__expo--default {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    padding: 1rem 2rem;
    margin: 100px 0;
}

.home__div--card {
    width: 35%;
    padding: 10px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

#home__option--variant {
    width: 60%;
    height: 100px;
    margin: 20px 0;
    padding: 8px;
}

#home__div--logo {
    border-radius: 50%;
    margin: 20px;
    width: 100%;
    height: 8em;
    display: flex;
    justify-content: center;
}

#home__div--logo img {
    height: 100%;
}

@media screen and (min-width: 2000px) {
    #home__landing--container h1 {
        font-size: 7rem;
        padding: 5rem 30rem;
    }

    .home__div--card {
        height: 400px;
    }
}