html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

:root {
    --bg-color: whitesmoke;
    --text-color: black;
    --nav-bg-color: royalblue;
    --nav-text-color: whitesmoke;
}

body {
    margin-bottom: 60px;
    background-color: var(--bg-color);
    color: var(--text-color);
}

a{
    text-decoration: none
}

.flex-grow-0{
    font-size: 1.2rem;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.btn-floating:hover img {
    margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .5s;
}

    .btn-floating:hover {
        width: auto;
        padding: 0 20px;
        cursor: pointer;
    }

    .btn-floating span {
        font-size: 16px;
        margin-left: 5px;
        transition: .5s;
        line-height: 0px;
        display: none;
    }

    .btn-floating:hover span {
        display: inline-block;
    }

    /* Phone */
    .btn-floating.phone {
        bottom: 85px;
        background-color: #760f10;
    }

        .btn-floating.phone:hover {
            background-color: #c03421;
        }

    /* WhatsApp */
    .btn-floating.whatsapp {
        background-color: #34af23;
        bottom: 25px;
    }

        .btn-floating.whatsapp:hover {
            background-color: #1f7a12
        }