.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-image:linear-gradient(30deg, rgb(0 0 0 / .6) 0%, #fff0 50%, #fff0 100%),
        url("{{../cdn}}upload_images/13602cb199ae85451575d61ce2a149c3.webp");
        background-position: right center;
        background-repeat: no-repeat;
        background-size: cover;

        hgroup {
            position: absolute;
            z-index: 5;
            right: auto;
            bottom: 10.5vh;
            left: 4rem;
            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 {
                    background-color: #fddc1f;
                    color: #000;
                    box-decoration-break: clone;
                    -webkit-box-decoration-break: clone;
                    padding: .5rem 1rem
                }
            }

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

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

            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
                }
            }
        }
    }