/*
 ******************************************************************************
 * NavBar
 ******************************************************************************
*/
* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
.html { /* use instead of header class meta height setting */
    height: 100%;
}
.body { /* use instead of header class meta height setting */
    min-height: 100%;
    margin: auto; 
}
.all { /* '.' refers to an HTML class name in corresponding HTML file*/
    width: 100%;
    height: 100vh;
    /* background-image: url(); */
    background-color:rgb(255,255,255);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    padding: 0% 3%;
    /*
    height: 2060px; /* necessary header height to allow overflow */
                    /* 780px more than legal footer */
    overflow: auto; /* allows scrolling for class */
}
.header { /* no '.' before style name refers to a tag in HTML file */ 
    position: fixed;
    top: 0px;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: rgb(255,255,255);
    z-index: 9997;
}
.company_logo { 
    margin-right: auto;
    pointer-events: none;
    position: relative; 
    display: flex;
}
.company_logo a { 
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    pointer-events: all;
    cursor: pointer;
}
.logo {
    width: 290px;
    cursor: pointer;
    pointer-events: none;
}
@media only screen and (max-width: 1100px) {
    .logo {
        width: 40vw;
        cursor: pointer;
    }
}
nav {
    margin-right: 20px;
}
.navbar_login_section {
    display: flex;
    align-items: center;
    margin-right: 6%;
}
.header .instagram {
    display: flex; 
    position: relative; 
    width: 45px;
    height: 45px;  
    border: 5px solid rgb(0, 0, 0);
    border-radius: 10px; 
    margin-right: 20px;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center; 
    cursor: pointer; 
    pointer-events: none;
}
.header .instagram a {
    height: 100%; 
    width: 100%; 
    display: flex; 
    position: absolute;
    cursor: pointer; 
    z-index: 9999; 
    pointer-events: all;
    border: 0px solid red; 
}
.header .instagram img {
    display: flex; 
    position: absolute; 
    bottom: auto; 
    top: 2px; 
    left: 5px; 
    height: 27px; 
    width: 27px; 
    z-index: 9997; 
    border: 0px solid red; 
}
.header .navbar_login_section .btn {
    display: flex; 
    height: 45px;  
    width: auto; 
    color: rgb(0, 0, 0);
    text-decoration: none; 
    border: 5px solid rgb(0, 0, 0); 
    padding-left: 15px;
    padding-right: 15px; 
    border-radius: 10px;
    font-weight: 900;
    text-align: center;
    text-justify: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
}
.header .navbar_login_section .btn a {
    color: rgb(0, 0, 0);
    height: 100%; 
    width: 100%; 
    display: flex; 
    position: relative;
}
.header .navbar_login_section .btn:hover { /* use ':' to indicate action version for class */
    display: flex; 
    height: 45px;  
    width: auto; 
    color: rgb(0, 0, 0);
    text-decoration: none; 
    border: 5px solid rgb(0, 0, 0); 
    padding-left: 15px;
    padding-right: 15px; 
    border-radius: 10px;
    font-weight: 900;
    text-align: center;
    text-justify: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
}
@media only screen and (max-width: 1100px) {
    .header .navbar_login_section .btn a {
        width: 40vw; 
    }
}

/*
 ******************************************************************************
 * Content
 ******************************************************************************
*/

.home_cells_container_flexbox {
    display: flex;
    justify-content: center;
    justify-items: center;
    margin: auto;
    justify-self: center;
}
.home_cells_container {
    top: 100px;
    position: relative;
    width: 100%;
    margin: auto;
    max-width: 1100px;
    height: auto;
    border: 0px solid red; 
    display: grid; 
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    row-gap: 0px;
    justify-self: center;
    justify-items: center;
    justify-content: center;
    overflow-x: hidden; 
    grid-gap: 100px; 
}
/* ************************************************************************* */
.home_cells_container .Intro {
    top: 0px;
    position: relative; 
    background: radial-gradient(circle at 0% 100%,
    rgb(25, 162, 212), rgb(255,255,255,0) 80%); 
    border-radius: 12px;
    border: 8px solid rgb(0,0,0); 
    width: 98.5%;
    min-width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    isolation: auto;
    min-height: 550px; 
    padding-left: 25px; 
    padding-right: 25px; 
    justify-content: left;
}
@media only screen and (max-width: 800px) {
    .home_cells_container .Intro {
        width: 95%; 
    }
} 
.home_cells_container .Intro .background {
    position: relative;
    top: 0px;
    left: auto;
    right: 0px;
    width: 1150px;
    height: 535px;
    border: 0px solid black;
    background: rgb(0,0,0,0); 
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
}
.home_cells_container .Intro img {
    position:absolute;
    border-radius: 33px;
    width: 97%;
    z-index: 9991;
    left: auto; 
    right: -270px;
    top: auto; 
    bottom: -185px;
    border: 0px solid black;
    margin: 0px 0px 0px 0px; 
    padding: 0px 0px 0px 0px; 
    pointer-events: none;
}
@media only screen and (max-width: 1100px) {
    .home_cells_container .Intro img {
        position: absolute; 
        left: 25vw;
        top: 0; 
    }
}
.home_cells_container .Intro div {
    position: absolute;
    line-height: 37px;
    top: 200px;
    z-index: 9000;
}
.home_cells_container .Intro div h1 {
    font-size: 385%;
    font-weight: 1500;
    color: rgb(0, 0, 0);
    line-height: 55px;
}
.home_cells_container .Intro div h2 {
    font-size: 150%;
    font-weight: 800;
    color: rgb(0, 0, 0);
}
.home_cells_container .Intro div .Intro_btn {
    position: absolute;
    top: auto;
    left: 0px;
    height: 75px;
    width: 300px;
    border:8px solid rgb(0, 0, 0);
    background-image: radial-gradient(circle at 98% 102%,
    rgb(0, 0, 0) 0%, rgb(0, 0, 0) 80%);      
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    padding: 0px 15px 0px 15px; 
}
@media only screen and (max-width: 1100px) {
    .home_cells_container .Intro div .Intro_btn {
        width: auto; 
    }
}
.home_cells_container .Intro div .Intro_btn button {
    color:rgb(25, 162, 212);
    font-size: 150%;
    font-weight:900;
    background-color: rgb(0,0,0,0);
    outline: 0;
    border: none;
    text-decoration: none;
    cursor: pointer;
    height: 100%; 
    width: 100%; 
    pointer-events: all;
}
@media only screen and (max-width: 1100px) {
    .home_cells_container .Intro div .Intro_btn button {
        width: auto; 
    }
}
/* ************************************************************************* */
.home_cells_container .slide_1 {
    top: 0px;
    position: relative; 
    background-color:rgb(255,255,255);
    border: 0px solid rgb(0, 0, 0); 
    width: 98.5%;
    min-width: 230px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A";
    grid-gap: 20px;
    min-height: 550px; 
    justify-content: center;
    justify-items: center;
}
.home_cells_container .slide_1 .slide_1_A {
    position: relative;
    grid-area: slide_1_A;
    border: 8px solid rgb(0, 0, 0);
    background-color: rgb(255,255,255);
    border-radius: 12px;
    line-height: 37px;
    cursor: default;
    height: 100%;
    width: 100%; 
    min-height: 550px; 
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "textual"
                         "headshot";
}
.home_cells_container .slide_1 .slide_1_A .textual {
    position: relative;
    height: 100%; 
    width: 100%; 
}
.home_cells_container .slide_1 .slide_1_A .textual h1 {
    padding: 10px 10px 10px 10px;
    font-size: 250%;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 40px;
}
.home_cells_container .slide_1 .slide_1_A .textual p {
    padding: 0px 20px 10px 20px;
    font-size: 16px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 24px;
}
.home_cells_container .slide_1 .slide_1_A .headshot {
    position: relative;
    grid-area: headshot;
    background-color: rgb(255,255,255);
    border-radius: 12px;
    cursor: default;
    width: 100%; 
    height: 100%; 
    display: flex; 
    justify-content: right;
    justify-items: right;
    align-items: center;
    align-content: center;
    padding: 20px 20px 20px 20px; 
}
.home_cells_container .slide_1 .slide_1_A .headshot img {
    width: 33%;
    height: auto; 
    border: 8px solid rgb(0, 0, 0);
    border-radius: 8px;
}
@media only screen and (max-width: 800px) {
    .home_cells_container .slide_1 {
        width: 95%; 
    }
    .home_cells_container .slide_1 .slide_1_A .headshot {
        justify-content: center;
        justify-items: center;
    }
    .home_cells_container .slide_1 .slide_1_A .headshot img {
        width: 50%;
    }
} 
/* ************************************************************************* */
.home_cells_container .slide_1C {
    top: 0px;
    position: relative; 
    background-color:rgb(255,255,255);
    border: 0px solid rgb(0, 0, 0); 
    width: 98.5%;
    min-width: 230px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A";
    grid-gap: 20px;
    min-height: 550px; 
    justify-content: center;
    justify-items: center;
}
.home_cells_container .slide_1C .slide_1_A {
    position: relative;
    grid-area: slide_1_A;
    border: 8px solid rgb(0, 0, 0);
    background-color: rgb(255,255,255);
    border-radius: 12px;
    line-height: 37px;
    cursor: default;
    width: 100%; 
    min-height: 550px; 
}
.home_cells_container .slide_1C .slide_1_A h1 {
    padding: 10px 10px 10px 10px;
    font-size: 250%;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 40px;
}
.home_cells_container .slide_1C .slide_1_A p {
    padding: 0px 20px 10px 20px;
    font-size: 16px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 24px;
}
.home_cells_container .slide_1C .img {
    grid-area: img;
    padding: 0px 20px 10px 20px;
    height: 100%;
}
@media only screen and (max-width: 800px) {
    .home_cells_container .slide_1C {
        width: 95%; 
    }
} 
/* ************************************************************************* */
.home_cells_container .slide_1D {
    top: 0px;
    position: relative; 
    background-color:rgb(255,255,255);
    border: 0px solid rgb(0, 0, 0); 
    width: 98.5%;
    min-width: 230px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A"
                         "slide_1_A slide_1_A slide_1_A slide_1_A";
    grid-gap: 20px;
    min-height: 550px; 
    justify-content: center;
    justify-items: center;
}
.home_cells_container .slide_1D .slide_1_A {
    position: relative;
    grid-area: slide_1_A;
    border: 8px solid rgb(0, 0, 0);
    background-color: rgb(255,255,255);
    border-radius: 12px;
    line-height: 37px;
    cursor: default;
    height: 100%; 
    width: 100%;
    min-height: 550px; 
    display: flex; 
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
}
.home_cells_container .slide_1D .slide_1_A iframe {
    display: flex; 
    justify-self: center;
    justify-items: center;
    align-self: center;
    align-items: center;
    height: 100%; 
    width: 100%; 
    border-radius: 4px; 
}
@media only screen and (max-width: 800px) {
    .home_cells_container .slide_1D {
        width: 95%; 
    }
} 
/* ************************************************************************* */
.home_cells_container .slide_1B {
    top: 0px;
    position: relative; 
    background-color:rgb(255,255,255);
    border: 0px solid rgb(0, 0, 0); 
    width: 98.5%;
    min-width: 230px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: "area_1 area_1 area_1 area_1"
                         "area_1 area_1 area_1 area_1"
                         "area_2 area_2 area_2 area_2"
                         "area_2 area_2 area_2 area_2";
    grid-gap: 20px;
    min-height: 550px; 
    justify-content: center;
    justify-items: center;
}
.home_cells_container .slide_1B .area_1 {
    position: relative;
    grid-area: area_1;
    border: 8px solid rgb(0, 0, 0);
    background-color: rgb(255,255,255);
    border-radius: 12px;
    cursor: default;
    height: 100%; 
    width: 100%; 
    background: radial-gradient(circle at 0% 100%,
    rgb(25, 162, 212), rgb(255,255,255,0) 80%); 
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
}
.home_cells_container .slide_1B .area_1 h1 {
    padding: 10px 10px 10px 10px;
    font-size: 250%;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 40px;
}
.home_cells_container .slide_1B .area_1 .list {
    display: flex; 
    position: relative;
    cursor: default;
    height: 100%; 
    width: 100%; 
    padding: 0px 20px 10px 20px;
    flex-wrap: wrap;
    flex-direction: column;
}
.home_cells_container .slide_1B .area_1 h3 {
    font-size: 16px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 24px;
}
.home_cells_container .slide_1B .area_2 {
    position: relative;
    grid-area: area_2;
    border: 8px solid rgb(0, 0, 0);
    background-color: rgb(255,255,255);
    border-radius: 12px;
    cursor: default;
    height: 100%; 
    width: 100%; 
    background: radial-gradient(circle at 0% 100%,
    rgb(25, 162, 212), rgb(255,255,255,0) 80%); 
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
}
.home_cells_container .slide_1B .area_2 h1 {
    padding: 10px 10px 10px 10px;
    font-size: 250%;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 40px;
}
.home_cells_container .slide_1B .area_2 .list {
    display: flex; 
    position: relative;
    cursor: default;
    height: 100%; 
    width: 100%; 
    padding: 0px 20px 10px 20px;
    flex-wrap: wrap;
    flex-direction: column;
}
.home_cells_container .slide_1B .area_2 h3 {
    font-size: 16px;
    font-weight: 900;
    color: rgb(0, 0, 0);
    line-height: 24px;
}
@media only screen and (max-width: 800px) {
    .home_cells_container .slide_1B {
        width: 95%; 
    }
} 
/* ************************************************************************* */
.home_cells_container .slide_2 {
    top: 0px;
    position: relative; 
    background-color:rgb(255,255,255);
    border: 0px solid rgb(0, 0, 0); 
    width: 98.5%;
    min-width: 230px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 20px;
    min-height: 550px; 
    justify-content: center;
    justify-items: center;
}
.home_cells_container .slide_2 .slide_2_area {
    width: 100%; 
    position: relative;
    border: 8px solid rgb(0, 0, 0);
    background-color: rgb(255,255,255);  
    border-radius: 12px;
    cursor: default;
    display: grid; 
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "title" "value";
    justify-content: center;
    align-items: space-between;
    align-content: space-between;
    padding: 10px 10px 10px 10px; 
}
.home_cells_container .slide_2 .slide_2_area .title {
    grid-area: title;
    height: auto; 
    width: 100%;
    display: flex; 
    position: relative; 
    align-content: flex-start;
    align-items: flex-start;
    border: 0px solid red; 
}
.home_cells_container .slide_2 .slide_2_area .title h1 {
    font-size: 250%;
    font-weight: 900;
    color: rgb(0, 0, 0);
}
.home_cells_container .slide_2 .slide_2_area .value {
    grid-area: value;
    height: 100%; 
    width: 100%;
    display: grid; 
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "h1" "h2";
    justify-content: center;
    align-items: center;
    align-content: center;
}
.home_cells_container .slide_2 .slide_2_area .value .h1 {
    grid-area: "h1";
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}
.home_cells_container .slide_2 .slide_2_area .value .h1 h1 {
    font-size: 700%;
    font-weight: 900;
    color: rgb(25, 162, 212);
    text-align: center;
}
.home_cells_container .slide_2 .slide_2_area .value .h2 {
    grid-area: "h2";
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    align-content: end;
    text-align: center;
}
.home_cells_container .slide_2 .slide_2_area .value .h2 h2 {
    font-size: 100%;
    font-weight: 900;
    color: rgb(25, 162, 212, 0.5);
    text-align: center;
}
@media only screen and (max-width: 1100px) {
    .home_cells_container .slide_2 {
        top: 0px;
        position: relative; 
        background-color:rgb(255,255,255);
        border: 0px solid rgb(0, 0, 0); 
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-gap: 20px;
    }
} 
@media only screen and (max-width: 800px) {
    .home_cells_container .slide_2 {
        width: 95%; 
    }
}
/* ************************************************************************* */
.home_cells_container .slide_6 {
    height: 100%; 
    width: 98.5%;
    max-width: 1100px; 
    position: relative; 
    background-color:rgb(255,255,255);
    border: 0px solid rgb(0, 0, 0); 
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "area_1 area_2"
                         "area_3 area_4";
    grid-gap: 20px;
    min-height: 550px; 
    justify-self: center;
    justify-content: center;
    justify-items: center;
}
.home_cells_container .slide_6 div div p {
    padding: 10px 10px 0px 10px;
    font-size: 16px;
    font-weight: 900;
    color: rgb(25, 162, 212);
    line-height: 24px;
    border: 0px solid red; 
}
.home_cells_container .slide_6 div h1 {
    font-size: 250%;
    font-weight: 900;
    color: rgb(25, 162, 212);
    border: 0px solid red; 
}
.home_cells_container .slide_6 .area_1 {
    position: relative;
    grid-area: area_1;
    border: 8px solid rgb(0, 0, 0);
    background-color:rgb(0, 0, 0);
    border-radius: 12px;
    cursor: pointer;
    pointer-events: none;
    height: 100%; 
    padding: 10px 10px 10px 10px; 
}
.home_cells_container .slide_6 .area_1 a {
    position: absolute; 
    height: 100%; 
    width: 100%; 
    display: flex; 
    pointer-events: all;
    z-index: 9900;
}
.home_cells_container .slide_6 .area_2 {
    position: relative;
    grid-area: area_2;
    border: 8px solid rgb(0, 0, 0);
    background-color:rgb(0, 0, 0);
    border-radius: 12px;
    cursor: pointer;
    height: 100%; 
    width: 100%; 
    padding: 10px 10px 10px 10px; 
}
.home_cells_container .slide_6 .area_2 a {
    position: absolute; 
    height: 100%; 
    width: 100%; 
    display: flex; 
    pointer-events: all;
    z-index: 9900;
}
.home_cells_container .slide_6 .area_3 {
    position: relative;
    grid-area: area_3;
    border: 8px solid rgb(0, 0, 0);
    background-color:rgb(0, 0, 0);
    border-radius: 12px;
    cursor: pointer;
    height: 100%; 
    width: 100%; 
    padding: 10px 10px 10px 10px; 
}
.home_cells_container .slide_6 .area_3 a {
    position: absolute; 
    height: 100%; 
    width: 100%; 
    display: flex; 
    pointer-events: all;
    z-index: 9900;
}
.home_cells_container .slide_6 .area_4 {
    position: relative;
    grid-area: area_4;
    border: 8px solid rgb(0, 0, 0);
    background-color:rgb(0, 0, 0);
    border-radius: 12px;
    cursor: pointer;
    height: 100%; 
    width: 100%; 
    padding: 10px 10px 10px 10px; 
}
.home_cells_container .slide_6 .area_4 a {
    position: absolute; 
    height: 100%; 
    width: 100%; 
    display: flex; 
    pointer-events: all;
    z-index: 9900;
}
@media only screen and (max-width: 800px) {
    .home_cells_container .slide_6 {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-template-areas: "area_1"
                             "area_2"
                             "area_3"
                             "area_4";
        width: 95%; 
    }
} 
/* ************************************************************************* */
.home_cells_container .slide_beginMyJourney {
    top: 0px;
    position: relative; 
    border: 8px solid rgb(0, 0, 0);
    background-color: rgb(255,255,255);  
    border-radius: 14px;   
    display: grid;
    grid-auto-flow: row; 
    grid-gap: 40px; 
    justify-content: center;
    justify-items: center;
    align-content: center;
    width: 98.5%;
    min-height: 200px; 
    padding-right: 20px; 
    padding-left: 20px; 
    padding-top: 20px; 
    padding-bottom: 20px; 
    height: auto; 
}
.home_cells_container .slide_beginMyJourney .title {
    display: flex; 
    position: relative; 
    justify-content: center;
    justify-items: center;
    justify-self: center;
    text-align: center;
    height: 100%; 
    width: 100%; 
}
.home_cells_container .slide_beginMyJourney .title h1 {
    font-size: 250%;
    font-weight: 900;
    color: rgb(0, 0, 0);
}
.home_cells_container .slide_beginMyJourney .begin_btn {
    position: relative;
    height: 75px;
    width: 300px;
    border: 8px solid rgb(0, 0, 0);
    background-image: radial-gradient(circle at 98% 102%,
    rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%);  
    border-radius: 10px;
    display: flex; 
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    padding-right: 15px; 
    padding-left: 15px; 
}
.home_cells_container .slide_beginMyJourney .begin_btn button {
    font-size: 150%;
    text-decoration: none;
    font-weight: 900;
    color: rgb(25, 162, 212);
    border: none;
    background-color: rgb(0,0,0,0);
    background-image: none;
    outline: none;
    cursor: pointer;
}
@media only screen and (max-width: 1100px) {
    .home_cells_container .slide_beginMyJourney .begin_btn {
        width: auto; 
    }
}
@media only screen and (max-width: 800px) {
    .home_cells_container .slide_beginMyJourney {
        width: 95%; 
    }
} 

/* 
 ******************************************************************************
 * Footer -- Legal Info 
 ******************************************************************************
*/
.legal_info {
    top: 300px; /* 200px more than about footer */
    position: relative;
    width: 100%;
    height: 50px; 
    display: flex; 
    justify-content: start;
    justify-items: start; 
    align-items: start; 
    align-content: start; 
    flex-flow: wrap;
    gap: 40px;
    border: 0px solid black; 
}
.legal_info .copyright {
    position: relative; 
    display: flex; 
    height: 100%; 
    width: auto; 
    color: rgb(0,0,0);
    justify-content: start;
    justify-items: start; 
    align-items: start; 
    align-content: start; 
}
.legal_info .other_legal_stuff {
    position: relative; 
    display: flex; 
    height: 100%; 
    width: 380px; 
    justify-content: center;
    justify-items: center; 
    align-items: start; 
    align-content: start; 
    column-gap: 18px;
}
.legal_info .other_legal_stuff a {
    display: flex; 
    position: relative;
    text-decoration: none; /* removes standard link styling */
    color: rgb(0,0,0);
    font-weight: 200;
    font-size: small;
}
.legal_info .other_legal_stuff a:hover {
    text-decoration: none; /* removes standard link styling */
    color: rgb(0,0,0);
    font-weight: 200;
    font-size: small;
}
@media only screen and (max-width: 820px) {
    .legal_info {
        height: 50px; 
        display: flex; 
        justify-content: center;
        justify-items: center; 
        flex-flow: wrap;
    }
} 