* {
    font-family: 'Roboto', "Helvetica Neue", sans-serif;
    font-size: 12px;
    box-sizing: border-box;
    text-rendering: optimizeLegibility
}

body {
    background-color: #efefef;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
}

nav {
    display: grid;
    grid-template-areas: "logo nav-menu access-btn";
    grid-template-columns: 20% 40%;
    height: 10em;
    margin: 0 15em;
    align-content: center;
}

.logo {
    display: grid;
    align-content: center;
}

.logo span {
    font-family: 'Bebas Neue', "Helvetica Neue", sans-serif;
    font-size: 3.2em;
}

.logo.standalone {
    text-align: center;
    height: 13em;
}

.logo.standalone span {
    font-family: 'Bebas Neue', "Helvetica Neue", sans-serif;
    font-size: 3.2em;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    align-self: flex-end;
}

.nav-links {
    display: grid;
    align-content: center;
}

.nav-links ul li {
    display: grid;
    cursor: pointer;
    font-size: 1.4em;
    font-weight: 500;
    color: #898989;
    transition: 0.9s all;
   
}

.nav-links ul li:after {
    display: block;
    content: "";
    width: 0;
    height: 3px;
    margin-top: .8rem;
    background: #1d6ae5;
    -webkit-transition: width .3s ease 0s;
    transition: width .3s ease 0s;
}

.nav-links ul li:hover {
    color: #3c3c3c;
}

.nav-links ul li:hover:after {
    cursor: pointer;
    width: 100%;
}

nav .access-btn {
    display: grid;
    grid-area: access-btn;
    grid-template-areas: "login create";
    grid-template-columns: 30% 50%;
    justify-content: flex-end;
}


.main-wrapper {
    display: grid;
    margin: 0 auto;
    min-height: 60vh;
    width: 100vw;
    background-color: #efefef;
    overflow-x: hidden;
}

.hero {
    display: grid;
    grid-template-areas: "hero-text-wrap hero-image";
    margin: 0 15em;
    grid-template-columns: 40% 60%;
    grid-template-rows: 100%;
    padding: 10em 0;
}

.hero-text-wrap {
    grid-area: hero-text-wrap;
    grid-template-areas: 
        "header"
        "tagline"
        "hero-cta";
    grid-template-columns: 100%;
    grid-template-rows: 50% 30% 20%;
}

.hero-text-wrap h1 {
    grid-area: header;
    font-family: 'Bebas Neue', "Helvetica Neue", sans-serif;
    font-size: 7em;
    margin-bottom: 0;
    line-height: 6.2rem;
    letter-spacing: 3px;
    word-spacing: 15px;
    color: #1a222a;
}

.hero-text-wrap p {
    grid-area: tagline;
    font-size: 1.6rem;
    line-height: 2.6rem;
    word-spacing: 3px;
    color: grey;
    font-family: 'Lato', "Helvetica Neue", sans-serif;
}

.hero-text-wrap .hero-button {
    grid-area: hero-cta;
    
}

.button {
    text-decoration: none;
    text-align: center;
    border: 0;
    cursor: pointer;
    padding: 1.4rem 3.2rem;
    margin: .8rem 0;
    width: auto;
    display: inline-block;
    border-radius: .3rem;
    line-height: 2rem;
}

.button.md {
    background-color: #1555ba;
    text-decoration: none;
    padding-left: 3rem!important;
    padding-right: 3rem!important;
    text-align: center;
    border: 0;
    cursor: pointer;
    margin: 2rem .8rem;
    width: auto;
    display: inline-block;
    border-radius: .3rem;
    line-height: 2rem;
}

.button.outline {
    background-color: #fff;
    text-decoration: none;
    padding-left: 3rem!important;
    padding-right: 3rem!important;
    font-size: 1.2rem;
    line-height: 2.4rem;
    font-weight: 700;
    color: #1a222a;
    font-family: inherit;
    text-align: center;
    border: 1px solid #686a6c;
    cursor: pointer;
    padding: 1.4rem 3.2rem;
    margin: 2rem 0;
    width: auto;
    display: inline-block;
    border-radius: .3rem;
    line-height: 2rem;
}

.button.primary {
    background-color: #1555ba;
    text-decoration: none;
    padding-left: 6.4rem!important;
    padding-right: 6.4rem!important;
    text-align: center;
    border: 0;
    cursor: pointer;
    padding: 1.4rem 3.2rem;
    margin: .8rem 0;
    width: auto;
    display: inline-block;
    border-radius: .3rem;
    line-height: 2rem;
}

a {
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 2.4rem;
    font-weight: 700;
    color: #fff;
    font-family: inherit;
    cursor: pointer;
}

.hero-image {
    grid-area: hero-image;
    align-items: center;
    justify-content: center;
    align-self: center
}

.hero-image img {
    display: block;
    margin: auto;
}

.break {
    display: grid;
    position: relative;
    grid-template-areas: "break-text";
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    align-content: center;
    justify-content: center;
    height: 250px;
    width: 100%;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    color: #fff;
}

.break .text-wrap {
    display: block;
    width: 100%;
    margin: auto 0;
    padding: 0 25em;
    
}

.text-wrap h2 {
    font-family: 'Lato', "Helvetica Neue", sans-serif;
    font-size: 2.3rem;
    line-height: 3.2rem;
    font-weight: 400;
    text-align: center;
    color: #ddf2f8;
}

.features-one {
    display: grid;
    grid-template-areas: "ft-one-image ft-one-text";
    grid-template-columns: 50% 50%;
    grid-template-rows: 100%;
    background-color: #fff;
    padding: 10em 35em;
}

.ft-one-image {
    display: grid;
    grid-area: ft-one-image;
}

.ft-one-text {
    display: grid;
    grid-area: ft-one-text;
}

h2 {
    font-family: 'Lato', "Helvetica Neue", sans-serif;
    font-size: 2.3rem;
    line-height: 3.2rem;
    font-weight: 700;
    color: #1a222a;
    margin: 0;
}

p {
    font-size: 1.3rem;
    line-height: 2.6rem;
    word-spacing: 3px;
    color: grey;
    font-family: 'Lato', "Helvetica Neue", sans-serif;
    margin: 0;
}

.check-list {
    display: grid;
    grid-template-areas: "check check-text";
    grid-template-columns: 10% 90%
}

.check {
    color: #1555ba;
}

.check * {
    font-size: 3em
}

.check-text {
    display: grid;
    grid-area: check-text;
    align-self: center;
    align-items: center;
    font-size: 1.3rem;
    line-height: 2.6rem;
    word-spacing: 3px;
    color: grey;
    color: #8b8b8b;
}


.features-two {
    display: grid;
    grid-template-areas: "ft-2-text ft-2-image";
    grid-template-columns: 50% 50%;
    padding: 10em 35em;
    align-items: center;
}


.features-three {
    display: grid;
    grid-template-areas: "ft-3-image ft-3-text";
    align-items: center;
    padding: 10em 0;
}

.features-three .ft-3-text {
    display: grid;
    grid-area: ft-3-text;
    padding: 0 20em;
}

.plans {
    display:grid;
    grid-template-areas: "plans-main-text"
        "sub-plans";
    grid-template-columns: 100%;
    grid-template-rows: 50% 80%;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    padding: 10em 35em;

}

.plans .main-text {
    display:grid;
    grid-area: plans-main-text;
}

.plans .main-text * {
    color: #fff;
    text-align: center;
}

.sub-plans {
    display: grid;
    grid-area: sub-plans;
    grid-template-columns: 1fr 1fr 1fr;
}


/* Register form */

form label, form input {
    font-size: 15px!important;
    font-family: Lato, sans-serif;
    font-weight: 700;
    color: #848383;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
  }

/* Hide all tabs by default */
.tab {
    display: none;
  }

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }

  
/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #4CAF50;
}