.ctas {
    margin-top: 5em;
    user-select: none;
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.notvisible {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}



.ctas button {
    background-color: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
    padding: 1em 2em;
    margin: 0.5em;
    cursor: pointer;
    font-weight: bold;
    border-radius: 15px;
    z-index: 999;
}

.content {
    user-select: none;
}

.block {
    padding: 2em;

    margin: 1em;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.step {
    padding: 2em;
    margin: 1em;
    user-select: none;
    width: 300px;
}

li {
    margin: 0.5em;
    text-align: left;
    color: #777;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}


.intro {
    position: absolute;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 700px;
}

.intro p {
    font-size: 2em;
    font-weight: 300;
    width: 100%;
}

h1 {
    font-size: 4em;
    font-weight: bold;
}

h2 {
    font-size: 2.5em;
    font-weight: bold;
}

.top {
    width: 100%;
    position: relative;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: -1;
}

.opening_box {
    top: 50px;
    height: 800px;
}

.wave {
    margin-top: -130px;
    background-color: #f3f6f9;
    height: 500px;
    clip-path: url(#wave);
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave-text {
    font-size: 1.5em;
    padding: 2em;
    color: #333;
    font-weight: 300;
    max-width: 50%;
}

.wave-image {
    padding: 2em;
}

.wave-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid var(--secondary-color);
}

.wave-content {
    margin-top: 200px;
    height: 100%;
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.sp {
    padding-top: 100px;
    padding-bottom: 100px;
}

.block-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 1em;
}

.block-text,
.block-text-multiple {
    font-size: 1.2em;
    padding: 2em;
    margin: 1em;
    user-select: none;
    width: 500px;
}

.block-text-multiple {
    width: 300px;
}

.block-media {
    padding: 2em;
    margin: 1em;
    user-select: none;
    width: 500px;
}

.block-media>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid var(--secondary-color);
}

.block-media>video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.c1 {
    background-color: #fff;
    margin: none !important;
}

@media screen and (max-width: 1000px) {
    .intro {
        margin-top: 0;

    }

    .wave-content {
        flex-direction: column;
    }

    .wave-text {
        max-width: 100%;
    }
}