.intro {
    position: relative;
    display: flex;
    color: #001727;
}

.call-to-actions {
    position: relative;
    left: 0%;
    right: 0%;
    top: 10px;
    bottom: 0%;
    display: flex;
    flex-direction: column;
    align-content: space-around;
}

.call-to-action-subsection {
    display: flex;
    flex-direction: row;
    align-content: space-around;
    margin-top: 10px;
    margin-bottom: 10px;
}

.call-to-action-subsection-type2 {
    display: flex;
    flex-direction: column;
    align-content: space-around;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 10px;
    border-color: #001727;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    padding: 10px;
}

.main-title {
    color: #18C29C;
}

.main-title-plus {
    color: #001727;
}

.sub-title {
    color: #001727;
    display: flex;
    justify-content: center;
}

.typing {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    color: #0B877D;
}

.typing::after{
    content: "";
    position: absolute;
    color:#0B877D;
    right: 0px;
    width: 1px;
    height: 5%;
    border-right: 2px solid white;
    animation: blink 0.5s infinite ease;
}

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

/* Arrow White */
.goto-next-white {
    border: 0;
    bottom: 0;
    display: block;
    height: 5em;
    left: 50%;
    margin: 0 0 0 -5em;
    overflow: hidden;
    position: absolute;
    text-indent: 10em;
    white-space: nowrap;
    width: 10em;
    z-index: 1;
}

    .goto-next-white:before {
        background-image: url("images/arrow-white.svg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        content: '';
        display: block;
        height: 1.5em;
        left: 50%;
        margin: -0.75em 0 0 -1em;
        position: absolute;
        top: 50%;
        width: 2em;
        z-index: 1;
    }

.special-h3 {
    color: white;
}