.btn-pink {
    background-color: #db0f80;
    border-radius: 3rem;
    border: 2px solid #db0f80;
    color: #fff;
    display: inline-block;
    line-height: 1.6em;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1rem 1.6em;
    text-decoration: none
}

.btn-pink:hover {
    background-color: #fff0;
    color: #db0f80 !important
}

.btn-yellow {
    background-color: #fddc1f;
    border-radius: 3rem;
    border: 2px solid #fddc1f;
    color: #000;
    display: inline-block;
    line-height: 1.6em;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1rem 1.6em;
    text-decoration: none
}

.btn-yellow:hover {
    background-color: #fff0;
    color: #fddc1f !important
}

.btn-blue {
    background-color: #0094f9;
    border-radius: 3rem;
    border: 2px solid #0094f9;
    color: #000;
    display: inline-block;
    line-height: 1.6em;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1rem 1.6em;
    text-decoration: none
}

.btn-blue:hover {
    background-color: #fff0;
    color: #0094f9 !important
}

section.banner {
    height: 85vh;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;

    .yellow_info {
        width: 100%;
        background-color: #fddc1f;
        color: #000;
        text-align: center;
        vertical-align: middle;
        padding: 10px;

        p {
            color: #000;

            a {
                color: #2e24be;
            }
        }
    }

    .inverted {
        right: 4rem;
        left: auto;
    }

    hgroup {
        position: absolute;
        z-index: 5;
        left: 4rem;
        bottom: 10.5vh;
        max-width: 500px;


        h1 {
            font-size: 2.4rem;
            font-weight: 500;
            color: #fff;
            text-align: left;
            margin-bottom: 1rem;
            line-height: 1.3em;
            padding-bottom: 0;

            strong {
                font-size: 3.2rem;
                display: block;
                padding: .5rem 0;
                line-height: 1.2em;
                font-weight: 800
            }
        }

        h1::after {
            display: none
        }

        h2 {
            font-size: 1.6rem;
            line-height: 1.5em;
            margin: 0 0 2rem;
            font-family: "Montserrat", sans-serif;
            font-weight: 500;
            overflow: visible;

            span {
                box-decoration-break: clone;
                -webkit-box-decoration-break: clone;
                padding: .5rem;
            }
            
            .pink {
                background-color: #fd0683;
                color: #fff;
            }
            
            .yellow {
                color: #000;
                background-color: #fddc1f;
            }
        }

        a {
            cursor: pointer;
            line-height: 1.15
        }
    }
}

@media screen and (max-width:767px) {
    section.banner {
        height: 40dvh;

        .yellow_info {
            display: none;
        }

        hgroup {
            position: relative;
            max-width: 100%;
            height: 100%;
            min-height: 250px;
            top: 0;
            right: 0;
            left: 0;
            padding: 4rem 2rem;
            background-image: linear-gradient(30deg, rgb(0 0 0 / .6) 0, rgb(0 0 0 / .3) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;

            h1 {
                font-size: 1.8rem;

                strong {
                    font-size: 2.4rem
                }
            }

            h2 {
                font-size: 1.3rem;
                line-height: 1.6em
            }

            a {
                display: inline-block;
                text-align: center
            }
        }
    }
}