body{
    overflow-x: hidden;
}
#start h3,
#accelerate h3,
#delight h3 {
    letter-spacing: -0.05em;
    font-size: 8vmin;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 35px;
    text-align: center;
    text-transform: capitalize
}

#develop h6,
#start h6,
#preview h6,
#ship h6,
#delight h6 {
    font-size: 12px;
    letter-spacing: 0.25rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center
}

#develop .path-line,
#preview .path-line,
#ship .path-line {
    height: 100px;
    width: 1px;
    display: block;
    margin: 10px auto 0
}

#develop .circled-number,
#preview .circled-number,
#ship .circled-number {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 300;
    font-size: 16px;
    line-height: 38px;
    margin: auto;
    text-align: center
}

#develop .gradient-word,
#preview .gradient-word,
#ship .gradient-word {
    display: block;
    margin-top: 10px;
    font-size: 28px;
    font-weight: 700
}

@-webkit-keyframes h2-Animation-one {
    from {
        background: transparent;
        color: black;
        background-clip: border-box
    }

    to {
        background: -webkit-gradient(linear, left top, right top, from(#00315f), color-stop(#007cf0), to(#00dfd8));
        background: linear-gradient(90deg, #00315f, #007cf0, #00dfd8);
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text
    }
}

@keyframes h2-Animation-one {
    from {
        background: transparent;
        color: black;
        background-clip: border-box
    }

    to {
        background: -webkit-gradient(linear, left top, right top, from(#00315f), color-stop(#007cf0), to(#00dfd8));
        background: linear-gradient(90deg, #00315f, #007cf0, #00dfd8);
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text
    }
}

@-webkit-keyframes h2-Animation-two {
    from {
        background: transparent;
        color: black;
        background-clip: border-box
    }

    to {
        background: -webkit-gradient(linear, left top, right top, from(#42166e), color-stop(#7928ca), to(#ff0080));
        background: linear-gradient(90deg, #42166e, #7928ca, #ff0080);
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text
    }
}

@keyframes h2-Animation-two {
    from {
        background: transparent;
        color: black;
        background-clip: border-box
    }

    to {
        background: -webkit-gradient(linear, left top, right top, from(#42166e), color-stop(#7928ca), to(#ff0080));
        background: linear-gradient(90deg, #42166e, #7928ca, #ff0080);
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text
    }
}

@-webkit-keyframes h2-Animation-three {
    from {
        background: transparent;
        color: black;
        background-clip: border-box
    }

    to {
        background: -webkit-gradient(linear, left top, right top, from(#962f2f), color-stop(#ff4d4d), to(#f9cb28));
        background: linear-gradient(90deg, #962f2f, #ff4d4d, #f9cb28);
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text
    }
}

@keyframes h2-Animation-three {
    from {
        background: transparent;
        color: black;
        background-clip: border-box
    }

    to {
        background: -webkit-gradient(linear, left top, right top, from(#962f2f), color-stop(#ff4d4d), to(#f9cb28));
        background: linear-gradient(90deg, #962f2f, #ff4d4d, #f9cb28);
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text
    }
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Inter", sans-serif
}

section {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}

.blury {
    -webkit-filter: blur(20px);
    filter: blur(20px)
}

::-moz-selection {
    background-color: #78f8e1;
    color: black
}

::selection {
    background-color: #78f8e1;
    color: black
}

header {
    width: 100vw;
    height: 60px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95)
}

header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 80%;
    margin: auto
}

header nav a {
    text-align: center;
    text-decoration: none;
    color: dimgray;
    font-size: 13px;
    margin: 0 15px
}

header nav a:nth-of-type(2) {
    margin-left: auto
}

header nav a:nth-of-type(5) {
    margin-left: auto
}

header nav a:last-of-type {
    color: white;
    background-color: black;
    border: 1px solid black;
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 80px;
    max-width: 80px;
    -webkit-transition: background-color 200ms ease-in-out;
    transition: background-color 200ms ease-in-out
}

header nav a:last-of-type:hover {
    color: black;
    background-color: transparent
}

header nav #toggle-btn {
    height: 40px;
    width: 40px;
    margin-left: auto;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    display: none
}

header nav #toggle-btn:hover {
    padding: 5px
}

header nav #toggle-btn .line {
    display: block;
    height: 2px;
    width: 30px;
    border-radius: 20px;
    background-color: black
}

header nav #mob-nav {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    position: absolute;
    -webkit-box-shadow: 5px 0px 20px black;
    box-shadow: 5px 0px 20px black;
    top: -350px;
    left: 0;
    -webkit-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out
}

header nav #mob-nav a {
    border-bottom: 1px solid dimgray;
    display: block;
    margin: 20px auto;
    padding-bottom: 12px;
    font-size: 16px;
    color: black
}

header nav #mob-nav a:last-of-type {
    color: white;
    max-width: 200px;
    border-bottom: 1px solid black
}

header nav #mob-nav a:last-of-type:hover {
    color: black
}

@media (max-width: 768px) {
    header {
        width: 100vw;
        height: 60px;
        position: -webkit-sticky;
        position: sticky
    }

    header nav {
        width: 100%
    }

    header nav a {
        display: none
    }

    header nav a:first-of-type {
        display: inline-block
    }

    header nav #toggle-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 2
    }

    header nav .show {
        top: 60px !important
    }
}

#hero {
    width: 100vw
}

#hero h2 {
    text-align: center;
    font-size: 22vmin;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 100%;
    margin: 0;
    padding: 0
}

#hero h2::-moz-selection {
    background-color: transparent
}

#hero h2::selection {
    background-color: transparent
}

#hero h2:nth-of-type(1) {
    margin-top: 50px;
    -webkit-animation: h2-Animation-one 5s ease infinite alternate 2s;
    animation: h2-Animation-one 5s ease infinite alternate 2s
}

#hero h2:nth-of-type(2) {
    -webkit-animation: h2-Animation-two 5s ease infinite alternate 5s;
    animation: h2-Animation-two 5s ease infinite alternate 5s
}

#hero h2:nth-of-type(3) {
    -webkit-animation: h2-Animation-three 5s ease infinite alternate 8s;
    animation: h2-Animation-three 5s ease infinite alternate 8s
}

#hero .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px
}

#hero .btns a {
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 15px;
    border-radius: 8px;
    padding: 10px 25px
}

#hero .btns a:first-of-type {
    color: white;
    background-color: black;
    border: 1px solid black;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out
}

#hero .btns a:first-of-type:hover {
    color: black;
    background-color: white
}

#hero .btns a:last-of-type {
    border: 1px solid transparent;
    color: dimgray;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out
}

#hero .btns a:last-of-type:hover {
    border: 1px solid black;
    color: black
}

#hero p {
    margin: 50px auto 0;
    color: dimgray;
    text-align: center;
    line-height: 2rem;
    font-size: 18px;
    width: 80%
}

@media (max-width: 768px) {
    #hero h2 {
        -webkit-animation-name: none !important;
        animation-name: none !important
    }

    #hero h2:first-of-type {
        text-shadow: 8px 0px 2px #007cf0
    }

    #hero h2:nth-of-type(2) {
        text-shadow: 8px 0px 2px #7928ca
    }

    #hero h2:last-of-type {
        text-shadow: 8px 0px 2px #f9cb28
    }

    #hero .btns a {
        font-size: 16px;
        padding: 10px 16px;
        min-width: 170px
    }

    #hero p {
        width: 90%;
        font-size: 16px
    }
}

#develop {
    width: 100%;
    margin-top: 50px;
    text-align: center
}

#develop .path-line {
    background: -webkit-gradient(linear, left top, right top, from(#00315f), color-stop(#007cf0), to(#00dfd8));
    background: linear-gradient(90deg, #00315f, #007cf0, #00dfd8)
}

#develop .circled-number {
    background: -webkit-gradient(linear, left top, right top, from(#00315f), color-stop(#007cf0), to(#00dfd8));
    background: linear-gradient(90deg, #00315f, #007cf0, #00dfd8)
}

#develop .gradient-word {
    color: #007cf0
}

#start .pars {
    margin: auto;
    width: 80%;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

#start .pars p {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding: 10px 20px;
    line-height: 1.5rem;
    color: dimgray
}

#start .flex-container {
    width: 80%;
    margin: 50px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

#start .flex-container .left {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

#start .flex-container .left img {
    max-width: 90%
}

#start .flex-container .right {
    height: 100%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

#start .flex-container .right div:nth-of-type(2) {
    margin-bottom: 8vmax;
    margin-top: 8vmax
}

#start .flex-container .right div h4 {
    width: 100%;
    font-size: 20px
}

#start .flex-container .right div p {
    width: 100%;
    color: dimgray
}

@media (max-width: 992px) {
    #start .pars {
        width: 90%;
        margin-top: 50px;
        display: block
    }

    #start .flex-container {
        width: 90%;
        margin: 50px auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    #start .flex-container .left {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

    #start .flex-container .left img {
        max-width: 100%;
        margin-bottom: 30px
    }

    #start .flex-container .right {
        width: 90%;
        margin: auto
    }

    #start .flex-container .right div:nth-of-type(2) {
        margin-bottom: 5vmax;
        margin-top: 5vmax
    }
}

#preview {
    width: 100%;
    margin-top: 50px;
    text-align: center
}

#preview .path-line {
    background: -webkit-gradient(linear, left top, right top, from(#42166e), color-stop(#7928ca), to(#ff0080));
    background: linear-gradient(90deg, #42166e, #7928ca, #ff0080)
}

#preview .circled-number {
    background: -webkit-gradient(linear, left top, right top, from(#42166e), color-stop(#7928ca), to(#ff0080));
    background: linear-gradient(90deg, #42166e, #7928ca, #ff0080)
}

#preview .gradient-word {
    color: #7928ca
}

#accelerate>p {
    width: 80%;
    text-align: center;
    padding: 10px 20px;
    margin: auto;
    line-height: 1.5rem;
    color: dimgray
}

#accelerate .flex-container {
    width: 80%;
    margin: 50px auto 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#accelerate .flex-container .flex-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

#accelerate .flex-container .flex-item img {
    max-width: 90%
}

#accelerate .flex-container .flex-item h4 {
    font-size: 20px
}

#accelerate .flex-container .flex-item p {
    color: dimgray;
    padding-top: 20px
}

@media (max-width: 992px) {
    #accelerate .flex-container {
        width: 90%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    #accelerate .flex-container .flex-item {
        text-align: center
    }

    #accelerate .flex-container .flex-item:first-of-type {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    #accelerate .flex-container .flex-item:last-of-type {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    #accelerate .flex-container .flex-item img {
        max-width: 100%
    }

    #accelerate .flex-container .flex-item p {
        margin: 0 auto 20px;
        width: 100%
    }
}

#ship {
    width: 100%;
    margin-top: 50px;
    text-align: center
}

#ship .path-line {
    background: -webkit-gradient(linear, left top, right top, from(#962f2f), color-stop(#ff4d4d), to(#f9cb28));
    background: linear-gradient(90deg, #962f2f, #ff4d4d, #f9cb28)
}

#ship .circled-number {
    background: -webkit-gradient(linear, left top, right top, from(#962f2f), color-stop(#ff4d4d), to(#f9cb28));
    background: linear-gradient(90deg, #962f2f, #ff4d4d, #f9cb28)
}

#ship .gradient-word {
    color: #ff4d4d
}

#delight .pars {
    margin: auto;
    width: 80%;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

#delight .pars p {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding: 10px 20px;
    line-height: 1.5rem;
    color: dimgray
}

#delight img {
    display: block;
    margin: auto;
    background-color: #007cf0;
    max-width: 100%
}

#delight .stats {
    width: 100%;
    background-color: #fafafa;
    border: 1px solid #e9e9e9
}

#delight .flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#delight .flex-container .flex-item {
    padding: 30px 0
}

#delight .flex-container .flex-item span {
    text-align: center;
    display: block;
    font-size: 50px;
    font-weight: 700
}

#delight .flex-container .flex-item span:last-of-type {
    font-weight: 300;
    font-size: 16px;
    color: dimgray
}

#delight h6 {
    margin: 50px auto
}

@media (max-width: 992px) {
    #delight .pars {
        width: 90%;
        margin-top: 50px;
        display: block
    }

    #delight .flex-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    #delight .flex-container .flex-item {
        padding: 20px 0
    }
}

footer {
    text-align: center;
    color: dimgray;
    font-size: 12px;
    padding-bottom: 30px
}

/*# sourceMappingURL=styles.css.map */