html, body {
    width: 100%;
    max-width: 100%;
}
body {
    font-family: 'Helvetica', sans-serif;
    background-color: #FFF;
    text-align: center;
    color: #000;
    position: relative;
    margin: 0;
    padding-bottom: 6rem;
}

/* Navigation Bar Styles */
@media only screen and (min-width: 1000px) {
    #index-navigation {
        position: relative;
        display: flex;
        align-items: center;
        height: 70px;
        top: 0;
        max-width: 100%;
        color: #FFFFFF;
        padding-left: 25px;
    }
    #index-navigation #menu {
        position: absolute;
        flex: 1;
        right: 0;
        display: flex;
    }
    #index-navigation #logo-container {
        margin-top: 50px;
        margin-left: -80px;
    }
    #index-navigation #logo-container img {
        width: 50%;
        height: 50%;
    }
    #index-navigation .navigation-list .menu-item {
        display: block;
        color: white;
        text-align: center;
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 14px;
        text-decoration: none;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 10px;
        width: 150px;
    }
    #index-navigation .navigation-list .menu-item:after {
        margin-top: 10px;
        display: block;
        content: '';
        border-bottom: 2px solid #FFF;
        transform: scaleX(0);
        transition: transform 250ms ease-in-out;
    }
    #index-navigation .navigation-list .menu-item:hover:after {
        transform: scaleX(1);
    }
}
@media only screen and (max-width: 1000px) {
    #index-navigation {
        width: 100%;
        color: #FFFFFF;
        background-color: rgba(0, 0, 0, 0.7);
        border-bottom: 1px solid rgba(0,0,0,0.25);
        list-style-type: none;
        padding-top: 10px;
    }
    #index-navigation #menu {
        margin-top: 5px;
        text-align: center;
        padding: 0;
    }
    #index-navigation #logo-container img {
        width: 50%;
        height: 50%;
    }
    .navigation-list .menu-item, #index-navigation .menu-item {
        display: block;
        color: white;
        text-align: center;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 14px;
        text-decoration: none;
        width: 100%;
    }
}

/* Container Styles */
#logo img {
    width: 50px;
    height: 50px;
}
#container #index-container {
    background: -webkit-linear-gradient(135deg, #09f1ff, #994ce8);
    background: linear-gradient(-45deg, #09f1ff, #994ce8);
    min-height: 100vh;
}
/* Index Page Headline Styles */
#container #headline .top-icon {
    background-image: url('../images/logo/logoandtext.svg');
    margin: auto;
    margin-top: 25px;
    background-size: 100%;
    cursor: pointer;
    transition: border-radius .3s ease;
    width: 192px;
    height: 192px;
    transition: all 0.25s linear;
}
#container #headline h1 {
    line-height: 1.2;
    font-weight: 700;
    font-size: 50px;
    color: #FFF;
}
#container #headline h2 {
    margin-top: -20px;
    line-height: 1.2;
    color: #FFF;
}
#container .download-button {
    cursor: pointer;
    margin: auto;
    text-decoration: none;
    -webkit-transition: all .2s ease;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    outline: 0;
    color: #FFFFFF;
    border-radius: 20px;
    border: 2px solid #e056fd;
    background-color: #e056fd;
    padding: 10px 20px;
    max-width: 250px;
    transition: border-color .3s ease, background-color .3s ease;
}
#container .download-button:hover {
    border: 2px solid #FFF;
    background-color: #d046ed;
}

#container button.download-button {
    background-color: #74b9ff;
    border-color: #74b9ff;
    margin-top: 5px;
    min-width: 290px;
}
#container button.download-button:hover {
    border: 2px solid #FFF;
    background-color: #0984e3;
}
/* Index Page Product Information Styles */
#container #product-information {
    padding-top: 5%;
}
@media only screen and (min-width: 900px) {
    #container #product-information #info-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-flow: row wrap;
        width: 950px;
        margin: auto;
    }
    #container #product-information #info-container .info {
        border-top: 1px solid #ff9ff3;
        min-height: 200px;
        width: 400px;
        text-align: left;
        padding: 5px 15px;
    }
}
@media only screen and (max-width: 900px) {
    #container #product-information #info-container {
        width: 100%;
        margin: auto;
    }
    #container #product-information #info-container .info {
        border-top: 1px solid #ff9ff3;
        min-height: 200px;
        max-width: 400px;
        text-align: left;
        padding: 5px 15px;
        margin: auto;
    }
}

#container #product-information #info-container .info h2 {
    color: #FFF;
    font-size: 24px;
    font-weight: bold;
}
#container #product-information #info-container .info p {
    word-wrap: break-word;
    color: #FFF;
}
@media only screen and (min-width: 900px) {
    #container #plans {
        padding-top: 50px;
    }
}
/* Index Page Plan Styles - Unused */
@media only screen and (min-width: 900px) {
    #container #plan-table {
        padding-bottom: 20px;
        max-width: 950px;
        margin: auto;
        margin-top: 35px;
        display: flex;
        justify-content: space-between;
        padding-bottom: 45px;
    }
    #container #plan-table .column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #FFF;
        box-shadow: 2px 6px 20px 3px rgba(0,0,0,0.09);
        border-radius: 10px;
        padding: 15px;
        margin-right: 25px;
        margin-left: 25px;
    }
}
@media only screen and (max-width: 900px) {
    #container #plan-table {
        padding-bottom: 20px;
        max-width: 700px;
        margin: auto;
        margin-top: 35px;
        padding-bottom: 45px;
    }
    #container #plan-table .column {
        width: 80%;
        margin: auto;
        align-items: center;
        background-color: #FFF;
        box-shadow: 2px 6px 20px 3px rgba(0,0,0,0.09);
        border-radius: 10px;
        margin-bottom: 20px;
        padding: 15px;
    }
    
}
#container #plan-table .row {
    width: 100%;
    padding: 5px 0;
    text-align: left;
    min-height: 85px;
    border-top: 1px solid #BDC3C7;
}
#container #plans h2 {
    color: #FFF;
}
#container #plan-table .row p {
    color: #6C6F73;
    font-size: 18px;
}
#container #plan-table .plan-description {
    color: #6C6F73;
    height: 100px;
    width: 100%;
    line-height: 1.2;
    text-align: left;
}
#container #plan-table .month {
    font-size: 20px;
}
#container #plan-table .plan-price {
    margin: 10px 0;
    font-size: 2.3em;
    color: #6C6F73;
}
#container #plan-table .plan-name {
    font-size: 24px;
    color: #BEC8CE;
    margin-bottom: 10px;
}
/* Index Page Slideshow Styles */
/* The Modal (background) */
#slideshow-modal {
    display: none;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background:rgba(0,0,0,0.7);
}

/* Modal Content */
.modal .modal-content {
    position: relative;
    background-color: #2c2f34;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    border-radius: 20px;
}
.modal .modal-content .slideNumber {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}
.modal .caption-container {
    background-color: #2c2f34;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    color: #fff;
    padding: 10px 25px;
}
/* The Close Button */
.modal .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.modal .close:hover, .modal .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.modal .slide {
    display: none;
}
.modal .slide img {
    width: 100%;
}
/* Next & previous buttons */
.modal .previous, .modal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    border: none;
    background-color: transparent;
    outline: none;
    color: #fff;
}

/* Position the "next button" to the right */
.modal .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.modal .previous {
    left: 0;
}
/* On hover, add a black background color with a little bit see-through */
.modal .previous:hover, .modal .next:hover {
    background-color: #e056fd;
}
.modal .column {
    display: none;
}
.popout {
    animation: popout 0.5s ease;
    -webkit-animation: popout 0.5s ease;
}
@keyframes popout {
    from{transform:scale(0)}
    80%{transform:scale(1.2)}
    to{transform:scale(1)}
}
@-webkit-keyframes popout {
    from{-webkit-transform:scale(0)}
    80%{-webkit-transform:scale(1.2)}
    to{-webkit-transform:scale(1)}
}
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
/* Tooltip text */
.tooltip .tooltiptext {
    width: 95%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 80%;
    opacity: 0;
    transition: opacity 0.3s;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    opacity: 1;
}

/* Download Page Styles */
#downloading {
    padding-top: 50px;
}
#downloading h2 {
    color: #fff;
}
#downloading a {
    color: #fff;
}
#downloading a:hover {
    color: #e056fd;
}
.roadmap-wrapper h2 {
    text-align: center;
}
.roadmap-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}
.quarter {
    width: 400px;
    min-height: 400px;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    color: #6C6F73;
    text-align: left;
    margin-right: 50px;
    margin-top: 20px;
}
.quarter:last-child {
    margin-right: 0px;
}
.roadmap a {
    color: #6C6F73;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    transition: var(--default-transition);
    -webkit-transition: var(--default-transition);
}
.roadmap a:hover {
    color: var(--green);
    border-bottom-color: var(--green);
}
.roadmap p {
    padding-left: 10px;
}
.roadmap p::before, .roadmap p.complete::before {
    content: '';
    padding-left: 10px;
    margin-left: -12px;
    border-left: 2px solid var(--green);
    height: 50%;
    left: 0;
    top: 25%;
}
.roadmap p.complete::before {
    border-left: 2px solid var(--green);
}
@media screen and (max-width: 900px) {
    .quarter {
        margin-right: 0px;
    }
}

/* FAQ Styles */
.faq {
    width: 50%;
    margin: auto;
    padding-top: 45px;
    padding-bottom: 145px;
}
@media screen and (max-width: 900px) {
    .faq {
        width: 70%;
    }
}
@media screen and (max-width: 700px) {
    .faq {
        width: 90%;
    }
}
.faq .accordion {
    width: 100%!important;
    display: flex;
    align-items: center;
}
.faq .panel {
    width: -webkit-calc(100% - 35px)!important;
    width: -moz-calc(100% - 35px)!important;
    width: calc(100% - 35px)!important;
}
.faq h1 {
    text-align: center;
}
.faq p {
    color: #6C6F73;
    line-height: 1.2;
    text-align: left;
}
.panel-button {
    outline: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: all 0.25s linear;
    padding: 0;
}
.panel-button:hover {
    color: var(--green);
}
.faq a {
    color: #6C6F73;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    transition: all 0.2s linear;
}
.faq a:hover {
    color: var(--green);
}
.faq button {
    font-weight: 600;
}
.fa-plus {
    margin-right: 10px;
    color: var(--text-color)!important;
    transition: all 0.2s linear;
}