.options-wrapper
{
    display:        flex;
    flex-direction: row;
    gap:            2rem;
    width:          70%;
}

.options-container
{
    position:              relative;
    display:               grid;
    flex-direction:        row;

    grid-template-rows: repeat(6, 1fr);
    grid-template-columns: repeat(7, 1fr);
    min-width:             0;
    padding:               var(--padding_1);
}

.option
{
    position:         relative;
    display:          flex;
    flex-direction:   column;
    /*height:         10rem;*/
    align-items:      center;
    background-color: transparent;

}

#venture-option
{
    grid-row-start:    1;
    grid-row-end:      7;
    grid-column-start: 1;
    grid-column-end:   3;
}

#venture-option .option-cta
{

    background: rgba(255, 255, 255, 0.3);
}
#venture-option .option-cta:hover
{

    box-shadow: 0 0px 20px 8px rgba(255, 255, 255, 0.4);
}

#enterprise-option
{
    grid-row-start:    1;
    grid-row-end:      7;
    grid-column-start: 3;
    grid-column-end:   6;
}

#enterprise-option img
{
    object-fit: cover;
}

#enterprise-option .option-cta
{

    background: rgba(249,0,61, 0.4);
}
#enterprise-option .option-cta:hover
{

    box-shadow: 0 0px 20px 8px rgba(249,0,61, 0.4);
}

#genesis-option
{
    grid-row-start:    1;
    grid-row-end:      7;
    grid-column-start: 6;
    grid-column-end:   8;
}

#genesis-option .option-cta
{

    background: rgba(231,191,115, 0.4);
}

#genesis-option .option-cta:hover
{

    box-shadow: 0 0px 20px 8px rgba(231,191,115, 0.4);
}

.option-explanation
{

    position:        absolute;
    bottom:          0;
    left:            50%;
    display:         flex;
    flex-direction:  column;
    justify-content: space-around;
    width:           100%;
    height:          75%;
    border-radius:   16px;

    transform:       translateX(-50%);

}

#venture-option .option-explanation
{
    max-width: 369px;
}

#enterprise-option .option-explanation
{
    max-width: 436px;

}
#genesis-option .option-explanation
{
    max-width: 369px;

}
.option img
{
    transition-property: filter;
    transition-duration: 0.3s;
}

.option a
{
    color:           #3D000F;
    text-decoration: none;

}

.option a:visited
{
    color:           #3D000F;
    text-decoration: none;
}

.lower
{
    /*transform: translateY(5%);*/

}

.pink_gradient
{
    background: linear-gradient(to bottom, rgba(61, 0, 15, 0) 41%, rgba(150, 57, 80, 1) 100%);
}

.red_gradient
{
    background: linear-gradient(to bottom, rgba(61, 0, 15, 0) 41%, rgba(170, 1, 43, 1) 100%);
}

.gold_gradient
{
    background: linear-gradient(to bottom, rgba(61, 0, 15, 0) 41%, rgba(236, 191, 105, 0.56) 100%);
}

.soft-blend
{
    mix-blend-mode: soft-light;

}

.option-window
{
    position:        relative;
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    justify-content: center;
    width:           fit-content;
    height:          100%;
}

.option-window img
{
    overflow:   visible;
    width:      100%;
    min-width:  0;
    height:     100%;
    min-height: 0;
    object-fit: fill;
}

.option-cta
{
    position:        relative;
    width:           100%;
    min-height:      75px;
    border:          none;
    border-radius:   8px;
    background:      rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);

    transition: box-shadow 300ms linear;
}

.option-cta a
{
    color: var(--color-palette-white-smoke);
}

.option-cta a:visited
{
    color: var(--color-palette-white-smoke);
}

.frc
{
    /* flex row center */
    display:         flex;
    flex-direction:  row;
    align-items:     center;
    justify-content: center;
    text-align:      center;
}

.fcc
{
    /* flex column center */
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    justify-content: center;
    text-align:      center;
}

@media screen and (width < 1280px)
{

    #enterprise-option .option-explanation
    {
        background: linear-gradient(to bottom, rgba(61, 0, 15, 0) 41%, rgba(170, 1, 43, 1) 100%);
    }

    #options-page
    {
        height: fit-content;
    }

    #enterprise-option
    {

        grid-row-start:    3;
        grid-row-end:      5;
        grid-column-start: 1;
        grid-column-end:   8;
    }

    #enterprise-option img
    {
        object-fit: cover;

    }

    #enterprise-option .option-explanation
    {
        background: none;
        width:      70%;
    }

    #venture-option
    {
        grid-row-start:    1;
        grid-row-end:      3;
        grid-column-start: 1;
        grid-column-end:   8;
    }

    #venture-option .option-explanation
    {
        background: none;
        /*width:      70%;*/
    }

    #genesis-option
    {
        grid-row-start:    5;
        grid-row-end:      7;
        grid-column-start: 1;
        grid-column-end:   8;
    }

    #genesis-option .option-explanation
    {
        background: none;
    }
}