a {
    text-decoration: none;
    color: inherit;
}

.hero {
    position: relative;
    display: flex;
    height: 100vh;
    width: 100%;
    z-index: 9999;
}

.canvas {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.connecting-dots {
    height: 100%;
    width: 100%;
}

.heading {
    position: relative;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: normal;
    width: fit-content;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    color: #FAFAFA;
    font-weight: 300;
    z-index: 999;
}

.heading__line-1, .heading__line-2 {
    font-size: 6rem;
    /* background-color: rgba(26, 26, 26, 0.25); */
    animation-duration: 1.4s;
    animation-timing-function: cubic-bezier(0.21, 1.11, 0.81, 0.99);
}

.heading__line-1 {
    animation-name: moveInLeft;
}

.heading__line-2 {
    animation-name: moveInRight;
}

.heading__line-1 span {
    color: #ff4d5a;
    font-weight: 400;
}

@media (max-width: 1500px) {
    .heading-cta {
        width: auto;
    }
}

.heading-cta {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2.4rem;
    padding: 0.8rem 3rem;
    width: 27.5rem;
    height: 4.8rem;
    /* background-color: rgba(26, 26, 26, 0.6); */
    border: 2px solid #ff4d5a;
    border-radius: 2px;
    color: #ff4d5a;
    font-size: 2.4rem;
    font-weight: 500;
    cursor: pointer;
    animation: moveInBottom 0.7s 1.2s;
    animation-fill-mode: backwards;
    animation-timing-function: cubic-bezier(0.21, 1.11, 0.81, 0.99);
}

.heading-cta:hover {
    transform: translateY(-2px);
}

.heading-cta:hover:before, .heading-cta:hover:after {
    border-color: transparent;
    filter: blur(2px);
    transform: scaleX(1.3) scaleY(2.2);
    transition: 800ms transform ease, 1900ms blur ease, 700ms border-color ease;
    pointer-events: none;
}

@media (max-width: 1500px) {
    .heading-cta:before, .heading-cta:after {
        width: 27.8rem;
    }
}

.heading-cta:before, .heading-cta:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 27.5rem;
    height: 4.8rem;
    border-radius: 3px;
    border: 2px solid #ff4d5a;
    filter: blur(0);
    transform-origin: 50%;
    z-index: -1;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

.heading__arrow {
    display: inline-block;
    height: 24px;
    width: 24px;
    margin-left: 18px;
    transform: rotate(90deg);
    fill: #ff4d5a;
    transition: all 0.3s;
}