html,
body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
p,
li {
    font-family: Helvetica Neue;
}

.wrapper {
    max-width: 1300px;
    display: block;
    margin: 0 auto;
    width: 90%;
}

.flex {
    display: flex;
}

.menu-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
}

.menu-toggle img {
    width: 50px;
}

.mobile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 90px;
    width: 200px;
    background: #260e7f;
}

.open {
    display: block;
}

.mobile-menu p {
    padding: 10px 0;
    color: #ffffff;
    text-align: center;
}

.mobile-menu a {
    text-decoration: none;
}

.menubar {
    padding: 20px 0;
    display: flex;
    width: 100%;
}

.menubar ul {
    margin: 0;
    padding: 0;
}

.menubar .normal-menu {
    display: flex;
    flex: 1;
}

.menubar .normal-menu a {
    flex: 1;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.hidden {
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.dropdown:hover .hidden {
    display: block;
    transition: opacity 0.5s;
    opacity: 1;
}

.dropdown .hidden p:hover {
    background-color: lightgrey;
}

#bubbleCanvas {
    position: absolute;
    top: 0px;
    left: 100px;
    z-index: -1;
}

.normal .menubar {
    background: linear-gradient(to right, #4e2a84, #260e7f);
}

.menubar .hidden {
    position: absolute;
    background: #fff;
    left: -50%;
    width: 230px;
    top: 60px;
    border-radius: 10px;

    &::after {
        content: '';
        border-bottom: solid 15px #fff;
        border-top: solid 15px transparent;
        border-left: solid 15px transparent;
        border-right: solid 15px transparent;
        position: absolute;
        top: -30px;
        width: 0;
        height: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

.menubar .hidden a {
    color: #000;
}

.menubar .hidden li {
    list-style-type: none;
}

.menubar .dropdown {
    position: relative;
    flex: 1;
}

.menubar .dropdown .hidden p {
    margin: 0;
    padding: 10px 0;
}

.menubar nav p {
    font-family: Helvetica Neue;
}

.homepage .menubar {
    position: absolute;
}

.logo {
    flex: 2;
    z-index: 1;
}

.logo-img {
    width: 120px;
}

.landing {
    height: 500px;
    z-index: -1;
    position: relative;
    background: #11004b;
    overflow: hidden;
}

.landing .wrapper {
    position: relative;
    z-index: 10;
    max-width: 1100px;
}

.landing h2 {
    position: absolute;
    color: #fff;
    top: 100px;
    left: 50px;
    font-family: Helvetica;
    font-weight: Bold;
    font-size: 50pt;
    z-index: 1;
}

#divider1 {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.landing h3 {
    position: absolute;
    color: #fff;
    top: 250px;
    left: 50px;
    font-family: Helvetica;
    font-size: 40pt;
    font-weight: lighter;
    font-style: italic;
}

.landing .twist {
    position: absolute;
    right: -20px;
    bottom: -20px;
    height: 100%;
    opacity: 0.5;
    transform-origin: bottom right;
}

.get-started {
    z-index: 1;
    position: absolute;
    top: 360px;
    left: 120px;
    background: #fff;
    border-radius: 10px;
    font-size: 20px;
    font-family: Helvetica Neue;
    color: #341993;
    font-weight: bold;
    width: 130px;
    text-align: center;
    padding: 12px 15px;
}

.button {
    width: 140px;
}

.button p {
    background: #341993;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    width: 130px;
    padding: 8px 10px;
}

.source-code {
    position: absolute;
    left: 50%;
    top: 50px;
    color: #fff;
    font-size: 16px;
    opacity: 50%;
    text-shadow: 0 0 20px #fff;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0) scaleY(1) scaleX(1) scale(1) rotate(0)
    }

    25% {
        transform: translateY(-10px) translateX(-10px) scaleX(0.95) scaleY(1) scale(1.1) rotate(1deg)
    }

    50% {
        transform: translateY(0) scaleY(1) scaleX(1) scale(1) rotate(0)
    }

    75% {
        transform: translateY(10px) translateX(10px) scaleX(0.95) scaleY(1.1) scale(1) rotate(-1deg)
    }

    100% {
        transform: translateY(0) scaleY(1) scaleX(1) scale(1) rotate(0)
    }
}

@keyframes growShrink {
    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#top-left-tri {
    position: absolute;
    top: -50px;
    left: -50px;
    opacity: 50%;
}

#bottom-right-tri {
    position: absolute;
    bottom: -70px;
    right: -50px;
    opacity: 50%;
}

.boxes {
    margin: 40px 0 60px 0;
    position: relative;
}

.boxes .button {
    margin: 40px auto 20px auto;
    display: block;
}

.boxes .flex {
    width: 100%;
    justify-content: space-around;
}

.boxes .box {
    flex: 1;
    border-radius: 10px;
    width: 100%;
    max-width: 200px;
    padding: 20px;
    background: #f4f2ff;
}

.title {
    font-family: Helvetica Neue;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin: 0 0 50px 0;

    &::after {
        content: '';
        width: 320px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), #341993, rgba(255, 255, 255, 0));
        height: 3px;
        position: absolute;
        left: 0;
        top: 50px;
        right: 0;
        margin: 0 auto;
    }
}

.boxes h3 {
    font-family: Helvetica Neue;
    font-size: 17px;
    text-align: center;
}

.boxes p {
    font-family: Helvetica Neue;
    font-size: 15px;
    text-align: center;
}


.boxes img {
    width: 70px;
    height: 70px;
    margin: 6px auto 30px auto;
    display: block;
}

.howitworks {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #11004b 20%, #31006e 80%);
}

.howitworks .title {
    font-family: Helvetica Neue;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    color: #fff;

    &::after {
        content: '';
        width: 320px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
        height: 3px;
        position: absolute;
        left: 0;
        top: 50px;
        right: 0;
        margin: 0 auto;
    }
}

.how-it-works-subtext {
    text-align: center;
    color: #ddd;
    font-family: Helvetica Neue;
    font-size: 20px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.timelapse {
    max-width: 500px;
    margin: 0 auto;
    display: block;
    margin-top: 60px;
}

.timelapse .time {
    width: 100%;
    background: #3a2c6f;
    border-radius: 10px;
    border: solid 3px #fff;
    margin-bottom: 80px;
    padding: 20px 0;
    position: relative;
}

.timelapse .time p,
.timelapse .circle p {
    font-family: Helvetica Neue;
    font-size: 26px;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.timelapse .circle p {
    padding-top: 25px;
}

.timelapse img {
    height: 40px;
    position: absolute;
    left: 50px;
    top: 15px;
}

.timelapse .circle {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    display: block;
    background-image: url('/public/img/rocket.svg');
    background-color: #3a2c6f;
    border: solid 3px #fff;
    background-size: cover;
    border-radius: 100%;
    margin-bottom: 80px;
    animation: growShrink 2s infinite;
    animation-timing-function: linear;
}

.animated-path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 3;
    stroke-dasharray: 8;
    stroke-dashoffset: 0;
    animation: dashmove 2s linear infinite;
}

.timelapse .left {
    position: absolute;
    left: -140px;
    top: 40px;
}

.timelapse .right {
    position: absolute;
    right: -150px;
    top: 40px;
}

.timelapse .bottom {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 70px;
}

@keyframes dashmove {
    to {
        stroke-dashoffset: -16;
    }
}

.hidden-bottom {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 110px;
    height: 60px;
}



.contact-form {
    background: #f8f4ff;
    padding: 0 0 40px 0;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ede8ff;
    border: solid 1px #cebdff;
    border-top: solid 10px #11004b;
    border-radius: 10px;
    padding: 30px;
    border-radius: 10px;
    font-family: Helvetica, Arial, sans-serif;
}

.contact-container h2 {
    text-align: center;
    color: #000000;
    margin-bottom: 30px;
    font-size: 28px;
    margin-top: 0;
}

.contact-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.contact-container input[type="text"],
.contact-container input[type="email"],
.contact-container select,
.contact-container textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: solid 1px #cebdff;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-container textarea {
    resize: vertical;
}

.contact-container button {
    background-color: #341993;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.contact-container button:hover {
    background-color: #260e7f;
}


.main-content {
    min-height: 600px;
}

.icon-circle {
    width: 60px;
    margin-right: 30px;
}

.services {
    max-width: 900px;
    display: block;
    margin: 30px auto;
    width: 100%;
}

.service-block {
    margin-bottom: 30px;
}

.alt .text-content {
    margin-left: 40px;
}

.text-content {
    flex: 2;
}

.image-content {
    flex: 1;
}

.services p {
    max-width: 500px;
}

.ceo-circle {
    width: 200px;
    margin: 0 auto 20px auto;
    display: block;
}
.ceo-circle img {
    width: 100%;
    border-radius: 100%;
}
.ceo-circle h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 0;
}
.ceo-circle p {
    text-align: center;
    margin: 0;
    font-size: 16px;
}

.comparison-table {
    margin-top: 4rem;
    padding: 1rem;
    background-color: #f9f9fc;
    border-radius: 8px;
    overflow-x: auto;
}

.comparison-table h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #2c2c2c;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 1rem;
}

.comparison-table thead {
    background-color: #4e2a84;
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border: 1px solid #ddd;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f0eef9;
}

.comparison-table tbody tr:hover {
    background-color: #e2dcf6;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
}






footer {
    padding: 50px 0;
    min-height: 100px;
    background-color: lightgrey;
}

@media screen and (max-width: 800px) {

    .menubar .normal-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo {
        max-width: 120px;
        margin: 0 auto;
        display: block;
    }

    /* homepage */

    .landing h2 {
        position: relative;
        top: auto;
        left: auto;
        font-size: 40pt;
        margin-top: 120px;
        margin-bottom: 10px;
        text-align: center;
        word-wrap: break-word;
    }

    .get-started {
        position: relative;
        left: auto;
        top: auto;
        margin: 20px auto;
        display: block;
    }

    #bubbleCanvas {
        left: 0
    }

    .twist {
        display: none;
    }
    
    .landing h3 {
        position: relative;
        top: auto;
        left: auto;
        font-size: 35pt;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .boxes .flex {
        display: block;
    }

    .boxes .box {
        margin: 0 auto;
        max-width: 300px;
        margin-bottom: 50px;
    }

    .source-code {
        display: none;
    }

    .howitworks img {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
        width: 50px;
        display: block;
    }

    .howitworks .time {
        max-width: 350px;
        margin: 60px auto;
        height: 70px;
        display: block;
    }

    .howitworks .left,
    .howitworks .right {
        top: 80px
    }
    .howitworks .bottom {
        top: 110px;
        height: 50px;
    }

    /* Services Page */
    .services .flex {
        display: block;
    }

    .services .text-content .flex {
        display: flex;
    }

    .text-content {
        margin: 0 auto;
        display: block;
        max-width: 500px;
    }

    .image-content {
        margin: 0 auto;
        display: block;
        max-width: 300px;
        margin-top: 50px;
    }

    .image-content img {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .landing {
        height: auto;
    }
    .howitworks .left,
    .howitworks .right {
        display: none;
    }
    .howitworks .hidden-bottom {
        display: block;
    }
}