@import url("https://fonts.googleapis.com/css?family=Mukta:300,400,700");
.tooltip,
.container__sources:before,
.container__build:before,
.container__deploy:before {
    position: absolute;
    right: 0;
    bottom: 100%;
    color: #fff;
    background: #ffb238;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2.5px;
}

.card,
.container__sources div,
.container__build div {
    line-height: 2;
    background: #fff;
    padding: 1.2rem 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px #e6e6e6;
}

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

body {
    min-height: 100vh;
    width: 100%;
    font-family: 'Mukta', sans-serif;
    color: #5f39dd;
    background: #5f39dd;
}

.container {
    margin: 5vh 2.5vw;
    padding: 15vh 0;
    background: #fff;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container svg {
    height: 5rem;
}

.container svg line {
    stroke: #5f39dd;
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-dasharray: 2px 20px;
    animation: animateline 5s linear both infinite;
}

h3 {
    font-size: 1.1rem;
    color: #411fb2;
}

p {
    font-size: 0.95rem;
    font-weight: 300;
}

.container__sources {
    display: flex;
    border-radius: 8px;
    padding: 1.5rem;
    background: #f9f9f9;
    position: relative;
}

.container__sources div {
    text-align: left;
    margin: 0 1rem;
}

.container__build {
    padding: 5vh 5vw;
    border-radius: 3px;
    background: #f9f9f9;
    position: relative;
}

.container__build div {
    margin: 2rem 0;
}

.container__build div svg {
    width: 4rem;
    height: auto;
    fill: #5f39dd;
}

.container__deploy {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
}

@media (max-width: 700px) {
    .container__sources {
        flex-direction: column;
    }
    .container__sources div {
        margin: 1rem 0;
    }
}

@-moz-keyframes animateline {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -5rem;
    }
}

@-webkit-keyframes animateline {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -5rem;
    }
}

@-o-keyframes animateline {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -5rem;
    }
}

@keyframes animateline {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -5rem;
    }
}


/* Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5f39dd;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5f39dd;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5f39dd;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.button {
    background-color: #5f39dd;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button2 {
    background-color: white;
    color: black;
    border-radius: 12px;
    border: 2px solid #5f39dd;
}

.button2:hover {
    background-color: #5f39dd;
    color: white;
}

.scroll-to-top {
    background-color: #5f39dd;
    display: none;
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    font-size: 25px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    position: fixed;
    right: 0px;
    bottom: 50px;
    z-index: 999;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    background-color: grey;
    color: #ffffff;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    top: 0;
    left: 0
}