/* General styling */
*, *:before, *:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: transparent;
    font-family: 'Helvetica', sans-serif; /* Futura */
    padding: 0 1.25% 0 1.25%;
    position: relative;
}

::-webkit-scrollbar {
    display: none;
}

/* navbar */
#navbar {
    position: sticky;
    top: 0;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: white;
}

#logo_wrapper {
    letter-spacing: 2px;
    font-weight: lighter;
    font-size: 1.2em;
}

#right_navbar {
    height: 57.5%;
    width: 67.5%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 6px;
    background-color: rgba(241, 241, 241, 0.6);
}

.navbar_link {
    width: 16%;
    height: 80%;
    font-size: 0.75em;
    color: #4B4B4B;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.navbar_link:hover {
    background-color: white;
}

.active_link {
    background-color: white;
}

#navbar_signup {
    margin-right: 2.5%;
    display: none;
}

/* ============================================= */

/* main cta container */
#main {
    width: 100%;
    height: 70vh;
    background-color: #505DF7;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 5%;
}

.main_section {
    height: 100%;
    width: 45%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

#main_txt {
    font-size: 3.5em;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    margin: 2.5% 0 2.5% 0;
}

#main_sub_text {
    font-size: 1.2em;
    letter-spacing: 1px;
    color: white;
    font-weight: 200;
    line-height: 150%;
    margin: 2.5% 0 2.5% 0;
}

/* cta wrapper */
.right_main_section {
    width: 55%;
    justify-content: flex-end;
    align-items: center;
}

#cta_wrapper {
    background-color: rgba(241, 241, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    width: 77.5%;
    /*height: 87.5%;*/
    height: 100%;
    position: relative;
}

#signup_form {
    display: none;
}

.signup_input {
    height: 11.5%;
    width: 85%;
    text-align: center;
    border: none;
    border-radius: 8px;
    background-color: white;
    margin: 2.5% 0 2.5% 0;
    font-size: 1em;
    color: #505DF7;
}

.signup_input::placeholder {
    letter-spacing: 1px;
    font-weight: 250;
    color: #505DF7;
}

.signup_input:focus {
    outline: none;
}

.short_input {
    width: 41.25%;
    margin: 2.25% 1.5% 2.25% 1.5%;
}

.signup_btn {
    color: #505DF7;
    background-color: white;
    font-weight: bold;
    font-size: 1.15em;
    cursor: pointer;
}

#signup_legal {
    position: absolute;
    bottom: 2.5%;
    font-size: 0.5em;
    color: white;
    width: 82.5%;
    left: 50%;
    transform: translateX(-50%);
}

.signup_link {
    color: white;
}

/* solution */
#solution {
    width: 100%;
    height: 15vh;
    margin-top: 2.5vh;
}




































































































/* login view */
.bg_shadow {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 10;
}

.login_wrapper {
    position: fixed;
    width: 90vw;
    height: 30vh;
    border-radius: 6px;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: -30vh;
    background-color: white;
    transition: 0.5s ease-in-out;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
}

.login_input {
    width: 35%;
    height: 30%;
    border-radius: 6px;
    background-color: rgba(241, 241, 241, 0.6);
    border: none;
    text-align: center;
    font-size: 1.2em;
    font-weight: 300;
    letter-spacing: 1px;
    color: #505DF7;
}

.login_input::placeholder {
    color: #505DF7;
}

.login_submit {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #505DF7;
    color: white;
}

/* wrong inputs */
@-webkit-keyframes shake {
    0% { -webkit-transform: translate(2px, 1px) rotate(0deg); }
    10% { -webkit-transform: translate(-1px, -2px) rotate(-1deg); }
    20% { -webkit-transform: translate(-3px, 0px) rotate(1deg); }
    30% { -webkit-transform: translate(0px, 2px) rotate(0deg); }
    40% { -webkit-transform: translate(1px, -1px) rotate(1deg); }
    50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
    60% { -webkit-transform: translate(-3px, 1px) rotate(0deg); }
    70% { -webkit-transform: translate(2px, 1px) rotate(-1deg); }
    80% { -webkit-transform: translate(-1px, -1px) rotate(1deg); }
    90% { -webkit-transform: translate(2px, 2px) rotate(0deg); }
    100% { -webkit-transform: translate(1px, -2px) rotate(-1deg); }
}

.shake {
    -webkit-animation-name: shake;
    -webkit-animation-duration: 0.5s;
    -webkit-transform-origin:50% 50%;
    -webkit-animation-iteration-count: infinite;
    display:inline-block
}

.login_forgot {
    position: absolute;
    bottom: 0;
    left: 3%;
    cursor: pointer;
    height: 16.5%;
    width: 17.5%;
    border: 1px solid rgba(241, 241, 241, 0.6);
    border-radius: 6px 6px 0 0;
    font-size: 0.8em;
    letter-spacing: 1px;
    font-weight: 200;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_forgot:hover {
    background-color: #505DF7;
    color: white;
    border-color: #505DF7;
}
























.mainsection {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background-color: white;
}

.main_outer {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_center {
    height: 70%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/*Mission statement*/
.main_bold_text {
    color: #373A3C;
    font-size: 12em;
    font-family: neuzeit_bold, sans-serif;
    margin: 0;
    letter-spacing: 1px;
}

.main_text {
    width: 90%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #373A3C;
    font-family: neuzeit, sans-serif;
    font-size: 5em;
    letter-spacing: 2px;
    margin: 0;
    text-align: left;
    transition: 0.25s ease-in-out;
}

.benefit_line {
    width: 90%;
    height: 15%;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease-in-out;
    display: flex;
}

.arrow_icon {
    width: 10%;
    height: 100%;
    background-image: url("../website_assets/right_arrow_icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%;
}

.enlarged {
    height: 75%;
    width: 90%;
    font-size: 1.9em;
    letter-spacing: 0px;
    align-items: flex-end;
    font-weight: lighter;
}

#main_link {
    padding: 1.25% 5% 1.25% 5%;
    height: 17.5%;
    /*border-radius: 8px;*/
    text-decoration: none;
    font-size: 1.1em;
    transition: .1s ease;
    /*box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);*/
    font-weight: 500;
    letter-spacing: 2px;
    margin: 5%;
    color: white;
    background-color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main_link:hover {
    cursor: pointer;
}











/* product overview section */
.product_benefit {
    height: 300vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: rgb(248, 249, 251);
}

.desc_product_text {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: rgb(248, 249, 251);
}

.desc_section {
    width: 80%;
    height: 20%;
    padding: 2.5%;
    border-radius: 4px;
    background-color: green; /*todo remove later background color and make large text only */
}

/* Fix the position of the product display while scrolling through this section */
#product_img {
    width: 45%;
    height: 85vh;
    pointer-events:none;
}

.inner_prod_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


#image_benefit {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    z-index: 15;
}

#card_img {
    position: absolute;
    height: 100%;
    width: 100%;
    background-position: top;
    background-size: 60%;
    background-repeat: no-repeat;
    left: 100%;
    top: 0;
    z-index: 10;

}





.benefit_text_wrapper {
    height: 60%;
    width: 70%;
}

.benefit_heading {
    color: black;
    letter-spacing: 5px;
    font-size: 6vh;
    font-weight: 500;
    line-height: 7vh;
}

.benefit_content {
    color: #727380;
    letter-spacing: 2px;
    font-size: 2.5vh;
    font-weight: lighter;
    line-height: 4vh;
}

/* product selection process */
.product_selection {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.signup_steps {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.step_heading {
    width: 80%;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 1vw;
    line-height: 400%;
}

.step_indicator {
    width: 80%;
    height: 10%;
    background-color: rgba(248, 249, 251, 1);
    margin-bottom: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.large {
    width: 80%;
    border-right: 7px solid black;
}

.product_display {
    width: 65%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /*background-color: #505DF7;*/
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.plan_section {
    width: 40%;
    height: 60%;
    background-color: white;
    /*border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;*/
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 0px 65px rgba(50, 59, 74, 0.2);
}

.plan_section:hover {
    /*margin-bottom: 2vh;*/
    transition: 0.3s ease-in-out;
}

.plan_heading {
    color: black;
    font-size: 2em;
    line-height: 400%;
    font-weight: bold;
}

.plan_content_container {
    width: 80%;
    height: 50%;
}

.plan_content {
    color: #373A3C;
    text-decoration: none;
}





/*alternative text*/


.vertical_line {
    width: 30%;
    height: 2px;
    border-radius: 4px;
    background-color: black;
}

.alternative_text {
    font-size: 5vh;
    width: 40%;
    text-align: center;
    font-family: neuzeit, sans-serif;
    letter-spacing: 1px;
}


/* Map with partner stores */
.map_wrapper {
    height: 100vh;
    width: 100vw;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid lightgray;
}

#map {
    width: 95%;
    height: 60vh;
    border-radius: 4px;
    box-shadow: 0px 0px 115px rgba(50, 59, 74, 0.4);
}



/* footer */
.footer {
    height: 30vh;
    width: 100%;
    /*background-color: rgba(249, 249, 250, 1);*/
    background-color: transparent;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: green;
}

.newsletter_val {
    width: 20vw;
    height: 2vh;
    border: none;
    border: 1px solid black;
    border-radius: 6px;
    padding: 1%;
    text-align: left;
    background-color: white;
    font-size: 14px;
}

.newsletter_val:focus {
    outline: none;
    border: 1px solid #505DF7;
}

.signup_news {
    margin-left: 2vw;
    border: none;
    background-color: transparent;
    height: 3vh;
    /*background-image: url("/website_assets/arrow_icon.svg");*/
    background-position: center;
    background-size: cover;
    transform: rotate(-180deg);
    cursor: pointer;
}

/* footer wrapper */
.footer_wrapper {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid lightgray;
}

.outer_footer_section {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
}

.section_legal {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*legal info */
.legal_info {
    width: 25%;
    font-weight: lighter;
    font-size: 0.8em;
    margin-left: 1vw;
    color: black;
    text-align: center;
}

/* Greeting */
.greeting {
    width: 100%;
    text-align: right;
    margin-right: 1vw;
}

.greeting_text {
    font-weight: lighter;
    font-size: 0.8em;
}

.greeting_link {
    color: black;
}


/* cookie container */
.cookie_consent_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 4px;
    background-color: #505DF7;
    width: 35%;
    overflow: hidden;
    position: fixed;
    top: 4.2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.cookie_text {
    width: 72.5%;
    height: 80%;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
}

.cookie_desc_text {
    margin: 0;
    padding: 0;
}

#cookie_text_link {
    color: white;
}

.cookie_interaction_btn {
    width: 10%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center;
    cursor: pointer;
}
