body, html {
    height: auto !important;
    max-width: 100%;
}

body {
    position: relative;
    overflow-x: hidden;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

html {
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow: touch;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.b-text {
    font-weight: bold !important;
}

.hero-svg-cont {
    padding: 0px;
}

.hero-body {
    padding: 3rem 1.5rem;
}

.c-card {
    margin-left: 0px !important;
    margin-right: 0px !important;
    border-radius: 0px;
    box-shadow: none;
    -webkit-box-shadow: none;
    border: .25px solid #E6ECF8;
}

.c-body {
    padding: 45px 45px;
}

.c-hr {
    width: 50%;
    border-color: #8C43ff;
}

.abs-vs {
    border-width: 2px;
    position: absolute;
    left: 25%;
    bottom: 28px;
}

.h-cont {
    background-color: #8C43FF;
}

.md-form input[type=email]:focus:not([readonly]), .md-form input[type=text]:focus:not([readonly]), .md-form textarea.md-textarea:focus:not([readonly]) {
    box-shadow: 0px 1px 0px 0px #8C43FF;
    -webkit-box-shadow: 0px 1px 0px 0px #8C43FF;
    border-bottom: 1px solid #8C43ff;
}

.md-form input[type=email]:focus:not([readonly])+label, .md-form input[type=text]:focus:not([readonly])+label, .md-form textarea.md-textarea:focus:not([readonly])+label {
    color: #8C43FF;
}

.md-form .prefix.active {
    color: #8C43FF;
}

#wrap-svg {
    z-index: 1030;
}

.spin-ygear {
    animation-name: spin-ygear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes spin-ygear {
    0% {
        transform: rotate(0deg);
        transform-origin: 47% 49%;
    }
    100% {
        transform: rotate(360deg);
        transform-origin: 47% 49%;
    }
}

.spin-rgear {
    animation-name: spin-rgear;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes spin-rgear {
    0% {
        transform: rotate(0deg);
        transform-origin: 23% 74%;
    }
    100% {
        transform: rotate(360deg);
        transform-origin: 23% 74%;
    }
}

.spin-bgear {
    animation-name: spin-bgear;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

@keyframes spin-bgear {
    0% {
        transform: rotate(0deg);
        transform-origin: 69% 73%;
    }
    100% {
        transform: rotate(360deg);
        transform-origin: 69% 73%;
    }
}

.fadeout {
    animation-name: fadeout;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#hero-profile {
    animation-name: fadein;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    position: relative;
    top: 215px;
    left: 0px;
    height: 128px;
    width: 128px;
    opacity: 0
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 576px) {
    #hero-profile {
        top: 185px;
    }
}

@media screen and (min-width: 577px) {
    #hero-profile {
        top: 206px;
    }
}

.style9, .style10, .style22 {
    animation-name: gearsInLeft;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes gearsInLeft {
    0% {
        transform: translateX(-100%)
    }
    100% {
        transform: translateX(0%)
    }
}

.style4 {
    animation-name: changeColor;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes changeColor {
    0% {
        fill: #fff;
    }
    100% {
        fill: #6354a5;
    }
}

.style5, .style3, .style20 {
    animation-name: dropIn;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes dropIn {
    0% {
        transform: translateY(-280px)
    }
    100% {
        transform: translateY(0px)
    }
}