h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.6em;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2em;
    line-height: 1em;
    color: var(--color1);
    margin: 0;
    padding: 0;
}

h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2.4em;
    line-height: 1em;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.textBold {
    font-weight: 500;
}

.hotspot-button {
    display: inline-block;

    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 0.8em;
    color: var(--color1);
    background-color: #ffffff;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0;
    cursor: pointer;

    text-transform: uppercase;
    text-decoration: none;

    text-align: center;

    transition-property: background-color, color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.hotspot-button:hover {
    background-color: var(--color2);
    color: #ffffff;
}

.intro-button {

    pointer-events: all;

    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 0.8em;
    color: #ffffff;
    background-color: var(--color1);
    border-radius: 50px;
    padding: 10px 30px;
    padding-top: 12px;
    margin: 0;
    cursor: pointer;

    text-transform: uppercase;
    text-decoration: none;

    text-align: center;

    transition-property: background-color, color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.intro-button:hover {
    background-color: var(--color2);
    color: #ffffff;
}

.next-button {
    position: relative;
    opacity: 0;

    display: inline-block;

    pointer-events: none;

    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1em;
    color: var(--color1);
    background-color: #ffffff;
    border-radius: 50px;
    padding: 12px 30px;
    margin: 0;
    cursor: pointer;

    text-transform: uppercase;

    transition-property: background-color, color, opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.next-button:hover {
    background-color: var(--color2);
    color: #ffffff;
}

.next-button-active {

    pointer-events: all;
    opacity: 1;
}

a {
    pointer-events: all !important;
    cursor: pointer;
    text-decoration: underline;
    color: #000000;
}

p {
    font-size: 0.8em;
}

.button:hover {
    background-color: var(--color2);
    color: #ffffff;
}


@media (max-width: 768px) {
    h3 {
        font-size: 1.4em;
        line-height: 1.2em;
    }

    .intro-button {

        width: 100%;
        text-align: center;
    }

    .hotspot-button {

        width: 100%;
        text-align: center;
    }

    p {
        line-height: 1.4;
    }
}

@media (min-width: 1550px) {
    p {
        font-size: 1em !important;
    }

    h1 {
         font-size: 1.8em;
    }

    h2 {
        font-size: 2.4em;
    }

    h3 {
        font-size: 2.8em;
    }
}