:root {
    --color-primary: #E10098;
    --color-on-primary: #FFFFFF;
    --color-border: #EEE;
    --width-content-large: 1600px;
    --width-content-large-half: calc(var(--width-content-large) / 2);
}

html, body {
    background: #f7f7f7;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
body {
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin: 0;
}
a, a:visited, a:active {
    color: var(--color-primary);
}
.grecaptcha-badge {
    opacity: 0;
    pointer-events: none;
}

/* #toolbar start >>> */
#toolbar {
    background-color: white;
    padding: 1.75rem;
    text-align: center;
}
#toolbar a {
    background-image: url(../img/nito-logo.png);
    background-repeat: no-repeat;
    background-size: 180px 66px;
    display: inline-block;
    height: 66px;
    width: 180px;
}
@media only screen and (max-width: 1599px) {
    #toolbar a {
        height: 48px;
        width: 131px;
        background-size: 131px 48px;
    }
}
/* <<< #toolbar end */

/* #cta start >>> */
#cta {
    background-color: white;
    background-image: url(../img/bg.png);
    background-position: center top;
    background-repeat: repeat-x;
    padding: 3rem 0;
    text-align: center;
}
@media only screen and (max-width: 1023px) {
    #cta {
        padding-bottom: 20px;
    }
}
#cta h1 {
    font-size: 3.5rem;
    padding: 0 0.5rem;
}
@media only screen and (max-width: 1599px) {
    #cta {
        padding-top: 0;
    }
    #cta h1 {
        font-size: 2.8rem;
    }
}
#cta a {
    background: var(--color-primary);
    border-radius: 5px;
    color: var(--color-on-primary);
    display: inline-block;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    line-height: 1.25rem;
    padding: 1rem 4.5rem;
    text-decoration: none;
}
/* <<< #cta end */

/* #hero start >>> */
#hero {
    display: flex;
    flex-direction: row;
    left: calc(50% - var(--width-content-large-half));
    position: relative;
    width: var(--width-content-large);
}
@media only screen and (max-width: 1599px) {
    #hero {
        left: calc(100% - 70px - var(--width-content-large));
    }
}
@media only screen and (max-width: 1023px) {
    #hero {
        left: 0;
        width: 100%;
        overflow: hidden;
    }
}
#hero #screenshots {
    display: flex;
    width: 841px;
}
#hero #screenshots img {
    display: block;
    position: absolute;
    top: -20px;
    width: 841px;
    z-index: 2;
}
@media only screen and (max-width: 1599px) {
    #hero #screenshots {
        width: 950px;
        padding-left: 200px;
    }
    #hero #screenshots img {
        width: 700px;
    }
}
@media only screen and (max-width: 1023px) {
    #hero #screenshots {
        padding: 0;
        width: 0;
    }
    #hero #screenshots img {
        top: 0;
        left: calc(50% - 160px);
        bottom: 20px;
        width: 320px;
    }
}
#hero #top-features {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 100px 30px 80px 100px;
    z-index: 2;
}
@media only screen and (max-width: 1599px) {
    #hero #top-features {
        padding: 3rem 0 3rem 2rem;
        text-align: center;
    }
}
@media only screen and (max-width: 1023px) {
    #hero #top-features {
        padding: 3rem;
    }
}
#hero #top-features #summary {
    font-size: 2.3rem;
    line-height: 2.8rem;
    margin-bottom: 40px;
    text-align: center;
}
@media only screen and (max-width: 1599px) {
    #hero #top-features #summary {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 10px;
        width: 100%;
    }
}
@media only screen and (max-width: 1023px) {
    #hero #top-features #summary {
        padding-top: 270px;
    }
}
#hero #top-features ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0 0 40px 0;
}
@media only screen and (max-width: 1599px) {
    #hero #top-features ul {
        padding: 0;
    }
}
@media only screen and (max-width: 1023px) {
    #hero #top-features ul {
        display: none;
    }
}
#hero #top-features ul li {
    text-align: center;
    width: 33%;
}
#hero #top-features ul li img {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
}
@media only screen and (max-width: 1599px) {
    #hero #top-features ul li img {
        width: 48px;
        height: 48px;
        margin-bottom: 5px;
    }
}
#hero #top-features ul li h3 {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 0 18%;
}
#hero #top-features .signup-link {
    font-size: 1.5rem;
    margin-top: 15px;
    text-align: center;
}
@media only screen and (max-width: 1023px) {
    #hero #top-features .signup-link {
        display: none;
    }
}

#hero #top-features .signup-link a {
    color: black;
}
#hero #top-features a:after {
    content: '»';
}
/* <<< #top-features end */

/* #all-features start >>> */
#all-features {
    background-color: white;
    padding-bottom: 1rem;
    width: 100%;
}
#all-features h2 {
    background-color: var(--color-primary);
    color:  var(--color-on-primary);
    font-size: 42px;
    height: 170px;
    padding-top: 60px;
    text-align: center;
}
@media only screen and (max-width: 1279px) {
    #all-features h2 {
        padding-left: 0;
        font-size: 1.5rem;
        height: 100px;
        padding-top: 35px;
    }
}
#all-features h2 img {
    height: 30px;
    width: 30px;
    margin-right: 10px;
}
@media only screen and (max-width: 1279px) {
    #all-features h2 img {
        width: 20px;
        height: 20px;
    }
}
#all-features ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    left: calc(50% - var(--width-content-large-half) + 80px);
    list-style: none;
    margin-top: 2.25rem;
    max-width: 100%;
    padding: 0;
    position: relative;
    width: calc(var(--width-content-large) - 40px);
}
@media only screen and (max-width: 1599px) {
    #all-features ul {
        left: 70px;
        margin-bottom: 0;
        margin-top: 4rem;
        width: calc(100% - 70px);
    }
}
@media only screen and (max-width: 1279px) {
    #all-features ul {
        left: 0;
        padding-left: 40px;
        width: 100%;
    }
}
@media only screen and (max-width: 1023px) {
    #all-features ul {
        padding-left: 0;
    }
}
#all-features ul li {
    display: block;
    font-weight: 400;
    line-height: 2rem;
    overflow: hidden;
    padding: 2rem;
    position: relative;
    width: calc(33% - 10px);
}
@media only screen and (max-width: 1279px) {
    #all-features ul li {
        padding: 1rem 4rem;
    }
    #all-features ul li:last-of-type {
        padding-bottom: 0;
    }
}
@media only screen and (max-width: 1023px) {
    #all-features ul li {
        width: 100%;
    }
}
#all-features ul li div {
    align-items: top;
    color: var(--color-primary);
    display: flex;
    position: relative;
}
#all-features ul li div h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5rem;
    max-width: 136px;
}
#all-features ul li:nth-of-type(9) div h3 {
    max-width: 220px;
}
#all-features ul li div img {
    height: 50px;
    margin-right: 16px;
    width: 50px;
}
#all-features ul li p {
    font-size: 1.1rem;
    line-height: 1.75rem;
    margin: 0.5rem 0;
    position: relative;
    z-index: 2;
}
/* <<< #all-features end */

/* #testimonials start >>> */
#testimonials {
    background: #E8E8E8;
    clear: both;
    float: left;
    width: 100%;
}
#testimonials > div {
    max-width: 100%;
    left: calc(50% - var(--width-content-large-half));
    padding: 0 6rem;
    position: relative;
    width: var(--width-content-large);
}
@media only screen and (max-width: 1599px) {
    #testimonials > div {
        padding: 3rem;
        left: 0;
        width: 100%;
    }
}
#testimonials > div blockquote {
    display: block;
    float: left;
    line-height: 1.8rem;
    margin: 4rem;
    position: relative;
    text-align: justify;
    width: calc(50% - 8rem);
}
@media only screen and (max-width: 1023px) {
    #testimonials > div blockquote {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    #testimonials > div blockquote:last-of-type {
        margin: 4rem 0;
    }
}
#testimonials > div blockquote:before {
    font-family: 'Times New Roman', Times, serif;
    font-size: 100px;
    opacity: 0.1;
    position: absolute;
}
#testimonials > div blockquote:before {
    content: '“';
    left: -50px;
    top: 20px;
}
#testimonials > div blockquote footer {
    padding-top: 0.8rem;
    font-size: 0.9rem;
}
/* <<< #testimonials end */

/* #quick-sign-up start >>> */
#quick-sign-up {
    background-color: #1C1C1C;
    background-image: url(../img/bg-light.png);
    background-position: center bottom;
    background-repeat: repeat-x;
    clear: both;
    color: white;
    padding: 8rem;
    text-align: center;
}
@media only screen and (max-width: 1023px) {
    #quick-sign-up {
        padding: 2rem;
    }
}
#quick-sign-up #header {
    font-size: 3rem;
}
@media only screen and (max-width: 1023px) {
    #quick-sign-up #header {
        font-size: 2.5rem;
    }
}
#quick-sign-up #sub-header {
    font-size: 1.25rem;
    font-weight: 200;
    padding: 1.5rem 0 2rem 0;
}
#quick-sign-up #results > div {
    font-size: 1.5rem;
    font-style: italic;
    padding-bottom: 2rem;
}
#quick-sign-up #results .error {
    color: #E77;
}
#quick-sign-up #results .success {
    color: #9E9;
}
#quick-sign-up .input-field {
    display: inline;
}
@media only screen and (max-width: 1023px) {
    #quick-sign-up .input-field {
        display: block;
        margin-top: 1rem;
    }
}
#quick-sign-up .input-field input.text {
    background: black;
    border: 2px solid white;
    color: white;
    font-size: 1.5rem;
    margin: 0 1rem;
    padding: 1rem;
    width: calc(40% - 2rem - 4px);
}
@media only screen and (max-width: 1023px) {
    #quick-sign-up .input-field input.text {
        width: 80%;
    }
}
#quick-sign-up .input-field input.text::placeholder {
    color: #DDD;
}
#quick-sign-up .button-row input[type='submit'] {
    background-color: var(--color-primary);
    border: 0;
    color: var(--color-on-primary);
    font-size: 1.5rem;
    margin-top: 2rem;
    padding: 1rem 7rem;
}
@media only screen and (max-width: 1023px) {
    #quick-sign-up .button-row input[type='submit'] {
        padding: 1rem 3rem;
    }
}
/* <<< #quick-sign-up end */

/* #footer start >>> */
#footer {
    background: white;
    text-align: center;
}

#footer i {
    background-image: url(../img/nito-logo-footer.png);
    background-repeat: no-repeat;
    background-size: 127px 46px;
    display: inline-block;
    height: 46px;
    margin: 2rem;
    width: 127px;
}

/* <<< #footer end */

