@import url("https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&display=swap");

* {
    -webkit-overflow-scrolling: touch;
}

html,
div,
header,
footer,
table,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

h1 {
    font-weight: 700;
    line-height: 1.1;
}

h3,
h4 {
    font-weight: 700;
}

p {
    color: #555;
}

.main-wrapper {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 15px 25px;
    overflow-x: hidden;
}

.content-wrapper {
    margin: 0 auto;
}

.header-background {
    background: rgb(36, 215, 252);
    background: linear-gradient(
        305deg,
        rgba(36, 215, 252, 1) 0%,
        rgba(37, 129, 213, 1) 100%
    );
    position: absolute;
    z-index: -10;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh + 100px);
    overflow: hidden;
}

.header-background:after {
    content: "";
    background: white;
    bottom: 0;
    display: block;
    height: 100px;
    left: 0;
    right: 0;
    position: absolute;
    transform: skewY(-2deg);
    transform-origin: 100%;
    z-index: -1;
}

.header-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(https://i.vimeocdn.com/video/749814481.webp?mw=1400&mh=804)
        no-repeat;
    background-size: cover;
    opacity: 0.3;
}

header {
    height: 100vh;
    margin-bottom: 200px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px;
}

.main-nav ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
}

.main-nav li {
    color: white;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.main-nav li a {
    color: white;
}

.main-nav .logo {
    flex-grow: 1;
    color: white;
    text-transform: none;
    position: relative;
    left: 0;
    top: 0;
    justify-content: left;
    align-items: center;
    background-size: contain;
}

.main-nav .logo img {
    height: 3.5vw;
    min-height: 50px;
}

.main-nav .sign-up {
    margin-right: 0;
    border: 1px solid white;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 200ms ease-in-out;
}

.main-nav .sign-up:hover {
    background: white;
    color: #2e44b6;
}

.close-btn {
    display: hidden;
}

.hero-wrapper {
    margin: 100px auto 200px auto;
    position: relative;
    display: flex;
    overflow: visible;
    display: flex;
    justify-content: left;
    padding: 50px 150px;
}

.hero-right {
    width: 70vw;
    height: 100vw;
    left: 40vw;
    position: absolute;
    z-index: 9999999;
    margin-top: -150px;
    margin-left: -50px;
}

.hero-right img {
    object-fit: contain;
    width: 100%;
}

.hero-left {
    width: 40vw;
    z-index: 10;
}

.hero-left h1 {
    font-size: 3rem;
    color: white;
    font-weight: 900;
}

.hero-left p {
    margin: 25px 0;
    color: whitesmoke;
    font-weight: 100;
    font-size: 1.2rem;
}

.hero-left ul {
    margin-left: 25px;
    list-style: none;
    margin-bottom: 25px;
}

.hero-left li::before {
    content: "\2022";
    position: absolute;
    left: 5px;
    color: #2e44b6;
}

.hero-left ul li {
    color: whitesmoke;
}

.hero-left button {
    margin: 15px 0;
    padding: 15px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
}

.hero-left button:hover {
    cursor: pointer;
}

.hero-left-proof {
    padding: 20px;
    margin-top: 25px;
    width: 100%;
    background: url(/images/proof.png) no-repeat;
    background-size: contain;
    opacity: 1;
}

.video-link button {
    background: white !important;
    margin-left: 15px;
    color: #2e44b6 !important;
    border: none;
    z-index: 9999999999999999999999999 !important;
    box-shadow: 0px -5px 50px -10px rgba(0, 0, 0, 0.5);
    transition: box-shadow 200ms ease-in-out;
}

.video-link button:hover {
    box-shadow: 0px 5px 70px 0px rgba(0, 0, 0, 0.4);
    border: none;
    background: white;
    color: #2e44b6;
}

#youtube-video {
    position: fixed;
    z-index: 99999999999999999999999999;
    width: 100vw !important;
    height: 100vh !important;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 250ms;
}

.youtube-video-hidden {
    visibility: hidden;
    opacity: 0;
}

#youtube-video iframe {
    width: 80vw;
    height: 45vw;
}

.youtube-video-close {
    right: 2vw;
    top: 2vw;
    width: 3vw;
    height: 3vw;
    position: absolute;
}

.youtube-video-close:hover {
    cursor: pointer;
}

.youtube-video-close:before {
    content: "";
    position: absolute;
    height: 0.25vw;
    width: 3vw;
    margin-top: 1vw;
    background: white;
    border-radius: 0.5vw;
    transform: rotate(45deg);
}

.youtube-video-close:after {
    content: "";
    position: absolute;
    height: 0.25vw;
    width: 3vw;
    margin-top: 1vw;
    background: white;
    border-radius: 0.5vw;
    transform: rotate(-45deg);
}

.homepage-seperator {
    margin: 50px auto;
    max-width: 600px;
    text-align: center;
}

.homepage-seperator h3 {
    margin: 15px 0;
}

.section-title {
    text-align: center;
    width: 60%;
    height: 400px;
    font-size: 3rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
    line-height: 1;
    padding: 15px;
    color: #525d68;
}

.first-separation {
    text-align: left;
    width: 40vw !important;
    left: 0 !important;
    justify-content: left !important;
    align-items: left !important;
    position: relative;
    display: block !important;
    margin: 0;
    padding: 0 50px 0 150px;
    font-size: 2.5rem;
}

.features-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}

.phone-video {
    width: 50%;
    height: auto;
    position: relative;
    padding: 0 50px 0 125px;
    margin-top: -200px;
}

.phone-video video {
    width: calc(100% + 10px);
}

.phone-video:before {
    z-index: 9999999;
    background: white;
    height: 5px;
    width: 110%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}

.video-coverup {
    width: 80%;
    background: white;
    height: 5px;
    z-index: 9999999;
    margin-top: -5px;
    position: absolute;
    box-sizing: border-box;
}

.marketing-tool-wrapper {
    width: 50%;
    margin-bottom: 50px;
    margin-left: -50px;
    z-index: 999999999999999;
    padding-right: 125px;
    margin-top: -125px;
}

.point {
    padding: 50px;
    text-align: left;
    width: 50%;
    margin-bottom: 75px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
}

.point:nth-of-type(2) {
    right: 0;
    margin-left: calc(50% + 50px);
    margin-top: -50%;
}

.point:nth-of-type(3) {
    margin-top: calc(-25% + -25px);
}

.point img {
    width: 9rem;
    height: 9rem;
    margin-bottom: 15px;
    margin-left: calc(50% - 4.5rem);
}

.point h3 {
    font-size: 1.5rem;
    color: #525d68;
    margin-bottom: 15px;
}

.point p {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 100;
}

.video-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding: 250px 20% 125px 20%;
    margin-bottom: 150px;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -999999 !important;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(https://i.vimeocdn.com/video/749814481.webp?mw=1400&mh=804)
        no-repeat;
    background-size: cover;
    opacity: 0.2;
}

.video-background {
    background: rgb(36, 215, 252);
    background: linear-gradient(
        305deg,
        rgba(36, 215, 252, 1) 0%,
        rgba(37, 129, 213, 1) 100%
    );
    position: absolute;
    z-index: -10;
    top: 0;
    left: -25px;
    width: 100vw;
    height: calc(100% + 100px);
    overflow: hidden;
    filter: brightness(1.1);
}

.video-background:before {
    content: "";
    background: white;
    top: -100px;
    display: block;
    height: 100px;
    left: 0;
    right: 0;
    position: absolute;
    transform: skewY(-2deg);
    transform-origin: 100%;
    z-index: 9999999 !important;
}

.video-background:after {
    content: "";
    background: white;
    bottom: 0;
    display: block;
    height: 100px;
    left: 0;
    right: 0;
    position: absolute;
    transform: skewY(-2deg);
    transform-origin: 100%;
    z-index: 999999 !important;
}

.video-wrapper h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
}

.video-mobile {
    visibility: hidden;
    margin: 0;
    padding: 0;
    height: 0;
    width: 0;
}

.video-wrapper button {
    background: white !important;
    color: #2e44b6 !important;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0px -5px 50px -10px rgba(0, 0, 0, 0.5);
    transition: box-shadow 200ms ease-in-out;
}

.video-wrapper button:hover {
    box-shadow: 0px 5px 70px 0px rgba(0, 0, 0, 0.4);
    border: none;
    background: white;
    color: #2e44b6;
}

.how-it-works-wrapper {
    margin: 0 auto;
    margin-bottom: -150px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.how-it-works-wrapper h3 {
    font-size: 1.5rem;
    color: #525d68;
    margin-bottom: 25px;
}

.how-it-works-wrapper h3:nth-of-type(2) {
    margin-top: 150px;
}

.how-it-works-wrapper p {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 100;
}

.how-it-works-title {
    margin-bottom: 75px;
    text-align: left;
    width: 40%;
    margin-left: 150px;
    padding-right: 50px;
    height: 200px;
    display: block;
}

.site-image img {
    object-fit: contain;
    width: 100%;
}

.how-it-works-title h3 {
    font-size: 2.5rem !important;
    margin-right: 50px;
}

.how-it-works-wrapper ul {
    list-style: none;
}

.how-it-works-wrapper li {
    font-weight: 100;
    font-size: 1.5rem;
    color: #777;
    line-height: 1.5;
    margin-left: 50px;
}

.how-it-works-wrapper li:before {
    color: #00afec;
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.steps-wrapper {
    display: block;
    width: calc(60% - 50px);
    margin-top: 50px;
    margin-right: 50px;
}

.how:nth-last-of-type(2) {
    float: right;
    margin-top: calc(-25% + -100px);
}

.how {
    padding: 75px 50px 75px 50px;
    text-align: left;
    width: calc(50% - 25px);
    margin-bottom: 75px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.how img {
    width: 10rem;
    height: 10rem;
    margin-left: calc(50% - 5rem);
}

.how .step {
    position: absolute;
    top: 0px;
    left: 0;
    margin-top: -25px;
    margin-left: calc(50% - 100px);
    padding: 15px 25px;
    width: 200px;
    border-radius: 10px;
    text-align: center;
    -webkit-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    background: white;
}

.publish-wrapper {
    border-radius: 10px;
    text-align: left;
    -webkit-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 75px 50px 75px 50px;
    margin-top: 50px;
    width: calc(12rem + 150px);
    float: right;
}

.publish-wrapper h3 {
    font-size: 1.5rem !important;
}

.site-image {
    width: 6rem;
    height: 6rem;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.site-image:nth-of-type(1) {
    /*background: #db3236;*/
    background: #acdff3;
    margin-top: 100px;
}

.site-image:nth-of-type(2) {
    /*background: #3b5998;*/
    background: #acdff3;
    margin-top: -3.5rem;
    margin-left: 9rem;
}

.site-image:nth-of-type(3) {
    /*background: #008373;*/
    background: #acdff3;
    margin-top: -1.75rem;
}

.site-image:nth-of-type(4) {
    /*background: #c41200;*/
    background: #acdff3;
    margin-top: -3.5rem;
    margin-left: 9rem;
}

.site-image:nth-of-type(5) {
    /*background: #720e9e;*/
    background: #acdff3;
    margin-top: -1.75rem;
}

.sites-wrapper {
    margin-top: -50px;
}

.industries-scroll-container {
    width: 100%;
    height: calc(16vw + 200px);
    overflow: scroll;
    overflow-y: hidden;
    padding-left: 100px;
}

.industries-container {
    width: calc(100% - 50px);
    height: calc(16vw + 200px);
    margin-bottom: 200px;
    margin-left: 25px;
    overflow: scroll;
    overflow-y: hidden;
    position: relative;
}

.industries-scroll-container::-webkit-scrollbar,
.industries-container::-webkit-scrollbar {
    width: 0px;
    background: transparent !important;
}

.industries-container:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        270deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    top: 0;
    left: 0;
    z-index: 99999999;
}

.industries-container:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        270deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    top: 0;
    right: 0;
    z-index: 99999999;
}

.industries-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 200px;
    flex-wrap: nowrap;
    width: 150%;
    padding-right: 50px;
    /*animation: site-carousel 20s infinite;*/
}

.industry {
    padding: 50px;
    min-width: 300px;
    margin-right: 50px;
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    overflow: hidden;
    position: relative;
}

.industry h3 {
    z-index: 1;
    color: #525d68;
    font-size: 1.5rem;
    margin: 25px 0 15px 0;
}

.industry img {
    width: 8vw;
    height: 8vw;
    padding-left: calc(50% - 4vw);
    padding-right: calc(50% - 4vw);
    text-align: center;
    margin-bottom: 0;
    background: whitesmoke;
}

.industry ul {
    list-style: none;
}

.industry li {
    font-weight: 100;
    font-size: 1rem;
    color: #777;
    margin-left: 25px;
}

.industry li:before {
    color: #00afec;
    content: "\2022";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@keyframes site-carousel {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-12.5%);
    }

    30% {
        transform: translateX(-12.5%);
    }

    40% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-25%);
    }

    60% {
        transform: translateX(-37.5%);
    }

    70% {
        transform: translateX(-37.5%);
    }

    80% {
        transform: translateX(-50%);
    }

    90% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.get-started-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    padding: 100px 50px 75px 50px;
    margin-bottom: 00px;
}

.get-started-background {
    position: absolute;
    width: 150%;
    height: 150%;
    background: rgb(36, 215, 252);
    background: linear-gradient(
        305deg,
        rgba(36, 215, 252, 1) 0%,
        rgba(37, 129, 213, 1) 100%
    );
    z-index: -1;
    transform: rotate(-2deg);
}

.get-started-wrapper h3 {
    color: white;
    font-size: 5rem;
    margin-bottom: 50px;
}

.get-started-wrapper button {
    padding: 15px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    transition: background 200ms ease-in-out;
}

.get-started-wrapper button:first-child {
    background: white !important;
    margin-right: 15px;
    color: #2e44b6 !important;
    border: none;
    box-shadow: 0px -5px 50px -10px rgba(0, 0, 0, 0.5);
    transition: box-shadow 200ms ease-in-out;
}

.get-started-wrapper button:first-child:hover {
    box-shadow: 0px 5px 70px 0px rgba(0, 0, 0, 0.4);
    border: none;
    background: white;
    color: #2e44b6;
}

.get-started-wrapper button:last-child:hover {
    background: rgba(0, 0, 0, 0.5);
}

.stats-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 200px;
}

.stat {
    width: 30%;
    margin: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat h3 {
    font-size: 7rem;
    color: #10a0d7;
    width: 20vw;
    height: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    line-height: 0.9;
    margin-bottom: 50px;
}

.stat h3 strong {
    font-size: 2rem;
    opacity: 0.7;
    color: #525d68;
    font-weight: 500;
}

.stat p {
    font-size: 1.5rem;
    font-weight: 100;
    color: #525d68;
}

.stats-wrapper .stat:first-child h3 {
    background: url(/images/92.png) center no-repeat;
    background-size: contain;
}

.stats-wrapper .stat:nth-child(2) h3 {
    background: url(/images/87.png) center no-repeat;
    background-size: contain;
}

.stats-wrapper .stat:last-child h3 {
    background: url(/images/80.png) center no-repeat;
    background-size: contain;
}

.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 70%;
    margin: 200px auto;
}

.testimonial-container {
    background: rgb(255, 255, 255);
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(235, 235, 235, 1) 100%
    );
    position: relative;
    z-index: -10;
    top: 0;
    left: -25px;
    width: 100vw;
    height: calc(100% + 100px);
    overflow: hidden;
}

.testimonial-container:before {
    content: "";
    background: white;
    margin-top: -100px;
    display: block;
    height: 100px;
    left: 0;
    right: 0;
    position: relative;
    transform: skewY(-2deg);
    transform-origin: 100%;
    z-index: 10;
}

.test-image {
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    background: whitesmoke;
    margin: 0 auto 50px auto;
    overflow: hidden;
}

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

.testimonial-wrapper h4 {
    font-weight: 100;
    font-size: 1.8rem;
    color: #525d68;
    margin-bottom: 25px;
}

.testimonial-wrapper p {
    font-weight: 100;
    font-size: 1.5rem;
    color: #525d68;
}

.footer {
    width: calc(100vw);
    position: relative;
    margin-left: -25px;
    margin-bottom: -25px;
    padding: 50px 0 40px 0;
    overflow: hidden;
    background: #333;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-logo img {
    margin: 0 auto;
    width: 15vw;
    margin-bottom: 50px;
    z-index: 999999;
}
